@redocly/config 0.41.1 → 0.41.3
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/constants.d.ts +22 -0
- package/lib/constants.js +23 -1
- package/lib/default-theme-config-schema.d.ts +4 -1
- package/lib/entities-catalog-entity-file-schema.d.ts +105 -0
- package/lib/entities-catalog-entity-file-schema.js +27 -41
- package/lib/index.d.ts +1 -1
- package/lib/index.js +2 -1
- package/lib/root-config-schema.d.ts +436 -6
- package/lib/root-config-schema.js +17 -3
- package/lib/scorecards-config-schema.d.ts +8 -2
- package/lib/scorecards-config-schema.js +2 -1
- package/lib/types/catalog-entity-types.d.ts +1 -1
- package/lib/types/portal-shared-types.d.ts +2 -1
- package/lib-esm/constants.d.ts +22 -0
- package/lib-esm/constants.js +22 -0
- package/lib-esm/default-theme-config-schema.d.ts +4 -1
- package/lib-esm/entities-catalog-entity-file-schema.d.ts +105 -0
- package/lib-esm/entities-catalog-entity-file-schema.js +28 -42
- package/lib-esm/index.d.ts +1 -1
- package/lib-esm/index.js +1 -1
- package/lib-esm/root-config-schema.d.ts +436 -6
- package/lib-esm/root-config-schema.js +16 -2
- package/lib-esm/scorecards-config-schema.d.ts +8 -2
- package/lib-esm/scorecards-config-schema.js +2 -1
- package/lib-esm/types/catalog-entity-types.d.ts +1 -1
- package/lib-esm/types/portal-shared-types.d.ts +2 -1
- package/package.json +7 -3
- package/lib/types/scorecards-types.d.ts +0 -3
- package/lib/types/scorecards-types.js +0 -3
- package/lib-esm/types/scorecards-types.d.ts +0 -3
- package/lib-esm/types/scorecards-types.js +0 -2
package/lib/constants.d.ts
CHANGED
|
@@ -14,3 +14,25 @@ export declare enum LayoutVariant {
|
|
|
14
14
|
THREE_PANEL = "three-panel"
|
|
15
15
|
}
|
|
16
16
|
export declare const ENTITY_RELATION_TYPES: readonly ["partOf", "hasParts", "creates", "createdBy", "owns", "ownedBy", "implements", "implementedBy", "dependsOn", "dependencyOf", "uses", "usedBy", "produces", "consumes", "linksTo", "supersedes", "supersededBy", "compatibleWith", "extends", "extendedBy", "relatesTo", "hasMember", "memberOf", "triggers", "triggeredBy", "returns", "returnedBy"];
|
|
17
|
+
export declare const NODE_TYPE_NAMES: {
|
|
18
|
+
readonly USER_ENTITY: "UserEntity";
|
|
19
|
+
readonly USER_ENTITY_METADATA: "UserEntityMetadata";
|
|
20
|
+
readonly API_DESCRIPTION_ENTITY: "ApiDescriptionEntity";
|
|
21
|
+
readonly API_DESCRIPTION_METADATA: "ApiDescriptionEntityMetadata";
|
|
22
|
+
readonly API_OPERATION_ENTITY: "ApiOperationEntity";
|
|
23
|
+
readonly API_OPERATION_METADATA: "ApiOperationEntityMetadata";
|
|
24
|
+
readonly DATA_SCHEMA_ENTITY: "DataSchemaEntity";
|
|
25
|
+
readonly DATA_SCHEMA_METADATA: "DataSchemaEntityMetadata";
|
|
26
|
+
readonly SERVICE_ENTITY: "ServiceEntity";
|
|
27
|
+
readonly DOMAIN_ENTITY: "DomainEntity";
|
|
28
|
+
readonly TEAM_ENTITY: "TeamEntity";
|
|
29
|
+
readonly ENTITY: "Entity";
|
|
30
|
+
readonly ENTITY_METADATA: "EntityMetadata";
|
|
31
|
+
readonly ENTITY_LINK_LIST: "EntityLinkList";
|
|
32
|
+
readonly ENTITY_LINK: "EntityLink";
|
|
33
|
+
readonly ENTITY_RELATION: "EntityRelation";
|
|
34
|
+
readonly ENTITY_RELATION_LIST: "EntityRelationList";
|
|
35
|
+
readonly ENTITY_CONTACT: "EntityContact";
|
|
36
|
+
readonly SLACK_CONTACT: "EntitySlackContact";
|
|
37
|
+
readonly SLACK_CHANNEL: "EntitySlackChannel";
|
|
38
|
+
};
|
package/lib/constants.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ENTITY_RELATION_TYPES = exports.LayoutVariant = exports.REDOCLY_ROUTE_RBAC = exports.REDOCLY_TEAMS_RBAC = exports.ApigeeDevOnboardingIntegrationAuthType = exports.AuthProviderType = exports.DEFAULT_TEAM_CLAIM_NAME = void 0;
|
|
3
|
+
exports.NODE_TYPE_NAMES = exports.ENTITY_RELATION_TYPES = exports.LayoutVariant = exports.REDOCLY_ROUTE_RBAC = exports.REDOCLY_TEAMS_RBAC = exports.ApigeeDevOnboardingIntegrationAuthType = exports.AuthProviderType = exports.DEFAULT_TEAM_CLAIM_NAME = void 0;
|
|
4
4
|
exports.DEFAULT_TEAM_CLAIM_NAME = 'https://redocly.com/sso/teams';
|
|
5
5
|
var AuthProviderType;
|
|
6
6
|
(function (AuthProviderType) {
|
|
@@ -48,4 +48,26 @@ exports.ENTITY_RELATION_TYPES = [
|
|
|
48
48
|
'returns',
|
|
49
49
|
'returnedBy',
|
|
50
50
|
];
|
|
51
|
+
exports.NODE_TYPE_NAMES = {
|
|
52
|
+
USER_ENTITY: 'UserEntity',
|
|
53
|
+
USER_ENTITY_METADATA: 'UserEntityMetadata',
|
|
54
|
+
API_DESCRIPTION_ENTITY: 'ApiDescriptionEntity',
|
|
55
|
+
API_DESCRIPTION_METADATA: 'ApiDescriptionEntityMetadata',
|
|
56
|
+
API_OPERATION_ENTITY: 'ApiOperationEntity',
|
|
57
|
+
API_OPERATION_METADATA: 'ApiOperationEntityMetadata',
|
|
58
|
+
DATA_SCHEMA_ENTITY: 'DataSchemaEntity',
|
|
59
|
+
DATA_SCHEMA_METADATA: 'DataSchemaEntityMetadata',
|
|
60
|
+
SERVICE_ENTITY: 'ServiceEntity',
|
|
61
|
+
DOMAIN_ENTITY: 'DomainEntity',
|
|
62
|
+
TEAM_ENTITY: 'TeamEntity',
|
|
63
|
+
ENTITY: 'Entity',
|
|
64
|
+
ENTITY_METADATA: 'EntityMetadata',
|
|
65
|
+
ENTITY_LINK_LIST: 'EntityLinkList',
|
|
66
|
+
ENTITY_LINK: 'EntityLink',
|
|
67
|
+
ENTITY_RELATION: 'EntityRelation',
|
|
68
|
+
ENTITY_RELATION_LIST: 'EntityRelationList',
|
|
69
|
+
ENTITY_CONTACT: 'EntityContact',
|
|
70
|
+
SLACK_CONTACT: 'EntitySlackContact',
|
|
71
|
+
SLACK_CHANNEL: 'EntitySlackChannel',
|
|
72
|
+
};
|
|
51
73
|
//# sourceMappingURL=constants.js.map
|
|
@@ -5615,6 +5615,9 @@ export declare const themeConfigSchema: {
|
|
|
5615
5615
|
readonly name: {
|
|
5616
5616
|
readonly type: "string";
|
|
5617
5617
|
};
|
|
5618
|
+
readonly key: {
|
|
5619
|
+
readonly type: "string";
|
|
5620
|
+
};
|
|
5618
5621
|
readonly description: {
|
|
5619
5622
|
readonly type: "string";
|
|
5620
5623
|
};
|
|
@@ -6144,7 +6147,7 @@ export declare const themeConfigSchema: {
|
|
|
6144
6147
|
}];
|
|
6145
6148
|
};
|
|
6146
6149
|
};
|
|
6147
|
-
readonly required: readonly ["name", "entities", "levels"];
|
|
6150
|
+
readonly required: readonly ["name", "key", "entities", "levels"];
|
|
6148
6151
|
readonly additionalProperties: false;
|
|
6149
6152
|
};
|
|
6150
6153
|
};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const userMetadataSchema: {
|
|
2
2
|
readonly type: "object";
|
|
3
|
+
readonly nodeTypeName: "UserEntityMetadata";
|
|
3
4
|
readonly properties: {
|
|
4
5
|
readonly email: {
|
|
5
6
|
readonly type: "string";
|
|
@@ -11,6 +12,7 @@ export declare const userMetadataSchema: {
|
|
|
11
12
|
};
|
|
12
13
|
export declare const apiDescriptionMetadataSchema: {
|
|
13
14
|
readonly type: "object";
|
|
15
|
+
readonly nodeTypeName: "ApiDescriptionEntityMetadata";
|
|
14
16
|
readonly properties: {
|
|
15
17
|
readonly specType: {
|
|
16
18
|
readonly type: "string";
|
|
@@ -27,6 +29,7 @@ export declare const apiDescriptionMetadataSchema: {
|
|
|
27
29
|
};
|
|
28
30
|
export declare const apiOperationMetadataSchema: {
|
|
29
31
|
readonly type: "object";
|
|
32
|
+
readonly nodeTypeName: "ApiOperationEntityMetadata";
|
|
30
33
|
readonly properties: {
|
|
31
34
|
readonly method: {
|
|
32
35
|
readonly type: "string";
|
|
@@ -57,6 +60,7 @@ export declare const apiOperationMetadataSchema: {
|
|
|
57
60
|
};
|
|
58
61
|
export declare const dataSchemaMetadataSchema: {
|
|
59
62
|
readonly type: "object";
|
|
63
|
+
readonly nodeTypeName: "DataSchemaEntityMetadata";
|
|
60
64
|
readonly properties: {
|
|
61
65
|
readonly specType: {
|
|
62
66
|
readonly type: "string";
|
|
@@ -77,33 +81,44 @@ export declare const dataSchemaMetadataSchema: {
|
|
|
77
81
|
};
|
|
78
82
|
export declare const defaultMetadataSchema: {
|
|
79
83
|
readonly type: "object";
|
|
84
|
+
readonly properties: {};
|
|
85
|
+
readonly nodeTypeName: "EntityMetadata";
|
|
80
86
|
readonly additionalProperties: true;
|
|
81
87
|
};
|
|
82
88
|
export declare const slackChannelFileSchema: {
|
|
83
89
|
readonly type: "object";
|
|
90
|
+
readonly nodeTypeName: "EntitySlackChannel";
|
|
84
91
|
readonly properties: {
|
|
85
92
|
readonly name: {
|
|
86
93
|
readonly type: "string";
|
|
87
94
|
readonly minLength: 2;
|
|
88
95
|
readonly maxLength: 150;
|
|
89
96
|
};
|
|
97
|
+
readonly url: {
|
|
98
|
+
readonly type: "string";
|
|
99
|
+
};
|
|
90
100
|
};
|
|
91
101
|
readonly required: readonly ["name"];
|
|
92
102
|
readonly additionalProperties: false;
|
|
93
103
|
};
|
|
94
104
|
export declare const slackContactFileSchema: {
|
|
95
105
|
readonly type: "object";
|
|
106
|
+
readonly nodeTypeName: "EntitySlackContact";
|
|
96
107
|
readonly properties: {
|
|
97
108
|
readonly channels: {
|
|
98
109
|
readonly type: "array";
|
|
99
110
|
readonly items: {
|
|
100
111
|
readonly type: "object";
|
|
112
|
+
readonly nodeTypeName: "EntitySlackChannel";
|
|
101
113
|
readonly properties: {
|
|
102
114
|
readonly name: {
|
|
103
115
|
readonly type: "string";
|
|
104
116
|
readonly minLength: 2;
|
|
105
117
|
readonly maxLength: 150;
|
|
106
118
|
};
|
|
119
|
+
readonly url: {
|
|
120
|
+
readonly type: "string";
|
|
121
|
+
};
|
|
107
122
|
};
|
|
108
123
|
readonly required: readonly ["name"];
|
|
109
124
|
readonly additionalProperties: false;
|
|
@@ -115,14 +130,17 @@ export declare const slackContactFileSchema: {
|
|
|
115
130
|
};
|
|
116
131
|
export declare const entityContactFileSchema: {
|
|
117
132
|
readonly type: "object";
|
|
133
|
+
readonly nodeTypeName: "EntityContact";
|
|
118
134
|
readonly properties: {
|
|
119
135
|
readonly slack: {
|
|
120
136
|
readonly type: "object";
|
|
137
|
+
readonly nodeTypeName: "EntitySlackContact";
|
|
121
138
|
readonly properties: {
|
|
122
139
|
readonly channels: {
|
|
123
140
|
readonly type: "array";
|
|
124
141
|
readonly items: {
|
|
125
142
|
readonly type: "object";
|
|
143
|
+
readonly nodeTypeName: "EntitySlackChannel";
|
|
126
144
|
readonly properties: {
|
|
127
145
|
readonly name: {
|
|
128
146
|
readonly type: "string";
|
|
@@ -146,6 +164,7 @@ export declare const entityContactFileSchema: {
|
|
|
146
164
|
};
|
|
147
165
|
export declare const entityLinkFileSchema: {
|
|
148
166
|
readonly type: "object";
|
|
167
|
+
readonly nodeTypeName: "EntityLink";
|
|
149
168
|
readonly properties: {
|
|
150
169
|
readonly label: {
|
|
151
170
|
readonly type: "string";
|
|
@@ -161,6 +180,7 @@ export declare const entityLinkFileSchema: {
|
|
|
161
180
|
};
|
|
162
181
|
export declare const entityRelationFileSchema: {
|
|
163
182
|
readonly type: "object";
|
|
183
|
+
readonly nodeTypeName: "EntityRelation";
|
|
164
184
|
readonly properties: {
|
|
165
185
|
readonly type: {
|
|
166
186
|
readonly type: "string";
|
|
@@ -221,14 +241,17 @@ export declare const entityBaseProperties: {
|
|
|
221
241
|
};
|
|
222
242
|
readonly contact: {
|
|
223
243
|
readonly type: "object";
|
|
244
|
+
readonly nodeTypeName: "EntityContact";
|
|
224
245
|
readonly properties: {
|
|
225
246
|
readonly slack: {
|
|
226
247
|
readonly type: "object";
|
|
248
|
+
readonly nodeTypeName: "EntitySlackContact";
|
|
227
249
|
readonly properties: {
|
|
228
250
|
readonly channels: {
|
|
229
251
|
readonly type: "array";
|
|
230
252
|
readonly items: {
|
|
231
253
|
readonly type: "object";
|
|
254
|
+
readonly nodeTypeName: "EntitySlackChannel";
|
|
232
255
|
readonly properties: {
|
|
233
256
|
readonly name: {
|
|
234
257
|
readonly type: "string";
|
|
@@ -252,8 +275,10 @@ export declare const entityBaseProperties: {
|
|
|
252
275
|
};
|
|
253
276
|
readonly links: {
|
|
254
277
|
readonly type: "array";
|
|
278
|
+
readonly nodeTypeName: "EntityLinkList";
|
|
255
279
|
readonly items: {
|
|
256
280
|
readonly type: "object";
|
|
281
|
+
readonly nodeTypeName: "EntityLink";
|
|
257
282
|
readonly properties: {
|
|
258
283
|
readonly label: {
|
|
259
284
|
readonly type: "string";
|
|
@@ -270,8 +295,10 @@ export declare const entityBaseProperties: {
|
|
|
270
295
|
};
|
|
271
296
|
readonly relations: {
|
|
272
297
|
readonly type: "array";
|
|
298
|
+
readonly nodeTypeName: "EntityRelationList";
|
|
273
299
|
readonly items: {
|
|
274
300
|
readonly type: "object";
|
|
301
|
+
readonly nodeTypeName: "EntityRelation";
|
|
275
302
|
readonly properties: {
|
|
276
303
|
readonly type: {
|
|
277
304
|
readonly type: "string";
|
|
@@ -295,6 +322,8 @@ export declare const entityBaseProperties: {
|
|
|
295
322
|
};
|
|
296
323
|
readonly metadata: {
|
|
297
324
|
readonly type: "object";
|
|
325
|
+
readonly properties: {};
|
|
326
|
+
readonly nodeTypeName: "EntityMetadata";
|
|
298
327
|
readonly additionalProperties: true;
|
|
299
328
|
};
|
|
300
329
|
};
|
|
@@ -311,6 +340,7 @@ export declare const entityFileSchema: {
|
|
|
311
340
|
};
|
|
312
341
|
readonly metadata: {
|
|
313
342
|
readonly type: "object";
|
|
343
|
+
readonly nodeTypeName: "UserEntityMetadata";
|
|
314
344
|
readonly properties: {
|
|
315
345
|
readonly email: {
|
|
316
346
|
readonly type: "string";
|
|
@@ -355,14 +385,17 @@ export declare const entityFileSchema: {
|
|
|
355
385
|
};
|
|
356
386
|
readonly contact: {
|
|
357
387
|
readonly type: "object";
|
|
388
|
+
readonly nodeTypeName: "EntityContact";
|
|
358
389
|
readonly properties: {
|
|
359
390
|
readonly slack: {
|
|
360
391
|
readonly type: "object";
|
|
392
|
+
readonly nodeTypeName: "EntitySlackContact";
|
|
361
393
|
readonly properties: {
|
|
362
394
|
readonly channels: {
|
|
363
395
|
readonly type: "array";
|
|
364
396
|
readonly items: {
|
|
365
397
|
readonly type: "object";
|
|
398
|
+
readonly nodeTypeName: "EntitySlackChannel";
|
|
366
399
|
readonly properties: {
|
|
367
400
|
readonly name: {
|
|
368
401
|
readonly type: "string";
|
|
@@ -386,8 +419,10 @@ export declare const entityFileSchema: {
|
|
|
386
419
|
};
|
|
387
420
|
readonly links: {
|
|
388
421
|
readonly type: "array";
|
|
422
|
+
readonly nodeTypeName: "EntityLinkList";
|
|
389
423
|
readonly items: {
|
|
390
424
|
readonly type: "object";
|
|
425
|
+
readonly nodeTypeName: "EntityLink";
|
|
391
426
|
readonly properties: {
|
|
392
427
|
readonly label: {
|
|
393
428
|
readonly type: "string";
|
|
@@ -404,8 +439,10 @@ export declare const entityFileSchema: {
|
|
|
404
439
|
};
|
|
405
440
|
readonly relations: {
|
|
406
441
|
readonly type: "array";
|
|
442
|
+
readonly nodeTypeName: "EntityRelationList";
|
|
407
443
|
readonly items: {
|
|
408
444
|
readonly type: "object";
|
|
445
|
+
readonly nodeTypeName: "EntityRelation";
|
|
409
446
|
readonly properties: {
|
|
410
447
|
readonly type: {
|
|
411
448
|
readonly type: "string";
|
|
@@ -430,14 +467,17 @@ export declare const entityFileSchema: {
|
|
|
430
467
|
};
|
|
431
468
|
readonly required: readonly ["key", "title", "type", "metadata"];
|
|
432
469
|
readonly additionalProperties: false;
|
|
470
|
+
readonly nodeTypeName: "UserEntity";
|
|
433
471
|
}, {
|
|
434
472
|
readonly type: "object";
|
|
473
|
+
readonly nodeTypeName: "ApiOperationEntity";
|
|
435
474
|
readonly properties: {
|
|
436
475
|
readonly type: {
|
|
437
476
|
readonly const: "api-operation";
|
|
438
477
|
};
|
|
439
478
|
readonly metadata: {
|
|
440
479
|
readonly type: "object";
|
|
480
|
+
readonly nodeTypeName: "ApiOperationEntityMetadata";
|
|
441
481
|
readonly properties: {
|
|
442
482
|
readonly method: {
|
|
443
483
|
readonly type: "string";
|
|
@@ -501,14 +541,17 @@ export declare const entityFileSchema: {
|
|
|
501
541
|
};
|
|
502
542
|
readonly contact: {
|
|
503
543
|
readonly type: "object";
|
|
544
|
+
readonly nodeTypeName: "EntityContact";
|
|
504
545
|
readonly properties: {
|
|
505
546
|
readonly slack: {
|
|
506
547
|
readonly type: "object";
|
|
548
|
+
readonly nodeTypeName: "EntitySlackContact";
|
|
507
549
|
readonly properties: {
|
|
508
550
|
readonly channels: {
|
|
509
551
|
readonly type: "array";
|
|
510
552
|
readonly items: {
|
|
511
553
|
readonly type: "object";
|
|
554
|
+
readonly nodeTypeName: "EntitySlackChannel";
|
|
512
555
|
readonly properties: {
|
|
513
556
|
readonly name: {
|
|
514
557
|
readonly type: "string";
|
|
@@ -532,8 +575,10 @@ export declare const entityFileSchema: {
|
|
|
532
575
|
};
|
|
533
576
|
readonly links: {
|
|
534
577
|
readonly type: "array";
|
|
578
|
+
readonly nodeTypeName: "EntityLinkList";
|
|
535
579
|
readonly items: {
|
|
536
580
|
readonly type: "object";
|
|
581
|
+
readonly nodeTypeName: "EntityLink";
|
|
537
582
|
readonly properties: {
|
|
538
583
|
readonly label: {
|
|
539
584
|
readonly type: "string";
|
|
@@ -550,8 +595,10 @@ export declare const entityFileSchema: {
|
|
|
550
595
|
};
|
|
551
596
|
readonly relations: {
|
|
552
597
|
readonly type: "array";
|
|
598
|
+
readonly nodeTypeName: "EntityRelationList";
|
|
553
599
|
readonly items: {
|
|
554
600
|
readonly type: "object";
|
|
601
|
+
readonly nodeTypeName: "EntityRelation";
|
|
555
602
|
readonly properties: {
|
|
556
603
|
readonly type: {
|
|
557
604
|
readonly type: "string";
|
|
@@ -578,12 +625,14 @@ export declare const entityFileSchema: {
|
|
|
578
625
|
readonly additionalProperties: false;
|
|
579
626
|
}, {
|
|
580
627
|
readonly type: "object";
|
|
628
|
+
readonly nodeTypeName: "DataSchemaEntity";
|
|
581
629
|
readonly properties: {
|
|
582
630
|
readonly type: {
|
|
583
631
|
readonly const: "data-schema";
|
|
584
632
|
};
|
|
585
633
|
readonly metadata: {
|
|
586
634
|
readonly type: "object";
|
|
635
|
+
readonly nodeTypeName: "DataSchemaEntityMetadata";
|
|
587
636
|
readonly properties: {
|
|
588
637
|
readonly specType: {
|
|
589
638
|
readonly type: "string";
|
|
@@ -637,14 +686,17 @@ export declare const entityFileSchema: {
|
|
|
637
686
|
};
|
|
638
687
|
readonly contact: {
|
|
639
688
|
readonly type: "object";
|
|
689
|
+
readonly nodeTypeName: "EntityContact";
|
|
640
690
|
readonly properties: {
|
|
641
691
|
readonly slack: {
|
|
642
692
|
readonly type: "object";
|
|
693
|
+
readonly nodeTypeName: "EntitySlackContact";
|
|
643
694
|
readonly properties: {
|
|
644
695
|
readonly channels: {
|
|
645
696
|
readonly type: "array";
|
|
646
697
|
readonly items: {
|
|
647
698
|
readonly type: "object";
|
|
699
|
+
readonly nodeTypeName: "EntitySlackChannel";
|
|
648
700
|
readonly properties: {
|
|
649
701
|
readonly name: {
|
|
650
702
|
readonly type: "string";
|
|
@@ -668,8 +720,10 @@ export declare const entityFileSchema: {
|
|
|
668
720
|
};
|
|
669
721
|
readonly links: {
|
|
670
722
|
readonly type: "array";
|
|
723
|
+
readonly nodeTypeName: "EntityLinkList";
|
|
671
724
|
readonly items: {
|
|
672
725
|
readonly type: "object";
|
|
726
|
+
readonly nodeTypeName: "EntityLink";
|
|
673
727
|
readonly properties: {
|
|
674
728
|
readonly label: {
|
|
675
729
|
readonly type: "string";
|
|
@@ -686,8 +740,10 @@ export declare const entityFileSchema: {
|
|
|
686
740
|
};
|
|
687
741
|
readonly relations: {
|
|
688
742
|
readonly type: "array";
|
|
743
|
+
readonly nodeTypeName: "EntityRelationList";
|
|
689
744
|
readonly items: {
|
|
690
745
|
readonly type: "object";
|
|
746
|
+
readonly nodeTypeName: "EntityRelation";
|
|
691
747
|
readonly properties: {
|
|
692
748
|
readonly type: {
|
|
693
749
|
readonly type: "string";
|
|
@@ -714,12 +770,14 @@ export declare const entityFileSchema: {
|
|
|
714
770
|
readonly additionalProperties: false;
|
|
715
771
|
}, {
|
|
716
772
|
readonly type: "object";
|
|
773
|
+
readonly nodeTypeName: "ApiDescriptionEntity";
|
|
717
774
|
readonly properties: {
|
|
718
775
|
readonly type: {
|
|
719
776
|
readonly const: "api-description";
|
|
720
777
|
};
|
|
721
778
|
readonly metadata: {
|
|
722
779
|
readonly type: "object";
|
|
780
|
+
readonly nodeTypeName: "ApiDescriptionEntityMetadata";
|
|
723
781
|
readonly properties: {
|
|
724
782
|
readonly specType: {
|
|
725
783
|
readonly type: "string";
|
|
@@ -769,14 +827,17 @@ export declare const entityFileSchema: {
|
|
|
769
827
|
};
|
|
770
828
|
readonly contact: {
|
|
771
829
|
readonly type: "object";
|
|
830
|
+
readonly nodeTypeName: "EntityContact";
|
|
772
831
|
readonly properties: {
|
|
773
832
|
readonly slack: {
|
|
774
833
|
readonly type: "object";
|
|
834
|
+
readonly nodeTypeName: "EntitySlackContact";
|
|
775
835
|
readonly properties: {
|
|
776
836
|
readonly channels: {
|
|
777
837
|
readonly type: "array";
|
|
778
838
|
readonly items: {
|
|
779
839
|
readonly type: "object";
|
|
840
|
+
readonly nodeTypeName: "EntitySlackChannel";
|
|
780
841
|
readonly properties: {
|
|
781
842
|
readonly name: {
|
|
782
843
|
readonly type: "string";
|
|
@@ -800,8 +861,10 @@ export declare const entityFileSchema: {
|
|
|
800
861
|
};
|
|
801
862
|
readonly links: {
|
|
802
863
|
readonly type: "array";
|
|
864
|
+
readonly nodeTypeName: "EntityLinkList";
|
|
803
865
|
readonly items: {
|
|
804
866
|
readonly type: "object";
|
|
867
|
+
readonly nodeTypeName: "EntityLink";
|
|
805
868
|
readonly properties: {
|
|
806
869
|
readonly label: {
|
|
807
870
|
readonly type: "string";
|
|
@@ -818,8 +881,10 @@ export declare const entityFileSchema: {
|
|
|
818
881
|
};
|
|
819
882
|
readonly relations: {
|
|
820
883
|
readonly type: "array";
|
|
884
|
+
readonly nodeTypeName: "EntityRelationList";
|
|
821
885
|
readonly items: {
|
|
822
886
|
readonly type: "object";
|
|
887
|
+
readonly nodeTypeName: "EntityRelation";
|
|
823
888
|
readonly properties: {
|
|
824
889
|
readonly type: {
|
|
825
890
|
readonly type: "string";
|
|
@@ -846,6 +911,7 @@ export declare const entityFileSchema: {
|
|
|
846
911
|
readonly additionalProperties: false;
|
|
847
912
|
}, {
|
|
848
913
|
readonly type: "object";
|
|
914
|
+
readonly nodeTypeName: "ServiceEntity";
|
|
849
915
|
readonly properties: {
|
|
850
916
|
readonly type: {
|
|
851
917
|
readonly const: "service";
|
|
@@ -885,14 +951,17 @@ export declare const entityFileSchema: {
|
|
|
885
951
|
};
|
|
886
952
|
readonly contact: {
|
|
887
953
|
readonly type: "object";
|
|
954
|
+
readonly nodeTypeName: "EntityContact";
|
|
888
955
|
readonly properties: {
|
|
889
956
|
readonly slack: {
|
|
890
957
|
readonly type: "object";
|
|
958
|
+
readonly nodeTypeName: "EntitySlackContact";
|
|
891
959
|
readonly properties: {
|
|
892
960
|
readonly channels: {
|
|
893
961
|
readonly type: "array";
|
|
894
962
|
readonly items: {
|
|
895
963
|
readonly type: "object";
|
|
964
|
+
readonly nodeTypeName: "EntitySlackChannel";
|
|
896
965
|
readonly properties: {
|
|
897
966
|
readonly name: {
|
|
898
967
|
readonly type: "string";
|
|
@@ -916,8 +985,10 @@ export declare const entityFileSchema: {
|
|
|
916
985
|
};
|
|
917
986
|
readonly links: {
|
|
918
987
|
readonly type: "array";
|
|
988
|
+
readonly nodeTypeName: "EntityLinkList";
|
|
919
989
|
readonly items: {
|
|
920
990
|
readonly type: "object";
|
|
991
|
+
readonly nodeTypeName: "EntityLink";
|
|
921
992
|
readonly properties: {
|
|
922
993
|
readonly label: {
|
|
923
994
|
readonly type: "string";
|
|
@@ -934,8 +1005,10 @@ export declare const entityFileSchema: {
|
|
|
934
1005
|
};
|
|
935
1006
|
readonly relations: {
|
|
936
1007
|
readonly type: "array";
|
|
1008
|
+
readonly nodeTypeName: "EntityRelationList";
|
|
937
1009
|
readonly items: {
|
|
938
1010
|
readonly type: "object";
|
|
1011
|
+
readonly nodeTypeName: "EntityRelation";
|
|
939
1012
|
readonly properties: {
|
|
940
1013
|
readonly type: {
|
|
941
1014
|
readonly type: "string";
|
|
@@ -959,6 +1032,8 @@ export declare const entityFileSchema: {
|
|
|
959
1032
|
};
|
|
960
1033
|
readonly metadata: {
|
|
961
1034
|
readonly type: "object";
|
|
1035
|
+
readonly properties: {};
|
|
1036
|
+
readonly nodeTypeName: "EntityMetadata";
|
|
962
1037
|
readonly additionalProperties: true;
|
|
963
1038
|
};
|
|
964
1039
|
};
|
|
@@ -966,6 +1041,7 @@ export declare const entityFileSchema: {
|
|
|
966
1041
|
readonly additionalProperties: false;
|
|
967
1042
|
}, {
|
|
968
1043
|
readonly type: "object";
|
|
1044
|
+
readonly nodeTypeName: "DomainEntity";
|
|
969
1045
|
readonly properties: {
|
|
970
1046
|
readonly type: {
|
|
971
1047
|
readonly const: "domain";
|
|
@@ -1005,14 +1081,17 @@ export declare const entityFileSchema: {
|
|
|
1005
1081
|
};
|
|
1006
1082
|
readonly contact: {
|
|
1007
1083
|
readonly type: "object";
|
|
1084
|
+
readonly nodeTypeName: "EntityContact";
|
|
1008
1085
|
readonly properties: {
|
|
1009
1086
|
readonly slack: {
|
|
1010
1087
|
readonly type: "object";
|
|
1088
|
+
readonly nodeTypeName: "EntitySlackContact";
|
|
1011
1089
|
readonly properties: {
|
|
1012
1090
|
readonly channels: {
|
|
1013
1091
|
readonly type: "array";
|
|
1014
1092
|
readonly items: {
|
|
1015
1093
|
readonly type: "object";
|
|
1094
|
+
readonly nodeTypeName: "EntitySlackChannel";
|
|
1016
1095
|
readonly properties: {
|
|
1017
1096
|
readonly name: {
|
|
1018
1097
|
readonly type: "string";
|
|
@@ -1036,8 +1115,10 @@ export declare const entityFileSchema: {
|
|
|
1036
1115
|
};
|
|
1037
1116
|
readonly links: {
|
|
1038
1117
|
readonly type: "array";
|
|
1118
|
+
readonly nodeTypeName: "EntityLinkList";
|
|
1039
1119
|
readonly items: {
|
|
1040
1120
|
readonly type: "object";
|
|
1121
|
+
readonly nodeTypeName: "EntityLink";
|
|
1041
1122
|
readonly properties: {
|
|
1042
1123
|
readonly label: {
|
|
1043
1124
|
readonly type: "string";
|
|
@@ -1054,8 +1135,10 @@ export declare const entityFileSchema: {
|
|
|
1054
1135
|
};
|
|
1055
1136
|
readonly relations: {
|
|
1056
1137
|
readonly type: "array";
|
|
1138
|
+
readonly nodeTypeName: "EntityRelationList";
|
|
1057
1139
|
readonly items: {
|
|
1058
1140
|
readonly type: "object";
|
|
1141
|
+
readonly nodeTypeName: "EntityRelation";
|
|
1059
1142
|
readonly properties: {
|
|
1060
1143
|
readonly type: {
|
|
1061
1144
|
readonly type: "string";
|
|
@@ -1079,6 +1162,8 @@ export declare const entityFileSchema: {
|
|
|
1079
1162
|
};
|
|
1080
1163
|
readonly metadata: {
|
|
1081
1164
|
readonly type: "object";
|
|
1165
|
+
readonly properties: {};
|
|
1166
|
+
readonly nodeTypeName: "EntityMetadata";
|
|
1082
1167
|
readonly additionalProperties: true;
|
|
1083
1168
|
};
|
|
1084
1169
|
};
|
|
@@ -1086,6 +1171,7 @@ export declare const entityFileSchema: {
|
|
|
1086
1171
|
readonly additionalProperties: false;
|
|
1087
1172
|
}, {
|
|
1088
1173
|
readonly type: "object";
|
|
1174
|
+
readonly nodeTypeName: "TeamEntity";
|
|
1089
1175
|
readonly properties: {
|
|
1090
1176
|
readonly type: {
|
|
1091
1177
|
readonly const: "team";
|
|
@@ -1125,14 +1211,17 @@ export declare const entityFileSchema: {
|
|
|
1125
1211
|
};
|
|
1126
1212
|
readonly contact: {
|
|
1127
1213
|
readonly type: "object";
|
|
1214
|
+
readonly nodeTypeName: "EntityContact";
|
|
1128
1215
|
readonly properties: {
|
|
1129
1216
|
readonly slack: {
|
|
1130
1217
|
readonly type: "object";
|
|
1218
|
+
readonly nodeTypeName: "EntitySlackContact";
|
|
1131
1219
|
readonly properties: {
|
|
1132
1220
|
readonly channels: {
|
|
1133
1221
|
readonly type: "array";
|
|
1134
1222
|
readonly items: {
|
|
1135
1223
|
readonly type: "object";
|
|
1224
|
+
readonly nodeTypeName: "EntitySlackChannel";
|
|
1136
1225
|
readonly properties: {
|
|
1137
1226
|
readonly name: {
|
|
1138
1227
|
readonly type: "string";
|
|
@@ -1156,8 +1245,10 @@ export declare const entityFileSchema: {
|
|
|
1156
1245
|
};
|
|
1157
1246
|
readonly links: {
|
|
1158
1247
|
readonly type: "array";
|
|
1248
|
+
readonly nodeTypeName: "EntityLinkList";
|
|
1159
1249
|
readonly items: {
|
|
1160
1250
|
readonly type: "object";
|
|
1251
|
+
readonly nodeTypeName: "EntityLink";
|
|
1161
1252
|
readonly properties: {
|
|
1162
1253
|
readonly label: {
|
|
1163
1254
|
readonly type: "string";
|
|
@@ -1174,8 +1265,10 @@ export declare const entityFileSchema: {
|
|
|
1174
1265
|
};
|
|
1175
1266
|
readonly relations: {
|
|
1176
1267
|
readonly type: "array";
|
|
1268
|
+
readonly nodeTypeName: "EntityRelationList";
|
|
1177
1269
|
readonly items: {
|
|
1178
1270
|
readonly type: "object";
|
|
1271
|
+
readonly nodeTypeName: "EntityRelation";
|
|
1179
1272
|
readonly properties: {
|
|
1180
1273
|
readonly type: {
|
|
1181
1274
|
readonly type: "string";
|
|
@@ -1199,6 +1292,8 @@ export declare const entityFileSchema: {
|
|
|
1199
1292
|
};
|
|
1200
1293
|
readonly metadata: {
|
|
1201
1294
|
readonly type: "object";
|
|
1295
|
+
readonly properties: {};
|
|
1296
|
+
readonly nodeTypeName: "EntityMetadata";
|
|
1202
1297
|
readonly additionalProperties: true;
|
|
1203
1298
|
};
|
|
1204
1299
|
};
|
|
@@ -1208,6 +1303,7 @@ export declare const entityFileSchema: {
|
|
|
1208
1303
|
};
|
|
1209
1304
|
export declare const entityFileDefaultSchema: {
|
|
1210
1305
|
readonly type: "object";
|
|
1306
|
+
readonly nodeTypeName: "Entity";
|
|
1211
1307
|
readonly properties: {
|
|
1212
1308
|
readonly version: {
|
|
1213
1309
|
readonly type: "string";
|
|
@@ -1248,14 +1344,17 @@ export declare const entityFileDefaultSchema: {
|
|
|
1248
1344
|
};
|
|
1249
1345
|
readonly contact: {
|
|
1250
1346
|
readonly type: "object";
|
|
1347
|
+
readonly nodeTypeName: "EntityContact";
|
|
1251
1348
|
readonly properties: {
|
|
1252
1349
|
readonly slack: {
|
|
1253
1350
|
readonly type: "object";
|
|
1351
|
+
readonly nodeTypeName: "EntitySlackContact";
|
|
1254
1352
|
readonly properties: {
|
|
1255
1353
|
readonly channels: {
|
|
1256
1354
|
readonly type: "array";
|
|
1257
1355
|
readonly items: {
|
|
1258
1356
|
readonly type: "object";
|
|
1357
|
+
readonly nodeTypeName: "EntitySlackChannel";
|
|
1259
1358
|
readonly properties: {
|
|
1260
1359
|
readonly name: {
|
|
1261
1360
|
readonly type: "string";
|
|
@@ -1279,8 +1378,10 @@ export declare const entityFileDefaultSchema: {
|
|
|
1279
1378
|
};
|
|
1280
1379
|
readonly links: {
|
|
1281
1380
|
readonly type: "array";
|
|
1381
|
+
readonly nodeTypeName: "EntityLinkList";
|
|
1282
1382
|
readonly items: {
|
|
1283
1383
|
readonly type: "object";
|
|
1384
|
+
readonly nodeTypeName: "EntityLink";
|
|
1284
1385
|
readonly properties: {
|
|
1285
1386
|
readonly label: {
|
|
1286
1387
|
readonly type: "string";
|
|
@@ -1297,8 +1398,10 @@ export declare const entityFileDefaultSchema: {
|
|
|
1297
1398
|
};
|
|
1298
1399
|
readonly relations: {
|
|
1299
1400
|
readonly type: "array";
|
|
1401
|
+
readonly nodeTypeName: "EntityRelationList";
|
|
1300
1402
|
readonly items: {
|
|
1301
1403
|
readonly type: "object";
|
|
1404
|
+
readonly nodeTypeName: "EntityRelation";
|
|
1302
1405
|
readonly properties: {
|
|
1303
1406
|
readonly type: {
|
|
1304
1407
|
readonly type: "string";
|
|
@@ -1322,6 +1425,8 @@ export declare const entityFileDefaultSchema: {
|
|
|
1322
1425
|
};
|
|
1323
1426
|
readonly metadata: {
|
|
1324
1427
|
readonly type: "object";
|
|
1428
|
+
readonly properties: {};
|
|
1429
|
+
readonly nodeTypeName: "EntityMetadata";
|
|
1325
1430
|
readonly additionalProperties: true;
|
|
1326
1431
|
};
|
|
1327
1432
|
};
|