@powerhousedao/shared 6.0.0-dev.110 → 6.0.0-dev.112

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,133 +1,139 @@
1
- import { Ba as Reducer, Er as DocumentModelGlobalState, Jn as AssertIsStateOfType, Mr as DocumentModelModule, gi as LoadFromInput, ir as CreateState, mi as IsStateOfType, oo as SaveToFileHandle, os as SignalDispatch, pi as IsDocumentOfType, pn as PHBaseState, qn as AssertIsDocumentOfType, so as Scalars$1, t as Action, tr as CreateDocument, vt as PHDocument } from "../actions-3-rhhWx6.js";
1
+ import { Ba as Reducer, Ei as Maybe, Er as DocumentModelGlobalState, Jn as AssertIsStateOfType, Mr as DocumentModelModule, fi as InputMaybe, gi as LoadFromInput, ir as CreateState, mi as IsStateOfType, oo as SaveToFileHandle, os as SignalDispatch, pi as IsDocumentOfType, pn as PHBaseState, qn as AssertIsDocumentOfType, so as Scalars, t as Action, tr as CreateDocument, vt as PHDocument } from "../actions-3-rhhWx6.js";
2
2
  import { z } from "zod";
3
3
  import { DocumentDriveLocalState as DocumentDriveLocalState$1, Node as Node$1 } from "@powerhousedao/shared/document-drive";
4
4
 
5
5
  //#region document-drive/constants.d.ts
6
6
  declare const driveDocumentFileExtension = "phdd";
7
7
  //#endregion
8
- //#region document-drive/gen/schema/types.d.ts
9
- type Maybe<T> = T | null;
10
- type InputMaybe<T> = T | null | undefined;
11
- type Exact<T extends {
12
- [key: string]: unknown;
13
- }> = { [K in keyof T]: T[K] };
14
- type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
15
- type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
16
- type MakeEmpty<T extends {
17
- [key: string]: unknown;
18
- }, K extends keyof T> = { [_ in K]?: never };
19
- type Incremental<T> = T | { [P in keyof T]?: P extends " $fragmentName" | "__typename" ? T[P] : never };
20
- /** All built-in and custom scalars, mapped to their actual values */
21
- type Scalars = {
22
- ID: {
23
- input: string;
24
- output: string;
25
- };
26
- String: {
27
- input: string;
28
- output: string;
29
- };
30
- Boolean: {
31
- input: boolean;
32
- output: boolean;
33
- };
34
- Int: {
35
- input: number;
36
- output: number;
37
- };
38
- Float: {
39
- input: number;
40
- output: number;
41
- };
42
- Amount: {
43
- input: {
44
- unit?: string;
45
- value?: number;
46
- };
47
- output: {
48
- unit?: string;
49
- value?: number;
50
- };
51
- };
52
- Amount_Crypto: {
53
- input: {
54
- unit: string;
55
- value: number;
56
- };
57
- output: {
58
- unit: string;
59
- value: number;
60
- };
61
- };
62
- Amount_Currency: {
63
- input: {
64
- unit: string;
65
- value: number;
66
- };
67
- output: {
68
- unit: string;
69
- value: number;
70
- };
71
- };
72
- Amount_Fiat: {
73
- input: {
74
- unit: string;
75
- value: number;
76
- };
77
- output: {
78
- unit: string;
79
- value: number;
80
- };
81
- };
82
- Amount_Money: {
83
- input: number;
84
- output: number;
85
- };
86
- Amount_Percentage: {
87
- input: number;
88
- output: number;
89
- };
90
- Amount_Tokens: {
91
- input: number;
92
- output: number;
93
- };
94
- Currency: {
95
- input: string;
96
- output: string;
97
- };
98
- Date: {
99
- input: string;
100
- output: string;
101
- };
102
- DateTime: {
103
- input: string;
104
- output: string;
105
- };
106
- EmailAddress: {
107
- input: string;
108
- output: string;
109
- };
110
- EthereumAddress: {
111
- input: string;
112
- output: string;
113
- };
114
- OID: {
115
- input: string;
116
- output: string;
117
- };
118
- OLabel: {
119
- input: string;
120
- output: string;
121
- };
122
- PHID: {
123
- input: string;
124
- output: string;
125
- };
126
- URL: {
127
- input: string;
128
- output: string;
8
+ //#region document-drive/gen/drive/actions.d.ts
9
+ type SetDriveNameAction = Action & {
10
+ type: "SET_DRIVE_NAME";
11
+ input: SetDriveNameInput;
12
+ };
13
+ type SetDriveIconAction = Action & {
14
+ type: "SET_DRIVE_ICON";
15
+ input: SetDriveIconInput;
16
+ };
17
+ type SetSharingTypeAction = Action & {
18
+ type: "SET_SHARING_TYPE";
19
+ input: SetSharingTypeInput;
20
+ };
21
+ type SetAvailableOfflineAction = Action & {
22
+ type: "SET_AVAILABLE_OFFLINE";
23
+ input: SetAvailableOfflineInput;
24
+ };
25
+ type AddListenerAction = Action & {
26
+ type: "ADD_LISTENER";
27
+ input: AddListenerInput;
28
+ };
29
+ type RemoveListenerAction = Action & {
30
+ type: "REMOVE_LISTENER";
31
+ input: RemoveListenerInput;
32
+ };
33
+ type AddTriggerAction = Action & {
34
+ type: "ADD_TRIGGER";
35
+ input: AddTriggerInput;
36
+ };
37
+ type RemoveTriggerAction = Action & {
38
+ type: "REMOVE_TRIGGER";
39
+ input: RemoveTriggerInput;
40
+ };
41
+ type DocumentDriveDriveAction = SetDriveNameAction | SetDriveIconAction | SetSharingTypeAction | SetAvailableOfflineAction | AddListenerAction | RemoveListenerAction | AddTriggerAction | RemoveTriggerAction;
42
+ interface DocumentDriveDriveOperations {
43
+ setDriveNameOperation: (state: DocumentDriveGlobalState, action: SetDriveNameAction, dispatch?: SignalDispatch) => void;
44
+ setDriveIconOperation: (state: DocumentDriveGlobalState, action: SetDriveIconAction, dispatch?: SignalDispatch) => void;
45
+ setSharingTypeOperation: (state: DocumentDriveLocalState, action: SetSharingTypeAction, dispatch?: SignalDispatch) => void;
46
+ setAvailableOfflineOperation: (state: DocumentDriveLocalState, action: SetAvailableOfflineAction, dispatch?: SignalDispatch) => void;
47
+ addListenerOperation: (state: DocumentDriveLocalState, action: AddListenerAction, dispatch?: SignalDispatch) => void;
48
+ removeListenerOperation: (state: DocumentDriveLocalState, action: RemoveListenerAction, dispatch?: SignalDispatch) => void;
49
+ addTriggerOperation: (state: DocumentDriveLocalState, action: AddTriggerAction, dispatch?: SignalDispatch) => void;
50
+ removeTriggerOperation: (state: DocumentDriveLocalState, action: RemoveTriggerAction, dispatch?: SignalDispatch) => void;
51
+ }
52
+ //#endregion
53
+ //#region document-drive/gen/node/actions.d.ts
54
+ type AddFileAction = Action & {
55
+ type: "ADD_FILE";
56
+ input: AddFileInput;
57
+ };
58
+ type AddFolderAction = Action & {
59
+ type: "ADD_FOLDER";
60
+ input: AddFolderInput;
61
+ };
62
+ type DeleteNodeAction = Action & {
63
+ type: "DELETE_NODE";
64
+ input: DeleteNodeInput;
65
+ };
66
+ type UpdateFileAction = Action & {
67
+ type: "UPDATE_FILE";
68
+ input: UpdateFileInput;
69
+ };
70
+ type UpdateNodeAction = Action & {
71
+ type: "UPDATE_NODE";
72
+ input: UpdateNodeInput;
73
+ };
74
+ type CopyNodeAction = Action & {
75
+ type: "COPY_NODE";
76
+ input: CopyNodeInput;
77
+ };
78
+ type MoveNodeAction = Action & {
79
+ type: "MOVE_NODE";
80
+ input: MoveNodeInput;
81
+ };
82
+ type DocumentDriveNodeAction = AddFileAction | AddFolderAction | DeleteNodeAction | UpdateFileAction | UpdateNodeAction | CopyNodeAction | MoveNodeAction;
83
+ interface DocumentDriveNodeOperations {
84
+ addFileOperation: (state: DocumentDriveGlobalState, action: AddFileAction, dispatch?: SignalDispatch) => void;
85
+ addFolderOperation: (state: DocumentDriveGlobalState, action: AddFolderAction, dispatch?: SignalDispatch) => void;
86
+ deleteNodeOperation: (state: DocumentDriveGlobalState, action: DeleteNodeAction, dispatch?: SignalDispatch) => void;
87
+ updateFileOperation: (state: DocumentDriveGlobalState, action: UpdateFileAction, dispatch?: SignalDispatch) => void;
88
+ updateNodeOperation: (state: DocumentDriveGlobalState, action: UpdateNodeAction, dispatch?: SignalDispatch) => void;
89
+ copyNodeOperation: (state: DocumentDriveGlobalState, action: CopyNodeAction, dispatch?: SignalDispatch) => void;
90
+ moveNodeOperation: (state: DocumentDriveGlobalState, action: MoveNodeAction, dispatch?: SignalDispatch) => void;
91
+ }
92
+ //#endregion
93
+ //#region document-drive/gen/types.d.ts
94
+ type DocumentDriveAction = DocumentDriveNodeAction | DocumentDriveDriveAction;
95
+ type DocumentDriveDocument = PHDocument<DocumentDrivePHState>;
96
+ type LegacySynchronizationUnit = {
97
+ branch: Scalars["String"]["output"];
98
+ scope: Scalars["String"]["output"];
99
+ syncId: Scalars["ID"]["output"];
100
+ };
101
+ type LegacyAddFileInput = AddFileInput & {
102
+ document?: InputMaybe<PHDocument>;
103
+ synchronizationUnits: Array<LegacySynchronizationUnit>;
104
+ };
105
+ type LegacyAddFileAction = Action & {
106
+ type: "ADD_FILE";
107
+ input: LegacyAddFileInput;
108
+ };
109
+ //#endregion
110
+ //#region document-drive/src/types.d.ts
111
+ type GenerateNodesCopySrc = {
112
+ srcId: Node$1["id"];
113
+ targetName?: Node$1["name"];
114
+ targetParentFolder?: Node$1["parentFolder"];
115
+ };
116
+ type GenerateNodesCopyIdGenerator = (nodeToCopy: Node$1) => Node$1["id"];
117
+ type DriveInput = {
118
+ global: {
119
+ name: string;
120
+ icon?: string | null;
129
121
  };
122
+ id?: string;
123
+ slug?: string;
124
+ preferredEditor?: string;
125
+ local?: Partial<DocumentDriveLocalState$1>;
130
126
  };
127
+ type SharingType = "LOCAL" | "CLOUD" | "PUBLIC";
128
+ //#endregion
129
+ //#region document-drive/types.d.ts
130
+ type DocumentDrivePHState = PHBaseState & {
131
+ global: DocumentDriveGlobalState;
132
+ local: DocumentDriveLocalState;
133
+ };
134
+ type DriveDocumentModelModule = DocumentModelModule<DocumentDrivePHState>;
135
+ //#endregion
136
+ //#region document-drive/gen/schema/types.d.ts
131
137
  type AddFileInput = {
132
138
  documentType: Scalars["String"]["input"];
133
139
  id: Scalars["ID"]["input"];
@@ -278,134 +284,6 @@ type UpdateNodeInput = {
278
284
  parentFolder?: InputMaybe<Scalars["ID"]["input"]>;
279
285
  };
280
286
  //#endregion
281
- //#region document-drive/src/types.d.ts
282
- type GenerateNodesCopySrc = {
283
- srcId: Node$1["id"];
284
- targetName?: Node$1["name"];
285
- targetParentFolder?: Node$1["parentFolder"];
286
- };
287
- type GenerateNodesCopyIdGenerator = (nodeToCopy: Node$1) => Node$1["id"];
288
- type DriveInput = {
289
- global: {
290
- name: string;
291
- icon?: string | null;
292
- };
293
- id?: string;
294
- slug?: string;
295
- preferredEditor?: string;
296
- local?: Partial<DocumentDriveLocalState$1>;
297
- };
298
- type SharingType = "LOCAL" | "CLOUD" | "PUBLIC";
299
- //#endregion
300
- //#region document-drive/types.d.ts
301
- type DocumentDrivePHState = PHBaseState & {
302
- global: DocumentDriveGlobalState;
303
- local: DocumentDriveLocalState;
304
- };
305
- type DriveDocumentModelModule = DocumentModelModule<DocumentDrivePHState>;
306
- //#endregion
307
- //#region document-drive/gen/drive/actions.d.ts
308
- type SetDriveNameAction = Action & {
309
- type: "SET_DRIVE_NAME";
310
- input: SetDriveNameInput;
311
- };
312
- type SetDriveIconAction = Action & {
313
- type: "SET_DRIVE_ICON";
314
- input: SetDriveIconInput;
315
- };
316
- type SetSharingTypeAction = Action & {
317
- type: "SET_SHARING_TYPE";
318
- input: SetSharingTypeInput;
319
- };
320
- type SetAvailableOfflineAction = Action & {
321
- type: "SET_AVAILABLE_OFFLINE";
322
- input: SetAvailableOfflineInput;
323
- };
324
- type AddListenerAction = Action & {
325
- type: "ADD_LISTENER";
326
- input: AddListenerInput;
327
- };
328
- type RemoveListenerAction = Action & {
329
- type: "REMOVE_LISTENER";
330
- input: RemoveListenerInput;
331
- };
332
- type AddTriggerAction = Action & {
333
- type: "ADD_TRIGGER";
334
- input: AddTriggerInput;
335
- };
336
- type RemoveTriggerAction = Action & {
337
- type: "REMOVE_TRIGGER";
338
- input: RemoveTriggerInput;
339
- };
340
- type DocumentDriveDriveAction = SetDriveNameAction | SetDriveIconAction | SetSharingTypeAction | SetAvailableOfflineAction | AddListenerAction | RemoveListenerAction | AddTriggerAction | RemoveTriggerAction;
341
- interface DocumentDriveDriveOperations {
342
- setDriveNameOperation: (state: DocumentDriveGlobalState, action: SetDriveNameAction, dispatch?: SignalDispatch) => void;
343
- setDriveIconOperation: (state: DocumentDriveGlobalState, action: SetDriveIconAction, dispatch?: SignalDispatch) => void;
344
- setSharingTypeOperation: (state: DocumentDriveLocalState, action: SetSharingTypeAction, dispatch?: SignalDispatch) => void;
345
- setAvailableOfflineOperation: (state: DocumentDriveLocalState, action: SetAvailableOfflineAction, dispatch?: SignalDispatch) => void;
346
- addListenerOperation: (state: DocumentDriveLocalState, action: AddListenerAction, dispatch?: SignalDispatch) => void;
347
- removeListenerOperation: (state: DocumentDriveLocalState, action: RemoveListenerAction, dispatch?: SignalDispatch) => void;
348
- addTriggerOperation: (state: DocumentDriveLocalState, action: AddTriggerAction, dispatch?: SignalDispatch) => void;
349
- removeTriggerOperation: (state: DocumentDriveLocalState, action: RemoveTriggerAction, dispatch?: SignalDispatch) => void;
350
- }
351
- //#endregion
352
- //#region document-drive/gen/node/actions.d.ts
353
- type AddFileAction = Action & {
354
- type: "ADD_FILE";
355
- input: AddFileInput;
356
- };
357
- type AddFolderAction = Action & {
358
- type: "ADD_FOLDER";
359
- input: AddFolderInput;
360
- };
361
- type DeleteNodeAction = Action & {
362
- type: "DELETE_NODE";
363
- input: DeleteNodeInput;
364
- };
365
- type UpdateFileAction = Action & {
366
- type: "UPDATE_FILE";
367
- input: UpdateFileInput;
368
- };
369
- type UpdateNodeAction = Action & {
370
- type: "UPDATE_NODE";
371
- input: UpdateNodeInput;
372
- };
373
- type CopyNodeAction = Action & {
374
- type: "COPY_NODE";
375
- input: CopyNodeInput;
376
- };
377
- type MoveNodeAction = Action & {
378
- type: "MOVE_NODE";
379
- input: MoveNodeInput;
380
- };
381
- type DocumentDriveNodeAction = AddFileAction | AddFolderAction | DeleteNodeAction | UpdateFileAction | UpdateNodeAction | CopyNodeAction | MoveNodeAction;
382
- interface DocumentDriveNodeOperations {
383
- addFileOperation: (state: DocumentDriveGlobalState, action: AddFileAction, dispatch?: SignalDispatch) => void;
384
- addFolderOperation: (state: DocumentDriveGlobalState, action: AddFolderAction, dispatch?: SignalDispatch) => void;
385
- deleteNodeOperation: (state: DocumentDriveGlobalState, action: DeleteNodeAction, dispatch?: SignalDispatch) => void;
386
- updateFileOperation: (state: DocumentDriveGlobalState, action: UpdateFileAction, dispatch?: SignalDispatch) => void;
387
- updateNodeOperation: (state: DocumentDriveGlobalState, action: UpdateNodeAction, dispatch?: SignalDispatch) => void;
388
- copyNodeOperation: (state: DocumentDriveGlobalState, action: CopyNodeAction, dispatch?: SignalDispatch) => void;
389
- moveNodeOperation: (state: DocumentDriveGlobalState, action: MoveNodeAction, dispatch?: SignalDispatch) => void;
390
- }
391
- //#endregion
392
- //#region document-drive/gen/types.d.ts
393
- type DocumentDriveAction = DocumentDriveNodeAction | DocumentDriveDriveAction;
394
- type DocumentDriveDocument = PHDocument<DocumentDrivePHState>;
395
- type LegacySynchronizationUnit = {
396
- branch: Scalars$1["String"]["output"];
397
- scope: Scalars$1["String"]["output"];
398
- syncId: Scalars$1["ID"]["output"];
399
- };
400
- type LegacyAddFileInput = AddFileInput & {
401
- document?: InputMaybe<PHDocument>;
402
- synchronizationUnits: Array<LegacySynchronizationUnit>;
403
- };
404
- type LegacyAddFileAction = Action & {
405
- type: "ADD_FILE";
406
- input: LegacyAddFileInput;
407
- };
408
- //#endregion
409
287
  //#region document-drive/gen/node/creators.d.ts
410
288
  /**
411
289
  * @deprecated Use addFile with {@link AddFileInput} instead. This overload will be removed in the future.
@@ -553,5 +431,5 @@ declare function handleTargetNameCollisions(params: {
553
431
  }): string;
554
432
  declare const isValidName: (name: string) => boolean;
555
433
  //#endregion
556
- export { AddFileAction, AddFileInput, AddFileInputSchema, AddFolderAction, AddFolderInput, AddFolderInputSchema, AddListenerAction, AddListenerInput, AddListenerInputSchema, AddTriggerAction, AddTriggerInput, AddTriggerInputSchema, CopyNodeAction, CopyNodeInput, CopyNodeInputSchema, DeleteNodeAction, DeleteNodeInput, DeleteNodeInputSchema, DocumentDriveAction, DocumentDriveDocument, DocumentDriveDriveAction, DocumentDriveDriveOperations, DocumentDriveGlobalState, DocumentDriveLocalState, DocumentDriveLocalStateSchema, DocumentDriveNodeAction, DocumentDriveNodeOperations, DocumentDrivePHState, DocumentDriveStateSchema, DriveDocumentModelModule, DriveInput, Exact, FileNode, FileNodeSchema, FolderNode, FolderNodeSchema, GenerateNodesCopyIdGenerator, GenerateNodesCopySrc, Incremental, InputMaybe, LegacyAddFileAction, LegacyAddFileInput, LegacySynchronizationUnit, Listener, ListenerCallInfo, ListenerCallInfoInput, ListenerCallInfoInputSchema, ListenerCallInfoSchema, ListenerFilter, ListenerFilterInput, ListenerFilterInputSchema, ListenerFilterSchema, ListenerInput, ListenerInputSchema, ListenerSchema, MakeEmpty, MakeMaybe, MakeOptional, Maybe, MoveNodeAction, MoveNodeInput, MoveNodeInputSchema, Node, NodeSchema, PullResponderTriggerData, PullResponderTriggerDataInput, PullResponderTriggerDataInputSchema, PullResponderTriggerDataSchema, RemoveListenerAction, RemoveListenerInput, RemoveListenerInputSchema, RemoveTriggerAction, RemoveTriggerInput, RemoveTriggerInputSchema, Scalars, SetAvailableOfflineAction, SetAvailableOfflineInput, SetAvailableOfflineInputSchema, SetDriveIconAction, SetDriveIconInput, SetDriveIconInputSchema, SetDriveNameAction, SetDriveNameInput, SetDriveNameInputSchema, SetSharingTypeAction, SetSharingTypeInput, SetSharingTypeInputSchema, SharingType, TransmitterType, TransmitterTypeSchema, Trigger, TriggerData, TriggerDataSchema, TriggerInput, TriggerInputSchema, TriggerSchema, TriggerType, TriggerTypeSchema, UpdateFileAction, UpdateFileInput, UpdateFileInputSchema, UpdateNodeAction, UpdateNodeInput, UpdateNodeInputSchema, addFile, addFolder, addListener, addTrigger, assertIsDocumentOfType, assertIsStateOfType, copyNode, createGlobalState, createLocalState, createState, defaultGlobalState, defaultLocalState, defaultPHState, definedNonNullAnySchema, deleteNode, driveCreateDocument, driveCreateState, driveDocumentFileExtension, driveDocumentModel, driveDocumentModelModule, driveDocumentReducer, driveDocumentType, driveLoadFromInput, driveReducer, driveSaveToFileHandle, escapeRegExp, generateNodesCopy, getAncestors, getDescendants, getNextCopyNumber, handleTargetNameCollisions, initialGlobalState, initialLocalState, isDefinedNonNullAny, isDocumentOfType, isFileNode, isFolderNode, isStateOfType, isValidName, moveNode, nodeReducer, removeListener, removeTrigger, setAvailableOffline, setDriveIcon, setDriveName, setSharingType, updateFile, updateNode };
434
+ export { AddFileAction, AddFileInput, AddFileInputSchema, AddFolderAction, AddFolderInput, AddFolderInputSchema, AddListenerAction, AddListenerInput, AddListenerInputSchema, AddTriggerAction, AddTriggerInput, AddTriggerInputSchema, CopyNodeAction, CopyNodeInput, CopyNodeInputSchema, DeleteNodeAction, DeleteNodeInput, DeleteNodeInputSchema, DocumentDriveAction, DocumentDriveDocument, DocumentDriveDriveAction, DocumentDriveDriveOperations, DocumentDriveGlobalState, DocumentDriveLocalState, DocumentDriveLocalStateSchema, DocumentDriveNodeAction, DocumentDriveNodeOperations, DocumentDrivePHState, DocumentDriveStateSchema, DriveDocumentModelModule, DriveInput, FileNode, FileNodeSchema, FolderNode, FolderNodeSchema, GenerateNodesCopyIdGenerator, GenerateNodesCopySrc, LegacyAddFileAction, LegacyAddFileInput, LegacySynchronizationUnit, Listener, ListenerCallInfo, ListenerCallInfoInput, ListenerCallInfoInputSchema, ListenerCallInfoSchema, ListenerFilter, ListenerFilterInput, ListenerFilterInputSchema, ListenerFilterSchema, ListenerInput, ListenerInputSchema, ListenerSchema, MoveNodeAction, MoveNodeInput, MoveNodeInputSchema, Node, NodeSchema, PullResponderTriggerData, PullResponderTriggerDataInput, PullResponderTriggerDataInputSchema, PullResponderTriggerDataSchema, RemoveListenerAction, RemoveListenerInput, RemoveListenerInputSchema, RemoveTriggerAction, RemoveTriggerInput, RemoveTriggerInputSchema, SetAvailableOfflineAction, SetAvailableOfflineInput, SetAvailableOfflineInputSchema, SetDriveIconAction, SetDriveIconInput, SetDriveIconInputSchema, SetDriveNameAction, SetDriveNameInput, SetDriveNameInputSchema, SetSharingTypeAction, SetSharingTypeInput, SetSharingTypeInputSchema, SharingType, TransmitterType, TransmitterTypeSchema, Trigger, TriggerData, TriggerDataSchema, TriggerInput, TriggerInputSchema, TriggerSchema, TriggerType, TriggerTypeSchema, UpdateFileAction, UpdateFileInput, UpdateFileInputSchema, UpdateNodeAction, UpdateNodeInput, UpdateNodeInputSchema, addFile, addFolder, addListener, addTrigger, assertIsDocumentOfType, assertIsStateOfType, copyNode, createGlobalState, createLocalState, createState, defaultGlobalState, defaultLocalState, defaultPHState, definedNonNullAnySchema, deleteNode, driveCreateDocument, driveCreateState, driveDocumentFileExtension, driveDocumentModel, driveDocumentModelModule, driveDocumentReducer, driveDocumentType, driveLoadFromInput, driveReducer, driveSaveToFileHandle, escapeRegExp, generateNodesCopy, getAncestors, getDescendants, getNextCopyNumber, handleTargetNameCollisions, initialGlobalState, initialLocalState, isDefinedNonNullAny, isDocumentOfType, isFileNode, isFolderNode, isStateOfType, isValidName, moveNode, nodeReducer, removeListener, removeTrigger, setAvailableOffline, setDriveIcon, setDriveName, setSharingType, updateFile, updateNode };
557
435
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","names":[],"sources":["../../document-drive/constants.ts","../../document-drive/gen/schema/types.ts","../../document-drive/src/types.ts","../../document-drive/types.ts","../../document-drive/gen/drive/actions.ts","../../document-drive/gen/node/actions.ts","../../document-drive/gen/types.ts","../../document-drive/gen/node/creators.ts","../../document-drive/gen/drive/creators.ts","../../document-drive/gen/document-model.ts","../../document-drive/gen/document-type.ts","../../document-drive/gen/ph-factories.ts","../../document-drive/gen/reducer.ts","../../document-drive/gen/schema/zod.ts","../../document-drive/gen/utils.ts","../../document-drive/module.ts","../../document-drive/src/reducers/drive.ts","../../document-drive/src/reducers/node.ts","../../document-drive/src/utils.ts"],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","names":[],"sources":["../../document-drive/constants.ts","../../document-drive/gen/drive/actions.ts","../../document-drive/gen/node/actions.ts","../../document-drive/gen/types.ts","../../document-drive/src/types.ts","../../document-drive/types.ts","../../document-drive/gen/schema/types.ts","../../document-drive/gen/node/creators.ts","../../document-drive/gen/drive/creators.ts","../../document-drive/gen/document-model.ts","../../document-drive/gen/document-type.ts","../../document-drive/gen/ph-factories.ts","../../document-drive/gen/reducer.ts","../../document-drive/gen/schema/zod.ts","../../document-drive/gen/utils.ts","../../document-drive/module.ts","../../document-drive/src/reducers/drive.ts","../../document-drive/src/reducers/node.ts","../../document-drive/src/utils.ts"],"mappings":"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"}
@@ -1,3 +1,3 @@
1
1
  import { $ as setName, $a as ReorderOperationExamplesAction, $i as MutationReorderOperationExamplesArgs, $n as CreateChildDocumentInput, $o as SetOperationScopeInput, $r as Exact, $t as sortMappedOperations, A as noop, Aa as PHStateReducer, Ai as MoveOperationAction, An as ActionVerificationHandler, Ao as SetModuleDescriptionInput, Ar as DocumentModelLib, As as ValidationError, At as garbageCollectDocumentOperations, B as reorderModules, Ba as Reducer, Bi as MutationDeleteModuleArgs, Bn as AddOperationExampleInput, Bo as SetOperationErrorDescriptionAction, Br as DocumentModelOperationOperations, Bt as mapSkippedOperationsV2, C as deleteOperation, Ca as MutationUpdateOperationExampleArgs, Ci as MakeOptional, Cn as defaultDocumentState, Co as SetModelExtensionAction, Cr as DocumentModelAction, Cs as UpdateOperationExampleAction, Ct as baseCreateDocument, D as documentModelActions, Da as OperationIndex, Di as Meta, Dn as ActionErrorCallback, Do as SetModelNameAction, Dr as DocumentModelHeaderAction, Ds as UpgradeDocumentAction, Dt as filterDocumentOperationsResultingState, E as deleteStateExample, Ea as OperationErrorSpecification, Ei as Maybe, En as defaultPHState, Eo as SetModelIdInput, Er as DocumentModelGlobalState, Es as UpdateStateExampleInput, Et as diffOperations, F as prune, Fa as PruneActionInput, Fi as MutationAddOperationArgs, Fn as AddModuleInput, Fo as SetNameOperation, Fr as DocumentModelOperationAction, Ft as isDocumentAction, G as setAuthorWebsite, Ga as ReorderChangeLogItemsAction, Gi as MutationLoadStateArgs, Gn as AddStateExampleInput, Go as SetOperationErrorTemplateInput, Gr as DocumentModelVersioningAction, Gt as precedes, H as reorderOperationExamples, Ha as ReleaseNewVersionAction, Hi as MutationDeleteOperationErrorArgs, Hn as AddRelationshipAction, Ho as SetOperationErrorNameAction, Hr as DocumentModelStateAction, Ht as nextSkipNumber, I as redo, Ia as Query, Ii as MutationAddOperationErrorArgs, In as AddOperationAction, Io as SetOperationDescriptionAction, Ir as DocumentModelOperationErrorAction, It as isNoopOperation, J as setModelExtension, Ja as ReorderModuleOperationsInput, Ji as MutationRedoArgs, Jn as AssertIsStateOfType, Jo as SetOperationReducerAction, Jr as DocumentSpecification, Jt as removeExistingOperations, K as setInitialState, Ka as ReorderChangeLogItemsInput, Ki as MutationMoveOperationArgs, Kn as App, Ko as SetOperationNameAction, Kr as DocumentModelVersioningOperations, Kt as prepareOperations, L as releaseNewVersion, La as Redo, Li as MutationAddOperationExampleArgs, Ln as AddOperationErrorAction, Lo as SetOperationDescriptionInput, Lr as DocumentModelOperationErrorOperations, Lt as isUndo, M as operationFromAction, Ma as PartialState, Mi as Mutation, Mn as AddChangeLogItemAction, Mo as SetModuleNameInput, Mr as DocumentModelModule, Ms as UpgradeReducer, Mt as getDocumentLastModified, N as operationFromOperation, Na as Prune, Ni as MutationAddChangeLogItemInputArgs, Nn as AddChangeLogItemInput, No as SetNameAction, Nr as DocumentModelModuleAction, Ns as UpgradeTransition, Nt as groupOperationsByScope, O as loadState, Oa as OperationSpecification, Oi as MinimalBackupData, On as ActionSignatureContext, Oo as SetModelNameInput, Or as DocumentModelHeaderOperations, Os as UpgradeDocumentActionInput, Ot as filterDuplicatedOperations, P as operationWithContext, Pa as PruneAction, Pi as MutationAddModuleArgs, Pn as AddModuleAction, Po as SetNameActionInput, Pr as DocumentModelModuleOperations, Pt as hashDocumentStateForScope, Q as setModuleName, Qa as ReorderOperationErrorsInput, Qi as MutationReorderOperationErrorsArgs, Qn as CopyChildDocumentSignal, Qo as SetOperationScopeAction, Qr as EditorProps, Qt as skipHeaderOperations, R as reorderChangeLogItems, Ra as RedoAction, Ri as MutationAddStateExampleArgs, Rn as AddOperationErrorInput, Ro as SetOperationErrorCodeAction, Rr as DocumentModelOperationExampleAction, Rt as isUndoRedo, S as deleteModule, Sa as MutationUpdateChangeLogItemInputArgs, Si as MakeMaybe, Sn as defaultBaseState, So as SetModelDescriptionInput, Sr as DocumentFile, Ss as UpdateChangeLogItemInput, St as attachBranch, T as deleteOperationExample, Ta as NOOPAction, Ti as MappedOperation, Tn as defaultLocalState, To as SetModelIdAction, Tr as DocumentModelDocumentModelModule, Ts as UpdateStateExampleAction, Tt as checkOperationsIntegrity, U as reorderStateExamples, Ua as RemoveRelationshipAction, Ui as MutationDeleteOperationExampleArgs, Un as AddRelationshipActionInput, Uo as SetOperationErrorNameInput, Ur as DocumentModelStateOperations, Ut as operationsAreEqual, V as reorderOperationErrors, Va as ReducerOptions, Vi as MutationDeleteOperationArgs, Vn as AddOperationInput, Vo as SetOperationErrorDescriptionInput, Vr as DocumentModelPHState, Vt as merge, W as setAuthorName, Wa as RemoveRelationshipActionInput, Wi as MutationDeleteStateExampleArgs, Wn as AddStateExampleAction, Wo as SetOperationErrorTemplateAction, Wr as DocumentModelUtils, Wt as parseResultingState, X as setModelName, Xa as ReorderModulesInput, Xi as MutationReorderModuleOperationsArgs, Xn as CodeExample, Xo as SetOperationSchemaAction, Xr as EditorDispatch, Xt as reshuffleByTimestamp, Y as setModelId, Ya as ReorderModulesAction, Yi as MutationReorderChangeLogItemsInputArgs, Yn as Author, Yo as SetOperationReducerInput, Yr as ENSInfo, Yt as replayDocument, Z as setModuleDescription, Za as ReorderOperationErrorsAction, Zi as MutationReorderModulesArgs, Zn as CopyChildDocumentInput, Zo as SetOperationSchemaInput, Zr as EditorModule, Zt as reshuffleByTimestampAndIndex, _ as baseActions, _a as MutationSetOperationReducerArgs, _i as LoadStateAction, _n as createDocumentState, _o as SetAuthorWebsiteAction, _r as DeleteOperationExampleInput, _s as Undo, _t as IntegrityIssueType, a as AttachmentInput, aa as MutationSetModelExtensionArgs, ai as IDocument, an as OperationContext, ao as SaveToFile, ar as DeleteChangeLogItemAction, as as Signal, at as setOperationName, b as createAction, ba as MutationSetStateSchemaArgs, bi as Load_State, bn as createState, bo as SetInitialStateInput, br as DeleteStateExampleInput, bs as UndoRedoAction, bt as PHDocumentMeta, c as actionFromAction, ca as MutationSetModuleDescriptionArgs, cc as ActionSigner, ci as ISignalResult, cn as redoOperation, co as SchemaLoadStateAction, cr as DeleteChildDocumentSignal, cs as SignalResults, ct as setOperationScope, d as addChangeLogItem, da as MutationSetOperationDescriptionArgs, dc as PHDocumentSignatureInfo, di as Incremental, dn as undoOperationV2, do as SchemaRedoAction, dr as DeleteModuleAction, ds as SigningParameters, dt as undo, ea as MutationReorderStateExamplesArgs, ei as FileInput, en as sortOperations, eo as ReorderOperationExamplesInput, er as CreateChildDocumentSignal, es as SetOperationTemplateAction, et as setOperationDescription, f as addModule, fa as MutationSetOperationErrorCodeArgs, fc as Signature, fi as InputMaybe, fn as PHAuthState, fo as SchemaSetNameAction, fr as DeleteModuleInput, fs as SkipHeaderOperationIndex, ft as updateChangeLogItem, g as addStateExample, ga as MutationSetOperationNameArgs, gi as LoadFromInput, gn as createBaseState, go as SetAuthorNameInput, gr as DeleteOperationExampleAction, gs as SubgraphModule, gt as IntegrityIssueSubType, h as addOperationExample, ha as MutationSetOperationErrorTemplateArgs, hi as LoadFromFile, hn as createAuthState, ho as SetAuthorNameAction, hr as DeleteOperationErrorInput, hs as StateReducer, ht as verifyOperationSignature, i as Attachment, ia as MutationSetModelDescriptionArgs, ii as ID, in as Operation, io as RevisionsFilter, ir as CreateState, is as Set_Name, it as setOperationErrorTemplate, j as operationExampleCreators, ja as PartialRecord, ji as MoveOperationInput, jn as Actions, jo as SetModuleNameAction, jr as DocumentModelLocalState, js as UpgradeManifest, jt as garbageCollectV2, k as moveOperation, ka as OperationsByScope, ki as ModuleSpecification, kn as ActionSigningHandler, ko as SetModuleDescriptionAction, kr as DocumentModelInput, ks as User, kt as garbageCollect, l as actionSigner, la as MutationSetModuleNameArgs, lc as AppActionSigner, li as ISigner, ln as setNameOperation, lo as SchemaNOOPAction, lr as DeleteDocumentAction, ls as SignalType, lt as setOperationTemplate, m as addOperationError, ma as MutationSetOperationErrorNameArgs, mi as IsStateOfType, mn as PHDocumentState, mo as ScopeState, mr as DeleteOperationErrorAction, ms as State, mt as updateStateExample, n as ActionContext, na as MutationSetAuthorWebsiteArgs, ni as GetDocumentOptions, nn as updateHeaderRevision, no as ReorderStateExamplesInput, nr as CreateDocumentAction, ns as SetStateSchemaAction, nt as setOperationErrorDescription, o as AttachmentRef, oa as MutationSetModelIdArgs, oi as IOperation, on as OperationWithContext, oo as SaveToFileHandle, or as DeleteChangeLogItemInput, os as SignalDispatch, ot as setOperationReducer, p as addOperation, pa as MutationSetOperationErrorDescriptionArgs, pc as UserActionSigner, pi as IsDocumentOfType, pn as PHBaseState, po as SchemaUndoAction, pr as DeleteOperationAction, ps as SkipHeaderOperations, pt as updateOperationExample, q as setModelDescription, qa as ReorderModuleOperationsAction, qi as MutationPruneArgs, qn as AssertIsDocumentOfType, qo as SetOperationNameInput, qr as DocumentOperationsIgnoreMap, qt as readOnly, r as ActionWithAttachment, ra as MutationSetInitialStateArgs, ri as IAction, rn as DocumentOperations, ro as ReplayDocumentOptions, rr as CreateDocumentActionInput, rs as SetStateSchemaInput, rt as setOperationErrorName, s as actionContext, sa as MutationSetModelNameArgs, si as ISignal, sn as loadStateOperation, so as Scalars, sr as DeleteChildDocumentInput, ss as SignalResult, st as setOperationSchema, t as Action, ta as MutationSetAuthorNameArgs, ti as FileRegistry, tn as split, to as ReorderStateExamplesAction, tr as CreateDocument, ts as SetOperationTemplateInput, tt as setOperationErrorCode, u as actions, ua as MutationSetNameArgs, uc as HashConfig, ui as ImportScriptModule, un as undoOperation, uo as SchemaPruneAction, ur as DeleteDocumentActionInput, us as SignatureVerificationHandler, ut as setStateSchema, v as buildOperationSignature, va as MutationSetOperationSchemaArgs, vi as LoadStateActionInput, vn as createGlobalState, vo as SetAuthorWebsiteInput, vr as DeleteOperationInput, vs as UndoAction, vt as PHDocument, w as deleteOperationError, wa as MutationUpdateStateExampleArgs, wi as Manifest, wn as defaultGlobalState, wo as SetModelExtensionInput, wr as DocumentModelDocument, ws as UpdateOperationExampleInput, wt as checkCleanedOperationsIntegrity, x as deleteChangeLogItem, xa as MutationUndoArgs, xi as MakeEmpty, xn as defaultAuthState, xo as SetModelDescriptionAction, xr as DocumentAction, xs as UpdateChangeLogItemAction, xt as addUndo, y as buildSignedAction, ya as MutationSetOperationTemplateArgs, yi as LoadStateActionStateInput, yn as createLocalState, yo as SetInitialStateAction, yr as DeleteStateExampleAction, ys as UndoActionInput, yt as PHDocumentHeader, z as reorderModuleOperations, za as RedoActionInput, zi as MutationDeleteChangeLogItemInputArgs, zn as AddOperationExampleAction, zo as SetOperationErrorCodeInput, zr as DocumentModelOperationExampleOperations, zt as mapSkippedOperations } from "../actions-3-rhhWx6.js";
2
- import { $ as ReorderStateExamplesInputSchema, $t as validateHeader, A as DocumentModelGlobalStateSchema, An as hex2ab, At as UpdateStateExampleInputSchema, B as OperationScopeSchema, Bt as documentModelStateSchemaReducer, C as DeleteModuleInputSchema, Cn as isDocumentModelDocument, Ct as Set_NameSchema, D as DeleteStateExampleInputSchema, Dn as buildOperationSignatureParams, Dt as UndoSchema, E as DeleteOperationInputSchema, En as buildOperationSignatureMessage, Et as UndoActionSchema, F as LoadStateActionStateInputSchema, Fn as HASH_ENCODING_HEX, Ft as documentModelOperationErrorReducer, G as RedoActionInputSchema, Gt as pruneOperation, H as PruneActionInputSchema, Ht as baseReducer, I as Load_StateSchema, In as documentModelFileExtension, It as documentModelOperationExampleReducer, J as ReorderChangeLogItemsInputSchema, Jt as createPresignedHeader, K as RedoActionSchema, Kt as replayOperations, L as ModuleSchema, Ln as documentModelGlobalState, Lt as documentModelOperationReducer, M as DocumentSpecificationSchema, Mn as HASH_ALGORITHM_SHA256, Mt as isDefinedNonNullAny, N as LoadStateActionInputSchema, Nn as HASH_ALGORITHM_SHA512, Nt as documentModelHeaderReducer, O as DocumentActionSchema, On as getUnixTimestamp, Ot as UpdateChangeLogItemInputSchema, P as LoadStateActionSchema, Pn as HASH_ENCODING_BASE64, Pt as documentModelModuleReducer, Q as ReorderOperationExamplesInputSchema, Qt as sign, R as MoveOperationInputSchema, Rn as documentModelInitialGlobalState, Rt as documentModelReducer, S as DeleteChangeLogItemInputSchema, Sn as assertIsDocumentModelState, St as SetStateSchemaInputSchema, T as DeleteOperationExampleInputSchema, Tn as ab2hex, Tt as UndoActionInputSchema, U as PruneActionSchema, Ut as createReducer, V as OperationSpecificationSchema, Vt as documentModelVersioningReducer, W as PruneSchema, Wt as processUndoRedo, X as ReorderModulesInputSchema, Xt as createSignedHeaderForSigner, Y as ReorderModuleOperationsInputSchema, Yt as createSignedHeader, Z as ReorderOperationErrorsInputSchema, Zt as createVerificationSigner, _ as AddOperationExampleInputSchema, _n as BaseDocumentStateSchema, _t as SetOperationNameInputSchema, a as validateInitialState, an as documentModelLoadFromInput, at as SetModelExtensionInputSchema, b as AuthorSchema, bn as DocumentModelSchema, bt as SetOperationScopeInputSchema, c as validateModules, cn as getFileBrowser, ct as SetModuleDescriptionInputSchema, d as validateStateSchemaName, dn as FileSystemError, dt as SetNameActionSchema, en as verify, et as ScopeStateSchema, f as deriveOperationId, fn as HashMismatchError, ft as SetOperationDescriptionInputSchema, g as AddOperationErrorInputSchema, gn as BaseDocumentHeaderSchema, gt as SetOperationErrorTemplateInputSchema, h as AddModuleInputSchema, hn as documentModelDocumentType, ht as SetOperationErrorNameInputSchema, i as isReservedOperationName, in as createZip, it as SetModelDescriptionInputSchema, j as DocumentModelInputSchema, jn as HASH_ALGORITHM_SHA1, jt as definedNonNullAnySchema, k as DocumentFileSchema, kn as hashBrowser, kt as UpdateOperationExampleInputSchema, l as validateOperationName, ln as readFileBrowser, lt as SetModuleNameInputSchema, m as AddChangeLogItemInputSchema, mn as InvalidActionInputZodError, mt as SetOperationErrorDescriptionInputSchema, n as ReservedOperationName, nn as baseSaveToFileHandle, nt as SetAuthorWebsiteInputSchema, o as validateModule, on as documentModelSaveToFileHandle, ot as SetModelIdInputSchema, p as generateId, pn as InvalidActionInputError, pt as SetOperationErrorCodeInputSchema, q as RedoSchema, qt as updateDocument, r as getAllOperationNames, rn as createMinimalZip, rt as SetInitialStateInputSchema, s as validateModuleOperation, sn as fetchFileBrowser, st as SetModelNameInputSchema, t as RESERVED_OPERATION_NAMES, tn as baseLoadFromInput, tt as SetAuthorNameInputSchema, u as validateOperations, un as writeFileBrowser, ut as SetNameActionInputSchema, v as AddOperationInputSchema, vn as DocumentModelHeaderSchema, vt as SetOperationReducerInputSchema, w as DeleteOperationErrorInputSchema, wn as isDocumentModelState, wt as StateSchema, x as CodeExampleSchema, xn as assertIsDocumentModelDocument, xt as SetOperationTemplateInputSchema, y as AddStateExampleInputSchema, yn as DocumentModelPHStateSchema, yt as SetOperationSchemaInputSchema, z as OperationErrorSchema, zn as documentModelInitialLocalState, zt as documentModelStateReducer } from "../index-BwKTUOh8.js";
3
- export { Action, ActionContext, ActionErrorCallback, ActionSignatureContext, ActionSigner, ActionSigningHandler, ActionVerificationHandler, ActionWithAttachment, Actions, AddChangeLogItemAction, AddChangeLogItemInput, AddChangeLogItemInputSchema, AddModuleAction, AddModuleInput, AddModuleInputSchema, AddOperationAction, AddOperationErrorAction, AddOperationErrorInput, AddOperationErrorInputSchema, AddOperationExampleAction, AddOperationExampleInput, AddOperationExampleInputSchema, AddOperationInput, AddOperationInputSchema, AddRelationshipAction, AddRelationshipActionInput, AddStateExampleAction, AddStateExampleInput, AddStateExampleInputSchema, App, AppActionSigner, AssertIsDocumentOfType, AssertIsStateOfType, Attachment, AttachmentInput, AttachmentRef, Author, AuthorSchema, BaseDocumentHeaderSchema, BaseDocumentStateSchema, CodeExample, CodeExampleSchema, CopyChildDocumentInput, CopyChildDocumentSignal, CreateChildDocumentInput, CreateChildDocumentSignal, CreateDocument, CreateDocumentAction, CreateDocumentActionInput, CreateState, DeleteChangeLogItemAction, DeleteChangeLogItemInput, DeleteChangeLogItemInputSchema, DeleteChildDocumentInput, DeleteChildDocumentSignal, DeleteDocumentAction, DeleteDocumentActionInput, DeleteModuleAction, DeleteModuleInput, DeleteModuleInputSchema, DeleteOperationAction, DeleteOperationErrorAction, DeleteOperationErrorInput, DeleteOperationErrorInputSchema, DeleteOperationExampleAction, DeleteOperationExampleInput, DeleteOperationExampleInputSchema, DeleteOperationInput, DeleteOperationInputSchema, DeleteStateExampleAction, DeleteStateExampleInput, DeleteStateExampleInputSchema, DocumentAction, DocumentActionSchema, DocumentFile, DocumentFileSchema, DocumentModelAction, DocumentModelDocument, DocumentModelDocumentModelModule, DocumentModelGlobalState, DocumentModelGlobalStateSchema, DocumentModelHeaderAction, DocumentModelHeaderOperations, DocumentModelHeaderSchema, DocumentModelInput, DocumentModelInputSchema, DocumentModelLib, DocumentModelLocalState, DocumentModelModule, DocumentModelModuleAction, DocumentModelModuleOperations, DocumentModelOperationAction, DocumentModelOperationErrorAction, DocumentModelOperationErrorOperations, DocumentModelOperationExampleAction, DocumentModelOperationExampleOperations, DocumentModelOperationOperations, DocumentModelPHState, DocumentModelPHStateSchema, DocumentModelSchema, DocumentModelStateAction, DocumentModelStateOperations, DocumentModelUtils, DocumentModelVersioningAction, DocumentModelVersioningOperations, DocumentOperations, DocumentOperationsIgnoreMap, DocumentSpecification, DocumentSpecificationSchema, ENSInfo, EditorDispatch, EditorModule, EditorProps, Exact, FileInput, FileRegistry, FileSystemError, GetDocumentOptions, HASH_ALGORITHM_SHA1, HASH_ALGORITHM_SHA256, HASH_ALGORITHM_SHA512, HASH_ENCODING_BASE64, HASH_ENCODING_HEX, HashConfig, HashMismatchError, IAction, ID, IDocument, IOperation, ISignal, ISignalResult, ISigner, ImportScriptModule, Incremental, InputMaybe, IntegrityIssueSubType, IntegrityIssueType, InvalidActionInputError, InvalidActionInputZodError, IsDocumentOfType, IsStateOfType, LoadFromFile, LoadFromInput, LoadStateAction, LoadStateActionInput, LoadStateActionInputSchema, LoadStateActionSchema, LoadStateActionStateInput, LoadStateActionStateInputSchema, Load_State, Load_StateSchema, MakeEmpty, MakeMaybe, MakeOptional, Manifest, MappedOperation, Maybe, Meta, MinimalBackupData, ModuleSchema, ModuleSpecification, MoveOperationAction, MoveOperationInput, MoveOperationInputSchema, Mutation, MutationAddChangeLogItemInputArgs, MutationAddModuleArgs, MutationAddOperationArgs, MutationAddOperationErrorArgs, MutationAddOperationExampleArgs, MutationAddStateExampleArgs, MutationDeleteChangeLogItemInputArgs, MutationDeleteModuleArgs, MutationDeleteOperationArgs, MutationDeleteOperationErrorArgs, MutationDeleteOperationExampleArgs, MutationDeleteStateExampleArgs, MutationLoadStateArgs, MutationMoveOperationArgs, MutationPruneArgs, MutationRedoArgs, MutationReorderChangeLogItemsInputArgs, MutationReorderModuleOperationsArgs, MutationReorderModulesArgs, MutationReorderOperationErrorsArgs, MutationReorderOperationExamplesArgs, MutationReorderStateExamplesArgs, MutationSetAuthorNameArgs, MutationSetAuthorWebsiteArgs, MutationSetInitialStateArgs, MutationSetModelDescriptionArgs, MutationSetModelExtensionArgs, MutationSetModelIdArgs, MutationSetModelNameArgs, MutationSetModuleDescriptionArgs, MutationSetModuleNameArgs, MutationSetNameArgs, MutationSetOperationDescriptionArgs, MutationSetOperationErrorCodeArgs, MutationSetOperationErrorDescriptionArgs, MutationSetOperationErrorNameArgs, MutationSetOperationErrorTemplateArgs, MutationSetOperationNameArgs, MutationSetOperationReducerArgs, MutationSetOperationSchemaArgs, MutationSetOperationTemplateArgs, MutationSetStateSchemaArgs, MutationUndoArgs, MutationUpdateChangeLogItemInputArgs, MutationUpdateOperationExampleArgs, MutationUpdateStateExampleArgs, NOOPAction, Operation, OperationContext, OperationErrorSchema, OperationErrorSpecification, OperationIndex, OperationScopeSchema, OperationSpecification, OperationSpecificationSchema, OperationWithContext, OperationsByScope, PHAuthState, PHBaseState, PHDocument, PHDocumentHeader, PHDocumentMeta, PHDocumentSignatureInfo, PHDocumentState, PHStateReducer, PartialRecord, PartialState, Prune, PruneAction, PruneActionInput, PruneActionInputSchema, PruneActionSchema, PruneSchema, Query, RESERVED_OPERATION_NAMES, Redo, RedoAction, RedoActionInput, RedoActionInputSchema, RedoActionSchema, RedoSchema, Reducer, ReducerOptions, ReleaseNewVersionAction, RemoveRelationshipAction, RemoveRelationshipActionInput, ReorderChangeLogItemsAction, ReorderChangeLogItemsInput, ReorderChangeLogItemsInputSchema, ReorderModuleOperationsAction, ReorderModuleOperationsInput, ReorderModuleOperationsInputSchema, ReorderModulesAction, ReorderModulesInput, ReorderModulesInputSchema, ReorderOperationErrorsAction, ReorderOperationErrorsInput, ReorderOperationErrorsInputSchema, ReorderOperationExamplesAction, ReorderOperationExamplesInput, ReorderOperationExamplesInputSchema, ReorderStateExamplesAction, ReorderStateExamplesInput, ReorderStateExamplesInputSchema, ReplayDocumentOptions, ReservedOperationName, RevisionsFilter, SaveToFile, SaveToFileHandle, Scalars, SchemaLoadStateAction, SchemaNOOPAction, SchemaPruneAction, SchemaRedoAction, SchemaSetNameAction, SchemaUndoAction, ScopeState, ScopeStateSchema, SetAuthorNameAction, SetAuthorNameInput, SetAuthorNameInputSchema, SetAuthorWebsiteAction, SetAuthorWebsiteInput, SetAuthorWebsiteInputSchema, SetInitialStateAction, SetInitialStateInput, SetInitialStateInputSchema, SetModelDescriptionAction, SetModelDescriptionInput, SetModelDescriptionInputSchema, SetModelExtensionAction, SetModelExtensionInput, SetModelExtensionInputSchema, SetModelIdAction, SetModelIdInput, SetModelIdInputSchema, SetModelNameAction, SetModelNameInput, SetModelNameInputSchema, SetModuleDescriptionAction, SetModuleDescriptionInput, SetModuleDescriptionInputSchema, SetModuleNameAction, SetModuleNameInput, SetModuleNameInputSchema, SetNameAction, SetNameActionInput, SetNameActionInputSchema, SetNameActionSchema, SetNameOperation, SetOperationDescriptionAction, SetOperationDescriptionInput, SetOperationDescriptionInputSchema, SetOperationErrorCodeAction, SetOperationErrorCodeInput, SetOperationErrorCodeInputSchema, SetOperationErrorDescriptionAction, SetOperationErrorDescriptionInput, SetOperationErrorDescriptionInputSchema, SetOperationErrorNameAction, SetOperationErrorNameInput, SetOperationErrorNameInputSchema, SetOperationErrorTemplateAction, SetOperationErrorTemplateInput, SetOperationErrorTemplateInputSchema, SetOperationNameAction, SetOperationNameInput, SetOperationNameInputSchema, SetOperationReducerAction, SetOperationReducerInput, SetOperationReducerInputSchema, SetOperationSchemaAction, SetOperationSchemaInput, SetOperationSchemaInputSchema, SetOperationScopeAction, SetOperationScopeInput, SetOperationScopeInputSchema, SetOperationTemplateAction, SetOperationTemplateInput, SetOperationTemplateInputSchema, SetStateSchemaAction, SetStateSchemaInput, SetStateSchemaInputSchema, Set_Name, Set_NameSchema, Signal, SignalDispatch, SignalResult, SignalResults, SignalType, Signature, SignatureVerificationHandler, SigningParameters, SkipHeaderOperationIndex, SkipHeaderOperations, State, StateReducer, StateSchema, SubgraphModule, Undo, UndoAction, UndoActionInput, UndoActionInputSchema, UndoActionSchema, UndoRedoAction, UndoSchema, UpdateChangeLogItemAction, UpdateChangeLogItemInput, UpdateChangeLogItemInputSchema, UpdateOperationExampleAction, UpdateOperationExampleInput, UpdateOperationExampleInputSchema, UpdateStateExampleAction, UpdateStateExampleInput, UpdateStateExampleInputSchema, UpgradeDocumentAction, UpgradeDocumentActionInput, UpgradeManifest, UpgradeReducer, UpgradeTransition, User, UserActionSigner, ValidationError, ab2hex, actionContext, actionFromAction, actionSigner, actions, addChangeLogItem, addModule, addOperation, addOperationError, addOperationExample, addStateExample, addUndo, assertIsDocumentModelDocument, assertIsDocumentModelState, attachBranch, baseActions, baseCreateDocument, baseLoadFromInput, baseReducer, baseSaveToFileHandle, buildOperationSignature, buildOperationSignatureMessage, buildOperationSignatureParams, buildSignedAction, checkCleanedOperationsIntegrity, checkOperationsIntegrity, createAction, createAuthState, createBaseState, createDocumentState, createGlobalState, createLocalState, createMinimalZip, createPresignedHeader, createReducer, createSignedHeader, createSignedHeaderForSigner, createState, createVerificationSigner, createZip, defaultAuthState, defaultBaseState, defaultDocumentState, defaultGlobalState, defaultLocalState, defaultPHState, definedNonNullAnySchema, deleteChangeLogItem, deleteModule, deleteOperation, deleteOperationError, deleteOperationExample, deleteStateExample, deriveOperationId, diffOperations, documentModelActions, documentModelDocumentType, documentModelFileExtension, documentModelGlobalState, documentModelHeaderReducer, documentModelInitialGlobalState, documentModelInitialLocalState, documentModelLoadFromInput, documentModelModuleReducer, documentModelOperationErrorReducer, documentModelOperationExampleReducer, documentModelOperationReducer, documentModelReducer, documentModelSaveToFileHandle, documentModelStateReducer, documentModelStateSchemaReducer, documentModelVersioningReducer, fetchFileBrowser, filterDocumentOperationsResultingState, filterDuplicatedOperations, garbageCollect, garbageCollectDocumentOperations, garbageCollectV2, generateId, getAllOperationNames, getDocumentLastModified, getFileBrowser, getUnixTimestamp, groupOperationsByScope, hashBrowser, hashDocumentStateForScope, hex2ab, isDefinedNonNullAny, isDocumentAction, isDocumentModelDocument, isDocumentModelState, isNoopOperation, isReservedOperationName, isUndo, isUndoRedo, loadState, loadStateOperation, mapSkippedOperations, mapSkippedOperationsV2, merge, moveOperation, nextSkipNumber, noop, operationExampleCreators, operationFromAction, operationFromOperation, operationWithContext, operationsAreEqual, parseResultingState, precedes, prepareOperations, processUndoRedo, prune, pruneOperation, readFileBrowser, readOnly, redo, redoOperation, releaseNewVersion, removeExistingOperations, reorderChangeLogItems, reorderModuleOperations, reorderModules, reorderOperationErrors, reorderOperationExamples, reorderStateExamples, replayDocument, replayOperations, reshuffleByTimestamp, reshuffleByTimestampAndIndex, setAuthorName, setAuthorWebsite, setInitialState, setModelDescription, setModelExtension, setModelId, setModelName, setModuleDescription, setModuleName, setName, setNameOperation, setOperationDescription, setOperationErrorCode, setOperationErrorDescription, setOperationErrorName, setOperationErrorTemplate, setOperationName, setOperationReducer, setOperationSchema, setOperationScope, setOperationTemplate, setStateSchema, sign, skipHeaderOperations, sortMappedOperations, sortOperations, split, undo, undoOperation, undoOperationV2, updateChangeLogItem, updateDocument, updateHeaderRevision, updateOperationExample, updateStateExample, validateHeader, validateInitialState, validateModule, validateModuleOperation, validateModules, validateOperationName, validateOperations, validateStateSchemaName, verify, verifyOperationSignature, writeFileBrowser };
2
+ import { $ as ReorderOperationExamplesInputSchema, $t as sign, A as DocumentFileSchema, An as hashBrowser, At as UpdateOperationExampleInputSchema, B as OperationErrorSchema, Bn as documentModelInitialLocalState, Bt as documentModelStateReducer, C as DeleteChangeLogItemInputSchema, Cn as assertIsDocumentModelState, Ct as SetStateSchemaInputSchema, D as DeleteOperationInputSchema, Dn as buildOperationSignatureMessage, Dt as UndoActionSchema, E as DeleteOperationExampleInputSchema, En as ab2hex, Et as UndoActionInputSchema, F as LoadStateActionSchema, Fn as HASH_ENCODING_BASE64, Ft as documentModelModuleReducer, G as PruneSchema, Gt as processUndoRedo, H as OperationSpecificationSchema, Ht as documentModelVersioningReducer, I as LoadStateActionStateInputSchema, In as HASH_ENCODING_HEX, It as documentModelOperationErrorReducer, J as RedoSchema, Jt as updateDocument, K as RedoActionInputSchema, Kt as pruneOperation, L as Load_StateSchema, Ln as documentModelFileExtension, Lt as documentModelOperationExampleReducer, M as DocumentModelInputSchema, Mn as HASH_ALGORITHM_SHA1, Mt as definedNonNullAnySchema, N as DocumentSpecificationSchema, Nn as HASH_ALGORITHM_SHA256, Nt as isDefinedNonNullAny, O as DeleteStateExampleInputSchema, On as buildOperationSignatureParams, Ot as UndoSchema, P as LoadStateActionInputSchema, Pn as HASH_ALGORITHM_SHA512, Pt as documentModelHeaderReducer, Q as ReorderOperationErrorsInputSchema, Qt as createVerificationSigner, R as ModuleSchema, Rn as documentModelGlobalState, Rt as documentModelOperationReducer, S as CodeExampleSchema, Sn as assertIsDocumentModelDocument, St as SetOperationTemplateInputSchema, T as DeleteOperationErrorInputSchema, Tn as isDocumentModelState, Tt as StateSchema, U as PruneActionInputSchema, Ut as baseReducer, V as OperationScopeSchema, Vt as documentModelStateSchemaReducer, W as PruneActionSchema, Wt as createReducer, X as ReorderModuleOperationsInputSchema, Xt as createSignedHeader, Y as ReorderChangeLogItemsInputSchema, Yt as createPresignedHeader, Z as ReorderModulesInputSchema, Zt as createSignedHeaderForSigner, _ as AddOperationErrorInputSchema, _n as BaseDocumentHeaderSchema, _t as SetOperationErrorTemplateInputSchema, a as validateInitialState, an as createZip, at as SetModelDescriptionInputSchema, b as AddStateExampleInputSchema, bn as DocumentModelPHStateSchema, bt as SetOperationSchemaInputSchema, c as validateModules, cn as fetchFileBrowser, ct as SetModelNameInputSchema, d as validateStateSchemaName, dn as writeFileBrowser, dt as SetNameActionInputSchema, en as validateHeader, et as ReorderStateExamplesInputSchema, f as deriveOperationId, fn as FileSystemError, ft as SetNameActionSchema, g as AddModuleInputSchema, gn as documentModelDocumentType, gt as SetOperationErrorNameInputSchema, h as AddChangeLogItemInputSchema, hn as InvalidActionInputZodError, ht as SetOperationErrorDescriptionInputSchema, i as isReservedOperationName, in as createMinimalZip, it as SetInitialStateInputSchema, j as DocumentModelGlobalStateSchema, jn as hex2ab, jt as UpdateStateExampleInputSchema, k as DocumentActionSchema, kn as getUnixTimestamp, kt as UpdateChangeLogItemInputSchema, l as validateOperationName, ln as getFileBrowser, lt as SetModuleDescriptionInputSchema, m as generateMock, mn as InvalidActionInputError, mt as SetOperationErrorCodeInputSchema, n as ReservedOperationName, nn as baseLoadFromInput, nt as SetAuthorNameInputSchema, o as validateModule, on as documentModelLoadFromInput, ot as SetModelExtensionInputSchema, p as generateId, pn as HashMismatchError, pt as SetOperationDescriptionInputSchema, q as RedoActionSchema, qt as replayOperations, r as getAllOperationNames, rn as baseSaveToFileHandle, rt as SetAuthorWebsiteInputSchema, s as validateModuleOperation, sn as documentModelSaveToFileHandle, st as SetModelIdInputSchema, t as RESERVED_OPERATION_NAMES, tn as verify, tt as ScopeStateSchema, u as validateOperations, un as readFileBrowser, ut as SetModuleNameInputSchema, v as AddOperationExampleInputSchema, vn as BaseDocumentStateSchema, vt as SetOperationNameInputSchema, w as DeleteModuleInputSchema, wn as isDocumentModelDocument, wt as Set_NameSchema, x as AuthorSchema, xn as DocumentModelSchema, xt as SetOperationScopeInputSchema, y as AddOperationInputSchema, yn as DocumentModelHeaderSchema, yt as SetOperationReducerInputSchema, z as MoveOperationInputSchema, zn as documentModelInitialGlobalState, zt as documentModelReducer } from "../index-COMYEav_.js";
3
+ export { Action, ActionContext, ActionErrorCallback, ActionSignatureContext, ActionSigner, ActionSigningHandler, ActionVerificationHandler, ActionWithAttachment, Actions, AddChangeLogItemAction, AddChangeLogItemInput, AddChangeLogItemInputSchema, AddModuleAction, AddModuleInput, AddModuleInputSchema, AddOperationAction, AddOperationErrorAction, AddOperationErrorInput, AddOperationErrorInputSchema, AddOperationExampleAction, AddOperationExampleInput, AddOperationExampleInputSchema, AddOperationInput, AddOperationInputSchema, AddRelationshipAction, AddRelationshipActionInput, AddStateExampleAction, AddStateExampleInput, AddStateExampleInputSchema, App, AppActionSigner, AssertIsDocumentOfType, AssertIsStateOfType, Attachment, AttachmentInput, AttachmentRef, Author, AuthorSchema, BaseDocumentHeaderSchema, BaseDocumentStateSchema, CodeExample, CodeExampleSchema, CopyChildDocumentInput, CopyChildDocumentSignal, CreateChildDocumentInput, CreateChildDocumentSignal, CreateDocument, CreateDocumentAction, CreateDocumentActionInput, CreateState, DeleteChangeLogItemAction, DeleteChangeLogItemInput, DeleteChangeLogItemInputSchema, DeleteChildDocumentInput, DeleteChildDocumentSignal, DeleteDocumentAction, DeleteDocumentActionInput, DeleteModuleAction, DeleteModuleInput, DeleteModuleInputSchema, DeleteOperationAction, DeleteOperationErrorAction, DeleteOperationErrorInput, DeleteOperationErrorInputSchema, DeleteOperationExampleAction, DeleteOperationExampleInput, DeleteOperationExampleInputSchema, DeleteOperationInput, DeleteOperationInputSchema, DeleteStateExampleAction, DeleteStateExampleInput, DeleteStateExampleInputSchema, DocumentAction, DocumentActionSchema, DocumentFile, DocumentFileSchema, DocumentModelAction, DocumentModelDocument, DocumentModelDocumentModelModule, DocumentModelGlobalState, DocumentModelGlobalStateSchema, DocumentModelHeaderAction, DocumentModelHeaderOperations, DocumentModelHeaderSchema, DocumentModelInput, DocumentModelInputSchema, DocumentModelLib, DocumentModelLocalState, DocumentModelModule, DocumentModelModuleAction, DocumentModelModuleOperations, DocumentModelOperationAction, DocumentModelOperationErrorAction, DocumentModelOperationErrorOperations, DocumentModelOperationExampleAction, DocumentModelOperationExampleOperations, DocumentModelOperationOperations, DocumentModelPHState, DocumentModelPHStateSchema, DocumentModelSchema, DocumentModelStateAction, DocumentModelStateOperations, DocumentModelUtils, DocumentModelVersioningAction, DocumentModelVersioningOperations, DocumentOperations, DocumentOperationsIgnoreMap, DocumentSpecification, DocumentSpecificationSchema, ENSInfo, EditorDispatch, EditorModule, EditorProps, Exact, FileInput, FileRegistry, FileSystemError, GetDocumentOptions, HASH_ALGORITHM_SHA1, HASH_ALGORITHM_SHA256, HASH_ALGORITHM_SHA512, HASH_ENCODING_BASE64, HASH_ENCODING_HEX, HashConfig, HashMismatchError, IAction, ID, IDocument, IOperation, ISignal, ISignalResult, ISigner, ImportScriptModule, Incremental, InputMaybe, IntegrityIssueSubType, IntegrityIssueType, InvalidActionInputError, InvalidActionInputZodError, IsDocumentOfType, IsStateOfType, LoadFromFile, LoadFromInput, LoadStateAction, LoadStateActionInput, LoadStateActionInputSchema, LoadStateActionSchema, LoadStateActionStateInput, LoadStateActionStateInputSchema, Load_State, Load_StateSchema, MakeEmpty, MakeMaybe, MakeOptional, Manifest, MappedOperation, Maybe, Meta, MinimalBackupData, ModuleSchema, ModuleSpecification, MoveOperationAction, MoveOperationInput, MoveOperationInputSchema, Mutation, MutationAddChangeLogItemInputArgs, MutationAddModuleArgs, MutationAddOperationArgs, MutationAddOperationErrorArgs, MutationAddOperationExampleArgs, MutationAddStateExampleArgs, MutationDeleteChangeLogItemInputArgs, MutationDeleteModuleArgs, MutationDeleteOperationArgs, MutationDeleteOperationErrorArgs, MutationDeleteOperationExampleArgs, MutationDeleteStateExampleArgs, MutationLoadStateArgs, MutationMoveOperationArgs, MutationPruneArgs, MutationRedoArgs, MutationReorderChangeLogItemsInputArgs, MutationReorderModuleOperationsArgs, MutationReorderModulesArgs, MutationReorderOperationErrorsArgs, MutationReorderOperationExamplesArgs, MutationReorderStateExamplesArgs, MutationSetAuthorNameArgs, MutationSetAuthorWebsiteArgs, MutationSetInitialStateArgs, MutationSetModelDescriptionArgs, MutationSetModelExtensionArgs, MutationSetModelIdArgs, MutationSetModelNameArgs, MutationSetModuleDescriptionArgs, MutationSetModuleNameArgs, MutationSetNameArgs, MutationSetOperationDescriptionArgs, MutationSetOperationErrorCodeArgs, MutationSetOperationErrorDescriptionArgs, MutationSetOperationErrorNameArgs, MutationSetOperationErrorTemplateArgs, MutationSetOperationNameArgs, MutationSetOperationReducerArgs, MutationSetOperationSchemaArgs, MutationSetOperationTemplateArgs, MutationSetStateSchemaArgs, MutationUndoArgs, MutationUpdateChangeLogItemInputArgs, MutationUpdateOperationExampleArgs, MutationUpdateStateExampleArgs, NOOPAction, Operation, OperationContext, OperationErrorSchema, OperationErrorSpecification, OperationIndex, OperationScopeSchema, OperationSpecification, OperationSpecificationSchema, OperationWithContext, OperationsByScope, PHAuthState, PHBaseState, PHDocument, PHDocumentHeader, PHDocumentMeta, PHDocumentSignatureInfo, PHDocumentState, PHStateReducer, PartialRecord, PartialState, Prune, PruneAction, PruneActionInput, PruneActionInputSchema, PruneActionSchema, PruneSchema, Query, RESERVED_OPERATION_NAMES, Redo, RedoAction, RedoActionInput, RedoActionInputSchema, RedoActionSchema, RedoSchema, Reducer, ReducerOptions, ReleaseNewVersionAction, RemoveRelationshipAction, RemoveRelationshipActionInput, ReorderChangeLogItemsAction, ReorderChangeLogItemsInput, ReorderChangeLogItemsInputSchema, ReorderModuleOperationsAction, ReorderModuleOperationsInput, ReorderModuleOperationsInputSchema, ReorderModulesAction, ReorderModulesInput, ReorderModulesInputSchema, ReorderOperationErrorsAction, ReorderOperationErrorsInput, ReorderOperationErrorsInputSchema, ReorderOperationExamplesAction, ReorderOperationExamplesInput, ReorderOperationExamplesInputSchema, ReorderStateExamplesAction, ReorderStateExamplesInput, ReorderStateExamplesInputSchema, ReplayDocumentOptions, ReservedOperationName, RevisionsFilter, SaveToFile, SaveToFileHandle, Scalars, SchemaLoadStateAction, SchemaNOOPAction, SchemaPruneAction, SchemaRedoAction, SchemaSetNameAction, SchemaUndoAction, ScopeState, ScopeStateSchema, SetAuthorNameAction, SetAuthorNameInput, SetAuthorNameInputSchema, SetAuthorWebsiteAction, SetAuthorWebsiteInput, SetAuthorWebsiteInputSchema, SetInitialStateAction, SetInitialStateInput, SetInitialStateInputSchema, SetModelDescriptionAction, SetModelDescriptionInput, SetModelDescriptionInputSchema, SetModelExtensionAction, SetModelExtensionInput, SetModelExtensionInputSchema, SetModelIdAction, SetModelIdInput, SetModelIdInputSchema, SetModelNameAction, SetModelNameInput, SetModelNameInputSchema, SetModuleDescriptionAction, SetModuleDescriptionInput, SetModuleDescriptionInputSchema, SetModuleNameAction, SetModuleNameInput, SetModuleNameInputSchema, SetNameAction, SetNameActionInput, SetNameActionInputSchema, SetNameActionSchema, SetNameOperation, SetOperationDescriptionAction, SetOperationDescriptionInput, SetOperationDescriptionInputSchema, SetOperationErrorCodeAction, SetOperationErrorCodeInput, SetOperationErrorCodeInputSchema, SetOperationErrorDescriptionAction, SetOperationErrorDescriptionInput, SetOperationErrorDescriptionInputSchema, SetOperationErrorNameAction, SetOperationErrorNameInput, SetOperationErrorNameInputSchema, SetOperationErrorTemplateAction, SetOperationErrorTemplateInput, SetOperationErrorTemplateInputSchema, SetOperationNameAction, SetOperationNameInput, SetOperationNameInputSchema, SetOperationReducerAction, SetOperationReducerInput, SetOperationReducerInputSchema, SetOperationSchemaAction, SetOperationSchemaInput, SetOperationSchemaInputSchema, SetOperationScopeAction, SetOperationScopeInput, SetOperationScopeInputSchema, SetOperationTemplateAction, SetOperationTemplateInput, SetOperationTemplateInputSchema, SetStateSchemaAction, SetStateSchemaInput, SetStateSchemaInputSchema, Set_Name, Set_NameSchema, Signal, SignalDispatch, SignalResult, SignalResults, SignalType, Signature, SignatureVerificationHandler, SigningParameters, SkipHeaderOperationIndex, SkipHeaderOperations, State, StateReducer, StateSchema, SubgraphModule, Undo, UndoAction, UndoActionInput, UndoActionInputSchema, UndoActionSchema, UndoRedoAction, UndoSchema, UpdateChangeLogItemAction, UpdateChangeLogItemInput, UpdateChangeLogItemInputSchema, UpdateOperationExampleAction, UpdateOperationExampleInput, UpdateOperationExampleInputSchema, UpdateStateExampleAction, UpdateStateExampleInput, UpdateStateExampleInputSchema, UpgradeDocumentAction, UpgradeDocumentActionInput, UpgradeManifest, UpgradeReducer, UpgradeTransition, User, UserActionSigner, ValidationError, ab2hex, actionContext, actionFromAction, actionSigner, actions, addChangeLogItem, addModule, addOperation, addOperationError, addOperationExample, addStateExample, addUndo, assertIsDocumentModelDocument, assertIsDocumentModelState, attachBranch, baseActions, baseCreateDocument, baseLoadFromInput, baseReducer, baseSaveToFileHandle, buildOperationSignature, buildOperationSignatureMessage, buildOperationSignatureParams, buildSignedAction, checkCleanedOperationsIntegrity, checkOperationsIntegrity, createAction, createAuthState, createBaseState, createDocumentState, createGlobalState, createLocalState, createMinimalZip, createPresignedHeader, createReducer, createSignedHeader, createSignedHeaderForSigner, createState, createVerificationSigner, createZip, defaultAuthState, defaultBaseState, defaultDocumentState, defaultGlobalState, defaultLocalState, defaultPHState, definedNonNullAnySchema, deleteChangeLogItem, deleteModule, deleteOperation, deleteOperationError, deleteOperationExample, deleteStateExample, deriveOperationId, diffOperations, documentModelActions, documentModelDocumentType, documentModelFileExtension, documentModelGlobalState, documentModelHeaderReducer, documentModelInitialGlobalState, documentModelInitialLocalState, documentModelLoadFromInput, documentModelModuleReducer, documentModelOperationErrorReducer, documentModelOperationExampleReducer, documentModelOperationReducer, documentModelReducer, documentModelSaveToFileHandle, documentModelStateReducer, documentModelStateSchemaReducer, documentModelVersioningReducer, fetchFileBrowser, filterDocumentOperationsResultingState, filterDuplicatedOperations, garbageCollect, garbageCollectDocumentOperations, garbageCollectV2, generateId, generateMock, getAllOperationNames, getDocumentLastModified, getFileBrowser, getUnixTimestamp, groupOperationsByScope, hashBrowser, hashDocumentStateForScope, hex2ab, isDefinedNonNullAny, isDocumentAction, isDocumentModelDocument, isDocumentModelState, isNoopOperation, isReservedOperationName, isUndo, isUndoRedo, loadState, loadStateOperation, mapSkippedOperations, mapSkippedOperationsV2, merge, moveOperation, nextSkipNumber, noop, operationExampleCreators, operationFromAction, operationFromOperation, operationWithContext, operationsAreEqual, parseResultingState, precedes, prepareOperations, processUndoRedo, prune, pruneOperation, readFileBrowser, readOnly, redo, redoOperation, releaseNewVersion, removeExistingOperations, reorderChangeLogItems, reorderModuleOperations, reorderModules, reorderOperationErrors, reorderOperationExamples, reorderStateExamples, replayDocument, replayOperations, reshuffleByTimestamp, reshuffleByTimestampAndIndex, setAuthorName, setAuthorWebsite, setInitialState, setModelDescription, setModelExtension, setModelId, setModelName, setModuleDescription, setModuleName, setName, setNameOperation, setOperationDescription, setOperationErrorCode, setOperationErrorDescription, setOperationErrorName, setOperationErrorTemplate, setOperationName, setOperationReducer, setOperationSchema, setOperationScope, setOperationTemplate, setStateSchema, sign, skipHeaderOperations, sortMappedOperations, sortOperations, split, undo, undoOperation, undoOperationV2, updateChangeLogItem, updateDocument, updateHeaderRevision, updateOperationExample, updateStateExample, validateHeader, validateInitialState, validateModule, validateModuleOperation, validateModules, validateOperationName, validateOperations, validateStateSchemaName, verify, verifyOperationSignature, writeFileBrowser };