@redocly/config 0.41.3 → 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/default-theme-config-schema.d.ts +65 -17
- package/lib/root-config-schema.d.ts +270 -72
- package/lib/scorecards-config-schema.d.ts +130 -34
- package/lib/scorecards-config-schema.js +13 -10
- package/lib-esm/default-theme-config-schema.d.ts +65 -17
- package/lib-esm/root-config-schema.d.ts +270 -72
- package/lib-esm/scorecards-config-schema.d.ts +130 -34
- package/lib-esm/scorecards-config-schema.js +13 -10
- package/package.json +1 -1
|
@@ -22,7 +22,7 @@ export declare const scorecardSchema: {
|
|
|
22
22
|
};
|
|
23
23
|
readonly operator: {
|
|
24
24
|
readonly type: "string";
|
|
25
|
-
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"];
|
|
26
26
|
};
|
|
27
27
|
readonly value: {
|
|
28
28
|
readonly oneOf: readonly [{
|
|
@@ -33,6 +33,10 @@ export declare const scorecardSchema: {
|
|
|
33
33
|
readonly type: "number";
|
|
34
34
|
}];
|
|
35
35
|
};
|
|
36
|
+
readonly modifier: {
|
|
37
|
+
readonly type: "string";
|
|
38
|
+
readonly enum: readonly ["not"];
|
|
39
|
+
};
|
|
36
40
|
readonly match: {
|
|
37
41
|
readonly type: "array";
|
|
38
42
|
readonly items: {
|
|
@@ -43,7 +47,7 @@ export declare const scorecardSchema: {
|
|
|
43
47
|
};
|
|
44
48
|
readonly operator: {
|
|
45
49
|
readonly type: "string";
|
|
46
|
-
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"];
|
|
47
51
|
};
|
|
48
52
|
readonly value: {
|
|
49
53
|
readonly oneOf: readonly [{
|
|
@@ -54,6 +58,10 @@ export declare const scorecardSchema: {
|
|
|
54
58
|
readonly type: "number";
|
|
55
59
|
}];
|
|
56
60
|
};
|
|
61
|
+
readonly modifier: {
|
|
62
|
+
readonly type: "string";
|
|
63
|
+
readonly enum: readonly ["not"];
|
|
64
|
+
};
|
|
57
65
|
};
|
|
58
66
|
};
|
|
59
67
|
};
|
|
@@ -63,7 +71,7 @@ export declare const scorecardSchema: {
|
|
|
63
71
|
readonly properties: {
|
|
64
72
|
readonly operator: {
|
|
65
73
|
readonly type: "string";
|
|
66
|
-
readonly enum: readonly ["
|
|
74
|
+
readonly enum: readonly ["and", "or"];
|
|
67
75
|
};
|
|
68
76
|
readonly conditions: {
|
|
69
77
|
readonly type: "array";
|
|
@@ -76,7 +84,7 @@ export declare const scorecardSchema: {
|
|
|
76
84
|
};
|
|
77
85
|
readonly operator: {
|
|
78
86
|
readonly type: "string";
|
|
79
|
-
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"];
|
|
80
88
|
};
|
|
81
89
|
readonly value: {
|
|
82
90
|
readonly oneOf: readonly [{
|
|
@@ -87,6 +95,10 @@ export declare const scorecardSchema: {
|
|
|
87
95
|
readonly type: "number";
|
|
88
96
|
}];
|
|
89
97
|
};
|
|
98
|
+
readonly modifier: {
|
|
99
|
+
readonly type: "string";
|
|
100
|
+
readonly enum: readonly ["not"];
|
|
101
|
+
};
|
|
90
102
|
readonly match: {
|
|
91
103
|
readonly type: "array";
|
|
92
104
|
readonly items: {
|
|
@@ -97,7 +109,7 @@ export declare const scorecardSchema: {
|
|
|
97
109
|
};
|
|
98
110
|
readonly operator: {
|
|
99
111
|
readonly type: "string";
|
|
100
|
-
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"];
|
|
101
113
|
};
|
|
102
114
|
readonly value: {
|
|
103
115
|
readonly oneOf: readonly [{
|
|
@@ -108,6 +120,10 @@ export declare const scorecardSchema: {
|
|
|
108
120
|
readonly type: "number";
|
|
109
121
|
}];
|
|
110
122
|
};
|
|
123
|
+
readonly modifier: {
|
|
124
|
+
readonly type: "string";
|
|
125
|
+
readonly enum: readonly ["not"];
|
|
126
|
+
};
|
|
111
127
|
};
|
|
112
128
|
};
|
|
113
129
|
};
|
|
@@ -117,7 +133,7 @@ export declare const scorecardSchema: {
|
|
|
117
133
|
readonly properties: {
|
|
118
134
|
readonly operator: {
|
|
119
135
|
readonly type: "string";
|
|
120
|
-
readonly enum: readonly ["
|
|
136
|
+
readonly enum: readonly ["and", "or"];
|
|
121
137
|
};
|
|
122
138
|
readonly conditions: {
|
|
123
139
|
readonly type: "array";
|
|
@@ -129,7 +145,7 @@ export declare const scorecardSchema: {
|
|
|
129
145
|
};
|
|
130
146
|
readonly operator: {
|
|
131
147
|
readonly type: "string";
|
|
132
|
-
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"];
|
|
133
149
|
};
|
|
134
150
|
readonly value: {
|
|
135
151
|
readonly oneOf: readonly [{
|
|
@@ -140,6 +156,10 @@ export declare const scorecardSchema: {
|
|
|
140
156
|
readonly type: "number";
|
|
141
157
|
}];
|
|
142
158
|
};
|
|
159
|
+
readonly modifier: {
|
|
160
|
+
readonly type: "string";
|
|
161
|
+
readonly enum: readonly ["not"];
|
|
162
|
+
};
|
|
143
163
|
readonly match: {
|
|
144
164
|
readonly type: "array";
|
|
145
165
|
readonly items: {
|
|
@@ -150,7 +170,7 @@ export declare const scorecardSchema: {
|
|
|
150
170
|
};
|
|
151
171
|
readonly operator: {
|
|
152
172
|
readonly type: "string";
|
|
153
|
-
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"];
|
|
154
174
|
};
|
|
155
175
|
readonly value: {
|
|
156
176
|
readonly oneOf: readonly [{
|
|
@@ -161,6 +181,10 @@ export declare const scorecardSchema: {
|
|
|
161
181
|
readonly type: "number";
|
|
162
182
|
}];
|
|
163
183
|
};
|
|
184
|
+
readonly modifier: {
|
|
185
|
+
readonly type: "string";
|
|
186
|
+
readonly enum: readonly ["not"];
|
|
187
|
+
};
|
|
164
188
|
};
|
|
165
189
|
};
|
|
166
190
|
};
|
|
@@ -183,7 +207,7 @@ export declare const scorecardSchema: {
|
|
|
183
207
|
readonly properties: {
|
|
184
208
|
readonly operator: {
|
|
185
209
|
readonly type: "string";
|
|
186
|
-
readonly enum: readonly ["
|
|
210
|
+
readonly enum: readonly ["and", "or"];
|
|
187
211
|
};
|
|
188
212
|
readonly conditions: {
|
|
189
213
|
readonly type: "array";
|
|
@@ -196,7 +220,7 @@ export declare const scorecardSchema: {
|
|
|
196
220
|
};
|
|
197
221
|
readonly operator: {
|
|
198
222
|
readonly type: "string";
|
|
199
|
-
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"];
|
|
200
224
|
};
|
|
201
225
|
readonly value: {
|
|
202
226
|
readonly oneOf: readonly [{
|
|
@@ -207,6 +231,10 @@ export declare const scorecardSchema: {
|
|
|
207
231
|
readonly type: "number";
|
|
208
232
|
}];
|
|
209
233
|
};
|
|
234
|
+
readonly modifier: {
|
|
235
|
+
readonly type: "string";
|
|
236
|
+
readonly enum: readonly ["not"];
|
|
237
|
+
};
|
|
210
238
|
readonly match: {
|
|
211
239
|
readonly type: "array";
|
|
212
240
|
readonly items: {
|
|
@@ -217,7 +245,7 @@ export declare const scorecardSchema: {
|
|
|
217
245
|
};
|
|
218
246
|
readonly operator: {
|
|
219
247
|
readonly type: "string";
|
|
220
|
-
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"];
|
|
221
249
|
};
|
|
222
250
|
readonly value: {
|
|
223
251
|
readonly oneOf: readonly [{
|
|
@@ -228,6 +256,10 @@ export declare const scorecardSchema: {
|
|
|
228
256
|
readonly type: "number";
|
|
229
257
|
}];
|
|
230
258
|
};
|
|
259
|
+
readonly modifier: {
|
|
260
|
+
readonly type: "string";
|
|
261
|
+
readonly enum: readonly ["not"];
|
|
262
|
+
};
|
|
231
263
|
};
|
|
232
264
|
};
|
|
233
265
|
};
|
|
@@ -237,7 +269,7 @@ export declare const scorecardSchema: {
|
|
|
237
269
|
readonly properties: {
|
|
238
270
|
readonly operator: {
|
|
239
271
|
readonly type: "string";
|
|
240
|
-
readonly enum: readonly ["
|
|
272
|
+
readonly enum: readonly ["and", "or"];
|
|
241
273
|
};
|
|
242
274
|
readonly conditions: {
|
|
243
275
|
readonly type: "array";
|
|
@@ -250,7 +282,7 @@ export declare const scorecardSchema: {
|
|
|
250
282
|
};
|
|
251
283
|
readonly operator: {
|
|
252
284
|
readonly type: "string";
|
|
253
|
-
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"];
|
|
254
286
|
};
|
|
255
287
|
readonly value: {
|
|
256
288
|
readonly oneOf: readonly [{
|
|
@@ -261,6 +293,10 @@ export declare const scorecardSchema: {
|
|
|
261
293
|
readonly type: "number";
|
|
262
294
|
}];
|
|
263
295
|
};
|
|
296
|
+
readonly modifier: {
|
|
297
|
+
readonly type: "string";
|
|
298
|
+
readonly enum: readonly ["not"];
|
|
299
|
+
};
|
|
264
300
|
readonly match: {
|
|
265
301
|
readonly type: "array";
|
|
266
302
|
readonly items: {
|
|
@@ -271,7 +307,7 @@ export declare const scorecardSchema: {
|
|
|
271
307
|
};
|
|
272
308
|
readonly operator: {
|
|
273
309
|
readonly type: "string";
|
|
274
|
-
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"];
|
|
275
311
|
};
|
|
276
312
|
readonly value: {
|
|
277
313
|
readonly oneOf: readonly [{
|
|
@@ -282,6 +318,10 @@ export declare const scorecardSchema: {
|
|
|
282
318
|
readonly type: "number";
|
|
283
319
|
}];
|
|
284
320
|
};
|
|
321
|
+
readonly modifier: {
|
|
322
|
+
readonly type: "string";
|
|
323
|
+
readonly enum: readonly ["not"];
|
|
324
|
+
};
|
|
285
325
|
};
|
|
286
326
|
};
|
|
287
327
|
};
|
|
@@ -291,7 +331,7 @@ export declare const scorecardSchema: {
|
|
|
291
331
|
readonly properties: {
|
|
292
332
|
readonly operator: {
|
|
293
333
|
readonly type: "string";
|
|
294
|
-
readonly enum: readonly ["
|
|
334
|
+
readonly enum: readonly ["and", "or"];
|
|
295
335
|
};
|
|
296
336
|
readonly conditions: {
|
|
297
337
|
readonly type: "array";
|
|
@@ -303,7 +343,7 @@ export declare const scorecardSchema: {
|
|
|
303
343
|
};
|
|
304
344
|
readonly operator: {
|
|
305
345
|
readonly type: "string";
|
|
306
|
-
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"];
|
|
307
347
|
};
|
|
308
348
|
readonly value: {
|
|
309
349
|
readonly oneOf: readonly [{
|
|
@@ -314,6 +354,10 @@ export declare const scorecardSchema: {
|
|
|
314
354
|
readonly type: "number";
|
|
315
355
|
}];
|
|
316
356
|
};
|
|
357
|
+
readonly modifier: {
|
|
358
|
+
readonly type: "string";
|
|
359
|
+
readonly enum: readonly ["not"];
|
|
360
|
+
};
|
|
317
361
|
readonly match: {
|
|
318
362
|
readonly type: "array";
|
|
319
363
|
readonly items: {
|
|
@@ -324,7 +368,7 @@ export declare const scorecardSchema: {
|
|
|
324
368
|
};
|
|
325
369
|
readonly operator: {
|
|
326
370
|
readonly type: "string";
|
|
327
|
-
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"];
|
|
328
372
|
};
|
|
329
373
|
readonly value: {
|
|
330
374
|
readonly oneOf: readonly [{
|
|
@@ -335,6 +379,10 @@ export declare const scorecardSchema: {
|
|
|
335
379
|
readonly type: "number";
|
|
336
380
|
}];
|
|
337
381
|
};
|
|
382
|
+
readonly modifier: {
|
|
383
|
+
readonly type: "string";
|
|
384
|
+
readonly enum: readonly ["not"];
|
|
385
|
+
};
|
|
338
386
|
};
|
|
339
387
|
};
|
|
340
388
|
};
|
|
@@ -565,7 +613,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
565
613
|
};
|
|
566
614
|
readonly operator: {
|
|
567
615
|
readonly type: "string";
|
|
568
|
-
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"];
|
|
569
617
|
};
|
|
570
618
|
readonly value: {
|
|
571
619
|
readonly oneOf: readonly [{
|
|
@@ -576,6 +624,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
576
624
|
readonly type: "number";
|
|
577
625
|
}];
|
|
578
626
|
};
|
|
627
|
+
readonly modifier: {
|
|
628
|
+
readonly type: "string";
|
|
629
|
+
readonly enum: readonly ["not"];
|
|
630
|
+
};
|
|
579
631
|
readonly match: {
|
|
580
632
|
readonly type: "array";
|
|
581
633
|
readonly items: {
|
|
@@ -586,7 +638,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
586
638
|
};
|
|
587
639
|
readonly operator: {
|
|
588
640
|
readonly type: "string";
|
|
589
|
-
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"];
|
|
590
642
|
};
|
|
591
643
|
readonly value: {
|
|
592
644
|
readonly oneOf: readonly [{
|
|
@@ -597,6 +649,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
597
649
|
readonly type: "number";
|
|
598
650
|
}];
|
|
599
651
|
};
|
|
652
|
+
readonly modifier: {
|
|
653
|
+
readonly type: "string";
|
|
654
|
+
readonly enum: readonly ["not"];
|
|
655
|
+
};
|
|
600
656
|
};
|
|
601
657
|
};
|
|
602
658
|
};
|
|
@@ -606,7 +662,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
606
662
|
readonly properties: {
|
|
607
663
|
readonly operator: {
|
|
608
664
|
readonly type: "string";
|
|
609
|
-
readonly enum: readonly ["
|
|
665
|
+
readonly enum: readonly ["and", "or"];
|
|
610
666
|
};
|
|
611
667
|
readonly conditions: {
|
|
612
668
|
readonly type: "array";
|
|
@@ -619,7 +675,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
619
675
|
};
|
|
620
676
|
readonly operator: {
|
|
621
677
|
readonly type: "string";
|
|
622
|
-
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"];
|
|
623
679
|
};
|
|
624
680
|
readonly value: {
|
|
625
681
|
readonly oneOf: readonly [{
|
|
@@ -630,6 +686,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
630
686
|
readonly type: "number";
|
|
631
687
|
}];
|
|
632
688
|
};
|
|
689
|
+
readonly modifier: {
|
|
690
|
+
readonly type: "string";
|
|
691
|
+
readonly enum: readonly ["not"];
|
|
692
|
+
};
|
|
633
693
|
readonly match: {
|
|
634
694
|
readonly type: "array";
|
|
635
695
|
readonly items: {
|
|
@@ -640,7 +700,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
640
700
|
};
|
|
641
701
|
readonly operator: {
|
|
642
702
|
readonly type: "string";
|
|
643
|
-
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"];
|
|
644
704
|
};
|
|
645
705
|
readonly value: {
|
|
646
706
|
readonly oneOf: readonly [{
|
|
@@ -651,6 +711,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
651
711
|
readonly type: "number";
|
|
652
712
|
}];
|
|
653
713
|
};
|
|
714
|
+
readonly modifier: {
|
|
715
|
+
readonly type: "string";
|
|
716
|
+
readonly enum: readonly ["not"];
|
|
717
|
+
};
|
|
654
718
|
};
|
|
655
719
|
};
|
|
656
720
|
};
|
|
@@ -660,7 +724,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
660
724
|
readonly properties: {
|
|
661
725
|
readonly operator: {
|
|
662
726
|
readonly type: "string";
|
|
663
|
-
readonly enum: readonly ["
|
|
727
|
+
readonly enum: readonly ["and", "or"];
|
|
664
728
|
};
|
|
665
729
|
readonly conditions: {
|
|
666
730
|
readonly type: "array";
|
|
@@ -672,7 +736,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
672
736
|
};
|
|
673
737
|
readonly operator: {
|
|
674
738
|
readonly type: "string";
|
|
675
|
-
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"];
|
|
676
740
|
};
|
|
677
741
|
readonly value: {
|
|
678
742
|
readonly oneOf: readonly [{
|
|
@@ -683,6 +747,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
683
747
|
readonly type: "number";
|
|
684
748
|
}];
|
|
685
749
|
};
|
|
750
|
+
readonly modifier: {
|
|
751
|
+
readonly type: "string";
|
|
752
|
+
readonly enum: readonly ["not"];
|
|
753
|
+
};
|
|
686
754
|
readonly match: {
|
|
687
755
|
readonly type: "array";
|
|
688
756
|
readonly items: {
|
|
@@ -693,7 +761,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
693
761
|
};
|
|
694
762
|
readonly operator: {
|
|
695
763
|
readonly type: "string";
|
|
696
|
-
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"];
|
|
697
765
|
};
|
|
698
766
|
readonly value: {
|
|
699
767
|
readonly oneOf: readonly [{
|
|
@@ -704,6 +772,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
704
772
|
readonly type: "number";
|
|
705
773
|
}];
|
|
706
774
|
};
|
|
775
|
+
readonly modifier: {
|
|
776
|
+
readonly type: "string";
|
|
777
|
+
readonly enum: readonly ["not"];
|
|
778
|
+
};
|
|
707
779
|
};
|
|
708
780
|
};
|
|
709
781
|
};
|
|
@@ -726,7 +798,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
726
798
|
readonly properties: {
|
|
727
799
|
readonly operator: {
|
|
728
800
|
readonly type: "string";
|
|
729
|
-
readonly enum: readonly ["
|
|
801
|
+
readonly enum: readonly ["and", "or"];
|
|
730
802
|
};
|
|
731
803
|
readonly conditions: {
|
|
732
804
|
readonly type: "array";
|
|
@@ -739,7 +811,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
739
811
|
};
|
|
740
812
|
readonly operator: {
|
|
741
813
|
readonly type: "string";
|
|
742
|
-
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"];
|
|
743
815
|
};
|
|
744
816
|
readonly value: {
|
|
745
817
|
readonly oneOf: readonly [{
|
|
@@ -750,6 +822,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
750
822
|
readonly type: "number";
|
|
751
823
|
}];
|
|
752
824
|
};
|
|
825
|
+
readonly modifier: {
|
|
826
|
+
readonly type: "string";
|
|
827
|
+
readonly enum: readonly ["not"];
|
|
828
|
+
};
|
|
753
829
|
readonly match: {
|
|
754
830
|
readonly type: "array";
|
|
755
831
|
readonly items: {
|
|
@@ -760,7 +836,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
760
836
|
};
|
|
761
837
|
readonly operator: {
|
|
762
838
|
readonly type: "string";
|
|
763
|
-
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"];
|
|
764
840
|
};
|
|
765
841
|
readonly value: {
|
|
766
842
|
readonly oneOf: readonly [{
|
|
@@ -771,6 +847,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
771
847
|
readonly type: "number";
|
|
772
848
|
}];
|
|
773
849
|
};
|
|
850
|
+
readonly modifier: {
|
|
851
|
+
readonly type: "string";
|
|
852
|
+
readonly enum: readonly ["not"];
|
|
853
|
+
};
|
|
774
854
|
};
|
|
775
855
|
};
|
|
776
856
|
};
|
|
@@ -780,7 +860,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
780
860
|
readonly properties: {
|
|
781
861
|
readonly operator: {
|
|
782
862
|
readonly type: "string";
|
|
783
|
-
readonly enum: readonly ["
|
|
863
|
+
readonly enum: readonly ["and", "or"];
|
|
784
864
|
};
|
|
785
865
|
readonly conditions: {
|
|
786
866
|
readonly type: "array";
|
|
@@ -793,7 +873,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
793
873
|
};
|
|
794
874
|
readonly operator: {
|
|
795
875
|
readonly type: "string";
|
|
796
|
-
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"];
|
|
797
877
|
};
|
|
798
878
|
readonly value: {
|
|
799
879
|
readonly oneOf: readonly [{
|
|
@@ -804,6 +884,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
804
884
|
readonly type: "number";
|
|
805
885
|
}];
|
|
806
886
|
};
|
|
887
|
+
readonly modifier: {
|
|
888
|
+
readonly type: "string";
|
|
889
|
+
readonly enum: readonly ["not"];
|
|
890
|
+
};
|
|
807
891
|
readonly match: {
|
|
808
892
|
readonly type: "array";
|
|
809
893
|
readonly items: {
|
|
@@ -814,7 +898,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
814
898
|
};
|
|
815
899
|
readonly operator: {
|
|
816
900
|
readonly type: "string";
|
|
817
|
-
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"];
|
|
818
902
|
};
|
|
819
903
|
readonly value: {
|
|
820
904
|
readonly oneOf: readonly [{
|
|
@@ -825,6 +909,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
825
909
|
readonly type: "number";
|
|
826
910
|
}];
|
|
827
911
|
};
|
|
912
|
+
readonly modifier: {
|
|
913
|
+
readonly type: "string";
|
|
914
|
+
readonly enum: readonly ["not"];
|
|
915
|
+
};
|
|
828
916
|
};
|
|
829
917
|
};
|
|
830
918
|
};
|
|
@@ -834,7 +922,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
834
922
|
readonly properties: {
|
|
835
923
|
readonly operator: {
|
|
836
924
|
readonly type: "string";
|
|
837
|
-
readonly enum: readonly ["
|
|
925
|
+
readonly enum: readonly ["and", "or"];
|
|
838
926
|
};
|
|
839
927
|
readonly conditions: {
|
|
840
928
|
readonly type: "array";
|
|
@@ -846,7 +934,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
846
934
|
};
|
|
847
935
|
readonly operator: {
|
|
848
936
|
readonly type: "string";
|
|
849
|
-
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"];
|
|
850
938
|
};
|
|
851
939
|
readonly value: {
|
|
852
940
|
readonly oneOf: readonly [{
|
|
@@ -857,6 +945,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
857
945
|
readonly type: "number";
|
|
858
946
|
}];
|
|
859
947
|
};
|
|
948
|
+
readonly modifier: {
|
|
949
|
+
readonly type: "string";
|
|
950
|
+
readonly enum: readonly ["not"];
|
|
951
|
+
};
|
|
860
952
|
readonly match: {
|
|
861
953
|
readonly type: "array";
|
|
862
954
|
readonly items: {
|
|
@@ -867,7 +959,7 @@ export declare const scorecardsConfigSchema: {
|
|
|
867
959
|
};
|
|
868
960
|
readonly operator: {
|
|
869
961
|
readonly type: "string";
|
|
870
|
-
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"];
|
|
871
963
|
};
|
|
872
964
|
readonly value: {
|
|
873
965
|
readonly oneOf: readonly [{
|
|
@@ -878,6 +970,10 @@ export declare const scorecardsConfigSchema: {
|
|
|
878
970
|
readonly type: "number";
|
|
879
971
|
}];
|
|
880
972
|
};
|
|
973
|
+
readonly modifier: {
|
|
974
|
+
readonly type: "string";
|
|
975
|
+
readonly enum: readonly ["not"];
|
|
976
|
+
};
|
|
881
977
|
};
|
|
882
978
|
};
|
|
883
979
|
};
|