@redocly/config 0.50.1 → 0.51.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/asyncapi-config-schema.d.ts +10 -27
- package/lib/common.d.ts +120 -120
- package/lib/constants/shared.d.ts +1 -0
- package/lib/default-theme-config-schema.d.ts +520 -621
- package/lib/entities-catalog-config-schema.d.ts +60 -72
- package/lib/entities-catalog-entity-file-schema.d.ts +74 -67
- package/lib/ex-theme-config-schemas.d.ts +266 -354
- package/lib/feedback-config-schema.d.ts +9 -29
- package/lib/graphql-config-schema.d.ts +11 -28
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/product-override-schema.d.ts +4203 -4461
- package/lib/redoc-config-schema.d.ts +14 -33
- package/lib/reference-docs-config-schema.d.ts +14 -10
- package/lib/reunite-config-schema.d.ts +11 -12
- package/lib/root-config-schema.d.ts +22624 -17295
- package/lib/scorecards-config-schema.d.ts +168 -108
- package/lib/types/index.d.ts +1 -0
- package/lib/types/json-schema-types.d.ts +69 -0
- package/lib/types/portal-shared-types.d.ts +3 -0
- package/lib-esm/asyncapi-config-schema.d.ts +10 -27
- package/lib-esm/common.d.ts +120 -120
- package/lib-esm/constants/shared.d.ts +1 -0
- package/lib-esm/default-theme-config-schema.d.ts +520 -621
- package/lib-esm/entities-catalog-config-schema.d.ts +60 -72
- package/lib-esm/entities-catalog-entity-file-schema.d.ts +74 -67
- package/lib-esm/ex-theme-config-schemas.d.ts +266 -354
- package/lib-esm/feedback-config-schema.d.ts +9 -29
- package/lib-esm/graphql-config-schema.d.ts +11 -28
- package/lib-esm/index.d.ts +1 -1
- package/lib-esm/index.js +1 -1
- package/lib-esm/product-override-schema.d.ts +4203 -4461
- package/lib-esm/redoc-config-schema.d.ts +14 -33
- package/lib-esm/reference-docs-config-schema.d.ts +14 -10
- package/lib-esm/reunite-config-schema.d.ts +11 -12
- package/lib-esm/root-config-schema.d.ts +22624 -17295
- package/lib-esm/scorecards-config-schema.d.ts +168 -108
- package/lib-esm/types/index.d.ts +1 -0
- package/lib-esm/types/json-schema-types.d.ts +69 -0
- package/lib-esm/types/portal-shared-types.d.ts +3 -0
- package/package.json +1 -1
- package/lib/remove-property-recursively.d.ts +0 -5
- package/lib-esm/remove-property-recursively.d.ts +0 -5
|
@@ -7,7 +7,7 @@ export declare const userMetadataSchema: {
|
|
|
7
7
|
readonly description: 'Email of the user';
|
|
8
8
|
};
|
|
9
9
|
};
|
|
10
|
-
readonly required: readonly [
|
|
10
|
+
readonly required: readonly ["email"];
|
|
11
11
|
readonly additionalProperties: true;
|
|
12
12
|
};
|
|
13
13
|
export declare const apiDescriptionMetadataSchema: {
|
|
@@ -16,7 +16,7 @@ export declare const apiDescriptionMetadataSchema: {
|
|
|
16
16
|
readonly properties: {
|
|
17
17
|
readonly specType: {
|
|
18
18
|
readonly type: 'string';
|
|
19
|
-
readonly enum: readonly [
|
|
19
|
+
readonly enum: readonly ["jsonschema", "openapi", "asyncapi", "avro", "zod", "graphql", "protobuf", "arazzo"];
|
|
20
20
|
readonly description: 'Type of the API description';
|
|
21
21
|
};
|
|
22
22
|
readonly descriptionFile: {
|
|
@@ -24,7 +24,7 @@ export declare const apiDescriptionMetadataSchema: {
|
|
|
24
24
|
readonly description: 'Path to the file containing the API description';
|
|
25
25
|
};
|
|
26
26
|
};
|
|
27
|
-
readonly required: readonly [
|
|
27
|
+
readonly required: readonly ["specType", "descriptionFile"];
|
|
28
28
|
readonly additionalProperties: true;
|
|
29
29
|
};
|
|
30
30
|
export declare const apiOperationMetadataSchema: {
|
|
@@ -33,7 +33,7 @@ export declare const apiOperationMetadataSchema: {
|
|
|
33
33
|
readonly properties: {
|
|
34
34
|
readonly method: {
|
|
35
35
|
readonly type: 'string';
|
|
36
|
-
readonly enum: readonly [
|
|
36
|
+
readonly enum: readonly ["GET", "POST", "PUT", "DELETE", "PATCH", "MUTATION", "QUERY", "SUBSCRIBE", "PUBLISH"];
|
|
37
37
|
readonly description: 'HTTP method of the API operation';
|
|
38
38
|
};
|
|
39
39
|
readonly path: {
|
|
@@ -55,7 +55,7 @@ export declare const apiOperationMetadataSchema: {
|
|
|
55
55
|
};
|
|
56
56
|
};
|
|
57
57
|
};
|
|
58
|
-
readonly required: readonly [
|
|
58
|
+
readonly required: readonly ["method", "path"];
|
|
59
59
|
readonly additionalProperties: true;
|
|
60
60
|
};
|
|
61
61
|
export declare const dataSchemaMetadataSchema: {
|
|
@@ -64,7 +64,7 @@ export declare const dataSchemaMetadataSchema: {
|
|
|
64
64
|
readonly properties: {
|
|
65
65
|
readonly specType: {
|
|
66
66
|
readonly type: 'string';
|
|
67
|
-
readonly enum: readonly [
|
|
67
|
+
readonly enum: readonly ["jsonschema", "openapi", "asyncapi", "avro", "zod", "graphql", "protobuf", "arazzo"];
|
|
68
68
|
readonly description: 'Specification type of the data schema';
|
|
69
69
|
};
|
|
70
70
|
readonly schema: {
|
|
@@ -76,7 +76,7 @@ export declare const dataSchemaMetadataSchema: {
|
|
|
76
76
|
readonly description: 'SDL of the data structure';
|
|
77
77
|
};
|
|
78
78
|
};
|
|
79
|
-
readonly required: readonly [
|
|
79
|
+
readonly required: readonly ["specType"];
|
|
80
80
|
readonly additionalProperties: true;
|
|
81
81
|
};
|
|
82
82
|
export declare const defaultMetadataSchema: {
|
|
@@ -98,7 +98,7 @@ export declare const slackChannelFileSchema: {
|
|
|
98
98
|
readonly type: 'string';
|
|
99
99
|
};
|
|
100
100
|
};
|
|
101
|
-
readonly required: readonly [
|
|
101
|
+
readonly required: readonly ["name"];
|
|
102
102
|
readonly additionalProperties: false;
|
|
103
103
|
};
|
|
104
104
|
export declare const slackContactFileSchema: {
|
|
@@ -120,12 +120,12 @@ export declare const slackContactFileSchema: {
|
|
|
120
120
|
readonly type: 'string';
|
|
121
121
|
};
|
|
122
122
|
};
|
|
123
|
-
readonly required: readonly [
|
|
123
|
+
readonly required: readonly ["name"];
|
|
124
124
|
readonly additionalProperties: false;
|
|
125
125
|
};
|
|
126
126
|
};
|
|
127
127
|
};
|
|
128
|
-
readonly required: readonly [
|
|
128
|
+
readonly required: readonly ["channels"];
|
|
129
129
|
readonly additionalProperties: false;
|
|
130
130
|
};
|
|
131
131
|
export declare const entityContactFileSchema: {
|
|
@@ -151,12 +151,12 @@ export declare const entityContactFileSchema: {
|
|
|
151
151
|
readonly type: 'string';
|
|
152
152
|
};
|
|
153
153
|
};
|
|
154
|
-
readonly required: readonly [
|
|
154
|
+
readonly required: readonly ["name"];
|
|
155
155
|
readonly additionalProperties: false;
|
|
156
156
|
};
|
|
157
157
|
};
|
|
158
158
|
};
|
|
159
|
-
readonly required: readonly [
|
|
159
|
+
readonly required: readonly ["channels"];
|
|
160
160
|
readonly additionalProperties: false;
|
|
161
161
|
};
|
|
162
162
|
};
|
|
@@ -175,7 +175,7 @@ export declare const entityLinkFileSchema: {
|
|
|
175
175
|
readonly type: 'string';
|
|
176
176
|
};
|
|
177
177
|
};
|
|
178
|
-
readonly required: readonly [
|
|
178
|
+
readonly required: readonly ["label", "url"];
|
|
179
179
|
readonly additionalProperties: false;
|
|
180
180
|
};
|
|
181
181
|
export declare const entityRelationFileSchema: {
|
|
@@ -198,7 +198,7 @@ export declare const entityRelationFileSchema: {
|
|
|
198
198
|
readonly type: 'string';
|
|
199
199
|
};
|
|
200
200
|
};
|
|
201
|
-
readonly required: readonly [
|
|
201
|
+
readonly required: readonly ["type", "key"];
|
|
202
202
|
readonly additionalProperties: false;
|
|
203
203
|
};
|
|
204
204
|
export declare const entityBaseProperties: {
|
|
@@ -213,7 +213,7 @@ export declare const entityBaseProperties: {
|
|
|
213
213
|
};
|
|
214
214
|
readonly type: {
|
|
215
215
|
readonly type: 'string';
|
|
216
|
-
readonly enum: readonly [
|
|
216
|
+
readonly enum: readonly ["user", "data-schema", "api-operation", "api-description", "service", "domain", "team"];
|
|
217
217
|
};
|
|
218
218
|
readonly title: {
|
|
219
219
|
readonly type: 'string';
|
|
@@ -262,12 +262,12 @@ export declare const entityBaseProperties: {
|
|
|
262
262
|
readonly type: 'string';
|
|
263
263
|
};
|
|
264
264
|
};
|
|
265
|
-
readonly required: readonly [
|
|
265
|
+
readonly required: readonly ["name"];
|
|
266
266
|
readonly additionalProperties: false;
|
|
267
267
|
};
|
|
268
268
|
};
|
|
269
269
|
};
|
|
270
|
-
readonly required: readonly [
|
|
270
|
+
readonly required: readonly ["channels"];
|
|
271
271
|
readonly additionalProperties: false;
|
|
272
272
|
};
|
|
273
273
|
};
|
|
@@ -289,7 +289,7 @@ export declare const entityBaseProperties: {
|
|
|
289
289
|
readonly type: 'string';
|
|
290
290
|
};
|
|
291
291
|
};
|
|
292
|
-
readonly required: readonly [
|
|
292
|
+
readonly required: readonly ["label", "url"];
|
|
293
293
|
readonly additionalProperties: false;
|
|
294
294
|
};
|
|
295
295
|
};
|
|
@@ -316,7 +316,7 @@ export declare const entityBaseProperties: {
|
|
|
316
316
|
readonly type: 'string';
|
|
317
317
|
};
|
|
318
318
|
};
|
|
319
|
-
readonly required: readonly [
|
|
319
|
+
readonly required: readonly ["type", "key"];
|
|
320
320
|
readonly additionalProperties: false;
|
|
321
321
|
};
|
|
322
322
|
};
|
|
@@ -391,12 +391,12 @@ export declare const entityFileSchema: {
|
|
|
391
391
|
readonly type: 'string';
|
|
392
392
|
};
|
|
393
393
|
};
|
|
394
|
-
readonly required: readonly [
|
|
394
|
+
readonly required: readonly ["name"];
|
|
395
395
|
readonly additionalProperties: false;
|
|
396
396
|
};
|
|
397
397
|
};
|
|
398
398
|
};
|
|
399
|
-
readonly required: readonly [
|
|
399
|
+
readonly required: readonly ["channels"];
|
|
400
400
|
readonly additionalProperties: false;
|
|
401
401
|
};
|
|
402
402
|
};
|
|
@@ -418,7 +418,7 @@ export declare const entityFileSchema: {
|
|
|
418
418
|
readonly type: 'string';
|
|
419
419
|
};
|
|
420
420
|
};
|
|
421
|
-
readonly required: readonly [
|
|
421
|
+
readonly required: readonly ["label", "url"];
|
|
422
422
|
readonly additionalProperties: false;
|
|
423
423
|
};
|
|
424
424
|
};
|
|
@@ -445,11 +445,12 @@ export declare const entityFileSchema: {
|
|
|
445
445
|
readonly type: 'string';
|
|
446
446
|
};
|
|
447
447
|
};
|
|
448
|
-
readonly required: readonly [
|
|
448
|
+
readonly required: readonly ["type", "key"];
|
|
449
449
|
readonly additionalProperties: false;
|
|
450
450
|
};
|
|
451
451
|
};
|
|
452
452
|
readonly type: {
|
|
453
|
+
readonly type: 'string';
|
|
453
454
|
readonly const: 'user';
|
|
454
455
|
};
|
|
455
456
|
readonly metadata: {
|
|
@@ -461,11 +462,11 @@ export declare const entityFileSchema: {
|
|
|
461
462
|
readonly description: 'Email of the user';
|
|
462
463
|
};
|
|
463
464
|
};
|
|
464
|
-
readonly required: readonly [
|
|
465
|
+
readonly required: readonly ["email"];
|
|
465
466
|
readonly additionalProperties: true;
|
|
466
467
|
};
|
|
467
468
|
};
|
|
468
|
-
readonly required: readonly [
|
|
469
|
+
readonly required: readonly ["key", "title", "type", "metadata"];
|
|
469
470
|
readonly additionalProperties: false;
|
|
470
471
|
readonly nodeTypeName: "UserEntity";
|
|
471
472
|
}, {
|
|
@@ -528,12 +529,12 @@ export declare const entityFileSchema: {
|
|
|
528
529
|
readonly type: 'string';
|
|
529
530
|
};
|
|
530
531
|
};
|
|
531
|
-
readonly required: readonly [
|
|
532
|
+
readonly required: readonly ["name"];
|
|
532
533
|
readonly additionalProperties: false;
|
|
533
534
|
};
|
|
534
535
|
};
|
|
535
536
|
};
|
|
536
|
-
readonly required: readonly [
|
|
537
|
+
readonly required: readonly ["channels"];
|
|
537
538
|
readonly additionalProperties: false;
|
|
538
539
|
};
|
|
539
540
|
};
|
|
@@ -555,7 +556,7 @@ export declare const entityFileSchema: {
|
|
|
555
556
|
readonly type: 'string';
|
|
556
557
|
};
|
|
557
558
|
};
|
|
558
|
-
readonly required: readonly [
|
|
559
|
+
readonly required: readonly ["label", "url"];
|
|
559
560
|
readonly additionalProperties: false;
|
|
560
561
|
};
|
|
561
562
|
};
|
|
@@ -582,11 +583,12 @@ export declare const entityFileSchema: {
|
|
|
582
583
|
readonly type: 'string';
|
|
583
584
|
};
|
|
584
585
|
};
|
|
585
|
-
readonly required: readonly [
|
|
586
|
+
readonly required: readonly ["type", "key"];
|
|
586
587
|
readonly additionalProperties: false;
|
|
587
588
|
};
|
|
588
589
|
};
|
|
589
590
|
readonly type: {
|
|
591
|
+
readonly type: 'string';
|
|
590
592
|
readonly const: 'api-operation';
|
|
591
593
|
};
|
|
592
594
|
readonly metadata: {
|
|
@@ -595,7 +597,7 @@ export declare const entityFileSchema: {
|
|
|
595
597
|
readonly properties: {
|
|
596
598
|
readonly method: {
|
|
597
599
|
readonly type: 'string';
|
|
598
|
-
readonly enum: readonly [
|
|
600
|
+
readonly enum: readonly ["GET", "POST", "PUT", "DELETE", "PATCH", "MUTATION", "QUERY", "SUBSCRIBE", "PUBLISH"];
|
|
599
601
|
readonly description: 'HTTP method of the API operation';
|
|
600
602
|
};
|
|
601
603
|
readonly path: {
|
|
@@ -617,11 +619,11 @@ export declare const entityFileSchema: {
|
|
|
617
619
|
};
|
|
618
620
|
};
|
|
619
621
|
};
|
|
620
|
-
readonly required: readonly [
|
|
622
|
+
readonly required: readonly ["method", "path"];
|
|
621
623
|
readonly additionalProperties: true;
|
|
622
624
|
};
|
|
623
625
|
};
|
|
624
|
-
readonly required: readonly [
|
|
626
|
+
readonly required: readonly ["key", "title", "type", "metadata"];
|
|
625
627
|
readonly additionalProperties: false;
|
|
626
628
|
}, {
|
|
627
629
|
readonly type: 'object';
|
|
@@ -683,12 +685,12 @@ export declare const entityFileSchema: {
|
|
|
683
685
|
readonly type: 'string';
|
|
684
686
|
};
|
|
685
687
|
};
|
|
686
|
-
readonly required: readonly [
|
|
688
|
+
readonly required: readonly ["name"];
|
|
687
689
|
readonly additionalProperties: false;
|
|
688
690
|
};
|
|
689
691
|
};
|
|
690
692
|
};
|
|
691
|
-
readonly required: readonly [
|
|
693
|
+
readonly required: readonly ["channels"];
|
|
692
694
|
readonly additionalProperties: false;
|
|
693
695
|
};
|
|
694
696
|
};
|
|
@@ -710,7 +712,7 @@ export declare const entityFileSchema: {
|
|
|
710
712
|
readonly type: 'string';
|
|
711
713
|
};
|
|
712
714
|
};
|
|
713
|
-
readonly required: readonly [
|
|
715
|
+
readonly required: readonly ["label", "url"];
|
|
714
716
|
readonly additionalProperties: false;
|
|
715
717
|
};
|
|
716
718
|
};
|
|
@@ -737,11 +739,12 @@ export declare const entityFileSchema: {
|
|
|
737
739
|
readonly type: 'string';
|
|
738
740
|
};
|
|
739
741
|
};
|
|
740
|
-
readonly required: readonly [
|
|
742
|
+
readonly required: readonly ["type", "key"];
|
|
741
743
|
readonly additionalProperties: false;
|
|
742
744
|
};
|
|
743
745
|
};
|
|
744
746
|
readonly type: {
|
|
747
|
+
readonly type: 'string';
|
|
745
748
|
readonly const: 'data-schema';
|
|
746
749
|
};
|
|
747
750
|
readonly metadata: {
|
|
@@ -750,7 +753,7 @@ export declare const entityFileSchema: {
|
|
|
750
753
|
readonly properties: {
|
|
751
754
|
readonly specType: {
|
|
752
755
|
readonly type: 'string';
|
|
753
|
-
readonly enum: readonly [
|
|
756
|
+
readonly enum: readonly ["jsonschema", "openapi", "asyncapi", "avro", "zod", "graphql", "protobuf", "arazzo"];
|
|
754
757
|
readonly description: 'Specification type of the data schema';
|
|
755
758
|
};
|
|
756
759
|
readonly schema: {
|
|
@@ -762,11 +765,11 @@ export declare const entityFileSchema: {
|
|
|
762
765
|
readonly description: 'SDL of the data structure';
|
|
763
766
|
};
|
|
764
767
|
};
|
|
765
|
-
readonly required: readonly [
|
|
768
|
+
readonly required: readonly ["specType"];
|
|
766
769
|
readonly additionalProperties: true;
|
|
767
770
|
};
|
|
768
771
|
};
|
|
769
|
-
readonly required: readonly [
|
|
772
|
+
readonly required: readonly ["key", "title", "type", "metadata"];
|
|
770
773
|
readonly additionalProperties: false;
|
|
771
774
|
}, {
|
|
772
775
|
readonly type: 'object';
|
|
@@ -828,12 +831,12 @@ export declare const entityFileSchema: {
|
|
|
828
831
|
readonly type: 'string';
|
|
829
832
|
};
|
|
830
833
|
};
|
|
831
|
-
readonly required: readonly [
|
|
834
|
+
readonly required: readonly ["name"];
|
|
832
835
|
readonly additionalProperties: false;
|
|
833
836
|
};
|
|
834
837
|
};
|
|
835
838
|
};
|
|
836
|
-
readonly required: readonly [
|
|
839
|
+
readonly required: readonly ["channels"];
|
|
837
840
|
readonly additionalProperties: false;
|
|
838
841
|
};
|
|
839
842
|
};
|
|
@@ -855,7 +858,7 @@ export declare const entityFileSchema: {
|
|
|
855
858
|
readonly type: 'string';
|
|
856
859
|
};
|
|
857
860
|
};
|
|
858
|
-
readonly required: readonly [
|
|
861
|
+
readonly required: readonly ["label", "url"];
|
|
859
862
|
readonly additionalProperties: false;
|
|
860
863
|
};
|
|
861
864
|
};
|
|
@@ -882,11 +885,12 @@ export declare const entityFileSchema: {
|
|
|
882
885
|
readonly type: 'string';
|
|
883
886
|
};
|
|
884
887
|
};
|
|
885
|
-
readonly required: readonly [
|
|
888
|
+
readonly required: readonly ["type", "key"];
|
|
886
889
|
readonly additionalProperties: false;
|
|
887
890
|
};
|
|
888
891
|
};
|
|
889
892
|
readonly type: {
|
|
893
|
+
readonly type: 'string';
|
|
890
894
|
readonly const: 'api-description';
|
|
891
895
|
};
|
|
892
896
|
readonly metadata: {
|
|
@@ -895,7 +899,7 @@ export declare const entityFileSchema: {
|
|
|
895
899
|
readonly properties: {
|
|
896
900
|
readonly specType: {
|
|
897
901
|
readonly type: 'string';
|
|
898
|
-
readonly enum: readonly [
|
|
902
|
+
readonly enum: readonly ["jsonschema", "openapi", "asyncapi", "avro", "zod", "graphql", "protobuf", "arazzo"];
|
|
899
903
|
readonly description: 'Type of the API description';
|
|
900
904
|
};
|
|
901
905
|
readonly descriptionFile: {
|
|
@@ -903,11 +907,11 @@ export declare const entityFileSchema: {
|
|
|
903
907
|
readonly description: 'Path to the file containing the API description';
|
|
904
908
|
};
|
|
905
909
|
};
|
|
906
|
-
readonly required: readonly [
|
|
910
|
+
readonly required: readonly ["specType", "descriptionFile"];
|
|
907
911
|
readonly additionalProperties: true;
|
|
908
912
|
};
|
|
909
913
|
};
|
|
910
|
-
readonly required: readonly [
|
|
914
|
+
readonly required: readonly ["key", "title", "type", "metadata"];
|
|
911
915
|
readonly additionalProperties: false;
|
|
912
916
|
}, {
|
|
913
917
|
readonly type: 'object';
|
|
@@ -969,12 +973,12 @@ export declare const entityFileSchema: {
|
|
|
969
973
|
readonly type: 'string';
|
|
970
974
|
};
|
|
971
975
|
};
|
|
972
|
-
readonly required: readonly [
|
|
976
|
+
readonly required: readonly ["name"];
|
|
973
977
|
readonly additionalProperties: false;
|
|
974
978
|
};
|
|
975
979
|
};
|
|
976
980
|
};
|
|
977
|
-
readonly required: readonly [
|
|
981
|
+
readonly required: readonly ["channels"];
|
|
978
982
|
readonly additionalProperties: false;
|
|
979
983
|
};
|
|
980
984
|
};
|
|
@@ -996,7 +1000,7 @@ export declare const entityFileSchema: {
|
|
|
996
1000
|
readonly type: 'string';
|
|
997
1001
|
};
|
|
998
1002
|
};
|
|
999
|
-
readonly required: readonly [
|
|
1003
|
+
readonly required: readonly ["label", "url"];
|
|
1000
1004
|
readonly additionalProperties: false;
|
|
1001
1005
|
};
|
|
1002
1006
|
};
|
|
@@ -1023,7 +1027,7 @@ export declare const entityFileSchema: {
|
|
|
1023
1027
|
readonly type: 'string';
|
|
1024
1028
|
};
|
|
1025
1029
|
};
|
|
1026
|
-
readonly required: readonly [
|
|
1030
|
+
readonly required: readonly ["type", "key"];
|
|
1027
1031
|
readonly additionalProperties: false;
|
|
1028
1032
|
};
|
|
1029
1033
|
};
|
|
@@ -1034,10 +1038,11 @@ export declare const entityFileSchema: {
|
|
|
1034
1038
|
readonly additionalProperties: true;
|
|
1035
1039
|
};
|
|
1036
1040
|
readonly type: {
|
|
1041
|
+
readonly type: 'string';
|
|
1037
1042
|
readonly const: 'service';
|
|
1038
1043
|
};
|
|
1039
1044
|
};
|
|
1040
|
-
readonly required: readonly [
|
|
1045
|
+
readonly required: readonly ["key", "title", "type"];
|
|
1041
1046
|
readonly additionalProperties: false;
|
|
1042
1047
|
}, {
|
|
1043
1048
|
readonly type: 'object';
|
|
@@ -1099,12 +1104,12 @@ export declare const entityFileSchema: {
|
|
|
1099
1104
|
readonly type: 'string';
|
|
1100
1105
|
};
|
|
1101
1106
|
};
|
|
1102
|
-
readonly required: readonly [
|
|
1107
|
+
readonly required: readonly ["name"];
|
|
1103
1108
|
readonly additionalProperties: false;
|
|
1104
1109
|
};
|
|
1105
1110
|
};
|
|
1106
1111
|
};
|
|
1107
|
-
readonly required: readonly [
|
|
1112
|
+
readonly required: readonly ["channels"];
|
|
1108
1113
|
readonly additionalProperties: false;
|
|
1109
1114
|
};
|
|
1110
1115
|
};
|
|
@@ -1126,7 +1131,7 @@ export declare const entityFileSchema: {
|
|
|
1126
1131
|
readonly type: 'string';
|
|
1127
1132
|
};
|
|
1128
1133
|
};
|
|
1129
|
-
readonly required: readonly [
|
|
1134
|
+
readonly required: readonly ["label", "url"];
|
|
1130
1135
|
readonly additionalProperties: false;
|
|
1131
1136
|
};
|
|
1132
1137
|
};
|
|
@@ -1153,7 +1158,7 @@ export declare const entityFileSchema: {
|
|
|
1153
1158
|
readonly type: 'string';
|
|
1154
1159
|
};
|
|
1155
1160
|
};
|
|
1156
|
-
readonly required: readonly [
|
|
1161
|
+
readonly required: readonly ["type", "key"];
|
|
1157
1162
|
readonly additionalProperties: false;
|
|
1158
1163
|
};
|
|
1159
1164
|
};
|
|
@@ -1164,10 +1169,11 @@ export declare const entityFileSchema: {
|
|
|
1164
1169
|
readonly additionalProperties: true;
|
|
1165
1170
|
};
|
|
1166
1171
|
readonly type: {
|
|
1172
|
+
readonly type: 'string';
|
|
1167
1173
|
readonly const: 'domain';
|
|
1168
1174
|
};
|
|
1169
1175
|
};
|
|
1170
|
-
readonly required: readonly [
|
|
1176
|
+
readonly required: readonly ["key", "title", "type"];
|
|
1171
1177
|
readonly additionalProperties: false;
|
|
1172
1178
|
}, {
|
|
1173
1179
|
readonly type: 'object';
|
|
@@ -1229,12 +1235,12 @@ export declare const entityFileSchema: {
|
|
|
1229
1235
|
readonly type: 'string';
|
|
1230
1236
|
};
|
|
1231
1237
|
};
|
|
1232
|
-
readonly required: readonly [
|
|
1238
|
+
readonly required: readonly ["name"];
|
|
1233
1239
|
readonly additionalProperties: false;
|
|
1234
1240
|
};
|
|
1235
1241
|
};
|
|
1236
1242
|
};
|
|
1237
|
-
readonly required: readonly [
|
|
1243
|
+
readonly required: readonly ["channels"];
|
|
1238
1244
|
readonly additionalProperties: false;
|
|
1239
1245
|
};
|
|
1240
1246
|
};
|
|
@@ -1256,7 +1262,7 @@ export declare const entityFileSchema: {
|
|
|
1256
1262
|
readonly type: 'string';
|
|
1257
1263
|
};
|
|
1258
1264
|
};
|
|
1259
|
-
readonly required: readonly [
|
|
1265
|
+
readonly required: readonly ["label", "url"];
|
|
1260
1266
|
readonly additionalProperties: false;
|
|
1261
1267
|
};
|
|
1262
1268
|
};
|
|
@@ -1283,7 +1289,7 @@ export declare const entityFileSchema: {
|
|
|
1283
1289
|
readonly type: 'string';
|
|
1284
1290
|
};
|
|
1285
1291
|
};
|
|
1286
|
-
readonly required: readonly [
|
|
1292
|
+
readonly required: readonly ["type", "key"];
|
|
1287
1293
|
readonly additionalProperties: false;
|
|
1288
1294
|
};
|
|
1289
1295
|
};
|
|
@@ -1294,10 +1300,11 @@ export declare const entityFileSchema: {
|
|
|
1294
1300
|
readonly additionalProperties: true;
|
|
1295
1301
|
};
|
|
1296
1302
|
readonly type: {
|
|
1303
|
+
readonly type: 'string';
|
|
1297
1304
|
readonly const: 'team';
|
|
1298
1305
|
};
|
|
1299
1306
|
};
|
|
1300
|
-
readonly required: readonly [
|
|
1307
|
+
readonly required: readonly ["key", "title", "type"];
|
|
1301
1308
|
readonly additionalProperties: false;
|
|
1302
1309
|
}];
|
|
1303
1310
|
};
|
|
@@ -1316,7 +1323,7 @@ export declare const entityFileDefaultSchema: {
|
|
|
1316
1323
|
};
|
|
1317
1324
|
readonly type: {
|
|
1318
1325
|
readonly type: 'string';
|
|
1319
|
-
readonly enum: readonly [
|
|
1326
|
+
readonly enum: readonly ["user", "data-schema", "api-operation", "api-description", "service", "domain", "team"];
|
|
1320
1327
|
};
|
|
1321
1328
|
readonly title: {
|
|
1322
1329
|
readonly type: 'string';
|
|
@@ -1365,12 +1372,12 @@ export declare const entityFileDefaultSchema: {
|
|
|
1365
1372
|
readonly type: 'string';
|
|
1366
1373
|
};
|
|
1367
1374
|
};
|
|
1368
|
-
readonly required: readonly [
|
|
1375
|
+
readonly required: readonly ["name"];
|
|
1369
1376
|
readonly additionalProperties: false;
|
|
1370
1377
|
};
|
|
1371
1378
|
};
|
|
1372
1379
|
};
|
|
1373
|
-
readonly required: readonly [
|
|
1380
|
+
readonly required: readonly ["channels"];
|
|
1374
1381
|
readonly additionalProperties: false;
|
|
1375
1382
|
};
|
|
1376
1383
|
};
|
|
@@ -1392,7 +1399,7 @@ export declare const entityFileDefaultSchema: {
|
|
|
1392
1399
|
readonly type: 'string';
|
|
1393
1400
|
};
|
|
1394
1401
|
};
|
|
1395
|
-
readonly required: readonly [
|
|
1402
|
+
readonly required: readonly ["label", "url"];
|
|
1396
1403
|
readonly additionalProperties: false;
|
|
1397
1404
|
};
|
|
1398
1405
|
};
|
|
@@ -1419,7 +1426,7 @@ export declare const entityFileDefaultSchema: {
|
|
|
1419
1426
|
readonly type: 'string';
|
|
1420
1427
|
};
|
|
1421
1428
|
};
|
|
1422
|
-
readonly required: readonly [
|
|
1429
|
+
readonly required: readonly ["type", "key"];
|
|
1423
1430
|
readonly additionalProperties: false;
|
|
1424
1431
|
};
|
|
1425
1432
|
};
|
|
@@ -1430,6 +1437,6 @@ export declare const entityFileDefaultSchema: {
|
|
|
1430
1437
|
readonly additionalProperties: true;
|
|
1431
1438
|
};
|
|
1432
1439
|
};
|
|
1433
|
-
readonly required: readonly [
|
|
1440
|
+
readonly required: readonly ["key", "title", "type"];
|
|
1434
1441
|
readonly additionalProperties: false;
|
|
1435
1442
|
};
|