File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,6 +17,23 @@ export type Delivery = Schema.Schema.Type<typeof Delivery>
1717
1818export const DefaultDelivery = "immediate" satisfies Delivery
1919
20+ export const Info = Schema . Struct ( {
21+ id : SessionID ,
22+ slug : Schema . String ,
23+ projectID : ProjectID ,
24+ workspaceID : optionalOmitUndefined ( WorkspaceID ) ,
25+ directory : Schema . String ,
26+ path : optionalOmitUndefined ( Schema . String ) ,
27+ parentID : optionalOmitUndefined ( SessionID ) ,
28+ summary : optionalOmitUndefined ( Summary ) ,
29+ share : optionalOmitUndefined ( Share ) ,
30+ title : Schema . String ,
31+ version : Schema . String ,
32+ time : Time ,
33+ permission : optionalOmitUndefined ( Permission . Ruleset ) ,
34+ revert : optionalOmitUndefined ( Revert ) ,
35+ } ) . annotate ( { identifier : "Session" } )
36+
2037export interface Interface {
2138 readonly list : ( input : {
2239 limit ?: number
You can’t perform that action at this time.
0 commit comments