@kubun/protocol 0.1.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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 +1304 -3
- package/lib/models/cluster.d.ts.map +1 -1
- package/lib/models/cluster.js +106 -9
- package/lib/models/document.d.ts +526 -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 +116 -43
- package/lib/models/json-schema.d.ts.map +1 -1
- package/lib/models/json-schema.js +29 -15
- 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 +4417 -1426
- 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,15 @@ 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
|
+
};
|
|
186
|
+
readonly minItems: {
|
|
187
|
+
readonly type: "integer";
|
|
188
|
+
};
|
|
189
|
+
readonly maxItems: {
|
|
190
|
+
readonly type: "integer";
|
|
191
|
+
};
|
|
180
192
|
};
|
|
181
193
|
readonly required: readonly ["type", "title", "items"];
|
|
182
194
|
readonly additionalProperties: false;
|
|
@@ -185,6 +197,7 @@ export declare const documentModelSchema: {
|
|
|
185
197
|
readonly properties: {
|
|
186
198
|
readonly title: {
|
|
187
199
|
readonly type: "string";
|
|
200
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
188
201
|
};
|
|
189
202
|
readonly type: {
|
|
190
203
|
readonly type: "string";
|
|
@@ -192,16 +205,19 @@ export declare const documentModelSchema: {
|
|
|
192
205
|
};
|
|
193
206
|
readonly properties: {
|
|
194
207
|
readonly type: "object";
|
|
195
|
-
readonly
|
|
196
|
-
readonly
|
|
197
|
-
|
|
198
|
-
readonly
|
|
199
|
-
readonly
|
|
208
|
+
readonly patternProperties: {
|
|
209
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
210
|
+
readonly type: "object";
|
|
211
|
+
readonly properties: {
|
|
212
|
+
readonly $ref: {
|
|
213
|
+
readonly type: "string";
|
|
214
|
+
};
|
|
200
215
|
};
|
|
216
|
+
readonly required: readonly ["$ref"];
|
|
217
|
+
readonly additionalProperties: false;
|
|
201
218
|
};
|
|
202
|
-
readonly required: readonly ["$ref"];
|
|
203
|
-
readonly additionalProperties: false;
|
|
204
219
|
};
|
|
220
|
+
readonly additionalProperties: false;
|
|
205
221
|
};
|
|
206
222
|
readonly required: {
|
|
207
223
|
readonly type: "array";
|
|
@@ -225,16 +241,19 @@ export declare const documentModelSchema: {
|
|
|
225
241
|
};
|
|
226
242
|
readonly properties: {
|
|
227
243
|
readonly type: "object";
|
|
228
|
-
readonly
|
|
229
|
-
readonly
|
|
230
|
-
|
|
231
|
-
readonly
|
|
232
|
-
readonly
|
|
244
|
+
readonly patternProperties: {
|
|
245
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
246
|
+
readonly type: "object";
|
|
247
|
+
readonly properties: {
|
|
248
|
+
readonly $ref: {
|
|
249
|
+
readonly type: "string";
|
|
250
|
+
};
|
|
233
251
|
};
|
|
252
|
+
readonly required: readonly ["$ref"];
|
|
253
|
+
readonly additionalProperties: false;
|
|
234
254
|
};
|
|
235
|
-
readonly required: readonly ["$ref"];
|
|
236
|
-
readonly additionalProperties: false;
|
|
237
255
|
};
|
|
256
|
+
readonly additionalProperties: false;
|
|
238
257
|
};
|
|
239
258
|
readonly required: {
|
|
240
259
|
readonly type: "array";
|
|
@@ -255,6 +274,7 @@ export declare const documentModelBase: {
|
|
|
255
274
|
readonly properties: {
|
|
256
275
|
readonly name: {
|
|
257
276
|
readonly type: "string";
|
|
277
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
258
278
|
};
|
|
259
279
|
readonly version: {
|
|
260
280
|
readonly type: "string";
|
|
@@ -296,10 +316,10 @@ export declare const documentModelBase: {
|
|
|
296
316
|
readonly default: {
|
|
297
317
|
readonly type: "integer";
|
|
298
318
|
};
|
|
299
|
-
readonly
|
|
319
|
+
readonly minimum: {
|
|
300
320
|
readonly type: "integer";
|
|
301
321
|
};
|
|
302
|
-
readonly
|
|
322
|
+
readonly maximum: {
|
|
303
323
|
readonly type: "integer";
|
|
304
324
|
};
|
|
305
325
|
};
|
|
@@ -364,10 +384,12 @@ export declare const documentModelBase: {
|
|
|
364
384
|
readonly type: "array";
|
|
365
385
|
readonly items: {
|
|
366
386
|
readonly type: "string";
|
|
387
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
367
388
|
};
|
|
368
389
|
};
|
|
369
390
|
readonly default: {
|
|
370
391
|
readonly type: "string";
|
|
392
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
371
393
|
};
|
|
372
394
|
};
|
|
373
395
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -398,6 +420,7 @@ export declare const documentModelBase: {
|
|
|
398
420
|
};
|
|
399
421
|
readonly title: {
|
|
400
422
|
readonly type: "string";
|
|
423
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
401
424
|
};
|
|
402
425
|
readonly items: {
|
|
403
426
|
readonly type: "object";
|
|
@@ -409,6 +432,15 @@ export declare const documentModelBase: {
|
|
|
409
432
|
readonly required: readonly ["$ref"];
|
|
410
433
|
readonly additionalProperties: false;
|
|
411
434
|
};
|
|
435
|
+
readonly uniqueItems: {
|
|
436
|
+
readonly type: "boolean";
|
|
437
|
+
};
|
|
438
|
+
readonly minItems: {
|
|
439
|
+
readonly type: "integer";
|
|
440
|
+
};
|
|
441
|
+
readonly maxItems: {
|
|
442
|
+
readonly type: "integer";
|
|
443
|
+
};
|
|
412
444
|
};
|
|
413
445
|
readonly required: readonly ["type", "title", "items"];
|
|
414
446
|
readonly additionalProperties: false;
|
|
@@ -417,6 +449,7 @@ export declare const documentModelBase: {
|
|
|
417
449
|
readonly properties: {
|
|
418
450
|
readonly title: {
|
|
419
451
|
readonly type: "string";
|
|
452
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
420
453
|
};
|
|
421
454
|
readonly type: {
|
|
422
455
|
readonly type: "string";
|
|
@@ -424,16 +457,19 @@ export declare const documentModelBase: {
|
|
|
424
457
|
};
|
|
425
458
|
readonly properties: {
|
|
426
459
|
readonly type: "object";
|
|
427
|
-
readonly
|
|
428
|
-
readonly
|
|
429
|
-
|
|
430
|
-
readonly
|
|
431
|
-
readonly
|
|
460
|
+
readonly patternProperties: {
|
|
461
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
462
|
+
readonly type: "object";
|
|
463
|
+
readonly properties: {
|
|
464
|
+
readonly $ref: {
|
|
465
|
+
readonly type: "string";
|
|
466
|
+
};
|
|
432
467
|
};
|
|
468
|
+
readonly required: readonly ["$ref"];
|
|
469
|
+
readonly additionalProperties: false;
|
|
433
470
|
};
|
|
434
|
-
readonly required: readonly ["$ref"];
|
|
435
|
-
readonly additionalProperties: false;
|
|
436
471
|
};
|
|
472
|
+
readonly additionalProperties: false;
|
|
437
473
|
};
|
|
438
474
|
readonly required: {
|
|
439
475
|
readonly type: "array";
|
|
@@ -457,16 +493,19 @@ export declare const documentModelBase: {
|
|
|
457
493
|
};
|
|
458
494
|
readonly properties: {
|
|
459
495
|
readonly type: "object";
|
|
460
|
-
readonly
|
|
461
|
-
readonly
|
|
462
|
-
|
|
463
|
-
readonly
|
|
464
|
-
readonly
|
|
496
|
+
readonly patternProperties: {
|
|
497
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
498
|
+
readonly type: "object";
|
|
499
|
+
readonly properties: {
|
|
500
|
+
readonly $ref: {
|
|
501
|
+
readonly type: "string";
|
|
502
|
+
};
|
|
465
503
|
};
|
|
504
|
+
readonly required: readonly ["$ref"];
|
|
505
|
+
readonly additionalProperties: false;
|
|
466
506
|
};
|
|
467
|
-
readonly required: readonly ["$ref"];
|
|
468
|
-
readonly additionalProperties: false;
|
|
469
507
|
};
|
|
508
|
+
readonly additionalProperties: false;
|
|
470
509
|
};
|
|
471
510
|
readonly required: {
|
|
472
511
|
readonly type: "array";
|
|
@@ -501,15 +540,16 @@ export declare const documentModelBase: {
|
|
|
501
540
|
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta"];
|
|
502
541
|
readonly additionalProperties: false;
|
|
503
542
|
};
|
|
504
|
-
export declare const
|
|
543
|
+
export declare const documentModelDefault: {
|
|
505
544
|
readonly type: "object";
|
|
506
545
|
readonly properties: {
|
|
507
546
|
readonly behavior: {
|
|
508
547
|
readonly type: "string";
|
|
509
|
-
readonly const: "
|
|
548
|
+
readonly const: "default";
|
|
510
549
|
};
|
|
511
550
|
readonly name: {
|
|
512
551
|
readonly type: "string";
|
|
552
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
513
553
|
};
|
|
514
554
|
readonly version: {
|
|
515
555
|
readonly type: "string";
|
|
@@ -551,10 +591,10 @@ export declare const documentModelInterface: {
|
|
|
551
591
|
readonly default: {
|
|
552
592
|
readonly type: "integer";
|
|
553
593
|
};
|
|
554
|
-
readonly
|
|
594
|
+
readonly minimum: {
|
|
555
595
|
readonly type: "integer";
|
|
556
596
|
};
|
|
557
|
-
readonly
|
|
597
|
+
readonly maximum: {
|
|
558
598
|
readonly type: "integer";
|
|
559
599
|
};
|
|
560
600
|
};
|
|
@@ -619,10 +659,12 @@ export declare const documentModelInterface: {
|
|
|
619
659
|
readonly type: "array";
|
|
620
660
|
readonly items: {
|
|
621
661
|
readonly type: "string";
|
|
662
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
622
663
|
};
|
|
623
664
|
};
|
|
624
665
|
readonly default: {
|
|
625
666
|
readonly type: "string";
|
|
667
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
626
668
|
};
|
|
627
669
|
};
|
|
628
670
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -653,6 +695,7 @@ export declare const documentModelInterface: {
|
|
|
653
695
|
};
|
|
654
696
|
readonly title: {
|
|
655
697
|
readonly type: "string";
|
|
698
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
656
699
|
};
|
|
657
700
|
readonly items: {
|
|
658
701
|
readonly type: "object";
|
|
@@ -664,6 +707,15 @@ export declare const documentModelInterface: {
|
|
|
664
707
|
readonly required: readonly ["$ref"];
|
|
665
708
|
readonly additionalProperties: false;
|
|
666
709
|
};
|
|
710
|
+
readonly uniqueItems: {
|
|
711
|
+
readonly type: "boolean";
|
|
712
|
+
};
|
|
713
|
+
readonly minItems: {
|
|
714
|
+
readonly type: "integer";
|
|
715
|
+
};
|
|
716
|
+
readonly maxItems: {
|
|
717
|
+
readonly type: "integer";
|
|
718
|
+
};
|
|
667
719
|
};
|
|
668
720
|
readonly required: readonly ["type", "title", "items"];
|
|
669
721
|
readonly additionalProperties: false;
|
|
@@ -672,6 +724,7 @@ export declare const documentModelInterface: {
|
|
|
672
724
|
readonly properties: {
|
|
673
725
|
readonly title: {
|
|
674
726
|
readonly type: "string";
|
|
727
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
675
728
|
};
|
|
676
729
|
readonly type: {
|
|
677
730
|
readonly type: "string";
|
|
@@ -679,16 +732,19 @@ export declare const documentModelInterface: {
|
|
|
679
732
|
};
|
|
680
733
|
readonly properties: {
|
|
681
734
|
readonly type: "object";
|
|
682
|
-
readonly
|
|
683
|
-
readonly
|
|
684
|
-
|
|
685
|
-
readonly
|
|
686
|
-
readonly
|
|
735
|
+
readonly patternProperties: {
|
|
736
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
737
|
+
readonly type: "object";
|
|
738
|
+
readonly properties: {
|
|
739
|
+
readonly $ref: {
|
|
740
|
+
readonly type: "string";
|
|
741
|
+
};
|
|
687
742
|
};
|
|
743
|
+
readonly required: readonly ["$ref"];
|
|
744
|
+
readonly additionalProperties: false;
|
|
688
745
|
};
|
|
689
|
-
readonly required: readonly ["$ref"];
|
|
690
|
-
readonly additionalProperties: false;
|
|
691
746
|
};
|
|
747
|
+
readonly additionalProperties: false;
|
|
692
748
|
};
|
|
693
749
|
readonly required: {
|
|
694
750
|
readonly type: "array";
|
|
@@ -712,16 +768,19 @@ export declare const documentModelInterface: {
|
|
|
712
768
|
};
|
|
713
769
|
readonly properties: {
|
|
714
770
|
readonly type: "object";
|
|
715
|
-
readonly
|
|
716
|
-
readonly
|
|
717
|
-
|
|
718
|
-
readonly
|
|
719
|
-
readonly
|
|
771
|
+
readonly patternProperties: {
|
|
772
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
773
|
+
readonly type: "object";
|
|
774
|
+
readonly properties: {
|
|
775
|
+
readonly $ref: {
|
|
776
|
+
readonly type: "string";
|
|
777
|
+
};
|
|
720
778
|
};
|
|
779
|
+
readonly required: readonly ["$ref"];
|
|
780
|
+
readonly additionalProperties: false;
|
|
721
781
|
};
|
|
722
|
-
readonly required: readonly ["$ref"];
|
|
723
|
-
readonly additionalProperties: false;
|
|
724
782
|
};
|
|
783
|
+
readonly additionalProperties: false;
|
|
725
784
|
};
|
|
726
785
|
readonly required: {
|
|
727
786
|
readonly type: "array";
|
|
@@ -756,15 +815,16 @@ export declare const documentModelInterface: {
|
|
|
756
815
|
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior"];
|
|
757
816
|
readonly additionalProperties: false;
|
|
758
817
|
};
|
|
759
|
-
export declare const
|
|
818
|
+
export declare const documentModelInterface: {
|
|
760
819
|
readonly type: "object";
|
|
761
820
|
readonly properties: {
|
|
762
821
|
readonly behavior: {
|
|
763
822
|
readonly type: "string";
|
|
764
|
-
readonly const: "
|
|
823
|
+
readonly const: "interface";
|
|
765
824
|
};
|
|
766
825
|
readonly name: {
|
|
767
826
|
readonly type: "string";
|
|
827
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
768
828
|
};
|
|
769
829
|
readonly version: {
|
|
770
830
|
readonly type: "string";
|
|
@@ -806,10 +866,10 @@ export declare const documentModelList: {
|
|
|
806
866
|
readonly default: {
|
|
807
867
|
readonly type: "integer";
|
|
808
868
|
};
|
|
809
|
-
readonly
|
|
869
|
+
readonly minimum: {
|
|
810
870
|
readonly type: "integer";
|
|
811
871
|
};
|
|
812
|
-
readonly
|
|
872
|
+
readonly maximum: {
|
|
813
873
|
readonly type: "integer";
|
|
814
874
|
};
|
|
815
875
|
};
|
|
@@ -874,10 +934,12 @@ export declare const documentModelList: {
|
|
|
874
934
|
readonly type: "array";
|
|
875
935
|
readonly items: {
|
|
876
936
|
readonly type: "string";
|
|
937
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
877
938
|
};
|
|
878
939
|
};
|
|
879
940
|
readonly default: {
|
|
880
941
|
readonly type: "string";
|
|
942
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
881
943
|
};
|
|
882
944
|
};
|
|
883
945
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -908,6 +970,7 @@ export declare const documentModelList: {
|
|
|
908
970
|
};
|
|
909
971
|
readonly title: {
|
|
910
972
|
readonly type: "string";
|
|
973
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
911
974
|
};
|
|
912
975
|
readonly items: {
|
|
913
976
|
readonly type: "object";
|
|
@@ -919,6 +982,15 @@ export declare const documentModelList: {
|
|
|
919
982
|
readonly required: readonly ["$ref"];
|
|
920
983
|
readonly additionalProperties: false;
|
|
921
984
|
};
|
|
985
|
+
readonly uniqueItems: {
|
|
986
|
+
readonly type: "boolean";
|
|
987
|
+
};
|
|
988
|
+
readonly minItems: {
|
|
989
|
+
readonly type: "integer";
|
|
990
|
+
};
|
|
991
|
+
readonly maxItems: {
|
|
992
|
+
readonly type: "integer";
|
|
993
|
+
};
|
|
922
994
|
};
|
|
923
995
|
readonly required: readonly ["type", "title", "items"];
|
|
924
996
|
readonly additionalProperties: false;
|
|
@@ -927,6 +999,7 @@ export declare const documentModelList: {
|
|
|
927
999
|
readonly properties: {
|
|
928
1000
|
readonly title: {
|
|
929
1001
|
readonly type: "string";
|
|
1002
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
930
1003
|
};
|
|
931
1004
|
readonly type: {
|
|
932
1005
|
readonly type: "string";
|
|
@@ -934,16 +1007,19 @@ export declare const documentModelList: {
|
|
|
934
1007
|
};
|
|
935
1008
|
readonly properties: {
|
|
936
1009
|
readonly type: "object";
|
|
937
|
-
readonly
|
|
938
|
-
readonly
|
|
939
|
-
|
|
940
|
-
readonly
|
|
941
|
-
readonly
|
|
1010
|
+
readonly patternProperties: {
|
|
1011
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
1012
|
+
readonly type: "object";
|
|
1013
|
+
readonly properties: {
|
|
1014
|
+
readonly $ref: {
|
|
1015
|
+
readonly type: "string";
|
|
1016
|
+
};
|
|
942
1017
|
};
|
|
1018
|
+
readonly required: readonly ["$ref"];
|
|
1019
|
+
readonly additionalProperties: false;
|
|
943
1020
|
};
|
|
944
|
-
readonly required: readonly ["$ref"];
|
|
945
|
-
readonly additionalProperties: false;
|
|
946
1021
|
};
|
|
1022
|
+
readonly additionalProperties: false;
|
|
947
1023
|
};
|
|
948
1024
|
readonly required: {
|
|
949
1025
|
readonly type: "array";
|
|
@@ -967,16 +1043,19 @@ export declare const documentModelList: {
|
|
|
967
1043
|
};
|
|
968
1044
|
readonly properties: {
|
|
969
1045
|
readonly type: "object";
|
|
970
|
-
readonly
|
|
971
|
-
readonly
|
|
972
|
-
|
|
973
|
-
readonly
|
|
974
|
-
readonly
|
|
1046
|
+
readonly patternProperties: {
|
|
1047
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
1048
|
+
readonly type: "object";
|
|
1049
|
+
readonly properties: {
|
|
1050
|
+
readonly $ref: {
|
|
1051
|
+
readonly type: "string";
|
|
1052
|
+
};
|
|
975
1053
|
};
|
|
1054
|
+
readonly required: readonly ["$ref"];
|
|
1055
|
+
readonly additionalProperties: false;
|
|
976
1056
|
};
|
|
977
|
-
readonly required: readonly ["$ref"];
|
|
978
|
-
readonly additionalProperties: false;
|
|
979
1057
|
};
|
|
1058
|
+
readonly additionalProperties: false;
|
|
980
1059
|
};
|
|
981
1060
|
readonly required: {
|
|
982
1061
|
readonly type: "array";
|
|
@@ -1011,14 +1090,14 @@ export declare const documentModelList: {
|
|
|
1011
1090
|
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior"];
|
|
1012
1091
|
readonly additionalProperties: false;
|
|
1013
1092
|
};
|
|
1014
|
-
export declare const
|
|
1093
|
+
export declare const documentModelUnique: {
|
|
1015
1094
|
readonly type: "object";
|
|
1016
1095
|
readonly properties: {
|
|
1017
1096
|
readonly behavior: {
|
|
1018
1097
|
readonly type: "string";
|
|
1019
|
-
readonly const: "
|
|
1098
|
+
readonly const: "unique";
|
|
1020
1099
|
};
|
|
1021
|
-
readonly
|
|
1100
|
+
readonly uniqueFields: {
|
|
1022
1101
|
readonly type: "array";
|
|
1023
1102
|
readonly items: {
|
|
1024
1103
|
readonly type: "string";
|
|
@@ -1026,6 +1105,7 @@ export declare const documentModelSet: {
|
|
|
1026
1105
|
};
|
|
1027
1106
|
readonly name: {
|
|
1028
1107
|
readonly type: "string";
|
|
1108
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1029
1109
|
};
|
|
1030
1110
|
readonly version: {
|
|
1031
1111
|
readonly type: "string";
|
|
@@ -1067,10 +1147,10 @@ export declare const documentModelSet: {
|
|
|
1067
1147
|
readonly default: {
|
|
1068
1148
|
readonly type: "integer";
|
|
1069
1149
|
};
|
|
1070
|
-
readonly
|
|
1150
|
+
readonly minimum: {
|
|
1071
1151
|
readonly type: "integer";
|
|
1072
1152
|
};
|
|
1073
|
-
readonly
|
|
1153
|
+
readonly maximum: {
|
|
1074
1154
|
readonly type: "integer";
|
|
1075
1155
|
};
|
|
1076
1156
|
};
|
|
@@ -1135,10 +1215,12 @@ export declare const documentModelSet: {
|
|
|
1135
1215
|
readonly type: "array";
|
|
1136
1216
|
readonly items: {
|
|
1137
1217
|
readonly type: "string";
|
|
1218
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
1138
1219
|
};
|
|
1139
1220
|
};
|
|
1140
1221
|
readonly default: {
|
|
1141
1222
|
readonly type: "string";
|
|
1223
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
1142
1224
|
};
|
|
1143
1225
|
};
|
|
1144
1226
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -1169,6 +1251,7 @@ export declare const documentModelSet: {
|
|
|
1169
1251
|
};
|
|
1170
1252
|
readonly title: {
|
|
1171
1253
|
readonly type: "string";
|
|
1254
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1172
1255
|
};
|
|
1173
1256
|
readonly items: {
|
|
1174
1257
|
readonly type: "object";
|
|
@@ -1180,6 +1263,15 @@ export declare const documentModelSet: {
|
|
|
1180
1263
|
readonly required: readonly ["$ref"];
|
|
1181
1264
|
readonly additionalProperties: false;
|
|
1182
1265
|
};
|
|
1266
|
+
readonly uniqueItems: {
|
|
1267
|
+
readonly type: "boolean";
|
|
1268
|
+
};
|
|
1269
|
+
readonly minItems: {
|
|
1270
|
+
readonly type: "integer";
|
|
1271
|
+
};
|
|
1272
|
+
readonly maxItems: {
|
|
1273
|
+
readonly type: "integer";
|
|
1274
|
+
};
|
|
1183
1275
|
};
|
|
1184
1276
|
readonly required: readonly ["type", "title", "items"];
|
|
1185
1277
|
readonly additionalProperties: false;
|
|
@@ -1188,6 +1280,7 @@ export declare const documentModelSet: {
|
|
|
1188
1280
|
readonly properties: {
|
|
1189
1281
|
readonly title: {
|
|
1190
1282
|
readonly type: "string";
|
|
1283
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1191
1284
|
};
|
|
1192
1285
|
readonly type: {
|
|
1193
1286
|
readonly type: "string";
|
|
@@ -1195,16 +1288,19 @@ export declare const documentModelSet: {
|
|
|
1195
1288
|
};
|
|
1196
1289
|
readonly properties: {
|
|
1197
1290
|
readonly type: "object";
|
|
1198
|
-
readonly
|
|
1199
|
-
readonly
|
|
1200
|
-
|
|
1201
|
-
readonly
|
|
1202
|
-
readonly
|
|
1291
|
+
readonly patternProperties: {
|
|
1292
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
1293
|
+
readonly type: "object";
|
|
1294
|
+
readonly properties: {
|
|
1295
|
+
readonly $ref: {
|
|
1296
|
+
readonly type: "string";
|
|
1297
|
+
};
|
|
1203
1298
|
};
|
|
1299
|
+
readonly required: readonly ["$ref"];
|
|
1300
|
+
readonly additionalProperties: false;
|
|
1204
1301
|
};
|
|
1205
|
-
readonly required: readonly ["$ref"];
|
|
1206
|
-
readonly additionalProperties: false;
|
|
1207
1302
|
};
|
|
1303
|
+
readonly additionalProperties: false;
|
|
1208
1304
|
};
|
|
1209
1305
|
readonly required: {
|
|
1210
1306
|
readonly type: "array";
|
|
@@ -1228,16 +1324,19 @@ export declare const documentModelSet: {
|
|
|
1228
1324
|
};
|
|
1229
1325
|
readonly properties: {
|
|
1230
1326
|
readonly type: "object";
|
|
1231
|
-
readonly
|
|
1232
|
-
readonly
|
|
1233
|
-
|
|
1234
|
-
readonly
|
|
1235
|
-
readonly
|
|
1327
|
+
readonly patternProperties: {
|
|
1328
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
1329
|
+
readonly type: "object";
|
|
1330
|
+
readonly properties: {
|
|
1331
|
+
readonly $ref: {
|
|
1332
|
+
readonly type: "string";
|
|
1333
|
+
};
|
|
1236
1334
|
};
|
|
1335
|
+
readonly required: readonly ["$ref"];
|
|
1336
|
+
readonly additionalProperties: false;
|
|
1237
1337
|
};
|
|
1238
|
-
readonly required: readonly ["$ref"];
|
|
1239
|
-
readonly additionalProperties: false;
|
|
1240
1338
|
};
|
|
1339
|
+
readonly additionalProperties: false;
|
|
1241
1340
|
};
|
|
1242
1341
|
readonly required: {
|
|
1243
1342
|
readonly type: "array";
|
|
@@ -1269,7 +1368,7 @@ export declare const documentModelSet: {
|
|
|
1269
1368
|
};
|
|
1270
1369
|
};
|
|
1271
1370
|
};
|
|
1272
|
-
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior", "
|
|
1371
|
+
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior", "uniqueFields"];
|
|
1273
1372
|
readonly additionalProperties: false;
|
|
1274
1373
|
};
|
|
1275
1374
|
export declare const documentModel: {
|
|
@@ -1279,10 +1378,11 @@ export declare const documentModel: {
|
|
|
1279
1378
|
readonly properties: {
|
|
1280
1379
|
readonly behavior: {
|
|
1281
1380
|
readonly type: "string";
|
|
1282
|
-
readonly const: "
|
|
1381
|
+
readonly const: "default";
|
|
1283
1382
|
};
|
|
1284
1383
|
readonly name: {
|
|
1285
1384
|
readonly type: "string";
|
|
1385
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1286
1386
|
};
|
|
1287
1387
|
readonly version: {
|
|
1288
1388
|
readonly type: "string";
|
|
@@ -1324,10 +1424,10 @@ export declare const documentModel: {
|
|
|
1324
1424
|
readonly default: {
|
|
1325
1425
|
readonly type: "integer";
|
|
1326
1426
|
};
|
|
1327
|
-
readonly
|
|
1427
|
+
readonly minimum: {
|
|
1328
1428
|
readonly type: "integer";
|
|
1329
1429
|
};
|
|
1330
|
-
readonly
|
|
1430
|
+
readonly maximum: {
|
|
1331
1431
|
readonly type: "integer";
|
|
1332
1432
|
};
|
|
1333
1433
|
};
|
|
@@ -1392,10 +1492,12 @@ export declare const documentModel: {
|
|
|
1392
1492
|
readonly type: "array";
|
|
1393
1493
|
readonly items: {
|
|
1394
1494
|
readonly type: "string";
|
|
1495
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
1395
1496
|
};
|
|
1396
1497
|
};
|
|
1397
1498
|
readonly default: {
|
|
1398
1499
|
readonly type: "string";
|
|
1500
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
1399
1501
|
};
|
|
1400
1502
|
};
|
|
1401
1503
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -1426,6 +1528,7 @@ export declare const documentModel: {
|
|
|
1426
1528
|
};
|
|
1427
1529
|
readonly title: {
|
|
1428
1530
|
readonly type: "string";
|
|
1531
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1429
1532
|
};
|
|
1430
1533
|
readonly items: {
|
|
1431
1534
|
readonly type: "object";
|
|
@@ -1437,6 +1540,15 @@ export declare const documentModel: {
|
|
|
1437
1540
|
readonly required: readonly ["$ref"];
|
|
1438
1541
|
readonly additionalProperties: false;
|
|
1439
1542
|
};
|
|
1543
|
+
readonly uniqueItems: {
|
|
1544
|
+
readonly type: "boolean";
|
|
1545
|
+
};
|
|
1546
|
+
readonly minItems: {
|
|
1547
|
+
readonly type: "integer";
|
|
1548
|
+
};
|
|
1549
|
+
readonly maxItems: {
|
|
1550
|
+
readonly type: "integer";
|
|
1551
|
+
};
|
|
1440
1552
|
};
|
|
1441
1553
|
readonly required: readonly ["type", "title", "items"];
|
|
1442
1554
|
readonly additionalProperties: false;
|
|
@@ -1445,6 +1557,7 @@ export declare const documentModel: {
|
|
|
1445
1557
|
readonly properties: {
|
|
1446
1558
|
readonly title: {
|
|
1447
1559
|
readonly type: "string";
|
|
1560
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1448
1561
|
};
|
|
1449
1562
|
readonly type: {
|
|
1450
1563
|
readonly type: "string";
|
|
@@ -1452,16 +1565,19 @@ export declare const documentModel: {
|
|
|
1452
1565
|
};
|
|
1453
1566
|
readonly properties: {
|
|
1454
1567
|
readonly type: "object";
|
|
1455
|
-
readonly
|
|
1456
|
-
readonly
|
|
1457
|
-
|
|
1458
|
-
readonly
|
|
1459
|
-
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
|
+
};
|
|
1460
1575
|
};
|
|
1576
|
+
readonly required: readonly ["$ref"];
|
|
1577
|
+
readonly additionalProperties: false;
|
|
1461
1578
|
};
|
|
1462
|
-
readonly required: readonly ["$ref"];
|
|
1463
|
-
readonly additionalProperties: false;
|
|
1464
1579
|
};
|
|
1580
|
+
readonly additionalProperties: false;
|
|
1465
1581
|
};
|
|
1466
1582
|
readonly required: {
|
|
1467
1583
|
readonly type: "array";
|
|
@@ -1485,16 +1601,19 @@ export declare const documentModel: {
|
|
|
1485
1601
|
};
|
|
1486
1602
|
readonly properties: {
|
|
1487
1603
|
readonly type: "object";
|
|
1488
|
-
readonly
|
|
1489
|
-
readonly
|
|
1490
|
-
|
|
1491
|
-
readonly
|
|
1492
|
-
readonly
|
|
1604
|
+
readonly patternProperties: {
|
|
1605
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
1606
|
+
readonly type: "object";
|
|
1607
|
+
readonly properties: {
|
|
1608
|
+
readonly $ref: {
|
|
1609
|
+
readonly type: "string";
|
|
1610
|
+
};
|
|
1493
1611
|
};
|
|
1612
|
+
readonly required: readonly ["$ref"];
|
|
1613
|
+
readonly additionalProperties: false;
|
|
1494
1614
|
};
|
|
1495
|
-
readonly required: readonly ["$ref"];
|
|
1496
|
-
readonly additionalProperties: false;
|
|
1497
1615
|
};
|
|
1616
|
+
readonly additionalProperties: false;
|
|
1498
1617
|
};
|
|
1499
1618
|
readonly required: {
|
|
1500
1619
|
readonly type: "array";
|
|
@@ -1533,10 +1652,11 @@ export declare const documentModel: {
|
|
|
1533
1652
|
readonly properties: {
|
|
1534
1653
|
readonly behavior: {
|
|
1535
1654
|
readonly type: "string";
|
|
1536
|
-
readonly const: "
|
|
1655
|
+
readonly const: "interface";
|
|
1537
1656
|
};
|
|
1538
1657
|
readonly name: {
|
|
1539
1658
|
readonly type: "string";
|
|
1659
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1540
1660
|
};
|
|
1541
1661
|
readonly version: {
|
|
1542
1662
|
readonly type: "string";
|
|
@@ -1578,10 +1698,10 @@ export declare const documentModel: {
|
|
|
1578
1698
|
readonly default: {
|
|
1579
1699
|
readonly type: "integer";
|
|
1580
1700
|
};
|
|
1581
|
-
readonly
|
|
1701
|
+
readonly minimum: {
|
|
1582
1702
|
readonly type: "integer";
|
|
1583
1703
|
};
|
|
1584
|
-
readonly
|
|
1704
|
+
readonly maximum: {
|
|
1585
1705
|
readonly type: "integer";
|
|
1586
1706
|
};
|
|
1587
1707
|
};
|
|
@@ -1646,10 +1766,12 @@ export declare const documentModel: {
|
|
|
1646
1766
|
readonly type: "array";
|
|
1647
1767
|
readonly items: {
|
|
1648
1768
|
readonly type: "string";
|
|
1769
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
1649
1770
|
};
|
|
1650
1771
|
};
|
|
1651
1772
|
readonly default: {
|
|
1652
1773
|
readonly type: "string";
|
|
1774
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
1653
1775
|
};
|
|
1654
1776
|
};
|
|
1655
1777
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -1680,6 +1802,7 @@ export declare const documentModel: {
|
|
|
1680
1802
|
};
|
|
1681
1803
|
readonly title: {
|
|
1682
1804
|
readonly type: "string";
|
|
1805
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1683
1806
|
};
|
|
1684
1807
|
readonly items: {
|
|
1685
1808
|
readonly type: "object";
|
|
@@ -1691,6 +1814,15 @@ export declare const documentModel: {
|
|
|
1691
1814
|
readonly required: readonly ["$ref"];
|
|
1692
1815
|
readonly additionalProperties: false;
|
|
1693
1816
|
};
|
|
1817
|
+
readonly uniqueItems: {
|
|
1818
|
+
readonly type: "boolean";
|
|
1819
|
+
};
|
|
1820
|
+
readonly minItems: {
|
|
1821
|
+
readonly type: "integer";
|
|
1822
|
+
};
|
|
1823
|
+
readonly maxItems: {
|
|
1824
|
+
readonly type: "integer";
|
|
1825
|
+
};
|
|
1694
1826
|
};
|
|
1695
1827
|
readonly required: readonly ["type", "title", "items"];
|
|
1696
1828
|
readonly additionalProperties: false;
|
|
@@ -1699,6 +1831,7 @@ export declare const documentModel: {
|
|
|
1699
1831
|
readonly properties: {
|
|
1700
1832
|
readonly title: {
|
|
1701
1833
|
readonly type: "string";
|
|
1834
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1702
1835
|
};
|
|
1703
1836
|
readonly type: {
|
|
1704
1837
|
readonly type: "string";
|
|
@@ -1706,16 +1839,19 @@ export declare const documentModel: {
|
|
|
1706
1839
|
};
|
|
1707
1840
|
readonly properties: {
|
|
1708
1841
|
readonly type: "object";
|
|
1709
|
-
readonly
|
|
1710
|
-
readonly
|
|
1711
|
-
|
|
1712
|
-
readonly
|
|
1713
|
-
readonly
|
|
1842
|
+
readonly patternProperties: {
|
|
1843
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
1844
|
+
readonly type: "object";
|
|
1845
|
+
readonly properties: {
|
|
1846
|
+
readonly $ref: {
|
|
1847
|
+
readonly type: "string";
|
|
1848
|
+
};
|
|
1714
1849
|
};
|
|
1850
|
+
readonly required: readonly ["$ref"];
|
|
1851
|
+
readonly additionalProperties: false;
|
|
1715
1852
|
};
|
|
1716
|
-
readonly required: readonly ["$ref"];
|
|
1717
|
-
readonly additionalProperties: false;
|
|
1718
1853
|
};
|
|
1854
|
+
readonly additionalProperties: false;
|
|
1719
1855
|
};
|
|
1720
1856
|
readonly required: {
|
|
1721
1857
|
readonly type: "array";
|
|
@@ -1739,16 +1875,19 @@ export declare const documentModel: {
|
|
|
1739
1875
|
};
|
|
1740
1876
|
readonly properties: {
|
|
1741
1877
|
readonly type: "object";
|
|
1742
|
-
readonly
|
|
1743
|
-
readonly
|
|
1744
|
-
|
|
1745
|
-
readonly
|
|
1746
|
-
readonly
|
|
1878
|
+
readonly patternProperties: {
|
|
1879
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
1880
|
+
readonly type: "object";
|
|
1881
|
+
readonly properties: {
|
|
1882
|
+
readonly $ref: {
|
|
1883
|
+
readonly type: "string";
|
|
1884
|
+
};
|
|
1747
1885
|
};
|
|
1886
|
+
readonly required: readonly ["$ref"];
|
|
1887
|
+
readonly additionalProperties: false;
|
|
1748
1888
|
};
|
|
1749
|
-
readonly required: readonly ["$ref"];
|
|
1750
|
-
readonly additionalProperties: false;
|
|
1751
1889
|
};
|
|
1890
|
+
readonly additionalProperties: false;
|
|
1752
1891
|
};
|
|
1753
1892
|
readonly required: {
|
|
1754
1893
|
readonly type: "array";
|
|
@@ -1787,9 +1926,9 @@ export declare const documentModel: {
|
|
|
1787
1926
|
readonly properties: {
|
|
1788
1927
|
readonly behavior: {
|
|
1789
1928
|
readonly type: "string";
|
|
1790
|
-
readonly const: "
|
|
1929
|
+
readonly const: "unique";
|
|
1791
1930
|
};
|
|
1792
|
-
readonly
|
|
1931
|
+
readonly uniqueFields: {
|
|
1793
1932
|
readonly type: "array";
|
|
1794
1933
|
readonly items: {
|
|
1795
1934
|
readonly type: "string";
|
|
@@ -1797,6 +1936,7 @@ export declare const documentModel: {
|
|
|
1797
1936
|
};
|
|
1798
1937
|
readonly name: {
|
|
1799
1938
|
readonly type: "string";
|
|
1939
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1800
1940
|
};
|
|
1801
1941
|
readonly version: {
|
|
1802
1942
|
readonly type: "string";
|
|
@@ -1838,10 +1978,10 @@ export declare const documentModel: {
|
|
|
1838
1978
|
readonly default: {
|
|
1839
1979
|
readonly type: "integer";
|
|
1840
1980
|
};
|
|
1841
|
-
readonly
|
|
1981
|
+
readonly minimum: {
|
|
1842
1982
|
readonly type: "integer";
|
|
1843
1983
|
};
|
|
1844
|
-
readonly
|
|
1984
|
+
readonly maximum: {
|
|
1845
1985
|
readonly type: "integer";
|
|
1846
1986
|
};
|
|
1847
1987
|
};
|
|
@@ -1906,10 +2046,12 @@ export declare const documentModel: {
|
|
|
1906
2046
|
readonly type: "array";
|
|
1907
2047
|
readonly items: {
|
|
1908
2048
|
readonly type: "string";
|
|
2049
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
1909
2050
|
};
|
|
1910
2051
|
};
|
|
1911
2052
|
readonly default: {
|
|
1912
2053
|
readonly type: "string";
|
|
2054
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
1913
2055
|
};
|
|
1914
2056
|
};
|
|
1915
2057
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -1940,6 +2082,7 @@ export declare const documentModel: {
|
|
|
1940
2082
|
};
|
|
1941
2083
|
readonly title: {
|
|
1942
2084
|
readonly type: "string";
|
|
2085
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1943
2086
|
};
|
|
1944
2087
|
readonly items: {
|
|
1945
2088
|
readonly type: "object";
|
|
@@ -1951,6 +2094,15 @@ export declare const documentModel: {
|
|
|
1951
2094
|
readonly required: readonly ["$ref"];
|
|
1952
2095
|
readonly additionalProperties: false;
|
|
1953
2096
|
};
|
|
2097
|
+
readonly uniqueItems: {
|
|
2098
|
+
readonly type: "boolean";
|
|
2099
|
+
};
|
|
2100
|
+
readonly minItems: {
|
|
2101
|
+
readonly type: "integer";
|
|
2102
|
+
};
|
|
2103
|
+
readonly maxItems: {
|
|
2104
|
+
readonly type: "integer";
|
|
2105
|
+
};
|
|
1954
2106
|
};
|
|
1955
2107
|
readonly required: readonly ["type", "title", "items"];
|
|
1956
2108
|
readonly additionalProperties: false;
|
|
@@ -1959,6 +2111,7 @@ export declare const documentModel: {
|
|
|
1959
2111
|
readonly properties: {
|
|
1960
2112
|
readonly title: {
|
|
1961
2113
|
readonly type: "string";
|
|
2114
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
1962
2115
|
};
|
|
1963
2116
|
readonly type: {
|
|
1964
2117
|
readonly type: "string";
|
|
@@ -1966,16 +2119,19 @@ export declare const documentModel: {
|
|
|
1966
2119
|
};
|
|
1967
2120
|
readonly properties: {
|
|
1968
2121
|
readonly type: "object";
|
|
1969
|
-
readonly
|
|
1970
|
-
readonly
|
|
1971
|
-
|
|
1972
|
-
readonly
|
|
1973
|
-
readonly
|
|
2122
|
+
readonly patternProperties: {
|
|
2123
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2124
|
+
readonly type: "object";
|
|
2125
|
+
readonly properties: {
|
|
2126
|
+
readonly $ref: {
|
|
2127
|
+
readonly type: "string";
|
|
2128
|
+
};
|
|
1974
2129
|
};
|
|
2130
|
+
readonly required: readonly ["$ref"];
|
|
2131
|
+
readonly additionalProperties: false;
|
|
1975
2132
|
};
|
|
1976
|
-
readonly required: readonly ["$ref"];
|
|
1977
|
-
readonly additionalProperties: false;
|
|
1978
2133
|
};
|
|
2134
|
+
readonly additionalProperties: false;
|
|
1979
2135
|
};
|
|
1980
2136
|
readonly required: {
|
|
1981
2137
|
readonly type: "array";
|
|
@@ -1999,16 +2155,19 @@ export declare const documentModel: {
|
|
|
1999
2155
|
};
|
|
2000
2156
|
readonly properties: {
|
|
2001
2157
|
readonly type: "object";
|
|
2002
|
-
readonly
|
|
2003
|
-
readonly
|
|
2004
|
-
|
|
2005
|
-
readonly
|
|
2006
|
-
readonly
|
|
2158
|
+
readonly patternProperties: {
|
|
2159
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2160
|
+
readonly type: "object";
|
|
2161
|
+
readonly properties: {
|
|
2162
|
+
readonly $ref: {
|
|
2163
|
+
readonly type: "string";
|
|
2164
|
+
};
|
|
2007
2165
|
};
|
|
2166
|
+
readonly required: readonly ["$ref"];
|
|
2167
|
+
readonly additionalProperties: false;
|
|
2008
2168
|
};
|
|
2009
|
-
readonly required: readonly ["$ref"];
|
|
2010
|
-
readonly additionalProperties: false;
|
|
2011
2169
|
};
|
|
2170
|
+
readonly additionalProperties: false;
|
|
2012
2171
|
};
|
|
2013
2172
|
readonly required: {
|
|
2014
2173
|
readonly type: "array";
|
|
@@ -2040,7 +2199,7 @@ export declare const documentModel: {
|
|
|
2040
2199
|
};
|
|
2041
2200
|
};
|
|
2042
2201
|
};
|
|
2043
|
-
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior", "
|
|
2202
|
+
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior", "uniqueFields"];
|
|
2044
2203
|
readonly additionalProperties: false;
|
|
2045
2204
|
}];
|
|
2046
2205
|
};
|
|
@@ -2054,10 +2213,11 @@ export declare const documentModelsCluster: {
|
|
|
2054
2213
|
readonly properties: {
|
|
2055
2214
|
readonly behavior: {
|
|
2056
2215
|
readonly type: "string";
|
|
2057
|
-
readonly const: "
|
|
2216
|
+
readonly const: "default";
|
|
2058
2217
|
};
|
|
2059
2218
|
readonly name: {
|
|
2060
2219
|
readonly type: "string";
|
|
2220
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2061
2221
|
};
|
|
2062
2222
|
readonly version: {
|
|
2063
2223
|
readonly type: "string";
|
|
@@ -2099,10 +2259,10 @@ export declare const documentModelsCluster: {
|
|
|
2099
2259
|
readonly default: {
|
|
2100
2260
|
readonly type: "integer";
|
|
2101
2261
|
};
|
|
2102
|
-
readonly
|
|
2262
|
+
readonly minimum: {
|
|
2103
2263
|
readonly type: "integer";
|
|
2104
2264
|
};
|
|
2105
|
-
readonly
|
|
2265
|
+
readonly maximum: {
|
|
2106
2266
|
readonly type: "integer";
|
|
2107
2267
|
};
|
|
2108
2268
|
};
|
|
@@ -2167,10 +2327,12 @@ export declare const documentModelsCluster: {
|
|
|
2167
2327
|
readonly type: "array";
|
|
2168
2328
|
readonly items: {
|
|
2169
2329
|
readonly type: "string";
|
|
2330
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2170
2331
|
};
|
|
2171
2332
|
};
|
|
2172
2333
|
readonly default: {
|
|
2173
2334
|
readonly type: "string";
|
|
2335
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2174
2336
|
};
|
|
2175
2337
|
};
|
|
2176
2338
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -2201,6 +2363,7 @@ export declare const documentModelsCluster: {
|
|
|
2201
2363
|
};
|
|
2202
2364
|
readonly title: {
|
|
2203
2365
|
readonly type: "string";
|
|
2366
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2204
2367
|
};
|
|
2205
2368
|
readonly items: {
|
|
2206
2369
|
readonly type: "object";
|
|
@@ -2212,6 +2375,15 @@ export declare const documentModelsCluster: {
|
|
|
2212
2375
|
readonly required: readonly ["$ref"];
|
|
2213
2376
|
readonly additionalProperties: false;
|
|
2214
2377
|
};
|
|
2378
|
+
readonly uniqueItems: {
|
|
2379
|
+
readonly type: "boolean";
|
|
2380
|
+
};
|
|
2381
|
+
readonly minItems: {
|
|
2382
|
+
readonly type: "integer";
|
|
2383
|
+
};
|
|
2384
|
+
readonly maxItems: {
|
|
2385
|
+
readonly type: "integer";
|
|
2386
|
+
};
|
|
2215
2387
|
};
|
|
2216
2388
|
readonly required: readonly ["type", "title", "items"];
|
|
2217
2389
|
readonly additionalProperties: false;
|
|
@@ -2220,6 +2392,7 @@ export declare const documentModelsCluster: {
|
|
|
2220
2392
|
readonly properties: {
|
|
2221
2393
|
readonly title: {
|
|
2222
2394
|
readonly type: "string";
|
|
2395
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2223
2396
|
};
|
|
2224
2397
|
readonly type: {
|
|
2225
2398
|
readonly type: "string";
|
|
@@ -2227,16 +2400,19 @@ export declare const documentModelsCluster: {
|
|
|
2227
2400
|
};
|
|
2228
2401
|
readonly properties: {
|
|
2229
2402
|
readonly type: "object";
|
|
2230
|
-
readonly
|
|
2231
|
-
readonly
|
|
2232
|
-
|
|
2233
|
-
readonly
|
|
2234
|
-
readonly
|
|
2403
|
+
readonly patternProperties: {
|
|
2404
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2405
|
+
readonly type: "object";
|
|
2406
|
+
readonly properties: {
|
|
2407
|
+
readonly $ref: {
|
|
2408
|
+
readonly type: "string";
|
|
2409
|
+
};
|
|
2235
2410
|
};
|
|
2411
|
+
readonly required: readonly ["$ref"];
|
|
2412
|
+
readonly additionalProperties: false;
|
|
2236
2413
|
};
|
|
2237
|
-
readonly required: readonly ["$ref"];
|
|
2238
|
-
readonly additionalProperties: false;
|
|
2239
2414
|
};
|
|
2415
|
+
readonly additionalProperties: false;
|
|
2240
2416
|
};
|
|
2241
2417
|
readonly required: {
|
|
2242
2418
|
readonly type: "array";
|
|
@@ -2260,16 +2436,19 @@ export declare const documentModelsCluster: {
|
|
|
2260
2436
|
};
|
|
2261
2437
|
readonly properties: {
|
|
2262
2438
|
readonly type: "object";
|
|
2263
|
-
readonly
|
|
2264
|
-
readonly
|
|
2265
|
-
|
|
2266
|
-
readonly
|
|
2267
|
-
readonly
|
|
2439
|
+
readonly patternProperties: {
|
|
2440
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2441
|
+
readonly type: "object";
|
|
2442
|
+
readonly properties: {
|
|
2443
|
+
readonly $ref: {
|
|
2444
|
+
readonly type: "string";
|
|
2445
|
+
};
|
|
2268
2446
|
};
|
|
2447
|
+
readonly required: readonly ["$ref"];
|
|
2448
|
+
readonly additionalProperties: false;
|
|
2269
2449
|
};
|
|
2270
|
-
readonly required: readonly ["$ref"];
|
|
2271
|
-
readonly additionalProperties: false;
|
|
2272
2450
|
};
|
|
2451
|
+
readonly additionalProperties: false;
|
|
2273
2452
|
};
|
|
2274
2453
|
readonly required: {
|
|
2275
2454
|
readonly type: "array";
|
|
@@ -2308,10 +2487,11 @@ export declare const documentModelsCluster: {
|
|
|
2308
2487
|
readonly properties: {
|
|
2309
2488
|
readonly behavior: {
|
|
2310
2489
|
readonly type: "string";
|
|
2311
|
-
readonly const: "
|
|
2490
|
+
readonly const: "interface";
|
|
2312
2491
|
};
|
|
2313
2492
|
readonly name: {
|
|
2314
2493
|
readonly type: "string";
|
|
2494
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2315
2495
|
};
|
|
2316
2496
|
readonly version: {
|
|
2317
2497
|
readonly type: "string";
|
|
@@ -2353,10 +2533,10 @@ export declare const documentModelsCluster: {
|
|
|
2353
2533
|
readonly default: {
|
|
2354
2534
|
readonly type: "integer";
|
|
2355
2535
|
};
|
|
2356
|
-
readonly
|
|
2536
|
+
readonly minimum: {
|
|
2357
2537
|
readonly type: "integer";
|
|
2358
2538
|
};
|
|
2359
|
-
readonly
|
|
2539
|
+
readonly maximum: {
|
|
2360
2540
|
readonly type: "integer";
|
|
2361
2541
|
};
|
|
2362
2542
|
};
|
|
@@ -2421,10 +2601,12 @@ export declare const documentModelsCluster: {
|
|
|
2421
2601
|
readonly type: "array";
|
|
2422
2602
|
readonly items: {
|
|
2423
2603
|
readonly type: "string";
|
|
2604
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2424
2605
|
};
|
|
2425
2606
|
};
|
|
2426
2607
|
readonly default: {
|
|
2427
2608
|
readonly type: "string";
|
|
2609
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2428
2610
|
};
|
|
2429
2611
|
};
|
|
2430
2612
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -2455,6 +2637,7 @@ export declare const documentModelsCluster: {
|
|
|
2455
2637
|
};
|
|
2456
2638
|
readonly title: {
|
|
2457
2639
|
readonly type: "string";
|
|
2640
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2458
2641
|
};
|
|
2459
2642
|
readonly items: {
|
|
2460
2643
|
readonly type: "object";
|
|
@@ -2466,6 +2649,15 @@ export declare const documentModelsCluster: {
|
|
|
2466
2649
|
readonly required: readonly ["$ref"];
|
|
2467
2650
|
readonly additionalProperties: false;
|
|
2468
2651
|
};
|
|
2652
|
+
readonly uniqueItems: {
|
|
2653
|
+
readonly type: "boolean";
|
|
2654
|
+
};
|
|
2655
|
+
readonly minItems: {
|
|
2656
|
+
readonly type: "integer";
|
|
2657
|
+
};
|
|
2658
|
+
readonly maxItems: {
|
|
2659
|
+
readonly type: "integer";
|
|
2660
|
+
};
|
|
2469
2661
|
};
|
|
2470
2662
|
readonly required: readonly ["type", "title", "items"];
|
|
2471
2663
|
readonly additionalProperties: false;
|
|
@@ -2474,6 +2666,7 @@ export declare const documentModelsCluster: {
|
|
|
2474
2666
|
readonly properties: {
|
|
2475
2667
|
readonly title: {
|
|
2476
2668
|
readonly type: "string";
|
|
2669
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2477
2670
|
};
|
|
2478
2671
|
readonly type: {
|
|
2479
2672
|
readonly type: "string";
|
|
@@ -2481,16 +2674,19 @@ export declare const documentModelsCluster: {
|
|
|
2481
2674
|
};
|
|
2482
2675
|
readonly properties: {
|
|
2483
2676
|
readonly type: "object";
|
|
2484
|
-
readonly
|
|
2485
|
-
readonly
|
|
2486
|
-
|
|
2487
|
-
readonly
|
|
2488
|
-
readonly
|
|
2677
|
+
readonly patternProperties: {
|
|
2678
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2679
|
+
readonly type: "object";
|
|
2680
|
+
readonly properties: {
|
|
2681
|
+
readonly $ref: {
|
|
2682
|
+
readonly type: "string";
|
|
2683
|
+
};
|
|
2489
2684
|
};
|
|
2685
|
+
readonly required: readonly ["$ref"];
|
|
2686
|
+
readonly additionalProperties: false;
|
|
2490
2687
|
};
|
|
2491
|
-
readonly required: readonly ["$ref"];
|
|
2492
|
-
readonly additionalProperties: false;
|
|
2493
2688
|
};
|
|
2689
|
+
readonly additionalProperties: false;
|
|
2494
2690
|
};
|
|
2495
2691
|
readonly required: {
|
|
2496
2692
|
readonly type: "array";
|
|
@@ -2514,16 +2710,19 @@ export declare const documentModelsCluster: {
|
|
|
2514
2710
|
};
|
|
2515
2711
|
readonly properties: {
|
|
2516
2712
|
readonly type: "object";
|
|
2517
|
-
readonly
|
|
2518
|
-
readonly
|
|
2519
|
-
|
|
2520
|
-
readonly
|
|
2521
|
-
readonly
|
|
2713
|
+
readonly patternProperties: {
|
|
2714
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2715
|
+
readonly type: "object";
|
|
2716
|
+
readonly properties: {
|
|
2717
|
+
readonly $ref: {
|
|
2718
|
+
readonly type: "string";
|
|
2719
|
+
};
|
|
2522
2720
|
};
|
|
2721
|
+
readonly required: readonly ["$ref"];
|
|
2722
|
+
readonly additionalProperties: false;
|
|
2523
2723
|
};
|
|
2524
|
-
readonly required: readonly ["$ref"];
|
|
2525
|
-
readonly additionalProperties: false;
|
|
2526
2724
|
};
|
|
2725
|
+
readonly additionalProperties: false;
|
|
2527
2726
|
};
|
|
2528
2727
|
readonly required: {
|
|
2529
2728
|
readonly type: "array";
|
|
@@ -2562,9 +2761,9 @@ export declare const documentModelsCluster: {
|
|
|
2562
2761
|
readonly properties: {
|
|
2563
2762
|
readonly behavior: {
|
|
2564
2763
|
readonly type: "string";
|
|
2565
|
-
readonly const: "
|
|
2764
|
+
readonly const: "unique";
|
|
2566
2765
|
};
|
|
2567
|
-
readonly
|
|
2766
|
+
readonly uniqueFields: {
|
|
2568
2767
|
readonly type: "array";
|
|
2569
2768
|
readonly items: {
|
|
2570
2769
|
readonly type: "string";
|
|
@@ -2572,6 +2771,7 @@ export declare const documentModelsCluster: {
|
|
|
2572
2771
|
};
|
|
2573
2772
|
readonly name: {
|
|
2574
2773
|
readonly type: "string";
|
|
2774
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2575
2775
|
};
|
|
2576
2776
|
readonly version: {
|
|
2577
2777
|
readonly type: "string";
|
|
@@ -2613,10 +2813,10 @@ export declare const documentModelsCluster: {
|
|
|
2613
2813
|
readonly default: {
|
|
2614
2814
|
readonly type: "integer";
|
|
2615
2815
|
};
|
|
2616
|
-
readonly
|
|
2816
|
+
readonly minimum: {
|
|
2617
2817
|
readonly type: "integer";
|
|
2618
2818
|
};
|
|
2619
|
-
readonly
|
|
2819
|
+
readonly maximum: {
|
|
2620
2820
|
readonly type: "integer";
|
|
2621
2821
|
};
|
|
2622
2822
|
};
|
|
@@ -2681,10 +2881,12 @@ export declare const documentModelsCluster: {
|
|
|
2681
2881
|
readonly type: "array";
|
|
2682
2882
|
readonly items: {
|
|
2683
2883
|
readonly type: "string";
|
|
2884
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2684
2885
|
};
|
|
2685
2886
|
};
|
|
2686
2887
|
readonly default: {
|
|
2687
2888
|
readonly type: "string";
|
|
2889
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2688
2890
|
};
|
|
2689
2891
|
};
|
|
2690
2892
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -2715,6 +2917,7 @@ export declare const documentModelsCluster: {
|
|
|
2715
2917
|
};
|
|
2716
2918
|
readonly title: {
|
|
2717
2919
|
readonly type: "string";
|
|
2920
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2718
2921
|
};
|
|
2719
2922
|
readonly items: {
|
|
2720
2923
|
readonly type: "object";
|
|
@@ -2726,6 +2929,15 @@ export declare const documentModelsCluster: {
|
|
|
2726
2929
|
readonly required: readonly ["$ref"];
|
|
2727
2930
|
readonly additionalProperties: false;
|
|
2728
2931
|
};
|
|
2932
|
+
readonly uniqueItems: {
|
|
2933
|
+
readonly type: "boolean";
|
|
2934
|
+
};
|
|
2935
|
+
readonly minItems: {
|
|
2936
|
+
readonly type: "integer";
|
|
2937
|
+
};
|
|
2938
|
+
readonly maxItems: {
|
|
2939
|
+
readonly type: "integer";
|
|
2940
|
+
};
|
|
2729
2941
|
};
|
|
2730
2942
|
readonly required: readonly ["type", "title", "items"];
|
|
2731
2943
|
readonly additionalProperties: false;
|
|
@@ -2734,6 +2946,7 @@ export declare const documentModelsCluster: {
|
|
|
2734
2946
|
readonly properties: {
|
|
2735
2947
|
readonly title: {
|
|
2736
2948
|
readonly type: "string";
|
|
2949
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2737
2950
|
};
|
|
2738
2951
|
readonly type: {
|
|
2739
2952
|
readonly type: "string";
|
|
@@ -2741,16 +2954,19 @@ export declare const documentModelsCluster: {
|
|
|
2741
2954
|
};
|
|
2742
2955
|
readonly properties: {
|
|
2743
2956
|
readonly type: "object";
|
|
2744
|
-
readonly
|
|
2745
|
-
readonly
|
|
2746
|
-
|
|
2747
|
-
readonly
|
|
2748
|
-
readonly
|
|
2957
|
+
readonly patternProperties: {
|
|
2958
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2959
|
+
readonly type: "object";
|
|
2960
|
+
readonly properties: {
|
|
2961
|
+
readonly $ref: {
|
|
2962
|
+
readonly type: "string";
|
|
2963
|
+
};
|
|
2749
2964
|
};
|
|
2965
|
+
readonly required: readonly ["$ref"];
|
|
2966
|
+
readonly additionalProperties: false;
|
|
2750
2967
|
};
|
|
2751
|
-
readonly required: readonly ["$ref"];
|
|
2752
|
-
readonly additionalProperties: false;
|
|
2753
2968
|
};
|
|
2969
|
+
readonly additionalProperties: false;
|
|
2754
2970
|
};
|
|
2755
2971
|
readonly required: {
|
|
2756
2972
|
readonly type: "array";
|
|
@@ -2774,16 +2990,19 @@ export declare const documentModelsCluster: {
|
|
|
2774
2990
|
};
|
|
2775
2991
|
readonly properties: {
|
|
2776
2992
|
readonly type: "object";
|
|
2777
|
-
readonly
|
|
2778
|
-
readonly
|
|
2779
|
-
|
|
2780
|
-
readonly
|
|
2781
|
-
readonly
|
|
2993
|
+
readonly patternProperties: {
|
|
2994
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2995
|
+
readonly type: "object";
|
|
2996
|
+
readonly properties: {
|
|
2997
|
+
readonly $ref: {
|
|
2998
|
+
readonly type: "string";
|
|
2999
|
+
};
|
|
2782
3000
|
};
|
|
3001
|
+
readonly required: readonly ["$ref"];
|
|
3002
|
+
readonly additionalProperties: false;
|
|
2783
3003
|
};
|
|
2784
|
-
readonly required: readonly ["$ref"];
|
|
2785
|
-
readonly additionalProperties: false;
|
|
2786
3004
|
};
|
|
3005
|
+
readonly additionalProperties: false;
|
|
2787
3006
|
};
|
|
2788
3007
|
readonly required: {
|
|
2789
3008
|
readonly type: "array";
|
|
@@ -2815,7 +3034,7 @@ export declare const documentModelsCluster: {
|
|
|
2815
3034
|
};
|
|
2816
3035
|
};
|
|
2817
3036
|
};
|
|
2818
|
-
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior", "
|
|
3037
|
+
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior", "uniqueFields"];
|
|
2819
3038
|
readonly additionalProperties: false;
|
|
2820
3039
|
}];
|
|
2821
3040
|
};
|
|
@@ -2830,10 +3049,11 @@ export declare const documentModelsRecord: {
|
|
|
2830
3049
|
readonly properties: {
|
|
2831
3050
|
readonly behavior: {
|
|
2832
3051
|
readonly type: "string";
|
|
2833
|
-
readonly const: "
|
|
3052
|
+
readonly const: "default";
|
|
2834
3053
|
};
|
|
2835
3054
|
readonly name: {
|
|
2836
3055
|
readonly type: "string";
|
|
3056
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2837
3057
|
};
|
|
2838
3058
|
readonly version: {
|
|
2839
3059
|
readonly type: "string";
|
|
@@ -2875,10 +3095,10 @@ export declare const documentModelsRecord: {
|
|
|
2875
3095
|
readonly default: {
|
|
2876
3096
|
readonly type: "integer";
|
|
2877
3097
|
};
|
|
2878
|
-
readonly
|
|
3098
|
+
readonly minimum: {
|
|
2879
3099
|
readonly type: "integer";
|
|
2880
3100
|
};
|
|
2881
|
-
readonly
|
|
3101
|
+
readonly maximum: {
|
|
2882
3102
|
readonly type: "integer";
|
|
2883
3103
|
};
|
|
2884
3104
|
};
|
|
@@ -2943,10 +3163,12 @@ export declare const documentModelsRecord: {
|
|
|
2943
3163
|
readonly type: "array";
|
|
2944
3164
|
readonly items: {
|
|
2945
3165
|
readonly type: "string";
|
|
3166
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2946
3167
|
};
|
|
2947
3168
|
};
|
|
2948
3169
|
readonly default: {
|
|
2949
3170
|
readonly type: "string";
|
|
3171
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2950
3172
|
};
|
|
2951
3173
|
};
|
|
2952
3174
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -2977,6 +3199,7 @@ export declare const documentModelsRecord: {
|
|
|
2977
3199
|
};
|
|
2978
3200
|
readonly title: {
|
|
2979
3201
|
readonly type: "string";
|
|
3202
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2980
3203
|
};
|
|
2981
3204
|
readonly items: {
|
|
2982
3205
|
readonly type: "object";
|
|
@@ -2988,6 +3211,15 @@ export declare const documentModelsRecord: {
|
|
|
2988
3211
|
readonly required: readonly ["$ref"];
|
|
2989
3212
|
readonly additionalProperties: false;
|
|
2990
3213
|
};
|
|
3214
|
+
readonly uniqueItems: {
|
|
3215
|
+
readonly type: "boolean";
|
|
3216
|
+
};
|
|
3217
|
+
readonly minItems: {
|
|
3218
|
+
readonly type: "integer";
|
|
3219
|
+
};
|
|
3220
|
+
readonly maxItems: {
|
|
3221
|
+
readonly type: "integer";
|
|
3222
|
+
};
|
|
2991
3223
|
};
|
|
2992
3224
|
readonly required: readonly ["type", "title", "items"];
|
|
2993
3225
|
readonly additionalProperties: false;
|
|
@@ -2996,6 +3228,7 @@ export declare const documentModelsRecord: {
|
|
|
2996
3228
|
readonly properties: {
|
|
2997
3229
|
readonly title: {
|
|
2998
3230
|
readonly type: "string";
|
|
3231
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2999
3232
|
};
|
|
3000
3233
|
readonly type: {
|
|
3001
3234
|
readonly type: "string";
|
|
@@ -3003,16 +3236,19 @@ export declare const documentModelsRecord: {
|
|
|
3003
3236
|
};
|
|
3004
3237
|
readonly properties: {
|
|
3005
3238
|
readonly type: "object";
|
|
3006
|
-
readonly
|
|
3007
|
-
readonly
|
|
3008
|
-
|
|
3009
|
-
readonly
|
|
3010
|
-
readonly
|
|
3239
|
+
readonly patternProperties: {
|
|
3240
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
3241
|
+
readonly type: "object";
|
|
3242
|
+
readonly properties: {
|
|
3243
|
+
readonly $ref: {
|
|
3244
|
+
readonly type: "string";
|
|
3245
|
+
};
|
|
3011
3246
|
};
|
|
3247
|
+
readonly required: readonly ["$ref"];
|
|
3248
|
+
readonly additionalProperties: false;
|
|
3012
3249
|
};
|
|
3013
|
-
readonly required: readonly ["$ref"];
|
|
3014
|
-
readonly additionalProperties: false;
|
|
3015
3250
|
};
|
|
3251
|
+
readonly additionalProperties: false;
|
|
3016
3252
|
};
|
|
3017
3253
|
readonly required: {
|
|
3018
3254
|
readonly type: "array";
|
|
@@ -3036,16 +3272,19 @@ export declare const documentModelsRecord: {
|
|
|
3036
3272
|
};
|
|
3037
3273
|
readonly properties: {
|
|
3038
3274
|
readonly type: "object";
|
|
3039
|
-
readonly
|
|
3040
|
-
readonly
|
|
3041
|
-
|
|
3042
|
-
readonly
|
|
3043
|
-
readonly
|
|
3275
|
+
readonly patternProperties: {
|
|
3276
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
3277
|
+
readonly type: "object";
|
|
3278
|
+
readonly properties: {
|
|
3279
|
+
readonly $ref: {
|
|
3280
|
+
readonly type: "string";
|
|
3281
|
+
};
|
|
3044
3282
|
};
|
|
3283
|
+
readonly required: readonly ["$ref"];
|
|
3284
|
+
readonly additionalProperties: false;
|
|
3045
3285
|
};
|
|
3046
|
-
readonly required: readonly ["$ref"];
|
|
3047
|
-
readonly additionalProperties: false;
|
|
3048
3286
|
};
|
|
3287
|
+
readonly additionalProperties: false;
|
|
3049
3288
|
};
|
|
3050
3289
|
readonly required: {
|
|
3051
3290
|
readonly type: "array";
|
|
@@ -3084,10 +3323,11 @@ export declare const documentModelsRecord: {
|
|
|
3084
3323
|
readonly properties: {
|
|
3085
3324
|
readonly behavior: {
|
|
3086
3325
|
readonly type: "string";
|
|
3087
|
-
readonly const: "
|
|
3326
|
+
readonly const: "interface";
|
|
3088
3327
|
};
|
|
3089
3328
|
readonly name: {
|
|
3090
3329
|
readonly type: "string";
|
|
3330
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
3091
3331
|
};
|
|
3092
3332
|
readonly version: {
|
|
3093
3333
|
readonly type: "string";
|
|
@@ -3129,10 +3369,10 @@ export declare const documentModelsRecord: {
|
|
|
3129
3369
|
readonly default: {
|
|
3130
3370
|
readonly type: "integer";
|
|
3131
3371
|
};
|
|
3132
|
-
readonly
|
|
3372
|
+
readonly minimum: {
|
|
3133
3373
|
readonly type: "integer";
|
|
3134
3374
|
};
|
|
3135
|
-
readonly
|
|
3375
|
+
readonly maximum: {
|
|
3136
3376
|
readonly type: "integer";
|
|
3137
3377
|
};
|
|
3138
3378
|
};
|
|
@@ -3197,10 +3437,12 @@ export declare const documentModelsRecord: {
|
|
|
3197
3437
|
readonly type: "array";
|
|
3198
3438
|
readonly items: {
|
|
3199
3439
|
readonly type: "string";
|
|
3440
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
3200
3441
|
};
|
|
3201
3442
|
};
|
|
3202
3443
|
readonly default: {
|
|
3203
3444
|
readonly type: "string";
|
|
3445
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
3204
3446
|
};
|
|
3205
3447
|
};
|
|
3206
3448
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -3231,6 +3473,7 @@ export declare const documentModelsRecord: {
|
|
|
3231
3473
|
};
|
|
3232
3474
|
readonly title: {
|
|
3233
3475
|
readonly type: "string";
|
|
3476
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
3234
3477
|
};
|
|
3235
3478
|
readonly items: {
|
|
3236
3479
|
readonly type: "object";
|
|
@@ -3242,6 +3485,15 @@ export declare const documentModelsRecord: {
|
|
|
3242
3485
|
readonly required: readonly ["$ref"];
|
|
3243
3486
|
readonly additionalProperties: false;
|
|
3244
3487
|
};
|
|
3488
|
+
readonly uniqueItems: {
|
|
3489
|
+
readonly type: "boolean";
|
|
3490
|
+
};
|
|
3491
|
+
readonly minItems: {
|
|
3492
|
+
readonly type: "integer";
|
|
3493
|
+
};
|
|
3494
|
+
readonly maxItems: {
|
|
3495
|
+
readonly type: "integer";
|
|
3496
|
+
};
|
|
3245
3497
|
};
|
|
3246
3498
|
readonly required: readonly ["type", "title", "items"];
|
|
3247
3499
|
readonly additionalProperties: false;
|
|
@@ -3250,6 +3502,7 @@ export declare const documentModelsRecord: {
|
|
|
3250
3502
|
readonly properties: {
|
|
3251
3503
|
readonly title: {
|
|
3252
3504
|
readonly type: "string";
|
|
3505
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
3253
3506
|
};
|
|
3254
3507
|
readonly type: {
|
|
3255
3508
|
readonly type: "string";
|
|
@@ -3257,16 +3510,19 @@ export declare const documentModelsRecord: {
|
|
|
3257
3510
|
};
|
|
3258
3511
|
readonly properties: {
|
|
3259
3512
|
readonly type: "object";
|
|
3260
|
-
readonly
|
|
3261
|
-
readonly
|
|
3262
|
-
|
|
3263
|
-
readonly
|
|
3264
|
-
readonly
|
|
3513
|
+
readonly patternProperties: {
|
|
3514
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
3515
|
+
readonly type: "object";
|
|
3516
|
+
readonly properties: {
|
|
3517
|
+
readonly $ref: {
|
|
3518
|
+
readonly type: "string";
|
|
3519
|
+
};
|
|
3265
3520
|
};
|
|
3521
|
+
readonly required: readonly ["$ref"];
|
|
3522
|
+
readonly additionalProperties: false;
|
|
3266
3523
|
};
|
|
3267
|
-
readonly required: readonly ["$ref"];
|
|
3268
|
-
readonly additionalProperties: false;
|
|
3269
3524
|
};
|
|
3525
|
+
readonly additionalProperties: false;
|
|
3270
3526
|
};
|
|
3271
3527
|
readonly required: {
|
|
3272
3528
|
readonly type: "array";
|
|
@@ -3290,16 +3546,19 @@ export declare const documentModelsRecord: {
|
|
|
3290
3546
|
};
|
|
3291
3547
|
readonly properties: {
|
|
3292
3548
|
readonly type: "object";
|
|
3293
|
-
readonly
|
|
3294
|
-
readonly
|
|
3295
|
-
|
|
3296
|
-
readonly
|
|
3297
|
-
readonly
|
|
3549
|
+
readonly patternProperties: {
|
|
3550
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
3551
|
+
readonly type: "object";
|
|
3552
|
+
readonly properties: {
|
|
3553
|
+
readonly $ref: {
|
|
3554
|
+
readonly type: "string";
|
|
3555
|
+
};
|
|
3298
3556
|
};
|
|
3557
|
+
readonly required: readonly ["$ref"];
|
|
3558
|
+
readonly additionalProperties: false;
|
|
3299
3559
|
};
|
|
3300
|
-
readonly required: readonly ["$ref"];
|
|
3301
|
-
readonly additionalProperties: false;
|
|
3302
3560
|
};
|
|
3561
|
+
readonly additionalProperties: false;
|
|
3303
3562
|
};
|
|
3304
3563
|
readonly required: {
|
|
3305
3564
|
readonly type: "array";
|
|
@@ -3338,9 +3597,9 @@ export declare const documentModelsRecord: {
|
|
|
3338
3597
|
readonly properties: {
|
|
3339
3598
|
readonly behavior: {
|
|
3340
3599
|
readonly type: "string";
|
|
3341
|
-
readonly const: "
|
|
3600
|
+
readonly const: "unique";
|
|
3342
3601
|
};
|
|
3343
|
-
readonly
|
|
3602
|
+
readonly uniqueFields: {
|
|
3344
3603
|
readonly type: "array";
|
|
3345
3604
|
readonly items: {
|
|
3346
3605
|
readonly type: "string";
|
|
@@ -3348,6 +3607,7 @@ export declare const documentModelsRecord: {
|
|
|
3348
3607
|
};
|
|
3349
3608
|
readonly name: {
|
|
3350
3609
|
readonly type: "string";
|
|
3610
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
3351
3611
|
};
|
|
3352
3612
|
readonly version: {
|
|
3353
3613
|
readonly type: "string";
|
|
@@ -3389,10 +3649,10 @@ export declare const documentModelsRecord: {
|
|
|
3389
3649
|
readonly default: {
|
|
3390
3650
|
readonly type: "integer";
|
|
3391
3651
|
};
|
|
3392
|
-
readonly
|
|
3652
|
+
readonly minimum: {
|
|
3393
3653
|
readonly type: "integer";
|
|
3394
3654
|
};
|
|
3395
|
-
readonly
|
|
3655
|
+
readonly maximum: {
|
|
3396
3656
|
readonly type: "integer";
|
|
3397
3657
|
};
|
|
3398
3658
|
};
|
|
@@ -3457,10 +3717,12 @@ export declare const documentModelsRecord: {
|
|
|
3457
3717
|
readonly type: "array";
|
|
3458
3718
|
readonly items: {
|
|
3459
3719
|
readonly type: "string";
|
|
3720
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
3460
3721
|
};
|
|
3461
3722
|
};
|
|
3462
3723
|
readonly default: {
|
|
3463
3724
|
readonly type: "string";
|
|
3725
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
3464
3726
|
};
|
|
3465
3727
|
};
|
|
3466
3728
|
readonly required: readonly ["type", "title", "enum"];
|
|
@@ -3491,6 +3753,7 @@ export declare const documentModelsRecord: {
|
|
|
3491
3753
|
};
|
|
3492
3754
|
readonly title: {
|
|
3493
3755
|
readonly type: "string";
|
|
3756
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
3494
3757
|
};
|
|
3495
3758
|
readonly items: {
|
|
3496
3759
|
readonly type: "object";
|
|
@@ -3502,6 +3765,15 @@ export declare const documentModelsRecord: {
|
|
|
3502
3765
|
readonly required: readonly ["$ref"];
|
|
3503
3766
|
readonly additionalProperties: false;
|
|
3504
3767
|
};
|
|
3768
|
+
readonly uniqueItems: {
|
|
3769
|
+
readonly type: "boolean";
|
|
3770
|
+
};
|
|
3771
|
+
readonly minItems: {
|
|
3772
|
+
readonly type: "integer";
|
|
3773
|
+
};
|
|
3774
|
+
readonly maxItems: {
|
|
3775
|
+
readonly type: "integer";
|
|
3776
|
+
};
|
|
3505
3777
|
};
|
|
3506
3778
|
readonly required: readonly ["type", "title", "items"];
|
|
3507
3779
|
readonly additionalProperties: false;
|
|
@@ -3510,6 +3782,7 @@ export declare const documentModelsRecord: {
|
|
|
3510
3782
|
readonly properties: {
|
|
3511
3783
|
readonly title: {
|
|
3512
3784
|
readonly type: "string";
|
|
3785
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
3513
3786
|
};
|
|
3514
3787
|
readonly type: {
|
|
3515
3788
|
readonly type: "string";
|
|
@@ -3517,16 +3790,19 @@ export declare const documentModelsRecord: {
|
|
|
3517
3790
|
};
|
|
3518
3791
|
readonly properties: {
|
|
3519
3792
|
readonly type: "object";
|
|
3520
|
-
readonly
|
|
3521
|
-
readonly
|
|
3522
|
-
|
|
3523
|
-
readonly
|
|
3524
|
-
readonly
|
|
3793
|
+
readonly patternProperties: {
|
|
3794
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
3795
|
+
readonly type: "object";
|
|
3796
|
+
readonly properties: {
|
|
3797
|
+
readonly $ref: {
|
|
3798
|
+
readonly type: "string";
|
|
3799
|
+
};
|
|
3525
3800
|
};
|
|
3801
|
+
readonly required: readonly ["$ref"];
|
|
3802
|
+
readonly additionalProperties: false;
|
|
3526
3803
|
};
|
|
3527
|
-
readonly required: readonly ["$ref"];
|
|
3528
|
-
readonly additionalProperties: false;
|
|
3529
3804
|
};
|
|
3805
|
+
readonly additionalProperties: false;
|
|
3530
3806
|
};
|
|
3531
3807
|
readonly required: {
|
|
3532
3808
|
readonly type: "array";
|
|
@@ -3550,16 +3826,19 @@ export declare const documentModelsRecord: {
|
|
|
3550
3826
|
};
|
|
3551
3827
|
readonly properties: {
|
|
3552
3828
|
readonly type: "object";
|
|
3553
|
-
readonly
|
|
3554
|
-
readonly
|
|
3555
|
-
|
|
3556
|
-
readonly
|
|
3557
|
-
readonly
|
|
3829
|
+
readonly patternProperties: {
|
|
3830
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
3831
|
+
readonly type: "object";
|
|
3832
|
+
readonly properties: {
|
|
3833
|
+
readonly $ref: {
|
|
3834
|
+
readonly type: "string";
|
|
3835
|
+
};
|
|
3558
3836
|
};
|
|
3837
|
+
readonly required: readonly ["$ref"];
|
|
3838
|
+
readonly additionalProperties: false;
|
|
3559
3839
|
};
|
|
3560
|
-
readonly required: readonly ["$ref"];
|
|
3561
|
-
readonly additionalProperties: false;
|
|
3562
3840
|
};
|
|
3841
|
+
readonly additionalProperties: false;
|
|
3563
3842
|
};
|
|
3564
3843
|
readonly required: {
|
|
3565
3844
|
readonly type: "array";
|
|
@@ -3591,7 +3870,7 @@ export declare const documentModelsRecord: {
|
|
|
3591
3870
|
};
|
|
3592
3871
|
};
|
|
3593
3872
|
};
|
|
3594
|
-
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior", "
|
|
3873
|
+
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior", "uniqueFields"];
|
|
3595
3874
|
readonly additionalProperties: false;
|
|
3596
3875
|
}];
|
|
3597
3876
|
};
|