@kubun/protocol 0.1.0
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/LICENSE.md +57 -0
- package/README.md +11 -0
- package/lib/index.d.ts +14 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +6 -0
- package/lib/models/cluster.d.ts +17 -0
- package/lib/models/cluster.d.ts.map +1 -0
- package/lib/models/cluster.js +102 -0
- package/lib/models/document.d.ts +3788 -0
- package/lib/models/document.d.ts.map +1 -0
- package/lib/models/document.js +229 -0
- package/lib/models/graph.d.ts +23 -0
- package/lib/models/graph.d.ts.map +1 -0
- package/lib/models/graph.js +39 -0
- package/lib/models/json-schema.d.ts +845 -0
- package/lib/models/json-schema.d.ts.map +1 -0
- package/lib/models/json-schema.js +245 -0
- package/lib/models/value.d.ts +16 -0
- package/lib/models/value.d.ts.map +1 -0
- package/lib/models/value.js +15 -0
- package/lib/services/graph.d.ts +2539 -0
- package/lib/services/graph.d.ts.map +1 -0
- package/lib/services/graph.js +164 -0
- package/package.json +35 -0
|
@@ -0,0 +1,2539 @@
|
|
|
1
|
+
import type { RequestDefinition } from '@enkaku/protocol';
|
|
2
|
+
import type { FromSchema } from '@enkaku/schema';
|
|
3
|
+
export declare const createGraphParams: {
|
|
4
|
+
readonly type: "object";
|
|
5
|
+
readonly properties: {
|
|
6
|
+
readonly name: {
|
|
7
|
+
readonly type: "string";
|
|
8
|
+
};
|
|
9
|
+
readonly clusters: {
|
|
10
|
+
readonly type: "array";
|
|
11
|
+
readonly items: {
|
|
12
|
+
readonly type: "array";
|
|
13
|
+
readonly items: {
|
|
14
|
+
readonly $id: "urn:kubun:protocol:model:document";
|
|
15
|
+
readonly anyOf: readonly [{
|
|
16
|
+
readonly type: "object";
|
|
17
|
+
readonly properties: {
|
|
18
|
+
readonly behavior: {
|
|
19
|
+
readonly type: "string";
|
|
20
|
+
readonly const: "interface";
|
|
21
|
+
};
|
|
22
|
+
readonly name: {
|
|
23
|
+
readonly type: "string";
|
|
24
|
+
};
|
|
25
|
+
readonly version: {
|
|
26
|
+
readonly type: "string";
|
|
27
|
+
readonly const: "1.0";
|
|
28
|
+
};
|
|
29
|
+
readonly interfaces: {
|
|
30
|
+
readonly type: "array";
|
|
31
|
+
readonly items: {
|
|
32
|
+
readonly type: "string";
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
readonly schema: {
|
|
36
|
+
readonly type: "object";
|
|
37
|
+
readonly properties: {
|
|
38
|
+
readonly $defs: {
|
|
39
|
+
readonly type: "object";
|
|
40
|
+
readonly additionalProperties: {
|
|
41
|
+
readonly anyOf: readonly [{
|
|
42
|
+
readonly anyOf: readonly [{
|
|
43
|
+
readonly type: "object";
|
|
44
|
+
readonly properties: {
|
|
45
|
+
readonly type: {
|
|
46
|
+
readonly type: "string";
|
|
47
|
+
readonly const: "boolean";
|
|
48
|
+
};
|
|
49
|
+
readonly default: {
|
|
50
|
+
readonly type: "boolean";
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
readonly required: readonly ["type"];
|
|
54
|
+
readonly additionalProperties: false;
|
|
55
|
+
}, {
|
|
56
|
+
readonly type: "object";
|
|
57
|
+
readonly properties: {
|
|
58
|
+
readonly type: {
|
|
59
|
+
readonly type: "string";
|
|
60
|
+
readonly const: "integer";
|
|
61
|
+
};
|
|
62
|
+
readonly default: {
|
|
63
|
+
readonly type: "integer";
|
|
64
|
+
};
|
|
65
|
+
readonly min: {
|
|
66
|
+
readonly type: "integer";
|
|
67
|
+
};
|
|
68
|
+
readonly max: {
|
|
69
|
+
readonly type: "integer";
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
readonly required: readonly ["type"];
|
|
73
|
+
readonly additionalProperties: false;
|
|
74
|
+
}, {
|
|
75
|
+
readonly type: "object";
|
|
76
|
+
readonly properties: {
|
|
77
|
+
readonly type: {
|
|
78
|
+
readonly type: "string";
|
|
79
|
+
readonly const: "number";
|
|
80
|
+
};
|
|
81
|
+
readonly default: {
|
|
82
|
+
readonly type: "number";
|
|
83
|
+
};
|
|
84
|
+
readonly min: {
|
|
85
|
+
readonly type: "number";
|
|
86
|
+
};
|
|
87
|
+
readonly max: {
|
|
88
|
+
readonly type: "number";
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
readonly required: readonly ["type"];
|
|
92
|
+
readonly additionalProperties: false;
|
|
93
|
+
}, {
|
|
94
|
+
readonly anyOf: readonly [{
|
|
95
|
+
readonly type: "object";
|
|
96
|
+
readonly properties: {
|
|
97
|
+
readonly type: {
|
|
98
|
+
readonly type: "string";
|
|
99
|
+
readonly const: "string";
|
|
100
|
+
};
|
|
101
|
+
readonly title: {
|
|
102
|
+
readonly type: "string";
|
|
103
|
+
};
|
|
104
|
+
readonly pattern: {
|
|
105
|
+
readonly type: "string";
|
|
106
|
+
};
|
|
107
|
+
readonly default: {
|
|
108
|
+
readonly type: "string";
|
|
109
|
+
};
|
|
110
|
+
readonly minLength: {
|
|
111
|
+
readonly type: "integer";
|
|
112
|
+
};
|
|
113
|
+
readonly maxLength: {
|
|
114
|
+
readonly type: "integer";
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
readonly required: readonly ["type"];
|
|
118
|
+
readonly additionalProperties: false;
|
|
119
|
+
}, {
|
|
120
|
+
readonly type: "object";
|
|
121
|
+
readonly properties: {
|
|
122
|
+
readonly type: {
|
|
123
|
+
readonly type: "string";
|
|
124
|
+
readonly const: "string";
|
|
125
|
+
};
|
|
126
|
+
readonly title: {
|
|
127
|
+
readonly type: "string";
|
|
128
|
+
};
|
|
129
|
+
readonly enum: {
|
|
130
|
+
readonly type: "array";
|
|
131
|
+
readonly items: {
|
|
132
|
+
readonly type: "string";
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
readonly default: {
|
|
136
|
+
readonly type: "string";
|
|
137
|
+
};
|
|
138
|
+
};
|
|
139
|
+
readonly required: readonly ["type", "title", "enum"];
|
|
140
|
+
readonly additionalProperties: false;
|
|
141
|
+
}, {
|
|
142
|
+
readonly type: "object";
|
|
143
|
+
readonly properties: {
|
|
144
|
+
readonly type: {
|
|
145
|
+
readonly type: "string";
|
|
146
|
+
readonly const: "string";
|
|
147
|
+
};
|
|
148
|
+
readonly format: {
|
|
149
|
+
readonly type: "string";
|
|
150
|
+
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
151
|
+
};
|
|
152
|
+
};
|
|
153
|
+
readonly required: readonly ["type", "format"];
|
|
154
|
+
readonly additionalProperties: false;
|
|
155
|
+
}];
|
|
156
|
+
}];
|
|
157
|
+
}, {
|
|
158
|
+
readonly anyOf: readonly [{
|
|
159
|
+
readonly type: "object";
|
|
160
|
+
readonly properties: {
|
|
161
|
+
readonly type: {
|
|
162
|
+
readonly type: "string";
|
|
163
|
+
readonly const: "array";
|
|
164
|
+
};
|
|
165
|
+
readonly title: {
|
|
166
|
+
readonly type: "string";
|
|
167
|
+
};
|
|
168
|
+
readonly items: {
|
|
169
|
+
readonly type: "object";
|
|
170
|
+
readonly properties: {
|
|
171
|
+
readonly $ref: {
|
|
172
|
+
readonly type: "string";
|
|
173
|
+
};
|
|
174
|
+
};
|
|
175
|
+
readonly required: readonly ["$ref"];
|
|
176
|
+
readonly additionalProperties: false;
|
|
177
|
+
};
|
|
178
|
+
};
|
|
179
|
+
readonly required: readonly ["type", "title", "items"];
|
|
180
|
+
readonly additionalProperties: false;
|
|
181
|
+
}, {
|
|
182
|
+
readonly type: "object";
|
|
183
|
+
readonly properties: {
|
|
184
|
+
readonly title: {
|
|
185
|
+
readonly type: "string";
|
|
186
|
+
};
|
|
187
|
+
readonly type: {
|
|
188
|
+
readonly type: "string";
|
|
189
|
+
readonly const: "object";
|
|
190
|
+
};
|
|
191
|
+
readonly properties: {
|
|
192
|
+
readonly type: "object";
|
|
193
|
+
readonly additionalProperties: {
|
|
194
|
+
readonly type: "object";
|
|
195
|
+
readonly properties: {
|
|
196
|
+
readonly $ref: {
|
|
197
|
+
readonly type: "string";
|
|
198
|
+
};
|
|
199
|
+
};
|
|
200
|
+
readonly required: readonly ["$ref"];
|
|
201
|
+
readonly additionalProperties: false;
|
|
202
|
+
};
|
|
203
|
+
};
|
|
204
|
+
readonly required: {
|
|
205
|
+
readonly type: "array";
|
|
206
|
+
readonly items: {
|
|
207
|
+
readonly type: "string";
|
|
208
|
+
};
|
|
209
|
+
};
|
|
210
|
+
readonly additionalProperties: {
|
|
211
|
+
readonly type: "boolean";
|
|
212
|
+
};
|
|
213
|
+
};
|
|
214
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "title"];
|
|
215
|
+
readonly additionalProperties: false;
|
|
216
|
+
}];
|
|
217
|
+
}];
|
|
218
|
+
};
|
|
219
|
+
};
|
|
220
|
+
readonly type: {
|
|
221
|
+
readonly type: "string";
|
|
222
|
+
readonly const: "object";
|
|
223
|
+
};
|
|
224
|
+
readonly properties: {
|
|
225
|
+
readonly type: "object";
|
|
226
|
+
readonly additionalProperties: {
|
|
227
|
+
readonly type: "object";
|
|
228
|
+
readonly properties: {
|
|
229
|
+
readonly $ref: {
|
|
230
|
+
readonly type: "string";
|
|
231
|
+
};
|
|
232
|
+
};
|
|
233
|
+
readonly required: readonly ["$ref"];
|
|
234
|
+
readonly additionalProperties: false;
|
|
235
|
+
};
|
|
236
|
+
};
|
|
237
|
+
readonly required: {
|
|
238
|
+
readonly type: "array";
|
|
239
|
+
readonly items: {
|
|
240
|
+
readonly type: "string";
|
|
241
|
+
};
|
|
242
|
+
};
|
|
243
|
+
readonly additionalProperties: {
|
|
244
|
+
readonly type: "boolean";
|
|
245
|
+
};
|
|
246
|
+
};
|
|
247
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "$defs"];
|
|
248
|
+
readonly additionalProperties: false;
|
|
249
|
+
};
|
|
250
|
+
readonly fieldsMeta: {
|
|
251
|
+
readonly type: "object";
|
|
252
|
+
readonly additionalProperties: {
|
|
253
|
+
readonly type: "object";
|
|
254
|
+
readonly properties: {
|
|
255
|
+
readonly relationModel: {
|
|
256
|
+
readonly anyOf: readonly [{
|
|
257
|
+
readonly type: "string";
|
|
258
|
+
}, {
|
|
259
|
+
readonly type: "null";
|
|
260
|
+
}];
|
|
261
|
+
};
|
|
262
|
+
};
|
|
263
|
+
readonly additionalProperties: false;
|
|
264
|
+
};
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior"];
|
|
268
|
+
readonly additionalProperties: false;
|
|
269
|
+
}, {
|
|
270
|
+
readonly type: "object";
|
|
271
|
+
readonly properties: {
|
|
272
|
+
readonly behavior: {
|
|
273
|
+
readonly type: "string";
|
|
274
|
+
readonly const: "list";
|
|
275
|
+
};
|
|
276
|
+
readonly name: {
|
|
277
|
+
readonly type: "string";
|
|
278
|
+
};
|
|
279
|
+
readonly version: {
|
|
280
|
+
readonly type: "string";
|
|
281
|
+
readonly const: "1.0";
|
|
282
|
+
};
|
|
283
|
+
readonly interfaces: {
|
|
284
|
+
readonly type: "array";
|
|
285
|
+
readonly items: {
|
|
286
|
+
readonly type: "string";
|
|
287
|
+
};
|
|
288
|
+
};
|
|
289
|
+
readonly schema: {
|
|
290
|
+
readonly type: "object";
|
|
291
|
+
readonly properties: {
|
|
292
|
+
readonly $defs: {
|
|
293
|
+
readonly type: "object";
|
|
294
|
+
readonly additionalProperties: {
|
|
295
|
+
readonly anyOf: readonly [{
|
|
296
|
+
readonly anyOf: readonly [{
|
|
297
|
+
readonly type: "object";
|
|
298
|
+
readonly properties: {
|
|
299
|
+
readonly type: {
|
|
300
|
+
readonly type: "string";
|
|
301
|
+
readonly const: "boolean";
|
|
302
|
+
};
|
|
303
|
+
readonly default: {
|
|
304
|
+
readonly type: "boolean";
|
|
305
|
+
};
|
|
306
|
+
};
|
|
307
|
+
readonly required: readonly ["type"];
|
|
308
|
+
readonly additionalProperties: false;
|
|
309
|
+
}, {
|
|
310
|
+
readonly type: "object";
|
|
311
|
+
readonly properties: {
|
|
312
|
+
readonly type: {
|
|
313
|
+
readonly type: "string";
|
|
314
|
+
readonly const: "integer";
|
|
315
|
+
};
|
|
316
|
+
readonly default: {
|
|
317
|
+
readonly type: "integer";
|
|
318
|
+
};
|
|
319
|
+
readonly min: {
|
|
320
|
+
readonly type: "integer";
|
|
321
|
+
};
|
|
322
|
+
readonly max: {
|
|
323
|
+
readonly type: "integer";
|
|
324
|
+
};
|
|
325
|
+
};
|
|
326
|
+
readonly required: readonly ["type"];
|
|
327
|
+
readonly additionalProperties: false;
|
|
328
|
+
}, {
|
|
329
|
+
readonly type: "object";
|
|
330
|
+
readonly properties: {
|
|
331
|
+
readonly type: {
|
|
332
|
+
readonly type: "string";
|
|
333
|
+
readonly const: "number";
|
|
334
|
+
};
|
|
335
|
+
readonly default: {
|
|
336
|
+
readonly type: "number";
|
|
337
|
+
};
|
|
338
|
+
readonly min: {
|
|
339
|
+
readonly type: "number";
|
|
340
|
+
};
|
|
341
|
+
readonly max: {
|
|
342
|
+
readonly type: "number";
|
|
343
|
+
};
|
|
344
|
+
};
|
|
345
|
+
readonly required: readonly ["type"];
|
|
346
|
+
readonly additionalProperties: false;
|
|
347
|
+
}, {
|
|
348
|
+
readonly anyOf: readonly [{
|
|
349
|
+
readonly type: "object";
|
|
350
|
+
readonly properties: {
|
|
351
|
+
readonly type: {
|
|
352
|
+
readonly type: "string";
|
|
353
|
+
readonly const: "string";
|
|
354
|
+
};
|
|
355
|
+
readonly title: {
|
|
356
|
+
readonly type: "string";
|
|
357
|
+
};
|
|
358
|
+
readonly pattern: {
|
|
359
|
+
readonly type: "string";
|
|
360
|
+
};
|
|
361
|
+
readonly default: {
|
|
362
|
+
readonly type: "string";
|
|
363
|
+
};
|
|
364
|
+
readonly minLength: {
|
|
365
|
+
readonly type: "integer";
|
|
366
|
+
};
|
|
367
|
+
readonly maxLength: {
|
|
368
|
+
readonly type: "integer";
|
|
369
|
+
};
|
|
370
|
+
};
|
|
371
|
+
readonly required: readonly ["type"];
|
|
372
|
+
readonly additionalProperties: false;
|
|
373
|
+
}, {
|
|
374
|
+
readonly type: "object";
|
|
375
|
+
readonly properties: {
|
|
376
|
+
readonly type: {
|
|
377
|
+
readonly type: "string";
|
|
378
|
+
readonly const: "string";
|
|
379
|
+
};
|
|
380
|
+
readonly title: {
|
|
381
|
+
readonly type: "string";
|
|
382
|
+
};
|
|
383
|
+
readonly enum: {
|
|
384
|
+
readonly type: "array";
|
|
385
|
+
readonly items: {
|
|
386
|
+
readonly type: "string";
|
|
387
|
+
};
|
|
388
|
+
};
|
|
389
|
+
readonly default: {
|
|
390
|
+
readonly type: "string";
|
|
391
|
+
};
|
|
392
|
+
};
|
|
393
|
+
readonly required: readonly ["type", "title", "enum"];
|
|
394
|
+
readonly additionalProperties: false;
|
|
395
|
+
}, {
|
|
396
|
+
readonly type: "object";
|
|
397
|
+
readonly properties: {
|
|
398
|
+
readonly type: {
|
|
399
|
+
readonly type: "string";
|
|
400
|
+
readonly const: "string";
|
|
401
|
+
};
|
|
402
|
+
readonly format: {
|
|
403
|
+
readonly type: "string";
|
|
404
|
+
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
405
|
+
};
|
|
406
|
+
};
|
|
407
|
+
readonly required: readonly ["type", "format"];
|
|
408
|
+
readonly additionalProperties: false;
|
|
409
|
+
}];
|
|
410
|
+
}];
|
|
411
|
+
}, {
|
|
412
|
+
readonly anyOf: readonly [{
|
|
413
|
+
readonly type: "object";
|
|
414
|
+
readonly properties: {
|
|
415
|
+
readonly type: {
|
|
416
|
+
readonly type: "string";
|
|
417
|
+
readonly const: "array";
|
|
418
|
+
};
|
|
419
|
+
readonly title: {
|
|
420
|
+
readonly type: "string";
|
|
421
|
+
};
|
|
422
|
+
readonly items: {
|
|
423
|
+
readonly type: "object";
|
|
424
|
+
readonly properties: {
|
|
425
|
+
readonly $ref: {
|
|
426
|
+
readonly type: "string";
|
|
427
|
+
};
|
|
428
|
+
};
|
|
429
|
+
readonly required: readonly ["$ref"];
|
|
430
|
+
readonly additionalProperties: false;
|
|
431
|
+
};
|
|
432
|
+
};
|
|
433
|
+
readonly required: readonly ["type", "title", "items"];
|
|
434
|
+
readonly additionalProperties: false;
|
|
435
|
+
}, {
|
|
436
|
+
readonly type: "object";
|
|
437
|
+
readonly properties: {
|
|
438
|
+
readonly title: {
|
|
439
|
+
readonly type: "string";
|
|
440
|
+
};
|
|
441
|
+
readonly type: {
|
|
442
|
+
readonly type: "string";
|
|
443
|
+
readonly const: "object";
|
|
444
|
+
};
|
|
445
|
+
readonly properties: {
|
|
446
|
+
readonly type: "object";
|
|
447
|
+
readonly additionalProperties: {
|
|
448
|
+
readonly type: "object";
|
|
449
|
+
readonly properties: {
|
|
450
|
+
readonly $ref: {
|
|
451
|
+
readonly type: "string";
|
|
452
|
+
};
|
|
453
|
+
};
|
|
454
|
+
readonly required: readonly ["$ref"];
|
|
455
|
+
readonly additionalProperties: false;
|
|
456
|
+
};
|
|
457
|
+
};
|
|
458
|
+
readonly required: {
|
|
459
|
+
readonly type: "array";
|
|
460
|
+
readonly items: {
|
|
461
|
+
readonly type: "string";
|
|
462
|
+
};
|
|
463
|
+
};
|
|
464
|
+
readonly additionalProperties: {
|
|
465
|
+
readonly type: "boolean";
|
|
466
|
+
};
|
|
467
|
+
};
|
|
468
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "title"];
|
|
469
|
+
readonly additionalProperties: false;
|
|
470
|
+
}];
|
|
471
|
+
}];
|
|
472
|
+
};
|
|
473
|
+
};
|
|
474
|
+
readonly type: {
|
|
475
|
+
readonly type: "string";
|
|
476
|
+
readonly const: "object";
|
|
477
|
+
};
|
|
478
|
+
readonly properties: {
|
|
479
|
+
readonly type: "object";
|
|
480
|
+
readonly additionalProperties: {
|
|
481
|
+
readonly type: "object";
|
|
482
|
+
readonly properties: {
|
|
483
|
+
readonly $ref: {
|
|
484
|
+
readonly type: "string";
|
|
485
|
+
};
|
|
486
|
+
};
|
|
487
|
+
readonly required: readonly ["$ref"];
|
|
488
|
+
readonly additionalProperties: false;
|
|
489
|
+
};
|
|
490
|
+
};
|
|
491
|
+
readonly required: {
|
|
492
|
+
readonly type: "array";
|
|
493
|
+
readonly items: {
|
|
494
|
+
readonly type: "string";
|
|
495
|
+
};
|
|
496
|
+
};
|
|
497
|
+
readonly additionalProperties: {
|
|
498
|
+
readonly type: "boolean";
|
|
499
|
+
};
|
|
500
|
+
};
|
|
501
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "$defs"];
|
|
502
|
+
readonly additionalProperties: false;
|
|
503
|
+
};
|
|
504
|
+
readonly fieldsMeta: {
|
|
505
|
+
readonly type: "object";
|
|
506
|
+
readonly additionalProperties: {
|
|
507
|
+
readonly type: "object";
|
|
508
|
+
readonly properties: {
|
|
509
|
+
readonly relationModel: {
|
|
510
|
+
readonly anyOf: readonly [{
|
|
511
|
+
readonly type: "string";
|
|
512
|
+
}, {
|
|
513
|
+
readonly type: "null";
|
|
514
|
+
}];
|
|
515
|
+
};
|
|
516
|
+
};
|
|
517
|
+
readonly additionalProperties: false;
|
|
518
|
+
};
|
|
519
|
+
};
|
|
520
|
+
};
|
|
521
|
+
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior"];
|
|
522
|
+
readonly additionalProperties: false;
|
|
523
|
+
}, {
|
|
524
|
+
readonly type: "object";
|
|
525
|
+
readonly properties: {
|
|
526
|
+
readonly behavior: {
|
|
527
|
+
readonly type: "string";
|
|
528
|
+
readonly const: "set";
|
|
529
|
+
};
|
|
530
|
+
readonly setFields: {
|
|
531
|
+
readonly type: "array";
|
|
532
|
+
readonly items: {
|
|
533
|
+
readonly type: "string";
|
|
534
|
+
};
|
|
535
|
+
};
|
|
536
|
+
readonly name: {
|
|
537
|
+
readonly type: "string";
|
|
538
|
+
};
|
|
539
|
+
readonly version: {
|
|
540
|
+
readonly type: "string";
|
|
541
|
+
readonly const: "1.0";
|
|
542
|
+
};
|
|
543
|
+
readonly interfaces: {
|
|
544
|
+
readonly type: "array";
|
|
545
|
+
readonly items: {
|
|
546
|
+
readonly type: "string";
|
|
547
|
+
};
|
|
548
|
+
};
|
|
549
|
+
readonly schema: {
|
|
550
|
+
readonly type: "object";
|
|
551
|
+
readonly properties: {
|
|
552
|
+
readonly $defs: {
|
|
553
|
+
readonly type: "object";
|
|
554
|
+
readonly additionalProperties: {
|
|
555
|
+
readonly anyOf: readonly [{
|
|
556
|
+
readonly anyOf: readonly [{
|
|
557
|
+
readonly type: "object";
|
|
558
|
+
readonly properties: {
|
|
559
|
+
readonly type: {
|
|
560
|
+
readonly type: "string";
|
|
561
|
+
readonly const: "boolean";
|
|
562
|
+
};
|
|
563
|
+
readonly default: {
|
|
564
|
+
readonly type: "boolean";
|
|
565
|
+
};
|
|
566
|
+
};
|
|
567
|
+
readonly required: readonly ["type"];
|
|
568
|
+
readonly additionalProperties: false;
|
|
569
|
+
}, {
|
|
570
|
+
readonly type: "object";
|
|
571
|
+
readonly properties: {
|
|
572
|
+
readonly type: {
|
|
573
|
+
readonly type: "string";
|
|
574
|
+
readonly const: "integer";
|
|
575
|
+
};
|
|
576
|
+
readonly default: {
|
|
577
|
+
readonly type: "integer";
|
|
578
|
+
};
|
|
579
|
+
readonly min: {
|
|
580
|
+
readonly type: "integer";
|
|
581
|
+
};
|
|
582
|
+
readonly max: {
|
|
583
|
+
readonly type: "integer";
|
|
584
|
+
};
|
|
585
|
+
};
|
|
586
|
+
readonly required: readonly ["type"];
|
|
587
|
+
readonly additionalProperties: false;
|
|
588
|
+
}, {
|
|
589
|
+
readonly type: "object";
|
|
590
|
+
readonly properties: {
|
|
591
|
+
readonly type: {
|
|
592
|
+
readonly type: "string";
|
|
593
|
+
readonly const: "number";
|
|
594
|
+
};
|
|
595
|
+
readonly default: {
|
|
596
|
+
readonly type: "number";
|
|
597
|
+
};
|
|
598
|
+
readonly min: {
|
|
599
|
+
readonly type: "number";
|
|
600
|
+
};
|
|
601
|
+
readonly max: {
|
|
602
|
+
readonly type: "number";
|
|
603
|
+
};
|
|
604
|
+
};
|
|
605
|
+
readonly required: readonly ["type"];
|
|
606
|
+
readonly additionalProperties: false;
|
|
607
|
+
}, {
|
|
608
|
+
readonly anyOf: readonly [{
|
|
609
|
+
readonly type: "object";
|
|
610
|
+
readonly properties: {
|
|
611
|
+
readonly type: {
|
|
612
|
+
readonly type: "string";
|
|
613
|
+
readonly const: "string";
|
|
614
|
+
};
|
|
615
|
+
readonly title: {
|
|
616
|
+
readonly type: "string";
|
|
617
|
+
};
|
|
618
|
+
readonly pattern: {
|
|
619
|
+
readonly type: "string";
|
|
620
|
+
};
|
|
621
|
+
readonly default: {
|
|
622
|
+
readonly type: "string";
|
|
623
|
+
};
|
|
624
|
+
readonly minLength: {
|
|
625
|
+
readonly type: "integer";
|
|
626
|
+
};
|
|
627
|
+
readonly maxLength: {
|
|
628
|
+
readonly type: "integer";
|
|
629
|
+
};
|
|
630
|
+
};
|
|
631
|
+
readonly required: readonly ["type"];
|
|
632
|
+
readonly additionalProperties: false;
|
|
633
|
+
}, {
|
|
634
|
+
readonly type: "object";
|
|
635
|
+
readonly properties: {
|
|
636
|
+
readonly type: {
|
|
637
|
+
readonly type: "string";
|
|
638
|
+
readonly const: "string";
|
|
639
|
+
};
|
|
640
|
+
readonly title: {
|
|
641
|
+
readonly type: "string";
|
|
642
|
+
};
|
|
643
|
+
readonly enum: {
|
|
644
|
+
readonly type: "array";
|
|
645
|
+
readonly items: {
|
|
646
|
+
readonly type: "string";
|
|
647
|
+
};
|
|
648
|
+
};
|
|
649
|
+
readonly default: {
|
|
650
|
+
readonly type: "string";
|
|
651
|
+
};
|
|
652
|
+
};
|
|
653
|
+
readonly required: readonly ["type", "title", "enum"];
|
|
654
|
+
readonly additionalProperties: false;
|
|
655
|
+
}, {
|
|
656
|
+
readonly type: "object";
|
|
657
|
+
readonly properties: {
|
|
658
|
+
readonly type: {
|
|
659
|
+
readonly type: "string";
|
|
660
|
+
readonly const: "string";
|
|
661
|
+
};
|
|
662
|
+
readonly format: {
|
|
663
|
+
readonly type: "string";
|
|
664
|
+
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
665
|
+
};
|
|
666
|
+
};
|
|
667
|
+
readonly required: readonly ["type", "format"];
|
|
668
|
+
readonly additionalProperties: false;
|
|
669
|
+
}];
|
|
670
|
+
}];
|
|
671
|
+
}, {
|
|
672
|
+
readonly anyOf: readonly [{
|
|
673
|
+
readonly type: "object";
|
|
674
|
+
readonly properties: {
|
|
675
|
+
readonly type: {
|
|
676
|
+
readonly type: "string";
|
|
677
|
+
readonly const: "array";
|
|
678
|
+
};
|
|
679
|
+
readonly title: {
|
|
680
|
+
readonly type: "string";
|
|
681
|
+
};
|
|
682
|
+
readonly items: {
|
|
683
|
+
readonly type: "object";
|
|
684
|
+
readonly properties: {
|
|
685
|
+
readonly $ref: {
|
|
686
|
+
readonly type: "string";
|
|
687
|
+
};
|
|
688
|
+
};
|
|
689
|
+
readonly required: readonly ["$ref"];
|
|
690
|
+
readonly additionalProperties: false;
|
|
691
|
+
};
|
|
692
|
+
};
|
|
693
|
+
readonly required: readonly ["type", "title", "items"];
|
|
694
|
+
readonly additionalProperties: false;
|
|
695
|
+
}, {
|
|
696
|
+
readonly type: "object";
|
|
697
|
+
readonly properties: {
|
|
698
|
+
readonly title: {
|
|
699
|
+
readonly type: "string";
|
|
700
|
+
};
|
|
701
|
+
readonly type: {
|
|
702
|
+
readonly type: "string";
|
|
703
|
+
readonly const: "object";
|
|
704
|
+
};
|
|
705
|
+
readonly properties: {
|
|
706
|
+
readonly type: "object";
|
|
707
|
+
readonly additionalProperties: {
|
|
708
|
+
readonly type: "object";
|
|
709
|
+
readonly properties: {
|
|
710
|
+
readonly $ref: {
|
|
711
|
+
readonly type: "string";
|
|
712
|
+
};
|
|
713
|
+
};
|
|
714
|
+
readonly required: readonly ["$ref"];
|
|
715
|
+
readonly additionalProperties: false;
|
|
716
|
+
};
|
|
717
|
+
};
|
|
718
|
+
readonly required: {
|
|
719
|
+
readonly type: "array";
|
|
720
|
+
readonly items: {
|
|
721
|
+
readonly type: "string";
|
|
722
|
+
};
|
|
723
|
+
};
|
|
724
|
+
readonly additionalProperties: {
|
|
725
|
+
readonly type: "boolean";
|
|
726
|
+
};
|
|
727
|
+
};
|
|
728
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "title"];
|
|
729
|
+
readonly additionalProperties: false;
|
|
730
|
+
}];
|
|
731
|
+
}];
|
|
732
|
+
};
|
|
733
|
+
};
|
|
734
|
+
readonly type: {
|
|
735
|
+
readonly type: "string";
|
|
736
|
+
readonly const: "object";
|
|
737
|
+
};
|
|
738
|
+
readonly properties: {
|
|
739
|
+
readonly type: "object";
|
|
740
|
+
readonly additionalProperties: {
|
|
741
|
+
readonly type: "object";
|
|
742
|
+
readonly properties: {
|
|
743
|
+
readonly $ref: {
|
|
744
|
+
readonly type: "string";
|
|
745
|
+
};
|
|
746
|
+
};
|
|
747
|
+
readonly required: readonly ["$ref"];
|
|
748
|
+
readonly additionalProperties: false;
|
|
749
|
+
};
|
|
750
|
+
};
|
|
751
|
+
readonly required: {
|
|
752
|
+
readonly type: "array";
|
|
753
|
+
readonly items: {
|
|
754
|
+
readonly type: "string";
|
|
755
|
+
};
|
|
756
|
+
};
|
|
757
|
+
readonly additionalProperties: {
|
|
758
|
+
readonly type: "boolean";
|
|
759
|
+
};
|
|
760
|
+
};
|
|
761
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "$defs"];
|
|
762
|
+
readonly additionalProperties: false;
|
|
763
|
+
};
|
|
764
|
+
readonly fieldsMeta: {
|
|
765
|
+
readonly type: "object";
|
|
766
|
+
readonly additionalProperties: {
|
|
767
|
+
readonly type: "object";
|
|
768
|
+
readonly properties: {
|
|
769
|
+
readonly relationModel: {
|
|
770
|
+
readonly anyOf: readonly [{
|
|
771
|
+
readonly type: "string";
|
|
772
|
+
}, {
|
|
773
|
+
readonly type: "null";
|
|
774
|
+
}];
|
|
775
|
+
};
|
|
776
|
+
};
|
|
777
|
+
readonly additionalProperties: false;
|
|
778
|
+
};
|
|
779
|
+
};
|
|
780
|
+
};
|
|
781
|
+
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior", "setFields"];
|
|
782
|
+
readonly additionalProperties: false;
|
|
783
|
+
}];
|
|
784
|
+
};
|
|
785
|
+
};
|
|
786
|
+
};
|
|
787
|
+
};
|
|
788
|
+
readonly required: readonly ["name", "clusters"];
|
|
789
|
+
readonly additionalProperties: false;
|
|
790
|
+
};
|
|
791
|
+
export type CreateGraphParams = FromSchema<typeof createGraphParams>;
|
|
792
|
+
export declare const createGraphResult: {
|
|
793
|
+
readonly type: "object";
|
|
794
|
+
readonly properties: {
|
|
795
|
+
readonly id: {
|
|
796
|
+
readonly type: "string";
|
|
797
|
+
};
|
|
798
|
+
readonly models: {
|
|
799
|
+
readonly type: "object";
|
|
800
|
+
readonly additionalProperties: {
|
|
801
|
+
readonly $id: "urn:kubun:protocol:model:document";
|
|
802
|
+
readonly anyOf: readonly [{
|
|
803
|
+
readonly type: "object";
|
|
804
|
+
readonly properties: {
|
|
805
|
+
readonly behavior: {
|
|
806
|
+
readonly type: "string";
|
|
807
|
+
readonly const: "interface";
|
|
808
|
+
};
|
|
809
|
+
readonly name: {
|
|
810
|
+
readonly type: "string";
|
|
811
|
+
};
|
|
812
|
+
readonly version: {
|
|
813
|
+
readonly type: "string";
|
|
814
|
+
readonly const: "1.0";
|
|
815
|
+
};
|
|
816
|
+
readonly interfaces: {
|
|
817
|
+
readonly type: "array";
|
|
818
|
+
readonly items: {
|
|
819
|
+
readonly type: "string";
|
|
820
|
+
};
|
|
821
|
+
};
|
|
822
|
+
readonly schema: {
|
|
823
|
+
readonly type: "object";
|
|
824
|
+
readonly properties: {
|
|
825
|
+
readonly $defs: {
|
|
826
|
+
readonly type: "object";
|
|
827
|
+
readonly additionalProperties: {
|
|
828
|
+
readonly anyOf: readonly [{
|
|
829
|
+
readonly anyOf: readonly [{
|
|
830
|
+
readonly type: "object";
|
|
831
|
+
readonly properties: {
|
|
832
|
+
readonly type: {
|
|
833
|
+
readonly type: "string";
|
|
834
|
+
readonly const: "boolean";
|
|
835
|
+
};
|
|
836
|
+
readonly default: {
|
|
837
|
+
readonly type: "boolean";
|
|
838
|
+
};
|
|
839
|
+
};
|
|
840
|
+
readonly required: readonly ["type"];
|
|
841
|
+
readonly additionalProperties: false;
|
|
842
|
+
}, {
|
|
843
|
+
readonly type: "object";
|
|
844
|
+
readonly properties: {
|
|
845
|
+
readonly type: {
|
|
846
|
+
readonly type: "string";
|
|
847
|
+
readonly const: "integer";
|
|
848
|
+
};
|
|
849
|
+
readonly default: {
|
|
850
|
+
readonly type: "integer";
|
|
851
|
+
};
|
|
852
|
+
readonly min: {
|
|
853
|
+
readonly type: "integer";
|
|
854
|
+
};
|
|
855
|
+
readonly max: {
|
|
856
|
+
readonly type: "integer";
|
|
857
|
+
};
|
|
858
|
+
};
|
|
859
|
+
readonly required: readonly ["type"];
|
|
860
|
+
readonly additionalProperties: false;
|
|
861
|
+
}, {
|
|
862
|
+
readonly type: "object";
|
|
863
|
+
readonly properties: {
|
|
864
|
+
readonly type: {
|
|
865
|
+
readonly type: "string";
|
|
866
|
+
readonly const: "number";
|
|
867
|
+
};
|
|
868
|
+
readonly default: {
|
|
869
|
+
readonly type: "number";
|
|
870
|
+
};
|
|
871
|
+
readonly min: {
|
|
872
|
+
readonly type: "number";
|
|
873
|
+
};
|
|
874
|
+
readonly max: {
|
|
875
|
+
readonly type: "number";
|
|
876
|
+
};
|
|
877
|
+
};
|
|
878
|
+
readonly required: readonly ["type"];
|
|
879
|
+
readonly additionalProperties: false;
|
|
880
|
+
}, {
|
|
881
|
+
readonly anyOf: readonly [{
|
|
882
|
+
readonly type: "object";
|
|
883
|
+
readonly properties: {
|
|
884
|
+
readonly type: {
|
|
885
|
+
readonly type: "string";
|
|
886
|
+
readonly const: "string";
|
|
887
|
+
};
|
|
888
|
+
readonly title: {
|
|
889
|
+
readonly type: "string";
|
|
890
|
+
};
|
|
891
|
+
readonly pattern: {
|
|
892
|
+
readonly type: "string";
|
|
893
|
+
};
|
|
894
|
+
readonly default: {
|
|
895
|
+
readonly type: "string";
|
|
896
|
+
};
|
|
897
|
+
readonly minLength: {
|
|
898
|
+
readonly type: "integer";
|
|
899
|
+
};
|
|
900
|
+
readonly maxLength: {
|
|
901
|
+
readonly type: "integer";
|
|
902
|
+
};
|
|
903
|
+
};
|
|
904
|
+
readonly required: readonly ["type"];
|
|
905
|
+
readonly additionalProperties: false;
|
|
906
|
+
}, {
|
|
907
|
+
readonly type: "object";
|
|
908
|
+
readonly properties: {
|
|
909
|
+
readonly type: {
|
|
910
|
+
readonly type: "string";
|
|
911
|
+
readonly const: "string";
|
|
912
|
+
};
|
|
913
|
+
readonly title: {
|
|
914
|
+
readonly type: "string";
|
|
915
|
+
};
|
|
916
|
+
readonly enum: {
|
|
917
|
+
readonly type: "array";
|
|
918
|
+
readonly items: {
|
|
919
|
+
readonly type: "string";
|
|
920
|
+
};
|
|
921
|
+
};
|
|
922
|
+
readonly default: {
|
|
923
|
+
readonly type: "string";
|
|
924
|
+
};
|
|
925
|
+
};
|
|
926
|
+
readonly required: readonly ["type", "title", "enum"];
|
|
927
|
+
readonly additionalProperties: false;
|
|
928
|
+
}, {
|
|
929
|
+
readonly type: "object";
|
|
930
|
+
readonly properties: {
|
|
931
|
+
readonly type: {
|
|
932
|
+
readonly type: "string";
|
|
933
|
+
readonly const: "string";
|
|
934
|
+
};
|
|
935
|
+
readonly format: {
|
|
936
|
+
readonly type: "string";
|
|
937
|
+
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
938
|
+
};
|
|
939
|
+
};
|
|
940
|
+
readonly required: readonly ["type", "format"];
|
|
941
|
+
readonly additionalProperties: false;
|
|
942
|
+
}];
|
|
943
|
+
}];
|
|
944
|
+
}, {
|
|
945
|
+
readonly anyOf: readonly [{
|
|
946
|
+
readonly type: "object";
|
|
947
|
+
readonly properties: {
|
|
948
|
+
readonly type: {
|
|
949
|
+
readonly type: "string";
|
|
950
|
+
readonly const: "array";
|
|
951
|
+
};
|
|
952
|
+
readonly title: {
|
|
953
|
+
readonly type: "string";
|
|
954
|
+
};
|
|
955
|
+
readonly items: {
|
|
956
|
+
readonly type: "object";
|
|
957
|
+
readonly properties: {
|
|
958
|
+
readonly $ref: {
|
|
959
|
+
readonly type: "string";
|
|
960
|
+
};
|
|
961
|
+
};
|
|
962
|
+
readonly required: readonly ["$ref"];
|
|
963
|
+
readonly additionalProperties: false;
|
|
964
|
+
};
|
|
965
|
+
};
|
|
966
|
+
readonly required: readonly ["type", "title", "items"];
|
|
967
|
+
readonly additionalProperties: false;
|
|
968
|
+
}, {
|
|
969
|
+
readonly type: "object";
|
|
970
|
+
readonly properties: {
|
|
971
|
+
readonly title: {
|
|
972
|
+
readonly type: "string";
|
|
973
|
+
};
|
|
974
|
+
readonly type: {
|
|
975
|
+
readonly type: "string";
|
|
976
|
+
readonly const: "object";
|
|
977
|
+
};
|
|
978
|
+
readonly properties: {
|
|
979
|
+
readonly type: "object";
|
|
980
|
+
readonly additionalProperties: {
|
|
981
|
+
readonly type: "object";
|
|
982
|
+
readonly properties: {
|
|
983
|
+
readonly $ref: {
|
|
984
|
+
readonly type: "string";
|
|
985
|
+
};
|
|
986
|
+
};
|
|
987
|
+
readonly required: readonly ["$ref"];
|
|
988
|
+
readonly additionalProperties: false;
|
|
989
|
+
};
|
|
990
|
+
};
|
|
991
|
+
readonly required: {
|
|
992
|
+
readonly type: "array";
|
|
993
|
+
readonly items: {
|
|
994
|
+
readonly type: "string";
|
|
995
|
+
};
|
|
996
|
+
};
|
|
997
|
+
readonly additionalProperties: {
|
|
998
|
+
readonly type: "boolean";
|
|
999
|
+
};
|
|
1000
|
+
};
|
|
1001
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "title"];
|
|
1002
|
+
readonly additionalProperties: false;
|
|
1003
|
+
}];
|
|
1004
|
+
}];
|
|
1005
|
+
};
|
|
1006
|
+
};
|
|
1007
|
+
readonly type: {
|
|
1008
|
+
readonly type: "string";
|
|
1009
|
+
readonly const: "object";
|
|
1010
|
+
};
|
|
1011
|
+
readonly properties: {
|
|
1012
|
+
readonly type: "object";
|
|
1013
|
+
readonly additionalProperties: {
|
|
1014
|
+
readonly type: "object";
|
|
1015
|
+
readonly properties: {
|
|
1016
|
+
readonly $ref: {
|
|
1017
|
+
readonly type: "string";
|
|
1018
|
+
};
|
|
1019
|
+
};
|
|
1020
|
+
readonly required: readonly ["$ref"];
|
|
1021
|
+
readonly additionalProperties: false;
|
|
1022
|
+
};
|
|
1023
|
+
};
|
|
1024
|
+
readonly required: {
|
|
1025
|
+
readonly type: "array";
|
|
1026
|
+
readonly items: {
|
|
1027
|
+
readonly type: "string";
|
|
1028
|
+
};
|
|
1029
|
+
};
|
|
1030
|
+
readonly additionalProperties: {
|
|
1031
|
+
readonly type: "boolean";
|
|
1032
|
+
};
|
|
1033
|
+
};
|
|
1034
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "$defs"];
|
|
1035
|
+
readonly additionalProperties: false;
|
|
1036
|
+
};
|
|
1037
|
+
readonly fieldsMeta: {
|
|
1038
|
+
readonly type: "object";
|
|
1039
|
+
readonly additionalProperties: {
|
|
1040
|
+
readonly type: "object";
|
|
1041
|
+
readonly properties: {
|
|
1042
|
+
readonly relationModel: {
|
|
1043
|
+
readonly anyOf: readonly [{
|
|
1044
|
+
readonly type: "string";
|
|
1045
|
+
}, {
|
|
1046
|
+
readonly type: "null";
|
|
1047
|
+
}];
|
|
1048
|
+
};
|
|
1049
|
+
};
|
|
1050
|
+
readonly additionalProperties: false;
|
|
1051
|
+
};
|
|
1052
|
+
};
|
|
1053
|
+
};
|
|
1054
|
+
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior"];
|
|
1055
|
+
readonly additionalProperties: false;
|
|
1056
|
+
}, {
|
|
1057
|
+
readonly type: "object";
|
|
1058
|
+
readonly properties: {
|
|
1059
|
+
readonly behavior: {
|
|
1060
|
+
readonly type: "string";
|
|
1061
|
+
readonly const: "list";
|
|
1062
|
+
};
|
|
1063
|
+
readonly name: {
|
|
1064
|
+
readonly type: "string";
|
|
1065
|
+
};
|
|
1066
|
+
readonly version: {
|
|
1067
|
+
readonly type: "string";
|
|
1068
|
+
readonly const: "1.0";
|
|
1069
|
+
};
|
|
1070
|
+
readonly interfaces: {
|
|
1071
|
+
readonly type: "array";
|
|
1072
|
+
readonly items: {
|
|
1073
|
+
readonly type: "string";
|
|
1074
|
+
};
|
|
1075
|
+
};
|
|
1076
|
+
readonly schema: {
|
|
1077
|
+
readonly type: "object";
|
|
1078
|
+
readonly properties: {
|
|
1079
|
+
readonly $defs: {
|
|
1080
|
+
readonly type: "object";
|
|
1081
|
+
readonly additionalProperties: {
|
|
1082
|
+
readonly anyOf: readonly [{
|
|
1083
|
+
readonly anyOf: readonly [{
|
|
1084
|
+
readonly type: "object";
|
|
1085
|
+
readonly properties: {
|
|
1086
|
+
readonly type: {
|
|
1087
|
+
readonly type: "string";
|
|
1088
|
+
readonly const: "boolean";
|
|
1089
|
+
};
|
|
1090
|
+
readonly default: {
|
|
1091
|
+
readonly type: "boolean";
|
|
1092
|
+
};
|
|
1093
|
+
};
|
|
1094
|
+
readonly required: readonly ["type"];
|
|
1095
|
+
readonly additionalProperties: false;
|
|
1096
|
+
}, {
|
|
1097
|
+
readonly type: "object";
|
|
1098
|
+
readonly properties: {
|
|
1099
|
+
readonly type: {
|
|
1100
|
+
readonly type: "string";
|
|
1101
|
+
readonly const: "integer";
|
|
1102
|
+
};
|
|
1103
|
+
readonly default: {
|
|
1104
|
+
readonly type: "integer";
|
|
1105
|
+
};
|
|
1106
|
+
readonly min: {
|
|
1107
|
+
readonly type: "integer";
|
|
1108
|
+
};
|
|
1109
|
+
readonly max: {
|
|
1110
|
+
readonly type: "integer";
|
|
1111
|
+
};
|
|
1112
|
+
};
|
|
1113
|
+
readonly required: readonly ["type"];
|
|
1114
|
+
readonly additionalProperties: false;
|
|
1115
|
+
}, {
|
|
1116
|
+
readonly type: "object";
|
|
1117
|
+
readonly properties: {
|
|
1118
|
+
readonly type: {
|
|
1119
|
+
readonly type: "string";
|
|
1120
|
+
readonly const: "number";
|
|
1121
|
+
};
|
|
1122
|
+
readonly default: {
|
|
1123
|
+
readonly type: "number";
|
|
1124
|
+
};
|
|
1125
|
+
readonly min: {
|
|
1126
|
+
readonly type: "number";
|
|
1127
|
+
};
|
|
1128
|
+
readonly max: {
|
|
1129
|
+
readonly type: "number";
|
|
1130
|
+
};
|
|
1131
|
+
};
|
|
1132
|
+
readonly required: readonly ["type"];
|
|
1133
|
+
readonly additionalProperties: false;
|
|
1134
|
+
}, {
|
|
1135
|
+
readonly anyOf: readonly [{
|
|
1136
|
+
readonly type: "object";
|
|
1137
|
+
readonly properties: {
|
|
1138
|
+
readonly type: {
|
|
1139
|
+
readonly type: "string";
|
|
1140
|
+
readonly const: "string";
|
|
1141
|
+
};
|
|
1142
|
+
readonly title: {
|
|
1143
|
+
readonly type: "string";
|
|
1144
|
+
};
|
|
1145
|
+
readonly pattern: {
|
|
1146
|
+
readonly type: "string";
|
|
1147
|
+
};
|
|
1148
|
+
readonly default: {
|
|
1149
|
+
readonly type: "string";
|
|
1150
|
+
};
|
|
1151
|
+
readonly minLength: {
|
|
1152
|
+
readonly type: "integer";
|
|
1153
|
+
};
|
|
1154
|
+
readonly maxLength: {
|
|
1155
|
+
readonly type: "integer";
|
|
1156
|
+
};
|
|
1157
|
+
};
|
|
1158
|
+
readonly required: readonly ["type"];
|
|
1159
|
+
readonly additionalProperties: false;
|
|
1160
|
+
}, {
|
|
1161
|
+
readonly type: "object";
|
|
1162
|
+
readonly properties: {
|
|
1163
|
+
readonly type: {
|
|
1164
|
+
readonly type: "string";
|
|
1165
|
+
readonly const: "string";
|
|
1166
|
+
};
|
|
1167
|
+
readonly title: {
|
|
1168
|
+
readonly type: "string";
|
|
1169
|
+
};
|
|
1170
|
+
readonly enum: {
|
|
1171
|
+
readonly type: "array";
|
|
1172
|
+
readonly items: {
|
|
1173
|
+
readonly type: "string";
|
|
1174
|
+
};
|
|
1175
|
+
};
|
|
1176
|
+
readonly default: {
|
|
1177
|
+
readonly type: "string";
|
|
1178
|
+
};
|
|
1179
|
+
};
|
|
1180
|
+
readonly required: readonly ["type", "title", "enum"];
|
|
1181
|
+
readonly additionalProperties: false;
|
|
1182
|
+
}, {
|
|
1183
|
+
readonly type: "object";
|
|
1184
|
+
readonly properties: {
|
|
1185
|
+
readonly type: {
|
|
1186
|
+
readonly type: "string";
|
|
1187
|
+
readonly const: "string";
|
|
1188
|
+
};
|
|
1189
|
+
readonly format: {
|
|
1190
|
+
readonly type: "string";
|
|
1191
|
+
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
1192
|
+
};
|
|
1193
|
+
};
|
|
1194
|
+
readonly required: readonly ["type", "format"];
|
|
1195
|
+
readonly additionalProperties: false;
|
|
1196
|
+
}];
|
|
1197
|
+
}];
|
|
1198
|
+
}, {
|
|
1199
|
+
readonly anyOf: readonly [{
|
|
1200
|
+
readonly type: "object";
|
|
1201
|
+
readonly properties: {
|
|
1202
|
+
readonly type: {
|
|
1203
|
+
readonly type: "string";
|
|
1204
|
+
readonly const: "array";
|
|
1205
|
+
};
|
|
1206
|
+
readonly title: {
|
|
1207
|
+
readonly type: "string";
|
|
1208
|
+
};
|
|
1209
|
+
readonly items: {
|
|
1210
|
+
readonly type: "object";
|
|
1211
|
+
readonly properties: {
|
|
1212
|
+
readonly $ref: {
|
|
1213
|
+
readonly type: "string";
|
|
1214
|
+
};
|
|
1215
|
+
};
|
|
1216
|
+
readonly required: readonly ["$ref"];
|
|
1217
|
+
readonly additionalProperties: false;
|
|
1218
|
+
};
|
|
1219
|
+
};
|
|
1220
|
+
readonly required: readonly ["type", "title", "items"];
|
|
1221
|
+
readonly additionalProperties: false;
|
|
1222
|
+
}, {
|
|
1223
|
+
readonly type: "object";
|
|
1224
|
+
readonly properties: {
|
|
1225
|
+
readonly title: {
|
|
1226
|
+
readonly type: "string";
|
|
1227
|
+
};
|
|
1228
|
+
readonly type: {
|
|
1229
|
+
readonly type: "string";
|
|
1230
|
+
readonly const: "object";
|
|
1231
|
+
};
|
|
1232
|
+
readonly properties: {
|
|
1233
|
+
readonly type: "object";
|
|
1234
|
+
readonly additionalProperties: {
|
|
1235
|
+
readonly type: "object";
|
|
1236
|
+
readonly properties: {
|
|
1237
|
+
readonly $ref: {
|
|
1238
|
+
readonly type: "string";
|
|
1239
|
+
};
|
|
1240
|
+
};
|
|
1241
|
+
readonly required: readonly ["$ref"];
|
|
1242
|
+
readonly additionalProperties: false;
|
|
1243
|
+
};
|
|
1244
|
+
};
|
|
1245
|
+
readonly required: {
|
|
1246
|
+
readonly type: "array";
|
|
1247
|
+
readonly items: {
|
|
1248
|
+
readonly type: "string";
|
|
1249
|
+
};
|
|
1250
|
+
};
|
|
1251
|
+
readonly additionalProperties: {
|
|
1252
|
+
readonly type: "boolean";
|
|
1253
|
+
};
|
|
1254
|
+
};
|
|
1255
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "title"];
|
|
1256
|
+
readonly additionalProperties: false;
|
|
1257
|
+
}];
|
|
1258
|
+
}];
|
|
1259
|
+
};
|
|
1260
|
+
};
|
|
1261
|
+
readonly type: {
|
|
1262
|
+
readonly type: "string";
|
|
1263
|
+
readonly const: "object";
|
|
1264
|
+
};
|
|
1265
|
+
readonly properties: {
|
|
1266
|
+
readonly type: "object";
|
|
1267
|
+
readonly additionalProperties: {
|
|
1268
|
+
readonly type: "object";
|
|
1269
|
+
readonly properties: {
|
|
1270
|
+
readonly $ref: {
|
|
1271
|
+
readonly type: "string";
|
|
1272
|
+
};
|
|
1273
|
+
};
|
|
1274
|
+
readonly required: readonly ["$ref"];
|
|
1275
|
+
readonly additionalProperties: false;
|
|
1276
|
+
};
|
|
1277
|
+
};
|
|
1278
|
+
readonly required: {
|
|
1279
|
+
readonly type: "array";
|
|
1280
|
+
readonly items: {
|
|
1281
|
+
readonly type: "string";
|
|
1282
|
+
};
|
|
1283
|
+
};
|
|
1284
|
+
readonly additionalProperties: {
|
|
1285
|
+
readonly type: "boolean";
|
|
1286
|
+
};
|
|
1287
|
+
};
|
|
1288
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "$defs"];
|
|
1289
|
+
readonly additionalProperties: false;
|
|
1290
|
+
};
|
|
1291
|
+
readonly fieldsMeta: {
|
|
1292
|
+
readonly type: "object";
|
|
1293
|
+
readonly additionalProperties: {
|
|
1294
|
+
readonly type: "object";
|
|
1295
|
+
readonly properties: {
|
|
1296
|
+
readonly relationModel: {
|
|
1297
|
+
readonly anyOf: readonly [{
|
|
1298
|
+
readonly type: "string";
|
|
1299
|
+
}, {
|
|
1300
|
+
readonly type: "null";
|
|
1301
|
+
}];
|
|
1302
|
+
};
|
|
1303
|
+
};
|
|
1304
|
+
readonly additionalProperties: false;
|
|
1305
|
+
};
|
|
1306
|
+
};
|
|
1307
|
+
};
|
|
1308
|
+
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior"];
|
|
1309
|
+
readonly additionalProperties: false;
|
|
1310
|
+
}, {
|
|
1311
|
+
readonly type: "object";
|
|
1312
|
+
readonly properties: {
|
|
1313
|
+
readonly behavior: {
|
|
1314
|
+
readonly type: "string";
|
|
1315
|
+
readonly const: "set";
|
|
1316
|
+
};
|
|
1317
|
+
readonly setFields: {
|
|
1318
|
+
readonly type: "array";
|
|
1319
|
+
readonly items: {
|
|
1320
|
+
readonly type: "string";
|
|
1321
|
+
};
|
|
1322
|
+
};
|
|
1323
|
+
readonly name: {
|
|
1324
|
+
readonly type: "string";
|
|
1325
|
+
};
|
|
1326
|
+
readonly version: {
|
|
1327
|
+
readonly type: "string";
|
|
1328
|
+
readonly const: "1.0";
|
|
1329
|
+
};
|
|
1330
|
+
readonly interfaces: {
|
|
1331
|
+
readonly type: "array";
|
|
1332
|
+
readonly items: {
|
|
1333
|
+
readonly type: "string";
|
|
1334
|
+
};
|
|
1335
|
+
};
|
|
1336
|
+
readonly schema: {
|
|
1337
|
+
readonly type: "object";
|
|
1338
|
+
readonly properties: {
|
|
1339
|
+
readonly $defs: {
|
|
1340
|
+
readonly type: "object";
|
|
1341
|
+
readonly additionalProperties: {
|
|
1342
|
+
readonly anyOf: readonly [{
|
|
1343
|
+
readonly anyOf: readonly [{
|
|
1344
|
+
readonly type: "object";
|
|
1345
|
+
readonly properties: {
|
|
1346
|
+
readonly type: {
|
|
1347
|
+
readonly type: "string";
|
|
1348
|
+
readonly const: "boolean";
|
|
1349
|
+
};
|
|
1350
|
+
readonly default: {
|
|
1351
|
+
readonly type: "boolean";
|
|
1352
|
+
};
|
|
1353
|
+
};
|
|
1354
|
+
readonly required: readonly ["type"];
|
|
1355
|
+
readonly additionalProperties: false;
|
|
1356
|
+
}, {
|
|
1357
|
+
readonly type: "object";
|
|
1358
|
+
readonly properties: {
|
|
1359
|
+
readonly type: {
|
|
1360
|
+
readonly type: "string";
|
|
1361
|
+
readonly const: "integer";
|
|
1362
|
+
};
|
|
1363
|
+
readonly default: {
|
|
1364
|
+
readonly type: "integer";
|
|
1365
|
+
};
|
|
1366
|
+
readonly min: {
|
|
1367
|
+
readonly type: "integer";
|
|
1368
|
+
};
|
|
1369
|
+
readonly max: {
|
|
1370
|
+
readonly type: "integer";
|
|
1371
|
+
};
|
|
1372
|
+
};
|
|
1373
|
+
readonly required: readonly ["type"];
|
|
1374
|
+
readonly additionalProperties: false;
|
|
1375
|
+
}, {
|
|
1376
|
+
readonly type: "object";
|
|
1377
|
+
readonly properties: {
|
|
1378
|
+
readonly type: {
|
|
1379
|
+
readonly type: "string";
|
|
1380
|
+
readonly const: "number";
|
|
1381
|
+
};
|
|
1382
|
+
readonly default: {
|
|
1383
|
+
readonly type: "number";
|
|
1384
|
+
};
|
|
1385
|
+
readonly min: {
|
|
1386
|
+
readonly type: "number";
|
|
1387
|
+
};
|
|
1388
|
+
readonly max: {
|
|
1389
|
+
readonly type: "number";
|
|
1390
|
+
};
|
|
1391
|
+
};
|
|
1392
|
+
readonly required: readonly ["type"];
|
|
1393
|
+
readonly additionalProperties: false;
|
|
1394
|
+
}, {
|
|
1395
|
+
readonly anyOf: readonly [{
|
|
1396
|
+
readonly type: "object";
|
|
1397
|
+
readonly properties: {
|
|
1398
|
+
readonly type: {
|
|
1399
|
+
readonly type: "string";
|
|
1400
|
+
readonly const: "string";
|
|
1401
|
+
};
|
|
1402
|
+
readonly title: {
|
|
1403
|
+
readonly type: "string";
|
|
1404
|
+
};
|
|
1405
|
+
readonly pattern: {
|
|
1406
|
+
readonly type: "string";
|
|
1407
|
+
};
|
|
1408
|
+
readonly default: {
|
|
1409
|
+
readonly type: "string";
|
|
1410
|
+
};
|
|
1411
|
+
readonly minLength: {
|
|
1412
|
+
readonly type: "integer";
|
|
1413
|
+
};
|
|
1414
|
+
readonly maxLength: {
|
|
1415
|
+
readonly type: "integer";
|
|
1416
|
+
};
|
|
1417
|
+
};
|
|
1418
|
+
readonly required: readonly ["type"];
|
|
1419
|
+
readonly additionalProperties: false;
|
|
1420
|
+
}, {
|
|
1421
|
+
readonly type: "object";
|
|
1422
|
+
readonly properties: {
|
|
1423
|
+
readonly type: {
|
|
1424
|
+
readonly type: "string";
|
|
1425
|
+
readonly const: "string";
|
|
1426
|
+
};
|
|
1427
|
+
readonly title: {
|
|
1428
|
+
readonly type: "string";
|
|
1429
|
+
};
|
|
1430
|
+
readonly enum: {
|
|
1431
|
+
readonly type: "array";
|
|
1432
|
+
readonly items: {
|
|
1433
|
+
readonly type: "string";
|
|
1434
|
+
};
|
|
1435
|
+
};
|
|
1436
|
+
readonly default: {
|
|
1437
|
+
readonly type: "string";
|
|
1438
|
+
};
|
|
1439
|
+
};
|
|
1440
|
+
readonly required: readonly ["type", "title", "enum"];
|
|
1441
|
+
readonly additionalProperties: false;
|
|
1442
|
+
}, {
|
|
1443
|
+
readonly type: "object";
|
|
1444
|
+
readonly properties: {
|
|
1445
|
+
readonly type: {
|
|
1446
|
+
readonly type: "string";
|
|
1447
|
+
readonly const: "string";
|
|
1448
|
+
};
|
|
1449
|
+
readonly format: {
|
|
1450
|
+
readonly type: "string";
|
|
1451
|
+
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
1452
|
+
};
|
|
1453
|
+
};
|
|
1454
|
+
readonly required: readonly ["type", "format"];
|
|
1455
|
+
readonly additionalProperties: false;
|
|
1456
|
+
}];
|
|
1457
|
+
}];
|
|
1458
|
+
}, {
|
|
1459
|
+
readonly anyOf: readonly [{
|
|
1460
|
+
readonly type: "object";
|
|
1461
|
+
readonly properties: {
|
|
1462
|
+
readonly type: {
|
|
1463
|
+
readonly type: "string";
|
|
1464
|
+
readonly const: "array";
|
|
1465
|
+
};
|
|
1466
|
+
readonly title: {
|
|
1467
|
+
readonly type: "string";
|
|
1468
|
+
};
|
|
1469
|
+
readonly items: {
|
|
1470
|
+
readonly type: "object";
|
|
1471
|
+
readonly properties: {
|
|
1472
|
+
readonly $ref: {
|
|
1473
|
+
readonly type: "string";
|
|
1474
|
+
};
|
|
1475
|
+
};
|
|
1476
|
+
readonly required: readonly ["$ref"];
|
|
1477
|
+
readonly additionalProperties: false;
|
|
1478
|
+
};
|
|
1479
|
+
};
|
|
1480
|
+
readonly required: readonly ["type", "title", "items"];
|
|
1481
|
+
readonly additionalProperties: false;
|
|
1482
|
+
}, {
|
|
1483
|
+
readonly type: "object";
|
|
1484
|
+
readonly properties: {
|
|
1485
|
+
readonly title: {
|
|
1486
|
+
readonly type: "string";
|
|
1487
|
+
};
|
|
1488
|
+
readonly type: {
|
|
1489
|
+
readonly type: "string";
|
|
1490
|
+
readonly const: "object";
|
|
1491
|
+
};
|
|
1492
|
+
readonly properties: {
|
|
1493
|
+
readonly type: "object";
|
|
1494
|
+
readonly additionalProperties: {
|
|
1495
|
+
readonly type: "object";
|
|
1496
|
+
readonly properties: {
|
|
1497
|
+
readonly $ref: {
|
|
1498
|
+
readonly type: "string";
|
|
1499
|
+
};
|
|
1500
|
+
};
|
|
1501
|
+
readonly required: readonly ["$ref"];
|
|
1502
|
+
readonly additionalProperties: false;
|
|
1503
|
+
};
|
|
1504
|
+
};
|
|
1505
|
+
readonly required: {
|
|
1506
|
+
readonly type: "array";
|
|
1507
|
+
readonly items: {
|
|
1508
|
+
readonly type: "string";
|
|
1509
|
+
};
|
|
1510
|
+
};
|
|
1511
|
+
readonly additionalProperties: {
|
|
1512
|
+
readonly type: "boolean";
|
|
1513
|
+
};
|
|
1514
|
+
};
|
|
1515
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "title"];
|
|
1516
|
+
readonly additionalProperties: false;
|
|
1517
|
+
}];
|
|
1518
|
+
}];
|
|
1519
|
+
};
|
|
1520
|
+
};
|
|
1521
|
+
readonly type: {
|
|
1522
|
+
readonly type: "string";
|
|
1523
|
+
readonly const: "object";
|
|
1524
|
+
};
|
|
1525
|
+
readonly properties: {
|
|
1526
|
+
readonly type: "object";
|
|
1527
|
+
readonly additionalProperties: {
|
|
1528
|
+
readonly type: "object";
|
|
1529
|
+
readonly properties: {
|
|
1530
|
+
readonly $ref: {
|
|
1531
|
+
readonly type: "string";
|
|
1532
|
+
};
|
|
1533
|
+
};
|
|
1534
|
+
readonly required: readonly ["$ref"];
|
|
1535
|
+
readonly additionalProperties: false;
|
|
1536
|
+
};
|
|
1537
|
+
};
|
|
1538
|
+
readonly required: {
|
|
1539
|
+
readonly type: "array";
|
|
1540
|
+
readonly items: {
|
|
1541
|
+
readonly type: "string";
|
|
1542
|
+
};
|
|
1543
|
+
};
|
|
1544
|
+
readonly additionalProperties: {
|
|
1545
|
+
readonly type: "boolean";
|
|
1546
|
+
};
|
|
1547
|
+
};
|
|
1548
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "$defs"];
|
|
1549
|
+
readonly additionalProperties: false;
|
|
1550
|
+
};
|
|
1551
|
+
readonly fieldsMeta: {
|
|
1552
|
+
readonly type: "object";
|
|
1553
|
+
readonly additionalProperties: {
|
|
1554
|
+
readonly type: "object";
|
|
1555
|
+
readonly properties: {
|
|
1556
|
+
readonly relationModel: {
|
|
1557
|
+
readonly anyOf: readonly [{
|
|
1558
|
+
readonly type: "string";
|
|
1559
|
+
}, {
|
|
1560
|
+
readonly type: "null";
|
|
1561
|
+
}];
|
|
1562
|
+
};
|
|
1563
|
+
};
|
|
1564
|
+
readonly additionalProperties: false;
|
|
1565
|
+
};
|
|
1566
|
+
};
|
|
1567
|
+
};
|
|
1568
|
+
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior", "setFields"];
|
|
1569
|
+
readonly additionalProperties: false;
|
|
1570
|
+
}];
|
|
1571
|
+
};
|
|
1572
|
+
};
|
|
1573
|
+
};
|
|
1574
|
+
readonly required: readonly ["id", "models"];
|
|
1575
|
+
readonly additionalProperties: false;
|
|
1576
|
+
};
|
|
1577
|
+
export type CreateGraphResult = FromSchema<typeof createGraphResult>;
|
|
1578
|
+
export type CreateGraphRequest = RequestDefinition<CreateGraphParams, CreateGraphResult>;
|
|
1579
|
+
export declare const loadGraphParams: {
|
|
1580
|
+
readonly type: "object";
|
|
1581
|
+
readonly properties: {
|
|
1582
|
+
readonly id: {
|
|
1583
|
+
readonly type: "string";
|
|
1584
|
+
};
|
|
1585
|
+
};
|
|
1586
|
+
readonly required: readonly ["id"];
|
|
1587
|
+
readonly additionalProperties: false;
|
|
1588
|
+
};
|
|
1589
|
+
export type LoadGraphParams = FromSchema<typeof loadGraphParams>;
|
|
1590
|
+
export declare const loadGraphResult: {
|
|
1591
|
+
readonly type: "object";
|
|
1592
|
+
readonly properties: {
|
|
1593
|
+
readonly models: {
|
|
1594
|
+
readonly type: "object";
|
|
1595
|
+
readonly additionalProperties: {
|
|
1596
|
+
readonly $id: "urn:kubun:protocol:model:document";
|
|
1597
|
+
readonly anyOf: readonly [{
|
|
1598
|
+
readonly type: "object";
|
|
1599
|
+
readonly properties: {
|
|
1600
|
+
readonly behavior: {
|
|
1601
|
+
readonly type: "string";
|
|
1602
|
+
readonly const: "interface";
|
|
1603
|
+
};
|
|
1604
|
+
readonly name: {
|
|
1605
|
+
readonly type: "string";
|
|
1606
|
+
};
|
|
1607
|
+
readonly version: {
|
|
1608
|
+
readonly type: "string";
|
|
1609
|
+
readonly const: "1.0";
|
|
1610
|
+
};
|
|
1611
|
+
readonly interfaces: {
|
|
1612
|
+
readonly type: "array";
|
|
1613
|
+
readonly items: {
|
|
1614
|
+
readonly type: "string";
|
|
1615
|
+
};
|
|
1616
|
+
};
|
|
1617
|
+
readonly schema: {
|
|
1618
|
+
readonly type: "object";
|
|
1619
|
+
readonly properties: {
|
|
1620
|
+
readonly $defs: {
|
|
1621
|
+
readonly type: "object";
|
|
1622
|
+
readonly additionalProperties: {
|
|
1623
|
+
readonly anyOf: readonly [{
|
|
1624
|
+
readonly anyOf: readonly [{
|
|
1625
|
+
readonly type: "object";
|
|
1626
|
+
readonly properties: {
|
|
1627
|
+
readonly type: {
|
|
1628
|
+
readonly type: "string";
|
|
1629
|
+
readonly const: "boolean";
|
|
1630
|
+
};
|
|
1631
|
+
readonly default: {
|
|
1632
|
+
readonly type: "boolean";
|
|
1633
|
+
};
|
|
1634
|
+
};
|
|
1635
|
+
readonly required: readonly ["type"];
|
|
1636
|
+
readonly additionalProperties: false;
|
|
1637
|
+
}, {
|
|
1638
|
+
readonly type: "object";
|
|
1639
|
+
readonly properties: {
|
|
1640
|
+
readonly type: {
|
|
1641
|
+
readonly type: "string";
|
|
1642
|
+
readonly const: "integer";
|
|
1643
|
+
};
|
|
1644
|
+
readonly default: {
|
|
1645
|
+
readonly type: "integer";
|
|
1646
|
+
};
|
|
1647
|
+
readonly min: {
|
|
1648
|
+
readonly type: "integer";
|
|
1649
|
+
};
|
|
1650
|
+
readonly max: {
|
|
1651
|
+
readonly type: "integer";
|
|
1652
|
+
};
|
|
1653
|
+
};
|
|
1654
|
+
readonly required: readonly ["type"];
|
|
1655
|
+
readonly additionalProperties: false;
|
|
1656
|
+
}, {
|
|
1657
|
+
readonly type: "object";
|
|
1658
|
+
readonly properties: {
|
|
1659
|
+
readonly type: {
|
|
1660
|
+
readonly type: "string";
|
|
1661
|
+
readonly const: "number";
|
|
1662
|
+
};
|
|
1663
|
+
readonly default: {
|
|
1664
|
+
readonly type: "number";
|
|
1665
|
+
};
|
|
1666
|
+
readonly min: {
|
|
1667
|
+
readonly type: "number";
|
|
1668
|
+
};
|
|
1669
|
+
readonly max: {
|
|
1670
|
+
readonly type: "number";
|
|
1671
|
+
};
|
|
1672
|
+
};
|
|
1673
|
+
readonly required: readonly ["type"];
|
|
1674
|
+
readonly additionalProperties: false;
|
|
1675
|
+
}, {
|
|
1676
|
+
readonly anyOf: readonly [{
|
|
1677
|
+
readonly type: "object";
|
|
1678
|
+
readonly properties: {
|
|
1679
|
+
readonly type: {
|
|
1680
|
+
readonly type: "string";
|
|
1681
|
+
readonly const: "string";
|
|
1682
|
+
};
|
|
1683
|
+
readonly title: {
|
|
1684
|
+
readonly type: "string";
|
|
1685
|
+
};
|
|
1686
|
+
readonly pattern: {
|
|
1687
|
+
readonly type: "string";
|
|
1688
|
+
};
|
|
1689
|
+
readonly default: {
|
|
1690
|
+
readonly type: "string";
|
|
1691
|
+
};
|
|
1692
|
+
readonly minLength: {
|
|
1693
|
+
readonly type: "integer";
|
|
1694
|
+
};
|
|
1695
|
+
readonly maxLength: {
|
|
1696
|
+
readonly type: "integer";
|
|
1697
|
+
};
|
|
1698
|
+
};
|
|
1699
|
+
readonly required: readonly ["type"];
|
|
1700
|
+
readonly additionalProperties: false;
|
|
1701
|
+
}, {
|
|
1702
|
+
readonly type: "object";
|
|
1703
|
+
readonly properties: {
|
|
1704
|
+
readonly type: {
|
|
1705
|
+
readonly type: "string";
|
|
1706
|
+
readonly const: "string";
|
|
1707
|
+
};
|
|
1708
|
+
readonly title: {
|
|
1709
|
+
readonly type: "string";
|
|
1710
|
+
};
|
|
1711
|
+
readonly enum: {
|
|
1712
|
+
readonly type: "array";
|
|
1713
|
+
readonly items: {
|
|
1714
|
+
readonly type: "string";
|
|
1715
|
+
};
|
|
1716
|
+
};
|
|
1717
|
+
readonly default: {
|
|
1718
|
+
readonly type: "string";
|
|
1719
|
+
};
|
|
1720
|
+
};
|
|
1721
|
+
readonly required: readonly ["type", "title", "enum"];
|
|
1722
|
+
readonly additionalProperties: false;
|
|
1723
|
+
}, {
|
|
1724
|
+
readonly type: "object";
|
|
1725
|
+
readonly properties: {
|
|
1726
|
+
readonly type: {
|
|
1727
|
+
readonly type: "string";
|
|
1728
|
+
readonly const: "string";
|
|
1729
|
+
};
|
|
1730
|
+
readonly format: {
|
|
1731
|
+
readonly type: "string";
|
|
1732
|
+
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
1733
|
+
};
|
|
1734
|
+
};
|
|
1735
|
+
readonly required: readonly ["type", "format"];
|
|
1736
|
+
readonly additionalProperties: false;
|
|
1737
|
+
}];
|
|
1738
|
+
}];
|
|
1739
|
+
}, {
|
|
1740
|
+
readonly anyOf: readonly [{
|
|
1741
|
+
readonly type: "object";
|
|
1742
|
+
readonly properties: {
|
|
1743
|
+
readonly type: {
|
|
1744
|
+
readonly type: "string";
|
|
1745
|
+
readonly const: "array";
|
|
1746
|
+
};
|
|
1747
|
+
readonly title: {
|
|
1748
|
+
readonly type: "string";
|
|
1749
|
+
};
|
|
1750
|
+
readonly items: {
|
|
1751
|
+
readonly type: "object";
|
|
1752
|
+
readonly properties: {
|
|
1753
|
+
readonly $ref: {
|
|
1754
|
+
readonly type: "string";
|
|
1755
|
+
};
|
|
1756
|
+
};
|
|
1757
|
+
readonly required: readonly ["$ref"];
|
|
1758
|
+
readonly additionalProperties: false;
|
|
1759
|
+
};
|
|
1760
|
+
};
|
|
1761
|
+
readonly required: readonly ["type", "title", "items"];
|
|
1762
|
+
readonly additionalProperties: false;
|
|
1763
|
+
}, {
|
|
1764
|
+
readonly type: "object";
|
|
1765
|
+
readonly properties: {
|
|
1766
|
+
readonly title: {
|
|
1767
|
+
readonly type: "string";
|
|
1768
|
+
};
|
|
1769
|
+
readonly type: {
|
|
1770
|
+
readonly type: "string";
|
|
1771
|
+
readonly const: "object";
|
|
1772
|
+
};
|
|
1773
|
+
readonly properties: {
|
|
1774
|
+
readonly type: "object";
|
|
1775
|
+
readonly additionalProperties: {
|
|
1776
|
+
readonly type: "object";
|
|
1777
|
+
readonly properties: {
|
|
1778
|
+
readonly $ref: {
|
|
1779
|
+
readonly type: "string";
|
|
1780
|
+
};
|
|
1781
|
+
};
|
|
1782
|
+
readonly required: readonly ["$ref"];
|
|
1783
|
+
readonly additionalProperties: false;
|
|
1784
|
+
};
|
|
1785
|
+
};
|
|
1786
|
+
readonly required: {
|
|
1787
|
+
readonly type: "array";
|
|
1788
|
+
readonly items: {
|
|
1789
|
+
readonly type: "string";
|
|
1790
|
+
};
|
|
1791
|
+
};
|
|
1792
|
+
readonly additionalProperties: {
|
|
1793
|
+
readonly type: "boolean";
|
|
1794
|
+
};
|
|
1795
|
+
};
|
|
1796
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "title"];
|
|
1797
|
+
readonly additionalProperties: false;
|
|
1798
|
+
}];
|
|
1799
|
+
}];
|
|
1800
|
+
};
|
|
1801
|
+
};
|
|
1802
|
+
readonly type: {
|
|
1803
|
+
readonly type: "string";
|
|
1804
|
+
readonly const: "object";
|
|
1805
|
+
};
|
|
1806
|
+
readonly properties: {
|
|
1807
|
+
readonly type: "object";
|
|
1808
|
+
readonly additionalProperties: {
|
|
1809
|
+
readonly type: "object";
|
|
1810
|
+
readonly properties: {
|
|
1811
|
+
readonly $ref: {
|
|
1812
|
+
readonly type: "string";
|
|
1813
|
+
};
|
|
1814
|
+
};
|
|
1815
|
+
readonly required: readonly ["$ref"];
|
|
1816
|
+
readonly additionalProperties: false;
|
|
1817
|
+
};
|
|
1818
|
+
};
|
|
1819
|
+
readonly required: {
|
|
1820
|
+
readonly type: "array";
|
|
1821
|
+
readonly items: {
|
|
1822
|
+
readonly type: "string";
|
|
1823
|
+
};
|
|
1824
|
+
};
|
|
1825
|
+
readonly additionalProperties: {
|
|
1826
|
+
readonly type: "boolean";
|
|
1827
|
+
};
|
|
1828
|
+
};
|
|
1829
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "$defs"];
|
|
1830
|
+
readonly additionalProperties: false;
|
|
1831
|
+
};
|
|
1832
|
+
readonly fieldsMeta: {
|
|
1833
|
+
readonly type: "object";
|
|
1834
|
+
readonly additionalProperties: {
|
|
1835
|
+
readonly type: "object";
|
|
1836
|
+
readonly properties: {
|
|
1837
|
+
readonly relationModel: {
|
|
1838
|
+
readonly anyOf: readonly [{
|
|
1839
|
+
readonly type: "string";
|
|
1840
|
+
}, {
|
|
1841
|
+
readonly type: "null";
|
|
1842
|
+
}];
|
|
1843
|
+
};
|
|
1844
|
+
};
|
|
1845
|
+
readonly additionalProperties: false;
|
|
1846
|
+
};
|
|
1847
|
+
};
|
|
1848
|
+
};
|
|
1849
|
+
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior"];
|
|
1850
|
+
readonly additionalProperties: false;
|
|
1851
|
+
}, {
|
|
1852
|
+
readonly type: "object";
|
|
1853
|
+
readonly properties: {
|
|
1854
|
+
readonly behavior: {
|
|
1855
|
+
readonly type: "string";
|
|
1856
|
+
readonly const: "list";
|
|
1857
|
+
};
|
|
1858
|
+
readonly name: {
|
|
1859
|
+
readonly type: "string";
|
|
1860
|
+
};
|
|
1861
|
+
readonly version: {
|
|
1862
|
+
readonly type: "string";
|
|
1863
|
+
readonly const: "1.0";
|
|
1864
|
+
};
|
|
1865
|
+
readonly interfaces: {
|
|
1866
|
+
readonly type: "array";
|
|
1867
|
+
readonly items: {
|
|
1868
|
+
readonly type: "string";
|
|
1869
|
+
};
|
|
1870
|
+
};
|
|
1871
|
+
readonly schema: {
|
|
1872
|
+
readonly type: "object";
|
|
1873
|
+
readonly properties: {
|
|
1874
|
+
readonly $defs: {
|
|
1875
|
+
readonly type: "object";
|
|
1876
|
+
readonly additionalProperties: {
|
|
1877
|
+
readonly anyOf: readonly [{
|
|
1878
|
+
readonly anyOf: readonly [{
|
|
1879
|
+
readonly type: "object";
|
|
1880
|
+
readonly properties: {
|
|
1881
|
+
readonly type: {
|
|
1882
|
+
readonly type: "string";
|
|
1883
|
+
readonly const: "boolean";
|
|
1884
|
+
};
|
|
1885
|
+
readonly default: {
|
|
1886
|
+
readonly type: "boolean";
|
|
1887
|
+
};
|
|
1888
|
+
};
|
|
1889
|
+
readonly required: readonly ["type"];
|
|
1890
|
+
readonly additionalProperties: false;
|
|
1891
|
+
}, {
|
|
1892
|
+
readonly type: "object";
|
|
1893
|
+
readonly properties: {
|
|
1894
|
+
readonly type: {
|
|
1895
|
+
readonly type: "string";
|
|
1896
|
+
readonly const: "integer";
|
|
1897
|
+
};
|
|
1898
|
+
readonly default: {
|
|
1899
|
+
readonly type: "integer";
|
|
1900
|
+
};
|
|
1901
|
+
readonly min: {
|
|
1902
|
+
readonly type: "integer";
|
|
1903
|
+
};
|
|
1904
|
+
readonly max: {
|
|
1905
|
+
readonly type: "integer";
|
|
1906
|
+
};
|
|
1907
|
+
};
|
|
1908
|
+
readonly required: readonly ["type"];
|
|
1909
|
+
readonly additionalProperties: false;
|
|
1910
|
+
}, {
|
|
1911
|
+
readonly type: "object";
|
|
1912
|
+
readonly properties: {
|
|
1913
|
+
readonly type: {
|
|
1914
|
+
readonly type: "string";
|
|
1915
|
+
readonly const: "number";
|
|
1916
|
+
};
|
|
1917
|
+
readonly default: {
|
|
1918
|
+
readonly type: "number";
|
|
1919
|
+
};
|
|
1920
|
+
readonly min: {
|
|
1921
|
+
readonly type: "number";
|
|
1922
|
+
};
|
|
1923
|
+
readonly max: {
|
|
1924
|
+
readonly type: "number";
|
|
1925
|
+
};
|
|
1926
|
+
};
|
|
1927
|
+
readonly required: readonly ["type"];
|
|
1928
|
+
readonly additionalProperties: false;
|
|
1929
|
+
}, {
|
|
1930
|
+
readonly anyOf: readonly [{
|
|
1931
|
+
readonly type: "object";
|
|
1932
|
+
readonly properties: {
|
|
1933
|
+
readonly type: {
|
|
1934
|
+
readonly type: "string";
|
|
1935
|
+
readonly const: "string";
|
|
1936
|
+
};
|
|
1937
|
+
readonly title: {
|
|
1938
|
+
readonly type: "string";
|
|
1939
|
+
};
|
|
1940
|
+
readonly pattern: {
|
|
1941
|
+
readonly type: "string";
|
|
1942
|
+
};
|
|
1943
|
+
readonly default: {
|
|
1944
|
+
readonly type: "string";
|
|
1945
|
+
};
|
|
1946
|
+
readonly minLength: {
|
|
1947
|
+
readonly type: "integer";
|
|
1948
|
+
};
|
|
1949
|
+
readonly maxLength: {
|
|
1950
|
+
readonly type: "integer";
|
|
1951
|
+
};
|
|
1952
|
+
};
|
|
1953
|
+
readonly required: readonly ["type"];
|
|
1954
|
+
readonly additionalProperties: false;
|
|
1955
|
+
}, {
|
|
1956
|
+
readonly type: "object";
|
|
1957
|
+
readonly properties: {
|
|
1958
|
+
readonly type: {
|
|
1959
|
+
readonly type: "string";
|
|
1960
|
+
readonly const: "string";
|
|
1961
|
+
};
|
|
1962
|
+
readonly title: {
|
|
1963
|
+
readonly type: "string";
|
|
1964
|
+
};
|
|
1965
|
+
readonly enum: {
|
|
1966
|
+
readonly type: "array";
|
|
1967
|
+
readonly items: {
|
|
1968
|
+
readonly type: "string";
|
|
1969
|
+
};
|
|
1970
|
+
};
|
|
1971
|
+
readonly default: {
|
|
1972
|
+
readonly type: "string";
|
|
1973
|
+
};
|
|
1974
|
+
};
|
|
1975
|
+
readonly required: readonly ["type", "title", "enum"];
|
|
1976
|
+
readonly additionalProperties: false;
|
|
1977
|
+
}, {
|
|
1978
|
+
readonly type: "object";
|
|
1979
|
+
readonly properties: {
|
|
1980
|
+
readonly type: {
|
|
1981
|
+
readonly type: "string";
|
|
1982
|
+
readonly const: "string";
|
|
1983
|
+
};
|
|
1984
|
+
readonly format: {
|
|
1985
|
+
readonly type: "string";
|
|
1986
|
+
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
1987
|
+
};
|
|
1988
|
+
};
|
|
1989
|
+
readonly required: readonly ["type", "format"];
|
|
1990
|
+
readonly additionalProperties: false;
|
|
1991
|
+
}];
|
|
1992
|
+
}];
|
|
1993
|
+
}, {
|
|
1994
|
+
readonly anyOf: readonly [{
|
|
1995
|
+
readonly type: "object";
|
|
1996
|
+
readonly properties: {
|
|
1997
|
+
readonly type: {
|
|
1998
|
+
readonly type: "string";
|
|
1999
|
+
readonly const: "array";
|
|
2000
|
+
};
|
|
2001
|
+
readonly title: {
|
|
2002
|
+
readonly type: "string";
|
|
2003
|
+
};
|
|
2004
|
+
readonly items: {
|
|
2005
|
+
readonly type: "object";
|
|
2006
|
+
readonly properties: {
|
|
2007
|
+
readonly $ref: {
|
|
2008
|
+
readonly type: "string";
|
|
2009
|
+
};
|
|
2010
|
+
};
|
|
2011
|
+
readonly required: readonly ["$ref"];
|
|
2012
|
+
readonly additionalProperties: false;
|
|
2013
|
+
};
|
|
2014
|
+
};
|
|
2015
|
+
readonly required: readonly ["type", "title", "items"];
|
|
2016
|
+
readonly additionalProperties: false;
|
|
2017
|
+
}, {
|
|
2018
|
+
readonly type: "object";
|
|
2019
|
+
readonly properties: {
|
|
2020
|
+
readonly title: {
|
|
2021
|
+
readonly type: "string";
|
|
2022
|
+
};
|
|
2023
|
+
readonly type: {
|
|
2024
|
+
readonly type: "string";
|
|
2025
|
+
readonly const: "object";
|
|
2026
|
+
};
|
|
2027
|
+
readonly properties: {
|
|
2028
|
+
readonly type: "object";
|
|
2029
|
+
readonly additionalProperties: {
|
|
2030
|
+
readonly type: "object";
|
|
2031
|
+
readonly properties: {
|
|
2032
|
+
readonly $ref: {
|
|
2033
|
+
readonly type: "string";
|
|
2034
|
+
};
|
|
2035
|
+
};
|
|
2036
|
+
readonly required: readonly ["$ref"];
|
|
2037
|
+
readonly additionalProperties: false;
|
|
2038
|
+
};
|
|
2039
|
+
};
|
|
2040
|
+
readonly required: {
|
|
2041
|
+
readonly type: "array";
|
|
2042
|
+
readonly items: {
|
|
2043
|
+
readonly type: "string";
|
|
2044
|
+
};
|
|
2045
|
+
};
|
|
2046
|
+
readonly additionalProperties: {
|
|
2047
|
+
readonly type: "boolean";
|
|
2048
|
+
};
|
|
2049
|
+
};
|
|
2050
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "title"];
|
|
2051
|
+
readonly additionalProperties: false;
|
|
2052
|
+
}];
|
|
2053
|
+
}];
|
|
2054
|
+
};
|
|
2055
|
+
};
|
|
2056
|
+
readonly type: {
|
|
2057
|
+
readonly type: "string";
|
|
2058
|
+
readonly const: "object";
|
|
2059
|
+
};
|
|
2060
|
+
readonly properties: {
|
|
2061
|
+
readonly type: "object";
|
|
2062
|
+
readonly additionalProperties: {
|
|
2063
|
+
readonly type: "object";
|
|
2064
|
+
readonly properties: {
|
|
2065
|
+
readonly $ref: {
|
|
2066
|
+
readonly type: "string";
|
|
2067
|
+
};
|
|
2068
|
+
};
|
|
2069
|
+
readonly required: readonly ["$ref"];
|
|
2070
|
+
readonly additionalProperties: false;
|
|
2071
|
+
};
|
|
2072
|
+
};
|
|
2073
|
+
readonly required: {
|
|
2074
|
+
readonly type: "array";
|
|
2075
|
+
readonly items: {
|
|
2076
|
+
readonly type: "string";
|
|
2077
|
+
};
|
|
2078
|
+
};
|
|
2079
|
+
readonly additionalProperties: {
|
|
2080
|
+
readonly type: "boolean";
|
|
2081
|
+
};
|
|
2082
|
+
};
|
|
2083
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "$defs"];
|
|
2084
|
+
readonly additionalProperties: false;
|
|
2085
|
+
};
|
|
2086
|
+
readonly fieldsMeta: {
|
|
2087
|
+
readonly type: "object";
|
|
2088
|
+
readonly additionalProperties: {
|
|
2089
|
+
readonly type: "object";
|
|
2090
|
+
readonly properties: {
|
|
2091
|
+
readonly relationModel: {
|
|
2092
|
+
readonly anyOf: readonly [{
|
|
2093
|
+
readonly type: "string";
|
|
2094
|
+
}, {
|
|
2095
|
+
readonly type: "null";
|
|
2096
|
+
}];
|
|
2097
|
+
};
|
|
2098
|
+
};
|
|
2099
|
+
readonly additionalProperties: false;
|
|
2100
|
+
};
|
|
2101
|
+
};
|
|
2102
|
+
};
|
|
2103
|
+
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior"];
|
|
2104
|
+
readonly additionalProperties: false;
|
|
2105
|
+
}, {
|
|
2106
|
+
readonly type: "object";
|
|
2107
|
+
readonly properties: {
|
|
2108
|
+
readonly behavior: {
|
|
2109
|
+
readonly type: "string";
|
|
2110
|
+
readonly const: "set";
|
|
2111
|
+
};
|
|
2112
|
+
readonly setFields: {
|
|
2113
|
+
readonly type: "array";
|
|
2114
|
+
readonly items: {
|
|
2115
|
+
readonly type: "string";
|
|
2116
|
+
};
|
|
2117
|
+
};
|
|
2118
|
+
readonly name: {
|
|
2119
|
+
readonly type: "string";
|
|
2120
|
+
};
|
|
2121
|
+
readonly version: {
|
|
2122
|
+
readonly type: "string";
|
|
2123
|
+
readonly const: "1.0";
|
|
2124
|
+
};
|
|
2125
|
+
readonly interfaces: {
|
|
2126
|
+
readonly type: "array";
|
|
2127
|
+
readonly items: {
|
|
2128
|
+
readonly type: "string";
|
|
2129
|
+
};
|
|
2130
|
+
};
|
|
2131
|
+
readonly schema: {
|
|
2132
|
+
readonly type: "object";
|
|
2133
|
+
readonly properties: {
|
|
2134
|
+
readonly $defs: {
|
|
2135
|
+
readonly type: "object";
|
|
2136
|
+
readonly additionalProperties: {
|
|
2137
|
+
readonly anyOf: readonly [{
|
|
2138
|
+
readonly anyOf: readonly [{
|
|
2139
|
+
readonly type: "object";
|
|
2140
|
+
readonly properties: {
|
|
2141
|
+
readonly type: {
|
|
2142
|
+
readonly type: "string";
|
|
2143
|
+
readonly const: "boolean";
|
|
2144
|
+
};
|
|
2145
|
+
readonly default: {
|
|
2146
|
+
readonly type: "boolean";
|
|
2147
|
+
};
|
|
2148
|
+
};
|
|
2149
|
+
readonly required: readonly ["type"];
|
|
2150
|
+
readonly additionalProperties: false;
|
|
2151
|
+
}, {
|
|
2152
|
+
readonly type: "object";
|
|
2153
|
+
readonly properties: {
|
|
2154
|
+
readonly type: {
|
|
2155
|
+
readonly type: "string";
|
|
2156
|
+
readonly const: "integer";
|
|
2157
|
+
};
|
|
2158
|
+
readonly default: {
|
|
2159
|
+
readonly type: "integer";
|
|
2160
|
+
};
|
|
2161
|
+
readonly min: {
|
|
2162
|
+
readonly type: "integer";
|
|
2163
|
+
};
|
|
2164
|
+
readonly max: {
|
|
2165
|
+
readonly type: "integer";
|
|
2166
|
+
};
|
|
2167
|
+
};
|
|
2168
|
+
readonly required: readonly ["type"];
|
|
2169
|
+
readonly additionalProperties: false;
|
|
2170
|
+
}, {
|
|
2171
|
+
readonly type: "object";
|
|
2172
|
+
readonly properties: {
|
|
2173
|
+
readonly type: {
|
|
2174
|
+
readonly type: "string";
|
|
2175
|
+
readonly const: "number";
|
|
2176
|
+
};
|
|
2177
|
+
readonly default: {
|
|
2178
|
+
readonly type: "number";
|
|
2179
|
+
};
|
|
2180
|
+
readonly min: {
|
|
2181
|
+
readonly type: "number";
|
|
2182
|
+
};
|
|
2183
|
+
readonly max: {
|
|
2184
|
+
readonly type: "number";
|
|
2185
|
+
};
|
|
2186
|
+
};
|
|
2187
|
+
readonly required: readonly ["type"];
|
|
2188
|
+
readonly additionalProperties: false;
|
|
2189
|
+
}, {
|
|
2190
|
+
readonly anyOf: readonly [{
|
|
2191
|
+
readonly type: "object";
|
|
2192
|
+
readonly properties: {
|
|
2193
|
+
readonly type: {
|
|
2194
|
+
readonly type: "string";
|
|
2195
|
+
readonly const: "string";
|
|
2196
|
+
};
|
|
2197
|
+
readonly title: {
|
|
2198
|
+
readonly type: "string";
|
|
2199
|
+
};
|
|
2200
|
+
readonly pattern: {
|
|
2201
|
+
readonly type: "string";
|
|
2202
|
+
};
|
|
2203
|
+
readonly default: {
|
|
2204
|
+
readonly type: "string";
|
|
2205
|
+
};
|
|
2206
|
+
readonly minLength: {
|
|
2207
|
+
readonly type: "integer";
|
|
2208
|
+
};
|
|
2209
|
+
readonly maxLength: {
|
|
2210
|
+
readonly type: "integer";
|
|
2211
|
+
};
|
|
2212
|
+
};
|
|
2213
|
+
readonly required: readonly ["type"];
|
|
2214
|
+
readonly additionalProperties: false;
|
|
2215
|
+
}, {
|
|
2216
|
+
readonly type: "object";
|
|
2217
|
+
readonly properties: {
|
|
2218
|
+
readonly type: {
|
|
2219
|
+
readonly type: "string";
|
|
2220
|
+
readonly const: "string";
|
|
2221
|
+
};
|
|
2222
|
+
readonly title: {
|
|
2223
|
+
readonly type: "string";
|
|
2224
|
+
};
|
|
2225
|
+
readonly enum: {
|
|
2226
|
+
readonly type: "array";
|
|
2227
|
+
readonly items: {
|
|
2228
|
+
readonly type: "string";
|
|
2229
|
+
};
|
|
2230
|
+
};
|
|
2231
|
+
readonly default: {
|
|
2232
|
+
readonly type: "string";
|
|
2233
|
+
};
|
|
2234
|
+
};
|
|
2235
|
+
readonly required: readonly ["type", "title", "enum"];
|
|
2236
|
+
readonly additionalProperties: false;
|
|
2237
|
+
}, {
|
|
2238
|
+
readonly type: "object";
|
|
2239
|
+
readonly properties: {
|
|
2240
|
+
readonly type: {
|
|
2241
|
+
readonly type: "string";
|
|
2242
|
+
readonly const: "string";
|
|
2243
|
+
};
|
|
2244
|
+
readonly format: {
|
|
2245
|
+
readonly type: "string";
|
|
2246
|
+
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
2247
|
+
};
|
|
2248
|
+
};
|
|
2249
|
+
readonly required: readonly ["type", "format"];
|
|
2250
|
+
readonly additionalProperties: false;
|
|
2251
|
+
}];
|
|
2252
|
+
}];
|
|
2253
|
+
}, {
|
|
2254
|
+
readonly anyOf: readonly [{
|
|
2255
|
+
readonly type: "object";
|
|
2256
|
+
readonly properties: {
|
|
2257
|
+
readonly type: {
|
|
2258
|
+
readonly type: "string";
|
|
2259
|
+
readonly const: "array";
|
|
2260
|
+
};
|
|
2261
|
+
readonly title: {
|
|
2262
|
+
readonly type: "string";
|
|
2263
|
+
};
|
|
2264
|
+
readonly items: {
|
|
2265
|
+
readonly type: "object";
|
|
2266
|
+
readonly properties: {
|
|
2267
|
+
readonly $ref: {
|
|
2268
|
+
readonly type: "string";
|
|
2269
|
+
};
|
|
2270
|
+
};
|
|
2271
|
+
readonly required: readonly ["$ref"];
|
|
2272
|
+
readonly additionalProperties: false;
|
|
2273
|
+
};
|
|
2274
|
+
};
|
|
2275
|
+
readonly required: readonly ["type", "title", "items"];
|
|
2276
|
+
readonly additionalProperties: false;
|
|
2277
|
+
}, {
|
|
2278
|
+
readonly type: "object";
|
|
2279
|
+
readonly properties: {
|
|
2280
|
+
readonly title: {
|
|
2281
|
+
readonly type: "string";
|
|
2282
|
+
};
|
|
2283
|
+
readonly type: {
|
|
2284
|
+
readonly type: "string";
|
|
2285
|
+
readonly const: "object";
|
|
2286
|
+
};
|
|
2287
|
+
readonly properties: {
|
|
2288
|
+
readonly type: "object";
|
|
2289
|
+
readonly additionalProperties: {
|
|
2290
|
+
readonly type: "object";
|
|
2291
|
+
readonly properties: {
|
|
2292
|
+
readonly $ref: {
|
|
2293
|
+
readonly type: "string";
|
|
2294
|
+
};
|
|
2295
|
+
};
|
|
2296
|
+
readonly required: readonly ["$ref"];
|
|
2297
|
+
readonly additionalProperties: false;
|
|
2298
|
+
};
|
|
2299
|
+
};
|
|
2300
|
+
readonly required: {
|
|
2301
|
+
readonly type: "array";
|
|
2302
|
+
readonly items: {
|
|
2303
|
+
readonly type: "string";
|
|
2304
|
+
};
|
|
2305
|
+
};
|
|
2306
|
+
readonly additionalProperties: {
|
|
2307
|
+
readonly type: "boolean";
|
|
2308
|
+
};
|
|
2309
|
+
};
|
|
2310
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "title"];
|
|
2311
|
+
readonly additionalProperties: false;
|
|
2312
|
+
}];
|
|
2313
|
+
}];
|
|
2314
|
+
};
|
|
2315
|
+
};
|
|
2316
|
+
readonly type: {
|
|
2317
|
+
readonly type: "string";
|
|
2318
|
+
readonly const: "object";
|
|
2319
|
+
};
|
|
2320
|
+
readonly properties: {
|
|
2321
|
+
readonly type: "object";
|
|
2322
|
+
readonly additionalProperties: {
|
|
2323
|
+
readonly type: "object";
|
|
2324
|
+
readonly properties: {
|
|
2325
|
+
readonly $ref: {
|
|
2326
|
+
readonly type: "string";
|
|
2327
|
+
};
|
|
2328
|
+
};
|
|
2329
|
+
readonly required: readonly ["$ref"];
|
|
2330
|
+
readonly additionalProperties: false;
|
|
2331
|
+
};
|
|
2332
|
+
};
|
|
2333
|
+
readonly required: {
|
|
2334
|
+
readonly type: "array";
|
|
2335
|
+
readonly items: {
|
|
2336
|
+
readonly type: "string";
|
|
2337
|
+
};
|
|
2338
|
+
};
|
|
2339
|
+
readonly additionalProperties: {
|
|
2340
|
+
readonly type: "boolean";
|
|
2341
|
+
};
|
|
2342
|
+
};
|
|
2343
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "$defs"];
|
|
2344
|
+
readonly additionalProperties: false;
|
|
2345
|
+
};
|
|
2346
|
+
readonly fieldsMeta: {
|
|
2347
|
+
readonly type: "object";
|
|
2348
|
+
readonly additionalProperties: {
|
|
2349
|
+
readonly type: "object";
|
|
2350
|
+
readonly properties: {
|
|
2351
|
+
readonly relationModel: {
|
|
2352
|
+
readonly anyOf: readonly [{
|
|
2353
|
+
readonly type: "string";
|
|
2354
|
+
}, {
|
|
2355
|
+
readonly type: "null";
|
|
2356
|
+
}];
|
|
2357
|
+
};
|
|
2358
|
+
};
|
|
2359
|
+
readonly additionalProperties: false;
|
|
2360
|
+
};
|
|
2361
|
+
};
|
|
2362
|
+
};
|
|
2363
|
+
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior", "setFields"];
|
|
2364
|
+
readonly additionalProperties: false;
|
|
2365
|
+
}];
|
|
2366
|
+
};
|
|
2367
|
+
};
|
|
2368
|
+
readonly aliases: {
|
|
2369
|
+
readonly type: "object";
|
|
2370
|
+
readonly additionalProperties: {
|
|
2371
|
+
readonly type: "string";
|
|
2372
|
+
};
|
|
2373
|
+
};
|
|
2374
|
+
};
|
|
2375
|
+
readonly required: readonly ["models"];
|
|
2376
|
+
readonly additionalProperties: false;
|
|
2377
|
+
};
|
|
2378
|
+
export type LoadGraphResult = FromSchema<typeof loadGraphResult>;
|
|
2379
|
+
export type LoadGraphRequest = RequestDefinition<LoadGraphParams, LoadGraphResult>;
|
|
2380
|
+
export declare const executeGraphParams: {
|
|
2381
|
+
readonly type: "object";
|
|
2382
|
+
readonly properties: {
|
|
2383
|
+
readonly id: {
|
|
2384
|
+
readonly type: "string";
|
|
2385
|
+
};
|
|
2386
|
+
readonly text: {
|
|
2387
|
+
readonly type: "string";
|
|
2388
|
+
};
|
|
2389
|
+
readonly variables: {
|
|
2390
|
+
readonly type: "object";
|
|
2391
|
+
};
|
|
2392
|
+
readonly viewer: {
|
|
2393
|
+
readonly title: "KubunDIDValue";
|
|
2394
|
+
readonly type: "string";
|
|
2395
|
+
readonly pattern: "^did:[a-z0-9]+:";
|
|
2396
|
+
};
|
|
2397
|
+
};
|
|
2398
|
+
readonly required: readonly ["id", "text", "variables"];
|
|
2399
|
+
readonly additionalProperties: false;
|
|
2400
|
+
};
|
|
2401
|
+
export type ExecuteGraphParams = FromSchema<typeof executeGraphParams>;
|
|
2402
|
+
export declare const executeGraphError: {
|
|
2403
|
+
readonly type: "object";
|
|
2404
|
+
readonly properties: {
|
|
2405
|
+
readonly message: {
|
|
2406
|
+
readonly type: "string";
|
|
2407
|
+
};
|
|
2408
|
+
readonly locations: {
|
|
2409
|
+
readonly type: "array";
|
|
2410
|
+
readonly items: {
|
|
2411
|
+
readonly type: "object";
|
|
2412
|
+
readonly properties: {
|
|
2413
|
+
readonly line: {
|
|
2414
|
+
readonly type: "integer";
|
|
2415
|
+
};
|
|
2416
|
+
readonly column: {
|
|
2417
|
+
readonly type: "integer";
|
|
2418
|
+
};
|
|
2419
|
+
};
|
|
2420
|
+
readonly required: readonly ["line", "column"];
|
|
2421
|
+
readonly additionalProperties: false;
|
|
2422
|
+
};
|
|
2423
|
+
};
|
|
2424
|
+
readonly path: {
|
|
2425
|
+
readonly type: "array";
|
|
2426
|
+
readonly items: {
|
|
2427
|
+
readonly type: "string";
|
|
2428
|
+
};
|
|
2429
|
+
};
|
|
2430
|
+
readonly extensions: {
|
|
2431
|
+
readonly type: "object";
|
|
2432
|
+
};
|
|
2433
|
+
};
|
|
2434
|
+
readonly required: readonly ["message"];
|
|
2435
|
+
readonly additionalProperties: false;
|
|
2436
|
+
};
|
|
2437
|
+
export type ExecuteGraphError = FromSchema<typeof executeGraphError>;
|
|
2438
|
+
export declare const executeGraphResult: {
|
|
2439
|
+
readonly type: "object";
|
|
2440
|
+
readonly properties: {
|
|
2441
|
+
readonly data: {
|
|
2442
|
+
readonly anyOf: readonly [{
|
|
2443
|
+
readonly type: "object";
|
|
2444
|
+
}, {
|
|
2445
|
+
readonly type: "null";
|
|
2446
|
+
}];
|
|
2447
|
+
};
|
|
2448
|
+
readonly errors: {
|
|
2449
|
+
readonly type: "array";
|
|
2450
|
+
readonly items: {
|
|
2451
|
+
readonly type: "object";
|
|
2452
|
+
readonly properties: {
|
|
2453
|
+
readonly message: {
|
|
2454
|
+
readonly type: "string";
|
|
2455
|
+
};
|
|
2456
|
+
readonly locations: {
|
|
2457
|
+
readonly type: "array";
|
|
2458
|
+
readonly items: {
|
|
2459
|
+
readonly type: "object";
|
|
2460
|
+
readonly properties: {
|
|
2461
|
+
readonly line: {
|
|
2462
|
+
readonly type: "integer";
|
|
2463
|
+
};
|
|
2464
|
+
readonly column: {
|
|
2465
|
+
readonly type: "integer";
|
|
2466
|
+
};
|
|
2467
|
+
};
|
|
2468
|
+
readonly required: readonly ["line", "column"];
|
|
2469
|
+
readonly additionalProperties: false;
|
|
2470
|
+
};
|
|
2471
|
+
};
|
|
2472
|
+
readonly path: {
|
|
2473
|
+
readonly type: "array";
|
|
2474
|
+
readonly items: {
|
|
2475
|
+
readonly type: "string";
|
|
2476
|
+
};
|
|
2477
|
+
};
|
|
2478
|
+
readonly extensions: {
|
|
2479
|
+
readonly type: "object";
|
|
2480
|
+
};
|
|
2481
|
+
};
|
|
2482
|
+
readonly required: readonly ["message"];
|
|
2483
|
+
readonly additionalProperties: false;
|
|
2484
|
+
};
|
|
2485
|
+
};
|
|
2486
|
+
readonly extensions: {
|
|
2487
|
+
readonly type: "object";
|
|
2488
|
+
};
|
|
2489
|
+
};
|
|
2490
|
+
readonly additionalProperties: false;
|
|
2491
|
+
};
|
|
2492
|
+
export type ExecuteGraphResult = FromSchema<typeof executeGraphResult>;
|
|
2493
|
+
export type QueryGraphRequest = RequestDefinition<ExecuteGraphParams, ExecuteGraphResult>;
|
|
2494
|
+
export declare const mutateGraphParams: {
|
|
2495
|
+
readonly type: "object";
|
|
2496
|
+
readonly properties: {
|
|
2497
|
+
readonly mutations: {
|
|
2498
|
+
readonly type: "object";
|
|
2499
|
+
readonly additionalProperties: {
|
|
2500
|
+
readonly title: "KubunSignedJWTValue";
|
|
2501
|
+
readonly type: "string";
|
|
2502
|
+
readonly pattern: "^[a-zA-Z0-9_-]+.[a-zA-Z0-9_-]+.[a-zA-Z0-9_-]+$";
|
|
2503
|
+
};
|
|
2504
|
+
};
|
|
2505
|
+
readonly attachments: {
|
|
2506
|
+
readonly type: "object";
|
|
2507
|
+
readonly additionalProperties: {
|
|
2508
|
+
readonly title: "KubunBinaryValue";
|
|
2509
|
+
readonly type: "string";
|
|
2510
|
+
readonly pattern: "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$";
|
|
2511
|
+
};
|
|
2512
|
+
};
|
|
2513
|
+
readonly id: {
|
|
2514
|
+
readonly type: "string";
|
|
2515
|
+
};
|
|
2516
|
+
readonly text: {
|
|
2517
|
+
readonly type: "string";
|
|
2518
|
+
};
|
|
2519
|
+
readonly variables: {
|
|
2520
|
+
readonly type: "object";
|
|
2521
|
+
};
|
|
2522
|
+
readonly viewer: {
|
|
2523
|
+
readonly title: "KubunDIDValue";
|
|
2524
|
+
readonly type: "string";
|
|
2525
|
+
readonly pattern: "^did:[a-z0-9]+:";
|
|
2526
|
+
};
|
|
2527
|
+
};
|
|
2528
|
+
readonly required: readonly ["id", "text", "variables", "mutations"];
|
|
2529
|
+
readonly additionalProperties: false;
|
|
2530
|
+
};
|
|
2531
|
+
export type MutateGraphParams = FromSchema<typeof mutateGraphParams>;
|
|
2532
|
+
export type MutateGraphRequest = RequestDefinition<MutateGraphParams, ExecuteGraphResult>;
|
|
2533
|
+
export type GraphCommands = {
|
|
2534
|
+
'graph/create': CreateGraphRequest;
|
|
2535
|
+
'graph/load': LoadGraphRequest;
|
|
2536
|
+
'graph/query': QueryGraphRequest;
|
|
2537
|
+
'graph/mutate': MutateGraphRequest;
|
|
2538
|
+
};
|
|
2539
|
+
//# sourceMappingURL=graph.d.ts.map
|