@gooder-ai/schemas 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3024 @@
1
+ import { z as Zod } from "zod";
2
+ export declare const DatumValueSchema: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodUnion<[Zod.ZodString, Zod.ZodNumber]>>>;
3
+ export declare const DatumSchema: Zod.ZodRecord<
4
+ Zod.ZodString,
5
+ Zod.ZodOptional<Zod.ZodNullable<Zod.ZodUnion<[Zod.ZodString, Zod.ZodNumber]>>>
6
+ >;
7
+ export declare const CustomChartDefinitionSchema: Zod.ZodEffects<
8
+ Zod.ZodObject<
9
+ {
10
+ id: Zod.ZodString;
11
+ dataInitializationCode: Zod.ZodString;
12
+ metricCalculationCode: Zod.ZodString;
13
+ metric: Zod.ZodString;
14
+ title: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodString>>;
15
+ resolution: Zod.ZodNumber;
16
+ unit: Zod.ZodNativeEnum<{
17
+ readonly Currency: "currency";
18
+ readonly Percentage: "percentage";
19
+ readonly None: "none";
20
+ }>;
21
+ currency: Zod.ZodOptional<
22
+ Zod.ZodNullable<
23
+ Zod.ZodNativeEnum<{
24
+ readonly USD: "USD";
25
+ readonly GBP: "GBP";
26
+ readonly EUR: "EUR";
27
+ readonly JPY: "JPY";
28
+ readonly AUD: "AUD";
29
+ readonly CAD: "CAD";
30
+ readonly INR: "INR";
31
+ }>
32
+ >
33
+ >;
34
+ xAxisDecimalPlaces: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodNumber>>;
35
+ yAxisDecimalPlaces: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodNumber>>;
36
+ minRange: Zod.ZodNumber;
37
+ maxRange: Zod.ZodNumber;
38
+ seriesType: Zod.ZodNativeEnum<{
39
+ readonly Line: "line";
40
+ readonly Bar: "bar";
41
+ }>;
42
+ showRangeSlider: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
43
+ showInDashboard: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
44
+ showInMetricTable: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
45
+ showBaseline: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
46
+ description: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodString>>;
47
+ metricTableRowOrder: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodNumber>>;
48
+ aspectRatio: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodNumber>>;
49
+ scaleMetric: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
50
+ suppressBar: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
51
+ suppressXAxisLabel: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
52
+ showThreshold: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
53
+ reverseXAxis: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
54
+ aiPrompt: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodString>>;
55
+ highlightType: Zod.ZodOptional<
56
+ Zod.ZodNullable<
57
+ Zod.ZodNativeEnum<{
58
+ readonly Max: "max";
59
+ readonly Min: "min";
60
+ readonly None: "none";
61
+ }>
62
+ >
63
+ >;
64
+ optimizeResolution: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
65
+ },
66
+ "strip",
67
+ Zod.ZodTypeAny,
68
+ {
69
+ id: string;
70
+ dataInitializationCode: string;
71
+ metricCalculationCode: string;
72
+ metric: string;
73
+ resolution: number;
74
+ unit: "currency" | "percentage" | "none";
75
+ minRange: number;
76
+ maxRange: number;
77
+ seriesType: "line" | "bar";
78
+ currency?: "USD" | "GBP" | "EUR" | "JPY" | "AUD" | "CAD" | "INR" | null | undefined;
79
+ title?: string | null | undefined;
80
+ xAxisDecimalPlaces?: number | null | undefined;
81
+ yAxisDecimalPlaces?: number | null | undefined;
82
+ showRangeSlider?: boolean | null | undefined;
83
+ showInDashboard?: boolean | null | undefined;
84
+ showInMetricTable?: boolean | null | undefined;
85
+ showBaseline?: boolean | null | undefined;
86
+ description?: string | null | undefined;
87
+ metricTableRowOrder?: number | null | undefined;
88
+ aspectRatio?: number | null | undefined;
89
+ scaleMetric?: boolean | null | undefined;
90
+ suppressBar?: boolean | null | undefined;
91
+ suppressXAxisLabel?: boolean | null | undefined;
92
+ showThreshold?: boolean | null | undefined;
93
+ reverseXAxis?: boolean | null | undefined;
94
+ aiPrompt?: string | null | undefined;
95
+ highlightType?: "none" | "max" | "min" | null | undefined;
96
+ optimizeResolution?: boolean | null | undefined;
97
+ },
98
+ {
99
+ id: string;
100
+ dataInitializationCode: string;
101
+ metricCalculationCode: string;
102
+ metric: string;
103
+ resolution: number;
104
+ unit: "currency" | "percentage" | "none";
105
+ minRange: number;
106
+ maxRange: number;
107
+ seriesType: "line" | "bar";
108
+ currency?: "USD" | "GBP" | "EUR" | "JPY" | "AUD" | "CAD" | "INR" | null | undefined;
109
+ title?: string | null | undefined;
110
+ xAxisDecimalPlaces?: number | null | undefined;
111
+ yAxisDecimalPlaces?: number | null | undefined;
112
+ showRangeSlider?: boolean | null | undefined;
113
+ showInDashboard?: boolean | null | undefined;
114
+ showInMetricTable?: boolean | null | undefined;
115
+ showBaseline?: boolean | null | undefined;
116
+ description?: string | null | undefined;
117
+ metricTableRowOrder?: number | null | undefined;
118
+ aspectRatio?: number | null | undefined;
119
+ scaleMetric?: boolean | null | undefined;
120
+ suppressBar?: boolean | null | undefined;
121
+ suppressXAxisLabel?: boolean | null | undefined;
122
+ showThreshold?: boolean | null | undefined;
123
+ reverseXAxis?: boolean | null | undefined;
124
+ aiPrompt?: string | null | undefined;
125
+ highlightType?: "none" | "max" | "min" | null | undefined;
126
+ optimizeResolution?: boolean | null | undefined;
127
+ }
128
+ >,
129
+ {
130
+ id: string;
131
+ dataInitializationCode: string;
132
+ metricCalculationCode: string;
133
+ metric: string;
134
+ resolution: number;
135
+ unit: "currency" | "percentage" | "none";
136
+ minRange: number;
137
+ maxRange: number;
138
+ seriesType: "line" | "bar";
139
+ currency?: "USD" | "GBP" | "EUR" | "JPY" | "AUD" | "CAD" | "INR" | null | undefined;
140
+ title?: string | null | undefined;
141
+ xAxisDecimalPlaces?: number | null | undefined;
142
+ yAxisDecimalPlaces?: number | null | undefined;
143
+ showRangeSlider?: boolean | null | undefined;
144
+ showInDashboard?: boolean | null | undefined;
145
+ showInMetricTable?: boolean | null | undefined;
146
+ showBaseline?: boolean | null | undefined;
147
+ description?: string | null | undefined;
148
+ metricTableRowOrder?: number | null | undefined;
149
+ aspectRatio?: number | null | undefined;
150
+ scaleMetric?: boolean | null | undefined;
151
+ suppressBar?: boolean | null | undefined;
152
+ suppressXAxisLabel?: boolean | null | undefined;
153
+ showThreshold?: boolean | null | undefined;
154
+ reverseXAxis?: boolean | null | undefined;
155
+ aiPrompt?: string | null | undefined;
156
+ highlightType?: "none" | "max" | "min" | null | undefined;
157
+ optimizeResolution?: boolean | null | undefined;
158
+ },
159
+ {
160
+ id: string;
161
+ dataInitializationCode: string;
162
+ metricCalculationCode: string;
163
+ metric: string;
164
+ resolution: number;
165
+ unit: "currency" | "percentage" | "none";
166
+ minRange: number;
167
+ maxRange: number;
168
+ seriesType: "line" | "bar";
169
+ currency?: "USD" | "GBP" | "EUR" | "JPY" | "AUD" | "CAD" | "INR" | null | undefined;
170
+ title?: string | null | undefined;
171
+ xAxisDecimalPlaces?: number | null | undefined;
172
+ yAxisDecimalPlaces?: number | null | undefined;
173
+ showRangeSlider?: boolean | null | undefined;
174
+ showInDashboard?: boolean | null | undefined;
175
+ showInMetricTable?: boolean | null | undefined;
176
+ showBaseline?: boolean | null | undefined;
177
+ description?: string | null | undefined;
178
+ metricTableRowOrder?: number | null | undefined;
179
+ aspectRatio?: number | null | undefined;
180
+ scaleMetric?: boolean | null | undefined;
181
+ suppressBar?: boolean | null | undefined;
182
+ suppressXAxisLabel?: boolean | null | undefined;
183
+ showThreshold?: boolean | null | undefined;
184
+ reverseXAxis?: boolean | null | undefined;
185
+ aiPrompt?: string | null | undefined;
186
+ highlightType?: "none" | "max" | "min" | null | undefined;
187
+ optimizeResolution?: boolean | null | undefined;
188
+ }
189
+ >;
190
+ export declare const ScoreSchema: Zod.ZodObject<
191
+ {
192
+ fieldName: Zod.ZodString;
193
+ fieldLabel: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodString>>;
194
+ sortOrder: Zod.ZodOptional<
195
+ Zod.ZodNullable<
196
+ Zod.ZodNativeEnum<{
197
+ readonly Ascending: "asc";
198
+ readonly Descending: "desc";
199
+ }>
200
+ >
201
+ >;
202
+ },
203
+ "strip",
204
+ Zod.ZodTypeAny,
205
+ {
206
+ fieldName: string;
207
+ fieldLabel?: string | null | undefined;
208
+ sortOrder?: "asc" | "desc" | null | undefined;
209
+ },
210
+ {
211
+ fieldName: string;
212
+ fieldLabel?: string | null | undefined;
213
+ sortOrder?: "asc" | "desc" | null | undefined;
214
+ }
215
+ >;
216
+ export declare const LayoutSchema: Zod.ZodObject<
217
+ {
218
+ i: Zod.ZodString;
219
+ x: Zod.ZodNumber;
220
+ y: Zod.ZodNumber;
221
+ w: Zod.ZodNumber;
222
+ h: Zod.ZodNumber;
223
+ minW: Zod.ZodOptional<Zod.ZodNumber>;
224
+ maxW: Zod.ZodOptional<Zod.ZodNumber>;
225
+ minH: Zod.ZodOptional<Zod.ZodNumber>;
226
+ maxH: Zod.ZodOptional<Zod.ZodNumber>;
227
+ moved: Zod.ZodOptional<Zod.ZodBoolean>;
228
+ static: Zod.ZodOptional<Zod.ZodBoolean>;
229
+ isDraggable: Zod.ZodOptional<Zod.ZodBoolean>;
230
+ isResizable: Zod.ZodOptional<Zod.ZodBoolean>;
231
+ resizeHandles: Zod.ZodOptional<Zod.ZodArray<Zod.ZodEnum<["s", "w", "e", "n", "sw", "nw", "se", "ne"]>, "many">>;
232
+ isBounded: Zod.ZodOptional<Zod.ZodBoolean>;
233
+ },
234
+ "strip",
235
+ Zod.ZodTypeAny,
236
+ {
237
+ i: string;
238
+ x: number;
239
+ y: number;
240
+ w: number;
241
+ h: number;
242
+ minW?: number | undefined;
243
+ maxW?: number | undefined;
244
+ minH?: number | undefined;
245
+ maxH?: number | undefined;
246
+ moved?: boolean | undefined;
247
+ static?: boolean | undefined;
248
+ isDraggable?: boolean | undefined;
249
+ isResizable?: boolean | undefined;
250
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
251
+ isBounded?: boolean | undefined;
252
+ },
253
+ {
254
+ i: string;
255
+ x: number;
256
+ y: number;
257
+ w: number;
258
+ h: number;
259
+ minW?: number | undefined;
260
+ maxW?: number | undefined;
261
+ minH?: number | undefined;
262
+ maxH?: number | undefined;
263
+ moved?: boolean | undefined;
264
+ static?: boolean | undefined;
265
+ isDraggable?: boolean | undefined;
266
+ isResizable?: boolean | undefined;
267
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
268
+ isBounded?: boolean | undefined;
269
+ }
270
+ >;
271
+ export declare const ChartLayoutSchema: Zod.ZodObject<
272
+ {
273
+ xl: Zod.ZodOptional<
274
+ Zod.ZodArray<
275
+ Zod.ZodObject<
276
+ {
277
+ i: Zod.ZodString;
278
+ x: Zod.ZodNumber;
279
+ y: Zod.ZodNumber;
280
+ w: Zod.ZodNumber;
281
+ h: Zod.ZodNumber;
282
+ minW: Zod.ZodOptional<Zod.ZodNumber>;
283
+ maxW: Zod.ZodOptional<Zod.ZodNumber>;
284
+ minH: Zod.ZodOptional<Zod.ZodNumber>;
285
+ maxH: Zod.ZodOptional<Zod.ZodNumber>;
286
+ moved: Zod.ZodOptional<Zod.ZodBoolean>;
287
+ static: Zod.ZodOptional<Zod.ZodBoolean>;
288
+ isDraggable: Zod.ZodOptional<Zod.ZodBoolean>;
289
+ isResizable: Zod.ZodOptional<Zod.ZodBoolean>;
290
+ resizeHandles: Zod.ZodOptional<
291
+ Zod.ZodArray<Zod.ZodEnum<["s", "w", "e", "n", "sw", "nw", "se", "ne"]>, "many">
292
+ >;
293
+ isBounded: Zod.ZodOptional<Zod.ZodBoolean>;
294
+ },
295
+ "strip",
296
+ Zod.ZodTypeAny,
297
+ {
298
+ i: string;
299
+ x: number;
300
+ y: number;
301
+ w: number;
302
+ h: number;
303
+ minW?: number | undefined;
304
+ maxW?: number | undefined;
305
+ minH?: number | undefined;
306
+ maxH?: number | undefined;
307
+ moved?: boolean | undefined;
308
+ static?: boolean | undefined;
309
+ isDraggable?: boolean | undefined;
310
+ isResizable?: boolean | undefined;
311
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
312
+ isBounded?: boolean | undefined;
313
+ },
314
+ {
315
+ i: string;
316
+ x: number;
317
+ y: number;
318
+ w: number;
319
+ h: number;
320
+ minW?: number | undefined;
321
+ maxW?: number | undefined;
322
+ minH?: number | undefined;
323
+ maxH?: number | undefined;
324
+ moved?: boolean | undefined;
325
+ static?: boolean | undefined;
326
+ isDraggable?: boolean | undefined;
327
+ isResizable?: boolean | undefined;
328
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
329
+ isBounded?: boolean | undefined;
330
+ }
331
+ >,
332
+ "many"
333
+ >
334
+ >;
335
+ lg: Zod.ZodOptional<
336
+ Zod.ZodArray<
337
+ Zod.ZodObject<
338
+ {
339
+ i: Zod.ZodString;
340
+ x: Zod.ZodNumber;
341
+ y: Zod.ZodNumber;
342
+ w: Zod.ZodNumber;
343
+ h: Zod.ZodNumber;
344
+ minW: Zod.ZodOptional<Zod.ZodNumber>;
345
+ maxW: Zod.ZodOptional<Zod.ZodNumber>;
346
+ minH: Zod.ZodOptional<Zod.ZodNumber>;
347
+ maxH: Zod.ZodOptional<Zod.ZodNumber>;
348
+ moved: Zod.ZodOptional<Zod.ZodBoolean>;
349
+ static: Zod.ZodOptional<Zod.ZodBoolean>;
350
+ isDraggable: Zod.ZodOptional<Zod.ZodBoolean>;
351
+ isResizable: Zod.ZodOptional<Zod.ZodBoolean>;
352
+ resizeHandles: Zod.ZodOptional<
353
+ Zod.ZodArray<Zod.ZodEnum<["s", "w", "e", "n", "sw", "nw", "se", "ne"]>, "many">
354
+ >;
355
+ isBounded: Zod.ZodOptional<Zod.ZodBoolean>;
356
+ },
357
+ "strip",
358
+ Zod.ZodTypeAny,
359
+ {
360
+ i: string;
361
+ x: number;
362
+ y: number;
363
+ w: number;
364
+ h: number;
365
+ minW?: number | undefined;
366
+ maxW?: number | undefined;
367
+ minH?: number | undefined;
368
+ maxH?: number | undefined;
369
+ moved?: boolean | undefined;
370
+ static?: boolean | undefined;
371
+ isDraggable?: boolean | undefined;
372
+ isResizable?: boolean | undefined;
373
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
374
+ isBounded?: boolean | undefined;
375
+ },
376
+ {
377
+ i: string;
378
+ x: number;
379
+ y: number;
380
+ w: number;
381
+ h: number;
382
+ minW?: number | undefined;
383
+ maxW?: number | undefined;
384
+ minH?: number | undefined;
385
+ maxH?: number | undefined;
386
+ moved?: boolean | undefined;
387
+ static?: boolean | undefined;
388
+ isDraggable?: boolean | undefined;
389
+ isResizable?: boolean | undefined;
390
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
391
+ isBounded?: boolean | undefined;
392
+ }
393
+ >,
394
+ "many"
395
+ >
396
+ >;
397
+ md: Zod.ZodOptional<
398
+ Zod.ZodArray<
399
+ Zod.ZodObject<
400
+ {
401
+ i: Zod.ZodString;
402
+ x: Zod.ZodNumber;
403
+ y: Zod.ZodNumber;
404
+ w: Zod.ZodNumber;
405
+ h: Zod.ZodNumber;
406
+ minW: Zod.ZodOptional<Zod.ZodNumber>;
407
+ maxW: Zod.ZodOptional<Zod.ZodNumber>;
408
+ minH: Zod.ZodOptional<Zod.ZodNumber>;
409
+ maxH: Zod.ZodOptional<Zod.ZodNumber>;
410
+ moved: Zod.ZodOptional<Zod.ZodBoolean>;
411
+ static: Zod.ZodOptional<Zod.ZodBoolean>;
412
+ isDraggable: Zod.ZodOptional<Zod.ZodBoolean>;
413
+ isResizable: Zod.ZodOptional<Zod.ZodBoolean>;
414
+ resizeHandles: Zod.ZodOptional<
415
+ Zod.ZodArray<Zod.ZodEnum<["s", "w", "e", "n", "sw", "nw", "se", "ne"]>, "many">
416
+ >;
417
+ isBounded: Zod.ZodOptional<Zod.ZodBoolean>;
418
+ },
419
+ "strip",
420
+ Zod.ZodTypeAny,
421
+ {
422
+ i: string;
423
+ x: number;
424
+ y: number;
425
+ w: number;
426
+ h: number;
427
+ minW?: number | undefined;
428
+ maxW?: number | undefined;
429
+ minH?: number | undefined;
430
+ maxH?: number | undefined;
431
+ moved?: boolean | undefined;
432
+ static?: boolean | undefined;
433
+ isDraggable?: boolean | undefined;
434
+ isResizable?: boolean | undefined;
435
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
436
+ isBounded?: boolean | undefined;
437
+ },
438
+ {
439
+ i: string;
440
+ x: number;
441
+ y: number;
442
+ w: number;
443
+ h: number;
444
+ minW?: number | undefined;
445
+ maxW?: number | undefined;
446
+ minH?: number | undefined;
447
+ maxH?: number | undefined;
448
+ moved?: boolean | undefined;
449
+ static?: boolean | undefined;
450
+ isDraggable?: boolean | undefined;
451
+ isResizable?: boolean | undefined;
452
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
453
+ isBounded?: boolean | undefined;
454
+ }
455
+ >,
456
+ "many"
457
+ >
458
+ >;
459
+ sm: Zod.ZodOptional<
460
+ Zod.ZodArray<
461
+ Zod.ZodObject<
462
+ {
463
+ i: Zod.ZodString;
464
+ x: Zod.ZodNumber;
465
+ y: Zod.ZodNumber;
466
+ w: Zod.ZodNumber;
467
+ h: Zod.ZodNumber;
468
+ minW: Zod.ZodOptional<Zod.ZodNumber>;
469
+ maxW: Zod.ZodOptional<Zod.ZodNumber>;
470
+ minH: Zod.ZodOptional<Zod.ZodNumber>;
471
+ maxH: Zod.ZodOptional<Zod.ZodNumber>;
472
+ moved: Zod.ZodOptional<Zod.ZodBoolean>;
473
+ static: Zod.ZodOptional<Zod.ZodBoolean>;
474
+ isDraggable: Zod.ZodOptional<Zod.ZodBoolean>;
475
+ isResizable: Zod.ZodOptional<Zod.ZodBoolean>;
476
+ resizeHandles: Zod.ZodOptional<
477
+ Zod.ZodArray<Zod.ZodEnum<["s", "w", "e", "n", "sw", "nw", "se", "ne"]>, "many">
478
+ >;
479
+ isBounded: Zod.ZodOptional<Zod.ZodBoolean>;
480
+ },
481
+ "strip",
482
+ Zod.ZodTypeAny,
483
+ {
484
+ i: string;
485
+ x: number;
486
+ y: number;
487
+ w: number;
488
+ h: number;
489
+ minW?: number | undefined;
490
+ maxW?: number | undefined;
491
+ minH?: number | undefined;
492
+ maxH?: number | undefined;
493
+ moved?: boolean | undefined;
494
+ static?: boolean | undefined;
495
+ isDraggable?: boolean | undefined;
496
+ isResizable?: boolean | undefined;
497
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
498
+ isBounded?: boolean | undefined;
499
+ },
500
+ {
501
+ i: string;
502
+ x: number;
503
+ y: number;
504
+ w: number;
505
+ h: number;
506
+ minW?: number | undefined;
507
+ maxW?: number | undefined;
508
+ minH?: number | undefined;
509
+ maxH?: number | undefined;
510
+ moved?: boolean | undefined;
511
+ static?: boolean | undefined;
512
+ isDraggable?: boolean | undefined;
513
+ isResizable?: boolean | undefined;
514
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
515
+ isBounded?: boolean | undefined;
516
+ }
517
+ >,
518
+ "many"
519
+ >
520
+ >;
521
+ xs: Zod.ZodOptional<
522
+ Zod.ZodArray<
523
+ Zod.ZodObject<
524
+ {
525
+ i: Zod.ZodString;
526
+ x: Zod.ZodNumber;
527
+ y: Zod.ZodNumber;
528
+ w: Zod.ZodNumber;
529
+ h: Zod.ZodNumber;
530
+ minW: Zod.ZodOptional<Zod.ZodNumber>;
531
+ maxW: Zod.ZodOptional<Zod.ZodNumber>;
532
+ minH: Zod.ZodOptional<Zod.ZodNumber>;
533
+ maxH: Zod.ZodOptional<Zod.ZodNumber>;
534
+ moved: Zod.ZodOptional<Zod.ZodBoolean>;
535
+ static: Zod.ZodOptional<Zod.ZodBoolean>;
536
+ isDraggable: Zod.ZodOptional<Zod.ZodBoolean>;
537
+ isResizable: Zod.ZodOptional<Zod.ZodBoolean>;
538
+ resizeHandles: Zod.ZodOptional<
539
+ Zod.ZodArray<Zod.ZodEnum<["s", "w", "e", "n", "sw", "nw", "se", "ne"]>, "many">
540
+ >;
541
+ isBounded: Zod.ZodOptional<Zod.ZodBoolean>;
542
+ },
543
+ "strip",
544
+ Zod.ZodTypeAny,
545
+ {
546
+ i: string;
547
+ x: number;
548
+ y: number;
549
+ w: number;
550
+ h: number;
551
+ minW?: number | undefined;
552
+ maxW?: number | undefined;
553
+ minH?: number | undefined;
554
+ maxH?: number | undefined;
555
+ moved?: boolean | undefined;
556
+ static?: boolean | undefined;
557
+ isDraggable?: boolean | undefined;
558
+ isResizable?: boolean | undefined;
559
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
560
+ isBounded?: boolean | undefined;
561
+ },
562
+ {
563
+ i: string;
564
+ x: number;
565
+ y: number;
566
+ w: number;
567
+ h: number;
568
+ minW?: number | undefined;
569
+ maxW?: number | undefined;
570
+ minH?: number | undefined;
571
+ maxH?: number | undefined;
572
+ moved?: boolean | undefined;
573
+ static?: boolean | undefined;
574
+ isDraggable?: boolean | undefined;
575
+ isResizable?: boolean | undefined;
576
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
577
+ isBounded?: boolean | undefined;
578
+ }
579
+ >,
580
+ "many"
581
+ >
582
+ >;
583
+ },
584
+ "strip",
585
+ Zod.ZodTypeAny,
586
+ {
587
+ xl?:
588
+ | {
589
+ i: string;
590
+ x: number;
591
+ y: number;
592
+ w: number;
593
+ h: number;
594
+ minW?: number | undefined;
595
+ maxW?: number | undefined;
596
+ minH?: number | undefined;
597
+ maxH?: number | undefined;
598
+ moved?: boolean | undefined;
599
+ static?: boolean | undefined;
600
+ isDraggable?: boolean | undefined;
601
+ isResizable?: boolean | undefined;
602
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
603
+ isBounded?: boolean | undefined;
604
+ }[]
605
+ | undefined;
606
+ lg?:
607
+ | {
608
+ i: string;
609
+ x: number;
610
+ y: number;
611
+ w: number;
612
+ h: number;
613
+ minW?: number | undefined;
614
+ maxW?: number | undefined;
615
+ minH?: number | undefined;
616
+ maxH?: number | undefined;
617
+ moved?: boolean | undefined;
618
+ static?: boolean | undefined;
619
+ isDraggable?: boolean | undefined;
620
+ isResizable?: boolean | undefined;
621
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
622
+ isBounded?: boolean | undefined;
623
+ }[]
624
+ | undefined;
625
+ md?:
626
+ | {
627
+ i: string;
628
+ x: number;
629
+ y: number;
630
+ w: number;
631
+ h: number;
632
+ minW?: number | undefined;
633
+ maxW?: number | undefined;
634
+ minH?: number | undefined;
635
+ maxH?: number | undefined;
636
+ moved?: boolean | undefined;
637
+ static?: boolean | undefined;
638
+ isDraggable?: boolean | undefined;
639
+ isResizable?: boolean | undefined;
640
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
641
+ isBounded?: boolean | undefined;
642
+ }[]
643
+ | undefined;
644
+ sm?:
645
+ | {
646
+ i: string;
647
+ x: number;
648
+ y: number;
649
+ w: number;
650
+ h: number;
651
+ minW?: number | undefined;
652
+ maxW?: number | undefined;
653
+ minH?: number | undefined;
654
+ maxH?: number | undefined;
655
+ moved?: boolean | undefined;
656
+ static?: boolean | undefined;
657
+ isDraggable?: boolean | undefined;
658
+ isResizable?: boolean | undefined;
659
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
660
+ isBounded?: boolean | undefined;
661
+ }[]
662
+ | undefined;
663
+ xs?:
664
+ | {
665
+ i: string;
666
+ x: number;
667
+ y: number;
668
+ w: number;
669
+ h: number;
670
+ minW?: number | undefined;
671
+ maxW?: number | undefined;
672
+ minH?: number | undefined;
673
+ maxH?: number | undefined;
674
+ moved?: boolean | undefined;
675
+ static?: boolean | undefined;
676
+ isDraggable?: boolean | undefined;
677
+ isResizable?: boolean | undefined;
678
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
679
+ isBounded?: boolean | undefined;
680
+ }[]
681
+ | undefined;
682
+ },
683
+ {
684
+ xl?:
685
+ | {
686
+ i: string;
687
+ x: number;
688
+ y: number;
689
+ w: number;
690
+ h: number;
691
+ minW?: number | undefined;
692
+ maxW?: number | undefined;
693
+ minH?: number | undefined;
694
+ maxH?: number | undefined;
695
+ moved?: boolean | undefined;
696
+ static?: boolean | undefined;
697
+ isDraggable?: boolean | undefined;
698
+ isResizable?: boolean | undefined;
699
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
700
+ isBounded?: boolean | undefined;
701
+ }[]
702
+ | undefined;
703
+ lg?:
704
+ | {
705
+ i: string;
706
+ x: number;
707
+ y: number;
708
+ w: number;
709
+ h: number;
710
+ minW?: number | undefined;
711
+ maxW?: number | undefined;
712
+ minH?: number | undefined;
713
+ maxH?: number | undefined;
714
+ moved?: boolean | undefined;
715
+ static?: boolean | undefined;
716
+ isDraggable?: boolean | undefined;
717
+ isResizable?: boolean | undefined;
718
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
719
+ isBounded?: boolean | undefined;
720
+ }[]
721
+ | undefined;
722
+ md?:
723
+ | {
724
+ i: string;
725
+ x: number;
726
+ y: number;
727
+ w: number;
728
+ h: number;
729
+ minW?: number | undefined;
730
+ maxW?: number | undefined;
731
+ minH?: number | undefined;
732
+ maxH?: number | undefined;
733
+ moved?: boolean | undefined;
734
+ static?: boolean | undefined;
735
+ isDraggable?: boolean | undefined;
736
+ isResizable?: boolean | undefined;
737
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
738
+ isBounded?: boolean | undefined;
739
+ }[]
740
+ | undefined;
741
+ sm?:
742
+ | {
743
+ i: string;
744
+ x: number;
745
+ y: number;
746
+ w: number;
747
+ h: number;
748
+ minW?: number | undefined;
749
+ maxW?: number | undefined;
750
+ minH?: number | undefined;
751
+ maxH?: number | undefined;
752
+ moved?: boolean | undefined;
753
+ static?: boolean | undefined;
754
+ isDraggable?: boolean | undefined;
755
+ isResizable?: boolean | undefined;
756
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
757
+ isBounded?: boolean | undefined;
758
+ }[]
759
+ | undefined;
760
+ xs?:
761
+ | {
762
+ i: string;
763
+ x: number;
764
+ y: number;
765
+ w: number;
766
+ h: number;
767
+ minW?: number | undefined;
768
+ maxW?: number | undefined;
769
+ minH?: number | undefined;
770
+ maxH?: number | undefined;
771
+ moved?: boolean | undefined;
772
+ static?: boolean | undefined;
773
+ isDraggable?: boolean | undefined;
774
+ isResizable?: boolean | undefined;
775
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
776
+ isBounded?: boolean | undefined;
777
+ }[]
778
+ | undefined;
779
+ }
780
+ >;
781
+ export declare const SliderInfoSchema: Zod.ZodEffects<
782
+ Zod.ZodObject<
783
+ {
784
+ id: Zod.ZodString;
785
+ name: Zod.ZodString;
786
+ description: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodString>>;
787
+ min: Zod.ZodNumber;
788
+ max: Zod.ZodNumber;
789
+ value: Zod.ZodNumber;
790
+ label: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodString>>;
791
+ },
792
+ "strip",
793
+ Zod.ZodTypeAny,
794
+ {
795
+ max: number;
796
+ min: number;
797
+ value: number;
798
+ id: string;
799
+ name: string;
800
+ description?: string | null | undefined;
801
+ label?: string | null | undefined;
802
+ },
803
+ {
804
+ max: number;
805
+ min: number;
806
+ value: number;
807
+ id: string;
808
+ name: string;
809
+ description?: string | null | undefined;
810
+ label?: string | null | undefined;
811
+ }
812
+ >,
813
+ {
814
+ max: number;
815
+ min: number;
816
+ value: number;
817
+ id: string;
818
+ name: string;
819
+ description?: string | null | undefined;
820
+ label?: string | null | undefined;
821
+ },
822
+ {
823
+ max: number;
824
+ min: number;
825
+ value: number;
826
+ id: string;
827
+ name: string;
828
+ description?: string | null | undefined;
829
+ label?: string | null | undefined;
830
+ }
831
+ >;
832
+ export declare const SliderDefinitionSchema: Zod.ZodEffects<
833
+ Zod.ZodEffects<
834
+ Zod.ZodObject<
835
+ {
836
+ id: Zod.ZodString;
837
+ name: Zod.ZodString;
838
+ description: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodString>>;
839
+ min: Zod.ZodNumber;
840
+ max: Zod.ZodNumber;
841
+ value: Zod.ZodNumber;
842
+ label: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodString>>;
843
+ },
844
+ "strip",
845
+ Zod.ZodTypeAny,
846
+ {
847
+ max: number;
848
+ min: number;
849
+ value: number;
850
+ id: string;
851
+ name: string;
852
+ description?: string | null | undefined;
853
+ label?: string | null | undefined;
854
+ },
855
+ {
856
+ max: number;
857
+ min: number;
858
+ value: number;
859
+ id: string;
860
+ name: string;
861
+ description?: string | null | undefined;
862
+ label?: string | null | undefined;
863
+ }
864
+ >,
865
+ {
866
+ max: number;
867
+ min: number;
868
+ value: number;
869
+ id: string;
870
+ name: string;
871
+ description?: string | null | undefined;
872
+ label?: string | null | undefined;
873
+ },
874
+ {
875
+ max: number;
876
+ min: number;
877
+ value: number;
878
+ id: string;
879
+ name: string;
880
+ description?: string | null | undefined;
881
+ label?: string | null | undefined;
882
+ }
883
+ >,
884
+ {
885
+ max: number;
886
+ min: number;
887
+ value: number;
888
+ id: string;
889
+ name: string;
890
+ description?: string | null | undefined;
891
+ label?: string | null | undefined;
892
+ },
893
+ {
894
+ max: number;
895
+ min: number;
896
+ value: number;
897
+ id: string;
898
+ name: string;
899
+ description?: string | null | undefined;
900
+ label?: string | null | undefined;
901
+ }
902
+ >;
903
+ export declare const SlidersSchema: Zod.ZodEffects<
904
+ Zod.ZodArray<
905
+ Zod.ZodEffects<
906
+ Zod.ZodEffects<
907
+ Zod.ZodObject<
908
+ {
909
+ id: Zod.ZodString;
910
+ name: Zod.ZodString;
911
+ description: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodString>>;
912
+ min: Zod.ZodNumber;
913
+ max: Zod.ZodNumber;
914
+ value: Zod.ZodNumber;
915
+ label: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodString>>;
916
+ },
917
+ "strip",
918
+ Zod.ZodTypeAny,
919
+ {
920
+ max: number;
921
+ min: number;
922
+ value: number;
923
+ id: string;
924
+ name: string;
925
+ description?: string | null | undefined;
926
+ label?: string | null | undefined;
927
+ },
928
+ {
929
+ max: number;
930
+ min: number;
931
+ value: number;
932
+ id: string;
933
+ name: string;
934
+ description?: string | null | undefined;
935
+ label?: string | null | undefined;
936
+ }
937
+ >,
938
+ {
939
+ max: number;
940
+ min: number;
941
+ value: number;
942
+ id: string;
943
+ name: string;
944
+ description?: string | null | undefined;
945
+ label?: string | null | undefined;
946
+ },
947
+ {
948
+ max: number;
949
+ min: number;
950
+ value: number;
951
+ id: string;
952
+ name: string;
953
+ description?: string | null | undefined;
954
+ label?: string | null | undefined;
955
+ }
956
+ >,
957
+ {
958
+ max: number;
959
+ min: number;
960
+ value: number;
961
+ id: string;
962
+ name: string;
963
+ description?: string | null | undefined;
964
+ label?: string | null | undefined;
965
+ },
966
+ {
967
+ max: number;
968
+ min: number;
969
+ value: number;
970
+ id: string;
971
+ name: string;
972
+ description?: string | null | undefined;
973
+ label?: string | null | undefined;
974
+ }
975
+ >,
976
+ "many"
977
+ >,
978
+ {
979
+ max: number;
980
+ min: number;
981
+ value: number;
982
+ id: string;
983
+ name: string;
984
+ description?: string | null | undefined;
985
+ label?: string | null | undefined;
986
+ }[],
987
+ {
988
+ max: number;
989
+ min: number;
990
+ value: number;
991
+ id: string;
992
+ name: string;
993
+ description?: string | null | undefined;
994
+ label?: string | null | undefined;
995
+ }[]
996
+ >;
997
+ export declare const SliderAssociationSchema: Zod.ZodObject<
998
+ {
999
+ sliderID: Zod.ZodString;
1000
+ uswID: Zod.ZodString;
1001
+ showInDashboard: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
1002
+ },
1003
+ "strip",
1004
+ Zod.ZodTypeAny,
1005
+ {
1006
+ sliderID: string;
1007
+ uswID: string;
1008
+ showInDashboard?: boolean | null | undefined;
1009
+ },
1010
+ {
1011
+ sliderID: string;
1012
+ uswID: string;
1013
+ showInDashboard?: boolean | null | undefined;
1014
+ }
1015
+ >;
1016
+ export declare const RuleSchema: Zod.ZodEffects<
1017
+ Zod.ZodObject<
1018
+ {
1019
+ id: Zod.ZodString;
1020
+ value: Zod.ZodUnion<
1021
+ [
1022
+ Zod.ZodNumber,
1023
+ Zod.ZodString,
1024
+ Zod.ZodBoolean,
1025
+ Zod.ZodArray<Zod.ZodUnion<[Zod.ZodString, Zod.ZodNumber, Zod.ZodBoolean]>, "many">,
1026
+ ]
1027
+ >;
1028
+ operator: Zod.ZodNativeEnum<{
1029
+ readonly Equal: "===";
1030
+ readonly GreaterThan: ">";
1031
+ readonly LessThan: "<";
1032
+ readonly GreaterThanEqual: ">=";
1033
+ readonly LessThanEqual: "<=";
1034
+ readonly NotEqual: "!==";
1035
+ readonly In: "in";
1036
+ readonly Between: "between";
1037
+ readonly BetweenInclusive: "betweenInclusive";
1038
+ }>;
1039
+ model: Zod.ZodString;
1040
+ },
1041
+ "strip",
1042
+ Zod.ZodTypeAny,
1043
+ {
1044
+ value: string | number | boolean | (string | number | boolean)[];
1045
+ id: string;
1046
+ operator: "===" | ">" | "<" | ">=" | "<=" | "!==" | "in" | "between" | "betweenInclusive";
1047
+ model: string;
1048
+ },
1049
+ {
1050
+ value: string | number | boolean | (string | number | boolean)[];
1051
+ id: string;
1052
+ operator: "===" | ">" | "<" | ">=" | "<=" | "!==" | "in" | "between" | "betweenInclusive";
1053
+ model: string;
1054
+ }
1055
+ >,
1056
+ {
1057
+ value: string | number | boolean | (string | number | boolean)[];
1058
+ id: string;
1059
+ operator: "===" | ">" | "<" | ">=" | "<=" | "!==" | "in" | "between" | "betweenInclusive";
1060
+ model: string;
1061
+ },
1062
+ {
1063
+ value: string | number | boolean | (string | number | boolean)[];
1064
+ id: string;
1065
+ operator: "===" | ">" | "<" | ">=" | "<=" | "!==" | "in" | "between" | "betweenInclusive";
1066
+ model: string;
1067
+ }
1068
+ >;
1069
+ export declare const FilterSchema: Zod.ZodEffects<
1070
+ Zod.ZodObject<
1071
+ {
1072
+ name: Zod.ZodString;
1073
+ rules: Zod.ZodArray<Zod.ZodString, "many">;
1074
+ joinBy: Zod.ZodOptional<
1075
+ Zod.ZodNullable<
1076
+ Zod.ZodNativeEnum<{
1077
+ readonly And: "and";
1078
+ readonly Or: "or";
1079
+ }>
1080
+ >
1081
+ >;
1082
+ },
1083
+ "strip",
1084
+ Zod.ZodTypeAny,
1085
+ {
1086
+ name: string;
1087
+ rules: string[];
1088
+ joinBy?: "and" | "or" | null | undefined;
1089
+ },
1090
+ {
1091
+ name: string;
1092
+ rules: string[];
1093
+ joinBy?: "and" | "or" | null | undefined;
1094
+ }
1095
+ >,
1096
+ {
1097
+ name: string;
1098
+ rules: string[];
1099
+ joinBy?: "and" | "or" | null | undefined;
1100
+ },
1101
+ {
1102
+ name: string;
1103
+ rules: string[];
1104
+ joinBy?: "and" | "or" | null | undefined;
1105
+ }
1106
+ >;
1107
+ export declare const FiltersSchema: Zod.ZodEffects<
1108
+ Zod.ZodArray<
1109
+ Zod.ZodEffects<
1110
+ Zod.ZodObject<
1111
+ {
1112
+ name: Zod.ZodString;
1113
+ rules: Zod.ZodArray<Zod.ZodString, "many">;
1114
+ joinBy: Zod.ZodOptional<
1115
+ Zod.ZodNullable<
1116
+ Zod.ZodNativeEnum<{
1117
+ readonly And: "and";
1118
+ readonly Or: "or";
1119
+ }>
1120
+ >
1121
+ >;
1122
+ },
1123
+ "strip",
1124
+ Zod.ZodTypeAny,
1125
+ {
1126
+ name: string;
1127
+ rules: string[];
1128
+ joinBy?: "and" | "or" | null | undefined;
1129
+ },
1130
+ {
1131
+ name: string;
1132
+ rules: string[];
1133
+ joinBy?: "and" | "or" | null | undefined;
1134
+ }
1135
+ >,
1136
+ {
1137
+ name: string;
1138
+ rules: string[];
1139
+ joinBy?: "and" | "or" | null | undefined;
1140
+ },
1141
+ {
1142
+ name: string;
1143
+ rules: string[];
1144
+ joinBy?: "and" | "or" | null | undefined;
1145
+ }
1146
+ >,
1147
+ "many"
1148
+ >,
1149
+ {
1150
+ name: string;
1151
+ rules: string[];
1152
+ joinBy?: "and" | "or" | null | undefined;
1153
+ }[],
1154
+ {
1155
+ name: string;
1156
+ rules: string[];
1157
+ joinBy?: "and" | "or" | null | undefined;
1158
+ }[]
1159
+ >;
1160
+ export declare const VariableSelectorSchema: Zod.ZodObject<
1161
+ {
1162
+ name: Zod.ZodString;
1163
+ label: Zod.ZodString;
1164
+ },
1165
+ "strip",
1166
+ Zod.ZodTypeAny,
1167
+ {
1168
+ name: string;
1169
+ label: string;
1170
+ },
1171
+ {
1172
+ name: string;
1173
+ label: string;
1174
+ }
1175
+ >;
1176
+ export declare const VariableSelectorsSchema: Zod.ZodEffects<
1177
+ Zod.ZodEffects<
1178
+ Zod.ZodArray<
1179
+ Zod.ZodObject<
1180
+ {
1181
+ name: Zod.ZodString;
1182
+ label: Zod.ZodString;
1183
+ },
1184
+ "strip",
1185
+ Zod.ZodTypeAny,
1186
+ {
1187
+ name: string;
1188
+ label: string;
1189
+ },
1190
+ {
1191
+ name: string;
1192
+ label: string;
1193
+ }
1194
+ >,
1195
+ "many"
1196
+ >,
1197
+ {
1198
+ name: string;
1199
+ label: string;
1200
+ }[],
1201
+ {
1202
+ name: string;
1203
+ label: string;
1204
+ }[]
1205
+ >,
1206
+ {
1207
+ name: string;
1208
+ label: string;
1209
+ }[],
1210
+ {
1211
+ name: string;
1212
+ label: string;
1213
+ }[]
1214
+ >;
1215
+ export declare const ChartDefinitionSchema: Zod.ZodEffects<
1216
+ Zod.ZodObject<
1217
+ {
1218
+ version: Zod.ZodDefault<Zod.ZodString>;
1219
+ isOffline: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
1220
+ datasetID: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodString>>;
1221
+ title: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodString>>;
1222
+ scores: Zod.ZodArray<
1223
+ Zod.ZodObject<
1224
+ {
1225
+ fieldName: Zod.ZodString;
1226
+ fieldLabel: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodString>>;
1227
+ sortOrder: Zod.ZodOptional<
1228
+ Zod.ZodNullable<
1229
+ Zod.ZodNativeEnum<{
1230
+ readonly Ascending: "asc";
1231
+ readonly Descending: "desc";
1232
+ }>
1233
+ >
1234
+ >;
1235
+ },
1236
+ "strip",
1237
+ Zod.ZodTypeAny,
1238
+ {
1239
+ fieldName: string;
1240
+ fieldLabel?: string | null | undefined;
1241
+ sortOrder?: "asc" | "desc" | null | undefined;
1242
+ },
1243
+ {
1244
+ fieldName: string;
1245
+ fieldLabel?: string | null | undefined;
1246
+ sortOrder?: "asc" | "desc" | null | undefined;
1247
+ }
1248
+ >,
1249
+ "many"
1250
+ >;
1251
+ dependentVariable: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodString>>;
1252
+ positivePolarityValues: Zod.ZodOptional<
1253
+ Zod.ZodNullable<
1254
+ Zod.ZodArray<Zod.ZodOptional<Zod.ZodNullable<Zod.ZodUnion<[Zod.ZodString, Zod.ZodNumber]>>>, "many">
1255
+ >
1256
+ >;
1257
+ projectedPopulation: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodNumber>>;
1258
+ customCharts: Zod.ZodOptional<
1259
+ Zod.ZodNullable<
1260
+ Zod.ZodArray<
1261
+ Zod.ZodEffects<
1262
+ Zod.ZodObject<
1263
+ {
1264
+ id: Zod.ZodString;
1265
+ dataInitializationCode: Zod.ZodString;
1266
+ metricCalculationCode: Zod.ZodString;
1267
+ metric: Zod.ZodString;
1268
+ title: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodString>>;
1269
+ resolution: Zod.ZodNumber;
1270
+ unit: Zod.ZodNativeEnum<{
1271
+ readonly Currency: "currency";
1272
+ readonly Percentage: "percentage";
1273
+ readonly None: "none";
1274
+ }>;
1275
+ currency: Zod.ZodOptional<
1276
+ Zod.ZodNullable<
1277
+ Zod.ZodNativeEnum<{
1278
+ readonly USD: "USD";
1279
+ readonly GBP: "GBP";
1280
+ readonly EUR: "EUR";
1281
+ readonly JPY: "JPY";
1282
+ readonly AUD: "AUD";
1283
+ readonly CAD: "CAD";
1284
+ readonly INR: "INR";
1285
+ }>
1286
+ >
1287
+ >;
1288
+ xAxisDecimalPlaces: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodNumber>>;
1289
+ yAxisDecimalPlaces: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodNumber>>;
1290
+ minRange: Zod.ZodNumber;
1291
+ maxRange: Zod.ZodNumber;
1292
+ seriesType: Zod.ZodNativeEnum<{
1293
+ readonly Line: "line";
1294
+ readonly Bar: "bar";
1295
+ }>;
1296
+ showRangeSlider: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
1297
+ showInDashboard: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
1298
+ showInMetricTable: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
1299
+ showBaseline: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
1300
+ description: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodString>>;
1301
+ metricTableRowOrder: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodNumber>>;
1302
+ aspectRatio: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodNumber>>;
1303
+ scaleMetric: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
1304
+ suppressBar: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
1305
+ suppressXAxisLabel: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
1306
+ showThreshold: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
1307
+ reverseXAxis: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
1308
+ aiPrompt: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodString>>;
1309
+ highlightType: Zod.ZodOptional<
1310
+ Zod.ZodNullable<
1311
+ Zod.ZodNativeEnum<{
1312
+ readonly Max: "max";
1313
+ readonly Min: "min";
1314
+ readonly None: "none";
1315
+ }>
1316
+ >
1317
+ >;
1318
+ optimizeResolution: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
1319
+ },
1320
+ "strip",
1321
+ Zod.ZodTypeAny,
1322
+ {
1323
+ id: string;
1324
+ dataInitializationCode: string;
1325
+ metricCalculationCode: string;
1326
+ metric: string;
1327
+ resolution: number;
1328
+ unit: "currency" | "percentage" | "none";
1329
+ minRange: number;
1330
+ maxRange: number;
1331
+ seriesType: "line" | "bar";
1332
+ currency?: "USD" | "GBP" | "EUR" | "JPY" | "AUD" | "CAD" | "INR" | null | undefined;
1333
+ title?: string | null | undefined;
1334
+ xAxisDecimalPlaces?: number | null | undefined;
1335
+ yAxisDecimalPlaces?: number | null | undefined;
1336
+ showRangeSlider?: boolean | null | undefined;
1337
+ showInDashboard?: boolean | null | undefined;
1338
+ showInMetricTable?: boolean | null | undefined;
1339
+ showBaseline?: boolean | null | undefined;
1340
+ description?: string | null | undefined;
1341
+ metricTableRowOrder?: number | null | undefined;
1342
+ aspectRatio?: number | null | undefined;
1343
+ scaleMetric?: boolean | null | undefined;
1344
+ suppressBar?: boolean | null | undefined;
1345
+ suppressXAxisLabel?: boolean | null | undefined;
1346
+ showThreshold?: boolean | null | undefined;
1347
+ reverseXAxis?: boolean | null | undefined;
1348
+ aiPrompt?: string | null | undefined;
1349
+ highlightType?: "none" | "max" | "min" | null | undefined;
1350
+ optimizeResolution?: boolean | null | undefined;
1351
+ },
1352
+ {
1353
+ id: string;
1354
+ dataInitializationCode: string;
1355
+ metricCalculationCode: string;
1356
+ metric: string;
1357
+ resolution: number;
1358
+ unit: "currency" | "percentage" | "none";
1359
+ minRange: number;
1360
+ maxRange: number;
1361
+ seriesType: "line" | "bar";
1362
+ currency?: "USD" | "GBP" | "EUR" | "JPY" | "AUD" | "CAD" | "INR" | null | undefined;
1363
+ title?: string | null | undefined;
1364
+ xAxisDecimalPlaces?: number | null | undefined;
1365
+ yAxisDecimalPlaces?: number | null | undefined;
1366
+ showRangeSlider?: boolean | null | undefined;
1367
+ showInDashboard?: boolean | null | undefined;
1368
+ showInMetricTable?: boolean | null | undefined;
1369
+ showBaseline?: boolean | null | undefined;
1370
+ description?: string | null | undefined;
1371
+ metricTableRowOrder?: number | null | undefined;
1372
+ aspectRatio?: number | null | undefined;
1373
+ scaleMetric?: boolean | null | undefined;
1374
+ suppressBar?: boolean | null | undefined;
1375
+ suppressXAxisLabel?: boolean | null | undefined;
1376
+ showThreshold?: boolean | null | undefined;
1377
+ reverseXAxis?: boolean | null | undefined;
1378
+ aiPrompt?: string | null | undefined;
1379
+ highlightType?: "none" | "max" | "min" | null | undefined;
1380
+ optimizeResolution?: boolean | null | undefined;
1381
+ }
1382
+ >,
1383
+ {
1384
+ id: string;
1385
+ dataInitializationCode: string;
1386
+ metricCalculationCode: string;
1387
+ metric: string;
1388
+ resolution: number;
1389
+ unit: "currency" | "percentage" | "none";
1390
+ minRange: number;
1391
+ maxRange: number;
1392
+ seriesType: "line" | "bar";
1393
+ currency?: "USD" | "GBP" | "EUR" | "JPY" | "AUD" | "CAD" | "INR" | null | undefined;
1394
+ title?: string | null | undefined;
1395
+ xAxisDecimalPlaces?: number | null | undefined;
1396
+ yAxisDecimalPlaces?: number | null | undefined;
1397
+ showRangeSlider?: boolean | null | undefined;
1398
+ showInDashboard?: boolean | null | undefined;
1399
+ showInMetricTable?: boolean | null | undefined;
1400
+ showBaseline?: boolean | null | undefined;
1401
+ description?: string | null | undefined;
1402
+ metricTableRowOrder?: number | null | undefined;
1403
+ aspectRatio?: number | null | undefined;
1404
+ scaleMetric?: boolean | null | undefined;
1405
+ suppressBar?: boolean | null | undefined;
1406
+ suppressXAxisLabel?: boolean | null | undefined;
1407
+ showThreshold?: boolean | null | undefined;
1408
+ reverseXAxis?: boolean | null | undefined;
1409
+ aiPrompt?: string | null | undefined;
1410
+ highlightType?: "none" | "max" | "min" | null | undefined;
1411
+ optimizeResolution?: boolean | null | undefined;
1412
+ },
1413
+ {
1414
+ id: string;
1415
+ dataInitializationCode: string;
1416
+ metricCalculationCode: string;
1417
+ metric: string;
1418
+ resolution: number;
1419
+ unit: "currency" | "percentage" | "none";
1420
+ minRange: number;
1421
+ maxRange: number;
1422
+ seriesType: "line" | "bar";
1423
+ currency?: "USD" | "GBP" | "EUR" | "JPY" | "AUD" | "CAD" | "INR" | null | undefined;
1424
+ title?: string | null | undefined;
1425
+ xAxisDecimalPlaces?: number | null | undefined;
1426
+ yAxisDecimalPlaces?: number | null | undefined;
1427
+ showRangeSlider?: boolean | null | undefined;
1428
+ showInDashboard?: boolean | null | undefined;
1429
+ showInMetricTable?: boolean | null | undefined;
1430
+ showBaseline?: boolean | null | undefined;
1431
+ description?: string | null | undefined;
1432
+ metricTableRowOrder?: number | null | undefined;
1433
+ aspectRatio?: number | null | undefined;
1434
+ scaleMetric?: boolean | null | undefined;
1435
+ suppressBar?: boolean | null | undefined;
1436
+ suppressXAxisLabel?: boolean | null | undefined;
1437
+ showThreshold?: boolean | null | undefined;
1438
+ reverseXAxis?: boolean | null | undefined;
1439
+ aiPrompt?: string | null | undefined;
1440
+ highlightType?: "none" | "max" | "min" | null | undefined;
1441
+ optimizeResolution?: boolean | null | undefined;
1442
+ }
1443
+ >,
1444
+ "many"
1445
+ >
1446
+ >
1447
+ >;
1448
+ customChartLayoutMap: Zod.ZodOptional<
1449
+ Zod.ZodNullable<
1450
+ Zod.ZodObject<
1451
+ {
1452
+ xl: Zod.ZodOptional<
1453
+ Zod.ZodArray<
1454
+ Zod.ZodObject<
1455
+ {
1456
+ i: Zod.ZodString;
1457
+ x: Zod.ZodNumber;
1458
+ y: Zod.ZodNumber;
1459
+ w: Zod.ZodNumber;
1460
+ h: Zod.ZodNumber;
1461
+ minW: Zod.ZodOptional<Zod.ZodNumber>;
1462
+ maxW: Zod.ZodOptional<Zod.ZodNumber>;
1463
+ minH: Zod.ZodOptional<Zod.ZodNumber>;
1464
+ maxH: Zod.ZodOptional<Zod.ZodNumber>;
1465
+ moved: Zod.ZodOptional<Zod.ZodBoolean>;
1466
+ static: Zod.ZodOptional<Zod.ZodBoolean>;
1467
+ isDraggable: Zod.ZodOptional<Zod.ZodBoolean>;
1468
+ isResizable: Zod.ZodOptional<Zod.ZodBoolean>;
1469
+ resizeHandles: Zod.ZodOptional<
1470
+ Zod.ZodArray<Zod.ZodEnum<["s", "w", "e", "n", "sw", "nw", "se", "ne"]>, "many">
1471
+ >;
1472
+ isBounded: Zod.ZodOptional<Zod.ZodBoolean>;
1473
+ },
1474
+ "strip",
1475
+ Zod.ZodTypeAny,
1476
+ {
1477
+ i: string;
1478
+ x: number;
1479
+ y: number;
1480
+ w: number;
1481
+ h: number;
1482
+ minW?: number | undefined;
1483
+ maxW?: number | undefined;
1484
+ minH?: number | undefined;
1485
+ maxH?: number | undefined;
1486
+ moved?: boolean | undefined;
1487
+ static?: boolean | undefined;
1488
+ isDraggable?: boolean | undefined;
1489
+ isResizable?: boolean | undefined;
1490
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
1491
+ isBounded?: boolean | undefined;
1492
+ },
1493
+ {
1494
+ i: string;
1495
+ x: number;
1496
+ y: number;
1497
+ w: number;
1498
+ h: number;
1499
+ minW?: number | undefined;
1500
+ maxW?: number | undefined;
1501
+ minH?: number | undefined;
1502
+ maxH?: number | undefined;
1503
+ moved?: boolean | undefined;
1504
+ static?: boolean | undefined;
1505
+ isDraggable?: boolean | undefined;
1506
+ isResizable?: boolean | undefined;
1507
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
1508
+ isBounded?: boolean | undefined;
1509
+ }
1510
+ >,
1511
+ "many"
1512
+ >
1513
+ >;
1514
+ lg: Zod.ZodOptional<
1515
+ Zod.ZodArray<
1516
+ Zod.ZodObject<
1517
+ {
1518
+ i: Zod.ZodString;
1519
+ x: Zod.ZodNumber;
1520
+ y: Zod.ZodNumber;
1521
+ w: Zod.ZodNumber;
1522
+ h: Zod.ZodNumber;
1523
+ minW: Zod.ZodOptional<Zod.ZodNumber>;
1524
+ maxW: Zod.ZodOptional<Zod.ZodNumber>;
1525
+ minH: Zod.ZodOptional<Zod.ZodNumber>;
1526
+ maxH: Zod.ZodOptional<Zod.ZodNumber>;
1527
+ moved: Zod.ZodOptional<Zod.ZodBoolean>;
1528
+ static: Zod.ZodOptional<Zod.ZodBoolean>;
1529
+ isDraggable: Zod.ZodOptional<Zod.ZodBoolean>;
1530
+ isResizable: Zod.ZodOptional<Zod.ZodBoolean>;
1531
+ resizeHandles: Zod.ZodOptional<
1532
+ Zod.ZodArray<Zod.ZodEnum<["s", "w", "e", "n", "sw", "nw", "se", "ne"]>, "many">
1533
+ >;
1534
+ isBounded: Zod.ZodOptional<Zod.ZodBoolean>;
1535
+ },
1536
+ "strip",
1537
+ Zod.ZodTypeAny,
1538
+ {
1539
+ i: string;
1540
+ x: number;
1541
+ y: number;
1542
+ w: number;
1543
+ h: number;
1544
+ minW?: number | undefined;
1545
+ maxW?: number | undefined;
1546
+ minH?: number | undefined;
1547
+ maxH?: number | undefined;
1548
+ moved?: boolean | undefined;
1549
+ static?: boolean | undefined;
1550
+ isDraggable?: boolean | undefined;
1551
+ isResizable?: boolean | undefined;
1552
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
1553
+ isBounded?: boolean | undefined;
1554
+ },
1555
+ {
1556
+ i: string;
1557
+ x: number;
1558
+ y: number;
1559
+ w: number;
1560
+ h: number;
1561
+ minW?: number | undefined;
1562
+ maxW?: number | undefined;
1563
+ minH?: number | undefined;
1564
+ maxH?: number | undefined;
1565
+ moved?: boolean | undefined;
1566
+ static?: boolean | undefined;
1567
+ isDraggable?: boolean | undefined;
1568
+ isResizable?: boolean | undefined;
1569
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
1570
+ isBounded?: boolean | undefined;
1571
+ }
1572
+ >,
1573
+ "many"
1574
+ >
1575
+ >;
1576
+ md: Zod.ZodOptional<
1577
+ Zod.ZodArray<
1578
+ Zod.ZodObject<
1579
+ {
1580
+ i: Zod.ZodString;
1581
+ x: Zod.ZodNumber;
1582
+ y: Zod.ZodNumber;
1583
+ w: Zod.ZodNumber;
1584
+ h: Zod.ZodNumber;
1585
+ minW: Zod.ZodOptional<Zod.ZodNumber>;
1586
+ maxW: Zod.ZodOptional<Zod.ZodNumber>;
1587
+ minH: Zod.ZodOptional<Zod.ZodNumber>;
1588
+ maxH: Zod.ZodOptional<Zod.ZodNumber>;
1589
+ moved: Zod.ZodOptional<Zod.ZodBoolean>;
1590
+ static: Zod.ZodOptional<Zod.ZodBoolean>;
1591
+ isDraggable: Zod.ZodOptional<Zod.ZodBoolean>;
1592
+ isResizable: Zod.ZodOptional<Zod.ZodBoolean>;
1593
+ resizeHandles: Zod.ZodOptional<
1594
+ Zod.ZodArray<Zod.ZodEnum<["s", "w", "e", "n", "sw", "nw", "se", "ne"]>, "many">
1595
+ >;
1596
+ isBounded: Zod.ZodOptional<Zod.ZodBoolean>;
1597
+ },
1598
+ "strip",
1599
+ Zod.ZodTypeAny,
1600
+ {
1601
+ i: string;
1602
+ x: number;
1603
+ y: number;
1604
+ w: number;
1605
+ h: number;
1606
+ minW?: number | undefined;
1607
+ maxW?: number | undefined;
1608
+ minH?: number | undefined;
1609
+ maxH?: number | undefined;
1610
+ moved?: boolean | undefined;
1611
+ static?: boolean | undefined;
1612
+ isDraggable?: boolean | undefined;
1613
+ isResizable?: boolean | undefined;
1614
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
1615
+ isBounded?: boolean | undefined;
1616
+ },
1617
+ {
1618
+ i: string;
1619
+ x: number;
1620
+ y: number;
1621
+ w: number;
1622
+ h: number;
1623
+ minW?: number | undefined;
1624
+ maxW?: number | undefined;
1625
+ minH?: number | undefined;
1626
+ maxH?: number | undefined;
1627
+ moved?: boolean | undefined;
1628
+ static?: boolean | undefined;
1629
+ isDraggable?: boolean | undefined;
1630
+ isResizable?: boolean | undefined;
1631
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
1632
+ isBounded?: boolean | undefined;
1633
+ }
1634
+ >,
1635
+ "many"
1636
+ >
1637
+ >;
1638
+ sm: Zod.ZodOptional<
1639
+ Zod.ZodArray<
1640
+ Zod.ZodObject<
1641
+ {
1642
+ i: Zod.ZodString;
1643
+ x: Zod.ZodNumber;
1644
+ y: Zod.ZodNumber;
1645
+ w: Zod.ZodNumber;
1646
+ h: Zod.ZodNumber;
1647
+ minW: Zod.ZodOptional<Zod.ZodNumber>;
1648
+ maxW: Zod.ZodOptional<Zod.ZodNumber>;
1649
+ minH: Zod.ZodOptional<Zod.ZodNumber>;
1650
+ maxH: Zod.ZodOptional<Zod.ZodNumber>;
1651
+ moved: Zod.ZodOptional<Zod.ZodBoolean>;
1652
+ static: Zod.ZodOptional<Zod.ZodBoolean>;
1653
+ isDraggable: Zod.ZodOptional<Zod.ZodBoolean>;
1654
+ isResizable: Zod.ZodOptional<Zod.ZodBoolean>;
1655
+ resizeHandles: Zod.ZodOptional<
1656
+ Zod.ZodArray<Zod.ZodEnum<["s", "w", "e", "n", "sw", "nw", "se", "ne"]>, "many">
1657
+ >;
1658
+ isBounded: Zod.ZodOptional<Zod.ZodBoolean>;
1659
+ },
1660
+ "strip",
1661
+ Zod.ZodTypeAny,
1662
+ {
1663
+ i: string;
1664
+ x: number;
1665
+ y: number;
1666
+ w: number;
1667
+ h: number;
1668
+ minW?: number | undefined;
1669
+ maxW?: number | undefined;
1670
+ minH?: number | undefined;
1671
+ maxH?: number | undefined;
1672
+ moved?: boolean | undefined;
1673
+ static?: boolean | undefined;
1674
+ isDraggable?: boolean | undefined;
1675
+ isResizable?: boolean | undefined;
1676
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
1677
+ isBounded?: boolean | undefined;
1678
+ },
1679
+ {
1680
+ i: string;
1681
+ x: number;
1682
+ y: number;
1683
+ w: number;
1684
+ h: number;
1685
+ minW?: number | undefined;
1686
+ maxW?: number | undefined;
1687
+ minH?: number | undefined;
1688
+ maxH?: number | undefined;
1689
+ moved?: boolean | undefined;
1690
+ static?: boolean | undefined;
1691
+ isDraggable?: boolean | undefined;
1692
+ isResizable?: boolean | undefined;
1693
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
1694
+ isBounded?: boolean | undefined;
1695
+ }
1696
+ >,
1697
+ "many"
1698
+ >
1699
+ >;
1700
+ xs: Zod.ZodOptional<
1701
+ Zod.ZodArray<
1702
+ Zod.ZodObject<
1703
+ {
1704
+ i: Zod.ZodString;
1705
+ x: Zod.ZodNumber;
1706
+ y: Zod.ZodNumber;
1707
+ w: Zod.ZodNumber;
1708
+ h: Zod.ZodNumber;
1709
+ minW: Zod.ZodOptional<Zod.ZodNumber>;
1710
+ maxW: Zod.ZodOptional<Zod.ZodNumber>;
1711
+ minH: Zod.ZodOptional<Zod.ZodNumber>;
1712
+ maxH: Zod.ZodOptional<Zod.ZodNumber>;
1713
+ moved: Zod.ZodOptional<Zod.ZodBoolean>;
1714
+ static: Zod.ZodOptional<Zod.ZodBoolean>;
1715
+ isDraggable: Zod.ZodOptional<Zod.ZodBoolean>;
1716
+ isResizable: Zod.ZodOptional<Zod.ZodBoolean>;
1717
+ resizeHandles: Zod.ZodOptional<
1718
+ Zod.ZodArray<Zod.ZodEnum<["s", "w", "e", "n", "sw", "nw", "se", "ne"]>, "many">
1719
+ >;
1720
+ isBounded: Zod.ZodOptional<Zod.ZodBoolean>;
1721
+ },
1722
+ "strip",
1723
+ Zod.ZodTypeAny,
1724
+ {
1725
+ i: string;
1726
+ x: number;
1727
+ y: number;
1728
+ w: number;
1729
+ h: number;
1730
+ minW?: number | undefined;
1731
+ maxW?: number | undefined;
1732
+ minH?: number | undefined;
1733
+ maxH?: number | undefined;
1734
+ moved?: boolean | undefined;
1735
+ static?: boolean | undefined;
1736
+ isDraggable?: boolean | undefined;
1737
+ isResizable?: boolean | undefined;
1738
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
1739
+ isBounded?: boolean | undefined;
1740
+ },
1741
+ {
1742
+ i: string;
1743
+ x: number;
1744
+ y: number;
1745
+ w: number;
1746
+ h: number;
1747
+ minW?: number | undefined;
1748
+ maxW?: number | undefined;
1749
+ minH?: number | undefined;
1750
+ maxH?: number | undefined;
1751
+ moved?: boolean | undefined;
1752
+ static?: boolean | undefined;
1753
+ isDraggable?: boolean | undefined;
1754
+ isResizable?: boolean | undefined;
1755
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
1756
+ isBounded?: boolean | undefined;
1757
+ }
1758
+ >,
1759
+ "many"
1760
+ >
1761
+ >;
1762
+ },
1763
+ "strip",
1764
+ Zod.ZodTypeAny,
1765
+ {
1766
+ xl?:
1767
+ | {
1768
+ i: string;
1769
+ x: number;
1770
+ y: number;
1771
+ w: number;
1772
+ h: number;
1773
+ minW?: number | undefined;
1774
+ maxW?: number | undefined;
1775
+ minH?: number | undefined;
1776
+ maxH?: number | undefined;
1777
+ moved?: boolean | undefined;
1778
+ static?: boolean | undefined;
1779
+ isDraggable?: boolean | undefined;
1780
+ isResizable?: boolean | undefined;
1781
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
1782
+ isBounded?: boolean | undefined;
1783
+ }[]
1784
+ | undefined;
1785
+ lg?:
1786
+ | {
1787
+ i: string;
1788
+ x: number;
1789
+ y: number;
1790
+ w: number;
1791
+ h: number;
1792
+ minW?: number | undefined;
1793
+ maxW?: number | undefined;
1794
+ minH?: number | undefined;
1795
+ maxH?: number | undefined;
1796
+ moved?: boolean | undefined;
1797
+ static?: boolean | undefined;
1798
+ isDraggable?: boolean | undefined;
1799
+ isResizable?: boolean | undefined;
1800
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
1801
+ isBounded?: boolean | undefined;
1802
+ }[]
1803
+ | undefined;
1804
+ md?:
1805
+ | {
1806
+ i: string;
1807
+ x: number;
1808
+ y: number;
1809
+ w: number;
1810
+ h: number;
1811
+ minW?: number | undefined;
1812
+ maxW?: number | undefined;
1813
+ minH?: number | undefined;
1814
+ maxH?: number | undefined;
1815
+ moved?: boolean | undefined;
1816
+ static?: boolean | undefined;
1817
+ isDraggable?: boolean | undefined;
1818
+ isResizable?: boolean | undefined;
1819
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
1820
+ isBounded?: boolean | undefined;
1821
+ }[]
1822
+ | undefined;
1823
+ sm?:
1824
+ | {
1825
+ i: string;
1826
+ x: number;
1827
+ y: number;
1828
+ w: number;
1829
+ h: number;
1830
+ minW?: number | undefined;
1831
+ maxW?: number | undefined;
1832
+ minH?: number | undefined;
1833
+ maxH?: number | undefined;
1834
+ moved?: boolean | undefined;
1835
+ static?: boolean | undefined;
1836
+ isDraggable?: boolean | undefined;
1837
+ isResizable?: boolean | undefined;
1838
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
1839
+ isBounded?: boolean | undefined;
1840
+ }[]
1841
+ | undefined;
1842
+ xs?:
1843
+ | {
1844
+ i: string;
1845
+ x: number;
1846
+ y: number;
1847
+ w: number;
1848
+ h: number;
1849
+ minW?: number | undefined;
1850
+ maxW?: number | undefined;
1851
+ minH?: number | undefined;
1852
+ maxH?: number | undefined;
1853
+ moved?: boolean | undefined;
1854
+ static?: boolean | undefined;
1855
+ isDraggable?: boolean | undefined;
1856
+ isResizable?: boolean | undefined;
1857
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
1858
+ isBounded?: boolean | undefined;
1859
+ }[]
1860
+ | undefined;
1861
+ },
1862
+ {
1863
+ xl?:
1864
+ | {
1865
+ i: string;
1866
+ x: number;
1867
+ y: number;
1868
+ w: number;
1869
+ h: number;
1870
+ minW?: number | undefined;
1871
+ maxW?: number | undefined;
1872
+ minH?: number | undefined;
1873
+ maxH?: number | undefined;
1874
+ moved?: boolean | undefined;
1875
+ static?: boolean | undefined;
1876
+ isDraggable?: boolean | undefined;
1877
+ isResizable?: boolean | undefined;
1878
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
1879
+ isBounded?: boolean | undefined;
1880
+ }[]
1881
+ | undefined;
1882
+ lg?:
1883
+ | {
1884
+ i: string;
1885
+ x: number;
1886
+ y: number;
1887
+ w: number;
1888
+ h: number;
1889
+ minW?: number | undefined;
1890
+ maxW?: number | undefined;
1891
+ minH?: number | undefined;
1892
+ maxH?: number | undefined;
1893
+ moved?: boolean | undefined;
1894
+ static?: boolean | undefined;
1895
+ isDraggable?: boolean | undefined;
1896
+ isResizable?: boolean | undefined;
1897
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
1898
+ isBounded?: boolean | undefined;
1899
+ }[]
1900
+ | undefined;
1901
+ md?:
1902
+ | {
1903
+ i: string;
1904
+ x: number;
1905
+ y: number;
1906
+ w: number;
1907
+ h: number;
1908
+ minW?: number | undefined;
1909
+ maxW?: number | undefined;
1910
+ minH?: number | undefined;
1911
+ maxH?: number | undefined;
1912
+ moved?: boolean | undefined;
1913
+ static?: boolean | undefined;
1914
+ isDraggable?: boolean | undefined;
1915
+ isResizable?: boolean | undefined;
1916
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
1917
+ isBounded?: boolean | undefined;
1918
+ }[]
1919
+ | undefined;
1920
+ sm?:
1921
+ | {
1922
+ i: string;
1923
+ x: number;
1924
+ y: number;
1925
+ w: number;
1926
+ h: number;
1927
+ minW?: number | undefined;
1928
+ maxW?: number | undefined;
1929
+ minH?: number | undefined;
1930
+ maxH?: number | undefined;
1931
+ moved?: boolean | undefined;
1932
+ static?: boolean | undefined;
1933
+ isDraggable?: boolean | undefined;
1934
+ isResizable?: boolean | undefined;
1935
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
1936
+ isBounded?: boolean | undefined;
1937
+ }[]
1938
+ | undefined;
1939
+ xs?:
1940
+ | {
1941
+ i: string;
1942
+ x: number;
1943
+ y: number;
1944
+ w: number;
1945
+ h: number;
1946
+ minW?: number | undefined;
1947
+ maxW?: number | undefined;
1948
+ minH?: number | undefined;
1949
+ maxH?: number | undefined;
1950
+ moved?: boolean | undefined;
1951
+ static?: boolean | undefined;
1952
+ isDraggable?: boolean | undefined;
1953
+ isResizable?: boolean | undefined;
1954
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
1955
+ isBounded?: boolean | undefined;
1956
+ }[]
1957
+ | undefined;
1958
+ }
1959
+ >
1960
+ >
1961
+ >;
1962
+ sliders: Zod.ZodEffects<
1963
+ Zod.ZodArray<
1964
+ Zod.ZodEffects<
1965
+ Zod.ZodEffects<
1966
+ Zod.ZodObject<
1967
+ {
1968
+ id: Zod.ZodString;
1969
+ name: Zod.ZodString;
1970
+ description: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodString>>;
1971
+ min: Zod.ZodNumber;
1972
+ max: Zod.ZodNumber;
1973
+ value: Zod.ZodNumber;
1974
+ label: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodString>>;
1975
+ },
1976
+ "strip",
1977
+ Zod.ZodTypeAny,
1978
+ {
1979
+ max: number;
1980
+ min: number;
1981
+ value: number;
1982
+ id: string;
1983
+ name: string;
1984
+ description?: string | null | undefined;
1985
+ label?: string | null | undefined;
1986
+ },
1987
+ {
1988
+ max: number;
1989
+ min: number;
1990
+ value: number;
1991
+ id: string;
1992
+ name: string;
1993
+ description?: string | null | undefined;
1994
+ label?: string | null | undefined;
1995
+ }
1996
+ >,
1997
+ {
1998
+ max: number;
1999
+ min: number;
2000
+ value: number;
2001
+ id: string;
2002
+ name: string;
2003
+ description?: string | null | undefined;
2004
+ label?: string | null | undefined;
2005
+ },
2006
+ {
2007
+ max: number;
2008
+ min: number;
2009
+ value: number;
2010
+ id: string;
2011
+ name: string;
2012
+ description?: string | null | undefined;
2013
+ label?: string | null | undefined;
2014
+ }
2015
+ >,
2016
+ {
2017
+ max: number;
2018
+ min: number;
2019
+ value: number;
2020
+ id: string;
2021
+ name: string;
2022
+ description?: string | null | undefined;
2023
+ label?: string | null | undefined;
2024
+ },
2025
+ {
2026
+ max: number;
2027
+ min: number;
2028
+ value: number;
2029
+ id: string;
2030
+ name: string;
2031
+ description?: string | null | undefined;
2032
+ label?: string | null | undefined;
2033
+ }
2034
+ >,
2035
+ "many"
2036
+ >,
2037
+ {
2038
+ max: number;
2039
+ min: number;
2040
+ value: number;
2041
+ id: string;
2042
+ name: string;
2043
+ description?: string | null | undefined;
2044
+ label?: string | null | undefined;
2045
+ }[],
2046
+ {
2047
+ max: number;
2048
+ min: number;
2049
+ value: number;
2050
+ id: string;
2051
+ name: string;
2052
+ description?: string | null | undefined;
2053
+ label?: string | null | undefined;
2054
+ }[]
2055
+ >;
2056
+ sliderAssociations: Zod.ZodArray<
2057
+ Zod.ZodObject<
2058
+ {
2059
+ sliderID: Zod.ZodString;
2060
+ uswID: Zod.ZodString;
2061
+ showInDashboard: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
2062
+ },
2063
+ "strip",
2064
+ Zod.ZodTypeAny,
2065
+ {
2066
+ sliderID: string;
2067
+ uswID: string;
2068
+ showInDashboard?: boolean | null | undefined;
2069
+ },
2070
+ {
2071
+ sliderID: string;
2072
+ uswID: string;
2073
+ showInDashboard?: boolean | null | undefined;
2074
+ }
2075
+ >,
2076
+ "many"
2077
+ >;
2078
+ xAxisName: Zod.ZodDefault<Zod.ZodString>;
2079
+ percentTreated: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodNumber>>;
2080
+ rules: Zod.ZodOptional<
2081
+ Zod.ZodNullable<
2082
+ Zod.ZodArray<
2083
+ Zod.ZodEffects<
2084
+ Zod.ZodObject<
2085
+ {
2086
+ id: Zod.ZodString;
2087
+ value: Zod.ZodUnion<
2088
+ [
2089
+ Zod.ZodNumber,
2090
+ Zod.ZodString,
2091
+ Zod.ZodBoolean,
2092
+ Zod.ZodArray<Zod.ZodUnion<[Zod.ZodString, Zod.ZodNumber, Zod.ZodBoolean]>, "many">,
2093
+ ]
2094
+ >;
2095
+ operator: Zod.ZodNativeEnum<{
2096
+ readonly Equal: "===";
2097
+ readonly GreaterThan: ">";
2098
+ readonly LessThan: "<";
2099
+ readonly GreaterThanEqual: ">=";
2100
+ readonly LessThanEqual: "<=";
2101
+ readonly NotEqual: "!==";
2102
+ readonly In: "in";
2103
+ readonly Between: "between";
2104
+ readonly BetweenInclusive: "betweenInclusive";
2105
+ }>;
2106
+ model: Zod.ZodString;
2107
+ },
2108
+ "strip",
2109
+ Zod.ZodTypeAny,
2110
+ {
2111
+ value: string | number | boolean | (string | number | boolean)[];
2112
+ id: string;
2113
+ operator: "===" | ">" | "<" | ">=" | "<=" | "!==" | "in" | "between" | "betweenInclusive";
2114
+ model: string;
2115
+ },
2116
+ {
2117
+ value: string | number | boolean | (string | number | boolean)[];
2118
+ id: string;
2119
+ operator: "===" | ">" | "<" | ">=" | "<=" | "!==" | "in" | "between" | "betweenInclusive";
2120
+ model: string;
2121
+ }
2122
+ >,
2123
+ {
2124
+ value: string | number | boolean | (string | number | boolean)[];
2125
+ id: string;
2126
+ operator: "===" | ">" | "<" | ">=" | "<=" | "!==" | "in" | "between" | "betweenInclusive";
2127
+ model: string;
2128
+ },
2129
+ {
2130
+ value: string | number | boolean | (string | number | boolean)[];
2131
+ id: string;
2132
+ operator: "===" | ">" | "<" | ">=" | "<=" | "!==" | "in" | "between" | "betweenInclusive";
2133
+ model: string;
2134
+ }
2135
+ >,
2136
+ "many"
2137
+ >
2138
+ >
2139
+ >;
2140
+ filters: Zod.ZodOptional<
2141
+ Zod.ZodNullable<
2142
+ Zod.ZodEffects<
2143
+ Zod.ZodArray<
2144
+ Zod.ZodEffects<
2145
+ Zod.ZodObject<
2146
+ {
2147
+ name: Zod.ZodString;
2148
+ rules: Zod.ZodArray<Zod.ZodString, "many">;
2149
+ joinBy: Zod.ZodOptional<
2150
+ Zod.ZodNullable<
2151
+ Zod.ZodNativeEnum<{
2152
+ readonly And: "and";
2153
+ readonly Or: "or";
2154
+ }>
2155
+ >
2156
+ >;
2157
+ },
2158
+ "strip",
2159
+ Zod.ZodTypeAny,
2160
+ {
2161
+ name: string;
2162
+ rules: string[];
2163
+ joinBy?: "and" | "or" | null | undefined;
2164
+ },
2165
+ {
2166
+ name: string;
2167
+ rules: string[];
2168
+ joinBy?: "and" | "or" | null | undefined;
2169
+ }
2170
+ >,
2171
+ {
2172
+ name: string;
2173
+ rules: string[];
2174
+ joinBy?: "and" | "or" | null | undefined;
2175
+ },
2176
+ {
2177
+ name: string;
2178
+ rules: string[];
2179
+ joinBy?: "and" | "or" | null | undefined;
2180
+ }
2181
+ >,
2182
+ "many"
2183
+ >,
2184
+ {
2185
+ name: string;
2186
+ rules: string[];
2187
+ joinBy?: "and" | "or" | null | undefined;
2188
+ }[],
2189
+ {
2190
+ name: string;
2191
+ rules: string[];
2192
+ joinBy?: "and" | "or" | null | undefined;
2193
+ }[]
2194
+ >
2195
+ >
2196
+ >;
2197
+ activeFilter: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodString>>;
2198
+ showFiltersOnDashboard: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodBoolean>>;
2199
+ numberOfRowsSentInAIPrompt: Zod.ZodOptional<Zod.ZodNullable<Zod.ZodNumber>>;
2200
+ variableSelectors: Zod.ZodOptional<
2201
+ Zod.ZodNullable<
2202
+ Zod.ZodEffects<
2203
+ Zod.ZodEffects<
2204
+ Zod.ZodArray<
2205
+ Zod.ZodObject<
2206
+ {
2207
+ name: Zod.ZodString;
2208
+ label: Zod.ZodString;
2209
+ },
2210
+ "strip",
2211
+ Zod.ZodTypeAny,
2212
+ {
2213
+ name: string;
2214
+ label: string;
2215
+ },
2216
+ {
2217
+ name: string;
2218
+ label: string;
2219
+ }
2220
+ >,
2221
+ "many"
2222
+ >,
2223
+ {
2224
+ name: string;
2225
+ label: string;
2226
+ }[],
2227
+ {
2228
+ name: string;
2229
+ label: string;
2230
+ }[]
2231
+ >,
2232
+ {
2233
+ name: string;
2234
+ label: string;
2235
+ }[],
2236
+ {
2237
+ name: string;
2238
+ label: string;
2239
+ }[]
2240
+ >
2241
+ >
2242
+ >;
2243
+ },
2244
+ "strip",
2245
+ Zod.ZodTypeAny,
2246
+ {
2247
+ sliders: {
2248
+ max: number;
2249
+ min: number;
2250
+ value: number;
2251
+ id: string;
2252
+ name: string;
2253
+ description?: string | null | undefined;
2254
+ label?: string | null | undefined;
2255
+ }[];
2256
+ version: string;
2257
+ scores: {
2258
+ fieldName: string;
2259
+ fieldLabel?: string | null | undefined;
2260
+ sortOrder?: "asc" | "desc" | null | undefined;
2261
+ }[];
2262
+ sliderAssociations: {
2263
+ sliderID: string;
2264
+ uswID: string;
2265
+ showInDashboard?: boolean | null | undefined;
2266
+ }[];
2267
+ xAxisName: string;
2268
+ title?: string | null | undefined;
2269
+ rules?:
2270
+ | {
2271
+ value: string | number | boolean | (string | number | boolean)[];
2272
+ id: string;
2273
+ operator: "===" | ">" | "<" | ">=" | "<=" | "!==" | "in" | "between" | "betweenInclusive";
2274
+ model: string;
2275
+ }[]
2276
+ | null
2277
+ | undefined;
2278
+ filters?:
2279
+ | {
2280
+ name: string;
2281
+ rules: string[];
2282
+ joinBy?: "and" | "or" | null | undefined;
2283
+ }[]
2284
+ | null
2285
+ | undefined;
2286
+ isOffline?: boolean | null | undefined;
2287
+ datasetID?: string | null | undefined;
2288
+ dependentVariable?: string | null | undefined;
2289
+ positivePolarityValues?: (string | number | null | undefined)[] | null | undefined;
2290
+ projectedPopulation?: number | null | undefined;
2291
+ customCharts?:
2292
+ | {
2293
+ id: string;
2294
+ dataInitializationCode: string;
2295
+ metricCalculationCode: string;
2296
+ metric: string;
2297
+ resolution: number;
2298
+ unit: "currency" | "percentage" | "none";
2299
+ minRange: number;
2300
+ maxRange: number;
2301
+ seriesType: "line" | "bar";
2302
+ currency?: "USD" | "GBP" | "EUR" | "JPY" | "AUD" | "CAD" | "INR" | null | undefined;
2303
+ title?: string | null | undefined;
2304
+ xAxisDecimalPlaces?: number | null | undefined;
2305
+ yAxisDecimalPlaces?: number | null | undefined;
2306
+ showRangeSlider?: boolean | null | undefined;
2307
+ showInDashboard?: boolean | null | undefined;
2308
+ showInMetricTable?: boolean | null | undefined;
2309
+ showBaseline?: boolean | null | undefined;
2310
+ description?: string | null | undefined;
2311
+ metricTableRowOrder?: number | null | undefined;
2312
+ aspectRatio?: number | null | undefined;
2313
+ scaleMetric?: boolean | null | undefined;
2314
+ suppressBar?: boolean | null | undefined;
2315
+ suppressXAxisLabel?: boolean | null | undefined;
2316
+ showThreshold?: boolean | null | undefined;
2317
+ reverseXAxis?: boolean | null | undefined;
2318
+ aiPrompt?: string | null | undefined;
2319
+ highlightType?: "none" | "max" | "min" | null | undefined;
2320
+ optimizeResolution?: boolean | null | undefined;
2321
+ }[]
2322
+ | null
2323
+ | undefined;
2324
+ customChartLayoutMap?:
2325
+ | {
2326
+ xl?:
2327
+ | {
2328
+ i: string;
2329
+ x: number;
2330
+ y: number;
2331
+ w: number;
2332
+ h: number;
2333
+ minW?: number | undefined;
2334
+ maxW?: number | undefined;
2335
+ minH?: number | undefined;
2336
+ maxH?: number | undefined;
2337
+ moved?: boolean | undefined;
2338
+ static?: boolean | undefined;
2339
+ isDraggable?: boolean | undefined;
2340
+ isResizable?: boolean | undefined;
2341
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
2342
+ isBounded?: boolean | undefined;
2343
+ }[]
2344
+ | undefined;
2345
+ lg?:
2346
+ | {
2347
+ i: string;
2348
+ x: number;
2349
+ y: number;
2350
+ w: number;
2351
+ h: number;
2352
+ minW?: number | undefined;
2353
+ maxW?: number | undefined;
2354
+ minH?: number | undefined;
2355
+ maxH?: number | undefined;
2356
+ moved?: boolean | undefined;
2357
+ static?: boolean | undefined;
2358
+ isDraggable?: boolean | undefined;
2359
+ isResizable?: boolean | undefined;
2360
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
2361
+ isBounded?: boolean | undefined;
2362
+ }[]
2363
+ | undefined;
2364
+ md?:
2365
+ | {
2366
+ i: string;
2367
+ x: number;
2368
+ y: number;
2369
+ w: number;
2370
+ h: number;
2371
+ minW?: number | undefined;
2372
+ maxW?: number | undefined;
2373
+ minH?: number | undefined;
2374
+ maxH?: number | undefined;
2375
+ moved?: boolean | undefined;
2376
+ static?: boolean | undefined;
2377
+ isDraggable?: boolean | undefined;
2378
+ isResizable?: boolean | undefined;
2379
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
2380
+ isBounded?: boolean | undefined;
2381
+ }[]
2382
+ | undefined;
2383
+ sm?:
2384
+ | {
2385
+ i: string;
2386
+ x: number;
2387
+ y: number;
2388
+ w: number;
2389
+ h: number;
2390
+ minW?: number | undefined;
2391
+ maxW?: number | undefined;
2392
+ minH?: number | undefined;
2393
+ maxH?: number | undefined;
2394
+ moved?: boolean | undefined;
2395
+ static?: boolean | undefined;
2396
+ isDraggable?: boolean | undefined;
2397
+ isResizable?: boolean | undefined;
2398
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
2399
+ isBounded?: boolean | undefined;
2400
+ }[]
2401
+ | undefined;
2402
+ xs?:
2403
+ | {
2404
+ i: string;
2405
+ x: number;
2406
+ y: number;
2407
+ w: number;
2408
+ h: number;
2409
+ minW?: number | undefined;
2410
+ maxW?: number | undefined;
2411
+ minH?: number | undefined;
2412
+ maxH?: number | undefined;
2413
+ moved?: boolean | undefined;
2414
+ static?: boolean | undefined;
2415
+ isDraggable?: boolean | undefined;
2416
+ isResizable?: boolean | undefined;
2417
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
2418
+ isBounded?: boolean | undefined;
2419
+ }[]
2420
+ | undefined;
2421
+ }
2422
+ | null
2423
+ | undefined;
2424
+ percentTreated?: number | null | undefined;
2425
+ activeFilter?: string | null | undefined;
2426
+ showFiltersOnDashboard?: boolean | null | undefined;
2427
+ numberOfRowsSentInAIPrompt?: number | null | undefined;
2428
+ variableSelectors?:
2429
+ | {
2430
+ name: string;
2431
+ label: string;
2432
+ }[]
2433
+ | null
2434
+ | undefined;
2435
+ },
2436
+ {
2437
+ sliders: {
2438
+ max: number;
2439
+ min: number;
2440
+ value: number;
2441
+ id: string;
2442
+ name: string;
2443
+ description?: string | null | undefined;
2444
+ label?: string | null | undefined;
2445
+ }[];
2446
+ scores: {
2447
+ fieldName: string;
2448
+ fieldLabel?: string | null | undefined;
2449
+ sortOrder?: "asc" | "desc" | null | undefined;
2450
+ }[];
2451
+ sliderAssociations: {
2452
+ sliderID: string;
2453
+ uswID: string;
2454
+ showInDashboard?: boolean | null | undefined;
2455
+ }[];
2456
+ title?: string | null | undefined;
2457
+ rules?:
2458
+ | {
2459
+ value: string | number | boolean | (string | number | boolean)[];
2460
+ id: string;
2461
+ operator: "===" | ">" | "<" | ">=" | "<=" | "!==" | "in" | "between" | "betweenInclusive";
2462
+ model: string;
2463
+ }[]
2464
+ | null
2465
+ | undefined;
2466
+ filters?:
2467
+ | {
2468
+ name: string;
2469
+ rules: string[];
2470
+ joinBy?: "and" | "or" | null | undefined;
2471
+ }[]
2472
+ | null
2473
+ | undefined;
2474
+ version?: string | undefined;
2475
+ isOffline?: boolean | null | undefined;
2476
+ datasetID?: string | null | undefined;
2477
+ dependentVariable?: string | null | undefined;
2478
+ positivePolarityValues?: (string | number | null | undefined)[] | null | undefined;
2479
+ projectedPopulation?: number | null | undefined;
2480
+ customCharts?:
2481
+ | {
2482
+ id: string;
2483
+ dataInitializationCode: string;
2484
+ metricCalculationCode: string;
2485
+ metric: string;
2486
+ resolution: number;
2487
+ unit: "currency" | "percentage" | "none";
2488
+ minRange: number;
2489
+ maxRange: number;
2490
+ seriesType: "line" | "bar";
2491
+ currency?: "USD" | "GBP" | "EUR" | "JPY" | "AUD" | "CAD" | "INR" | null | undefined;
2492
+ title?: string | null | undefined;
2493
+ xAxisDecimalPlaces?: number | null | undefined;
2494
+ yAxisDecimalPlaces?: number | null | undefined;
2495
+ showRangeSlider?: boolean | null | undefined;
2496
+ showInDashboard?: boolean | null | undefined;
2497
+ showInMetricTable?: boolean | null | undefined;
2498
+ showBaseline?: boolean | null | undefined;
2499
+ description?: string | null | undefined;
2500
+ metricTableRowOrder?: number | null | undefined;
2501
+ aspectRatio?: number | null | undefined;
2502
+ scaleMetric?: boolean | null | undefined;
2503
+ suppressBar?: boolean | null | undefined;
2504
+ suppressXAxisLabel?: boolean | null | undefined;
2505
+ showThreshold?: boolean | null | undefined;
2506
+ reverseXAxis?: boolean | null | undefined;
2507
+ aiPrompt?: string | null | undefined;
2508
+ highlightType?: "none" | "max" | "min" | null | undefined;
2509
+ optimizeResolution?: boolean | null | undefined;
2510
+ }[]
2511
+ | null
2512
+ | undefined;
2513
+ customChartLayoutMap?:
2514
+ | {
2515
+ xl?:
2516
+ | {
2517
+ i: string;
2518
+ x: number;
2519
+ y: number;
2520
+ w: number;
2521
+ h: number;
2522
+ minW?: number | undefined;
2523
+ maxW?: number | undefined;
2524
+ minH?: number | undefined;
2525
+ maxH?: number | undefined;
2526
+ moved?: boolean | undefined;
2527
+ static?: boolean | undefined;
2528
+ isDraggable?: boolean | undefined;
2529
+ isResizable?: boolean | undefined;
2530
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
2531
+ isBounded?: boolean | undefined;
2532
+ }[]
2533
+ | undefined;
2534
+ lg?:
2535
+ | {
2536
+ i: string;
2537
+ x: number;
2538
+ y: number;
2539
+ w: number;
2540
+ h: number;
2541
+ minW?: number | undefined;
2542
+ maxW?: number | undefined;
2543
+ minH?: number | undefined;
2544
+ maxH?: number | undefined;
2545
+ moved?: boolean | undefined;
2546
+ static?: boolean | undefined;
2547
+ isDraggable?: boolean | undefined;
2548
+ isResizable?: boolean | undefined;
2549
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
2550
+ isBounded?: boolean | undefined;
2551
+ }[]
2552
+ | undefined;
2553
+ md?:
2554
+ | {
2555
+ i: string;
2556
+ x: number;
2557
+ y: number;
2558
+ w: number;
2559
+ h: number;
2560
+ minW?: number | undefined;
2561
+ maxW?: number | undefined;
2562
+ minH?: number | undefined;
2563
+ maxH?: number | undefined;
2564
+ moved?: boolean | undefined;
2565
+ static?: boolean | undefined;
2566
+ isDraggable?: boolean | undefined;
2567
+ isResizable?: boolean | undefined;
2568
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
2569
+ isBounded?: boolean | undefined;
2570
+ }[]
2571
+ | undefined;
2572
+ sm?:
2573
+ | {
2574
+ i: string;
2575
+ x: number;
2576
+ y: number;
2577
+ w: number;
2578
+ h: number;
2579
+ minW?: number | undefined;
2580
+ maxW?: number | undefined;
2581
+ minH?: number | undefined;
2582
+ maxH?: number | undefined;
2583
+ moved?: boolean | undefined;
2584
+ static?: boolean | undefined;
2585
+ isDraggable?: boolean | undefined;
2586
+ isResizable?: boolean | undefined;
2587
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
2588
+ isBounded?: boolean | undefined;
2589
+ }[]
2590
+ | undefined;
2591
+ xs?:
2592
+ | {
2593
+ i: string;
2594
+ x: number;
2595
+ y: number;
2596
+ w: number;
2597
+ h: number;
2598
+ minW?: number | undefined;
2599
+ maxW?: number | undefined;
2600
+ minH?: number | undefined;
2601
+ maxH?: number | undefined;
2602
+ moved?: boolean | undefined;
2603
+ static?: boolean | undefined;
2604
+ isDraggable?: boolean | undefined;
2605
+ isResizable?: boolean | undefined;
2606
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
2607
+ isBounded?: boolean | undefined;
2608
+ }[]
2609
+ | undefined;
2610
+ }
2611
+ | null
2612
+ | undefined;
2613
+ xAxisName?: string | undefined;
2614
+ percentTreated?: number | null | undefined;
2615
+ activeFilter?: string | null | undefined;
2616
+ showFiltersOnDashboard?: boolean | null | undefined;
2617
+ numberOfRowsSentInAIPrompt?: number | null | undefined;
2618
+ variableSelectors?:
2619
+ | {
2620
+ name: string;
2621
+ label: string;
2622
+ }[]
2623
+ | null
2624
+ | undefined;
2625
+ }
2626
+ >,
2627
+ {
2628
+ sliders: {
2629
+ max: number;
2630
+ min: number;
2631
+ value: number;
2632
+ id: string;
2633
+ name: string;
2634
+ description?: string | null | undefined;
2635
+ label?: string | null | undefined;
2636
+ }[];
2637
+ version: string;
2638
+ scores: {
2639
+ fieldName: string;
2640
+ fieldLabel?: string | null | undefined;
2641
+ sortOrder?: "asc" | "desc" | null | undefined;
2642
+ }[];
2643
+ sliderAssociations: {
2644
+ sliderID: string;
2645
+ uswID: string;
2646
+ showInDashboard?: boolean | null | undefined;
2647
+ }[];
2648
+ xAxisName: string;
2649
+ title?: string | null | undefined;
2650
+ rules?:
2651
+ | {
2652
+ value: string | number | boolean | (string | number | boolean)[];
2653
+ id: string;
2654
+ operator: "===" | ">" | "<" | ">=" | "<=" | "!==" | "in" | "between" | "betweenInclusive";
2655
+ model: string;
2656
+ }[]
2657
+ | null
2658
+ | undefined;
2659
+ filters?:
2660
+ | {
2661
+ name: string;
2662
+ rules: string[];
2663
+ joinBy?: "and" | "or" | null | undefined;
2664
+ }[]
2665
+ | null
2666
+ | undefined;
2667
+ isOffline?: boolean | null | undefined;
2668
+ datasetID?: string | null | undefined;
2669
+ dependentVariable?: string | null | undefined;
2670
+ positivePolarityValues?: (string | number | null | undefined)[] | null | undefined;
2671
+ projectedPopulation?: number | null | undefined;
2672
+ customCharts?:
2673
+ | {
2674
+ id: string;
2675
+ dataInitializationCode: string;
2676
+ metricCalculationCode: string;
2677
+ metric: string;
2678
+ resolution: number;
2679
+ unit: "currency" | "percentage" | "none";
2680
+ minRange: number;
2681
+ maxRange: number;
2682
+ seriesType: "line" | "bar";
2683
+ currency?: "USD" | "GBP" | "EUR" | "JPY" | "AUD" | "CAD" | "INR" | null | undefined;
2684
+ title?: string | null | undefined;
2685
+ xAxisDecimalPlaces?: number | null | undefined;
2686
+ yAxisDecimalPlaces?: number | null | undefined;
2687
+ showRangeSlider?: boolean | null | undefined;
2688
+ showInDashboard?: boolean | null | undefined;
2689
+ showInMetricTable?: boolean | null | undefined;
2690
+ showBaseline?: boolean | null | undefined;
2691
+ description?: string | null | undefined;
2692
+ metricTableRowOrder?: number | null | undefined;
2693
+ aspectRatio?: number | null | undefined;
2694
+ scaleMetric?: boolean | null | undefined;
2695
+ suppressBar?: boolean | null | undefined;
2696
+ suppressXAxisLabel?: boolean | null | undefined;
2697
+ showThreshold?: boolean | null | undefined;
2698
+ reverseXAxis?: boolean | null | undefined;
2699
+ aiPrompt?: string | null | undefined;
2700
+ highlightType?: "none" | "max" | "min" | null | undefined;
2701
+ optimizeResolution?: boolean | null | undefined;
2702
+ }[]
2703
+ | null
2704
+ | undefined;
2705
+ customChartLayoutMap?:
2706
+ | {
2707
+ xl?:
2708
+ | {
2709
+ i: string;
2710
+ x: number;
2711
+ y: number;
2712
+ w: number;
2713
+ h: number;
2714
+ minW?: number | undefined;
2715
+ maxW?: number | undefined;
2716
+ minH?: number | undefined;
2717
+ maxH?: number | undefined;
2718
+ moved?: boolean | undefined;
2719
+ static?: boolean | undefined;
2720
+ isDraggable?: boolean | undefined;
2721
+ isResizable?: boolean | undefined;
2722
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
2723
+ isBounded?: boolean | undefined;
2724
+ }[]
2725
+ | undefined;
2726
+ lg?:
2727
+ | {
2728
+ i: string;
2729
+ x: number;
2730
+ y: number;
2731
+ w: number;
2732
+ h: number;
2733
+ minW?: number | undefined;
2734
+ maxW?: number | undefined;
2735
+ minH?: number | undefined;
2736
+ maxH?: number | undefined;
2737
+ moved?: boolean | undefined;
2738
+ static?: boolean | undefined;
2739
+ isDraggable?: boolean | undefined;
2740
+ isResizable?: boolean | undefined;
2741
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
2742
+ isBounded?: boolean | undefined;
2743
+ }[]
2744
+ | undefined;
2745
+ md?:
2746
+ | {
2747
+ i: string;
2748
+ x: number;
2749
+ y: number;
2750
+ w: number;
2751
+ h: number;
2752
+ minW?: number | undefined;
2753
+ maxW?: number | undefined;
2754
+ minH?: number | undefined;
2755
+ maxH?: number | undefined;
2756
+ moved?: boolean | undefined;
2757
+ static?: boolean | undefined;
2758
+ isDraggable?: boolean | undefined;
2759
+ isResizable?: boolean | undefined;
2760
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
2761
+ isBounded?: boolean | undefined;
2762
+ }[]
2763
+ | undefined;
2764
+ sm?:
2765
+ | {
2766
+ i: string;
2767
+ x: number;
2768
+ y: number;
2769
+ w: number;
2770
+ h: number;
2771
+ minW?: number | undefined;
2772
+ maxW?: number | undefined;
2773
+ minH?: number | undefined;
2774
+ maxH?: number | undefined;
2775
+ moved?: boolean | undefined;
2776
+ static?: boolean | undefined;
2777
+ isDraggable?: boolean | undefined;
2778
+ isResizable?: boolean | undefined;
2779
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
2780
+ isBounded?: boolean | undefined;
2781
+ }[]
2782
+ | undefined;
2783
+ xs?:
2784
+ | {
2785
+ i: string;
2786
+ x: number;
2787
+ y: number;
2788
+ w: number;
2789
+ h: number;
2790
+ minW?: number | undefined;
2791
+ maxW?: number | undefined;
2792
+ minH?: number | undefined;
2793
+ maxH?: number | undefined;
2794
+ moved?: boolean | undefined;
2795
+ static?: boolean | undefined;
2796
+ isDraggable?: boolean | undefined;
2797
+ isResizable?: boolean | undefined;
2798
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
2799
+ isBounded?: boolean | undefined;
2800
+ }[]
2801
+ | undefined;
2802
+ }
2803
+ | null
2804
+ | undefined;
2805
+ percentTreated?: number | null | undefined;
2806
+ activeFilter?: string | null | undefined;
2807
+ showFiltersOnDashboard?: boolean | null | undefined;
2808
+ numberOfRowsSentInAIPrompt?: number | null | undefined;
2809
+ variableSelectors?:
2810
+ | {
2811
+ name: string;
2812
+ label: string;
2813
+ }[]
2814
+ | null
2815
+ | undefined;
2816
+ },
2817
+ {
2818
+ sliders: {
2819
+ max: number;
2820
+ min: number;
2821
+ value: number;
2822
+ id: string;
2823
+ name: string;
2824
+ description?: string | null | undefined;
2825
+ label?: string | null | undefined;
2826
+ }[];
2827
+ scores: {
2828
+ fieldName: string;
2829
+ fieldLabel?: string | null | undefined;
2830
+ sortOrder?: "asc" | "desc" | null | undefined;
2831
+ }[];
2832
+ sliderAssociations: {
2833
+ sliderID: string;
2834
+ uswID: string;
2835
+ showInDashboard?: boolean | null | undefined;
2836
+ }[];
2837
+ title?: string | null | undefined;
2838
+ rules?:
2839
+ | {
2840
+ value: string | number | boolean | (string | number | boolean)[];
2841
+ id: string;
2842
+ operator: "===" | ">" | "<" | ">=" | "<=" | "!==" | "in" | "between" | "betweenInclusive";
2843
+ model: string;
2844
+ }[]
2845
+ | null
2846
+ | undefined;
2847
+ filters?:
2848
+ | {
2849
+ name: string;
2850
+ rules: string[];
2851
+ joinBy?: "and" | "or" | null | undefined;
2852
+ }[]
2853
+ | null
2854
+ | undefined;
2855
+ version?: string | undefined;
2856
+ isOffline?: boolean | null | undefined;
2857
+ datasetID?: string | null | undefined;
2858
+ dependentVariable?: string | null | undefined;
2859
+ positivePolarityValues?: (string | number | null | undefined)[] | null | undefined;
2860
+ projectedPopulation?: number | null | undefined;
2861
+ customCharts?:
2862
+ | {
2863
+ id: string;
2864
+ dataInitializationCode: string;
2865
+ metricCalculationCode: string;
2866
+ metric: string;
2867
+ resolution: number;
2868
+ unit: "currency" | "percentage" | "none";
2869
+ minRange: number;
2870
+ maxRange: number;
2871
+ seriesType: "line" | "bar";
2872
+ currency?: "USD" | "GBP" | "EUR" | "JPY" | "AUD" | "CAD" | "INR" | null | undefined;
2873
+ title?: string | null | undefined;
2874
+ xAxisDecimalPlaces?: number | null | undefined;
2875
+ yAxisDecimalPlaces?: number | null | undefined;
2876
+ showRangeSlider?: boolean | null | undefined;
2877
+ showInDashboard?: boolean | null | undefined;
2878
+ showInMetricTable?: boolean | null | undefined;
2879
+ showBaseline?: boolean | null | undefined;
2880
+ description?: string | null | undefined;
2881
+ metricTableRowOrder?: number | null | undefined;
2882
+ aspectRatio?: number | null | undefined;
2883
+ scaleMetric?: boolean | null | undefined;
2884
+ suppressBar?: boolean | null | undefined;
2885
+ suppressXAxisLabel?: boolean | null | undefined;
2886
+ showThreshold?: boolean | null | undefined;
2887
+ reverseXAxis?: boolean | null | undefined;
2888
+ aiPrompt?: string | null | undefined;
2889
+ highlightType?: "none" | "max" | "min" | null | undefined;
2890
+ optimizeResolution?: boolean | null | undefined;
2891
+ }[]
2892
+ | null
2893
+ | undefined;
2894
+ customChartLayoutMap?:
2895
+ | {
2896
+ xl?:
2897
+ | {
2898
+ i: string;
2899
+ x: number;
2900
+ y: number;
2901
+ w: number;
2902
+ h: number;
2903
+ minW?: number | undefined;
2904
+ maxW?: number | undefined;
2905
+ minH?: number | undefined;
2906
+ maxH?: number | undefined;
2907
+ moved?: boolean | undefined;
2908
+ static?: boolean | undefined;
2909
+ isDraggable?: boolean | undefined;
2910
+ isResizable?: boolean | undefined;
2911
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
2912
+ isBounded?: boolean | undefined;
2913
+ }[]
2914
+ | undefined;
2915
+ lg?:
2916
+ | {
2917
+ i: string;
2918
+ x: number;
2919
+ y: number;
2920
+ w: number;
2921
+ h: number;
2922
+ minW?: number | undefined;
2923
+ maxW?: number | undefined;
2924
+ minH?: number | undefined;
2925
+ maxH?: number | undefined;
2926
+ moved?: boolean | undefined;
2927
+ static?: boolean | undefined;
2928
+ isDraggable?: boolean | undefined;
2929
+ isResizable?: boolean | undefined;
2930
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
2931
+ isBounded?: boolean | undefined;
2932
+ }[]
2933
+ | undefined;
2934
+ md?:
2935
+ | {
2936
+ i: string;
2937
+ x: number;
2938
+ y: number;
2939
+ w: number;
2940
+ h: number;
2941
+ minW?: number | undefined;
2942
+ maxW?: number | undefined;
2943
+ minH?: number | undefined;
2944
+ maxH?: number | undefined;
2945
+ moved?: boolean | undefined;
2946
+ static?: boolean | undefined;
2947
+ isDraggable?: boolean | undefined;
2948
+ isResizable?: boolean | undefined;
2949
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
2950
+ isBounded?: boolean | undefined;
2951
+ }[]
2952
+ | undefined;
2953
+ sm?:
2954
+ | {
2955
+ i: string;
2956
+ x: number;
2957
+ y: number;
2958
+ w: number;
2959
+ h: number;
2960
+ minW?: number | undefined;
2961
+ maxW?: number | undefined;
2962
+ minH?: number | undefined;
2963
+ maxH?: number | undefined;
2964
+ moved?: boolean | undefined;
2965
+ static?: boolean | undefined;
2966
+ isDraggable?: boolean | undefined;
2967
+ isResizable?: boolean | undefined;
2968
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
2969
+ isBounded?: boolean | undefined;
2970
+ }[]
2971
+ | undefined;
2972
+ xs?:
2973
+ | {
2974
+ i: string;
2975
+ x: number;
2976
+ y: number;
2977
+ w: number;
2978
+ h: number;
2979
+ minW?: number | undefined;
2980
+ maxW?: number | undefined;
2981
+ minH?: number | undefined;
2982
+ maxH?: number | undefined;
2983
+ moved?: boolean | undefined;
2984
+ static?: boolean | undefined;
2985
+ isDraggable?: boolean | undefined;
2986
+ isResizable?: boolean | undefined;
2987
+ resizeHandles?: ("w" | "s" | "e" | "n" | "sw" | "nw" | "se" | "ne")[] | undefined;
2988
+ isBounded?: boolean | undefined;
2989
+ }[]
2990
+ | undefined;
2991
+ }
2992
+ | null
2993
+ | undefined;
2994
+ xAxisName?: string | undefined;
2995
+ percentTreated?: number | null | undefined;
2996
+ activeFilter?: string | null | undefined;
2997
+ showFiltersOnDashboard?: boolean | null | undefined;
2998
+ numberOfRowsSentInAIPrompt?: number | null | undefined;
2999
+ variableSelectors?:
3000
+ | {
3001
+ name: string;
3002
+ label: string;
3003
+ }[]
3004
+ | null
3005
+ | undefined;
3006
+ }
3007
+ >;
3008
+ export type DatumValue = Zod.infer<typeof DatumValueSchema>;
3009
+ export type Datum = Zod.infer<typeof DatumSchema>;
3010
+ export type CustomChartDefinition = Zod.infer<typeof CustomChartDefinitionSchema>;
3011
+ export type Score = Zod.infer<typeof ScoreSchema>;
3012
+ export type Layout = Zod.infer<typeof LayoutSchema>;
3013
+ export type ChartLayout = Zod.infer<typeof ChartLayoutSchema>;
3014
+ export type SliderInfo = Zod.infer<typeof SliderInfoSchema>;
3015
+ export type SliderDefinition = Zod.infer<typeof SliderDefinitionSchema>;
3016
+ export type Sliders = Zod.infer<typeof SlidersSchema>;
3017
+ export type SliderAssociation = Zod.infer<typeof SliderAssociationSchema>;
3018
+ export type Rule = Zod.infer<typeof RuleSchema>;
3019
+ export type Filter = Zod.infer<typeof FilterSchema>;
3020
+ export type Filters = Zod.infer<typeof FiltersSchema>;
3021
+ export type VariableSelector = Zod.infer<typeof VariableSelectorSchema>;
3022
+ export type VariableSelectors = Zod.infer<typeof VariableSelectorsSchema>;
3023
+ export type ChartDefinition = Zod.infer<typeof ChartDefinitionSchema>;
3024
+ //# sourceMappingURL=schema.d.ts.map