@redocly/config 0.48.2 → 0.49.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/asyncapi-config-schema.d.ts +106 -106
- package/lib/common.d.ts +158 -135
- package/lib/constants/config.d.ts +10 -10
- package/lib/constants/entities.d.ts +21 -43
- package/lib/default-theme-config-schema.d.ts +3360 -3308
- package/lib/entities-catalog-config-schema.d.ts +469 -469
- package/lib/entities-catalog-entity-file-schema.d.ts +441 -441
- package/lib/ex-theme-config-schemas.d.ts +3022 -2993
- package/lib/feedback-config-schema.d.ts +99 -99
- package/lib/graphql-config-schema.d.ts +165 -165
- package/lib/index.js +1 -1
- package/lib/product-override-schema.d.ts +11541 -11518
- package/lib/redoc-config-schema.d.ts +155 -155
- package/lib/reference-docs-config-schema.d.ts +481 -481
- package/lib/reunite-config-schema.d.ts +41 -41
- package/lib/root-config-schema.d.ts +51975 -51520
- package/lib/scorecards-config-schema.d.ts +405 -405
- package/lib-esm/asyncapi-config-schema.d.ts +106 -106
- package/lib-esm/common.d.ts +158 -135
- package/lib-esm/constants/config.d.ts +10 -10
- package/lib-esm/constants/entities.d.ts +21 -43
- package/lib-esm/default-theme-config-schema.d.ts +3360 -3308
- package/lib-esm/entities-catalog-config-schema.d.ts +469 -469
- package/lib-esm/entities-catalog-entity-file-schema.d.ts +441 -441
- package/lib-esm/ex-theme-config-schemas.d.ts +3022 -2993
- package/lib-esm/feedback-config-schema.d.ts +99 -99
- package/lib-esm/graphql-config-schema.d.ts +165 -165
- package/lib-esm/index.js +1 -1
- package/lib-esm/product-override-schema.d.ts +11541 -11518
- package/lib-esm/redoc-config-schema.d.ts +155 -155
- package/lib-esm/reference-docs-config-schema.d.ts +481 -481
- package/lib-esm/reunite-config-schema.d.ts +41 -41
- package/lib-esm/root-config-schema.d.ts +51975 -51520
- package/lib-esm/scorecards-config-schema.d.ts +405 -405
- package/package.json +9 -9
|
@@ -1,139 +1,139 @@
|
|
|
1
1
|
export declare const entityCatalogExcludeSchema: {
|
|
2
|
-
readonly type:
|
|
3
|
-
readonly required: readonly [
|
|
2
|
+
readonly type: 'object';
|
|
3
|
+
readonly required: readonly ['key'];
|
|
4
4
|
readonly properties: {
|
|
5
5
|
readonly key: {
|
|
6
|
-
readonly type:
|
|
6
|
+
readonly type: 'string';
|
|
7
7
|
};
|
|
8
8
|
};
|
|
9
9
|
readonly additionalProperties: false;
|
|
10
10
|
};
|
|
11
11
|
export declare const entityCatalogIncludeSchema: {
|
|
12
|
-
readonly type:
|
|
13
|
-
readonly required: readonly [
|
|
12
|
+
readonly type: 'object';
|
|
13
|
+
readonly required: readonly ['type'];
|
|
14
14
|
readonly properties: {
|
|
15
15
|
readonly type: {
|
|
16
|
-
readonly type:
|
|
16
|
+
readonly type: 'string';
|
|
17
17
|
};
|
|
18
18
|
};
|
|
19
19
|
readonly additionalProperties: false;
|
|
20
20
|
};
|
|
21
21
|
export declare const entityCatalogFilterSchema: {
|
|
22
|
-
readonly type:
|
|
23
|
-
readonly required: readonly [
|
|
22
|
+
readonly type: 'object';
|
|
23
|
+
readonly required: readonly ['property', 'title'];
|
|
24
24
|
readonly properties: {
|
|
25
25
|
readonly property: {
|
|
26
|
-
readonly type:
|
|
26
|
+
readonly type: 'string';
|
|
27
27
|
};
|
|
28
28
|
readonly hide: {
|
|
29
|
-
readonly type:
|
|
29
|
+
readonly type: 'boolean';
|
|
30
30
|
};
|
|
31
31
|
readonly label: {
|
|
32
|
-
readonly type:
|
|
32
|
+
readonly type: 'string';
|
|
33
33
|
};
|
|
34
34
|
readonly options: {
|
|
35
|
-
readonly type:
|
|
35
|
+
readonly type: 'array';
|
|
36
36
|
readonly items: {
|
|
37
|
-
readonly type:
|
|
37
|
+
readonly type: 'string';
|
|
38
38
|
};
|
|
39
39
|
};
|
|
40
40
|
readonly type: {
|
|
41
|
-
readonly type:
|
|
42
|
-
readonly enum: readonly [
|
|
43
|
-
readonly default:
|
|
41
|
+
readonly type: 'string';
|
|
42
|
+
readonly enum: readonly ['select', 'checkboxes', 'date-range'];
|
|
43
|
+
readonly default: 'checkboxes';
|
|
44
44
|
};
|
|
45
45
|
readonly title: {
|
|
46
|
-
readonly type:
|
|
46
|
+
readonly type: 'string';
|
|
47
47
|
};
|
|
48
48
|
readonly titleTranslationKey: {
|
|
49
|
-
readonly type:
|
|
49
|
+
readonly type: 'string';
|
|
50
50
|
};
|
|
51
51
|
readonly parentFilter: {
|
|
52
|
-
readonly type:
|
|
52
|
+
readonly type: 'string';
|
|
53
53
|
};
|
|
54
54
|
readonly valuesMapping: {
|
|
55
|
-
readonly type:
|
|
55
|
+
readonly type: 'object';
|
|
56
56
|
readonly additionalProperties: {
|
|
57
|
-
readonly type:
|
|
57
|
+
readonly type: 'string';
|
|
58
58
|
};
|
|
59
59
|
};
|
|
60
60
|
};
|
|
61
61
|
readonly additionalProperties: false;
|
|
62
62
|
};
|
|
63
63
|
export declare const entityCatalogSpecificCatalogSchema: {
|
|
64
|
-
readonly type:
|
|
64
|
+
readonly type: 'object';
|
|
65
65
|
readonly properties: {
|
|
66
66
|
readonly slug: {
|
|
67
|
-
readonly type:
|
|
67
|
+
readonly type: 'string';
|
|
68
68
|
};
|
|
69
69
|
readonly hide: {
|
|
70
|
-
readonly type:
|
|
70
|
+
readonly type: 'boolean';
|
|
71
71
|
};
|
|
72
72
|
readonly includes: {
|
|
73
|
-
readonly type:
|
|
73
|
+
readonly type: 'array';
|
|
74
74
|
readonly items: {
|
|
75
|
-
readonly type:
|
|
76
|
-
readonly required: readonly [
|
|
75
|
+
readonly type: 'object';
|
|
76
|
+
readonly required: readonly ['type'];
|
|
77
77
|
readonly properties: {
|
|
78
78
|
readonly type: {
|
|
79
|
-
readonly type:
|
|
79
|
+
readonly type: 'string';
|
|
80
80
|
};
|
|
81
81
|
};
|
|
82
82
|
readonly additionalProperties: false;
|
|
83
83
|
};
|
|
84
84
|
};
|
|
85
85
|
readonly excludes: {
|
|
86
|
-
readonly type:
|
|
86
|
+
readonly type: 'array';
|
|
87
87
|
readonly items: {
|
|
88
|
-
readonly type:
|
|
89
|
-
readonly required: readonly [
|
|
88
|
+
readonly type: 'object';
|
|
89
|
+
readonly required: readonly ['key'];
|
|
90
90
|
readonly properties: {
|
|
91
91
|
readonly key: {
|
|
92
|
-
readonly type:
|
|
92
|
+
readonly type: 'string';
|
|
93
93
|
};
|
|
94
94
|
};
|
|
95
95
|
readonly additionalProperties: false;
|
|
96
96
|
};
|
|
97
97
|
};
|
|
98
98
|
readonly filters: {
|
|
99
|
-
readonly type:
|
|
99
|
+
readonly type: 'array';
|
|
100
100
|
readonly items: {
|
|
101
|
-
readonly type:
|
|
102
|
-
readonly required: readonly [
|
|
101
|
+
readonly type: 'object';
|
|
102
|
+
readonly required: readonly ['property', 'title'];
|
|
103
103
|
readonly properties: {
|
|
104
104
|
readonly property: {
|
|
105
|
-
readonly type:
|
|
105
|
+
readonly type: 'string';
|
|
106
106
|
};
|
|
107
107
|
readonly hide: {
|
|
108
|
-
readonly type:
|
|
108
|
+
readonly type: 'boolean';
|
|
109
109
|
};
|
|
110
110
|
readonly label: {
|
|
111
|
-
readonly type:
|
|
111
|
+
readonly type: 'string';
|
|
112
112
|
};
|
|
113
113
|
readonly options: {
|
|
114
|
-
readonly type:
|
|
114
|
+
readonly type: 'array';
|
|
115
115
|
readonly items: {
|
|
116
|
-
readonly type:
|
|
116
|
+
readonly type: 'string';
|
|
117
117
|
};
|
|
118
118
|
};
|
|
119
119
|
readonly type: {
|
|
120
|
-
readonly type:
|
|
121
|
-
readonly enum: readonly [
|
|
122
|
-
readonly default:
|
|
120
|
+
readonly type: 'string';
|
|
121
|
+
readonly enum: readonly ['select', 'checkboxes', 'date-range'];
|
|
122
|
+
readonly default: 'checkboxes';
|
|
123
123
|
};
|
|
124
124
|
readonly title: {
|
|
125
|
-
readonly type:
|
|
125
|
+
readonly type: 'string';
|
|
126
126
|
};
|
|
127
127
|
readonly titleTranslationKey: {
|
|
128
|
-
readonly type:
|
|
128
|
+
readonly type: 'string';
|
|
129
129
|
};
|
|
130
130
|
readonly parentFilter: {
|
|
131
|
-
readonly type:
|
|
131
|
+
readonly type: 'string';
|
|
132
132
|
};
|
|
133
133
|
readonly valuesMapping: {
|
|
134
|
-
readonly type:
|
|
134
|
+
readonly type: 'object';
|
|
135
135
|
readonly additionalProperties: {
|
|
136
|
-
readonly type:
|
|
136
|
+
readonly type: 'string';
|
|
137
137
|
};
|
|
138
138
|
};
|
|
139
139
|
};
|
|
@@ -141,230 +141,230 @@ export declare const entityCatalogSpecificCatalogSchema: {
|
|
|
141
141
|
};
|
|
142
142
|
};
|
|
143
143
|
readonly titleTranslationKey: {
|
|
144
|
-
readonly type:
|
|
144
|
+
readonly type: 'string';
|
|
145
145
|
};
|
|
146
146
|
readonly descriptionTranslationKey: {
|
|
147
|
-
readonly type:
|
|
147
|
+
readonly type: 'string';
|
|
148
148
|
};
|
|
149
149
|
readonly catalogSwitcherLabelTranslationKey: {
|
|
150
|
-
readonly type:
|
|
150
|
+
readonly type: 'string';
|
|
151
151
|
};
|
|
152
152
|
};
|
|
153
153
|
readonly additionalProperties: false;
|
|
154
154
|
};
|
|
155
155
|
export declare const entityCatalogMetadataSchemaPropertySchema: {
|
|
156
|
-
readonly type:
|
|
156
|
+
readonly type: 'object';
|
|
157
157
|
readonly properties: {
|
|
158
158
|
readonly type: {
|
|
159
|
-
readonly type:
|
|
160
|
-
readonly enum: readonly [
|
|
159
|
+
readonly type: 'string';
|
|
160
|
+
readonly enum: readonly ['string', 'number', 'boolean', 'array', 'object'];
|
|
161
161
|
};
|
|
162
162
|
readonly description: {
|
|
163
|
-
readonly type:
|
|
163
|
+
readonly type: 'string';
|
|
164
164
|
};
|
|
165
165
|
readonly example: {
|
|
166
166
|
readonly oneOf: readonly [{
|
|
167
|
-
readonly type:
|
|
167
|
+
readonly type: 'string';
|
|
168
168
|
}, {
|
|
169
|
-
readonly type:
|
|
169
|
+
readonly type: 'number';
|
|
170
170
|
}, {
|
|
171
|
-
readonly type:
|
|
171
|
+
readonly type: 'boolean';
|
|
172
172
|
}, {
|
|
173
|
-
readonly type:
|
|
173
|
+
readonly type: 'array';
|
|
174
174
|
}, {
|
|
175
|
-
readonly type:
|
|
175
|
+
readonly type: 'object';
|
|
176
176
|
}];
|
|
177
177
|
};
|
|
178
178
|
readonly enum: {
|
|
179
|
-
readonly type:
|
|
179
|
+
readonly type: 'array';
|
|
180
180
|
readonly items: {
|
|
181
|
-
readonly type:
|
|
181
|
+
readonly type: 'string';
|
|
182
182
|
};
|
|
183
183
|
};
|
|
184
184
|
readonly pattern: {
|
|
185
|
-
readonly type:
|
|
185
|
+
readonly type: 'string';
|
|
186
186
|
};
|
|
187
187
|
readonly format: {
|
|
188
|
-
readonly type:
|
|
188
|
+
readonly type: 'string';
|
|
189
189
|
};
|
|
190
190
|
readonly minimum: {
|
|
191
|
-
readonly type:
|
|
191
|
+
readonly type: 'number';
|
|
192
192
|
};
|
|
193
193
|
readonly maximum: {
|
|
194
|
-
readonly type:
|
|
194
|
+
readonly type: 'number';
|
|
195
195
|
};
|
|
196
196
|
readonly items: {
|
|
197
|
-
readonly type:
|
|
197
|
+
readonly type: 'object';
|
|
198
198
|
};
|
|
199
199
|
};
|
|
200
200
|
readonly additionalProperties: true;
|
|
201
201
|
};
|
|
202
202
|
export declare const entityCatalogMetadataSchema: {
|
|
203
|
-
readonly type:
|
|
204
|
-
readonly required: readonly [
|
|
203
|
+
readonly type: 'object';
|
|
204
|
+
readonly required: readonly ['type', 'properties'];
|
|
205
205
|
readonly properties: {
|
|
206
206
|
readonly type: {
|
|
207
|
-
readonly type:
|
|
208
|
-
readonly enum: readonly [
|
|
207
|
+
readonly type: 'string';
|
|
208
|
+
readonly enum: readonly ['object'];
|
|
209
209
|
};
|
|
210
210
|
readonly description: {
|
|
211
|
-
readonly type:
|
|
211
|
+
readonly type: 'string';
|
|
212
212
|
};
|
|
213
213
|
readonly properties: {
|
|
214
|
-
readonly type:
|
|
214
|
+
readonly type: 'object';
|
|
215
215
|
readonly additionalProperties: {
|
|
216
|
-
readonly type:
|
|
216
|
+
readonly type: 'object';
|
|
217
217
|
readonly properties: {
|
|
218
218
|
readonly type: {
|
|
219
|
-
readonly type:
|
|
220
|
-
readonly enum: readonly [
|
|
219
|
+
readonly type: 'string';
|
|
220
|
+
readonly enum: readonly ['string', 'number', 'boolean', 'array', 'object'];
|
|
221
221
|
};
|
|
222
222
|
readonly description: {
|
|
223
|
-
readonly type:
|
|
223
|
+
readonly type: 'string';
|
|
224
224
|
};
|
|
225
225
|
readonly example: {
|
|
226
226
|
readonly oneOf: readonly [{
|
|
227
|
-
readonly type:
|
|
227
|
+
readonly type: 'string';
|
|
228
228
|
}, {
|
|
229
|
-
readonly type:
|
|
229
|
+
readonly type: 'number';
|
|
230
230
|
}, {
|
|
231
|
-
readonly type:
|
|
231
|
+
readonly type: 'boolean';
|
|
232
232
|
}, {
|
|
233
|
-
readonly type:
|
|
233
|
+
readonly type: 'array';
|
|
234
234
|
}, {
|
|
235
|
-
readonly type:
|
|
235
|
+
readonly type: 'object';
|
|
236
236
|
}];
|
|
237
237
|
};
|
|
238
238
|
readonly enum: {
|
|
239
|
-
readonly type:
|
|
239
|
+
readonly type: 'array';
|
|
240
240
|
readonly items: {
|
|
241
|
-
readonly type:
|
|
241
|
+
readonly type: 'string';
|
|
242
242
|
};
|
|
243
243
|
};
|
|
244
244
|
readonly pattern: {
|
|
245
|
-
readonly type:
|
|
245
|
+
readonly type: 'string';
|
|
246
246
|
};
|
|
247
247
|
readonly format: {
|
|
248
|
-
readonly type:
|
|
248
|
+
readonly type: 'string';
|
|
249
249
|
};
|
|
250
250
|
readonly minimum: {
|
|
251
|
-
readonly type:
|
|
251
|
+
readonly type: 'number';
|
|
252
252
|
};
|
|
253
253
|
readonly maximum: {
|
|
254
|
-
readonly type:
|
|
254
|
+
readonly type: 'number';
|
|
255
255
|
};
|
|
256
256
|
readonly items: {
|
|
257
|
-
readonly type:
|
|
257
|
+
readonly type: 'object';
|
|
258
258
|
};
|
|
259
259
|
};
|
|
260
260
|
readonly additionalProperties: true;
|
|
261
261
|
};
|
|
262
262
|
};
|
|
263
263
|
readonly required: {
|
|
264
|
-
readonly type:
|
|
264
|
+
readonly type: 'array';
|
|
265
265
|
readonly items: {
|
|
266
|
-
readonly type:
|
|
266
|
+
readonly type: 'string';
|
|
267
267
|
};
|
|
268
268
|
};
|
|
269
269
|
readonly additionalProperties: {
|
|
270
|
-
readonly type:
|
|
270
|
+
readonly type: 'boolean';
|
|
271
271
|
};
|
|
272
272
|
};
|
|
273
273
|
readonly additionalProperties: true;
|
|
274
274
|
};
|
|
275
275
|
export declare const entityCatalogEntityTypeSchema: {
|
|
276
|
-
readonly type:
|
|
277
|
-
readonly required: readonly [
|
|
276
|
+
readonly type: 'object';
|
|
277
|
+
readonly required: readonly ['name', 'description', 'metadataSchema'];
|
|
278
278
|
readonly properties: {
|
|
279
279
|
readonly name: {
|
|
280
|
-
readonly type:
|
|
281
|
-
readonly description:
|
|
280
|
+
readonly type: 'string';
|
|
281
|
+
readonly description: 'Display name of the entity type';
|
|
282
282
|
};
|
|
283
283
|
readonly description: {
|
|
284
|
-
readonly type:
|
|
285
|
-
readonly description:
|
|
284
|
+
readonly type: 'string';
|
|
285
|
+
readonly description: 'Description of the entity type';
|
|
286
286
|
};
|
|
287
287
|
readonly metadataSchema: {
|
|
288
|
-
readonly type:
|
|
289
|
-
readonly required: readonly [
|
|
288
|
+
readonly type: 'object';
|
|
289
|
+
readonly required: readonly ['type', 'properties'];
|
|
290
290
|
readonly properties: {
|
|
291
291
|
readonly type: {
|
|
292
|
-
readonly type:
|
|
293
|
-
readonly enum: readonly [
|
|
292
|
+
readonly type: 'string';
|
|
293
|
+
readonly enum: readonly ['object'];
|
|
294
294
|
};
|
|
295
295
|
readonly description: {
|
|
296
|
-
readonly type:
|
|
296
|
+
readonly type: 'string';
|
|
297
297
|
};
|
|
298
298
|
readonly properties: {
|
|
299
|
-
readonly type:
|
|
299
|
+
readonly type: 'object';
|
|
300
300
|
readonly additionalProperties: {
|
|
301
|
-
readonly type:
|
|
301
|
+
readonly type: 'object';
|
|
302
302
|
readonly properties: {
|
|
303
303
|
readonly type: {
|
|
304
|
-
readonly type:
|
|
305
|
-
readonly enum: readonly [
|
|
304
|
+
readonly type: 'string';
|
|
305
|
+
readonly enum: readonly ['string', 'number', 'boolean', 'array', 'object'];
|
|
306
306
|
};
|
|
307
307
|
readonly description: {
|
|
308
|
-
readonly type:
|
|
308
|
+
readonly type: 'string';
|
|
309
309
|
};
|
|
310
310
|
readonly example: {
|
|
311
311
|
readonly oneOf: readonly [{
|
|
312
|
-
readonly type:
|
|
312
|
+
readonly type: 'string';
|
|
313
313
|
}, {
|
|
314
|
-
readonly type:
|
|
314
|
+
readonly type: 'number';
|
|
315
315
|
}, {
|
|
316
|
-
readonly type:
|
|
316
|
+
readonly type: 'boolean';
|
|
317
317
|
}, {
|
|
318
|
-
readonly type:
|
|
318
|
+
readonly type: 'array';
|
|
319
319
|
}, {
|
|
320
|
-
readonly type:
|
|
320
|
+
readonly type: 'object';
|
|
321
321
|
}];
|
|
322
322
|
};
|
|
323
323
|
readonly enum: {
|
|
324
|
-
readonly type:
|
|
324
|
+
readonly type: 'array';
|
|
325
325
|
readonly items: {
|
|
326
|
-
readonly type:
|
|
326
|
+
readonly type: 'string';
|
|
327
327
|
};
|
|
328
328
|
};
|
|
329
329
|
readonly pattern: {
|
|
330
|
-
readonly type:
|
|
330
|
+
readonly type: 'string';
|
|
331
331
|
};
|
|
332
332
|
readonly format: {
|
|
333
|
-
readonly type:
|
|
333
|
+
readonly type: 'string';
|
|
334
334
|
};
|
|
335
335
|
readonly minimum: {
|
|
336
|
-
readonly type:
|
|
336
|
+
readonly type: 'number';
|
|
337
337
|
};
|
|
338
338
|
readonly maximum: {
|
|
339
|
-
readonly type:
|
|
339
|
+
readonly type: 'number';
|
|
340
340
|
};
|
|
341
341
|
readonly items: {
|
|
342
|
-
readonly type:
|
|
342
|
+
readonly type: 'object';
|
|
343
343
|
};
|
|
344
344
|
};
|
|
345
345
|
readonly additionalProperties: true;
|
|
346
346
|
};
|
|
347
347
|
};
|
|
348
348
|
readonly required: {
|
|
349
|
-
readonly type:
|
|
349
|
+
readonly type: 'array';
|
|
350
350
|
readonly items: {
|
|
351
|
-
readonly type:
|
|
351
|
+
readonly type: 'string';
|
|
352
352
|
};
|
|
353
353
|
};
|
|
354
354
|
readonly additionalProperties: {
|
|
355
|
-
readonly type:
|
|
355
|
+
readonly type: 'boolean';
|
|
356
356
|
};
|
|
357
357
|
};
|
|
358
358
|
readonly additionalProperties: true;
|
|
359
359
|
};
|
|
360
360
|
readonly icon: {
|
|
361
|
-
readonly type:
|
|
361
|
+
readonly type: 'object';
|
|
362
362
|
readonly properties: {
|
|
363
363
|
readonly src: {
|
|
364
|
-
readonly type:
|
|
364
|
+
readonly type: 'string';
|
|
365
365
|
};
|
|
366
366
|
readonly srcSet: {
|
|
367
|
-
readonly type:
|
|
367
|
+
readonly type: 'string';
|
|
368
368
|
};
|
|
369
369
|
};
|
|
370
370
|
readonly additionalProperties: false;
|
|
@@ -373,100 +373,100 @@ export declare const entityCatalogEntityTypeSchema: {
|
|
|
373
373
|
readonly additionalProperties: false;
|
|
374
374
|
};
|
|
375
375
|
export declare const entityCatalogEntityTypesSchema: {
|
|
376
|
-
readonly type:
|
|
376
|
+
readonly type: 'object';
|
|
377
377
|
readonly additionalProperties: {
|
|
378
|
-
readonly type:
|
|
379
|
-
readonly required: readonly [
|
|
378
|
+
readonly type: 'object';
|
|
379
|
+
readonly required: readonly ['name', 'description', 'metadataSchema'];
|
|
380
380
|
readonly properties: {
|
|
381
381
|
readonly name: {
|
|
382
|
-
readonly type:
|
|
383
|
-
readonly description:
|
|
382
|
+
readonly type: 'string';
|
|
383
|
+
readonly description: 'Display name of the entity type';
|
|
384
384
|
};
|
|
385
385
|
readonly description: {
|
|
386
|
-
readonly type:
|
|
387
|
-
readonly description:
|
|
386
|
+
readonly type: 'string';
|
|
387
|
+
readonly description: 'Description of the entity type';
|
|
388
388
|
};
|
|
389
389
|
readonly metadataSchema: {
|
|
390
|
-
readonly type:
|
|
391
|
-
readonly required: readonly [
|
|
390
|
+
readonly type: 'object';
|
|
391
|
+
readonly required: readonly ['type', 'properties'];
|
|
392
392
|
readonly properties: {
|
|
393
393
|
readonly type: {
|
|
394
|
-
readonly type:
|
|
395
|
-
readonly enum: readonly [
|
|
394
|
+
readonly type: 'string';
|
|
395
|
+
readonly enum: readonly ['object'];
|
|
396
396
|
};
|
|
397
397
|
readonly description: {
|
|
398
|
-
readonly type:
|
|
398
|
+
readonly type: 'string';
|
|
399
399
|
};
|
|
400
400
|
readonly properties: {
|
|
401
|
-
readonly type:
|
|
401
|
+
readonly type: 'object';
|
|
402
402
|
readonly additionalProperties: {
|
|
403
|
-
readonly type:
|
|
403
|
+
readonly type: 'object';
|
|
404
404
|
readonly properties: {
|
|
405
405
|
readonly type: {
|
|
406
|
-
readonly type:
|
|
407
|
-
readonly enum: readonly [
|
|
406
|
+
readonly type: 'string';
|
|
407
|
+
readonly enum: readonly ['string', 'number', 'boolean', 'array', 'object'];
|
|
408
408
|
};
|
|
409
409
|
readonly description: {
|
|
410
|
-
readonly type:
|
|
410
|
+
readonly type: 'string';
|
|
411
411
|
};
|
|
412
412
|
readonly example: {
|
|
413
413
|
readonly oneOf: readonly [{
|
|
414
|
-
readonly type:
|
|
414
|
+
readonly type: 'string';
|
|
415
415
|
}, {
|
|
416
|
-
readonly type:
|
|
416
|
+
readonly type: 'number';
|
|
417
417
|
}, {
|
|
418
|
-
readonly type:
|
|
418
|
+
readonly type: 'boolean';
|
|
419
419
|
}, {
|
|
420
|
-
readonly type:
|
|
420
|
+
readonly type: 'array';
|
|
421
421
|
}, {
|
|
422
|
-
readonly type:
|
|
422
|
+
readonly type: 'object';
|
|
423
423
|
}];
|
|
424
424
|
};
|
|
425
425
|
readonly enum: {
|
|
426
|
-
readonly type:
|
|
426
|
+
readonly type: 'array';
|
|
427
427
|
readonly items: {
|
|
428
|
-
readonly type:
|
|
428
|
+
readonly type: 'string';
|
|
429
429
|
};
|
|
430
430
|
};
|
|
431
431
|
readonly pattern: {
|
|
432
|
-
readonly type:
|
|
432
|
+
readonly type: 'string';
|
|
433
433
|
};
|
|
434
434
|
readonly format: {
|
|
435
|
-
readonly type:
|
|
435
|
+
readonly type: 'string';
|
|
436
436
|
};
|
|
437
437
|
readonly minimum: {
|
|
438
|
-
readonly type:
|
|
438
|
+
readonly type: 'number';
|
|
439
439
|
};
|
|
440
440
|
readonly maximum: {
|
|
441
|
-
readonly type:
|
|
441
|
+
readonly type: 'number';
|
|
442
442
|
};
|
|
443
443
|
readonly items: {
|
|
444
|
-
readonly type:
|
|
444
|
+
readonly type: 'object';
|
|
445
445
|
};
|
|
446
446
|
};
|
|
447
447
|
readonly additionalProperties: true;
|
|
448
448
|
};
|
|
449
449
|
};
|
|
450
450
|
readonly required: {
|
|
451
|
-
readonly type:
|
|
451
|
+
readonly type: 'array';
|
|
452
452
|
readonly items: {
|
|
453
|
-
readonly type:
|
|
453
|
+
readonly type: 'string';
|
|
454
454
|
};
|
|
455
455
|
};
|
|
456
456
|
readonly additionalProperties: {
|
|
457
|
-
readonly type:
|
|
457
|
+
readonly type: 'boolean';
|
|
458
458
|
};
|
|
459
459
|
};
|
|
460
460
|
readonly additionalProperties: true;
|
|
461
461
|
};
|
|
462
462
|
readonly icon: {
|
|
463
|
-
readonly type:
|
|
463
|
+
readonly type: 'object';
|
|
464
464
|
readonly properties: {
|
|
465
465
|
readonly src: {
|
|
466
|
-
readonly type:
|
|
466
|
+
readonly type: 'string';
|
|
467
467
|
};
|
|
468
468
|
readonly srcSet: {
|
|
469
|
-
readonly type:
|
|
469
|
+
readonly type: 'string';
|
|
470
470
|
};
|
|
471
471
|
};
|
|
472
472
|
readonly additionalProperties: false;
|
|
@@ -476,107 +476,107 @@ export declare const entityCatalogEntityTypesSchema: {
|
|
|
476
476
|
};
|
|
477
477
|
};
|
|
478
478
|
export declare const entitiesCatalogConfigSchema: {
|
|
479
|
-
readonly type:
|
|
479
|
+
readonly type: 'object';
|
|
480
480
|
readonly properties: {
|
|
481
481
|
readonly show: {
|
|
482
|
-
readonly type:
|
|
482
|
+
readonly type: 'boolean';
|
|
483
483
|
readonly default: false;
|
|
484
484
|
};
|
|
485
485
|
readonly entityTypes: {
|
|
486
|
-
readonly type:
|
|
486
|
+
readonly type: 'object';
|
|
487
487
|
readonly additionalProperties: {
|
|
488
|
-
readonly type:
|
|
489
|
-
readonly required: readonly [
|
|
488
|
+
readonly type: 'object';
|
|
489
|
+
readonly required: readonly ['name', 'description', 'metadataSchema'];
|
|
490
490
|
readonly properties: {
|
|
491
491
|
readonly name: {
|
|
492
|
-
readonly type:
|
|
493
|
-
readonly description:
|
|
492
|
+
readonly type: 'string';
|
|
493
|
+
readonly description: 'Display name of the entity type';
|
|
494
494
|
};
|
|
495
495
|
readonly description: {
|
|
496
|
-
readonly type:
|
|
497
|
-
readonly description:
|
|
496
|
+
readonly type: 'string';
|
|
497
|
+
readonly description: 'Description of the entity type';
|
|
498
498
|
};
|
|
499
499
|
readonly metadataSchema: {
|
|
500
|
-
readonly type:
|
|
501
|
-
readonly required: readonly [
|
|
500
|
+
readonly type: 'object';
|
|
501
|
+
readonly required: readonly ['type', 'properties'];
|
|
502
502
|
readonly properties: {
|
|
503
503
|
readonly type: {
|
|
504
|
-
readonly type:
|
|
505
|
-
readonly enum: readonly [
|
|
504
|
+
readonly type: 'string';
|
|
505
|
+
readonly enum: readonly ['object'];
|
|
506
506
|
};
|
|
507
507
|
readonly description: {
|
|
508
|
-
readonly type:
|
|
508
|
+
readonly type: 'string';
|
|
509
509
|
};
|
|
510
510
|
readonly properties: {
|
|
511
|
-
readonly type:
|
|
511
|
+
readonly type: 'object';
|
|
512
512
|
readonly additionalProperties: {
|
|
513
|
-
readonly type:
|
|
513
|
+
readonly type: 'object';
|
|
514
514
|
readonly properties: {
|
|
515
515
|
readonly type: {
|
|
516
|
-
readonly type:
|
|
517
|
-
readonly enum: readonly [
|
|
516
|
+
readonly type: 'string';
|
|
517
|
+
readonly enum: readonly ['string', 'number', 'boolean', 'array', 'object'];
|
|
518
518
|
};
|
|
519
519
|
readonly description: {
|
|
520
|
-
readonly type:
|
|
520
|
+
readonly type: 'string';
|
|
521
521
|
};
|
|
522
522
|
readonly example: {
|
|
523
523
|
readonly oneOf: readonly [{
|
|
524
|
-
readonly type:
|
|
524
|
+
readonly type: 'string';
|
|
525
525
|
}, {
|
|
526
|
-
readonly type:
|
|
526
|
+
readonly type: 'number';
|
|
527
527
|
}, {
|
|
528
|
-
readonly type:
|
|
528
|
+
readonly type: 'boolean';
|
|
529
529
|
}, {
|
|
530
|
-
readonly type:
|
|
530
|
+
readonly type: 'array';
|
|
531
531
|
}, {
|
|
532
|
-
readonly type:
|
|
532
|
+
readonly type: 'object';
|
|
533
533
|
}];
|
|
534
534
|
};
|
|
535
535
|
readonly enum: {
|
|
536
|
-
readonly type:
|
|
536
|
+
readonly type: 'array';
|
|
537
537
|
readonly items: {
|
|
538
|
-
readonly type:
|
|
538
|
+
readonly type: 'string';
|
|
539
539
|
};
|
|
540
540
|
};
|
|
541
541
|
readonly pattern: {
|
|
542
|
-
readonly type:
|
|
542
|
+
readonly type: 'string';
|
|
543
543
|
};
|
|
544
544
|
readonly format: {
|
|
545
|
-
readonly type:
|
|
545
|
+
readonly type: 'string';
|
|
546
546
|
};
|
|
547
547
|
readonly minimum: {
|
|
548
|
-
readonly type:
|
|
548
|
+
readonly type: 'number';
|
|
549
549
|
};
|
|
550
550
|
readonly maximum: {
|
|
551
|
-
readonly type:
|
|
551
|
+
readonly type: 'number';
|
|
552
552
|
};
|
|
553
553
|
readonly items: {
|
|
554
|
-
readonly type:
|
|
554
|
+
readonly type: 'object';
|
|
555
555
|
};
|
|
556
556
|
};
|
|
557
557
|
readonly additionalProperties: true;
|
|
558
558
|
};
|
|
559
559
|
};
|
|
560
560
|
readonly required: {
|
|
561
|
-
readonly type:
|
|
561
|
+
readonly type: 'array';
|
|
562
562
|
readonly items: {
|
|
563
|
-
readonly type:
|
|
563
|
+
readonly type: 'string';
|
|
564
564
|
};
|
|
565
565
|
};
|
|
566
566
|
readonly additionalProperties: {
|
|
567
|
-
readonly type:
|
|
567
|
+
readonly type: 'boolean';
|
|
568
568
|
};
|
|
569
569
|
};
|
|
570
570
|
readonly additionalProperties: true;
|
|
571
571
|
};
|
|
572
572
|
readonly icon: {
|
|
573
|
-
readonly type:
|
|
573
|
+
readonly type: 'object';
|
|
574
574
|
readonly properties: {
|
|
575
575
|
readonly src: {
|
|
576
|
-
readonly type:
|
|
576
|
+
readonly type: 'string';
|
|
577
577
|
};
|
|
578
578
|
readonly srcSet: {
|
|
579
|
-
readonly type:
|
|
579
|
+
readonly type: 'string';
|
|
580
580
|
};
|
|
581
581
|
};
|
|
582
582
|
readonly additionalProperties: false;
|
|
@@ -586,82 +586,82 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
586
586
|
};
|
|
587
587
|
};
|
|
588
588
|
readonly catalogs: {
|
|
589
|
-
readonly type:
|
|
589
|
+
readonly type: 'object';
|
|
590
590
|
readonly properties: {
|
|
591
591
|
readonly all: {
|
|
592
|
-
readonly type:
|
|
592
|
+
readonly type: 'object';
|
|
593
593
|
readonly properties: {
|
|
594
594
|
readonly slug: {
|
|
595
|
-
readonly type:
|
|
595
|
+
readonly type: 'string';
|
|
596
596
|
};
|
|
597
597
|
readonly hide: {
|
|
598
|
-
readonly type:
|
|
598
|
+
readonly type: 'boolean';
|
|
599
599
|
};
|
|
600
600
|
readonly includes: {
|
|
601
|
-
readonly type:
|
|
601
|
+
readonly type: 'array';
|
|
602
602
|
readonly items: {
|
|
603
|
-
readonly type:
|
|
604
|
-
readonly required: readonly [
|
|
603
|
+
readonly type: 'object';
|
|
604
|
+
readonly required: readonly ['type'];
|
|
605
605
|
readonly properties: {
|
|
606
606
|
readonly type: {
|
|
607
|
-
readonly type:
|
|
607
|
+
readonly type: 'string';
|
|
608
608
|
};
|
|
609
609
|
};
|
|
610
610
|
readonly additionalProperties: false;
|
|
611
611
|
};
|
|
612
612
|
};
|
|
613
613
|
readonly excludes: {
|
|
614
|
-
readonly type:
|
|
614
|
+
readonly type: 'array';
|
|
615
615
|
readonly items: {
|
|
616
|
-
readonly type:
|
|
617
|
-
readonly required: readonly [
|
|
616
|
+
readonly type: 'object';
|
|
617
|
+
readonly required: readonly ['key'];
|
|
618
618
|
readonly properties: {
|
|
619
619
|
readonly key: {
|
|
620
|
-
readonly type:
|
|
620
|
+
readonly type: 'string';
|
|
621
621
|
};
|
|
622
622
|
};
|
|
623
623
|
readonly additionalProperties: false;
|
|
624
624
|
};
|
|
625
625
|
};
|
|
626
626
|
readonly filters: {
|
|
627
|
-
readonly type:
|
|
627
|
+
readonly type: 'array';
|
|
628
628
|
readonly items: {
|
|
629
|
-
readonly type:
|
|
630
|
-
readonly required: readonly [
|
|
629
|
+
readonly type: 'object';
|
|
630
|
+
readonly required: readonly ['property', 'title'];
|
|
631
631
|
readonly properties: {
|
|
632
632
|
readonly property: {
|
|
633
|
-
readonly type:
|
|
633
|
+
readonly type: 'string';
|
|
634
634
|
};
|
|
635
635
|
readonly hide: {
|
|
636
|
-
readonly type:
|
|
636
|
+
readonly type: 'boolean';
|
|
637
637
|
};
|
|
638
638
|
readonly label: {
|
|
639
|
-
readonly type:
|
|
639
|
+
readonly type: 'string';
|
|
640
640
|
};
|
|
641
641
|
readonly options: {
|
|
642
|
-
readonly type:
|
|
642
|
+
readonly type: 'array';
|
|
643
643
|
readonly items: {
|
|
644
|
-
readonly type:
|
|
644
|
+
readonly type: 'string';
|
|
645
645
|
};
|
|
646
646
|
};
|
|
647
647
|
readonly type: {
|
|
648
|
-
readonly type:
|
|
649
|
-
readonly enum: readonly [
|
|
650
|
-
readonly default:
|
|
648
|
+
readonly type: 'string';
|
|
649
|
+
readonly enum: readonly ['select', 'checkboxes', 'date-range'];
|
|
650
|
+
readonly default: 'checkboxes';
|
|
651
651
|
};
|
|
652
652
|
readonly title: {
|
|
653
|
-
readonly type:
|
|
653
|
+
readonly type: 'string';
|
|
654
654
|
};
|
|
655
655
|
readonly titleTranslationKey: {
|
|
656
|
-
readonly type:
|
|
656
|
+
readonly type: 'string';
|
|
657
657
|
};
|
|
658
658
|
readonly parentFilter: {
|
|
659
|
-
readonly type:
|
|
659
|
+
readonly type: 'string';
|
|
660
660
|
};
|
|
661
661
|
readonly valuesMapping: {
|
|
662
|
-
readonly type:
|
|
662
|
+
readonly type: 'object';
|
|
663
663
|
readonly additionalProperties: {
|
|
664
|
-
readonly type:
|
|
664
|
+
readonly type: 'string';
|
|
665
665
|
};
|
|
666
666
|
};
|
|
667
667
|
};
|
|
@@ -669,91 +669,91 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
669
669
|
};
|
|
670
670
|
};
|
|
671
671
|
readonly titleTranslationKey: {
|
|
672
|
-
readonly type:
|
|
672
|
+
readonly type: 'string';
|
|
673
673
|
};
|
|
674
674
|
readonly descriptionTranslationKey: {
|
|
675
|
-
readonly type:
|
|
675
|
+
readonly type: 'string';
|
|
676
676
|
};
|
|
677
677
|
readonly catalogSwitcherLabelTranslationKey: {
|
|
678
|
-
readonly type:
|
|
678
|
+
readonly type: 'string';
|
|
679
679
|
};
|
|
680
680
|
};
|
|
681
681
|
readonly additionalProperties: false;
|
|
682
682
|
};
|
|
683
683
|
readonly services: {
|
|
684
|
-
readonly type:
|
|
684
|
+
readonly type: 'object';
|
|
685
685
|
readonly properties: {
|
|
686
686
|
readonly slug: {
|
|
687
|
-
readonly type:
|
|
687
|
+
readonly type: 'string';
|
|
688
688
|
};
|
|
689
689
|
readonly hide: {
|
|
690
|
-
readonly type:
|
|
690
|
+
readonly type: 'boolean';
|
|
691
691
|
};
|
|
692
692
|
readonly includes: {
|
|
693
|
-
readonly type:
|
|
693
|
+
readonly type: 'array';
|
|
694
694
|
readonly items: {
|
|
695
|
-
readonly type:
|
|
696
|
-
readonly required: readonly [
|
|
695
|
+
readonly type: 'object';
|
|
696
|
+
readonly required: readonly ['type'];
|
|
697
697
|
readonly properties: {
|
|
698
698
|
readonly type: {
|
|
699
|
-
readonly type:
|
|
699
|
+
readonly type: 'string';
|
|
700
700
|
};
|
|
701
701
|
};
|
|
702
702
|
readonly additionalProperties: false;
|
|
703
703
|
};
|
|
704
704
|
};
|
|
705
705
|
readonly excludes: {
|
|
706
|
-
readonly type:
|
|
706
|
+
readonly type: 'array';
|
|
707
707
|
readonly items: {
|
|
708
|
-
readonly type:
|
|
709
|
-
readonly required: readonly [
|
|
708
|
+
readonly type: 'object';
|
|
709
|
+
readonly required: readonly ['key'];
|
|
710
710
|
readonly properties: {
|
|
711
711
|
readonly key: {
|
|
712
|
-
readonly type:
|
|
712
|
+
readonly type: 'string';
|
|
713
713
|
};
|
|
714
714
|
};
|
|
715
715
|
readonly additionalProperties: false;
|
|
716
716
|
};
|
|
717
717
|
};
|
|
718
718
|
readonly filters: {
|
|
719
|
-
readonly type:
|
|
719
|
+
readonly type: 'array';
|
|
720
720
|
readonly items: {
|
|
721
|
-
readonly type:
|
|
722
|
-
readonly required: readonly [
|
|
721
|
+
readonly type: 'object';
|
|
722
|
+
readonly required: readonly ['property', 'title'];
|
|
723
723
|
readonly properties: {
|
|
724
724
|
readonly property: {
|
|
725
|
-
readonly type:
|
|
725
|
+
readonly type: 'string';
|
|
726
726
|
};
|
|
727
727
|
readonly hide: {
|
|
728
|
-
readonly type:
|
|
728
|
+
readonly type: 'boolean';
|
|
729
729
|
};
|
|
730
730
|
readonly label: {
|
|
731
|
-
readonly type:
|
|
731
|
+
readonly type: 'string';
|
|
732
732
|
};
|
|
733
733
|
readonly options: {
|
|
734
|
-
readonly type:
|
|
734
|
+
readonly type: 'array';
|
|
735
735
|
readonly items: {
|
|
736
|
-
readonly type:
|
|
736
|
+
readonly type: 'string';
|
|
737
737
|
};
|
|
738
738
|
};
|
|
739
739
|
readonly type: {
|
|
740
|
-
readonly type:
|
|
741
|
-
readonly enum: readonly [
|
|
742
|
-
readonly default:
|
|
740
|
+
readonly type: 'string';
|
|
741
|
+
readonly enum: readonly ['select', 'checkboxes', 'date-range'];
|
|
742
|
+
readonly default: 'checkboxes';
|
|
743
743
|
};
|
|
744
744
|
readonly title: {
|
|
745
|
-
readonly type:
|
|
745
|
+
readonly type: 'string';
|
|
746
746
|
};
|
|
747
747
|
readonly titleTranslationKey: {
|
|
748
|
-
readonly type:
|
|
748
|
+
readonly type: 'string';
|
|
749
749
|
};
|
|
750
750
|
readonly parentFilter: {
|
|
751
|
-
readonly type:
|
|
751
|
+
readonly type: 'string';
|
|
752
752
|
};
|
|
753
753
|
readonly valuesMapping: {
|
|
754
|
-
readonly type:
|
|
754
|
+
readonly type: 'object';
|
|
755
755
|
readonly additionalProperties: {
|
|
756
|
-
readonly type:
|
|
756
|
+
readonly type: 'string';
|
|
757
757
|
};
|
|
758
758
|
};
|
|
759
759
|
};
|
|
@@ -761,91 +761,91 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
761
761
|
};
|
|
762
762
|
};
|
|
763
763
|
readonly titleTranslationKey: {
|
|
764
|
-
readonly type:
|
|
764
|
+
readonly type: 'string';
|
|
765
765
|
};
|
|
766
766
|
readonly descriptionTranslationKey: {
|
|
767
|
-
readonly type:
|
|
767
|
+
readonly type: 'string';
|
|
768
768
|
};
|
|
769
769
|
readonly catalogSwitcherLabelTranslationKey: {
|
|
770
|
-
readonly type:
|
|
770
|
+
readonly type: 'string';
|
|
771
771
|
};
|
|
772
772
|
};
|
|
773
773
|
readonly additionalProperties: false;
|
|
774
774
|
};
|
|
775
775
|
readonly domains: {
|
|
776
|
-
readonly type:
|
|
776
|
+
readonly type: 'object';
|
|
777
777
|
readonly properties: {
|
|
778
778
|
readonly slug: {
|
|
779
|
-
readonly type:
|
|
779
|
+
readonly type: 'string';
|
|
780
780
|
};
|
|
781
781
|
readonly hide: {
|
|
782
|
-
readonly type:
|
|
782
|
+
readonly type: 'boolean';
|
|
783
783
|
};
|
|
784
784
|
readonly includes: {
|
|
785
|
-
readonly type:
|
|
785
|
+
readonly type: 'array';
|
|
786
786
|
readonly items: {
|
|
787
|
-
readonly type:
|
|
788
|
-
readonly required: readonly [
|
|
787
|
+
readonly type: 'object';
|
|
788
|
+
readonly required: readonly ['type'];
|
|
789
789
|
readonly properties: {
|
|
790
790
|
readonly type: {
|
|
791
|
-
readonly type:
|
|
791
|
+
readonly type: 'string';
|
|
792
792
|
};
|
|
793
793
|
};
|
|
794
794
|
readonly additionalProperties: false;
|
|
795
795
|
};
|
|
796
796
|
};
|
|
797
797
|
readonly excludes: {
|
|
798
|
-
readonly type:
|
|
798
|
+
readonly type: 'array';
|
|
799
799
|
readonly items: {
|
|
800
|
-
readonly type:
|
|
801
|
-
readonly required: readonly [
|
|
800
|
+
readonly type: 'object';
|
|
801
|
+
readonly required: readonly ['key'];
|
|
802
802
|
readonly properties: {
|
|
803
803
|
readonly key: {
|
|
804
|
-
readonly type:
|
|
804
|
+
readonly type: 'string';
|
|
805
805
|
};
|
|
806
806
|
};
|
|
807
807
|
readonly additionalProperties: false;
|
|
808
808
|
};
|
|
809
809
|
};
|
|
810
810
|
readonly filters: {
|
|
811
|
-
readonly type:
|
|
811
|
+
readonly type: 'array';
|
|
812
812
|
readonly items: {
|
|
813
|
-
readonly type:
|
|
814
|
-
readonly required: readonly [
|
|
813
|
+
readonly type: 'object';
|
|
814
|
+
readonly required: readonly ['property', 'title'];
|
|
815
815
|
readonly properties: {
|
|
816
816
|
readonly property: {
|
|
817
|
-
readonly type:
|
|
817
|
+
readonly type: 'string';
|
|
818
818
|
};
|
|
819
819
|
readonly hide: {
|
|
820
|
-
readonly type:
|
|
820
|
+
readonly type: 'boolean';
|
|
821
821
|
};
|
|
822
822
|
readonly label: {
|
|
823
|
-
readonly type:
|
|
823
|
+
readonly type: 'string';
|
|
824
824
|
};
|
|
825
825
|
readonly options: {
|
|
826
|
-
readonly type:
|
|
826
|
+
readonly type: 'array';
|
|
827
827
|
readonly items: {
|
|
828
|
-
readonly type:
|
|
828
|
+
readonly type: 'string';
|
|
829
829
|
};
|
|
830
830
|
};
|
|
831
831
|
readonly type: {
|
|
832
|
-
readonly type:
|
|
833
|
-
readonly enum: readonly [
|
|
834
|
-
readonly default:
|
|
832
|
+
readonly type: 'string';
|
|
833
|
+
readonly enum: readonly ['select', 'checkboxes', 'date-range'];
|
|
834
|
+
readonly default: 'checkboxes';
|
|
835
835
|
};
|
|
836
836
|
readonly title: {
|
|
837
|
-
readonly type:
|
|
837
|
+
readonly type: 'string';
|
|
838
838
|
};
|
|
839
839
|
readonly titleTranslationKey: {
|
|
840
|
-
readonly type:
|
|
840
|
+
readonly type: 'string';
|
|
841
841
|
};
|
|
842
842
|
readonly parentFilter: {
|
|
843
|
-
readonly type:
|
|
843
|
+
readonly type: 'string';
|
|
844
844
|
};
|
|
845
845
|
readonly valuesMapping: {
|
|
846
|
-
readonly type:
|
|
846
|
+
readonly type: 'object';
|
|
847
847
|
readonly additionalProperties: {
|
|
848
|
-
readonly type:
|
|
848
|
+
readonly type: 'string';
|
|
849
849
|
};
|
|
850
850
|
};
|
|
851
851
|
};
|
|
@@ -853,91 +853,91 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
853
853
|
};
|
|
854
854
|
};
|
|
855
855
|
readonly titleTranslationKey: {
|
|
856
|
-
readonly type:
|
|
856
|
+
readonly type: 'string';
|
|
857
857
|
};
|
|
858
858
|
readonly descriptionTranslationKey: {
|
|
859
|
-
readonly type:
|
|
859
|
+
readonly type: 'string';
|
|
860
860
|
};
|
|
861
861
|
readonly catalogSwitcherLabelTranslationKey: {
|
|
862
|
-
readonly type:
|
|
862
|
+
readonly type: 'string';
|
|
863
863
|
};
|
|
864
864
|
};
|
|
865
865
|
readonly additionalProperties: false;
|
|
866
866
|
};
|
|
867
867
|
readonly teams: {
|
|
868
|
-
readonly type:
|
|
868
|
+
readonly type: 'object';
|
|
869
869
|
readonly properties: {
|
|
870
870
|
readonly slug: {
|
|
871
|
-
readonly type:
|
|
871
|
+
readonly type: 'string';
|
|
872
872
|
};
|
|
873
873
|
readonly hide: {
|
|
874
|
-
readonly type:
|
|
874
|
+
readonly type: 'boolean';
|
|
875
875
|
};
|
|
876
876
|
readonly includes: {
|
|
877
|
-
readonly type:
|
|
877
|
+
readonly type: 'array';
|
|
878
878
|
readonly items: {
|
|
879
|
-
readonly type:
|
|
880
|
-
readonly required: readonly [
|
|
879
|
+
readonly type: 'object';
|
|
880
|
+
readonly required: readonly ['type'];
|
|
881
881
|
readonly properties: {
|
|
882
882
|
readonly type: {
|
|
883
|
-
readonly type:
|
|
883
|
+
readonly type: 'string';
|
|
884
884
|
};
|
|
885
885
|
};
|
|
886
886
|
readonly additionalProperties: false;
|
|
887
887
|
};
|
|
888
888
|
};
|
|
889
889
|
readonly excludes: {
|
|
890
|
-
readonly type:
|
|
890
|
+
readonly type: 'array';
|
|
891
891
|
readonly items: {
|
|
892
|
-
readonly type:
|
|
893
|
-
readonly required: readonly [
|
|
892
|
+
readonly type: 'object';
|
|
893
|
+
readonly required: readonly ['key'];
|
|
894
894
|
readonly properties: {
|
|
895
895
|
readonly key: {
|
|
896
|
-
readonly type:
|
|
896
|
+
readonly type: 'string';
|
|
897
897
|
};
|
|
898
898
|
};
|
|
899
899
|
readonly additionalProperties: false;
|
|
900
900
|
};
|
|
901
901
|
};
|
|
902
902
|
readonly filters: {
|
|
903
|
-
readonly type:
|
|
903
|
+
readonly type: 'array';
|
|
904
904
|
readonly items: {
|
|
905
|
-
readonly type:
|
|
906
|
-
readonly required: readonly [
|
|
905
|
+
readonly type: 'object';
|
|
906
|
+
readonly required: readonly ['property', 'title'];
|
|
907
907
|
readonly properties: {
|
|
908
908
|
readonly property: {
|
|
909
|
-
readonly type:
|
|
909
|
+
readonly type: 'string';
|
|
910
910
|
};
|
|
911
911
|
readonly hide: {
|
|
912
|
-
readonly type:
|
|
912
|
+
readonly type: 'boolean';
|
|
913
913
|
};
|
|
914
914
|
readonly label: {
|
|
915
|
-
readonly type:
|
|
915
|
+
readonly type: 'string';
|
|
916
916
|
};
|
|
917
917
|
readonly options: {
|
|
918
|
-
readonly type:
|
|
918
|
+
readonly type: 'array';
|
|
919
919
|
readonly items: {
|
|
920
|
-
readonly type:
|
|
920
|
+
readonly type: 'string';
|
|
921
921
|
};
|
|
922
922
|
};
|
|
923
923
|
readonly type: {
|
|
924
|
-
readonly type:
|
|
925
|
-
readonly enum: readonly [
|
|
926
|
-
readonly default:
|
|
924
|
+
readonly type: 'string';
|
|
925
|
+
readonly enum: readonly ['select', 'checkboxes', 'date-range'];
|
|
926
|
+
readonly default: 'checkboxes';
|
|
927
927
|
};
|
|
928
928
|
readonly title: {
|
|
929
|
-
readonly type:
|
|
929
|
+
readonly type: 'string';
|
|
930
930
|
};
|
|
931
931
|
readonly titleTranslationKey: {
|
|
932
|
-
readonly type:
|
|
932
|
+
readonly type: 'string';
|
|
933
933
|
};
|
|
934
934
|
readonly parentFilter: {
|
|
935
|
-
readonly type:
|
|
935
|
+
readonly type: 'string';
|
|
936
936
|
};
|
|
937
937
|
readonly valuesMapping: {
|
|
938
|
-
readonly type:
|
|
938
|
+
readonly type: 'object';
|
|
939
939
|
readonly additionalProperties: {
|
|
940
|
-
readonly type:
|
|
940
|
+
readonly type: 'string';
|
|
941
941
|
};
|
|
942
942
|
};
|
|
943
943
|
};
|
|
@@ -945,91 +945,91 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
945
945
|
};
|
|
946
946
|
};
|
|
947
947
|
readonly titleTranslationKey: {
|
|
948
|
-
readonly type:
|
|
948
|
+
readonly type: 'string';
|
|
949
949
|
};
|
|
950
950
|
readonly descriptionTranslationKey: {
|
|
951
|
-
readonly type:
|
|
951
|
+
readonly type: 'string';
|
|
952
952
|
};
|
|
953
953
|
readonly catalogSwitcherLabelTranslationKey: {
|
|
954
|
-
readonly type:
|
|
954
|
+
readonly type: 'string';
|
|
955
955
|
};
|
|
956
956
|
};
|
|
957
957
|
readonly additionalProperties: false;
|
|
958
958
|
};
|
|
959
959
|
readonly users: {
|
|
960
|
-
readonly type:
|
|
960
|
+
readonly type: 'object';
|
|
961
961
|
readonly properties: {
|
|
962
962
|
readonly slug: {
|
|
963
|
-
readonly type:
|
|
963
|
+
readonly type: 'string';
|
|
964
964
|
};
|
|
965
965
|
readonly hide: {
|
|
966
|
-
readonly type:
|
|
966
|
+
readonly type: 'boolean';
|
|
967
967
|
};
|
|
968
968
|
readonly includes: {
|
|
969
|
-
readonly type:
|
|
969
|
+
readonly type: 'array';
|
|
970
970
|
readonly items: {
|
|
971
|
-
readonly type:
|
|
972
|
-
readonly required: readonly [
|
|
971
|
+
readonly type: 'object';
|
|
972
|
+
readonly required: readonly ['type'];
|
|
973
973
|
readonly properties: {
|
|
974
974
|
readonly type: {
|
|
975
|
-
readonly type:
|
|
975
|
+
readonly type: 'string';
|
|
976
976
|
};
|
|
977
977
|
};
|
|
978
978
|
readonly additionalProperties: false;
|
|
979
979
|
};
|
|
980
980
|
};
|
|
981
981
|
readonly excludes: {
|
|
982
|
-
readonly type:
|
|
982
|
+
readonly type: 'array';
|
|
983
983
|
readonly items: {
|
|
984
|
-
readonly type:
|
|
985
|
-
readonly required: readonly [
|
|
984
|
+
readonly type: 'object';
|
|
985
|
+
readonly required: readonly ['key'];
|
|
986
986
|
readonly properties: {
|
|
987
987
|
readonly key: {
|
|
988
|
-
readonly type:
|
|
988
|
+
readonly type: 'string';
|
|
989
989
|
};
|
|
990
990
|
};
|
|
991
991
|
readonly additionalProperties: false;
|
|
992
992
|
};
|
|
993
993
|
};
|
|
994
994
|
readonly filters: {
|
|
995
|
-
readonly type:
|
|
995
|
+
readonly type: 'array';
|
|
996
996
|
readonly items: {
|
|
997
|
-
readonly type:
|
|
998
|
-
readonly required: readonly [
|
|
997
|
+
readonly type: 'object';
|
|
998
|
+
readonly required: readonly ['property', 'title'];
|
|
999
999
|
readonly properties: {
|
|
1000
1000
|
readonly property: {
|
|
1001
|
-
readonly type:
|
|
1001
|
+
readonly type: 'string';
|
|
1002
1002
|
};
|
|
1003
1003
|
readonly hide: {
|
|
1004
|
-
readonly type:
|
|
1004
|
+
readonly type: 'boolean';
|
|
1005
1005
|
};
|
|
1006
1006
|
readonly label: {
|
|
1007
|
-
readonly type:
|
|
1007
|
+
readonly type: 'string';
|
|
1008
1008
|
};
|
|
1009
1009
|
readonly options: {
|
|
1010
|
-
readonly type:
|
|
1010
|
+
readonly type: 'array';
|
|
1011
1011
|
readonly items: {
|
|
1012
|
-
readonly type:
|
|
1012
|
+
readonly type: 'string';
|
|
1013
1013
|
};
|
|
1014
1014
|
};
|
|
1015
1015
|
readonly type: {
|
|
1016
|
-
readonly type:
|
|
1017
|
-
readonly enum: readonly [
|
|
1018
|
-
readonly default:
|
|
1016
|
+
readonly type: 'string';
|
|
1017
|
+
readonly enum: readonly ['select', 'checkboxes', 'date-range'];
|
|
1018
|
+
readonly default: 'checkboxes';
|
|
1019
1019
|
};
|
|
1020
1020
|
readonly title: {
|
|
1021
|
-
readonly type:
|
|
1021
|
+
readonly type: 'string';
|
|
1022
1022
|
};
|
|
1023
1023
|
readonly titleTranslationKey: {
|
|
1024
|
-
readonly type:
|
|
1024
|
+
readonly type: 'string';
|
|
1025
1025
|
};
|
|
1026
1026
|
readonly parentFilter: {
|
|
1027
|
-
readonly type:
|
|
1027
|
+
readonly type: 'string';
|
|
1028
1028
|
};
|
|
1029
1029
|
readonly valuesMapping: {
|
|
1030
|
-
readonly type:
|
|
1030
|
+
readonly type: 'object';
|
|
1031
1031
|
readonly additionalProperties: {
|
|
1032
|
-
readonly type:
|
|
1032
|
+
readonly type: 'string';
|
|
1033
1033
|
};
|
|
1034
1034
|
};
|
|
1035
1035
|
};
|
|
@@ -1037,91 +1037,91 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
1037
1037
|
};
|
|
1038
1038
|
};
|
|
1039
1039
|
readonly titleTranslationKey: {
|
|
1040
|
-
readonly type:
|
|
1040
|
+
readonly type: 'string';
|
|
1041
1041
|
};
|
|
1042
1042
|
readonly descriptionTranslationKey: {
|
|
1043
|
-
readonly type:
|
|
1043
|
+
readonly type: 'string';
|
|
1044
1044
|
};
|
|
1045
1045
|
readonly catalogSwitcherLabelTranslationKey: {
|
|
1046
|
-
readonly type:
|
|
1046
|
+
readonly type: 'string';
|
|
1047
1047
|
};
|
|
1048
1048
|
};
|
|
1049
1049
|
readonly additionalProperties: false;
|
|
1050
1050
|
};
|
|
1051
1051
|
readonly apiDescriptions: {
|
|
1052
|
-
readonly type:
|
|
1052
|
+
readonly type: 'object';
|
|
1053
1053
|
readonly properties: {
|
|
1054
1054
|
readonly slug: {
|
|
1055
|
-
readonly type:
|
|
1055
|
+
readonly type: 'string';
|
|
1056
1056
|
};
|
|
1057
1057
|
readonly hide: {
|
|
1058
|
-
readonly type:
|
|
1058
|
+
readonly type: 'boolean';
|
|
1059
1059
|
};
|
|
1060
1060
|
readonly includes: {
|
|
1061
|
-
readonly type:
|
|
1061
|
+
readonly type: 'array';
|
|
1062
1062
|
readonly items: {
|
|
1063
|
-
readonly type:
|
|
1064
|
-
readonly required: readonly [
|
|
1063
|
+
readonly type: 'object';
|
|
1064
|
+
readonly required: readonly ['type'];
|
|
1065
1065
|
readonly properties: {
|
|
1066
1066
|
readonly type: {
|
|
1067
|
-
readonly type:
|
|
1067
|
+
readonly type: 'string';
|
|
1068
1068
|
};
|
|
1069
1069
|
};
|
|
1070
1070
|
readonly additionalProperties: false;
|
|
1071
1071
|
};
|
|
1072
1072
|
};
|
|
1073
1073
|
readonly excludes: {
|
|
1074
|
-
readonly type:
|
|
1074
|
+
readonly type: 'array';
|
|
1075
1075
|
readonly items: {
|
|
1076
|
-
readonly type:
|
|
1077
|
-
readonly required: readonly [
|
|
1076
|
+
readonly type: 'object';
|
|
1077
|
+
readonly required: readonly ['key'];
|
|
1078
1078
|
readonly properties: {
|
|
1079
1079
|
readonly key: {
|
|
1080
|
-
readonly type:
|
|
1080
|
+
readonly type: 'string';
|
|
1081
1081
|
};
|
|
1082
1082
|
};
|
|
1083
1083
|
readonly additionalProperties: false;
|
|
1084
1084
|
};
|
|
1085
1085
|
};
|
|
1086
1086
|
readonly filters: {
|
|
1087
|
-
readonly type:
|
|
1087
|
+
readonly type: 'array';
|
|
1088
1088
|
readonly items: {
|
|
1089
|
-
readonly type:
|
|
1090
|
-
readonly required: readonly [
|
|
1089
|
+
readonly type: 'object';
|
|
1090
|
+
readonly required: readonly ['property', 'title'];
|
|
1091
1091
|
readonly properties: {
|
|
1092
1092
|
readonly property: {
|
|
1093
|
-
readonly type:
|
|
1093
|
+
readonly type: 'string';
|
|
1094
1094
|
};
|
|
1095
1095
|
readonly hide: {
|
|
1096
|
-
readonly type:
|
|
1096
|
+
readonly type: 'boolean';
|
|
1097
1097
|
};
|
|
1098
1098
|
readonly label: {
|
|
1099
|
-
readonly type:
|
|
1099
|
+
readonly type: 'string';
|
|
1100
1100
|
};
|
|
1101
1101
|
readonly options: {
|
|
1102
|
-
readonly type:
|
|
1102
|
+
readonly type: 'array';
|
|
1103
1103
|
readonly items: {
|
|
1104
|
-
readonly type:
|
|
1104
|
+
readonly type: 'string';
|
|
1105
1105
|
};
|
|
1106
1106
|
};
|
|
1107
1107
|
readonly type: {
|
|
1108
|
-
readonly type:
|
|
1109
|
-
readonly enum: readonly [
|
|
1110
|
-
readonly default:
|
|
1108
|
+
readonly type: 'string';
|
|
1109
|
+
readonly enum: readonly ['select', 'checkboxes', 'date-range'];
|
|
1110
|
+
readonly default: 'checkboxes';
|
|
1111
1111
|
};
|
|
1112
1112
|
readonly title: {
|
|
1113
|
-
readonly type:
|
|
1113
|
+
readonly type: 'string';
|
|
1114
1114
|
};
|
|
1115
1115
|
readonly titleTranslationKey: {
|
|
1116
|
-
readonly type:
|
|
1116
|
+
readonly type: 'string';
|
|
1117
1117
|
};
|
|
1118
1118
|
readonly parentFilter: {
|
|
1119
|
-
readonly type:
|
|
1119
|
+
readonly type: 'string';
|
|
1120
1120
|
};
|
|
1121
1121
|
readonly valuesMapping: {
|
|
1122
|
-
readonly type:
|
|
1122
|
+
readonly type: 'object';
|
|
1123
1123
|
readonly additionalProperties: {
|
|
1124
|
-
readonly type:
|
|
1124
|
+
readonly type: 'string';
|
|
1125
1125
|
};
|
|
1126
1126
|
};
|
|
1127
1127
|
};
|
|
@@ -1129,91 +1129,91 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
1129
1129
|
};
|
|
1130
1130
|
};
|
|
1131
1131
|
readonly titleTranslationKey: {
|
|
1132
|
-
readonly type:
|
|
1132
|
+
readonly type: 'string';
|
|
1133
1133
|
};
|
|
1134
1134
|
readonly descriptionTranslationKey: {
|
|
1135
|
-
readonly type:
|
|
1135
|
+
readonly type: 'string';
|
|
1136
1136
|
};
|
|
1137
1137
|
readonly catalogSwitcherLabelTranslationKey: {
|
|
1138
|
-
readonly type:
|
|
1138
|
+
readonly type: 'string';
|
|
1139
1139
|
};
|
|
1140
1140
|
};
|
|
1141
1141
|
readonly additionalProperties: false;
|
|
1142
1142
|
};
|
|
1143
1143
|
readonly dataSchemas: {
|
|
1144
|
-
readonly type:
|
|
1144
|
+
readonly type: 'object';
|
|
1145
1145
|
readonly properties: {
|
|
1146
1146
|
readonly slug: {
|
|
1147
|
-
readonly type:
|
|
1147
|
+
readonly type: 'string';
|
|
1148
1148
|
};
|
|
1149
1149
|
readonly hide: {
|
|
1150
|
-
readonly type:
|
|
1150
|
+
readonly type: 'boolean';
|
|
1151
1151
|
};
|
|
1152
1152
|
readonly includes: {
|
|
1153
|
-
readonly type:
|
|
1153
|
+
readonly type: 'array';
|
|
1154
1154
|
readonly items: {
|
|
1155
|
-
readonly type:
|
|
1156
|
-
readonly required: readonly [
|
|
1155
|
+
readonly type: 'object';
|
|
1156
|
+
readonly required: readonly ['type'];
|
|
1157
1157
|
readonly properties: {
|
|
1158
1158
|
readonly type: {
|
|
1159
|
-
readonly type:
|
|
1159
|
+
readonly type: 'string';
|
|
1160
1160
|
};
|
|
1161
1161
|
};
|
|
1162
1162
|
readonly additionalProperties: false;
|
|
1163
1163
|
};
|
|
1164
1164
|
};
|
|
1165
1165
|
readonly excludes: {
|
|
1166
|
-
readonly type:
|
|
1166
|
+
readonly type: 'array';
|
|
1167
1167
|
readonly items: {
|
|
1168
|
-
readonly type:
|
|
1169
|
-
readonly required: readonly [
|
|
1168
|
+
readonly type: 'object';
|
|
1169
|
+
readonly required: readonly ['key'];
|
|
1170
1170
|
readonly properties: {
|
|
1171
1171
|
readonly key: {
|
|
1172
|
-
readonly type:
|
|
1172
|
+
readonly type: 'string';
|
|
1173
1173
|
};
|
|
1174
1174
|
};
|
|
1175
1175
|
readonly additionalProperties: false;
|
|
1176
1176
|
};
|
|
1177
1177
|
};
|
|
1178
1178
|
readonly filters: {
|
|
1179
|
-
readonly type:
|
|
1179
|
+
readonly type: 'array';
|
|
1180
1180
|
readonly items: {
|
|
1181
|
-
readonly type:
|
|
1182
|
-
readonly required: readonly [
|
|
1181
|
+
readonly type: 'object';
|
|
1182
|
+
readonly required: readonly ['property', 'title'];
|
|
1183
1183
|
readonly properties: {
|
|
1184
1184
|
readonly property: {
|
|
1185
|
-
readonly type:
|
|
1185
|
+
readonly type: 'string';
|
|
1186
1186
|
};
|
|
1187
1187
|
readonly hide: {
|
|
1188
|
-
readonly type:
|
|
1188
|
+
readonly type: 'boolean';
|
|
1189
1189
|
};
|
|
1190
1190
|
readonly label: {
|
|
1191
|
-
readonly type:
|
|
1191
|
+
readonly type: 'string';
|
|
1192
1192
|
};
|
|
1193
1193
|
readonly options: {
|
|
1194
|
-
readonly type:
|
|
1194
|
+
readonly type: 'array';
|
|
1195
1195
|
readonly items: {
|
|
1196
|
-
readonly type:
|
|
1196
|
+
readonly type: 'string';
|
|
1197
1197
|
};
|
|
1198
1198
|
};
|
|
1199
1199
|
readonly type: {
|
|
1200
|
-
readonly type:
|
|
1201
|
-
readonly enum: readonly [
|
|
1202
|
-
readonly default:
|
|
1200
|
+
readonly type: 'string';
|
|
1201
|
+
readonly enum: readonly ['select', 'checkboxes', 'date-range'];
|
|
1202
|
+
readonly default: 'checkboxes';
|
|
1203
1203
|
};
|
|
1204
1204
|
readonly title: {
|
|
1205
|
-
readonly type:
|
|
1205
|
+
readonly type: 'string';
|
|
1206
1206
|
};
|
|
1207
1207
|
readonly titleTranslationKey: {
|
|
1208
|
-
readonly type:
|
|
1208
|
+
readonly type: 'string';
|
|
1209
1209
|
};
|
|
1210
1210
|
readonly parentFilter: {
|
|
1211
|
-
readonly type:
|
|
1211
|
+
readonly type: 'string';
|
|
1212
1212
|
};
|
|
1213
1213
|
readonly valuesMapping: {
|
|
1214
|
-
readonly type:
|
|
1214
|
+
readonly type: 'object';
|
|
1215
1215
|
readonly additionalProperties: {
|
|
1216
|
-
readonly type:
|
|
1216
|
+
readonly type: 'string';
|
|
1217
1217
|
};
|
|
1218
1218
|
};
|
|
1219
1219
|
};
|
|
@@ -1221,91 +1221,91 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
1221
1221
|
};
|
|
1222
1222
|
};
|
|
1223
1223
|
readonly titleTranslationKey: {
|
|
1224
|
-
readonly type:
|
|
1224
|
+
readonly type: 'string';
|
|
1225
1225
|
};
|
|
1226
1226
|
readonly descriptionTranslationKey: {
|
|
1227
|
-
readonly type:
|
|
1227
|
+
readonly type: 'string';
|
|
1228
1228
|
};
|
|
1229
1229
|
readonly catalogSwitcherLabelTranslationKey: {
|
|
1230
|
-
readonly type:
|
|
1230
|
+
readonly type: 'string';
|
|
1231
1231
|
};
|
|
1232
1232
|
};
|
|
1233
1233
|
readonly additionalProperties: false;
|
|
1234
1234
|
};
|
|
1235
1235
|
readonly apiOperations: {
|
|
1236
|
-
readonly type:
|
|
1236
|
+
readonly type: 'object';
|
|
1237
1237
|
readonly properties: {
|
|
1238
1238
|
readonly slug: {
|
|
1239
|
-
readonly type:
|
|
1239
|
+
readonly type: 'string';
|
|
1240
1240
|
};
|
|
1241
1241
|
readonly hide: {
|
|
1242
|
-
readonly type:
|
|
1242
|
+
readonly type: 'boolean';
|
|
1243
1243
|
};
|
|
1244
1244
|
readonly includes: {
|
|
1245
|
-
readonly type:
|
|
1245
|
+
readonly type: 'array';
|
|
1246
1246
|
readonly items: {
|
|
1247
|
-
readonly type:
|
|
1248
|
-
readonly required: readonly [
|
|
1247
|
+
readonly type: 'object';
|
|
1248
|
+
readonly required: readonly ['type'];
|
|
1249
1249
|
readonly properties: {
|
|
1250
1250
|
readonly type: {
|
|
1251
|
-
readonly type:
|
|
1251
|
+
readonly type: 'string';
|
|
1252
1252
|
};
|
|
1253
1253
|
};
|
|
1254
1254
|
readonly additionalProperties: false;
|
|
1255
1255
|
};
|
|
1256
1256
|
};
|
|
1257
1257
|
readonly excludes: {
|
|
1258
|
-
readonly type:
|
|
1258
|
+
readonly type: 'array';
|
|
1259
1259
|
readonly items: {
|
|
1260
|
-
readonly type:
|
|
1261
|
-
readonly required: readonly [
|
|
1260
|
+
readonly type: 'object';
|
|
1261
|
+
readonly required: readonly ['key'];
|
|
1262
1262
|
readonly properties: {
|
|
1263
1263
|
readonly key: {
|
|
1264
|
-
readonly type:
|
|
1264
|
+
readonly type: 'string';
|
|
1265
1265
|
};
|
|
1266
1266
|
};
|
|
1267
1267
|
readonly additionalProperties: false;
|
|
1268
1268
|
};
|
|
1269
1269
|
};
|
|
1270
1270
|
readonly filters: {
|
|
1271
|
-
readonly type:
|
|
1271
|
+
readonly type: 'array';
|
|
1272
1272
|
readonly items: {
|
|
1273
|
-
readonly type:
|
|
1274
|
-
readonly required: readonly [
|
|
1273
|
+
readonly type: 'object';
|
|
1274
|
+
readonly required: readonly ['property', 'title'];
|
|
1275
1275
|
readonly properties: {
|
|
1276
1276
|
readonly property: {
|
|
1277
|
-
readonly type:
|
|
1277
|
+
readonly type: 'string';
|
|
1278
1278
|
};
|
|
1279
1279
|
readonly hide: {
|
|
1280
|
-
readonly type:
|
|
1280
|
+
readonly type: 'boolean';
|
|
1281
1281
|
};
|
|
1282
1282
|
readonly label: {
|
|
1283
|
-
readonly type:
|
|
1283
|
+
readonly type: 'string';
|
|
1284
1284
|
};
|
|
1285
1285
|
readonly options: {
|
|
1286
|
-
readonly type:
|
|
1286
|
+
readonly type: 'array';
|
|
1287
1287
|
readonly items: {
|
|
1288
|
-
readonly type:
|
|
1288
|
+
readonly type: 'string';
|
|
1289
1289
|
};
|
|
1290
1290
|
};
|
|
1291
1291
|
readonly type: {
|
|
1292
|
-
readonly type:
|
|
1293
|
-
readonly enum: readonly [
|
|
1294
|
-
readonly default:
|
|
1292
|
+
readonly type: 'string';
|
|
1293
|
+
readonly enum: readonly ['select', 'checkboxes', 'date-range'];
|
|
1294
|
+
readonly default: 'checkboxes';
|
|
1295
1295
|
};
|
|
1296
1296
|
readonly title: {
|
|
1297
|
-
readonly type:
|
|
1297
|
+
readonly type: 'string';
|
|
1298
1298
|
};
|
|
1299
1299
|
readonly titleTranslationKey: {
|
|
1300
|
-
readonly type:
|
|
1300
|
+
readonly type: 'string';
|
|
1301
1301
|
};
|
|
1302
1302
|
readonly parentFilter: {
|
|
1303
|
-
readonly type:
|
|
1303
|
+
readonly type: 'string';
|
|
1304
1304
|
};
|
|
1305
1305
|
readonly valuesMapping: {
|
|
1306
|
-
readonly type:
|
|
1306
|
+
readonly type: 'object';
|
|
1307
1307
|
readonly additionalProperties: {
|
|
1308
|
-
readonly type:
|
|
1308
|
+
readonly type: 'string';
|
|
1309
1309
|
};
|
|
1310
1310
|
};
|
|
1311
1311
|
};
|
|
@@ -1313,92 +1313,92 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
1313
1313
|
};
|
|
1314
1314
|
};
|
|
1315
1315
|
readonly titleTranslationKey: {
|
|
1316
|
-
readonly type:
|
|
1316
|
+
readonly type: 'string';
|
|
1317
1317
|
};
|
|
1318
1318
|
readonly descriptionTranslationKey: {
|
|
1319
|
-
readonly type:
|
|
1319
|
+
readonly type: 'string';
|
|
1320
1320
|
};
|
|
1321
1321
|
readonly catalogSwitcherLabelTranslationKey: {
|
|
1322
|
-
readonly type:
|
|
1322
|
+
readonly type: 'string';
|
|
1323
1323
|
};
|
|
1324
1324
|
};
|
|
1325
1325
|
readonly additionalProperties: false;
|
|
1326
1326
|
};
|
|
1327
1327
|
};
|
|
1328
1328
|
readonly additionalProperties: {
|
|
1329
|
-
readonly type:
|
|
1329
|
+
readonly type: 'object';
|
|
1330
1330
|
readonly properties: {
|
|
1331
1331
|
readonly slug: {
|
|
1332
|
-
readonly type:
|
|
1332
|
+
readonly type: 'string';
|
|
1333
1333
|
};
|
|
1334
1334
|
readonly hide: {
|
|
1335
|
-
readonly type:
|
|
1335
|
+
readonly type: 'boolean';
|
|
1336
1336
|
};
|
|
1337
1337
|
readonly includes: {
|
|
1338
|
-
readonly type:
|
|
1338
|
+
readonly type: 'array';
|
|
1339
1339
|
readonly items: {
|
|
1340
|
-
readonly type:
|
|
1341
|
-
readonly required: readonly [
|
|
1340
|
+
readonly type: 'object';
|
|
1341
|
+
readonly required: readonly ['type'];
|
|
1342
1342
|
readonly properties: {
|
|
1343
1343
|
readonly type: {
|
|
1344
|
-
readonly type:
|
|
1344
|
+
readonly type: 'string';
|
|
1345
1345
|
};
|
|
1346
1346
|
};
|
|
1347
1347
|
readonly additionalProperties: false;
|
|
1348
1348
|
};
|
|
1349
1349
|
};
|
|
1350
1350
|
readonly excludes: {
|
|
1351
|
-
readonly type:
|
|
1351
|
+
readonly type: 'array';
|
|
1352
1352
|
readonly items: {
|
|
1353
|
-
readonly type:
|
|
1354
|
-
readonly required: readonly [
|
|
1353
|
+
readonly type: 'object';
|
|
1354
|
+
readonly required: readonly ['key'];
|
|
1355
1355
|
readonly properties: {
|
|
1356
1356
|
readonly key: {
|
|
1357
|
-
readonly type:
|
|
1357
|
+
readonly type: 'string';
|
|
1358
1358
|
};
|
|
1359
1359
|
};
|
|
1360
1360
|
readonly additionalProperties: false;
|
|
1361
1361
|
};
|
|
1362
1362
|
};
|
|
1363
1363
|
readonly filters: {
|
|
1364
|
-
readonly type:
|
|
1364
|
+
readonly type: 'array';
|
|
1365
1365
|
readonly items: {
|
|
1366
|
-
readonly type:
|
|
1367
|
-
readonly required: readonly [
|
|
1366
|
+
readonly type: 'object';
|
|
1367
|
+
readonly required: readonly ['property', 'title'];
|
|
1368
1368
|
readonly properties: {
|
|
1369
1369
|
readonly property: {
|
|
1370
|
-
readonly type:
|
|
1370
|
+
readonly type: 'string';
|
|
1371
1371
|
};
|
|
1372
1372
|
readonly hide: {
|
|
1373
|
-
readonly type:
|
|
1373
|
+
readonly type: 'boolean';
|
|
1374
1374
|
};
|
|
1375
1375
|
readonly label: {
|
|
1376
|
-
readonly type:
|
|
1376
|
+
readonly type: 'string';
|
|
1377
1377
|
};
|
|
1378
1378
|
readonly options: {
|
|
1379
|
-
readonly type:
|
|
1379
|
+
readonly type: 'array';
|
|
1380
1380
|
readonly items: {
|
|
1381
|
-
readonly type:
|
|
1381
|
+
readonly type: 'string';
|
|
1382
1382
|
};
|
|
1383
1383
|
};
|
|
1384
1384
|
readonly type: {
|
|
1385
|
-
readonly type:
|
|
1386
|
-
readonly enum: readonly [
|
|
1387
|
-
readonly default:
|
|
1385
|
+
readonly type: 'string';
|
|
1386
|
+
readonly enum: readonly ['select', 'checkboxes', 'date-range'];
|
|
1387
|
+
readonly default: 'checkboxes';
|
|
1388
1388
|
};
|
|
1389
1389
|
readonly title: {
|
|
1390
|
-
readonly type:
|
|
1390
|
+
readonly type: 'string';
|
|
1391
1391
|
};
|
|
1392
1392
|
readonly titleTranslationKey: {
|
|
1393
|
-
readonly type:
|
|
1393
|
+
readonly type: 'string';
|
|
1394
1394
|
};
|
|
1395
1395
|
readonly parentFilter: {
|
|
1396
|
-
readonly type:
|
|
1396
|
+
readonly type: 'string';
|
|
1397
1397
|
};
|
|
1398
1398
|
readonly valuesMapping: {
|
|
1399
|
-
readonly type:
|
|
1399
|
+
readonly type: 'object';
|
|
1400
1400
|
readonly additionalProperties: {
|
|
1401
|
-
readonly type:
|
|
1401
|
+
readonly type: 'string';
|
|
1402
1402
|
};
|
|
1403
1403
|
};
|
|
1404
1404
|
};
|
|
@@ -1406,13 +1406,13 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
1406
1406
|
};
|
|
1407
1407
|
};
|
|
1408
1408
|
readonly titleTranslationKey: {
|
|
1409
|
-
readonly type:
|
|
1409
|
+
readonly type: 'string';
|
|
1410
1410
|
};
|
|
1411
1411
|
readonly descriptionTranslationKey: {
|
|
1412
|
-
readonly type:
|
|
1412
|
+
readonly type: 'string';
|
|
1413
1413
|
};
|
|
1414
1414
|
readonly catalogSwitcherLabelTranslationKey: {
|
|
1415
|
-
readonly type:
|
|
1415
|
+
readonly type: 'string';
|
|
1416
1416
|
};
|
|
1417
1417
|
};
|
|
1418
1418
|
readonly additionalProperties: false;
|