@kubun/protocol 0.2.1 → 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 +147 -0
- package/lib/models/cluster.d.ts.map +1 -1
- package/lib/models/document.d.ts +434 -0
- package/lib/models/document.d.ts.map +1 -1
- package/lib/models/json-schema.d.ts +157 -0
- package/lib/models/json-schema.d.ts.map +1 -1
- package/lib/models/json-schema.js +38 -1
- package/lib/services/graph.d.ts +566 -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;
|
|
@@ -346,6 +377,25 @@ export declare const documentModelBase: {
|
|
|
346
377
|
readonly additionalProperties: false;
|
|
347
378
|
}, {
|
|
348
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
|
+
}, {
|
|
349
399
|
readonly type: "object";
|
|
350
400
|
readonly properties: {
|
|
351
401
|
readonly type: {
|
|
@@ -405,6 +455,18 @@ export declare const documentModelBase: {
|
|
|
405
455
|
readonly type: "string";
|
|
406
456
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
407
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
|
+
};
|
|
408
470
|
};
|
|
409
471
|
readonly required: readonly ["type", "format"];
|
|
410
472
|
readonly additionalProperties: false;
|
|
@@ -621,6 +683,25 @@ export declare const documentModelDefault: {
|
|
|
621
683
|
readonly additionalProperties: false;
|
|
622
684
|
}, {
|
|
623
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
|
+
}, {
|
|
624
705
|
readonly type: "object";
|
|
625
706
|
readonly properties: {
|
|
626
707
|
readonly type: {
|
|
@@ -680,6 +761,18 @@ export declare const documentModelDefault: {
|
|
|
680
761
|
readonly type: "string";
|
|
681
762
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
682
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
|
+
};
|
|
683
776
|
};
|
|
684
777
|
readonly required: readonly ["type", "format"];
|
|
685
778
|
readonly additionalProperties: false;
|
|
@@ -896,6 +989,25 @@ export declare const documentModelInterface: {
|
|
|
896
989
|
readonly additionalProperties: false;
|
|
897
990
|
}, {
|
|
898
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
|
+
}, {
|
|
899
1011
|
readonly type: "object";
|
|
900
1012
|
readonly properties: {
|
|
901
1013
|
readonly type: {
|
|
@@ -955,6 +1067,18 @@ export declare const documentModelInterface: {
|
|
|
955
1067
|
readonly type: "string";
|
|
956
1068
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
957
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
|
+
};
|
|
958
1082
|
};
|
|
959
1083
|
readonly required: readonly ["type", "format"];
|
|
960
1084
|
readonly additionalProperties: false;
|
|
@@ -1177,6 +1301,25 @@ export declare const documentModelUnique: {
|
|
|
1177
1301
|
readonly additionalProperties: false;
|
|
1178
1302
|
}, {
|
|
1179
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
|
+
}, {
|
|
1180
1323
|
readonly type: "object";
|
|
1181
1324
|
readonly properties: {
|
|
1182
1325
|
readonly type: {
|
|
@@ -1236,6 +1379,18 @@ export declare const documentModelUnique: {
|
|
|
1236
1379
|
readonly type: "string";
|
|
1237
1380
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
1238
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
|
+
};
|
|
1239
1394
|
};
|
|
1240
1395
|
readonly required: readonly ["type", "format"];
|
|
1241
1396
|
readonly additionalProperties: false;
|
|
@@ -1454,6 +1609,25 @@ export declare const documentModel: {
|
|
|
1454
1609
|
readonly additionalProperties: false;
|
|
1455
1610
|
}, {
|
|
1456
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
|
+
}, {
|
|
1457
1631
|
readonly type: "object";
|
|
1458
1632
|
readonly properties: {
|
|
1459
1633
|
readonly type: {
|
|
@@ -1513,6 +1687,18 @@ export declare const documentModel: {
|
|
|
1513
1687
|
readonly type: "string";
|
|
1514
1688
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
1515
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
|
+
};
|
|
1516
1702
|
};
|
|
1517
1703
|
readonly required: readonly ["type", "format"];
|
|
1518
1704
|
readonly additionalProperties: false;
|
|
@@ -1728,6 +1914,25 @@ export declare const documentModel: {
|
|
|
1728
1914
|
readonly additionalProperties: false;
|
|
1729
1915
|
}, {
|
|
1730
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
|
+
}, {
|
|
1731
1936
|
readonly type: "object";
|
|
1732
1937
|
readonly properties: {
|
|
1733
1938
|
readonly type: {
|
|
@@ -1787,6 +1992,18 @@ export declare const documentModel: {
|
|
|
1787
1992
|
readonly type: "string";
|
|
1788
1993
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
1789
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
|
+
};
|
|
1790
2007
|
};
|
|
1791
2008
|
readonly required: readonly ["type", "format"];
|
|
1792
2009
|
readonly additionalProperties: false;
|
|
@@ -2008,6 +2225,25 @@ export declare const documentModel: {
|
|
|
2008
2225
|
readonly additionalProperties: false;
|
|
2009
2226
|
}, {
|
|
2010
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
|
+
}, {
|
|
2011
2247
|
readonly type: "object";
|
|
2012
2248
|
readonly properties: {
|
|
2013
2249
|
readonly type: {
|
|
@@ -2067,6 +2303,18 @@ export declare const documentModel: {
|
|
|
2067
2303
|
readonly type: "string";
|
|
2068
2304
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
2069
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
|
+
};
|
|
2070
2318
|
};
|
|
2071
2319
|
readonly required: readonly ["type", "format"];
|
|
2072
2320
|
readonly additionalProperties: false;
|
|
@@ -2289,6 +2537,25 @@ export declare const documentModelsCluster: {
|
|
|
2289
2537
|
readonly additionalProperties: false;
|
|
2290
2538
|
}, {
|
|
2291
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
|
+
}, {
|
|
2292
2559
|
readonly type: "object";
|
|
2293
2560
|
readonly properties: {
|
|
2294
2561
|
readonly type: {
|
|
@@ -2348,6 +2615,18 @@ export declare const documentModelsCluster: {
|
|
|
2348
2615
|
readonly type: "string";
|
|
2349
2616
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
2350
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
|
+
};
|
|
2351
2630
|
};
|
|
2352
2631
|
readonly required: readonly ["type", "format"];
|
|
2353
2632
|
readonly additionalProperties: false;
|
|
@@ -2563,6 +2842,25 @@ export declare const documentModelsCluster: {
|
|
|
2563
2842
|
readonly additionalProperties: false;
|
|
2564
2843
|
}, {
|
|
2565
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
|
+
}, {
|
|
2566
2864
|
readonly type: "object";
|
|
2567
2865
|
readonly properties: {
|
|
2568
2866
|
readonly type: {
|
|
@@ -2622,6 +2920,18 @@ export declare const documentModelsCluster: {
|
|
|
2622
2920
|
readonly type: "string";
|
|
2623
2921
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
2624
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
|
+
};
|
|
2625
2935
|
};
|
|
2626
2936
|
readonly required: readonly ["type", "format"];
|
|
2627
2937
|
readonly additionalProperties: false;
|
|
@@ -2843,6 +3153,25 @@ export declare const documentModelsCluster: {
|
|
|
2843
3153
|
readonly additionalProperties: false;
|
|
2844
3154
|
}, {
|
|
2845
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
|
+
}, {
|
|
2846
3175
|
readonly type: "object";
|
|
2847
3176
|
readonly properties: {
|
|
2848
3177
|
readonly type: {
|
|
@@ -2902,6 +3231,18 @@ export declare const documentModelsCluster: {
|
|
|
2902
3231
|
readonly type: "string";
|
|
2903
3232
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
2904
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
|
+
};
|
|
2905
3246
|
};
|
|
2906
3247
|
readonly required: readonly ["type", "format"];
|
|
2907
3248
|
readonly additionalProperties: false;
|
|
@@ -3125,6 +3466,25 @@ export declare const documentModelsRecord: {
|
|
|
3125
3466
|
readonly additionalProperties: false;
|
|
3126
3467
|
}, {
|
|
3127
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
|
+
}, {
|
|
3128
3488
|
readonly type: "object";
|
|
3129
3489
|
readonly properties: {
|
|
3130
3490
|
readonly type: {
|
|
@@ -3184,6 +3544,18 @@ export declare const documentModelsRecord: {
|
|
|
3184
3544
|
readonly type: "string";
|
|
3185
3545
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
3186
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
|
+
};
|
|
3187
3559
|
};
|
|
3188
3560
|
readonly required: readonly ["type", "format"];
|
|
3189
3561
|
readonly additionalProperties: false;
|
|
@@ -3399,6 +3771,25 @@ export declare const documentModelsRecord: {
|
|
|
3399
3771
|
readonly additionalProperties: false;
|
|
3400
3772
|
}, {
|
|
3401
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
|
+
}, {
|
|
3402
3793
|
readonly type: "object";
|
|
3403
3794
|
readonly properties: {
|
|
3404
3795
|
readonly type: {
|
|
@@ -3458,6 +3849,18 @@ export declare const documentModelsRecord: {
|
|
|
3458
3849
|
readonly type: "string";
|
|
3459
3850
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
3460
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
|
+
};
|
|
3461
3864
|
};
|
|
3462
3865
|
readonly required: readonly ["type", "format"];
|
|
3463
3866
|
readonly additionalProperties: false;
|
|
@@ -3679,6 +4082,25 @@ export declare const documentModelsRecord: {
|
|
|
3679
4082
|
readonly additionalProperties: false;
|
|
3680
4083
|
}, {
|
|
3681
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
|
+
}, {
|
|
3682
4104
|
readonly type: "object";
|
|
3683
4105
|
readonly properties: {
|
|
3684
4106
|
readonly type: {
|
|
@@ -3738,6 +4160,18 @@ export declare const documentModelsRecord: {
|
|
|
3738
4160
|
readonly type: "string";
|
|
3739
4161
|
readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
|
|
3740
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
|
+
};
|
|
3741
4175
|
};
|
|
3742
4176
|
readonly required: readonly ["type", "format"];
|
|
3743
4177
|
readonly additionalProperties: false;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"document.d.ts","sourceRoot":"","sources":["../../src/models/document.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAU,MAAM,gBAAgB,CAAA;AAKxD,eAAO,MAAM,oBAAoB;;;CAA6D,CAAA;AAE9F,eAAO,MAAM,iBAAiB;;;;;;;;;;;;CAMH,CAAA;AAC3B,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,CAAA;AAErE,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;CAGJ,CAAA;AAC3B,MAAM,MAAM,kBAAkB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,CAAA;AAEtE,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"document.d.ts","sourceRoot":"","sources":["../../src/models/document.ts"],"names":[],"mappings":"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"}
|