@kubun/protocol 0.1.0 → 0.2.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/lib/index.d.ts +8 -6
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +1 -0
- package/lib/models/cluster.d.ts +1274 -3
- package/lib/models/cluster.d.ts.map +1 -1
- package/lib/models/cluster.js +106 -9
- package/lib/models/document.d.ts +442 -247
- package/lib/models/document.d.ts.map +1 -1
- package/lib/models/document.js +12 -14
- package/lib/models/graph.d.ts +3 -2
- package/lib/models/graph.d.ts.map +1 -1
- package/lib/models/graph.js +4 -7
- package/lib/models/json-schema.d.ts +92 -43
- package/lib/models/json-schema.d.ts.map +1 -1
- package/lib/models/json-schema.js +24 -16
- package/lib/models/value.d.ts.map +1 -1
- package/lib/models/value.js +1 -0
- package/lib/services/document.d.ts +86 -0
- package/lib/services/document.d.ts.map +1 -0
- package/lib/services/document.js +50 -0
- package/lib/services/graph.d.ts +4346 -1463
- package/lib/services/graph.d.ts.map +1 -1
- package/lib/services/graph.js +76 -14
- package/package.json +5 -4
package/lib/models/document.d.ts
CHANGED
|
@@ -64,10 +64,10 @@ export declare const documentModelSchema: {
|
|
|
64
64
|
readonly default: {
|
|
65
65
|
readonly type: "integer";
|
|
66
66
|
};
|
|
67
|
-
readonly
|
|
67
|
+
readonly minimum: {
|
|
68
68
|
readonly type: "integer";
|
|
69
69
|
};
|
|
70
|
-
readonly
|
|
70
|
+
readonly maximum: {
|
|
71
71
|
readonly type: "integer";
|
|
72
72
|
};
|
|
73
73
|
};
|
|
@@ -132,10 +132,12 @@ export declare const documentModelSchema: {
|
|
|
132
132
|
readonly type: "array";
|
|
133
133
|
readonly items: {
|
|
134
134
|
readonly type: "string";
|
|
135
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
135
136
|
};
|
|
136
137
|
};
|
|
137
138
|
readonly default: {
|
|
138
139
|
readonly type: "string";
|
|
140
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
139
141
|
};
|
|
140
142
|
};
|
|
141
143
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -166,6 +168,7 @@ export declare const documentModelSchema: {
|
|
|
166
168
|
};
|
|
167
169
|
readonly title: {
|
|
168
170
|
readonly type: "string";
|
|
171
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
169
172
|
};
|
|
170
173
|
readonly items: {
|
|
171
174
|
readonly type: "object";
|
|
@@ -177,6 +180,9 @@ export declare const documentModelSchema: {
|
|
|
177
180
|
readonly required: readonly ["$ref"];
|
|
178
181
|
readonly additionalProperties: false;
|
|
179
182
|
};
|
|
183
|
+
readonly uniqueItems: {
|
|
184
|
+
readonly type: "boolean";
|
|
185
|
+
};
|
|
180
186
|
};
|
|
181
187
|
readonly required: readonly ["type", "title", "items"];
|
|
182
188
|
readonly additionalProperties: false;
|
|
@@ -185,6 +191,7 @@ export declare const documentModelSchema: {
|
|
|
185
191
|
readonly properties: {
|
|
186
192
|
readonly title: {
|
|
187
193
|
readonly type: "string";
|
|
194
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
188
195
|
};
|
|
189
196
|
readonly type: {
|
|
190
197
|
readonly type: "string";
|
|
@@ -192,16 +199,19 @@ export declare const documentModelSchema: {
|
|
|
192
199
|
};
|
|
193
200
|
readonly properties: {
|
|
194
201
|
readonly type: "object";
|
|
195
|
-
readonly
|
|
196
|
-
readonly
|
|
197
|
-
|
|
198
|
-
readonly
|
|
199
|
-
readonly
|
|
202
|
+
readonly patternProperties: {
|
|
203
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
204
|
+
readonly type: "object";
|
|
205
|
+
readonly properties: {
|
|
206
|
+
readonly $ref: {
|
|
207
|
+
readonly type: "string";
|
|
208
|
+
};
|
|
200
209
|
};
|
|
210
|
+
readonly required: readonly ["$ref"];
|
|
211
|
+
readonly additionalProperties: false;
|
|
201
212
|
};
|
|
202
|
-
readonly required: readonly ["$ref"];
|
|
203
|
-
readonly additionalProperties: false;
|
|
204
213
|
};
|
|
214
|
+
readonly additionalProperties: false;
|
|
205
215
|
};
|
|
206
216
|
readonly required: {
|
|
207
217
|
readonly type: "array";
|
|
@@ -225,16 +235,19 @@ export declare const documentModelSchema: {
|
|
|
225
235
|
};
|
|
226
236
|
readonly properties: {
|
|
227
237
|
readonly type: "object";
|
|
228
|
-
readonly
|
|
229
|
-
readonly
|
|
230
|
-
|
|
231
|
-
readonly
|
|
232
|
-
readonly
|
|
238
|
+
readonly patternProperties: {
|
|
239
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
240
|
+
readonly type: "object";
|
|
241
|
+
readonly properties: {
|
|
242
|
+
readonly $ref: {
|
|
243
|
+
readonly type: "string";
|
|
244
|
+
};
|
|
233
245
|
};
|
|
246
|
+
readonly required: readonly ["$ref"];
|
|
247
|
+
readonly additionalProperties: false;
|
|
234
248
|
};
|
|
235
|
-
readonly required: readonly ["$ref"];
|
|
236
|
-
readonly additionalProperties: false;
|
|
237
249
|
};
|
|
250
|
+
readonly additionalProperties: false;
|
|
238
251
|
};
|
|
239
252
|
readonly required: {
|
|
240
253
|
readonly type: "array";
|
|
@@ -255,6 +268,7 @@ export declare const documentModelBase: {
|
|
|
255
268
|
readonly properties: {
|
|
256
269
|
readonly name: {
|
|
257
270
|
readonly type: "string";
|
|
271
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
258
272
|
};
|
|
259
273
|
readonly version: {
|
|
260
274
|
readonly type: "string";
|
|
@@ -296,10 +310,10 @@ export declare const documentModelBase: {
|
|
|
296
310
|
readonly default: {
|
|
297
311
|
readonly type: "integer";
|
|
298
312
|
};
|
|
299
|
-
readonly
|
|
313
|
+
readonly minimum: {
|
|
300
314
|
readonly type: "integer";
|
|
301
315
|
};
|
|
302
|
-
readonly
|
|
316
|
+
readonly maximum: {
|
|
303
317
|
readonly type: "integer";
|
|
304
318
|
};
|
|
305
319
|
};
|
|
@@ -364,10 +378,12 @@ export declare const documentModelBase: {
|
|
|
364
378
|
readonly type: "array";
|
|
365
379
|
readonly items: {
|
|
366
380
|
readonly type: "string";
|
|
381
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
367
382
|
};
|
|
368
383
|
};
|
|
369
384
|
readonly default: {
|
|
370
385
|
readonly type: "string";
|
|
386
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
371
387
|
};
|
|
372
388
|
};
|
|
373
389
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -398,6 +414,7 @@ export declare const documentModelBase: {
|
|
|
398
414
|
};
|
|
399
415
|
readonly title: {
|
|
400
416
|
readonly type: "string";
|
|
417
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
401
418
|
};
|
|
402
419
|
readonly items: {
|
|
403
420
|
readonly type: "object";
|
|
@@ -409,6 +426,9 @@ export declare const documentModelBase: {
|
|
|
409
426
|
readonly required: readonly ["$ref"];
|
|
410
427
|
readonly additionalProperties: false;
|
|
411
428
|
};
|
|
429
|
+
readonly uniqueItems: {
|
|
430
|
+
readonly type: "boolean";
|
|
431
|
+
};
|
|
412
432
|
};
|
|
413
433
|
readonly required: readonly ["type", "title", "items"];
|
|
414
434
|
readonly additionalProperties: false;
|
|
@@ -417,6 +437,7 @@ export declare const documentModelBase: {
|
|
|
417
437
|
readonly properties: {
|
|
418
438
|
readonly title: {
|
|
419
439
|
readonly type: "string";
|
|
440
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
420
441
|
};
|
|
421
442
|
readonly type: {
|
|
422
443
|
readonly type: "string";
|
|
@@ -424,16 +445,19 @@ export declare const documentModelBase: {
|
|
|
424
445
|
};
|
|
425
446
|
readonly properties: {
|
|
426
447
|
readonly type: "object";
|
|
427
|
-
readonly
|
|
428
|
-
readonly
|
|
429
|
-
|
|
430
|
-
readonly
|
|
431
|
-
readonly
|
|
448
|
+
readonly patternProperties: {
|
|
449
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
450
|
+
readonly type: "object";
|
|
451
|
+
readonly properties: {
|
|
452
|
+
readonly $ref: {
|
|
453
|
+
readonly type: "string";
|
|
454
|
+
};
|
|
432
455
|
};
|
|
456
|
+
readonly required: readonly ["$ref"];
|
|
457
|
+
readonly additionalProperties: false;
|
|
433
458
|
};
|
|
434
|
-
readonly required: readonly ["$ref"];
|
|
435
|
-
readonly additionalProperties: false;
|
|
436
459
|
};
|
|
460
|
+
readonly additionalProperties: false;
|
|
437
461
|
};
|
|
438
462
|
readonly required: {
|
|
439
463
|
readonly type: "array";
|
|
@@ -457,16 +481,19 @@ export declare const documentModelBase: {
|
|
|
457
481
|
};
|
|
458
482
|
readonly properties: {
|
|
459
483
|
readonly type: "object";
|
|
460
|
-
readonly
|
|
461
|
-
readonly
|
|
462
|
-
|
|
463
|
-
readonly
|
|
464
|
-
readonly
|
|
484
|
+
readonly patternProperties: {
|
|
485
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
486
|
+
readonly type: "object";
|
|
487
|
+
readonly properties: {
|
|
488
|
+
readonly $ref: {
|
|
489
|
+
readonly type: "string";
|
|
490
|
+
};
|
|
465
491
|
};
|
|
492
|
+
readonly required: readonly ["$ref"];
|
|
493
|
+
readonly additionalProperties: false;
|
|
466
494
|
};
|
|
467
|
-
readonly required: readonly ["$ref"];
|
|
468
|
-
readonly additionalProperties: false;
|
|
469
495
|
};
|
|
496
|
+
readonly additionalProperties: false;
|
|
470
497
|
};
|
|
471
498
|
readonly required: {
|
|
472
499
|
readonly type: "array";
|
|
@@ -501,15 +528,16 @@ export declare const documentModelBase: {
|
|
|
501
528
|
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta"];
|
|
502
529
|
readonly additionalProperties: false;
|
|
503
530
|
};
|
|
504
|
-
export declare const
|
|
531
|
+
export declare const documentModelDefault: {
|
|
505
532
|
readonly type: "object";
|
|
506
533
|
readonly properties: {
|
|
507
534
|
readonly behavior: {
|
|
508
535
|
readonly type: "string";
|
|
509
|
-
readonly const: "
|
|
536
|
+
readonly const: "default";
|
|
510
537
|
};
|
|
511
538
|
readonly name: {
|
|
512
539
|
readonly type: "string";
|
|
540
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
513
541
|
};
|
|
514
542
|
readonly version: {
|
|
515
543
|
readonly type: "string";
|
|
@@ -551,10 +579,10 @@ export declare const documentModelInterface: {
|
|
|
551
579
|
readonly default: {
|
|
552
580
|
readonly type: "integer";
|
|
553
581
|
};
|
|
554
|
-
readonly
|
|
582
|
+
readonly minimum: {
|
|
555
583
|
readonly type: "integer";
|
|
556
584
|
};
|
|
557
|
-
readonly
|
|
585
|
+
readonly maximum: {
|
|
558
586
|
readonly type: "integer";
|
|
559
587
|
};
|
|
560
588
|
};
|
|
@@ -619,10 +647,12 @@ export declare const documentModelInterface: {
|
|
|
619
647
|
readonly type: "array";
|
|
620
648
|
readonly items: {
|
|
621
649
|
readonly type: "string";
|
|
650
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
622
651
|
};
|
|
623
652
|
};
|
|
624
653
|
readonly default: {
|
|
625
654
|
readonly type: "string";
|
|
655
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
626
656
|
};
|
|
627
657
|
};
|
|
628
658
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -653,6 +683,7 @@ export declare const documentModelInterface: {
|
|
|
653
683
|
};
|
|
654
684
|
readonly title: {
|
|
655
685
|
readonly type: "string";
|
|
686
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
656
687
|
};
|
|
657
688
|
readonly items: {
|
|
658
689
|
readonly type: "object";
|
|
@@ -664,6 +695,9 @@ export declare const documentModelInterface: {
|
|
|
664
695
|
readonly required: readonly ["$ref"];
|
|
665
696
|
readonly additionalProperties: false;
|
|
666
697
|
};
|
|
698
|
+
readonly uniqueItems: {
|
|
699
|
+
readonly type: "boolean";
|
|
700
|
+
};
|
|
667
701
|
};
|
|
668
702
|
readonly required: readonly ["type", "title", "items"];
|
|
669
703
|
readonly additionalProperties: false;
|
|
@@ -672,6 +706,7 @@ export declare const documentModelInterface: {
|
|
|
672
706
|
readonly properties: {
|
|
673
707
|
readonly title: {
|
|
674
708
|
readonly type: "string";
|
|
709
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
675
710
|
};
|
|
676
711
|
readonly type: {
|
|
677
712
|
readonly type: "string";
|
|
@@ -679,16 +714,19 @@ export declare const documentModelInterface: {
|
|
|
679
714
|
};
|
|
680
715
|
readonly properties: {
|
|
681
716
|
readonly type: "object";
|
|
682
|
-
readonly
|
|
683
|
-
readonly
|
|
684
|
-
|
|
685
|
-
readonly
|
|
686
|
-
readonly
|
|
717
|
+
readonly patternProperties: {
|
|
718
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
719
|
+
readonly type: "object";
|
|
720
|
+
readonly properties: {
|
|
721
|
+
readonly $ref: {
|
|
722
|
+
readonly type: "string";
|
|
723
|
+
};
|
|
687
724
|
};
|
|
725
|
+
readonly required: readonly ["$ref"];
|
|
726
|
+
readonly additionalProperties: false;
|
|
688
727
|
};
|
|
689
|
-
readonly required: readonly ["$ref"];
|
|
690
|
-
readonly additionalProperties: false;
|
|
691
728
|
};
|
|
729
|
+
readonly additionalProperties: false;
|
|
692
730
|
};
|
|
693
731
|
readonly required: {
|
|
694
732
|
readonly type: "array";
|
|
@@ -712,16 +750,19 @@ export declare const documentModelInterface: {
|
|
|
712
750
|
};
|
|
713
751
|
readonly properties: {
|
|
714
752
|
readonly type: "object";
|
|
715
|
-
readonly
|
|
716
|
-
readonly
|
|
717
|
-
|
|
718
|
-
readonly
|
|
719
|
-
readonly
|
|
753
|
+
readonly patternProperties: {
|
|
754
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
755
|
+
readonly type: "object";
|
|
756
|
+
readonly properties: {
|
|
757
|
+
readonly $ref: {
|
|
758
|
+
readonly type: "string";
|
|
759
|
+
};
|
|
720
760
|
};
|
|
761
|
+
readonly required: readonly ["$ref"];
|
|
762
|
+
readonly additionalProperties: false;
|
|
721
763
|
};
|
|
722
|
-
readonly required: readonly ["$ref"];
|
|
723
|
-
readonly additionalProperties: false;
|
|
724
764
|
};
|
|
765
|
+
readonly additionalProperties: false;
|
|
725
766
|
};
|
|
726
767
|
readonly required: {
|
|
727
768
|
readonly type: "array";
|
|
@@ -756,15 +797,16 @@ export declare const documentModelInterface: {
|
|
|
756
797
|
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior"];
|
|
757
798
|
readonly additionalProperties: false;
|
|
758
799
|
};
|
|
759
|
-
export declare const
|
|
800
|
+
export declare const documentModelInterface: {
|
|
760
801
|
readonly type: "object";
|
|
761
802
|
readonly properties: {
|
|
762
803
|
readonly behavior: {
|
|
763
804
|
readonly type: "string";
|
|
764
|
-
readonly const: "
|
|
805
|
+
readonly const: "interface";
|
|
765
806
|
};
|
|
766
807
|
readonly name: {
|
|
767
808
|
readonly type: "string";
|
|
809
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
768
810
|
};
|
|
769
811
|
readonly version: {
|
|
770
812
|
readonly type: "string";
|
|
@@ -806,10 +848,10 @@ export declare const documentModelList: {
|
|
|
806
848
|
readonly default: {
|
|
807
849
|
readonly type: "integer";
|
|
808
850
|
};
|
|
809
|
-
readonly
|
|
851
|
+
readonly minimum: {
|
|
810
852
|
readonly type: "integer";
|
|
811
853
|
};
|
|
812
|
-
readonly
|
|
854
|
+
readonly maximum: {
|
|
813
855
|
readonly type: "integer";
|
|
814
856
|
};
|
|
815
857
|
};
|
|
@@ -874,10 +916,12 @@ export declare const documentModelList: {
|
|
|
874
916
|
readonly type: "array";
|
|
875
917
|
readonly items: {
|
|
876
918
|
readonly type: "string";
|
|
919
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
877
920
|
};
|
|
878
921
|
};
|
|
879
922
|
readonly default: {
|
|
880
923
|
readonly type: "string";
|
|
924
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
881
925
|
};
|
|
882
926
|
};
|
|
883
927
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -908,6 +952,7 @@ export declare const documentModelList: {
|
|
|
908
952
|
};
|
|
909
953
|
readonly title: {
|
|
910
954
|
readonly type: "string";
|
|
955
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
911
956
|
};
|
|
912
957
|
readonly items: {
|
|
913
958
|
readonly type: "object";
|
|
@@ -919,6 +964,9 @@ export declare const documentModelList: {
|
|
|
919
964
|
readonly required: readonly ["$ref"];
|
|
920
965
|
readonly additionalProperties: false;
|
|
921
966
|
};
|
|
967
|
+
readonly uniqueItems: {
|
|
968
|
+
readonly type: "boolean";
|
|
969
|
+
};
|
|
922
970
|
};
|
|
923
971
|
readonly required: readonly ["type", "title", "items"];
|
|
924
972
|
readonly additionalProperties: false;
|
|
@@ -927,6 +975,7 @@ export declare const documentModelList: {
|
|
|
927
975
|
readonly properties: {
|
|
928
976
|
readonly title: {
|
|
929
977
|
readonly type: "string";
|
|
978
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
930
979
|
};
|
|
931
980
|
readonly type: {
|
|
932
981
|
readonly type: "string";
|
|
@@ -934,16 +983,19 @@ export declare const documentModelList: {
|
|
|
934
983
|
};
|
|
935
984
|
readonly properties: {
|
|
936
985
|
readonly type: "object";
|
|
937
|
-
readonly
|
|
938
|
-
readonly
|
|
939
|
-
|
|
940
|
-
readonly
|
|
941
|
-
readonly
|
|
986
|
+
readonly patternProperties: {
|
|
987
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
988
|
+
readonly type: "object";
|
|
989
|
+
readonly properties: {
|
|
990
|
+
readonly $ref: {
|
|
991
|
+
readonly type: "string";
|
|
992
|
+
};
|
|
942
993
|
};
|
|
994
|
+
readonly required: readonly ["$ref"];
|
|
995
|
+
readonly additionalProperties: false;
|
|
943
996
|
};
|
|
944
|
-
readonly required: readonly ["$ref"];
|
|
945
|
-
readonly additionalProperties: false;
|
|
946
997
|
};
|
|
998
|
+
readonly additionalProperties: false;
|
|
947
999
|
};
|
|
948
1000
|
readonly required: {
|
|
949
1001
|
readonly type: "array";
|
|
@@ -967,16 +1019,19 @@ export declare const documentModelList: {
|
|
|
967
1019
|
};
|
|
968
1020
|
readonly properties: {
|
|
969
1021
|
readonly type: "object";
|
|
970
|
-
readonly
|
|
971
|
-
readonly
|
|
972
|
-
|
|
973
|
-
readonly
|
|
974
|
-
readonly
|
|
1022
|
+
readonly patternProperties: {
|
|
1023
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
1024
|
+
readonly type: "object";
|
|
1025
|
+
readonly properties: {
|
|
1026
|
+
readonly $ref: {
|
|
1027
|
+
readonly type: "string";
|
|
1028
|
+
};
|
|
975
1029
|
};
|
|
1030
|
+
readonly required: readonly ["$ref"];
|
|
1031
|
+
readonly additionalProperties: false;
|
|
976
1032
|
};
|
|
977
|
-
readonly required: readonly ["$ref"];
|
|
978
|
-
readonly additionalProperties: false;
|
|
979
1033
|
};
|
|
1034
|
+
readonly additionalProperties: false;
|
|
980
1035
|
};
|
|
981
1036
|
readonly required: {
|
|
982
1037
|
readonly type: "array";
|
|
@@ -1011,14 +1066,14 @@ export declare const documentModelList: {
|
|
|
1011
1066
|
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior"];
|
|
1012
1067
|
readonly additionalProperties: false;
|
|
1013
1068
|
};
|
|
1014
|
-
export declare const
|
|
1069
|
+
export declare const documentModelUnique: {
|
|
1015
1070
|
readonly type: "object";
|
|
1016
1071
|
readonly properties: {
|
|
1017
1072
|
readonly behavior: {
|
|
1018
1073
|
readonly type: "string";
|
|
1019
|
-
readonly const: "
|
|
1074
|
+
readonly const: "unique";
|
|
1020
1075
|
};
|
|
1021
|
-
readonly
|
|
1076
|
+
readonly uniqueFields: {
|
|
1022
1077
|
readonly type: "array";
|
|
1023
1078
|
readonly items: {
|
|
1024
1079
|
readonly type: "string";
|
|
@@ -1026,6 +1081,7 @@ export declare const documentModelSet: {
|
|
|
1026
1081
|
};
|
|
1027
1082
|
readonly name: {
|
|
1028
1083
|
readonly type: "string";
|
|
1084
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1029
1085
|
};
|
|
1030
1086
|
readonly version: {
|
|
1031
1087
|
readonly type: "string";
|
|
@@ -1067,10 +1123,10 @@ export declare const documentModelSet: {
|
|
|
1067
1123
|
readonly default: {
|
|
1068
1124
|
readonly type: "integer";
|
|
1069
1125
|
};
|
|
1070
|
-
readonly
|
|
1126
|
+
readonly minimum: {
|
|
1071
1127
|
readonly type: "integer";
|
|
1072
1128
|
};
|
|
1073
|
-
readonly
|
|
1129
|
+
readonly maximum: {
|
|
1074
1130
|
readonly type: "integer";
|
|
1075
1131
|
};
|
|
1076
1132
|
};
|
|
@@ -1135,10 +1191,12 @@ export declare const documentModelSet: {
|
|
|
1135
1191
|
readonly type: "array";
|
|
1136
1192
|
readonly items: {
|
|
1137
1193
|
readonly type: "string";
|
|
1194
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
1138
1195
|
};
|
|
1139
1196
|
};
|
|
1140
1197
|
readonly default: {
|
|
1141
1198
|
readonly type: "string";
|
|
1199
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
1142
1200
|
};
|
|
1143
1201
|
};
|
|
1144
1202
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -1169,6 +1227,7 @@ export declare const documentModelSet: {
|
|
|
1169
1227
|
};
|
|
1170
1228
|
readonly title: {
|
|
1171
1229
|
readonly type: "string";
|
|
1230
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1172
1231
|
};
|
|
1173
1232
|
readonly items: {
|
|
1174
1233
|
readonly type: "object";
|
|
@@ -1180,6 +1239,9 @@ export declare const documentModelSet: {
|
|
|
1180
1239
|
readonly required: readonly ["$ref"];
|
|
1181
1240
|
readonly additionalProperties: false;
|
|
1182
1241
|
};
|
|
1242
|
+
readonly uniqueItems: {
|
|
1243
|
+
readonly type: "boolean";
|
|
1244
|
+
};
|
|
1183
1245
|
};
|
|
1184
1246
|
readonly required: readonly ["type", "title", "items"];
|
|
1185
1247
|
readonly additionalProperties: false;
|
|
@@ -1188,6 +1250,7 @@ export declare const documentModelSet: {
|
|
|
1188
1250
|
readonly properties: {
|
|
1189
1251
|
readonly title: {
|
|
1190
1252
|
readonly type: "string";
|
|
1253
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1191
1254
|
};
|
|
1192
1255
|
readonly type: {
|
|
1193
1256
|
readonly type: "string";
|
|
@@ -1195,16 +1258,19 @@ export declare const documentModelSet: {
|
|
|
1195
1258
|
};
|
|
1196
1259
|
readonly properties: {
|
|
1197
1260
|
readonly type: "object";
|
|
1198
|
-
readonly
|
|
1199
|
-
readonly
|
|
1200
|
-
|
|
1201
|
-
readonly
|
|
1202
|
-
readonly
|
|
1261
|
+
readonly patternProperties: {
|
|
1262
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
1263
|
+
readonly type: "object";
|
|
1264
|
+
readonly properties: {
|
|
1265
|
+
readonly $ref: {
|
|
1266
|
+
readonly type: "string";
|
|
1267
|
+
};
|
|
1203
1268
|
};
|
|
1269
|
+
readonly required: readonly ["$ref"];
|
|
1270
|
+
readonly additionalProperties: false;
|
|
1204
1271
|
};
|
|
1205
|
-
readonly required: readonly ["$ref"];
|
|
1206
|
-
readonly additionalProperties: false;
|
|
1207
1272
|
};
|
|
1273
|
+
readonly additionalProperties: false;
|
|
1208
1274
|
};
|
|
1209
1275
|
readonly required: {
|
|
1210
1276
|
readonly type: "array";
|
|
@@ -1228,16 +1294,19 @@ export declare const documentModelSet: {
|
|
|
1228
1294
|
};
|
|
1229
1295
|
readonly properties: {
|
|
1230
1296
|
readonly type: "object";
|
|
1231
|
-
readonly
|
|
1232
|
-
readonly
|
|
1233
|
-
|
|
1234
|
-
readonly
|
|
1235
|
-
readonly
|
|
1297
|
+
readonly patternProperties: {
|
|
1298
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
1299
|
+
readonly type: "object";
|
|
1300
|
+
readonly properties: {
|
|
1301
|
+
readonly $ref: {
|
|
1302
|
+
readonly type: "string";
|
|
1303
|
+
};
|
|
1236
1304
|
};
|
|
1305
|
+
readonly required: readonly ["$ref"];
|
|
1306
|
+
readonly additionalProperties: false;
|
|
1237
1307
|
};
|
|
1238
|
-
readonly required: readonly ["$ref"];
|
|
1239
|
-
readonly additionalProperties: false;
|
|
1240
1308
|
};
|
|
1309
|
+
readonly additionalProperties: false;
|
|
1241
1310
|
};
|
|
1242
1311
|
readonly required: {
|
|
1243
1312
|
readonly type: "array";
|
|
@@ -1269,7 +1338,7 @@ export declare const documentModelSet: {
|
|
|
1269
1338
|
};
|
|
1270
1339
|
};
|
|
1271
1340
|
};
|
|
1272
|
-
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior", "
|
|
1341
|
+
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior", "uniqueFields"];
|
|
1273
1342
|
readonly additionalProperties: false;
|
|
1274
1343
|
};
|
|
1275
1344
|
export declare const documentModel: {
|
|
@@ -1279,10 +1348,11 @@ export declare const documentModel: {
|
|
|
1279
1348
|
readonly properties: {
|
|
1280
1349
|
readonly behavior: {
|
|
1281
1350
|
readonly type: "string";
|
|
1282
|
-
readonly const: "
|
|
1351
|
+
readonly const: "default";
|
|
1283
1352
|
};
|
|
1284
1353
|
readonly name: {
|
|
1285
1354
|
readonly type: "string";
|
|
1355
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1286
1356
|
};
|
|
1287
1357
|
readonly version: {
|
|
1288
1358
|
readonly type: "string";
|
|
@@ -1324,10 +1394,10 @@ export declare const documentModel: {
|
|
|
1324
1394
|
readonly default: {
|
|
1325
1395
|
readonly type: "integer";
|
|
1326
1396
|
};
|
|
1327
|
-
readonly
|
|
1397
|
+
readonly minimum: {
|
|
1328
1398
|
readonly type: "integer";
|
|
1329
1399
|
};
|
|
1330
|
-
readonly
|
|
1400
|
+
readonly maximum: {
|
|
1331
1401
|
readonly type: "integer";
|
|
1332
1402
|
};
|
|
1333
1403
|
};
|
|
@@ -1392,10 +1462,12 @@ export declare const documentModel: {
|
|
|
1392
1462
|
readonly type: "array";
|
|
1393
1463
|
readonly items: {
|
|
1394
1464
|
readonly type: "string";
|
|
1465
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
1395
1466
|
};
|
|
1396
1467
|
};
|
|
1397
1468
|
readonly default: {
|
|
1398
1469
|
readonly type: "string";
|
|
1470
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
1399
1471
|
};
|
|
1400
1472
|
};
|
|
1401
1473
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -1426,6 +1498,7 @@ export declare const documentModel: {
|
|
|
1426
1498
|
};
|
|
1427
1499
|
readonly title: {
|
|
1428
1500
|
readonly type: "string";
|
|
1501
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1429
1502
|
};
|
|
1430
1503
|
readonly items: {
|
|
1431
1504
|
readonly type: "object";
|
|
@@ -1437,6 +1510,9 @@ export declare const documentModel: {
|
|
|
1437
1510
|
readonly required: readonly ["$ref"];
|
|
1438
1511
|
readonly additionalProperties: false;
|
|
1439
1512
|
};
|
|
1513
|
+
readonly uniqueItems: {
|
|
1514
|
+
readonly type: "boolean";
|
|
1515
|
+
};
|
|
1440
1516
|
};
|
|
1441
1517
|
readonly required: readonly ["type", "title", "items"];
|
|
1442
1518
|
readonly additionalProperties: false;
|
|
@@ -1445,6 +1521,7 @@ export declare const documentModel: {
|
|
|
1445
1521
|
readonly properties: {
|
|
1446
1522
|
readonly title: {
|
|
1447
1523
|
readonly type: "string";
|
|
1524
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1448
1525
|
};
|
|
1449
1526
|
readonly type: {
|
|
1450
1527
|
readonly type: "string";
|
|
@@ -1452,16 +1529,19 @@ export declare const documentModel: {
|
|
|
1452
1529
|
};
|
|
1453
1530
|
readonly properties: {
|
|
1454
1531
|
readonly type: "object";
|
|
1455
|
-
readonly
|
|
1456
|
-
readonly
|
|
1457
|
-
|
|
1458
|
-
readonly
|
|
1459
|
-
readonly
|
|
1532
|
+
readonly patternProperties: {
|
|
1533
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
1534
|
+
readonly type: "object";
|
|
1535
|
+
readonly properties: {
|
|
1536
|
+
readonly $ref: {
|
|
1537
|
+
readonly type: "string";
|
|
1538
|
+
};
|
|
1460
1539
|
};
|
|
1540
|
+
readonly required: readonly ["$ref"];
|
|
1541
|
+
readonly additionalProperties: false;
|
|
1461
1542
|
};
|
|
1462
|
-
readonly required: readonly ["$ref"];
|
|
1463
|
-
readonly additionalProperties: false;
|
|
1464
1543
|
};
|
|
1544
|
+
readonly additionalProperties: false;
|
|
1465
1545
|
};
|
|
1466
1546
|
readonly required: {
|
|
1467
1547
|
readonly type: "array";
|
|
@@ -1485,16 +1565,19 @@ export declare const documentModel: {
|
|
|
1485
1565
|
};
|
|
1486
1566
|
readonly properties: {
|
|
1487
1567
|
readonly type: "object";
|
|
1488
|
-
readonly
|
|
1489
|
-
readonly
|
|
1490
|
-
|
|
1491
|
-
readonly
|
|
1492
|
-
readonly
|
|
1568
|
+
readonly patternProperties: {
|
|
1569
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
1570
|
+
readonly type: "object";
|
|
1571
|
+
readonly properties: {
|
|
1572
|
+
readonly $ref: {
|
|
1573
|
+
readonly type: "string";
|
|
1574
|
+
};
|
|
1493
1575
|
};
|
|
1576
|
+
readonly required: readonly ["$ref"];
|
|
1577
|
+
readonly additionalProperties: false;
|
|
1494
1578
|
};
|
|
1495
|
-
readonly required: readonly ["$ref"];
|
|
1496
|
-
readonly additionalProperties: false;
|
|
1497
1579
|
};
|
|
1580
|
+
readonly additionalProperties: false;
|
|
1498
1581
|
};
|
|
1499
1582
|
readonly required: {
|
|
1500
1583
|
readonly type: "array";
|
|
@@ -1533,10 +1616,11 @@ export declare const documentModel: {
|
|
|
1533
1616
|
readonly properties: {
|
|
1534
1617
|
readonly behavior: {
|
|
1535
1618
|
readonly type: "string";
|
|
1536
|
-
readonly const: "
|
|
1619
|
+
readonly const: "interface";
|
|
1537
1620
|
};
|
|
1538
1621
|
readonly name: {
|
|
1539
1622
|
readonly type: "string";
|
|
1623
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1540
1624
|
};
|
|
1541
1625
|
readonly version: {
|
|
1542
1626
|
readonly type: "string";
|
|
@@ -1578,10 +1662,10 @@ export declare const documentModel: {
|
|
|
1578
1662
|
readonly default: {
|
|
1579
1663
|
readonly type: "integer";
|
|
1580
1664
|
};
|
|
1581
|
-
readonly
|
|
1665
|
+
readonly minimum: {
|
|
1582
1666
|
readonly type: "integer";
|
|
1583
1667
|
};
|
|
1584
|
-
readonly
|
|
1668
|
+
readonly maximum: {
|
|
1585
1669
|
readonly type: "integer";
|
|
1586
1670
|
};
|
|
1587
1671
|
};
|
|
@@ -1646,10 +1730,12 @@ export declare const documentModel: {
|
|
|
1646
1730
|
readonly type: "array";
|
|
1647
1731
|
readonly items: {
|
|
1648
1732
|
readonly type: "string";
|
|
1733
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
1649
1734
|
};
|
|
1650
1735
|
};
|
|
1651
1736
|
readonly default: {
|
|
1652
1737
|
readonly type: "string";
|
|
1738
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
1653
1739
|
};
|
|
1654
1740
|
};
|
|
1655
1741
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -1680,6 +1766,7 @@ export declare const documentModel: {
|
|
|
1680
1766
|
};
|
|
1681
1767
|
readonly title: {
|
|
1682
1768
|
readonly type: "string";
|
|
1769
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1683
1770
|
};
|
|
1684
1771
|
readonly items: {
|
|
1685
1772
|
readonly type: "object";
|
|
@@ -1691,6 +1778,9 @@ export declare const documentModel: {
|
|
|
1691
1778
|
readonly required: readonly ["$ref"];
|
|
1692
1779
|
readonly additionalProperties: false;
|
|
1693
1780
|
};
|
|
1781
|
+
readonly uniqueItems: {
|
|
1782
|
+
readonly type: "boolean";
|
|
1783
|
+
};
|
|
1694
1784
|
};
|
|
1695
1785
|
readonly required: readonly ["type", "title", "items"];
|
|
1696
1786
|
readonly additionalProperties: false;
|
|
@@ -1699,6 +1789,7 @@ export declare const documentModel: {
|
|
|
1699
1789
|
readonly properties: {
|
|
1700
1790
|
readonly title: {
|
|
1701
1791
|
readonly type: "string";
|
|
1792
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1702
1793
|
};
|
|
1703
1794
|
readonly type: {
|
|
1704
1795
|
readonly type: "string";
|
|
@@ -1706,16 +1797,19 @@ export declare const documentModel: {
|
|
|
1706
1797
|
};
|
|
1707
1798
|
readonly properties: {
|
|
1708
1799
|
readonly type: "object";
|
|
1709
|
-
readonly
|
|
1710
|
-
readonly
|
|
1711
|
-
|
|
1712
|
-
readonly
|
|
1713
|
-
readonly
|
|
1800
|
+
readonly patternProperties: {
|
|
1801
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
1802
|
+
readonly type: "object";
|
|
1803
|
+
readonly properties: {
|
|
1804
|
+
readonly $ref: {
|
|
1805
|
+
readonly type: "string";
|
|
1806
|
+
};
|
|
1714
1807
|
};
|
|
1808
|
+
readonly required: readonly ["$ref"];
|
|
1809
|
+
readonly additionalProperties: false;
|
|
1715
1810
|
};
|
|
1716
|
-
readonly required: readonly ["$ref"];
|
|
1717
|
-
readonly additionalProperties: false;
|
|
1718
1811
|
};
|
|
1812
|
+
readonly additionalProperties: false;
|
|
1719
1813
|
};
|
|
1720
1814
|
readonly required: {
|
|
1721
1815
|
readonly type: "array";
|
|
@@ -1739,16 +1833,19 @@ export declare const documentModel: {
|
|
|
1739
1833
|
};
|
|
1740
1834
|
readonly properties: {
|
|
1741
1835
|
readonly type: "object";
|
|
1742
|
-
readonly
|
|
1743
|
-
readonly
|
|
1744
|
-
|
|
1745
|
-
readonly
|
|
1746
|
-
readonly
|
|
1836
|
+
readonly patternProperties: {
|
|
1837
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
1838
|
+
readonly type: "object";
|
|
1839
|
+
readonly properties: {
|
|
1840
|
+
readonly $ref: {
|
|
1841
|
+
readonly type: "string";
|
|
1842
|
+
};
|
|
1747
1843
|
};
|
|
1844
|
+
readonly required: readonly ["$ref"];
|
|
1845
|
+
readonly additionalProperties: false;
|
|
1748
1846
|
};
|
|
1749
|
-
readonly required: readonly ["$ref"];
|
|
1750
|
-
readonly additionalProperties: false;
|
|
1751
1847
|
};
|
|
1848
|
+
readonly additionalProperties: false;
|
|
1752
1849
|
};
|
|
1753
1850
|
readonly required: {
|
|
1754
1851
|
readonly type: "array";
|
|
@@ -1787,9 +1884,9 @@ export declare const documentModel: {
|
|
|
1787
1884
|
readonly properties: {
|
|
1788
1885
|
readonly behavior: {
|
|
1789
1886
|
readonly type: "string";
|
|
1790
|
-
readonly const: "
|
|
1887
|
+
readonly const: "unique";
|
|
1791
1888
|
};
|
|
1792
|
-
readonly
|
|
1889
|
+
readonly uniqueFields: {
|
|
1793
1890
|
readonly type: "array";
|
|
1794
1891
|
readonly items: {
|
|
1795
1892
|
readonly type: "string";
|
|
@@ -1797,6 +1894,7 @@ export declare const documentModel: {
|
|
|
1797
1894
|
};
|
|
1798
1895
|
readonly name: {
|
|
1799
1896
|
readonly type: "string";
|
|
1897
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1800
1898
|
};
|
|
1801
1899
|
readonly version: {
|
|
1802
1900
|
readonly type: "string";
|
|
@@ -1838,10 +1936,10 @@ export declare const documentModel: {
|
|
|
1838
1936
|
readonly default: {
|
|
1839
1937
|
readonly type: "integer";
|
|
1840
1938
|
};
|
|
1841
|
-
readonly
|
|
1939
|
+
readonly minimum: {
|
|
1842
1940
|
readonly type: "integer";
|
|
1843
1941
|
};
|
|
1844
|
-
readonly
|
|
1942
|
+
readonly maximum: {
|
|
1845
1943
|
readonly type: "integer";
|
|
1846
1944
|
};
|
|
1847
1945
|
};
|
|
@@ -1906,10 +2004,12 @@ export declare const documentModel: {
|
|
|
1906
2004
|
readonly type: "array";
|
|
1907
2005
|
readonly items: {
|
|
1908
2006
|
readonly type: "string";
|
|
2007
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
1909
2008
|
};
|
|
1910
2009
|
};
|
|
1911
2010
|
readonly default: {
|
|
1912
2011
|
readonly type: "string";
|
|
2012
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
1913
2013
|
};
|
|
1914
2014
|
};
|
|
1915
2015
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -1940,6 +2040,7 @@ export declare const documentModel: {
|
|
|
1940
2040
|
};
|
|
1941
2041
|
readonly title: {
|
|
1942
2042
|
readonly type: "string";
|
|
2043
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1943
2044
|
};
|
|
1944
2045
|
readonly items: {
|
|
1945
2046
|
readonly type: "object";
|
|
@@ -1951,6 +2052,9 @@ export declare const documentModel: {
|
|
|
1951
2052
|
readonly required: readonly ["$ref"];
|
|
1952
2053
|
readonly additionalProperties: false;
|
|
1953
2054
|
};
|
|
2055
|
+
readonly uniqueItems: {
|
|
2056
|
+
readonly type: "boolean";
|
|
2057
|
+
};
|
|
1954
2058
|
};
|
|
1955
2059
|
readonly required: readonly ["type", "title", "items"];
|
|
1956
2060
|
readonly additionalProperties: false;
|
|
@@ -1959,6 +2063,7 @@ export declare const documentModel: {
|
|
|
1959
2063
|
readonly properties: {
|
|
1960
2064
|
readonly title: {
|
|
1961
2065
|
readonly type: "string";
|
|
2066
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1962
2067
|
};
|
|
1963
2068
|
readonly type: {
|
|
1964
2069
|
readonly type: "string";
|
|
@@ -1966,16 +2071,19 @@ export declare const documentModel: {
|
|
|
1966
2071
|
};
|
|
1967
2072
|
readonly properties: {
|
|
1968
2073
|
readonly type: "object";
|
|
1969
|
-
readonly
|
|
1970
|
-
readonly
|
|
1971
|
-
|
|
1972
|
-
readonly
|
|
1973
|
-
readonly
|
|
2074
|
+
readonly patternProperties: {
|
|
2075
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2076
|
+
readonly type: "object";
|
|
2077
|
+
readonly properties: {
|
|
2078
|
+
readonly $ref: {
|
|
2079
|
+
readonly type: "string";
|
|
2080
|
+
};
|
|
1974
2081
|
};
|
|
2082
|
+
readonly required: readonly ["$ref"];
|
|
2083
|
+
readonly additionalProperties: false;
|
|
1975
2084
|
};
|
|
1976
|
-
readonly required: readonly ["$ref"];
|
|
1977
|
-
readonly additionalProperties: false;
|
|
1978
2085
|
};
|
|
2086
|
+
readonly additionalProperties: false;
|
|
1979
2087
|
};
|
|
1980
2088
|
readonly required: {
|
|
1981
2089
|
readonly type: "array";
|
|
@@ -1999,16 +2107,19 @@ export declare const documentModel: {
|
|
|
1999
2107
|
};
|
|
2000
2108
|
readonly properties: {
|
|
2001
2109
|
readonly type: "object";
|
|
2002
|
-
readonly
|
|
2003
|
-
readonly
|
|
2004
|
-
|
|
2005
|
-
readonly
|
|
2006
|
-
readonly
|
|
2110
|
+
readonly patternProperties: {
|
|
2111
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2112
|
+
readonly type: "object";
|
|
2113
|
+
readonly properties: {
|
|
2114
|
+
readonly $ref: {
|
|
2115
|
+
readonly type: "string";
|
|
2116
|
+
};
|
|
2007
2117
|
};
|
|
2118
|
+
readonly required: readonly ["$ref"];
|
|
2119
|
+
readonly additionalProperties: false;
|
|
2008
2120
|
};
|
|
2009
|
-
readonly required: readonly ["$ref"];
|
|
2010
|
-
readonly additionalProperties: false;
|
|
2011
2121
|
};
|
|
2122
|
+
readonly additionalProperties: false;
|
|
2012
2123
|
};
|
|
2013
2124
|
readonly required: {
|
|
2014
2125
|
readonly type: "array";
|
|
@@ -2040,7 +2151,7 @@ export declare const documentModel: {
|
|
|
2040
2151
|
};
|
|
2041
2152
|
};
|
|
2042
2153
|
};
|
|
2043
|
-
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior", "
|
|
2154
|
+
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior", "uniqueFields"];
|
|
2044
2155
|
readonly additionalProperties: false;
|
|
2045
2156
|
}];
|
|
2046
2157
|
};
|
|
@@ -2054,10 +2165,11 @@ export declare const documentModelsCluster: {
|
|
|
2054
2165
|
readonly properties: {
|
|
2055
2166
|
readonly behavior: {
|
|
2056
2167
|
readonly type: "string";
|
|
2057
|
-
readonly const: "
|
|
2168
|
+
readonly const: "default";
|
|
2058
2169
|
};
|
|
2059
2170
|
readonly name: {
|
|
2060
2171
|
readonly type: "string";
|
|
2172
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2061
2173
|
};
|
|
2062
2174
|
readonly version: {
|
|
2063
2175
|
readonly type: "string";
|
|
@@ -2099,10 +2211,10 @@ export declare const documentModelsCluster: {
|
|
|
2099
2211
|
readonly default: {
|
|
2100
2212
|
readonly type: "integer";
|
|
2101
2213
|
};
|
|
2102
|
-
readonly
|
|
2214
|
+
readonly minimum: {
|
|
2103
2215
|
readonly type: "integer";
|
|
2104
2216
|
};
|
|
2105
|
-
readonly
|
|
2217
|
+
readonly maximum: {
|
|
2106
2218
|
readonly type: "integer";
|
|
2107
2219
|
};
|
|
2108
2220
|
};
|
|
@@ -2167,10 +2279,12 @@ export declare const documentModelsCluster: {
|
|
|
2167
2279
|
readonly type: "array";
|
|
2168
2280
|
readonly items: {
|
|
2169
2281
|
readonly type: "string";
|
|
2282
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2170
2283
|
};
|
|
2171
2284
|
};
|
|
2172
2285
|
readonly default: {
|
|
2173
2286
|
readonly type: "string";
|
|
2287
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2174
2288
|
};
|
|
2175
2289
|
};
|
|
2176
2290
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -2201,6 +2315,7 @@ export declare const documentModelsCluster: {
|
|
|
2201
2315
|
};
|
|
2202
2316
|
readonly title: {
|
|
2203
2317
|
readonly type: "string";
|
|
2318
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2204
2319
|
};
|
|
2205
2320
|
readonly items: {
|
|
2206
2321
|
readonly type: "object";
|
|
@@ -2212,6 +2327,9 @@ export declare const documentModelsCluster: {
|
|
|
2212
2327
|
readonly required: readonly ["$ref"];
|
|
2213
2328
|
readonly additionalProperties: false;
|
|
2214
2329
|
};
|
|
2330
|
+
readonly uniqueItems: {
|
|
2331
|
+
readonly type: "boolean";
|
|
2332
|
+
};
|
|
2215
2333
|
};
|
|
2216
2334
|
readonly required: readonly ["type", "title", "items"];
|
|
2217
2335
|
readonly additionalProperties: false;
|
|
@@ -2220,6 +2338,7 @@ export declare const documentModelsCluster: {
|
|
|
2220
2338
|
readonly properties: {
|
|
2221
2339
|
readonly title: {
|
|
2222
2340
|
readonly type: "string";
|
|
2341
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2223
2342
|
};
|
|
2224
2343
|
readonly type: {
|
|
2225
2344
|
readonly type: "string";
|
|
@@ -2227,16 +2346,19 @@ export declare const documentModelsCluster: {
|
|
|
2227
2346
|
};
|
|
2228
2347
|
readonly properties: {
|
|
2229
2348
|
readonly type: "object";
|
|
2230
|
-
readonly
|
|
2231
|
-
readonly
|
|
2232
|
-
|
|
2233
|
-
readonly
|
|
2234
|
-
readonly
|
|
2349
|
+
readonly patternProperties: {
|
|
2350
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2351
|
+
readonly type: "object";
|
|
2352
|
+
readonly properties: {
|
|
2353
|
+
readonly $ref: {
|
|
2354
|
+
readonly type: "string";
|
|
2355
|
+
};
|
|
2235
2356
|
};
|
|
2357
|
+
readonly required: readonly ["$ref"];
|
|
2358
|
+
readonly additionalProperties: false;
|
|
2236
2359
|
};
|
|
2237
|
-
readonly required: readonly ["$ref"];
|
|
2238
|
-
readonly additionalProperties: false;
|
|
2239
2360
|
};
|
|
2361
|
+
readonly additionalProperties: false;
|
|
2240
2362
|
};
|
|
2241
2363
|
readonly required: {
|
|
2242
2364
|
readonly type: "array";
|
|
@@ -2260,16 +2382,19 @@ export declare const documentModelsCluster: {
|
|
|
2260
2382
|
};
|
|
2261
2383
|
readonly properties: {
|
|
2262
2384
|
readonly type: "object";
|
|
2263
|
-
readonly
|
|
2264
|
-
readonly
|
|
2265
|
-
|
|
2266
|
-
readonly
|
|
2267
|
-
readonly
|
|
2385
|
+
readonly patternProperties: {
|
|
2386
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2387
|
+
readonly type: "object";
|
|
2388
|
+
readonly properties: {
|
|
2389
|
+
readonly $ref: {
|
|
2390
|
+
readonly type: "string";
|
|
2391
|
+
};
|
|
2268
2392
|
};
|
|
2393
|
+
readonly required: readonly ["$ref"];
|
|
2394
|
+
readonly additionalProperties: false;
|
|
2269
2395
|
};
|
|
2270
|
-
readonly required: readonly ["$ref"];
|
|
2271
|
-
readonly additionalProperties: false;
|
|
2272
2396
|
};
|
|
2397
|
+
readonly additionalProperties: false;
|
|
2273
2398
|
};
|
|
2274
2399
|
readonly required: {
|
|
2275
2400
|
readonly type: "array";
|
|
@@ -2308,10 +2433,11 @@ export declare const documentModelsCluster: {
|
|
|
2308
2433
|
readonly properties: {
|
|
2309
2434
|
readonly behavior: {
|
|
2310
2435
|
readonly type: "string";
|
|
2311
|
-
readonly const: "
|
|
2436
|
+
readonly const: "interface";
|
|
2312
2437
|
};
|
|
2313
2438
|
readonly name: {
|
|
2314
2439
|
readonly type: "string";
|
|
2440
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2315
2441
|
};
|
|
2316
2442
|
readonly version: {
|
|
2317
2443
|
readonly type: "string";
|
|
@@ -2353,10 +2479,10 @@ export declare const documentModelsCluster: {
|
|
|
2353
2479
|
readonly default: {
|
|
2354
2480
|
readonly type: "integer";
|
|
2355
2481
|
};
|
|
2356
|
-
readonly
|
|
2482
|
+
readonly minimum: {
|
|
2357
2483
|
readonly type: "integer";
|
|
2358
2484
|
};
|
|
2359
|
-
readonly
|
|
2485
|
+
readonly maximum: {
|
|
2360
2486
|
readonly type: "integer";
|
|
2361
2487
|
};
|
|
2362
2488
|
};
|
|
@@ -2421,10 +2547,12 @@ export declare const documentModelsCluster: {
|
|
|
2421
2547
|
readonly type: "array";
|
|
2422
2548
|
readonly items: {
|
|
2423
2549
|
readonly type: "string";
|
|
2550
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2424
2551
|
};
|
|
2425
2552
|
};
|
|
2426
2553
|
readonly default: {
|
|
2427
2554
|
readonly type: "string";
|
|
2555
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2428
2556
|
};
|
|
2429
2557
|
};
|
|
2430
2558
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -2455,6 +2583,7 @@ export declare const documentModelsCluster: {
|
|
|
2455
2583
|
};
|
|
2456
2584
|
readonly title: {
|
|
2457
2585
|
readonly type: "string";
|
|
2586
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2458
2587
|
};
|
|
2459
2588
|
readonly items: {
|
|
2460
2589
|
readonly type: "object";
|
|
@@ -2466,6 +2595,9 @@ export declare const documentModelsCluster: {
|
|
|
2466
2595
|
readonly required: readonly ["$ref"];
|
|
2467
2596
|
readonly additionalProperties: false;
|
|
2468
2597
|
};
|
|
2598
|
+
readonly uniqueItems: {
|
|
2599
|
+
readonly type: "boolean";
|
|
2600
|
+
};
|
|
2469
2601
|
};
|
|
2470
2602
|
readonly required: readonly ["type", "title", "items"];
|
|
2471
2603
|
readonly additionalProperties: false;
|
|
@@ -2474,6 +2606,7 @@ export declare const documentModelsCluster: {
|
|
|
2474
2606
|
readonly properties: {
|
|
2475
2607
|
readonly title: {
|
|
2476
2608
|
readonly type: "string";
|
|
2609
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2477
2610
|
};
|
|
2478
2611
|
readonly type: {
|
|
2479
2612
|
readonly type: "string";
|
|
@@ -2481,16 +2614,19 @@ export declare const documentModelsCluster: {
|
|
|
2481
2614
|
};
|
|
2482
2615
|
readonly properties: {
|
|
2483
2616
|
readonly type: "object";
|
|
2484
|
-
readonly
|
|
2485
|
-
readonly
|
|
2486
|
-
|
|
2487
|
-
readonly
|
|
2488
|
-
readonly
|
|
2617
|
+
readonly patternProperties: {
|
|
2618
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2619
|
+
readonly type: "object";
|
|
2620
|
+
readonly properties: {
|
|
2621
|
+
readonly $ref: {
|
|
2622
|
+
readonly type: "string";
|
|
2623
|
+
};
|
|
2489
2624
|
};
|
|
2625
|
+
readonly required: readonly ["$ref"];
|
|
2626
|
+
readonly additionalProperties: false;
|
|
2490
2627
|
};
|
|
2491
|
-
readonly required: readonly ["$ref"];
|
|
2492
|
-
readonly additionalProperties: false;
|
|
2493
2628
|
};
|
|
2629
|
+
readonly additionalProperties: false;
|
|
2494
2630
|
};
|
|
2495
2631
|
readonly required: {
|
|
2496
2632
|
readonly type: "array";
|
|
@@ -2514,16 +2650,19 @@ export declare const documentModelsCluster: {
|
|
|
2514
2650
|
};
|
|
2515
2651
|
readonly properties: {
|
|
2516
2652
|
readonly type: "object";
|
|
2517
|
-
readonly
|
|
2518
|
-
readonly
|
|
2519
|
-
|
|
2520
|
-
readonly
|
|
2521
|
-
readonly
|
|
2653
|
+
readonly patternProperties: {
|
|
2654
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2655
|
+
readonly type: "object";
|
|
2656
|
+
readonly properties: {
|
|
2657
|
+
readonly $ref: {
|
|
2658
|
+
readonly type: "string";
|
|
2659
|
+
};
|
|
2522
2660
|
};
|
|
2661
|
+
readonly required: readonly ["$ref"];
|
|
2662
|
+
readonly additionalProperties: false;
|
|
2523
2663
|
};
|
|
2524
|
-
readonly required: readonly ["$ref"];
|
|
2525
|
-
readonly additionalProperties: false;
|
|
2526
2664
|
};
|
|
2665
|
+
readonly additionalProperties: false;
|
|
2527
2666
|
};
|
|
2528
2667
|
readonly required: {
|
|
2529
2668
|
readonly type: "array";
|
|
@@ -2562,9 +2701,9 @@ export declare const documentModelsCluster: {
|
|
|
2562
2701
|
readonly properties: {
|
|
2563
2702
|
readonly behavior: {
|
|
2564
2703
|
readonly type: "string";
|
|
2565
|
-
readonly const: "
|
|
2704
|
+
readonly const: "unique";
|
|
2566
2705
|
};
|
|
2567
|
-
readonly
|
|
2706
|
+
readonly uniqueFields: {
|
|
2568
2707
|
readonly type: "array";
|
|
2569
2708
|
readonly items: {
|
|
2570
2709
|
readonly type: "string";
|
|
@@ -2572,6 +2711,7 @@ export declare const documentModelsCluster: {
|
|
|
2572
2711
|
};
|
|
2573
2712
|
readonly name: {
|
|
2574
2713
|
readonly type: "string";
|
|
2714
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2575
2715
|
};
|
|
2576
2716
|
readonly version: {
|
|
2577
2717
|
readonly type: "string";
|
|
@@ -2613,10 +2753,10 @@ export declare const documentModelsCluster: {
|
|
|
2613
2753
|
readonly default: {
|
|
2614
2754
|
readonly type: "integer";
|
|
2615
2755
|
};
|
|
2616
|
-
readonly
|
|
2756
|
+
readonly minimum: {
|
|
2617
2757
|
readonly type: "integer";
|
|
2618
2758
|
};
|
|
2619
|
-
readonly
|
|
2759
|
+
readonly maximum: {
|
|
2620
2760
|
readonly type: "integer";
|
|
2621
2761
|
};
|
|
2622
2762
|
};
|
|
@@ -2681,10 +2821,12 @@ export declare const documentModelsCluster: {
|
|
|
2681
2821
|
readonly type: "array";
|
|
2682
2822
|
readonly items: {
|
|
2683
2823
|
readonly type: "string";
|
|
2824
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2684
2825
|
};
|
|
2685
2826
|
};
|
|
2686
2827
|
readonly default: {
|
|
2687
2828
|
readonly type: "string";
|
|
2829
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2688
2830
|
};
|
|
2689
2831
|
};
|
|
2690
2832
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -2715,6 +2857,7 @@ export declare const documentModelsCluster: {
|
|
|
2715
2857
|
};
|
|
2716
2858
|
readonly title: {
|
|
2717
2859
|
readonly type: "string";
|
|
2860
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2718
2861
|
};
|
|
2719
2862
|
readonly items: {
|
|
2720
2863
|
readonly type: "object";
|
|
@@ -2726,6 +2869,9 @@ export declare const documentModelsCluster: {
|
|
|
2726
2869
|
readonly required: readonly ["$ref"];
|
|
2727
2870
|
readonly additionalProperties: false;
|
|
2728
2871
|
};
|
|
2872
|
+
readonly uniqueItems: {
|
|
2873
|
+
readonly type: "boolean";
|
|
2874
|
+
};
|
|
2729
2875
|
};
|
|
2730
2876
|
readonly required: readonly ["type", "title", "items"];
|
|
2731
2877
|
readonly additionalProperties: false;
|
|
@@ -2734,6 +2880,7 @@ export declare const documentModelsCluster: {
|
|
|
2734
2880
|
readonly properties: {
|
|
2735
2881
|
readonly title: {
|
|
2736
2882
|
readonly type: "string";
|
|
2883
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2737
2884
|
};
|
|
2738
2885
|
readonly type: {
|
|
2739
2886
|
readonly type: "string";
|
|
@@ -2741,16 +2888,19 @@ export declare const documentModelsCluster: {
|
|
|
2741
2888
|
};
|
|
2742
2889
|
readonly properties: {
|
|
2743
2890
|
readonly type: "object";
|
|
2744
|
-
readonly
|
|
2745
|
-
readonly
|
|
2746
|
-
|
|
2747
|
-
readonly
|
|
2748
|
-
readonly
|
|
2891
|
+
readonly patternProperties: {
|
|
2892
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2893
|
+
readonly type: "object";
|
|
2894
|
+
readonly properties: {
|
|
2895
|
+
readonly $ref: {
|
|
2896
|
+
readonly type: "string";
|
|
2897
|
+
};
|
|
2749
2898
|
};
|
|
2899
|
+
readonly required: readonly ["$ref"];
|
|
2900
|
+
readonly additionalProperties: false;
|
|
2750
2901
|
};
|
|
2751
|
-
readonly required: readonly ["$ref"];
|
|
2752
|
-
readonly additionalProperties: false;
|
|
2753
2902
|
};
|
|
2903
|
+
readonly additionalProperties: false;
|
|
2754
2904
|
};
|
|
2755
2905
|
readonly required: {
|
|
2756
2906
|
readonly type: "array";
|
|
@@ -2774,16 +2924,19 @@ export declare const documentModelsCluster: {
|
|
|
2774
2924
|
};
|
|
2775
2925
|
readonly properties: {
|
|
2776
2926
|
readonly type: "object";
|
|
2777
|
-
readonly
|
|
2778
|
-
readonly
|
|
2779
|
-
|
|
2780
|
-
readonly
|
|
2781
|
-
readonly
|
|
2927
|
+
readonly patternProperties: {
|
|
2928
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2929
|
+
readonly type: "object";
|
|
2930
|
+
readonly properties: {
|
|
2931
|
+
readonly $ref: {
|
|
2932
|
+
readonly type: "string";
|
|
2933
|
+
};
|
|
2782
2934
|
};
|
|
2935
|
+
readonly required: readonly ["$ref"];
|
|
2936
|
+
readonly additionalProperties: false;
|
|
2783
2937
|
};
|
|
2784
|
-
readonly required: readonly ["$ref"];
|
|
2785
|
-
readonly additionalProperties: false;
|
|
2786
2938
|
};
|
|
2939
|
+
readonly additionalProperties: false;
|
|
2787
2940
|
};
|
|
2788
2941
|
readonly required: {
|
|
2789
2942
|
readonly type: "array";
|
|
@@ -2815,7 +2968,7 @@ export declare const documentModelsCluster: {
|
|
|
2815
2968
|
};
|
|
2816
2969
|
};
|
|
2817
2970
|
};
|
|
2818
|
-
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior", "
|
|
2971
|
+
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior", "uniqueFields"];
|
|
2819
2972
|
readonly additionalProperties: false;
|
|
2820
2973
|
}];
|
|
2821
2974
|
};
|
|
@@ -2830,10 +2983,11 @@ export declare const documentModelsRecord: {
|
|
|
2830
2983
|
readonly properties: {
|
|
2831
2984
|
readonly behavior: {
|
|
2832
2985
|
readonly type: "string";
|
|
2833
|
-
readonly const: "
|
|
2986
|
+
readonly const: "default";
|
|
2834
2987
|
};
|
|
2835
2988
|
readonly name: {
|
|
2836
2989
|
readonly type: "string";
|
|
2990
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2837
2991
|
};
|
|
2838
2992
|
readonly version: {
|
|
2839
2993
|
readonly type: "string";
|
|
@@ -2875,10 +3029,10 @@ export declare const documentModelsRecord: {
|
|
|
2875
3029
|
readonly default: {
|
|
2876
3030
|
readonly type: "integer";
|
|
2877
3031
|
};
|
|
2878
|
-
readonly
|
|
3032
|
+
readonly minimum: {
|
|
2879
3033
|
readonly type: "integer";
|
|
2880
3034
|
};
|
|
2881
|
-
readonly
|
|
3035
|
+
readonly maximum: {
|
|
2882
3036
|
readonly type: "integer";
|
|
2883
3037
|
};
|
|
2884
3038
|
};
|
|
@@ -2943,10 +3097,12 @@ export declare const documentModelsRecord: {
|
|
|
2943
3097
|
readonly type: "array";
|
|
2944
3098
|
readonly items: {
|
|
2945
3099
|
readonly type: "string";
|
|
3100
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2946
3101
|
};
|
|
2947
3102
|
};
|
|
2948
3103
|
readonly default: {
|
|
2949
3104
|
readonly type: "string";
|
|
3105
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2950
3106
|
};
|
|
2951
3107
|
};
|
|
2952
3108
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -2977,6 +3133,7 @@ export declare const documentModelsRecord: {
|
|
|
2977
3133
|
};
|
|
2978
3134
|
readonly title: {
|
|
2979
3135
|
readonly type: "string";
|
|
3136
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2980
3137
|
};
|
|
2981
3138
|
readonly items: {
|
|
2982
3139
|
readonly type: "object";
|
|
@@ -2988,6 +3145,9 @@ export declare const documentModelsRecord: {
|
|
|
2988
3145
|
readonly required: readonly ["$ref"];
|
|
2989
3146
|
readonly additionalProperties: false;
|
|
2990
3147
|
};
|
|
3148
|
+
readonly uniqueItems: {
|
|
3149
|
+
readonly type: "boolean";
|
|
3150
|
+
};
|
|
2991
3151
|
};
|
|
2992
3152
|
readonly required: readonly ["type", "title", "items"];
|
|
2993
3153
|
readonly additionalProperties: false;
|
|
@@ -2996,6 +3156,7 @@ export declare const documentModelsRecord: {
|
|
|
2996
3156
|
readonly properties: {
|
|
2997
3157
|
readonly title: {
|
|
2998
3158
|
readonly type: "string";
|
|
3159
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2999
3160
|
};
|
|
3000
3161
|
readonly type: {
|
|
3001
3162
|
readonly type: "string";
|
|
@@ -3003,16 +3164,19 @@ export declare const documentModelsRecord: {
|
|
|
3003
3164
|
};
|
|
3004
3165
|
readonly properties: {
|
|
3005
3166
|
readonly type: "object";
|
|
3006
|
-
readonly
|
|
3007
|
-
readonly
|
|
3008
|
-
|
|
3009
|
-
readonly
|
|
3010
|
-
readonly
|
|
3167
|
+
readonly patternProperties: {
|
|
3168
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
3169
|
+
readonly type: "object";
|
|
3170
|
+
readonly properties: {
|
|
3171
|
+
readonly $ref: {
|
|
3172
|
+
readonly type: "string";
|
|
3173
|
+
};
|
|
3011
3174
|
};
|
|
3175
|
+
readonly required: readonly ["$ref"];
|
|
3176
|
+
readonly additionalProperties: false;
|
|
3012
3177
|
};
|
|
3013
|
-
readonly required: readonly ["$ref"];
|
|
3014
|
-
readonly additionalProperties: false;
|
|
3015
3178
|
};
|
|
3179
|
+
readonly additionalProperties: false;
|
|
3016
3180
|
};
|
|
3017
3181
|
readonly required: {
|
|
3018
3182
|
readonly type: "array";
|
|
@@ -3036,16 +3200,19 @@ export declare const documentModelsRecord: {
|
|
|
3036
3200
|
};
|
|
3037
3201
|
readonly properties: {
|
|
3038
3202
|
readonly type: "object";
|
|
3039
|
-
readonly
|
|
3040
|
-
readonly
|
|
3041
|
-
|
|
3042
|
-
readonly
|
|
3043
|
-
readonly
|
|
3203
|
+
readonly patternProperties: {
|
|
3204
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
3205
|
+
readonly type: "object";
|
|
3206
|
+
readonly properties: {
|
|
3207
|
+
readonly $ref: {
|
|
3208
|
+
readonly type: "string";
|
|
3209
|
+
};
|
|
3044
3210
|
};
|
|
3211
|
+
readonly required: readonly ["$ref"];
|
|
3212
|
+
readonly additionalProperties: false;
|
|
3045
3213
|
};
|
|
3046
|
-
readonly required: readonly ["$ref"];
|
|
3047
|
-
readonly additionalProperties: false;
|
|
3048
3214
|
};
|
|
3215
|
+
readonly additionalProperties: false;
|
|
3049
3216
|
};
|
|
3050
3217
|
readonly required: {
|
|
3051
3218
|
readonly type: "array";
|
|
@@ -3084,10 +3251,11 @@ export declare const documentModelsRecord: {
|
|
|
3084
3251
|
readonly properties: {
|
|
3085
3252
|
readonly behavior: {
|
|
3086
3253
|
readonly type: "string";
|
|
3087
|
-
readonly const: "
|
|
3254
|
+
readonly const: "interface";
|
|
3088
3255
|
};
|
|
3089
3256
|
readonly name: {
|
|
3090
3257
|
readonly type: "string";
|
|
3258
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
3091
3259
|
};
|
|
3092
3260
|
readonly version: {
|
|
3093
3261
|
readonly type: "string";
|
|
@@ -3129,10 +3297,10 @@ export declare const documentModelsRecord: {
|
|
|
3129
3297
|
readonly default: {
|
|
3130
3298
|
readonly type: "integer";
|
|
3131
3299
|
};
|
|
3132
|
-
readonly
|
|
3300
|
+
readonly minimum: {
|
|
3133
3301
|
readonly type: "integer";
|
|
3134
3302
|
};
|
|
3135
|
-
readonly
|
|
3303
|
+
readonly maximum: {
|
|
3136
3304
|
readonly type: "integer";
|
|
3137
3305
|
};
|
|
3138
3306
|
};
|
|
@@ -3197,10 +3365,12 @@ export declare const documentModelsRecord: {
|
|
|
3197
3365
|
readonly type: "array";
|
|
3198
3366
|
readonly items: {
|
|
3199
3367
|
readonly type: "string";
|
|
3368
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
3200
3369
|
};
|
|
3201
3370
|
};
|
|
3202
3371
|
readonly default: {
|
|
3203
3372
|
readonly type: "string";
|
|
3373
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
3204
3374
|
};
|
|
3205
3375
|
};
|
|
3206
3376
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -3231,6 +3401,7 @@ export declare const documentModelsRecord: {
|
|
|
3231
3401
|
};
|
|
3232
3402
|
readonly title: {
|
|
3233
3403
|
readonly type: "string";
|
|
3404
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
3234
3405
|
};
|
|
3235
3406
|
readonly items: {
|
|
3236
3407
|
readonly type: "object";
|
|
@@ -3242,6 +3413,9 @@ export declare const documentModelsRecord: {
|
|
|
3242
3413
|
readonly required: readonly ["$ref"];
|
|
3243
3414
|
readonly additionalProperties: false;
|
|
3244
3415
|
};
|
|
3416
|
+
readonly uniqueItems: {
|
|
3417
|
+
readonly type: "boolean";
|
|
3418
|
+
};
|
|
3245
3419
|
};
|
|
3246
3420
|
readonly required: readonly ["type", "title", "items"];
|
|
3247
3421
|
readonly additionalProperties: false;
|
|
@@ -3250,6 +3424,7 @@ export declare const documentModelsRecord: {
|
|
|
3250
3424
|
readonly properties: {
|
|
3251
3425
|
readonly title: {
|
|
3252
3426
|
readonly type: "string";
|
|
3427
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
3253
3428
|
};
|
|
3254
3429
|
readonly type: {
|
|
3255
3430
|
readonly type: "string";
|
|
@@ -3257,16 +3432,19 @@ export declare const documentModelsRecord: {
|
|
|
3257
3432
|
};
|
|
3258
3433
|
readonly properties: {
|
|
3259
3434
|
readonly type: "object";
|
|
3260
|
-
readonly
|
|
3261
|
-
readonly
|
|
3262
|
-
|
|
3263
|
-
readonly
|
|
3264
|
-
readonly
|
|
3435
|
+
readonly patternProperties: {
|
|
3436
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
3437
|
+
readonly type: "object";
|
|
3438
|
+
readonly properties: {
|
|
3439
|
+
readonly $ref: {
|
|
3440
|
+
readonly type: "string";
|
|
3441
|
+
};
|
|
3265
3442
|
};
|
|
3443
|
+
readonly required: readonly ["$ref"];
|
|
3444
|
+
readonly additionalProperties: false;
|
|
3266
3445
|
};
|
|
3267
|
-
readonly required: readonly ["$ref"];
|
|
3268
|
-
readonly additionalProperties: false;
|
|
3269
3446
|
};
|
|
3447
|
+
readonly additionalProperties: false;
|
|
3270
3448
|
};
|
|
3271
3449
|
readonly required: {
|
|
3272
3450
|
readonly type: "array";
|
|
@@ -3290,16 +3468,19 @@ export declare const documentModelsRecord: {
|
|
|
3290
3468
|
};
|
|
3291
3469
|
readonly properties: {
|
|
3292
3470
|
readonly type: "object";
|
|
3293
|
-
readonly
|
|
3294
|
-
readonly
|
|
3295
|
-
|
|
3296
|
-
readonly
|
|
3297
|
-
readonly
|
|
3471
|
+
readonly patternProperties: {
|
|
3472
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
3473
|
+
readonly type: "object";
|
|
3474
|
+
readonly properties: {
|
|
3475
|
+
readonly $ref: {
|
|
3476
|
+
readonly type: "string";
|
|
3477
|
+
};
|
|
3298
3478
|
};
|
|
3479
|
+
readonly required: readonly ["$ref"];
|
|
3480
|
+
readonly additionalProperties: false;
|
|
3299
3481
|
};
|
|
3300
|
-
readonly required: readonly ["$ref"];
|
|
3301
|
-
readonly additionalProperties: false;
|
|
3302
3482
|
};
|
|
3483
|
+
readonly additionalProperties: false;
|
|
3303
3484
|
};
|
|
3304
3485
|
readonly required: {
|
|
3305
3486
|
readonly type: "array";
|
|
@@ -3338,9 +3519,9 @@ export declare const documentModelsRecord: {
|
|
|
3338
3519
|
readonly properties: {
|
|
3339
3520
|
readonly behavior: {
|
|
3340
3521
|
readonly type: "string";
|
|
3341
|
-
readonly const: "
|
|
3522
|
+
readonly const: "unique";
|
|
3342
3523
|
};
|
|
3343
|
-
readonly
|
|
3524
|
+
readonly uniqueFields: {
|
|
3344
3525
|
readonly type: "array";
|
|
3345
3526
|
readonly items: {
|
|
3346
3527
|
readonly type: "string";
|
|
@@ -3348,6 +3529,7 @@ export declare const documentModelsRecord: {
|
|
|
3348
3529
|
};
|
|
3349
3530
|
readonly name: {
|
|
3350
3531
|
readonly type: "string";
|
|
3532
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
3351
3533
|
};
|
|
3352
3534
|
readonly version: {
|
|
3353
3535
|
readonly type: "string";
|
|
@@ -3389,10 +3571,10 @@ export declare const documentModelsRecord: {
|
|
|
3389
3571
|
readonly default: {
|
|
3390
3572
|
readonly type: "integer";
|
|
3391
3573
|
};
|
|
3392
|
-
readonly
|
|
3574
|
+
readonly minimum: {
|
|
3393
3575
|
readonly type: "integer";
|
|
3394
3576
|
};
|
|
3395
|
-
readonly
|
|
3577
|
+
readonly maximum: {
|
|
3396
3578
|
readonly type: "integer";
|
|
3397
3579
|
};
|
|
3398
3580
|
};
|
|
@@ -3457,10 +3639,12 @@ export declare const documentModelsRecord: {
|
|
|
3457
3639
|
readonly type: "array";
|
|
3458
3640
|
readonly items: {
|
|
3459
3641
|
readonly type: "string";
|
|
3642
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
3460
3643
|
};
|
|
3461
3644
|
};
|
|
3462
3645
|
readonly default: {
|
|
3463
3646
|
readonly type: "string";
|
|
3647
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
3464
3648
|
};
|
|
3465
3649
|
};
|
|
3466
3650
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -3491,6 +3675,7 @@ export declare const documentModelsRecord: {
|
|
|
3491
3675
|
};
|
|
3492
3676
|
readonly title: {
|
|
3493
3677
|
readonly type: "string";
|
|
3678
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
3494
3679
|
};
|
|
3495
3680
|
readonly items: {
|
|
3496
3681
|
readonly type: "object";
|
|
@@ -3502,6 +3687,9 @@ export declare const documentModelsRecord: {
|
|
|
3502
3687
|
readonly required: readonly ["$ref"];
|
|
3503
3688
|
readonly additionalProperties: false;
|
|
3504
3689
|
};
|
|
3690
|
+
readonly uniqueItems: {
|
|
3691
|
+
readonly type: "boolean";
|
|
3692
|
+
};
|
|
3505
3693
|
};
|
|
3506
3694
|
readonly required: readonly ["type", "title", "items"];
|
|
3507
3695
|
readonly additionalProperties: false;
|
|
@@ -3510,6 +3698,7 @@ export declare const documentModelsRecord: {
|
|
|
3510
3698
|
readonly properties: {
|
|
3511
3699
|
readonly title: {
|
|
3512
3700
|
readonly type: "string";
|
|
3701
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
3513
3702
|
};
|
|
3514
3703
|
readonly type: {
|
|
3515
3704
|
readonly type: "string";
|
|
@@ -3517,16 +3706,19 @@ export declare const documentModelsRecord: {
|
|
|
3517
3706
|
};
|
|
3518
3707
|
readonly properties: {
|
|
3519
3708
|
readonly type: "object";
|
|
3520
|
-
readonly
|
|
3521
|
-
readonly
|
|
3522
|
-
|
|
3523
|
-
readonly
|
|
3524
|
-
readonly
|
|
3709
|
+
readonly patternProperties: {
|
|
3710
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
3711
|
+
readonly type: "object";
|
|
3712
|
+
readonly properties: {
|
|
3713
|
+
readonly $ref: {
|
|
3714
|
+
readonly type: "string";
|
|
3715
|
+
};
|
|
3525
3716
|
};
|
|
3717
|
+
readonly required: readonly ["$ref"];
|
|
3718
|
+
readonly additionalProperties: false;
|
|
3526
3719
|
};
|
|
3527
|
-
readonly required: readonly ["$ref"];
|
|
3528
|
-
readonly additionalProperties: false;
|
|
3529
3720
|
};
|
|
3721
|
+
readonly additionalProperties: false;
|
|
3530
3722
|
};
|
|
3531
3723
|
readonly required: {
|
|
3532
3724
|
readonly type: "array";
|
|
@@ -3550,16 +3742,19 @@ export declare const documentModelsRecord: {
|
|
|
3550
3742
|
};
|
|
3551
3743
|
readonly properties: {
|
|
3552
3744
|
readonly type: "object";
|
|
3553
|
-
readonly
|
|
3554
|
-
readonly
|
|
3555
|
-
|
|
3556
|
-
readonly
|
|
3557
|
-
readonly
|
|
3745
|
+
readonly patternProperties: {
|
|
3746
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
3747
|
+
readonly type: "object";
|
|
3748
|
+
readonly properties: {
|
|
3749
|
+
readonly $ref: {
|
|
3750
|
+
readonly type: "string";
|
|
3751
|
+
};
|
|
3558
3752
|
};
|
|
3753
|
+
readonly required: readonly ["$ref"];
|
|
3754
|
+
readonly additionalProperties: false;
|
|
3559
3755
|
};
|
|
3560
|
-
readonly required: readonly ["$ref"];
|
|
3561
|
-
readonly additionalProperties: false;
|
|
3562
3756
|
};
|
|
3757
|
+
readonly additionalProperties: false;
|
|
3563
3758
|
};
|
|
3564
3759
|
readonly required: {
|
|
3565
3760
|
readonly type: "array";
|
|
@@ -3591,7 +3786,7 @@ export declare const documentModelsRecord: {
|
|
|
3591
3786
|
};
|
|
3592
3787
|
};
|
|
3593
3788
|
};
|
|
3594
|
-
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior", "
|
|
3789
|
+
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior", "uniqueFields"];
|
|
3595
3790
|
readonly additionalProperties: false;
|
|
3596
3791
|
}];
|
|
3597
3792
|
};
|