document-model 5.1.0-staging.0 → 5.2.0-staging.1
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/src/core/ph-types.d.ts +21 -1
- package/dist/src/core/ph-types.d.ts.map +1 -1
- package/dist/src/core/schemas.d.ts +51 -107
- package/dist/src/core/schemas.d.ts.map +1 -1
- package/dist/src/core/schemas.js.map +1 -1
- package/dist/src/core/state.js +1 -1
- package/dist/src/core/state.js.map +1 -1
- package/dist/src/document-model/document-schema.d.ts +32 -226
- package/dist/src/document-model/document-schema.d.ts.map +1 -1
- package/dist/src/document-model/schemas.d.ts +132 -392
- package/dist/src/document-model/schemas.d.ts.map +1 -1
- package/dist/src/document-model/schemas.js +1 -1
- package/dist/src/document-model/schemas.js.map +1 -1
- package/dist/src/document-model/types.d.ts +2 -0
- package/dist/src/document-model/types.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { AddChangeLogItemInput, AddModuleInput, AddOperationErrorInput, AddOperationExampleInput, AddOperationInput, AddStateExampleInput, Author, CodeExample, DeleteChangeLogItemInput, DeleteModuleInput, DeleteOperationErrorInput, DeleteOperationExampleInput, DeleteOperationInput, DeleteStateExampleInput, DocumentModelGlobalState, DocumentSpecification, ModuleSpecification, MoveOperationInput, OperationErrorSpecification, OperationSpecification, ReorderChangeLogItemsInput, ReorderModuleOperationsInput, ReorderModulesInput, ReorderOperationErrorsInput, ReorderOperationExamplesInput, ReorderStateExamplesInput, ScopeState, SetAuthorNameInput, SetAuthorWebsiteInput, SetInitialStateInput, SetModelDescriptionInput, SetModelExtensionInput, SetModelIdInput, SetModelNameInput, SetModuleDescriptionInput, SetModuleNameInput, SetOperationDescriptionInput, SetOperationErrorCodeInput, SetOperationErrorDescriptionInput, SetOperationErrorNameInput, SetOperationErrorTemplateInput, SetOperationNameInput, SetOperationReducerInput, SetOperationSchemaInput, SetOperationScopeInput, SetOperationTemplateInput, SetStateSchemaInput, State, UpdateChangeLogItemInput, UpdateOperationExampleInput, UpdateStateExampleInput } from "document-model";
|
|
2
2
|
import { z } from "zod";
|
|
3
3
|
type Properties<T> = Required<{
|
|
4
|
-
[K in keyof T]: z.ZodType<T[K],
|
|
4
|
+
[K in keyof T]: z.ZodType<T[K], T[K]>;
|
|
5
5
|
}>;
|
|
6
6
|
export declare function AddChangeLogItemInputSchema(): z.ZodObject<Properties<AddChangeLogItemInput>>;
|
|
7
7
|
export declare function AddModuleInputSchema(): z.ZodObject<Properties<AddModuleInput>>;
|
|
@@ -17,397 +17,137 @@ export declare function DeleteOperationErrorInputSchema(): z.ZodObject<Propertie
|
|
|
17
17
|
export declare function DeleteOperationExampleInputSchema(): z.ZodObject<Properties<DeleteOperationExampleInput>>;
|
|
18
18
|
export declare function DeleteOperationInputSchema(): z.ZodObject<Properties<DeleteOperationInput>>;
|
|
19
19
|
export declare function DeleteStateExampleInputSchema(): z.ZodObject<Properties<DeleteStateExampleInput>>;
|
|
20
|
-
export declare function DocumentModelInputSchema(): z.ZodUnion<[z.ZodObject<Required<{
|
|
21
|
-
__typename?: z.ZodType<"AddChangeLogItemInput" | undefined,
|
|
22
|
-
content: z.ZodType<string,
|
|
23
|
-
id: z.ZodType<string,
|
|
24
|
-
insertBefore: z.ZodType<import("document-model").Maybe<string>,
|
|
25
|
-
}>, z.
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
name:
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
id: z.ZodType<string,
|
|
53
|
-
|
|
54
|
-
}>, z.
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
}
|
|
62
|
-
id:
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
}>, z.ZodObject<Required<{
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
scope
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
id:
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
}>, z.
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
}>, z.
|
|
134
|
-
id:
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
}>, z.
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
}>, z.ZodObject<Required<{
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
id:
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
152
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
153
|
-
}, {
|
|
154
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
155
|
-
}>, z.ZodObject<Required<{
|
|
156
|
-
scope: z.ZodType<string, any, string>;
|
|
157
|
-
id: z.ZodType<string, any, string>;
|
|
158
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
159
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
160
|
-
scope: import("document-model").Scalars["String"]["input"];
|
|
161
|
-
}, {
|
|
162
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
163
|
-
scope: import("document-model").Scalars["String"]["input"];
|
|
164
|
-
}>, z.ZodObject<Required<{
|
|
165
|
-
newModuleId: z.ZodType<string, any, string>;
|
|
166
|
-
operationId: z.ZodType<string, any, string>;
|
|
167
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
168
|
-
operationId: import("document-model").Scalars["ID"]["input"];
|
|
169
|
-
newModuleId: import("document-model").Scalars["ID"]["input"];
|
|
170
|
-
}, {
|
|
171
|
-
operationId: import("document-model").Scalars["ID"]["input"];
|
|
172
|
-
newModuleId: import("document-model").Scalars["ID"]["input"];
|
|
173
|
-
}>, z.ZodObject<Required<{
|
|
174
|
-
__typename?: z.ZodType<"ReorderChangeLogItemsInput" | undefined, any, "ReorderChangeLogItemsInput" | undefined> | undefined;
|
|
175
|
-
order: z.ZodType<string[], any, string[]>;
|
|
176
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
177
|
-
order: Array<import("document-model").Scalars["ID"]["output"]>;
|
|
178
|
-
__typename?: "ReorderChangeLogItemsInput" | undefined;
|
|
179
|
-
}, {
|
|
180
|
-
order: Array<import("document-model").Scalars["ID"]["output"]>;
|
|
181
|
-
__typename?: "ReorderChangeLogItemsInput" | undefined;
|
|
182
|
-
}>, z.ZodObject<Required<{
|
|
183
|
-
moduleId: z.ZodType<string, any, string>;
|
|
184
|
-
order: z.ZodType<string[], any, string[]>;
|
|
185
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
186
|
-
moduleId: import("document-model").Scalars["ID"]["input"];
|
|
187
|
-
order: Array<import("document-model").Scalars["ID"]["input"]>;
|
|
188
|
-
}, {
|
|
189
|
-
moduleId: import("document-model").Scalars["ID"]["input"];
|
|
190
|
-
order: Array<import("document-model").Scalars["ID"]["input"]>;
|
|
191
|
-
}>, z.ZodObject<Required<{
|
|
192
|
-
order: z.ZodType<string[], any, string[]>;
|
|
193
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
194
|
-
order: Array<import("document-model").Scalars["ID"]["input"]>;
|
|
195
|
-
}, {
|
|
196
|
-
order: Array<import("document-model").Scalars["ID"]["input"]>;
|
|
197
|
-
}>, z.ZodObject<Required<{
|
|
198
|
-
operationId: z.ZodType<string, any, string>;
|
|
199
|
-
order: z.ZodType<string[], any, string[]>;
|
|
200
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
201
|
-
operationId: import("document-model").Scalars["ID"]["input"];
|
|
202
|
-
order: Array<import("document-model").Scalars["ID"]["input"]>;
|
|
203
|
-
}, {
|
|
204
|
-
operationId: import("document-model").Scalars["ID"]["input"];
|
|
205
|
-
order: Array<import("document-model").Scalars["ID"]["input"]>;
|
|
206
|
-
}>, z.ZodObject<Required<{
|
|
207
|
-
operationId: z.ZodType<string, any, string>;
|
|
208
|
-
order: z.ZodType<string[], any, string[]>;
|
|
209
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
210
|
-
operationId: import("document-model").Scalars["ID"]["input"];
|
|
211
|
-
order: Array<import("document-model").Scalars["ID"]["input"]>;
|
|
212
|
-
}, {
|
|
213
|
-
operationId: import("document-model").Scalars["ID"]["input"];
|
|
214
|
-
order: Array<import("document-model").Scalars["ID"]["input"]>;
|
|
215
|
-
}>, z.ZodObject<Required<{
|
|
216
|
-
scope: z.ZodType<string, any, string>;
|
|
217
|
-
order: z.ZodType<string[], any, string[]>;
|
|
218
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
219
|
-
scope: import("document-model").Scalars["String"]["input"];
|
|
220
|
-
order: Array<import("document-model").Scalars["ID"]["input"]>;
|
|
221
|
-
}, {
|
|
222
|
-
scope: import("document-model").Scalars["String"]["input"];
|
|
223
|
-
order: Array<import("document-model").Scalars["ID"]["input"]>;
|
|
224
|
-
}>, z.ZodObject<Required<{
|
|
225
|
-
authorName: z.ZodType<string, any, string>;
|
|
226
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
227
|
-
authorName: import("document-model").Scalars["String"]["input"];
|
|
228
|
-
}, {
|
|
229
|
-
authorName: import("document-model").Scalars["String"]["input"];
|
|
230
|
-
}>, z.ZodObject<Required<{
|
|
231
|
-
authorWebsite: z.ZodType<string, any, string>;
|
|
232
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
233
|
-
authorWebsite: import("document-model").Scalars["String"]["input"];
|
|
234
|
-
}, {
|
|
235
|
-
authorWebsite: import("document-model").Scalars["String"]["input"];
|
|
236
|
-
}>, z.ZodObject<Required<{
|
|
237
|
-
scope: z.ZodType<string, any, string>;
|
|
238
|
-
initialValue: z.ZodType<string, any, string>;
|
|
239
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
240
|
-
scope: import("document-model").Scalars["String"]["input"];
|
|
241
|
-
initialValue: import("document-model").Scalars["String"]["input"];
|
|
242
|
-
}, {
|
|
243
|
-
scope: import("document-model").Scalars["String"]["input"];
|
|
244
|
-
initialValue: import("document-model").Scalars["String"]["input"];
|
|
245
|
-
}>, z.ZodObject<Required<{
|
|
246
|
-
description: z.ZodType<string, any, string>;
|
|
247
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
248
|
-
description: import("document-model").Scalars["String"]["input"];
|
|
249
|
-
}, {
|
|
250
|
-
description: import("document-model").Scalars["String"]["input"];
|
|
251
|
-
}>, z.ZodObject<Required<{
|
|
252
|
-
extension: z.ZodType<string, any, string>;
|
|
253
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
254
|
-
extension: import("document-model").Scalars["String"]["input"];
|
|
255
|
-
}, {
|
|
256
|
-
extension: import("document-model").Scalars["String"]["input"];
|
|
257
|
-
}>, z.ZodObject<Required<{
|
|
258
|
-
id: z.ZodType<string, any, string>;
|
|
259
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
260
|
-
id: import("document-model").Scalars["String"]["input"];
|
|
261
|
-
}, {
|
|
262
|
-
id: import("document-model").Scalars["String"]["input"];
|
|
263
|
-
}>, z.ZodObject<Required<{
|
|
264
|
-
name: z.ZodType<string, any, string>;
|
|
265
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
266
|
-
name: import("document-model").Scalars["String"]["input"];
|
|
267
|
-
}, {
|
|
268
|
-
name: import("document-model").Scalars["String"]["input"];
|
|
269
|
-
}>, z.ZodObject<Required<{
|
|
270
|
-
description?: z.ZodType<import("document-model").InputMaybe<string>, any, import("document-model").InputMaybe<string>> | undefined;
|
|
271
|
-
id: z.ZodType<string, any, string>;
|
|
272
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
273
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
274
|
-
description?: import("document-model").InputMaybe<string>;
|
|
275
|
-
}, {
|
|
276
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
277
|
-
description?: import("document-model").InputMaybe<string>;
|
|
278
|
-
}>, z.ZodObject<Required<{
|
|
279
|
-
id: z.ZodType<string, any, string>;
|
|
280
|
-
name?: z.ZodType<import("document-model").InputMaybe<string>, any, import("document-model").InputMaybe<string>> | undefined;
|
|
281
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
282
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
283
|
-
name?: import("document-model").InputMaybe<string>;
|
|
284
|
-
}, {
|
|
285
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
286
|
-
name?: import("document-model").InputMaybe<string>;
|
|
287
|
-
}>, z.ZodObject<Required<{
|
|
288
|
-
description?: z.ZodType<import("document-model").InputMaybe<string>, any, import("document-model").InputMaybe<string>> | undefined;
|
|
289
|
-
id: z.ZodType<string, any, string>;
|
|
290
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
291
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
292
|
-
description?: import("document-model").InputMaybe<string>;
|
|
293
|
-
}, {
|
|
294
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
295
|
-
description?: import("document-model").InputMaybe<string>;
|
|
296
|
-
}>, z.ZodObject<Required<{
|
|
297
|
-
errorCode?: z.ZodType<import("document-model").InputMaybe<string>, any, import("document-model").InputMaybe<string>> | undefined;
|
|
298
|
-
id: z.ZodType<string, any, string>;
|
|
299
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
300
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
301
|
-
errorCode?: import("document-model").InputMaybe<string>;
|
|
302
|
-
}, {
|
|
303
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
304
|
-
errorCode?: import("document-model").InputMaybe<string>;
|
|
305
|
-
}>, z.ZodObject<Required<{
|
|
306
|
-
errorDescription?: z.ZodType<import("document-model").InputMaybe<string>, any, import("document-model").InputMaybe<string>> | undefined;
|
|
307
|
-
id: z.ZodType<string, any, string>;
|
|
308
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
309
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
310
|
-
errorDescription?: import("document-model").InputMaybe<string>;
|
|
311
|
-
}, {
|
|
312
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
313
|
-
errorDescription?: import("document-model").InputMaybe<string>;
|
|
314
|
-
}>, z.ZodObject<Required<{
|
|
315
|
-
errorName?: z.ZodType<import("document-model").InputMaybe<string>, any, import("document-model").InputMaybe<string>> | undefined;
|
|
316
|
-
id: z.ZodType<string, any, string>;
|
|
317
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
318
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
319
|
-
errorName?: import("document-model").InputMaybe<string>;
|
|
320
|
-
}, {
|
|
321
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
322
|
-
errorName?: import("document-model").InputMaybe<string>;
|
|
323
|
-
}>, z.ZodObject<Required<{
|
|
324
|
-
errorTemplate?: z.ZodType<import("document-model").InputMaybe<string>, any, import("document-model").InputMaybe<string>> | undefined;
|
|
325
|
-
id: z.ZodType<string, any, string>;
|
|
326
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
327
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
328
|
-
errorTemplate?: import("document-model").InputMaybe<string>;
|
|
329
|
-
}, {
|
|
330
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
331
|
-
errorTemplate?: import("document-model").InputMaybe<string>;
|
|
332
|
-
}>, z.ZodObject<Required<{
|
|
333
|
-
id: z.ZodType<string, any, string>;
|
|
334
|
-
name?: z.ZodType<import("document-model").InputMaybe<string>, any, import("document-model").InputMaybe<string>> | undefined;
|
|
335
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
336
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
337
|
-
name?: import("document-model").InputMaybe<string>;
|
|
338
|
-
}, {
|
|
339
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
340
|
-
name?: import("document-model").InputMaybe<string>;
|
|
341
|
-
}>, z.ZodObject<Required<{
|
|
342
|
-
id: z.ZodType<string, any, string>;
|
|
343
|
-
reducer?: z.ZodType<import("document-model").InputMaybe<string>, any, import("document-model").InputMaybe<string>> | undefined;
|
|
344
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
345
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
346
|
-
reducer?: import("document-model").InputMaybe<string>;
|
|
347
|
-
}, {
|
|
348
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
349
|
-
reducer?: import("document-model").InputMaybe<string>;
|
|
350
|
-
}>, z.ZodObject<Required<{
|
|
351
|
-
id: z.ZodType<string, any, string>;
|
|
352
|
-
schema?: z.ZodType<import("document-model").InputMaybe<string>, any, import("document-model").InputMaybe<string>> | undefined;
|
|
353
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
354
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
355
|
-
schema?: import("document-model").InputMaybe<string>;
|
|
356
|
-
}, {
|
|
357
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
358
|
-
schema?: import("document-model").InputMaybe<string>;
|
|
359
|
-
}>, z.ZodObject<Required<{
|
|
360
|
-
id: z.ZodType<string, any, string>;
|
|
361
|
-
template?: z.ZodType<import("document-model").InputMaybe<string>, any, import("document-model").InputMaybe<string>> | undefined;
|
|
362
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
363
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
364
|
-
template?: import("document-model").InputMaybe<string>;
|
|
365
|
-
}, {
|
|
366
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
367
|
-
template?: import("document-model").InputMaybe<string>;
|
|
368
|
-
}>, z.ZodObject<Required<{
|
|
369
|
-
scope: z.ZodType<string, any, string>;
|
|
370
|
-
schema: z.ZodType<string, any, string>;
|
|
371
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
372
|
-
scope: import("document-model").Scalars["String"]["input"];
|
|
373
|
-
schema: import("document-model").Scalars["String"]["input"];
|
|
374
|
-
}, {
|
|
375
|
-
scope: import("document-model").Scalars["String"]["input"];
|
|
376
|
-
schema: import("document-model").Scalars["String"]["input"];
|
|
377
|
-
}>, z.ZodObject<Required<{
|
|
378
|
-
__typename?: z.ZodType<"UpdateChangeLogItemInput" | undefined, any, "UpdateChangeLogItemInput" | undefined> | undefined;
|
|
379
|
-
id: z.ZodType<string, any, string>;
|
|
380
|
-
newContent: z.ZodType<string, any, string>;
|
|
381
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
382
|
-
id: import("document-model").Scalars["ID"]["output"];
|
|
383
|
-
newContent: import("document-model").Scalars["String"]["output"];
|
|
384
|
-
__typename?: "UpdateChangeLogItemInput" | undefined;
|
|
385
|
-
}, {
|
|
386
|
-
id: import("document-model").Scalars["ID"]["output"];
|
|
387
|
-
newContent: import("document-model").Scalars["String"]["output"];
|
|
388
|
-
__typename?: "UpdateChangeLogItemInput" | undefined;
|
|
389
|
-
}>, z.ZodObject<Required<{
|
|
390
|
-
example: z.ZodType<string, any, string>;
|
|
391
|
-
id: z.ZodType<string, any, string>;
|
|
392
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
393
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
394
|
-
example: import("document-model").Scalars["String"]["input"];
|
|
395
|
-
}, {
|
|
396
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
397
|
-
example: import("document-model").Scalars["String"]["input"];
|
|
398
|
-
}>, z.ZodObject<Required<{
|
|
399
|
-
scope: z.ZodType<string, any, string>;
|
|
400
|
-
id: z.ZodType<string, any, string>;
|
|
401
|
-
newExample: z.ZodType<string, any, string>;
|
|
402
|
-
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
403
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
404
|
-
scope: import("document-model").Scalars["String"]["input"];
|
|
405
|
-
newExample: import("document-model").Scalars["String"]["input"];
|
|
406
|
-
}, {
|
|
407
|
-
id: import("document-model").Scalars["ID"]["input"];
|
|
408
|
-
scope: import("document-model").Scalars["String"]["input"];
|
|
409
|
-
newExample: import("document-model").Scalars["String"]["input"];
|
|
410
|
-
}>]>;
|
|
20
|
+
export declare function DocumentModelInputSchema(): z.ZodUnion<readonly [z.ZodObject<Required<{
|
|
21
|
+
__typename?: z.ZodType<"AddChangeLogItemInput" | undefined, "AddChangeLogItemInput" | undefined, z.core.$ZodTypeInternals<"AddChangeLogItemInput" | undefined, "AddChangeLogItemInput" | undefined>> | undefined;
|
|
22
|
+
content: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
23
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
24
|
+
insertBefore: z.ZodType<import("document-model").Maybe<string>, import("document-model").Maybe<string>, z.core.$ZodTypeInternals<import("document-model").Maybe<string>, import("document-model").Maybe<string>>>;
|
|
25
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
26
|
+
description?: z.ZodType<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>, z.core.$ZodTypeInternals<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>>> | undefined;
|
|
27
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
28
|
+
name: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
29
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
30
|
+
errorCode?: z.ZodType<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>, z.core.$ZodTypeInternals<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>>> | undefined;
|
|
31
|
+
errorDescription?: z.ZodType<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>, z.core.$ZodTypeInternals<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>>> | undefined;
|
|
32
|
+
errorName?: z.ZodType<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>, z.core.$ZodTypeInternals<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>>> | undefined;
|
|
33
|
+
errorTemplate?: z.ZodType<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>, z.core.$ZodTypeInternals<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>>> | undefined;
|
|
34
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
35
|
+
operationId: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
36
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
37
|
+
example: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
38
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
39
|
+
operationId: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
40
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
41
|
+
description?: z.ZodType<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>, z.core.$ZodTypeInternals<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>>> | undefined;
|
|
42
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
43
|
+
moduleId: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
44
|
+
name: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
45
|
+
reducer?: z.ZodType<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>, z.core.$ZodTypeInternals<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>>> | undefined;
|
|
46
|
+
schema?: z.ZodType<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>, z.core.$ZodTypeInternals<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>>> | undefined;
|
|
47
|
+
template?: z.ZodType<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>, z.core.$ZodTypeInternals<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>>> | undefined;
|
|
48
|
+
scope?: z.ZodType<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>, z.core.$ZodTypeInternals<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>>> | undefined;
|
|
49
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
50
|
+
scope: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
51
|
+
example: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
52
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
53
|
+
insertBefore?: z.ZodType<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>, z.core.$ZodTypeInternals<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>>> | undefined;
|
|
54
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
55
|
+
__typename?: z.ZodType<"DeleteChangeLogItemInput" | undefined, "DeleteChangeLogItemInput" | undefined, z.core.$ZodTypeInternals<"DeleteChangeLogItemInput" | undefined, "DeleteChangeLogItemInput" | undefined>> | undefined;
|
|
56
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
57
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
58
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
59
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
60
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
61
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
62
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
63
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
64
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
65
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
66
|
+
scope: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
67
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
68
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
69
|
+
newModuleId: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
70
|
+
operationId: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
71
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
72
|
+
__typename?: z.ZodType<"ReorderChangeLogItemsInput" | undefined, "ReorderChangeLogItemsInput" | undefined, z.core.$ZodTypeInternals<"ReorderChangeLogItemsInput" | undefined, "ReorderChangeLogItemsInput" | undefined>> | undefined;
|
|
73
|
+
order: z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>;
|
|
74
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
75
|
+
moduleId: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
76
|
+
order: z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>;
|
|
77
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
78
|
+
order: z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>;
|
|
79
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
80
|
+
operationId: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
81
|
+
order: z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>;
|
|
82
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
83
|
+
operationId: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
84
|
+
order: z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>;
|
|
85
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
86
|
+
scope: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
87
|
+
order: z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>;
|
|
88
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
89
|
+
authorName: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
90
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
91
|
+
authorWebsite: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
92
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
93
|
+
scope: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
94
|
+
initialValue: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
95
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
96
|
+
description: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
97
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
98
|
+
extension: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
99
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
100
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
101
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
102
|
+
name: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
103
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
104
|
+
description?: z.ZodType<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>, z.core.$ZodTypeInternals<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>>> | undefined;
|
|
105
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
106
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
107
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
108
|
+
name?: z.ZodType<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>, z.core.$ZodTypeInternals<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>>> | undefined;
|
|
109
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
110
|
+
description?: z.ZodType<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>, z.core.$ZodTypeInternals<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>>> | undefined;
|
|
111
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
112
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
113
|
+
errorCode?: z.ZodType<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>, z.core.$ZodTypeInternals<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>>> | undefined;
|
|
114
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
115
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
116
|
+
errorDescription?: z.ZodType<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>, z.core.$ZodTypeInternals<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>>> | undefined;
|
|
117
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
118
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
119
|
+
errorName?: z.ZodType<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>, z.core.$ZodTypeInternals<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>>> | undefined;
|
|
120
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
121
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
122
|
+
errorTemplate?: z.ZodType<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>, z.core.$ZodTypeInternals<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>>> | undefined;
|
|
123
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
124
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
125
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
126
|
+
name?: z.ZodType<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>, z.core.$ZodTypeInternals<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>>> | undefined;
|
|
127
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
128
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
129
|
+
reducer?: z.ZodType<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>, z.core.$ZodTypeInternals<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>>> | undefined;
|
|
130
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
131
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
132
|
+
schema?: z.ZodType<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>, z.core.$ZodTypeInternals<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>>> | undefined;
|
|
133
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
134
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
135
|
+
template?: z.ZodType<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>, z.core.$ZodTypeInternals<import("document-model").InputMaybe<string>, import("document-model").InputMaybe<string>>> | undefined;
|
|
136
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
137
|
+
scope: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
138
|
+
schema: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
139
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
140
|
+
__typename?: z.ZodType<"UpdateChangeLogItemInput" | undefined, "UpdateChangeLogItemInput" | undefined, z.core.$ZodTypeInternals<"UpdateChangeLogItemInput" | undefined, "UpdateChangeLogItemInput" | undefined>> | undefined;
|
|
141
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
142
|
+
newContent: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
143
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
144
|
+
example: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
145
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
146
|
+
}>, z.core.$strip>, z.ZodObject<Required<{
|
|
147
|
+
scope: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
148
|
+
id: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
149
|
+
newExample: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
150
|
+
}>, z.core.$strip>]>;
|
|
411
151
|
export declare function DocumentModelGlobalStateSchema(): z.ZodObject<Properties<DocumentModelGlobalState>>;
|
|
412
152
|
export declare function DocumentSpecificationSchema(): z.ZodObject<Properties<DocumentSpecification>>;
|
|
413
153
|
export declare function ModuleSchema(): z.ZodObject<Properties<ModuleSpecification>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../../src/document-model/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACrB,cAAc,EACd,sBAAsB,EACtB,wBAAwB,EACxB,iBAAiB,EACjB,oBAAoB,EACpB,MAAM,EACN,WAAW,EACX,wBAAwB,EACxB,iBAAiB,EACjB,yBAAyB,EACzB,2BAA2B,EAC3B,oBAAoB,EACpB,uBAAuB,EACvB,wBAAwB,EACxB,qBAAqB,EACrB,mBAAmB,EACnB,kBAAkB,EAClB,2BAA2B,EAC3B,sBAAsB,EACtB,0BAA0B,EAC1B,4BAA4B,EAC5B,mBAAmB,EACnB,2BAA2B,EAC3B,6BAA6B,EAC7B,yBAAyB,EACzB,UAAU,EACV,kBAAkB,EAClB,qBAAqB,EACrB,oBAAoB,EACpB,wBAAwB,EACxB,sBAAsB,EACtB,eAAe,EACf,iBAAiB,EACjB,yBAAyB,EACzB,kBAAkB,EAClB,4BAA4B,EAC5B,0BAA0B,EAC1B,iCAAiC,EACjC,0BAA0B,EAC1B,8BAA8B,EAC9B,qBAAqB,EACrB,wBAAwB,EACxB,uBAAuB,EACvB,sBAAsB,EACtB,yBAAyB,EACzB,mBAAmB,EACnB,KAAK,EACL,wBAAwB,EACxB,2BAA2B,EAC3B,uBAAuB,EACxB,MAAM,gBAAgB,CAAC;AAExB,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,KAAK,UAAU,CAAC,CAAC,IAAI,QAAQ,CAAC;KAC3B,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,
|
|
1
|
+
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../../src/document-model/schemas.ts"],"names":[],"mappings":"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"}
|
|
@@ -160,7 +160,7 @@ export function DocumentSpecificationSchema() {
|
|
|
160
160
|
changeLog: z.array(z.string()),
|
|
161
161
|
modules: z.array(ModuleSchema()),
|
|
162
162
|
state: ScopeStateSchema(),
|
|
163
|
-
version: z.number(),
|
|
163
|
+
version: z.number().int(),
|
|
164
164
|
});
|
|
165
165
|
}
|
|
166
166
|
export function ModuleSchema() {
|