@redocly/config 0.41.2 → 0.41.4
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 +69 -18
- 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 +294 -78
- package/lib/scorecards-config-schema.d.ts +138 -36
- package/lib/scorecards-config-schema.js +15 -11
- package/lib-esm/constants.d.ts +22 -0
- package/lib-esm/constants.js +22 -0
- package/lib-esm/default-theme-config-schema.d.ts +69 -18
- 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 +294 -78
- package/lib-esm/scorecards-config-schema.d.ts +138 -36
- package/lib-esm/scorecards-config-schema.js +15 -11
- package/package.json +3 -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
|
@@ -4,6 +4,9 @@ export declare const scorecardSchema: {
|
|
|
4
4
|
readonly name: {
|
|
5
5
|
readonly type: "string";
|
|
6
6
|
};
|
|
7
|
+
readonly key: {
|
|
8
|
+
readonly type: "string";
|
|
9
|
+
};
|
|
7
10
|
readonly description: {
|
|
8
11
|
readonly type: "string";
|
|
9
12
|
};
|
|
@@ -19,7 +22,7 @@ export declare const scorecardSchema: {
|
|
|
19
22
|
};
|
|
20
23
|
readonly operator: {
|
|
21
24
|
readonly type: "string";
|
|
22
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
25
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
23
26
|
};
|
|
24
27
|
readonly value: {
|
|
25
28
|
readonly oneOf: readonly [{
|
|
@@ -30,6 +33,10 @@ export declare const scorecardSchema: {
|
|
|
30
33
|
readonly type: "number";
|
|
31
34
|
}];
|
|
32
35
|
};
|
|
36
|
+
readonly modifier: {
|
|
37
|
+
readonly type: "string";
|
|
38
|
+
readonly enum: readonly ["not"];
|
|
39
|
+
};
|
|
33
40
|
readonly match: {
|
|
34
41
|
readonly type: "array";
|
|
35
42
|
readonly items: {
|
|
@@ -40,7 +47,7 @@ export declare const scorecardSchema: {
|
|
|
40
47
|
};
|
|
41
48
|
readonly operator: {
|
|
42
49
|
readonly type: "string";
|
|
43
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
50
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
44
51
|
};
|
|
45
52
|
readonly value: {
|
|
46
53
|
readonly oneOf: readonly [{
|
|
@@ -51,6 +58,10 @@ export declare const scorecardSchema: {
|
|
|
51
58
|
readonly type: "number";
|
|
52
59
|
}];
|
|
53
60
|
};
|
|
61
|
+
readonly modifier: {
|
|
62
|
+
readonly type: "string";
|
|
63
|
+
readonly enum: readonly ["not"];
|
|
64
|
+
};
|
|
54
65
|
};
|
|
55
66
|
};
|
|
56
67
|
};
|
|
@@ -60,7 +71,7 @@ export declare const scorecardSchema: {
|
|
|
60
71
|
readonly properties: {
|
|
61
72
|
readonly operator: {
|
|
62
73
|
readonly type: "string";
|
|
63
|
-
readonly enum: readonly ["
|
|
74
|
+
readonly enum: readonly ["and", "or"];
|
|
64
75
|
};
|
|
65
76
|
readonly conditions: {
|
|
66
77
|
readonly type: "array";
|
|
@@ -73,7 +84,7 @@ export declare const scorecardSchema: {
|
|
|
73
84
|
};
|
|
74
85
|
readonly operator: {
|
|
75
86
|
readonly type: "string";
|
|
76
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
87
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
77
88
|
};
|
|
78
89
|
readonly value: {
|
|
79
90
|
readonly oneOf: readonly [{
|
|
@@ -84,6 +95,10 @@ export declare const scorecardSchema: {
|
|
|
84
95
|
readonly type: "number";
|
|
85
96
|
}];
|
|
86
97
|
};
|
|
98
|
+
readonly modifier: {
|
|
99
|
+
readonly type: "string";
|
|
100
|
+
readonly enum: readonly ["not"];
|
|
101
|
+
};
|
|
87
102
|
readonly match: {
|
|
88
103
|
readonly type: "array";
|
|
89
104
|
readonly items: {
|
|
@@ -94,7 +109,7 @@ export declare const scorecardSchema: {
|
|
|
94
109
|
};
|
|
95
110
|
readonly operator: {
|
|
96
111
|
readonly type: "string";
|
|
97
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
112
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
98
113
|
};
|
|
99
114
|
readonly value: {
|
|
100
115
|
readonly oneOf: readonly [{
|
|
@@ -105,6 +120,10 @@ export declare const scorecardSchema: {
|
|
|
105
120
|
readonly type: "number";
|
|
106
121
|
}];
|
|
107
122
|
};
|
|
123
|
+
readonly modifier: {
|
|
124
|
+
readonly type: "string";
|
|
125
|
+
readonly enum: readonly ["not"];
|
|
126
|
+
};
|
|
108
127
|
};
|
|
109
128
|
};
|
|
110
129
|
};
|
|
@@ -114,7 +133,7 @@ export declare const scorecardSchema: {
|
|
|
114
133
|
readonly properties: {
|
|
115
134
|
readonly operator: {
|
|
116
135
|
readonly type: "string";
|
|
117
|
-
readonly enum: readonly ["
|
|
136
|
+
readonly enum: readonly ["and", "or"];
|
|
118
137
|
};
|
|
119
138
|
readonly conditions: {
|
|
120
139
|
readonly type: "array";
|
|
@@ -126,7 +145,7 @@ export declare const scorecardSchema: {
|
|
|
126
145
|
};
|
|
127
146
|
readonly operator: {
|
|
128
147
|
readonly type: "string";
|
|
129
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
148
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
130
149
|
};
|
|
131
150
|
readonly value: {
|
|
132
151
|
readonly oneOf: readonly [{
|
|
@@ -137,6 +156,10 @@ export declare const scorecardSchema: {
|
|
|
137
156
|
readonly type: "number";
|
|
138
157
|
}];
|
|
139
158
|
};
|
|
159
|
+
readonly modifier: {
|
|
160
|
+
readonly type: "string";
|
|
161
|
+
readonly enum: readonly ["not"];
|
|
162
|
+
};
|
|
140
163
|
readonly match: {
|
|
141
164
|
readonly type: "array";
|
|
142
165
|
readonly items: {
|
|
@@ -147,7 +170,7 @@ export declare const scorecardSchema: {
|
|
|
147
170
|
};
|
|
148
171
|
readonly operator: {
|
|
149
172
|
readonly type: "string";
|
|
150
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
173
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
151
174
|
};
|
|
152
175
|
readonly value: {
|
|
153
176
|
readonly oneOf: readonly [{
|
|
@@ -158,6 +181,10 @@ export declare const scorecardSchema: {
|
|
|
158
181
|
readonly type: "number";
|
|
159
182
|
}];
|
|
160
183
|
};
|
|
184
|
+
readonly modifier: {
|
|
185
|
+
readonly type: "string";
|
|
186
|
+
readonly enum: readonly ["not"];
|
|
187
|
+
};
|
|
161
188
|
};
|
|
162
189
|
};
|
|
163
190
|
};
|
|
@@ -180,7 +207,7 @@ export declare const scorecardSchema: {
|
|
|
180
207
|
readonly properties: {
|
|
181
208
|
readonly operator: {
|
|
182
209
|
readonly type: "string";
|
|
183
|
-
readonly enum: readonly ["
|
|
210
|
+
readonly enum: readonly ["and", "or"];
|
|
184
211
|
};
|
|
185
212
|
readonly conditions: {
|
|
186
213
|
readonly type: "array";
|
|
@@ -193,7 +220,7 @@ export declare const scorecardSchema: {
|
|
|
193
220
|
};
|
|
194
221
|
readonly operator: {
|
|
195
222
|
readonly type: "string";
|
|
196
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
223
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
197
224
|
};
|
|
198
225
|
readonly value: {
|
|
199
226
|
readonly oneOf: readonly [{
|
|
@@ -204,6 +231,10 @@ export declare const scorecardSchema: {
|
|
|
204
231
|
readonly type: "number";
|
|
205
232
|
}];
|
|
206
233
|
};
|
|
234
|
+
readonly modifier: {
|
|
235
|
+
readonly type: "string";
|
|
236
|
+
readonly enum: readonly ["not"];
|
|
237
|
+
};
|
|
207
238
|
readonly match: {
|
|
208
239
|
readonly type: "array";
|
|
209
240
|
readonly items: {
|
|
@@ -214,7 +245,7 @@ export declare const scorecardSchema: {
|
|
|
214
245
|
};
|
|
215
246
|
readonly operator: {
|
|
216
247
|
readonly type: "string";
|
|
217
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
248
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
218
249
|
};
|
|
219
250
|
readonly value: {
|
|
220
251
|
readonly oneOf: readonly [{
|
|
@@ -225,6 +256,10 @@ export declare const scorecardSchema: {
|
|
|
225
256
|
readonly type: "number";
|
|
226
257
|
}];
|
|
227
258
|
};
|
|
259
|
+
readonly modifier: {
|
|
260
|
+
readonly type: "string";
|
|
261
|
+
readonly enum: readonly ["not"];
|
|
262
|
+
};
|
|
228
263
|
};
|
|
229
264
|
};
|
|
230
265
|
};
|
|
@@ -234,7 +269,7 @@ export declare const scorecardSchema: {
|
|
|
234
269
|
readonly properties: {
|
|
235
270
|
readonly operator: {
|
|
236
271
|
readonly type: "string";
|
|
237
|
-
readonly enum: readonly ["
|
|
272
|
+
readonly enum: readonly ["and", "or"];
|
|
238
273
|
};
|
|
239
274
|
readonly conditions: {
|
|
240
275
|
readonly type: "array";
|
|
@@ -247,7 +282,7 @@ export declare const scorecardSchema: {
|
|
|
247
282
|
};
|
|
248
283
|
readonly operator: {
|
|
249
284
|
readonly type: "string";
|
|
250
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
285
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
251
286
|
};
|
|
252
287
|
readonly value: {
|
|
253
288
|
readonly oneOf: readonly [{
|
|
@@ -258,6 +293,10 @@ export declare const scorecardSchema: {
|
|
|
258
293
|
readonly type: "number";
|
|
259
294
|
}];
|
|
260
295
|
};
|
|
296
|
+
readonly modifier: {
|
|
297
|
+
readonly type: "string";
|
|
298
|
+
readonly enum: readonly ["not"];
|
|
299
|
+
};
|
|
261
300
|
readonly match: {
|
|
262
301
|
readonly type: "array";
|
|
263
302
|
readonly items: {
|
|
@@ -268,7 +307,7 @@ export declare const scorecardSchema: {
|
|
|
268
307
|
};
|
|
269
308
|
readonly operator: {
|
|
270
309
|
readonly type: "string";
|
|
271
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
310
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
272
311
|
};
|
|
273
312
|
readonly value: {
|
|
274
313
|
readonly oneOf: readonly [{
|
|
@@ -279,6 +318,10 @@ export declare const scorecardSchema: {
|
|
|
279
318
|
readonly type: "number";
|
|
280
319
|
}];
|
|
281
320
|
};
|
|
321
|
+
readonly modifier: {
|
|
322
|
+
readonly type: "string";
|
|
323
|
+
readonly enum: readonly ["not"];
|
|
324
|
+
};
|
|
282
325
|
};
|
|
283
326
|
};
|
|
284
327
|
};
|
|
@@ -288,7 +331,7 @@ export declare const scorecardSchema: {
|
|
|
288
331
|
readonly properties: {
|
|
289
332
|
readonly operator: {
|
|
290
333
|
readonly type: "string";
|
|
291
|
-
readonly enum: readonly ["
|
|
334
|
+
readonly enum: readonly ["and", "or"];
|
|
292
335
|
};
|
|
293
336
|
readonly conditions: {
|
|
294
337
|
readonly type: "array";
|
|
@@ -300,7 +343,7 @@ export declare const scorecardSchema: {
|
|
|
300
343
|
};
|
|
301
344
|
readonly operator: {
|
|
302
345
|
readonly type: "string";
|
|
303
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
346
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
304
347
|
};
|
|
305
348
|
readonly value: {
|
|
306
349
|
readonly oneOf: readonly [{
|
|
@@ -311,6 +354,10 @@ export declare const scorecardSchema: {
|
|
|
311
354
|
readonly type: "number";
|
|
312
355
|
}];
|
|
313
356
|
};
|
|
357
|
+
readonly modifier: {
|
|
358
|
+
readonly type: "string";
|
|
359
|
+
readonly enum: readonly ["not"];
|
|
360
|
+
};
|
|
314
361
|
readonly match: {
|
|
315
362
|
readonly type: "array";
|
|
316
363
|
readonly items: {
|
|
@@ -321,7 +368,7 @@ export declare const scorecardSchema: {
|
|
|
321
368
|
};
|
|
322
369
|
readonly operator: {
|
|
323
370
|
readonly type: "string";
|
|
324
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
371
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
325
372
|
};
|
|
326
373
|
readonly value: {
|
|
327
374
|
readonly oneOf: readonly [{
|
|
@@ -332,6 +379,10 @@ export declare const scorecardSchema: {
|
|
|
332
379
|
readonly type: "number";
|
|
333
380
|
}];
|
|
334
381
|
};
|
|
382
|
+
readonly modifier: {
|
|
383
|
+
readonly type: "string";
|
|
384
|
+
readonly enum: readonly ["not"];
|
|
385
|
+
};
|
|
335
386
|
};
|
|
336
387
|
};
|
|
337
388
|
};
|
|
@@ -533,7 +584,7 @@ export declare const scorecardSchema: {
|
|
|
533
584
|
}];
|
|
534
585
|
};
|
|
535
586
|
};
|
|
536
|
-
readonly required: readonly ["name", "entities", "levels"];
|
|
587
|
+
readonly required: readonly ["name", "key", "entities", "levels"];
|
|
537
588
|
readonly additionalProperties: false;
|
|
538
589
|
};
|
|
539
590
|
export declare const scorecardsConfigSchema: {
|
|
@@ -544,6 +595,9 @@ export declare const scorecardsConfigSchema: {
|
|
|
544
595
|
readonly name: {
|
|
545
596
|
readonly type: "string";
|
|
546
597
|
};
|
|
598
|
+
readonly key: {
|
|
599
|
+
readonly type: "string";
|
|
600
|
+
};
|
|
547
601
|
readonly description: {
|
|
548
602
|
readonly type: "string";
|
|
549
603
|
};
|
|
@@ -559,7 +613,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
559
613
|
};
|
|
560
614
|
readonly operator: {
|
|
561
615
|
readonly type: "string";
|
|
562
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
616
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
563
617
|
};
|
|
564
618
|
readonly value: {
|
|
565
619
|
readonly oneOf: readonly [{
|
|
@@ -570,6 +624,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
570
624
|
readonly type: "number";
|
|
571
625
|
}];
|
|
572
626
|
};
|
|
627
|
+
readonly modifier: {
|
|
628
|
+
readonly type: "string";
|
|
629
|
+
readonly enum: readonly ["not"];
|
|
630
|
+
};
|
|
573
631
|
readonly match: {
|
|
574
632
|
readonly type: "array";
|
|
575
633
|
readonly items: {
|
|
@@ -580,7 +638,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
580
638
|
};
|
|
581
639
|
readonly operator: {
|
|
582
640
|
readonly type: "string";
|
|
583
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
641
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
584
642
|
};
|
|
585
643
|
readonly value: {
|
|
586
644
|
readonly oneOf: readonly [{
|
|
@@ -591,6 +649,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
591
649
|
readonly type: "number";
|
|
592
650
|
}];
|
|
593
651
|
};
|
|
652
|
+
readonly modifier: {
|
|
653
|
+
readonly type: "string";
|
|
654
|
+
readonly enum: readonly ["not"];
|
|
655
|
+
};
|
|
594
656
|
};
|
|
595
657
|
};
|
|
596
658
|
};
|
|
@@ -600,7 +662,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
600
662
|
readonly properties: {
|
|
601
663
|
readonly operator: {
|
|
602
664
|
readonly type: "string";
|
|
603
|
-
readonly enum: readonly ["
|
|
665
|
+
readonly enum: readonly ["and", "or"];
|
|
604
666
|
};
|
|
605
667
|
readonly conditions: {
|
|
606
668
|
readonly type: "array";
|
|
@@ -613,7 +675,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
613
675
|
};
|
|
614
676
|
readonly operator: {
|
|
615
677
|
readonly type: "string";
|
|
616
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
678
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
617
679
|
};
|
|
618
680
|
readonly value: {
|
|
619
681
|
readonly oneOf: readonly [{
|
|
@@ -624,6 +686,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
624
686
|
readonly type: "number";
|
|
625
687
|
}];
|
|
626
688
|
};
|
|
689
|
+
readonly modifier: {
|
|
690
|
+
readonly type: "string";
|
|
691
|
+
readonly enum: readonly ["not"];
|
|
692
|
+
};
|
|
627
693
|
readonly match: {
|
|
628
694
|
readonly type: "array";
|
|
629
695
|
readonly items: {
|
|
@@ -634,7 +700,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
634
700
|
};
|
|
635
701
|
readonly operator: {
|
|
636
702
|
readonly type: "string";
|
|
637
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
703
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
638
704
|
};
|
|
639
705
|
readonly value: {
|
|
640
706
|
readonly oneOf: readonly [{
|
|
@@ -645,6 +711,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
645
711
|
readonly type: "number";
|
|
646
712
|
}];
|
|
647
713
|
};
|
|
714
|
+
readonly modifier: {
|
|
715
|
+
readonly type: "string";
|
|
716
|
+
readonly enum: readonly ["not"];
|
|
717
|
+
};
|
|
648
718
|
};
|
|
649
719
|
};
|
|
650
720
|
};
|
|
@@ -654,7 +724,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
654
724
|
readonly properties: {
|
|
655
725
|
readonly operator: {
|
|
656
726
|
readonly type: "string";
|
|
657
|
-
readonly enum: readonly ["
|
|
727
|
+
readonly enum: readonly ["and", "or"];
|
|
658
728
|
};
|
|
659
729
|
readonly conditions: {
|
|
660
730
|
readonly type: "array";
|
|
@@ -666,7 +736,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
666
736
|
};
|
|
667
737
|
readonly operator: {
|
|
668
738
|
readonly type: "string";
|
|
669
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
739
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
670
740
|
};
|
|
671
741
|
readonly value: {
|
|
672
742
|
readonly oneOf: readonly [{
|
|
@@ -677,6 +747,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
677
747
|
readonly type: "number";
|
|
678
748
|
}];
|
|
679
749
|
};
|
|
750
|
+
readonly modifier: {
|
|
751
|
+
readonly type: "string";
|
|
752
|
+
readonly enum: readonly ["not"];
|
|
753
|
+
};
|
|
680
754
|
readonly match: {
|
|
681
755
|
readonly type: "array";
|
|
682
756
|
readonly items: {
|
|
@@ -687,7 +761,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
687
761
|
};
|
|
688
762
|
readonly operator: {
|
|
689
763
|
readonly type: "string";
|
|
690
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
764
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
691
765
|
};
|
|
692
766
|
readonly value: {
|
|
693
767
|
readonly oneOf: readonly [{
|
|
@@ -698,6 +772,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
698
772
|
readonly type: "number";
|
|
699
773
|
}];
|
|
700
774
|
};
|
|
775
|
+
readonly modifier: {
|
|
776
|
+
readonly type: "string";
|
|
777
|
+
readonly enum: readonly ["not"];
|
|
778
|
+
};
|
|
701
779
|
};
|
|
702
780
|
};
|
|
703
781
|
};
|
|
@@ -720,7 +798,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
720
798
|
readonly properties: {
|
|
721
799
|
readonly operator: {
|
|
722
800
|
readonly type: "string";
|
|
723
|
-
readonly enum: readonly ["
|
|
801
|
+
readonly enum: readonly ["and", "or"];
|
|
724
802
|
};
|
|
725
803
|
readonly conditions: {
|
|
726
804
|
readonly type: "array";
|
|
@@ -733,7 +811,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
733
811
|
};
|
|
734
812
|
readonly operator: {
|
|
735
813
|
readonly type: "string";
|
|
736
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
814
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
737
815
|
};
|
|
738
816
|
readonly value: {
|
|
739
817
|
readonly oneOf: readonly [{
|
|
@@ -744,6 +822,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
744
822
|
readonly type: "number";
|
|
745
823
|
}];
|
|
746
824
|
};
|
|
825
|
+
readonly modifier: {
|
|
826
|
+
readonly type: "string";
|
|
827
|
+
readonly enum: readonly ["not"];
|
|
828
|
+
};
|
|
747
829
|
readonly match: {
|
|
748
830
|
readonly type: "array";
|
|
749
831
|
readonly items: {
|
|
@@ -754,7 +836,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
754
836
|
};
|
|
755
837
|
readonly operator: {
|
|
756
838
|
readonly type: "string";
|
|
757
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
839
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
758
840
|
};
|
|
759
841
|
readonly value: {
|
|
760
842
|
readonly oneOf: readonly [{
|
|
@@ -765,6 +847,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
765
847
|
readonly type: "number";
|
|
766
848
|
}];
|
|
767
849
|
};
|
|
850
|
+
readonly modifier: {
|
|
851
|
+
readonly type: "string";
|
|
852
|
+
readonly enum: readonly ["not"];
|
|
853
|
+
};
|
|
768
854
|
};
|
|
769
855
|
};
|
|
770
856
|
};
|
|
@@ -774,7 +860,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
774
860
|
readonly properties: {
|
|
775
861
|
readonly operator: {
|
|
776
862
|
readonly type: "string";
|
|
777
|
-
readonly enum: readonly ["
|
|
863
|
+
readonly enum: readonly ["and", "or"];
|
|
778
864
|
};
|
|
779
865
|
readonly conditions: {
|
|
780
866
|
readonly type: "array";
|
|
@@ -787,7 +873,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
787
873
|
};
|
|
788
874
|
readonly operator: {
|
|
789
875
|
readonly type: "string";
|
|
790
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
876
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
791
877
|
};
|
|
792
878
|
readonly value: {
|
|
793
879
|
readonly oneOf: readonly [{
|
|
@@ -798,6 +884,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
798
884
|
readonly type: "number";
|
|
799
885
|
}];
|
|
800
886
|
};
|
|
887
|
+
readonly modifier: {
|
|
888
|
+
readonly type: "string";
|
|
889
|
+
readonly enum: readonly ["not"];
|
|
890
|
+
};
|
|
801
891
|
readonly match: {
|
|
802
892
|
readonly type: "array";
|
|
803
893
|
readonly items: {
|
|
@@ -808,7 +898,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
808
898
|
};
|
|
809
899
|
readonly operator: {
|
|
810
900
|
readonly type: "string";
|
|
811
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
901
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
812
902
|
};
|
|
813
903
|
readonly value: {
|
|
814
904
|
readonly oneOf: readonly [{
|
|
@@ -819,6 +909,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
819
909
|
readonly type: "number";
|
|
820
910
|
}];
|
|
821
911
|
};
|
|
912
|
+
readonly modifier: {
|
|
913
|
+
readonly type: "string";
|
|
914
|
+
readonly enum: readonly ["not"];
|
|
915
|
+
};
|
|
822
916
|
};
|
|
823
917
|
};
|
|
824
918
|
};
|
|
@@ -828,7 +922,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
828
922
|
readonly properties: {
|
|
829
923
|
readonly operator: {
|
|
830
924
|
readonly type: "string";
|
|
831
|
-
readonly enum: readonly ["
|
|
925
|
+
readonly enum: readonly ["and", "or"];
|
|
832
926
|
};
|
|
833
927
|
readonly conditions: {
|
|
834
928
|
readonly type: "array";
|
|
@@ -840,7 +934,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
840
934
|
};
|
|
841
935
|
readonly operator: {
|
|
842
936
|
readonly type: "string";
|
|
843
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
937
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
844
938
|
};
|
|
845
939
|
readonly value: {
|
|
846
940
|
readonly oneOf: readonly [{
|
|
@@ -851,6 +945,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
851
945
|
readonly type: "number";
|
|
852
946
|
}];
|
|
853
947
|
};
|
|
948
|
+
readonly modifier: {
|
|
949
|
+
readonly type: "string";
|
|
950
|
+
readonly enum: readonly ["not"];
|
|
951
|
+
};
|
|
854
952
|
readonly match: {
|
|
855
953
|
readonly type: "array";
|
|
856
954
|
readonly items: {
|
|
@@ -861,7 +959,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
861
959
|
};
|
|
862
960
|
readonly operator: {
|
|
863
961
|
readonly type: "string";
|
|
864
|
-
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"
|
|
962
|
+
readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
|
|
865
963
|
};
|
|
866
964
|
readonly value: {
|
|
867
965
|
readonly oneOf: readonly [{
|
|
@@ -872,6 +970,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
872
970
|
readonly type: "number";
|
|
873
971
|
}];
|
|
874
972
|
};
|
|
973
|
+
readonly modifier: {
|
|
974
|
+
readonly type: "string";
|
|
975
|
+
readonly enum: readonly ["not"];
|
|
976
|
+
};
|
|
875
977
|
};
|
|
876
978
|
};
|
|
877
979
|
};
|
|
@@ -1073,7 +1175,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
1073
1175
|
}];
|
|
1074
1176
|
};
|
|
1075
1177
|
};
|
|
1076
|
-
readonly required: readonly ["name", "entities", "levels"];
|
|
1178
|
+
readonly required: readonly ["name", "key", "entities", "levels"];
|
|
1077
1179
|
readonly additionalProperties: false;
|
|
1078
1180
|
};
|
|
1079
1181
|
};
|