@kubun/protocol 0.2.0 → 0.2.2
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/lib/models/cluster.d.ts +177 -0
- package/lib/models/cluster.d.ts.map +1 -1
- package/lib/models/document.d.ts +518 -0
- package/lib/models/document.d.ts.map +1 -1
- package/lib/models/json-schema.d.ts +181 -0
- package/lib/models/json-schema.d.ts.map +1 -1
- package/lib/models/json-schema.js +44 -1
- package/lib/services/graph.d.ts +674 -6
- package/lib/services/graph.d.ts.map +1 -1
- package/package.json +2 -2
package/lib/models/document.d.ts
CHANGED
|
@@ -94,6 +94,25 @@ export declare const documentModelSchema: {
|
|
|
94
94
|
readonly additionalProperties: false;
|
|
95
95
|
}, {
|
|
96
96
|
readonly anyOf: readonly [{
|
|
97
|
+
readonly type: "object";
|
|
98
|
+
readonly properties: {
|
|
99
|
+
readonly type: {
|
|
100
|
+
readonly type: "string";
|
|
101
|
+
readonly const: "string";
|
|
102
|
+
};
|
|
103
|
+
readonly title: {
|
|
104
|
+
readonly type: "string";
|
|
105
|
+
};
|
|
106
|
+
readonly const: {
|
|
107
|
+
readonly type: "string";
|
|
108
|
+
};
|
|
109
|
+
readonly default: {
|
|
110
|
+
readonly type: "string";
|
|
111
|
+
};
|
|
112
|
+
};
|
|
113
|
+
readonly required: readonly ["type", "title", "const"];
|
|
114
|
+
readonly additionalProperties: false;
|
|
115
|
+
}, {
|
|
97
116
|
readonly type: "object";
|
|
98
117
|
readonly properties: {
|
|
99
118
|
readonly type: {
|
|
@@ -153,6 +172,18 @@ export declare const documentModelSchema: {
|
|
|
153
172
|
readonly type: "string";
|
|
154
173
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
155
174
|
};
|
|
175
|
+
readonly title: {
|
|
176
|
+
readonly type: "string";
|
|
177
|
+
};
|
|
178
|
+
readonly default: {
|
|
179
|
+
readonly type: "string";
|
|
180
|
+
};
|
|
181
|
+
readonly minLength: {
|
|
182
|
+
readonly type: "integer";
|
|
183
|
+
};
|
|
184
|
+
readonly maxLength: {
|
|
185
|
+
readonly type: "integer";
|
|
186
|
+
};
|
|
156
187
|
};
|
|
157
188
|
readonly required: readonly ["type", "format"];
|
|
158
189
|
readonly additionalProperties: false;
|
|
@@ -183,6 +214,12 @@ export declare const documentModelSchema: {
|
|
|
183
214
|
readonly uniqueItems: {
|
|
184
215
|
readonly type: "boolean";
|
|
185
216
|
};
|
|
217
|
+
readonly minItems: {
|
|
218
|
+
readonly type: "integer";
|
|
219
|
+
};
|
|
220
|
+
readonly maxItems: {
|
|
221
|
+
readonly type: "integer";
|
|
222
|
+
};
|
|
186
223
|
};
|
|
187
224
|
readonly required: readonly ["type", "title", "items"];
|
|
188
225
|
readonly additionalProperties: false;
|
|
@@ -340,6 +377,25 @@ export declare const documentModelBase: {
|
|
|
340
377
|
readonly additionalProperties: false;
|
|
341
378
|
}, {
|
|
342
379
|
readonly anyOf: readonly [{
|
|
380
|
+
readonly type: "object";
|
|
381
|
+
readonly properties: {
|
|
382
|
+
readonly type: {
|
|
383
|
+
readonly type: "string";
|
|
384
|
+
readonly const: "string";
|
|
385
|
+
};
|
|
386
|
+
readonly title: {
|
|
387
|
+
readonly type: "string";
|
|
388
|
+
};
|
|
389
|
+
readonly const: {
|
|
390
|
+
readonly type: "string";
|
|
391
|
+
};
|
|
392
|
+
readonly default: {
|
|
393
|
+
readonly type: "string";
|
|
394
|
+
};
|
|
395
|
+
};
|
|
396
|
+
readonly required: readonly ["type", "title", "const"];
|
|
397
|
+
readonly additionalProperties: false;
|
|
398
|
+
}, {
|
|
343
399
|
readonly type: "object";
|
|
344
400
|
readonly properties: {
|
|
345
401
|
readonly type: {
|
|
@@ -399,6 +455,18 @@ export declare const documentModelBase: {
|
|
|
399
455
|
readonly type: "string";
|
|
400
456
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
401
457
|
};
|
|
458
|
+
readonly title: {
|
|
459
|
+
readonly type: "string";
|
|
460
|
+
};
|
|
461
|
+
readonly default: {
|
|
462
|
+
readonly type: "string";
|
|
463
|
+
};
|
|
464
|
+
readonly minLength: {
|
|
465
|
+
readonly type: "integer";
|
|
466
|
+
};
|
|
467
|
+
readonly maxLength: {
|
|
468
|
+
readonly type: "integer";
|
|
469
|
+
};
|
|
402
470
|
};
|
|
403
471
|
readonly required: readonly ["type", "format"];
|
|
404
472
|
readonly additionalProperties: false;
|
|
@@ -429,6 +497,12 @@ export declare const documentModelBase: {
|
|
|
429
497
|
readonly uniqueItems: {
|
|
430
498
|
readonly type: "boolean";
|
|
431
499
|
};
|
|
500
|
+
readonly minItems: {
|
|
501
|
+
readonly type: "integer";
|
|
502
|
+
};
|
|
503
|
+
readonly maxItems: {
|
|
504
|
+
readonly type: "integer";
|
|
505
|
+
};
|
|
432
506
|
};
|
|
433
507
|
readonly required: readonly ["type", "title", "items"];
|
|
434
508
|
readonly additionalProperties: false;
|
|
@@ -609,6 +683,25 @@ export declare const documentModelDefault: {
|
|
|
609
683
|
readonly additionalProperties: false;
|
|
610
684
|
}, {
|
|
611
685
|
readonly anyOf: readonly [{
|
|
686
|
+
readonly type: "object";
|
|
687
|
+
readonly properties: {
|
|
688
|
+
readonly type: {
|
|
689
|
+
readonly type: "string";
|
|
690
|
+
readonly const: "string";
|
|
691
|
+
};
|
|
692
|
+
readonly title: {
|
|
693
|
+
readonly type: "string";
|
|
694
|
+
};
|
|
695
|
+
readonly const: {
|
|
696
|
+
readonly type: "string";
|
|
697
|
+
};
|
|
698
|
+
readonly default: {
|
|
699
|
+
readonly type: "string";
|
|
700
|
+
};
|
|
701
|
+
};
|
|
702
|
+
readonly required: readonly ["type", "title", "const"];
|
|
703
|
+
readonly additionalProperties: false;
|
|
704
|
+
}, {
|
|
612
705
|
readonly type: "object";
|
|
613
706
|
readonly properties: {
|
|
614
707
|
readonly type: {
|
|
@@ -668,6 +761,18 @@ export declare const documentModelDefault: {
|
|
|
668
761
|
readonly type: "string";
|
|
669
762
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
670
763
|
};
|
|
764
|
+
readonly title: {
|
|
765
|
+
readonly type: "string";
|
|
766
|
+
};
|
|
767
|
+
readonly default: {
|
|
768
|
+
readonly type: "string";
|
|
769
|
+
};
|
|
770
|
+
readonly minLength: {
|
|
771
|
+
readonly type: "integer";
|
|
772
|
+
};
|
|
773
|
+
readonly maxLength: {
|
|
774
|
+
readonly type: "integer";
|
|
775
|
+
};
|
|
671
776
|
};
|
|
672
777
|
readonly required: readonly ["type", "format"];
|
|
673
778
|
readonly additionalProperties: false;
|
|
@@ -698,6 +803,12 @@ export declare const documentModelDefault: {
|
|
|
698
803
|
readonly uniqueItems: {
|
|
699
804
|
readonly type: "boolean";
|
|
700
805
|
};
|
|
806
|
+
readonly minItems: {
|
|
807
|
+
readonly type: "integer";
|
|
808
|
+
};
|
|
809
|
+
readonly maxItems: {
|
|
810
|
+
readonly type: "integer";
|
|
811
|
+
};
|
|
701
812
|
};
|
|
702
813
|
readonly required: readonly ["type", "title", "items"];
|
|
703
814
|
readonly additionalProperties: false;
|
|
@@ -878,6 +989,25 @@ export declare const documentModelInterface: {
|
|
|
878
989
|
readonly additionalProperties: false;
|
|
879
990
|
}, {
|
|
880
991
|
readonly anyOf: readonly [{
|
|
992
|
+
readonly type: "object";
|
|
993
|
+
readonly properties: {
|
|
994
|
+
readonly type: {
|
|
995
|
+
readonly type: "string";
|
|
996
|
+
readonly const: "string";
|
|
997
|
+
};
|
|
998
|
+
readonly title: {
|
|
999
|
+
readonly type: "string";
|
|
1000
|
+
};
|
|
1001
|
+
readonly const: {
|
|
1002
|
+
readonly type: "string";
|
|
1003
|
+
};
|
|
1004
|
+
readonly default: {
|
|
1005
|
+
readonly type: "string";
|
|
1006
|
+
};
|
|
1007
|
+
};
|
|
1008
|
+
readonly required: readonly ["type", "title", "const"];
|
|
1009
|
+
readonly additionalProperties: false;
|
|
1010
|
+
}, {
|
|
881
1011
|
readonly type: "object";
|
|
882
1012
|
readonly properties: {
|
|
883
1013
|
readonly type: {
|
|
@@ -937,6 +1067,18 @@ export declare const documentModelInterface: {
|
|
|
937
1067
|
readonly type: "string";
|
|
938
1068
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
939
1069
|
};
|
|
1070
|
+
readonly title: {
|
|
1071
|
+
readonly type: "string";
|
|
1072
|
+
};
|
|
1073
|
+
readonly default: {
|
|
1074
|
+
readonly type: "string";
|
|
1075
|
+
};
|
|
1076
|
+
readonly minLength: {
|
|
1077
|
+
readonly type: "integer";
|
|
1078
|
+
};
|
|
1079
|
+
readonly maxLength: {
|
|
1080
|
+
readonly type: "integer";
|
|
1081
|
+
};
|
|
940
1082
|
};
|
|
941
1083
|
readonly required: readonly ["type", "format"];
|
|
942
1084
|
readonly additionalProperties: false;
|
|
@@ -967,6 +1109,12 @@ export declare const documentModelInterface: {
|
|
|
967
1109
|
readonly uniqueItems: {
|
|
968
1110
|
readonly type: "boolean";
|
|
969
1111
|
};
|
|
1112
|
+
readonly minItems: {
|
|
1113
|
+
readonly type: "integer";
|
|
1114
|
+
};
|
|
1115
|
+
readonly maxItems: {
|
|
1116
|
+
readonly type: "integer";
|
|
1117
|
+
};
|
|
970
1118
|
};
|
|
971
1119
|
readonly required: readonly ["type", "title", "items"];
|
|
972
1120
|
readonly additionalProperties: false;
|
|
@@ -1153,6 +1301,25 @@ export declare const documentModelUnique: {
|
|
|
1153
1301
|
readonly additionalProperties: false;
|
|
1154
1302
|
}, {
|
|
1155
1303
|
readonly anyOf: readonly [{
|
|
1304
|
+
readonly type: "object";
|
|
1305
|
+
readonly properties: {
|
|
1306
|
+
readonly type: {
|
|
1307
|
+
readonly type: "string";
|
|
1308
|
+
readonly const: "string";
|
|
1309
|
+
};
|
|
1310
|
+
readonly title: {
|
|
1311
|
+
readonly type: "string";
|
|
1312
|
+
};
|
|
1313
|
+
readonly const: {
|
|
1314
|
+
readonly type: "string";
|
|
1315
|
+
};
|
|
1316
|
+
readonly default: {
|
|
1317
|
+
readonly type: "string";
|
|
1318
|
+
};
|
|
1319
|
+
};
|
|
1320
|
+
readonly required: readonly ["type", "title", "const"];
|
|
1321
|
+
readonly additionalProperties: false;
|
|
1322
|
+
}, {
|
|
1156
1323
|
readonly type: "object";
|
|
1157
1324
|
readonly properties: {
|
|
1158
1325
|
readonly type: {
|
|
@@ -1212,6 +1379,18 @@ export declare const documentModelUnique: {
|
|
|
1212
1379
|
readonly type: "string";
|
|
1213
1380
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
1214
1381
|
};
|
|
1382
|
+
readonly title: {
|
|
1383
|
+
readonly type: "string";
|
|
1384
|
+
};
|
|
1385
|
+
readonly default: {
|
|
1386
|
+
readonly type: "string";
|
|
1387
|
+
};
|
|
1388
|
+
readonly minLength: {
|
|
1389
|
+
readonly type: "integer";
|
|
1390
|
+
};
|
|
1391
|
+
readonly maxLength: {
|
|
1392
|
+
readonly type: "integer";
|
|
1393
|
+
};
|
|
1215
1394
|
};
|
|
1216
1395
|
readonly required: readonly ["type", "format"];
|
|
1217
1396
|
readonly additionalProperties: false;
|
|
@@ -1242,6 +1421,12 @@ export declare const documentModelUnique: {
|
|
|
1242
1421
|
readonly uniqueItems: {
|
|
1243
1422
|
readonly type: "boolean";
|
|
1244
1423
|
};
|
|
1424
|
+
readonly minItems: {
|
|
1425
|
+
readonly type: "integer";
|
|
1426
|
+
};
|
|
1427
|
+
readonly maxItems: {
|
|
1428
|
+
readonly type: "integer";
|
|
1429
|
+
};
|
|
1245
1430
|
};
|
|
1246
1431
|
readonly required: readonly ["type", "title", "items"];
|
|
1247
1432
|
readonly additionalProperties: false;
|
|
@@ -1424,6 +1609,25 @@ export declare const documentModel: {
|
|
|
1424
1609
|
readonly additionalProperties: false;
|
|
1425
1610
|
}, {
|
|
1426
1611
|
readonly anyOf: readonly [{
|
|
1612
|
+
readonly type: "object";
|
|
1613
|
+
readonly properties: {
|
|
1614
|
+
readonly type: {
|
|
1615
|
+
readonly type: "string";
|
|
1616
|
+
readonly const: "string";
|
|
1617
|
+
};
|
|
1618
|
+
readonly title: {
|
|
1619
|
+
readonly type: "string";
|
|
1620
|
+
};
|
|
1621
|
+
readonly const: {
|
|
1622
|
+
readonly type: "string";
|
|
1623
|
+
};
|
|
1624
|
+
readonly default: {
|
|
1625
|
+
readonly type: "string";
|
|
1626
|
+
};
|
|
1627
|
+
};
|
|
1628
|
+
readonly required: readonly ["type", "title", "const"];
|
|
1629
|
+
readonly additionalProperties: false;
|
|
1630
|
+
}, {
|
|
1427
1631
|
readonly type: "object";
|
|
1428
1632
|
readonly properties: {
|
|
1429
1633
|
readonly type: {
|
|
@@ -1483,6 +1687,18 @@ export declare const documentModel: {
|
|
|
1483
1687
|
readonly type: "string";
|
|
1484
1688
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
1485
1689
|
};
|
|
1690
|
+
readonly title: {
|
|
1691
|
+
readonly type: "string";
|
|
1692
|
+
};
|
|
1693
|
+
readonly default: {
|
|
1694
|
+
readonly type: "string";
|
|
1695
|
+
};
|
|
1696
|
+
readonly minLength: {
|
|
1697
|
+
readonly type: "integer";
|
|
1698
|
+
};
|
|
1699
|
+
readonly maxLength: {
|
|
1700
|
+
readonly type: "integer";
|
|
1701
|
+
};
|
|
1486
1702
|
};
|
|
1487
1703
|
readonly required: readonly ["type", "format"];
|
|
1488
1704
|
readonly additionalProperties: false;
|
|
@@ -1513,6 +1729,12 @@ export declare const documentModel: {
|
|
|
1513
1729
|
readonly uniqueItems: {
|
|
1514
1730
|
readonly type: "boolean";
|
|
1515
1731
|
};
|
|
1732
|
+
readonly minItems: {
|
|
1733
|
+
readonly type: "integer";
|
|
1734
|
+
};
|
|
1735
|
+
readonly maxItems: {
|
|
1736
|
+
readonly type: "integer";
|
|
1737
|
+
};
|
|
1516
1738
|
};
|
|
1517
1739
|
readonly required: readonly ["type", "title", "items"];
|
|
1518
1740
|
readonly additionalProperties: false;
|
|
@@ -1692,6 +1914,25 @@ export declare const documentModel: {
|
|
|
1692
1914
|
readonly additionalProperties: false;
|
|
1693
1915
|
}, {
|
|
1694
1916
|
readonly anyOf: readonly [{
|
|
1917
|
+
readonly type: "object";
|
|
1918
|
+
readonly properties: {
|
|
1919
|
+
readonly type: {
|
|
1920
|
+
readonly type: "string";
|
|
1921
|
+
readonly const: "string";
|
|
1922
|
+
};
|
|
1923
|
+
readonly title: {
|
|
1924
|
+
readonly type: "string";
|
|
1925
|
+
};
|
|
1926
|
+
readonly const: {
|
|
1927
|
+
readonly type: "string";
|
|
1928
|
+
};
|
|
1929
|
+
readonly default: {
|
|
1930
|
+
readonly type: "string";
|
|
1931
|
+
};
|
|
1932
|
+
};
|
|
1933
|
+
readonly required: readonly ["type", "title", "const"];
|
|
1934
|
+
readonly additionalProperties: false;
|
|
1935
|
+
}, {
|
|
1695
1936
|
readonly type: "object";
|
|
1696
1937
|
readonly properties: {
|
|
1697
1938
|
readonly type: {
|
|
@@ -1751,6 +1992,18 @@ export declare const documentModel: {
|
|
|
1751
1992
|
readonly type: "string";
|
|
1752
1993
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
1753
1994
|
};
|
|
1995
|
+
readonly title: {
|
|
1996
|
+
readonly type: "string";
|
|
1997
|
+
};
|
|
1998
|
+
readonly default: {
|
|
1999
|
+
readonly type: "string";
|
|
2000
|
+
};
|
|
2001
|
+
readonly minLength: {
|
|
2002
|
+
readonly type: "integer";
|
|
2003
|
+
};
|
|
2004
|
+
readonly maxLength: {
|
|
2005
|
+
readonly type: "integer";
|
|
2006
|
+
};
|
|
1754
2007
|
};
|
|
1755
2008
|
readonly required: readonly ["type", "format"];
|
|
1756
2009
|
readonly additionalProperties: false;
|
|
@@ -1781,6 +2034,12 @@ export declare const documentModel: {
|
|
|
1781
2034
|
readonly uniqueItems: {
|
|
1782
2035
|
readonly type: "boolean";
|
|
1783
2036
|
};
|
|
2037
|
+
readonly minItems: {
|
|
2038
|
+
readonly type: "integer";
|
|
2039
|
+
};
|
|
2040
|
+
readonly maxItems: {
|
|
2041
|
+
readonly type: "integer";
|
|
2042
|
+
};
|
|
1784
2043
|
};
|
|
1785
2044
|
readonly required: readonly ["type", "title", "items"];
|
|
1786
2045
|
readonly additionalProperties: false;
|
|
@@ -1966,6 +2225,25 @@ export declare const documentModel: {
|
|
|
1966
2225
|
readonly additionalProperties: false;
|
|
1967
2226
|
}, {
|
|
1968
2227
|
readonly anyOf: readonly [{
|
|
2228
|
+
readonly type: "object";
|
|
2229
|
+
readonly properties: {
|
|
2230
|
+
readonly type: {
|
|
2231
|
+
readonly type: "string";
|
|
2232
|
+
readonly const: "string";
|
|
2233
|
+
};
|
|
2234
|
+
readonly title: {
|
|
2235
|
+
readonly type: "string";
|
|
2236
|
+
};
|
|
2237
|
+
readonly const: {
|
|
2238
|
+
readonly type: "string";
|
|
2239
|
+
};
|
|
2240
|
+
readonly default: {
|
|
2241
|
+
readonly type: "string";
|
|
2242
|
+
};
|
|
2243
|
+
};
|
|
2244
|
+
readonly required: readonly ["type", "title", "const"];
|
|
2245
|
+
readonly additionalProperties: false;
|
|
2246
|
+
}, {
|
|
1969
2247
|
readonly type: "object";
|
|
1970
2248
|
readonly properties: {
|
|
1971
2249
|
readonly type: {
|
|
@@ -2025,6 +2303,18 @@ export declare const documentModel: {
|
|
|
2025
2303
|
readonly type: "string";
|
|
2026
2304
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
2027
2305
|
};
|
|
2306
|
+
readonly title: {
|
|
2307
|
+
readonly type: "string";
|
|
2308
|
+
};
|
|
2309
|
+
readonly default: {
|
|
2310
|
+
readonly type: "string";
|
|
2311
|
+
};
|
|
2312
|
+
readonly minLength: {
|
|
2313
|
+
readonly type: "integer";
|
|
2314
|
+
};
|
|
2315
|
+
readonly maxLength: {
|
|
2316
|
+
readonly type: "integer";
|
|
2317
|
+
};
|
|
2028
2318
|
};
|
|
2029
2319
|
readonly required: readonly ["type", "format"];
|
|
2030
2320
|
readonly additionalProperties: false;
|
|
@@ -2055,6 +2345,12 @@ export declare const documentModel: {
|
|
|
2055
2345
|
readonly uniqueItems: {
|
|
2056
2346
|
readonly type: "boolean";
|
|
2057
2347
|
};
|
|
2348
|
+
readonly minItems: {
|
|
2349
|
+
readonly type: "integer";
|
|
2350
|
+
};
|
|
2351
|
+
readonly maxItems: {
|
|
2352
|
+
readonly type: "integer";
|
|
2353
|
+
};
|
|
2058
2354
|
};
|
|
2059
2355
|
readonly required: readonly ["type", "title", "items"];
|
|
2060
2356
|
readonly additionalProperties: false;
|
|
@@ -2241,6 +2537,25 @@ export declare const documentModelsCluster: {
|
|
|
2241
2537
|
readonly additionalProperties: false;
|
|
2242
2538
|
}, {
|
|
2243
2539
|
readonly anyOf: readonly [{
|
|
2540
|
+
readonly type: "object";
|
|
2541
|
+
readonly properties: {
|
|
2542
|
+
readonly type: {
|
|
2543
|
+
readonly type: "string";
|
|
2544
|
+
readonly const: "string";
|
|
2545
|
+
};
|
|
2546
|
+
readonly title: {
|
|
2547
|
+
readonly type: "string";
|
|
2548
|
+
};
|
|
2549
|
+
readonly const: {
|
|
2550
|
+
readonly type: "string";
|
|
2551
|
+
};
|
|
2552
|
+
readonly default: {
|
|
2553
|
+
readonly type: "string";
|
|
2554
|
+
};
|
|
2555
|
+
};
|
|
2556
|
+
readonly required: readonly ["type", "title", "const"];
|
|
2557
|
+
readonly additionalProperties: false;
|
|
2558
|
+
}, {
|
|
2244
2559
|
readonly type: "object";
|
|
2245
2560
|
readonly properties: {
|
|
2246
2561
|
readonly type: {
|
|
@@ -2300,6 +2615,18 @@ export declare const documentModelsCluster: {
|
|
|
2300
2615
|
readonly type: "string";
|
|
2301
2616
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
2302
2617
|
};
|
|
2618
|
+
readonly title: {
|
|
2619
|
+
readonly type: "string";
|
|
2620
|
+
};
|
|
2621
|
+
readonly default: {
|
|
2622
|
+
readonly type: "string";
|
|
2623
|
+
};
|
|
2624
|
+
readonly minLength: {
|
|
2625
|
+
readonly type: "integer";
|
|
2626
|
+
};
|
|
2627
|
+
readonly maxLength: {
|
|
2628
|
+
readonly type: "integer";
|
|
2629
|
+
};
|
|
2303
2630
|
};
|
|
2304
2631
|
readonly required: readonly ["type", "format"];
|
|
2305
2632
|
readonly additionalProperties: false;
|
|
@@ -2330,6 +2657,12 @@ export declare const documentModelsCluster: {
|
|
|
2330
2657
|
readonly uniqueItems: {
|
|
2331
2658
|
readonly type: "boolean";
|
|
2332
2659
|
};
|
|
2660
|
+
readonly minItems: {
|
|
2661
|
+
readonly type: "integer";
|
|
2662
|
+
};
|
|
2663
|
+
readonly maxItems: {
|
|
2664
|
+
readonly type: "integer";
|
|
2665
|
+
};
|
|
2333
2666
|
};
|
|
2334
2667
|
readonly required: readonly ["type", "title", "items"];
|
|
2335
2668
|
readonly additionalProperties: false;
|
|
@@ -2509,6 +2842,25 @@ export declare const documentModelsCluster: {
|
|
|
2509
2842
|
readonly additionalProperties: false;
|
|
2510
2843
|
}, {
|
|
2511
2844
|
readonly anyOf: readonly [{
|
|
2845
|
+
readonly type: "object";
|
|
2846
|
+
readonly properties: {
|
|
2847
|
+
readonly type: {
|
|
2848
|
+
readonly type: "string";
|
|
2849
|
+
readonly const: "string";
|
|
2850
|
+
};
|
|
2851
|
+
readonly title: {
|
|
2852
|
+
readonly type: "string";
|
|
2853
|
+
};
|
|
2854
|
+
readonly const: {
|
|
2855
|
+
readonly type: "string";
|
|
2856
|
+
};
|
|
2857
|
+
readonly default: {
|
|
2858
|
+
readonly type: "string";
|
|
2859
|
+
};
|
|
2860
|
+
};
|
|
2861
|
+
readonly required: readonly ["type", "title", "const"];
|
|
2862
|
+
readonly additionalProperties: false;
|
|
2863
|
+
}, {
|
|
2512
2864
|
readonly type: "object";
|
|
2513
2865
|
readonly properties: {
|
|
2514
2866
|
readonly type: {
|
|
@@ -2568,6 +2920,18 @@ export declare const documentModelsCluster: {
|
|
|
2568
2920
|
readonly type: "string";
|
|
2569
2921
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
2570
2922
|
};
|
|
2923
|
+
readonly title: {
|
|
2924
|
+
readonly type: "string";
|
|
2925
|
+
};
|
|
2926
|
+
readonly default: {
|
|
2927
|
+
readonly type: "string";
|
|
2928
|
+
};
|
|
2929
|
+
readonly minLength: {
|
|
2930
|
+
readonly type: "integer";
|
|
2931
|
+
};
|
|
2932
|
+
readonly maxLength: {
|
|
2933
|
+
readonly type: "integer";
|
|
2934
|
+
};
|
|
2571
2935
|
};
|
|
2572
2936
|
readonly required: readonly ["type", "format"];
|
|
2573
2937
|
readonly additionalProperties: false;
|
|
@@ -2598,6 +2962,12 @@ export declare const documentModelsCluster: {
|
|
|
2598
2962
|
readonly uniqueItems: {
|
|
2599
2963
|
readonly type: "boolean";
|
|
2600
2964
|
};
|
|
2965
|
+
readonly minItems: {
|
|
2966
|
+
readonly type: "integer";
|
|
2967
|
+
};
|
|
2968
|
+
readonly maxItems: {
|
|
2969
|
+
readonly type: "integer";
|
|
2970
|
+
};
|
|
2601
2971
|
};
|
|
2602
2972
|
readonly required: readonly ["type", "title", "items"];
|
|
2603
2973
|
readonly additionalProperties: false;
|
|
@@ -2783,6 +3153,25 @@ export declare const documentModelsCluster: {
|
|
|
2783
3153
|
readonly additionalProperties: false;
|
|
2784
3154
|
}, {
|
|
2785
3155
|
readonly anyOf: readonly [{
|
|
3156
|
+
readonly type: "object";
|
|
3157
|
+
readonly properties: {
|
|
3158
|
+
readonly type: {
|
|
3159
|
+
readonly type: "string";
|
|
3160
|
+
readonly const: "string";
|
|
3161
|
+
};
|
|
3162
|
+
readonly title: {
|
|
3163
|
+
readonly type: "string";
|
|
3164
|
+
};
|
|
3165
|
+
readonly const: {
|
|
3166
|
+
readonly type: "string";
|
|
3167
|
+
};
|
|
3168
|
+
readonly default: {
|
|
3169
|
+
readonly type: "string";
|
|
3170
|
+
};
|
|
3171
|
+
};
|
|
3172
|
+
readonly required: readonly ["type", "title", "const"];
|
|
3173
|
+
readonly additionalProperties: false;
|
|
3174
|
+
}, {
|
|
2786
3175
|
readonly type: "object";
|
|
2787
3176
|
readonly properties: {
|
|
2788
3177
|
readonly type: {
|
|
@@ -2842,6 +3231,18 @@ export declare const documentModelsCluster: {
|
|
|
2842
3231
|
readonly type: "string";
|
|
2843
3232
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
2844
3233
|
};
|
|
3234
|
+
readonly title: {
|
|
3235
|
+
readonly type: "string";
|
|
3236
|
+
};
|
|
3237
|
+
readonly default: {
|
|
3238
|
+
readonly type: "string";
|
|
3239
|
+
};
|
|
3240
|
+
readonly minLength: {
|
|
3241
|
+
readonly type: "integer";
|
|
3242
|
+
};
|
|
3243
|
+
readonly maxLength: {
|
|
3244
|
+
readonly type: "integer";
|
|
3245
|
+
};
|
|
2845
3246
|
};
|
|
2846
3247
|
readonly required: readonly ["type", "format"];
|
|
2847
3248
|
readonly additionalProperties: false;
|
|
@@ -2872,6 +3273,12 @@ export declare const documentModelsCluster: {
|
|
|
2872
3273
|
readonly uniqueItems: {
|
|
2873
3274
|
readonly type: "boolean";
|
|
2874
3275
|
};
|
|
3276
|
+
readonly minItems: {
|
|
3277
|
+
readonly type: "integer";
|
|
3278
|
+
};
|
|
3279
|
+
readonly maxItems: {
|
|
3280
|
+
readonly type: "integer";
|
|
3281
|
+
};
|
|
2875
3282
|
};
|
|
2876
3283
|
readonly required: readonly ["type", "title", "items"];
|
|
2877
3284
|
readonly additionalProperties: false;
|
|
@@ -3059,6 +3466,25 @@ export declare const documentModelsRecord: {
|
|
|
3059
3466
|
readonly additionalProperties: false;
|
|
3060
3467
|
}, {
|
|
3061
3468
|
readonly anyOf: readonly [{
|
|
3469
|
+
readonly type: "object";
|
|
3470
|
+
readonly properties: {
|
|
3471
|
+
readonly type: {
|
|
3472
|
+
readonly type: "string";
|
|
3473
|
+
readonly const: "string";
|
|
3474
|
+
};
|
|
3475
|
+
readonly title: {
|
|
3476
|
+
readonly type: "string";
|
|
3477
|
+
};
|
|
3478
|
+
readonly const: {
|
|
3479
|
+
readonly type: "string";
|
|
3480
|
+
};
|
|
3481
|
+
readonly default: {
|
|
3482
|
+
readonly type: "string";
|
|
3483
|
+
};
|
|
3484
|
+
};
|
|
3485
|
+
readonly required: readonly ["type", "title", "const"];
|
|
3486
|
+
readonly additionalProperties: false;
|
|
3487
|
+
}, {
|
|
3062
3488
|
readonly type: "object";
|
|
3063
3489
|
readonly properties: {
|
|
3064
3490
|
readonly type: {
|
|
@@ -3118,6 +3544,18 @@ export declare const documentModelsRecord: {
|
|
|
3118
3544
|
readonly type: "string";
|
|
3119
3545
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
3120
3546
|
};
|
|
3547
|
+
readonly title: {
|
|
3548
|
+
readonly type: "string";
|
|
3549
|
+
};
|
|
3550
|
+
readonly default: {
|
|
3551
|
+
readonly type: "string";
|
|
3552
|
+
};
|
|
3553
|
+
readonly minLength: {
|
|
3554
|
+
readonly type: "integer";
|
|
3555
|
+
};
|
|
3556
|
+
readonly maxLength: {
|
|
3557
|
+
readonly type: "integer";
|
|
3558
|
+
};
|
|
3121
3559
|
};
|
|
3122
3560
|
readonly required: readonly ["type", "format"];
|
|
3123
3561
|
readonly additionalProperties: false;
|
|
@@ -3148,6 +3586,12 @@ export declare const documentModelsRecord: {
|
|
|
3148
3586
|
readonly uniqueItems: {
|
|
3149
3587
|
readonly type: "boolean";
|
|
3150
3588
|
};
|
|
3589
|
+
readonly minItems: {
|
|
3590
|
+
readonly type: "integer";
|
|
3591
|
+
};
|
|
3592
|
+
readonly maxItems: {
|
|
3593
|
+
readonly type: "integer";
|
|
3594
|
+
};
|
|
3151
3595
|
};
|
|
3152
3596
|
readonly required: readonly ["type", "title", "items"];
|
|
3153
3597
|
readonly additionalProperties: false;
|
|
@@ -3327,6 +3771,25 @@ export declare const documentModelsRecord: {
|
|
|
3327
3771
|
readonly additionalProperties: false;
|
|
3328
3772
|
}, {
|
|
3329
3773
|
readonly anyOf: readonly [{
|
|
3774
|
+
readonly type: "object";
|
|
3775
|
+
readonly properties: {
|
|
3776
|
+
readonly type: {
|
|
3777
|
+
readonly type: "string";
|
|
3778
|
+
readonly const: "string";
|
|
3779
|
+
};
|
|
3780
|
+
readonly title: {
|
|
3781
|
+
readonly type: "string";
|
|
3782
|
+
};
|
|
3783
|
+
readonly const: {
|
|
3784
|
+
readonly type: "string";
|
|
3785
|
+
};
|
|
3786
|
+
readonly default: {
|
|
3787
|
+
readonly type: "string";
|
|
3788
|
+
};
|
|
3789
|
+
};
|
|
3790
|
+
readonly required: readonly ["type", "title", "const"];
|
|
3791
|
+
readonly additionalProperties: false;
|
|
3792
|
+
}, {
|
|
3330
3793
|
readonly type: "object";
|
|
3331
3794
|
readonly properties: {
|
|
3332
3795
|
readonly type: {
|
|
@@ -3386,6 +3849,18 @@ export declare const documentModelsRecord: {
|
|
|
3386
3849
|
readonly type: "string";
|
|
3387
3850
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
3388
3851
|
};
|
|
3852
|
+
readonly title: {
|
|
3853
|
+
readonly type: "string";
|
|
3854
|
+
};
|
|
3855
|
+
readonly default: {
|
|
3856
|
+
readonly type: "string";
|
|
3857
|
+
};
|
|
3858
|
+
readonly minLength: {
|
|
3859
|
+
readonly type: "integer";
|
|
3860
|
+
};
|
|
3861
|
+
readonly maxLength: {
|
|
3862
|
+
readonly type: "integer";
|
|
3863
|
+
};
|
|
3389
3864
|
};
|
|
3390
3865
|
readonly required: readonly ["type", "format"];
|
|
3391
3866
|
readonly additionalProperties: false;
|
|
@@ -3416,6 +3891,12 @@ export declare const documentModelsRecord: {
|
|
|
3416
3891
|
readonly uniqueItems: {
|
|
3417
3892
|
readonly type: "boolean";
|
|
3418
3893
|
};
|
|
3894
|
+
readonly minItems: {
|
|
3895
|
+
readonly type: "integer";
|
|
3896
|
+
};
|
|
3897
|
+
readonly maxItems: {
|
|
3898
|
+
readonly type: "integer";
|
|
3899
|
+
};
|
|
3419
3900
|
};
|
|
3420
3901
|
readonly required: readonly ["type", "title", "items"];
|
|
3421
3902
|
readonly additionalProperties: false;
|
|
@@ -3601,6 +4082,25 @@ export declare const documentModelsRecord: {
|
|
|
3601
4082
|
readonly additionalProperties: false;
|
|
3602
4083
|
}, {
|
|
3603
4084
|
readonly anyOf: readonly [{
|
|
4085
|
+
readonly type: "object";
|
|
4086
|
+
readonly properties: {
|
|
4087
|
+
readonly type: {
|
|
4088
|
+
readonly type: "string";
|
|
4089
|
+
readonly const: "string";
|
|
4090
|
+
};
|
|
4091
|
+
readonly title: {
|
|
4092
|
+
readonly type: "string";
|
|
4093
|
+
};
|
|
4094
|
+
readonly const: {
|
|
4095
|
+
readonly type: "string";
|
|
4096
|
+
};
|
|
4097
|
+
readonly default: {
|
|
4098
|
+
readonly type: "string";
|
|
4099
|
+
};
|
|
4100
|
+
};
|
|
4101
|
+
readonly required: readonly ["type", "title", "const"];
|
|
4102
|
+
readonly additionalProperties: false;
|
|
4103
|
+
}, {
|
|
3604
4104
|
readonly type: "object";
|
|
3605
4105
|
readonly properties: {
|
|
3606
4106
|
readonly type: {
|
|
@@ -3660,6 +4160,18 @@ export declare const documentModelsRecord: {
|
|
|
3660
4160
|
readonly type: "string";
|
|
3661
4161
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
3662
4162
|
};
|
|
4163
|
+
readonly title: {
|
|
4164
|
+
readonly type: "string";
|
|
4165
|
+
};
|
|
4166
|
+
readonly default: {
|
|
4167
|
+
readonly type: "string";
|
|
4168
|
+
};
|
|
4169
|
+
readonly minLength: {
|
|
4170
|
+
readonly type: "integer";
|
|
4171
|
+
};
|
|
4172
|
+
readonly maxLength: {
|
|
4173
|
+
readonly type: "integer";
|
|
4174
|
+
};
|
|
3663
4175
|
};
|
|
3664
4176
|
readonly required: readonly ["type", "format"];
|
|
3665
4177
|
readonly additionalProperties: false;
|
|
@@ -3690,6 +4202,12 @@ export declare const documentModelsRecord: {
|
|
|
3690
4202
|
readonly uniqueItems: {
|
|
3691
4203
|
readonly type: "boolean";
|
|
3692
4204
|
};
|
|
4205
|
+
readonly minItems: {
|
|
4206
|
+
readonly type: "integer";
|
|
4207
|
+
};
|
|
4208
|
+
readonly maxItems: {
|
|
4209
|
+
readonly type: "integer";
|
|
4210
|
+
};
|
|
3693
4211
|
};
|
|
3694
4212
|
readonly required: readonly ["type", "title", "items"];
|
|
3695
4213
|
readonly additionalProperties: false;
|