@powerhousedao/vetra 6.0.0-dev.252 → 6.0.0-dev.254
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.
- package/dist/document-models/app-module/index.d.ts +3 -339
- package/dist/document-models/app-module/index.d.ts.map +1 -1
- package/dist/document-models/document-editor/index.d.ts +3 -315
- package/dist/document-models/document-editor/index.d.ts.map +1 -1
- package/dist/document-models/index.d.ts +5 -5
- package/dist/document-models/processor-module/index.d.ts +3 -347
- package/dist/document-models/processor-module/index.d.ts.map +1 -1
- package/dist/document-models/subgraph-module/index.d.ts +3 -286
- package/dist/document-models/subgraph-module/index.d.ts.map +1 -1
- package/dist/document-models/vetra-package/index.d.ts +3 -376
- package/dist/document-models/vetra-package/index.d.ts.map +1 -1
- package/dist/index-BdmD5tsW.d.ts +393 -0
- package/dist/index-BdmD5tsW.d.ts.map +1 -0
- package/dist/index-BfK0fsx4.d.ts +424 -0
- package/dist/index-BfK0fsx4.d.ts.map +1 -0
- package/dist/index.d.ts +136 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/module-BYEvqA47.d.ts +357 -0
- package/dist/module-BYEvqA47.d.ts.map +1 -0
- package/dist/module-CCqD26Hf.d.ts +478 -0
- package/dist/module-CCqD26Hf.d.ts.map +1 -0
- package/dist/module-CpP8D2Hl.d.ts +437 -0
- package/dist/module-CpP8D2Hl.d.ts.map +1 -0
- package/package.json +8 -8
- package/dist/module-BoX1rWiq.d.ts +0 -6
- package/dist/module-BoX1rWiq.d.ts.map +0 -1
- package/dist/module-CG6K37P8.d.ts +0 -6
- package/dist/module-CG6K37P8.d.ts.map +0 -1
- package/dist/module-Cr-9knz_.d.ts +0 -6
- package/dist/module-Cr-9knz_.d.ts.map +0 -1
- package/dist/module-DhhQLYnQ.d.ts +0 -6
- package/dist/module-DhhQLYnQ.d.ts.map +0 -1
- package/dist/module-J-kGIl1E.d.ts +0 -6
- package/dist/module-J-kGIl1E.d.ts.map +0 -1
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import * as z$1 from "zod";
|
|
4
|
-
import { z } from "zod";
|
|
5
|
-
import { DocumentDispatch } from "@powerhousedao/reactor-browser";
|
|
1
|
+
import { $ as Incremental, A as isDocumentEditorDocument, B as DocumentEditorAction, C as defaultPHState, D as DocumentEditorPHStateSchema, E as DocumentEditorDocumentSchema, F as removeDocumentType, G as SetEditorStatusAction, H as DocumentEditorBaseOperationsAction, I as setEditorName, J as DocumentEditorPHState, K as DocumentEditorDocument, L as setEditorStatus, M as documentModel, N as addDocumentType, O as assertIsDocumentEditorDocument, P as creators_d_exports, Q as Exact, R as DocumentEditorController, S as defaultLocalState, T as DocumentEditorDocumentHeaderSchema, U as RemoveDocumentTypeAction, V as AddDocumentTypeAction, W as SetEditorNameAction, X as DocumentEditorState, Y as AddDocumentTypeInput, Z as DocumentTypeItem, _ as isDefinedNonNullAny, a as useDocumentEditorDocumentsInSelectedFolder, at as RemoveDocumentTypeInput, b as createState, c as initialLocalState, ct as SetEditorStatusInput, d as DocumentTypeItemSchema, et as InputMaybe, f as RemoveDocumentTypeInputSchema, g as definedNonNullAnySchema, h as StatusTypeSchema, i as useDocumentEditorDocumentsInSelectedDrive, it as Maybe, j as isDocumentEditorState, k as assertIsDocumentEditorState, l as AddDocumentTypeInputSchema, lt as StatusType, m as SetEditorStatusInputSchema, n as DocumentEditor, nt as MakeMaybe, o as useSelectedDocumentEditorDocument, ot as Scalars, p as SetEditorNameInputSchema, q as DocumentEditorLocalState, r as useDocumentEditorDocumentById, rt as MakeOptional, s as initialGlobalState, st as SetEditorNameInput, t as utils, tt as MakeEmpty, u as DocumentEditorStateSchema, ut as actions, v as reducer, w as documentEditorDocumentType, x as defaultGlobalState, y as createDocumentEditorDocument, z as DocumentEditorBaseOperationsOperations } from "../../index-BdmD5tsW.js";
|
|
2
|
+
import { UpgradeManifest } from "document-model";
|
|
6
3
|
|
|
7
4
|
//#region document-models/document-editor/upgrades/versions.d.ts
|
|
8
5
|
declare const supportedVersions: readonly [1];
|
|
@@ -11,314 +8,5 @@ declare const latestVersion: 1;
|
|
|
11
8
|
//#region document-models/document-editor/upgrades/upgrade-manifest.d.ts
|
|
12
9
|
declare const documentEditorUpgradeManifest: UpgradeManifest<typeof supportedVersions>;
|
|
13
10
|
//#endregion
|
|
14
|
-
|
|
15
|
-
/** Actions for the DocumentEditor document model */
|
|
16
|
-
declare const actions: any;
|
|
17
|
-
//#endregion
|
|
18
|
-
//#region document-models/document-editor/v1/gen/schema/types.d.ts
|
|
19
|
-
type Maybe<T> = T | null | undefined;
|
|
20
|
-
type InputMaybe<T> = T | null | undefined;
|
|
21
|
-
type Exact<T extends {
|
|
22
|
-
[key: string]: unknown;
|
|
23
|
-
}> = { [K in keyof T]: T[K] };
|
|
24
|
-
type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
|
|
25
|
-
type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
|
|
26
|
-
type MakeEmpty<T extends {
|
|
27
|
-
[key: string]: unknown;
|
|
28
|
-
}, K extends keyof T> = { [_ in K]?: never };
|
|
29
|
-
type Incremental<T> = T | { [P in keyof T]?: P extends " $fragmentName" | "__typename" ? T[P] : never };
|
|
30
|
-
/** All built-in and custom scalars, mapped to their actual values */
|
|
31
|
-
type Scalars = {
|
|
32
|
-
ID: {
|
|
33
|
-
input: string;
|
|
34
|
-
output: string;
|
|
35
|
-
};
|
|
36
|
-
String: {
|
|
37
|
-
input: string;
|
|
38
|
-
output: string;
|
|
39
|
-
};
|
|
40
|
-
Boolean: {
|
|
41
|
-
input: boolean;
|
|
42
|
-
output: boolean;
|
|
43
|
-
};
|
|
44
|
-
Int: {
|
|
45
|
-
input: number;
|
|
46
|
-
output: number;
|
|
47
|
-
};
|
|
48
|
-
Float: {
|
|
49
|
-
input: number;
|
|
50
|
-
output: number;
|
|
51
|
-
};
|
|
52
|
-
Address: {
|
|
53
|
-
input: `${string}:0x${string}`;
|
|
54
|
-
output: `${string}:0x${string}`;
|
|
55
|
-
};
|
|
56
|
-
Amount: {
|
|
57
|
-
input: {
|
|
58
|
-
unit?: string;
|
|
59
|
-
value?: number;
|
|
60
|
-
};
|
|
61
|
-
output: {
|
|
62
|
-
unit?: string;
|
|
63
|
-
value?: number;
|
|
64
|
-
};
|
|
65
|
-
};
|
|
66
|
-
Amount_Crypto: {
|
|
67
|
-
input: {
|
|
68
|
-
unit: string;
|
|
69
|
-
value: string;
|
|
70
|
-
};
|
|
71
|
-
output: {
|
|
72
|
-
unit: string;
|
|
73
|
-
value: string;
|
|
74
|
-
};
|
|
75
|
-
};
|
|
76
|
-
Amount_Currency: {
|
|
77
|
-
input: {
|
|
78
|
-
unit: string;
|
|
79
|
-
value: string;
|
|
80
|
-
};
|
|
81
|
-
output: {
|
|
82
|
-
unit: string;
|
|
83
|
-
value: string;
|
|
84
|
-
};
|
|
85
|
-
};
|
|
86
|
-
Amount_Fiat: {
|
|
87
|
-
input: {
|
|
88
|
-
unit: string;
|
|
89
|
-
value: number;
|
|
90
|
-
};
|
|
91
|
-
output: {
|
|
92
|
-
unit: string;
|
|
93
|
-
value: number;
|
|
94
|
-
};
|
|
95
|
-
};
|
|
96
|
-
Amount_Money: {
|
|
97
|
-
input: number;
|
|
98
|
-
output: number;
|
|
99
|
-
};
|
|
100
|
-
Amount_Percentage: {
|
|
101
|
-
input: number;
|
|
102
|
-
output: number;
|
|
103
|
-
};
|
|
104
|
-
Amount_Tokens: {
|
|
105
|
-
input: number;
|
|
106
|
-
output: number;
|
|
107
|
-
};
|
|
108
|
-
Attachment: {
|
|
109
|
-
input: string;
|
|
110
|
-
output: string;
|
|
111
|
-
};
|
|
112
|
-
Currency: {
|
|
113
|
-
input: string;
|
|
114
|
-
output: string;
|
|
115
|
-
};
|
|
116
|
-
Date: {
|
|
117
|
-
input: string;
|
|
118
|
-
output: string;
|
|
119
|
-
};
|
|
120
|
-
DateTime: {
|
|
121
|
-
input: string;
|
|
122
|
-
output: string;
|
|
123
|
-
};
|
|
124
|
-
EmailAddress: {
|
|
125
|
-
input: string;
|
|
126
|
-
output: string;
|
|
127
|
-
};
|
|
128
|
-
EthereumAddress: {
|
|
129
|
-
input: string;
|
|
130
|
-
output: string;
|
|
131
|
-
};
|
|
132
|
-
OID: {
|
|
133
|
-
input: string;
|
|
134
|
-
output: string;
|
|
135
|
-
};
|
|
136
|
-
OLabel: {
|
|
137
|
-
input: string;
|
|
138
|
-
output: string;
|
|
139
|
-
};
|
|
140
|
-
PHID: {
|
|
141
|
-
input: string;
|
|
142
|
-
output: string;
|
|
143
|
-
};
|
|
144
|
-
URL: {
|
|
145
|
-
input: string;
|
|
146
|
-
output: string;
|
|
147
|
-
};
|
|
148
|
-
Unknown: {
|
|
149
|
-
input: unknown;
|
|
150
|
-
output: unknown;
|
|
151
|
-
};
|
|
152
|
-
Upload: {
|
|
153
|
-
input: File;
|
|
154
|
-
output: File;
|
|
155
|
-
};
|
|
156
|
-
};
|
|
157
|
-
type AddDocumentTypeInput = {
|
|
158
|
-
documentType: Scalars["String"]["input"];
|
|
159
|
-
id: Scalars["OID"]["input"];
|
|
160
|
-
};
|
|
161
|
-
/**
|
|
162
|
-
* Configuration for a document editor contributed by the package. The editor is
|
|
163
|
-
* registered against every document type listed in `documentTypes`; Connect picks
|
|
164
|
-
* the first matching editor when opening a document.
|
|
165
|
-
*/
|
|
166
|
-
type DocumentEditorState = {
|
|
167
|
-
/** Document types this editor can edit. Each entry has a stable id so it can be removed individually. */documentTypes: Array<DocumentTypeItem>; /** Display name of the editor. Also determines the generated folder name under `editors/`. */
|
|
168
|
-
name: Scalars["String"]["output"]; /** Lifecycle status. While DRAFT the editor definition is editable and codegen is skipped; switching to CONFIRMED triggers scaffold generation. */
|
|
169
|
-
status: StatusType;
|
|
170
|
-
};
|
|
171
|
-
/** A document type id (e.g. 'powerhouse/document-drive') attached to the editor with a stable entry id. */
|
|
172
|
-
type DocumentTypeItem = {
|
|
173
|
-
/** Document type id this editor handles (e.g. 'my-org/invoice'). */documentType: Scalars["String"]["output"]; /** Stable identifier for the entry; used to remove it. */
|
|
174
|
-
id: Scalars["OID"]["output"];
|
|
175
|
-
};
|
|
176
|
-
type RemoveDocumentTypeInput = {
|
|
177
|
-
id: Scalars["OID"]["input"];
|
|
178
|
-
};
|
|
179
|
-
type SetEditorNameInput = {
|
|
180
|
-
name: Scalars["String"]["input"];
|
|
181
|
-
};
|
|
182
|
-
type SetEditorStatusInput = {
|
|
183
|
-
status: StatusType;
|
|
184
|
-
};
|
|
185
|
-
/**
|
|
186
|
-
* Lifecycle status of a module definition.
|
|
187
|
-
* - DRAFT: still being edited; codegen does not run.
|
|
188
|
-
* - CONFIRMED: locked in; codegen produces the corresponding scaffold.
|
|
189
|
-
*/
|
|
190
|
-
type StatusType = "CONFIRMED" | "DRAFT";
|
|
191
|
-
//#endregion
|
|
192
|
-
//#region document-models/document-editor/v1/gen/types.d.ts
|
|
193
|
-
type DocumentEditorLocalState = Record<PropertyKey, never>;
|
|
194
|
-
type DocumentEditorPHState = PHBaseState & {
|
|
195
|
-
global: DocumentEditorState;
|
|
196
|
-
local: DocumentEditorLocalState;
|
|
197
|
-
};
|
|
198
|
-
type DocumentEditorDocument = PHDocument<DocumentEditorPHState>;
|
|
199
|
-
//#endregion
|
|
200
|
-
//#region document-models/document-editor/v1/gen/base-operations/actions.d.ts
|
|
201
|
-
type SetEditorNameAction = Action & {
|
|
202
|
-
type: "SET_EDITOR_NAME";
|
|
203
|
-
input: SetEditorNameInput;
|
|
204
|
-
};
|
|
205
|
-
type AddDocumentTypeAction = Action & {
|
|
206
|
-
type: "ADD_DOCUMENT_TYPE";
|
|
207
|
-
input: AddDocumentTypeInput;
|
|
208
|
-
};
|
|
209
|
-
type RemoveDocumentTypeAction = Action & {
|
|
210
|
-
type: "REMOVE_DOCUMENT_TYPE";
|
|
211
|
-
input: RemoveDocumentTypeInput;
|
|
212
|
-
};
|
|
213
|
-
type SetEditorStatusAction = Action & {
|
|
214
|
-
type: "SET_EDITOR_STATUS";
|
|
215
|
-
input: SetEditorStatusInput;
|
|
216
|
-
};
|
|
217
|
-
type DocumentEditorBaseOperationsAction = SetEditorNameAction | AddDocumentTypeAction | RemoveDocumentTypeAction | SetEditorStatusAction;
|
|
218
|
-
//#endregion
|
|
219
|
-
//#region document-models/document-editor/v1/gen/actions.d.ts
|
|
220
|
-
type DocumentEditorAction = DocumentEditorBaseOperationsAction;
|
|
221
|
-
//#endregion
|
|
222
|
-
//#region document-models/document-editor/v1/gen/base-operations/operations.d.ts
|
|
223
|
-
interface DocumentEditorBaseOperationsOperations {
|
|
224
|
-
setEditorNameOperation: (state: DocumentEditorState, action: SetEditorNameAction, dispatch?: SignalDispatch) => void;
|
|
225
|
-
addDocumentTypeOperation: (state: DocumentEditorState, action: AddDocumentTypeAction, dispatch?: SignalDispatch) => void;
|
|
226
|
-
removeDocumentTypeOperation: (state: DocumentEditorState, action: RemoveDocumentTypeAction, dispatch?: SignalDispatch) => void;
|
|
227
|
-
setEditorStatusOperation: (state: DocumentEditorState, action: SetEditorStatusAction, dispatch?: SignalDispatch) => void;
|
|
228
|
-
}
|
|
229
|
-
//#endregion
|
|
230
|
-
//#region document-models/document-editor/v1/gen/controller.d.ts
|
|
231
|
-
declare const DocumentEditorController: any;
|
|
232
|
-
declare namespace creators_d_exports {
|
|
233
|
-
export { addDocumentType, removeDocumentType, setEditorName, setEditorStatus };
|
|
234
|
-
}
|
|
235
|
-
declare const setEditorName: (input: SetEditorNameInput) => any;
|
|
236
|
-
declare const addDocumentType: (input: AddDocumentTypeInput) => any;
|
|
237
|
-
declare const removeDocumentType: (input: RemoveDocumentTypeInput) => any;
|
|
238
|
-
declare const setEditorStatus: (input: SetEditorStatusInput) => any;
|
|
239
|
-
//#endregion
|
|
240
|
-
//#region document-models/document-editor/v1/gen/document-model.d.ts
|
|
241
|
-
declare const documentModel: DocumentModelGlobalState;
|
|
242
|
-
//#endregion
|
|
243
|
-
//#region document-models/document-editor/v1/gen/document-schema.d.ts
|
|
244
|
-
/** Schema for validating the header object of a DocumentEditor document */
|
|
245
|
-
declare const DocumentEditorDocumentHeaderSchema: any;
|
|
246
|
-
/** Schema for validating the state object of a DocumentEditor document */
|
|
247
|
-
declare const DocumentEditorPHStateSchema: any;
|
|
248
|
-
declare const DocumentEditorDocumentSchema: z.ZodObject<{
|
|
249
|
-
header: any;
|
|
250
|
-
state: any;
|
|
251
|
-
initialState: any;
|
|
252
|
-
}, z.core.$strip>;
|
|
253
|
-
/** Simple helper function to check if a state object is a DocumentEditor document state object */
|
|
254
|
-
declare function isDocumentEditorState(state: unknown): state is DocumentEditorPHState;
|
|
255
|
-
/** Simple helper function to assert that a document state object is a DocumentEditor document state object */
|
|
256
|
-
declare function assertIsDocumentEditorState(state: unknown): asserts state is DocumentEditorPHState;
|
|
257
|
-
/** Simple helper function to check if a document is a DocumentEditor document */
|
|
258
|
-
declare function isDocumentEditorDocument(document: unknown): document is DocumentEditorDocument;
|
|
259
|
-
/** Simple helper function to assert that a document is a DocumentEditor document */
|
|
260
|
-
declare function assertIsDocumentEditorDocument(document: unknown): asserts document is DocumentEditorDocument;
|
|
261
|
-
//#endregion
|
|
262
|
-
//#region document-models/document-editor/v1/gen/document-type.d.ts
|
|
263
|
-
/**
|
|
264
|
-
* WARNING: DO NOT EDIT
|
|
265
|
-
* This file is auto-generated and updated by codegen
|
|
266
|
-
*/
|
|
267
|
-
declare const documentEditorDocumentType = "powerhouse/document-editor";
|
|
268
|
-
//#endregion
|
|
269
|
-
//#region document-models/document-editor/v1/gen/ph-factories.d.ts
|
|
270
|
-
declare function defaultGlobalState(): DocumentEditorState;
|
|
271
|
-
declare function defaultLocalState(): DocumentEditorLocalState;
|
|
272
|
-
declare function defaultPHState(): DocumentEditorPHState;
|
|
273
|
-
declare function createState(baseState?: Partial<PHBaseState>, globalState?: Partial<DocumentEditorState>, localState?: Partial<DocumentEditorLocalState>): DocumentEditorPHState;
|
|
274
|
-
/**
|
|
275
|
-
* Creates a DocumentEditorDocument with custom global and local state
|
|
276
|
-
* This properly handles the PHBaseState requirements while allowing
|
|
277
|
-
* document-specific state to be set.
|
|
278
|
-
*/
|
|
279
|
-
declare function createDocumentEditorDocument(state?: Partial<{
|
|
280
|
-
auth?: Partial<PHAuthState>;
|
|
281
|
-
document?: Partial<PHDocumentState>;
|
|
282
|
-
global?: Partial<DocumentEditorState>;
|
|
283
|
-
local?: Partial<DocumentEditorLocalState>;
|
|
284
|
-
}>): DocumentEditorDocument;
|
|
285
|
-
//#endregion
|
|
286
|
-
//#region document-models/document-editor/v1/gen/reducer.d.ts
|
|
287
|
-
declare const reducer: Reducer<DocumentEditorPHState>;
|
|
288
|
-
//#endregion
|
|
289
|
-
//#region document-models/document-editor/v1/gen/schema/zod.d.ts
|
|
290
|
-
type Properties<T> = Required<{ [K in keyof T]: z$1.ZodType<T[K]> }>;
|
|
291
|
-
type definedNonNullAny = {};
|
|
292
|
-
declare const isDefinedNonNullAny: (v: any) => v is definedNonNullAny;
|
|
293
|
-
declare const definedNonNullAnySchema: z$1.ZodAny & z$1.ZodType<definedNonNullAny, any, z$1.core.$ZodTypeInternals<definedNonNullAny, any>>;
|
|
294
|
-
declare const StatusTypeSchema: z$1.ZodEnum<{
|
|
295
|
-
CONFIRMED: "CONFIRMED";
|
|
296
|
-
DRAFT: "DRAFT";
|
|
297
|
-
}>;
|
|
298
|
-
declare function AddDocumentTypeInputSchema(): z$1.ZodObject<Properties<AddDocumentTypeInput>>;
|
|
299
|
-
declare function DocumentEditorStateSchema(): z$1.ZodObject<Properties<DocumentEditorState>>;
|
|
300
|
-
declare function DocumentTypeItemSchema(): z$1.ZodObject<Properties<DocumentTypeItem>>;
|
|
301
|
-
declare function RemoveDocumentTypeInputSchema(): z$1.ZodObject<Properties<RemoveDocumentTypeInput>>;
|
|
302
|
-
declare function SetEditorNameInputSchema(): z$1.ZodObject<Properties<SetEditorNameInput>>;
|
|
303
|
-
declare function SetEditorStatusInputSchema(): z$1.ZodObject<Properties<SetEditorStatusInput>>;
|
|
304
|
-
//#endregion
|
|
305
|
-
//#region document-models/document-editor/v1/gen/utils.d.ts
|
|
306
|
-
declare const initialGlobalState: DocumentEditorState;
|
|
307
|
-
declare const initialLocalState: DocumentEditorLocalState;
|
|
308
|
-
//#endregion
|
|
309
|
-
//#region document-models/document-editor/v1/hooks.d.ts
|
|
310
|
-
/** Hook to get a DocumentEditor document by its id */
|
|
311
|
-
declare function useDocumentEditorDocumentById(documentId: string | null | undefined): [DocumentEditorDocument, DocumentDispatch<DocumentEditorAction>] | [undefined, undefined];
|
|
312
|
-
/** Hook to get the selected DocumentEditor document */
|
|
313
|
-
declare function useSelectedDocumentEditorDocument(): [DocumentEditorDocument, DocumentDispatch<DocumentEditorAction>];
|
|
314
|
-
/** Hook to get all DocumentEditor documents in the selected drive */
|
|
315
|
-
declare function useDocumentEditorDocumentsInSelectedDrive(): any;
|
|
316
|
-
/** Hook to get all DocumentEditor documents in the selected folder */
|
|
317
|
-
declare function useDocumentEditorDocumentsInSelectedFolder(): any;
|
|
318
|
-
//#endregion
|
|
319
|
-
//#region document-models/document-editor/v1/utils.d.ts
|
|
320
|
-
/** Utils for the DocumentEditor document model */
|
|
321
|
-
declare const utils: DocumentModelUtils<DocumentEditorPHState>;
|
|
322
|
-
//#endregion
|
|
323
|
-
export { AddDocumentTypeAction, AddDocumentTypeInput, AddDocumentTypeInputSchema, DocumentEditor, type DocumentEditorAction, DocumentEditorBaseOperationsAction, DocumentEditorBaseOperationsOperations, DocumentEditorController, type DocumentEditorDocument, DocumentEditorDocumentHeaderSchema, DocumentEditorDocumentSchema, type DocumentEditorState as DocumentEditorGlobalState, DocumentEditorState, type DocumentEditorLocalState, type DocumentEditorPHState, DocumentEditorPHStateSchema, DocumentEditorStateSchema, DocumentTypeItem, DocumentTypeItemSchema, Exact, Incremental, InputMaybe, MakeEmpty, MakeMaybe, MakeOptional, Maybe, RemoveDocumentTypeAction, RemoveDocumentTypeInput, RemoveDocumentTypeInputSchema, Scalars, SetEditorNameAction, SetEditorNameInput, SetEditorNameInputSchema, SetEditorStatusAction, SetEditorStatusInput, SetEditorStatusInputSchema, StatusType, StatusTypeSchema, actions, addDocumentType, assertIsDocumentEditorDocument, assertIsDocumentEditorState, createDocumentEditorDocument, createState, defaultGlobalState, defaultLocalState, defaultPHState, definedNonNullAnySchema, creators_d_exports as documentEditorBaseOperationsActions, documentEditorDocumentType, documentEditorUpgradeManifest, documentModel, initialGlobalState, initialLocalState, isDefinedNonNullAny, isDocumentEditorDocument, isDocumentEditorState, latestVersion, reducer, removeDocumentType, setEditorName, setEditorStatus, supportedVersions, useDocumentEditorDocumentById, useDocumentEditorDocumentsInSelectedDrive, useDocumentEditorDocumentsInSelectedFolder, useSelectedDocumentEditorDocument, utils };
|
|
11
|
+
export { AddDocumentTypeAction, AddDocumentTypeInput, AddDocumentTypeInputSchema, DocumentEditor, DocumentEditorAction, DocumentEditorBaseOperationsAction, DocumentEditorBaseOperationsOperations, DocumentEditorController, DocumentEditorDocument, DocumentEditorDocumentHeaderSchema, DocumentEditorDocumentSchema, DocumentEditorState as DocumentEditorGlobalState, DocumentEditorState, DocumentEditorLocalState, DocumentEditorPHState, DocumentEditorPHStateSchema, DocumentEditorStateSchema, DocumentTypeItem, DocumentTypeItemSchema, Exact, Incremental, InputMaybe, MakeEmpty, MakeMaybe, MakeOptional, Maybe, RemoveDocumentTypeAction, RemoveDocumentTypeInput, RemoveDocumentTypeInputSchema, Scalars, SetEditorNameAction, SetEditorNameInput, SetEditorNameInputSchema, SetEditorStatusAction, SetEditorStatusInput, SetEditorStatusInputSchema, StatusType, StatusTypeSchema, actions, addDocumentType, assertIsDocumentEditorDocument, assertIsDocumentEditorState, createDocumentEditorDocument, createState, defaultGlobalState, defaultLocalState, defaultPHState, definedNonNullAnySchema, creators_d_exports as documentEditorBaseOperationsActions, documentEditorDocumentType, documentEditorUpgradeManifest, documentModel, initialGlobalState, initialLocalState, isDefinedNonNullAny, isDocumentEditorDocument, isDocumentEditorState, latestVersion, reducer, removeDocumentType, setEditorName, setEditorStatus, supportedVersions, useDocumentEditorDocumentById, useDocumentEditorDocumentsInSelectedDrive, useDocumentEditorDocumentsInSelectedFolder, useSelectedDocumentEditorDocument, utils };
|
|
324
12
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","names":[],"sources":["../../../document-models/document-editor/upgrades/versions.ts","../../../document-models/document-editor/upgrades/upgrade-manifest.ts"
|
|
1
|
+
{"version":3,"file":"index.d.ts","names":[],"sources":["../../../document-models/document-editor/upgrades/versions.ts","../../../document-models/document-editor/upgrades/upgrade-manifest.ts"],"mappings":";;;;cAAa,iBAAA;AAAA,cAEA,aAAA;;;cCKA,6BAAA,EAA+B,eAAA,QACnC,iBAAA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import { t as ProcessorModule } from "../module-
|
|
4
|
-
import { t as SubgraphModule } from "../module-
|
|
5
|
-
import { t as VetraPackage } from "../module-
|
|
1
|
+
import { n as AppModule } from "../index-BfK0fsx4.js";
|
|
2
|
+
import { n as DocumentEditor } from "../index-BdmD5tsW.js";
|
|
3
|
+
import { t as ProcessorModule } from "../module-CpP8D2Hl.js";
|
|
4
|
+
import { t as SubgraphModule } from "../module-BYEvqA47.js";
|
|
5
|
+
import { t as VetraPackage } from "../module-CCqD26Hf.js";
|
|
6
6
|
export { AppModule as AppModuleV1, DocumentEditor as DocumentEditorV1, ProcessorModule as ProcessorModuleV1, SubgraphModule as SubgraphModuleV1, VetraPackage as VetraPackageV1 };
|