@lightdash/common 0.1480.1 → 0.1480.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. package/dist/authorization/types.d.ts +1 -1
  2. package/dist/ee/Ai/schemas.d.ts +152 -152
  3. package/dist/ee/Ai/types.js +1 -1
  4. package/dist/ee/commercialFeatureFlags.js +1 -1
  5. package/dist/ee/embed/index.js +1 -1
  6. package/dist/ee/index.js +1 -1
  7. package/dist/index.js +4 -4
  8. package/dist/types/analytics.js +1 -1
  9. package/dist/types/api/notifications.js +1 -1
  10. package/dist/types/api.js +1 -1
  11. package/dist/types/catalog.js +2 -2
  12. package/dist/types/conditionalFormatting.js +1 -1
  13. package/dist/types/conditionalRule.js +1 -1
  14. package/dist/types/content.js +3 -3
  15. package/dist/types/dashboard.js +2 -2
  16. package/dist/types/dbt.js +3 -3
  17. package/dist/types/dbtSemanticLayer.js +5 -5
  18. package/dist/types/downloadFile.js +1 -1
  19. package/dist/types/explore.js +3 -3
  20. package/dist/types/featureFlags.js +1 -1
  21. package/dist/types/field.js +10 -10
  22. package/dist/types/filter.js +3 -3
  23. package/dist/types/job.js +4 -4
  24. package/dist/types/metricsExplorer.js +2 -2
  25. package/dist/types/openIdIdentity.js +1 -1
  26. package/dist/types/organizationMemberProfile.js +1 -1
  27. package/dist/types/projectMemberRole.js +1 -1
  28. package/dist/types/projects.js +6 -6
  29. package/dist/types/promotion.js +1 -1
  30. package/dist/types/resourceViewItem.js +2 -2
  31. package/dist/types/savedCharts.js +8 -8
  32. package/dist/types/scheduler.js +6 -6
  33. package/dist/types/search.js +1 -1
  34. package/dist/types/semanticLayer.js +4 -4
  35. package/dist/types/space.js +1 -1
  36. package/dist/types/spotlightTableConfig.js +1 -1
  37. package/dist/types/table.js +1 -1
  38. package/dist/types/timeFrames.js +2 -2
  39. package/dist/types/timezone.js +1 -1
  40. package/dist/types/user.js +1 -1
  41. package/dist/types/validation.js +3 -3
  42. package/dist/types/warehouse.js +1 -1
  43. package/dist/utils/timeFrames.js +1 -1
  44. package/dist/visualizations/CartesianChartDataModel.js +1 -1
  45. package/dist/visualizations/types/index.js +4 -4
  46. package/package.json +2 -3
@@ -16,19 +16,19 @@ export declare const FilterGroupSchema: z.ZodUnion<[z.ZodObject<{
16
16
  operator: z.ZodUnion<[z.ZodLiteral<ConditionalOperator.NULL>, z.ZodLiteral<ConditionalOperator.NOT_NULL>, z.ZodLiteral<ConditionalOperator.EQUALS>, z.ZodLiteral<ConditionalOperator.NOT_EQUALS>, z.ZodLiteral<ConditionalOperator.STARTS_WITH>, z.ZodLiteral<ConditionalOperator.ENDS_WITH>, z.ZodLiteral<ConditionalOperator.INCLUDE>, z.ZodLiteral<ConditionalOperator.NOT_INCLUDE>, z.ZodLiteral<ConditionalOperator.LESS_THAN>, z.ZodLiteral<ConditionalOperator.LESS_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.GREATER_THAN>, z.ZodLiteral<ConditionalOperator.GREATER_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.IN_BETWEEN>]>;
17
17
  values: z.ZodArray<z.ZodUnknown, "many">;
18
18
  }, "strip", z.ZodTypeAny, {
19
+ values: unknown[];
19
20
  target: {
20
21
  fieldId: string;
21
22
  };
22
23
  id: string;
23
24
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
24
- values: unknown[];
25
25
  }, {
26
+ values: unknown[];
26
27
  target: {
27
28
  fieldId: string;
28
29
  };
29
30
  id: string;
30
31
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
31
- values: unknown[];
32
32
  }>, z.ZodObject<z.objectUtil.extendShape<{
33
33
  id: z.ZodString;
34
34
  target: z.ZodObject<{
@@ -53,6 +53,7 @@ export declare const FilterGroupSchema: z.ZodUnion<[z.ZodObject<{
53
53
  unitOfTime: UnitOfTime;
54
54
  }>;
55
55
  }>, "strip", z.ZodTypeAny, {
56
+ values: unknown[];
56
57
  target: {
57
58
  fieldId: string;
58
59
  };
@@ -62,8 +63,8 @@ export declare const FilterGroupSchema: z.ZodUnion<[z.ZodObject<{
62
63
  unitOfTime: UnitOfTime;
63
64
  };
64
65
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
65
- values: unknown[];
66
66
  }, {
67
+ values: unknown[];
67
68
  target: {
68
69
  fieldId: string;
69
70
  };
@@ -73,18 +74,18 @@ export declare const FilterGroupSchema: z.ZodUnion<[z.ZodObject<{
73
74
  unitOfTime: UnitOfTime;
74
75
  };
75
76
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
76
- values: unknown[];
77
77
  }>]>, "many">;
78
78
  }, "strip", z.ZodTypeAny, {
79
79
  id: string;
80
80
  and: ({
81
+ values: unknown[];
81
82
  target: {
82
83
  fieldId: string;
83
84
  };
84
85
  id: string;
85
86
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
86
- values: unknown[];
87
87
  } | {
88
+ values: unknown[];
88
89
  target: {
89
90
  fieldId: string;
90
91
  };
@@ -94,18 +95,18 @@ export declare const FilterGroupSchema: z.ZodUnion<[z.ZodObject<{
94
95
  unitOfTime: UnitOfTime;
95
96
  };
96
97
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
97
- values: unknown[];
98
98
  })[];
99
99
  }, {
100
100
  id: string;
101
101
  and: ({
102
+ values: unknown[];
102
103
  target: {
103
104
  fieldId: string;
104
105
  };
105
106
  id: string;
106
107
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
107
- values: unknown[];
108
108
  } | {
109
+ values: unknown[];
109
110
  target: {
110
111
  fieldId: string;
111
112
  };
@@ -115,7 +116,6 @@ export declare const FilterGroupSchema: z.ZodUnion<[z.ZodObject<{
115
116
  unitOfTime: UnitOfTime;
116
117
  };
117
118
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
118
- values: unknown[];
119
119
  })[];
120
120
  }>, z.ZodObject<{
121
121
  id: z.ZodString;
@@ -131,19 +131,19 @@ export declare const FilterGroupSchema: z.ZodUnion<[z.ZodObject<{
131
131
  operator: z.ZodUnion<[z.ZodLiteral<ConditionalOperator.NULL>, z.ZodLiteral<ConditionalOperator.NOT_NULL>, z.ZodLiteral<ConditionalOperator.EQUALS>, z.ZodLiteral<ConditionalOperator.NOT_EQUALS>, z.ZodLiteral<ConditionalOperator.STARTS_WITH>, z.ZodLiteral<ConditionalOperator.ENDS_WITH>, z.ZodLiteral<ConditionalOperator.INCLUDE>, z.ZodLiteral<ConditionalOperator.NOT_INCLUDE>, z.ZodLiteral<ConditionalOperator.LESS_THAN>, z.ZodLiteral<ConditionalOperator.LESS_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.GREATER_THAN>, z.ZodLiteral<ConditionalOperator.GREATER_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.IN_BETWEEN>]>;
132
132
  values: z.ZodArray<z.ZodUnknown, "many">;
133
133
  }, "strip", z.ZodTypeAny, {
134
+ values: unknown[];
134
135
  target: {
135
136
  fieldId: string;
136
137
  };
137
138
  id: string;
138
139
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
139
- values: unknown[];
140
140
  }, {
141
+ values: unknown[];
141
142
  target: {
142
143
  fieldId: string;
143
144
  };
144
145
  id: string;
145
146
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
146
- values: unknown[];
147
147
  }>, z.ZodObject<z.objectUtil.extendShape<{
148
148
  id: z.ZodString;
149
149
  target: z.ZodObject<{
@@ -168,6 +168,7 @@ export declare const FilterGroupSchema: z.ZodUnion<[z.ZodObject<{
168
168
  unitOfTime: UnitOfTime;
169
169
  }>;
170
170
  }>, "strip", z.ZodTypeAny, {
171
+ values: unknown[];
171
172
  target: {
172
173
  fieldId: string;
173
174
  };
@@ -177,8 +178,8 @@ export declare const FilterGroupSchema: z.ZodUnion<[z.ZodObject<{
177
178
  unitOfTime: UnitOfTime;
178
179
  };
179
180
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
180
- values: unknown[];
181
181
  }, {
182
+ values: unknown[];
182
183
  target: {
183
184
  fieldId: string;
184
185
  };
@@ -188,18 +189,18 @@ export declare const FilterGroupSchema: z.ZodUnion<[z.ZodObject<{
188
189
  unitOfTime: UnitOfTime;
189
190
  };
190
191
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
191
- values: unknown[];
192
192
  }>]>, "many">;
193
193
  }, "strip", z.ZodTypeAny, {
194
194
  id: string;
195
195
  or: ({
196
+ values: unknown[];
196
197
  target: {
197
198
  fieldId: string;
198
199
  };
199
200
  id: string;
200
201
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
201
- values: unknown[];
202
202
  } | {
203
+ values: unknown[];
203
204
  target: {
204
205
  fieldId: string;
205
206
  };
@@ -209,18 +210,18 @@ export declare const FilterGroupSchema: z.ZodUnion<[z.ZodObject<{
209
210
  unitOfTime: UnitOfTime;
210
211
  };
211
212
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
212
- values: unknown[];
213
213
  })[];
214
214
  }, {
215
215
  id: string;
216
216
  or: ({
217
+ values: unknown[];
217
218
  target: {
218
219
  fieldId: string;
219
220
  };
220
221
  id: string;
221
222
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
222
- values: unknown[];
223
223
  } | {
224
+ values: unknown[];
224
225
  target: {
225
226
  fieldId: string;
226
227
  };
@@ -230,7 +231,6 @@ export declare const FilterGroupSchema: z.ZodUnion<[z.ZodObject<{
230
231
  unitOfTime: UnitOfTime;
231
232
  };
232
233
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
233
- values: unknown[];
234
234
  })[];
235
235
  }>]>;
236
236
  export declare const FilterSchema: z.ZodObject<{
@@ -248,19 +248,19 @@ export declare const FilterSchema: z.ZodObject<{
248
248
  operator: z.ZodUnion<[z.ZodLiteral<ConditionalOperator.NULL>, z.ZodLiteral<ConditionalOperator.NOT_NULL>, z.ZodLiteral<ConditionalOperator.EQUALS>, z.ZodLiteral<ConditionalOperator.NOT_EQUALS>, z.ZodLiteral<ConditionalOperator.STARTS_WITH>, z.ZodLiteral<ConditionalOperator.ENDS_WITH>, z.ZodLiteral<ConditionalOperator.INCLUDE>, z.ZodLiteral<ConditionalOperator.NOT_INCLUDE>, z.ZodLiteral<ConditionalOperator.LESS_THAN>, z.ZodLiteral<ConditionalOperator.LESS_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.GREATER_THAN>, z.ZodLiteral<ConditionalOperator.GREATER_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.IN_BETWEEN>]>;
249
249
  values: z.ZodArray<z.ZodUnknown, "many">;
250
250
  }, "strip", z.ZodTypeAny, {
251
+ values: unknown[];
251
252
  target: {
252
253
  fieldId: string;
253
254
  };
254
255
  id: string;
255
256
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
256
- values: unknown[];
257
257
  }, {
258
+ values: unknown[];
258
259
  target: {
259
260
  fieldId: string;
260
261
  };
261
262
  id: string;
262
263
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
263
- values: unknown[];
264
264
  }>, z.ZodObject<z.objectUtil.extendShape<{
265
265
  id: z.ZodString;
266
266
  target: z.ZodObject<{
@@ -285,6 +285,7 @@ export declare const FilterSchema: z.ZodObject<{
285
285
  unitOfTime: UnitOfTime;
286
286
  }>;
287
287
  }>, "strip", z.ZodTypeAny, {
288
+ values: unknown[];
288
289
  target: {
289
290
  fieldId: string;
290
291
  };
@@ -294,8 +295,8 @@ export declare const FilterSchema: z.ZodObject<{
294
295
  unitOfTime: UnitOfTime;
295
296
  };
296
297
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
297
- values: unknown[];
298
298
  }, {
299
+ values: unknown[];
299
300
  target: {
300
301
  fieldId: string;
301
302
  };
@@ -305,18 +306,18 @@ export declare const FilterSchema: z.ZodObject<{
305
306
  unitOfTime: UnitOfTime;
306
307
  };
307
308
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
308
- values: unknown[];
309
309
  }>]>, "many">;
310
310
  }, "strip", z.ZodTypeAny, {
311
311
  id: string;
312
312
  and: ({
313
+ values: unknown[];
313
314
  target: {
314
315
  fieldId: string;
315
316
  };
316
317
  id: string;
317
318
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
318
- values: unknown[];
319
319
  } | {
320
+ values: unknown[];
320
321
  target: {
321
322
  fieldId: string;
322
323
  };
@@ -326,18 +327,18 @@ export declare const FilterSchema: z.ZodObject<{
326
327
  unitOfTime: UnitOfTime;
327
328
  };
328
329
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
329
- values: unknown[];
330
330
  })[];
331
331
  }, {
332
332
  id: string;
333
333
  and: ({
334
+ values: unknown[];
334
335
  target: {
335
336
  fieldId: string;
336
337
  };
337
338
  id: string;
338
339
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
339
- values: unknown[];
340
340
  } | {
341
+ values: unknown[];
341
342
  target: {
342
343
  fieldId: string;
343
344
  };
@@ -347,7 +348,6 @@ export declare const FilterSchema: z.ZodObject<{
347
348
  unitOfTime: UnitOfTime;
348
349
  };
349
350
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
350
- values: unknown[];
351
351
  })[];
352
352
  }>, z.ZodObject<{
353
353
  id: z.ZodString;
@@ -363,19 +363,19 @@ export declare const FilterSchema: z.ZodObject<{
363
363
  operator: z.ZodUnion<[z.ZodLiteral<ConditionalOperator.NULL>, z.ZodLiteral<ConditionalOperator.NOT_NULL>, z.ZodLiteral<ConditionalOperator.EQUALS>, z.ZodLiteral<ConditionalOperator.NOT_EQUALS>, z.ZodLiteral<ConditionalOperator.STARTS_WITH>, z.ZodLiteral<ConditionalOperator.ENDS_WITH>, z.ZodLiteral<ConditionalOperator.INCLUDE>, z.ZodLiteral<ConditionalOperator.NOT_INCLUDE>, z.ZodLiteral<ConditionalOperator.LESS_THAN>, z.ZodLiteral<ConditionalOperator.LESS_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.GREATER_THAN>, z.ZodLiteral<ConditionalOperator.GREATER_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.IN_BETWEEN>]>;
364
364
  values: z.ZodArray<z.ZodUnknown, "many">;
365
365
  }, "strip", z.ZodTypeAny, {
366
+ values: unknown[];
366
367
  target: {
367
368
  fieldId: string;
368
369
  };
369
370
  id: string;
370
371
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
371
- values: unknown[];
372
372
  }, {
373
+ values: unknown[];
373
374
  target: {
374
375
  fieldId: string;
375
376
  };
376
377
  id: string;
377
378
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
378
- values: unknown[];
379
379
  }>, z.ZodObject<z.objectUtil.extendShape<{
380
380
  id: z.ZodString;
381
381
  target: z.ZodObject<{
@@ -400,6 +400,7 @@ export declare const FilterSchema: z.ZodObject<{
400
400
  unitOfTime: UnitOfTime;
401
401
  }>;
402
402
  }>, "strip", z.ZodTypeAny, {
403
+ values: unknown[];
403
404
  target: {
404
405
  fieldId: string;
405
406
  };
@@ -409,8 +410,8 @@ export declare const FilterSchema: z.ZodObject<{
409
410
  unitOfTime: UnitOfTime;
410
411
  };
411
412
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
412
- values: unknown[];
413
413
  }, {
414
+ values: unknown[];
414
415
  target: {
415
416
  fieldId: string;
416
417
  };
@@ -420,18 +421,18 @@ export declare const FilterSchema: z.ZodObject<{
420
421
  unitOfTime: UnitOfTime;
421
422
  };
422
423
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
423
- values: unknown[];
424
424
  }>]>, "many">;
425
425
  }, "strip", z.ZodTypeAny, {
426
426
  id: string;
427
427
  or: ({
428
+ values: unknown[];
428
429
  target: {
429
430
  fieldId: string;
430
431
  };
431
432
  id: string;
432
433
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
433
- values: unknown[];
434
434
  } | {
435
+ values: unknown[];
435
436
  target: {
436
437
  fieldId: string;
437
438
  };
@@ -441,18 +442,18 @@ export declare const FilterSchema: z.ZodObject<{
441
442
  unitOfTime: UnitOfTime;
442
443
  };
443
444
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
444
- values: unknown[];
445
445
  })[];
446
446
  }, {
447
447
  id: string;
448
448
  or: ({
449
+ values: unknown[];
449
450
  target: {
450
451
  fieldId: string;
451
452
  };
452
453
  id: string;
453
454
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
454
- values: unknown[];
455
455
  } | {
456
+ values: unknown[];
456
457
  target: {
457
458
  fieldId: string;
458
459
  };
@@ -462,7 +463,6 @@ export declare const FilterSchema: z.ZodObject<{
462
463
  unitOfTime: UnitOfTime;
463
464
  };
464
465
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
465
- values: unknown[];
466
466
  })[];
467
467
  }>]>>;
468
468
  metrics: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
@@ -479,19 +479,19 @@ export declare const FilterSchema: z.ZodObject<{
479
479
  operator: z.ZodUnion<[z.ZodLiteral<ConditionalOperator.NULL>, z.ZodLiteral<ConditionalOperator.NOT_NULL>, z.ZodLiteral<ConditionalOperator.EQUALS>, z.ZodLiteral<ConditionalOperator.NOT_EQUALS>, z.ZodLiteral<ConditionalOperator.STARTS_WITH>, z.ZodLiteral<ConditionalOperator.ENDS_WITH>, z.ZodLiteral<ConditionalOperator.INCLUDE>, z.ZodLiteral<ConditionalOperator.NOT_INCLUDE>, z.ZodLiteral<ConditionalOperator.LESS_THAN>, z.ZodLiteral<ConditionalOperator.LESS_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.GREATER_THAN>, z.ZodLiteral<ConditionalOperator.GREATER_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.IN_BETWEEN>]>;
480
480
  values: z.ZodArray<z.ZodUnknown, "many">;
481
481
  }, "strip", z.ZodTypeAny, {
482
+ values: unknown[];
482
483
  target: {
483
484
  fieldId: string;
484
485
  };
485
486
  id: string;
486
487
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
487
- values: unknown[];
488
488
  }, {
489
+ values: unknown[];
489
490
  target: {
490
491
  fieldId: string;
491
492
  };
492
493
  id: string;
493
494
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
494
- values: unknown[];
495
495
  }>, z.ZodObject<z.objectUtil.extendShape<{
496
496
  id: z.ZodString;
497
497
  target: z.ZodObject<{
@@ -516,6 +516,7 @@ export declare const FilterSchema: z.ZodObject<{
516
516
  unitOfTime: UnitOfTime;
517
517
  }>;
518
518
  }>, "strip", z.ZodTypeAny, {
519
+ values: unknown[];
519
520
  target: {
520
521
  fieldId: string;
521
522
  };
@@ -525,8 +526,8 @@ export declare const FilterSchema: z.ZodObject<{
525
526
  unitOfTime: UnitOfTime;
526
527
  };
527
528
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
528
- values: unknown[];
529
529
  }, {
530
+ values: unknown[];
530
531
  target: {
531
532
  fieldId: string;
532
533
  };
@@ -536,18 +537,18 @@ export declare const FilterSchema: z.ZodObject<{
536
537
  unitOfTime: UnitOfTime;
537
538
  };
538
539
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
539
- values: unknown[];
540
540
  }>]>, "many">;
541
541
  }, "strip", z.ZodTypeAny, {
542
542
  id: string;
543
543
  and: ({
544
+ values: unknown[];
544
545
  target: {
545
546
  fieldId: string;
546
547
  };
547
548
  id: string;
548
549
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
549
- values: unknown[];
550
550
  } | {
551
+ values: unknown[];
551
552
  target: {
552
553
  fieldId: string;
553
554
  };
@@ -557,18 +558,18 @@ export declare const FilterSchema: z.ZodObject<{
557
558
  unitOfTime: UnitOfTime;
558
559
  };
559
560
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
560
- values: unknown[];
561
561
  })[];
562
562
  }, {
563
563
  id: string;
564
564
  and: ({
565
+ values: unknown[];
565
566
  target: {
566
567
  fieldId: string;
567
568
  };
568
569
  id: string;
569
570
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
570
- values: unknown[];
571
571
  } | {
572
+ values: unknown[];
572
573
  target: {
573
574
  fieldId: string;
574
575
  };
@@ -578,7 +579,6 @@ export declare const FilterSchema: z.ZodObject<{
578
579
  unitOfTime: UnitOfTime;
579
580
  };
580
581
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
581
- values: unknown[];
582
582
  })[];
583
583
  }>, z.ZodObject<{
584
584
  id: z.ZodString;
@@ -594,19 +594,19 @@ export declare const FilterSchema: z.ZodObject<{
594
594
  operator: z.ZodUnion<[z.ZodLiteral<ConditionalOperator.NULL>, z.ZodLiteral<ConditionalOperator.NOT_NULL>, z.ZodLiteral<ConditionalOperator.EQUALS>, z.ZodLiteral<ConditionalOperator.NOT_EQUALS>, z.ZodLiteral<ConditionalOperator.STARTS_WITH>, z.ZodLiteral<ConditionalOperator.ENDS_WITH>, z.ZodLiteral<ConditionalOperator.INCLUDE>, z.ZodLiteral<ConditionalOperator.NOT_INCLUDE>, z.ZodLiteral<ConditionalOperator.LESS_THAN>, z.ZodLiteral<ConditionalOperator.LESS_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.GREATER_THAN>, z.ZodLiteral<ConditionalOperator.GREATER_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.IN_BETWEEN>]>;
595
595
  values: z.ZodArray<z.ZodUnknown, "many">;
596
596
  }, "strip", z.ZodTypeAny, {
597
+ values: unknown[];
597
598
  target: {
598
599
  fieldId: string;
599
600
  };
600
601
  id: string;
601
602
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
602
- values: unknown[];
603
603
  }, {
604
+ values: unknown[];
604
605
  target: {
605
606
  fieldId: string;
606
607
  };
607
608
  id: string;
608
609
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
609
- values: unknown[];
610
610
  }>, z.ZodObject<z.objectUtil.extendShape<{
611
611
  id: z.ZodString;
612
612
  target: z.ZodObject<{
@@ -631,6 +631,7 @@ export declare const FilterSchema: z.ZodObject<{
631
631
  unitOfTime: UnitOfTime;
632
632
  }>;
633
633
  }>, "strip", z.ZodTypeAny, {
634
+ values: unknown[];
634
635
  target: {
635
636
  fieldId: string;
636
637
  };
@@ -640,8 +641,8 @@ export declare const FilterSchema: z.ZodObject<{
640
641
  unitOfTime: UnitOfTime;
641
642
  };
642
643
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
643
- values: unknown[];
644
644
  }, {
645
+ values: unknown[];
645
646
  target: {
646
647
  fieldId: string;
647
648
  };
@@ -651,18 +652,18 @@ export declare const FilterSchema: z.ZodObject<{
651
652
  unitOfTime: UnitOfTime;
652
653
  };
653
654
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
654
- values: unknown[];
655
655
  }>]>, "many">;
656
656
  }, "strip", z.ZodTypeAny, {
657
657
  id: string;
658
658
  or: ({
659
+ values: unknown[];
659
660
  target: {
660
661
  fieldId: string;
661
662
  };
662
663
  id: string;
663
664
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
664
- values: unknown[];
665
665
  } | {
666
+ values: unknown[];
666
667
  target: {
667
668
  fieldId: string;
668
669
  };
@@ -672,18 +673,18 @@ export declare const FilterSchema: z.ZodObject<{
672
673
  unitOfTime: UnitOfTime;
673
674
  };
674
675
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
675
- values: unknown[];
676
676
  })[];
677
677
  }, {
678
678
  id: string;
679
679
  or: ({
680
+ values: unknown[];
680
681
  target: {
681
682
  fieldId: string;
682
683
  };
683
684
  id: string;
684
685
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
685
- values: unknown[];
686
686
  } | {
687
+ values: unknown[];
687
688
  target: {
688
689
  fieldId: string;
689
690
  };
@@ -693,20 +694,20 @@ export declare const FilterSchema: z.ZodObject<{
693
694
  unitOfTime: UnitOfTime;
694
695
  };
695
696
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
696
- values: unknown[];
697
697
  })[];
698
698
  }>]>>;
699
699
  }, "strip", z.ZodTypeAny, {
700
700
  dimensions?: {
701
701
  id: string;
702
702
  and: ({
703
+ values: unknown[];
703
704
  target: {
704
705
  fieldId: string;
705
706
  };
706
707
  id: string;
707
708
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
708
- values: unknown[];
709
709
  } | {
710
+ values: unknown[];
710
711
  target: {
711
712
  fieldId: string;
712
713
  };
@@ -716,18 +717,18 @@ export declare const FilterSchema: z.ZodObject<{
716
717
  unitOfTime: UnitOfTime;
717
718
  };
718
719
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
719
- values: unknown[];
720
720
  })[];
721
721
  } | {
722
722
  id: string;
723
723
  or: ({
724
+ values: unknown[];
724
725
  target: {
725
726
  fieldId: string;
726
727
  };
727
728
  id: string;
728
729
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
729
- values: unknown[];
730
730
  } | {
731
+ values: unknown[];
731
732
  target: {
732
733
  fieldId: string;
733
734
  };
@@ -737,19 +738,19 @@ export declare const FilterSchema: z.ZodObject<{
737
738
  unitOfTime: UnitOfTime;
738
739
  };
739
740
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
740
- values: unknown[];
741
741
  })[];
742
742
  } | undefined;
743
743
  metrics?: {
744
744
  id: string;
745
745
  and: ({
746
+ values: unknown[];
746
747
  target: {
747
748
  fieldId: string;
748
749
  };
749
750
  id: string;
750
751
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
751
- values: unknown[];
752
752
  } | {
753
+ values: unknown[];
753
754
  target: {
754
755
  fieldId: string;
755
756
  };
@@ -759,18 +760,18 @@ export declare const FilterSchema: z.ZodObject<{
759
760
  unitOfTime: UnitOfTime;
760
761
  };
761
762
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
762
- values: unknown[];
763
763
  })[];
764
764
  } | {
765
765
  id: string;
766
766
  or: ({
767
+ values: unknown[];
767
768
  target: {
768
769
  fieldId: string;
769
770
  };
770
771
  id: string;
771
772
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
772
- values: unknown[];
773
773
  } | {
774
+ values: unknown[];
774
775
  target: {
775
776
  fieldId: string;
776
777
  };
@@ -780,20 +781,20 @@ export declare const FilterSchema: z.ZodObject<{
780
781
  unitOfTime: UnitOfTime;
781
782
  };
782
783
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
783
- values: unknown[];
784
784
  })[];
785
785
  } | undefined;
786
786
  }, {
787
787
  dimensions?: {
788
788
  id: string;
789
789
  and: ({
790
+ values: unknown[];
790
791
  target: {
791
792
  fieldId: string;
792
793
  };
793
794
  id: string;
794
795
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
795
- values: unknown[];
796
796
  } | {
797
+ values: unknown[];
797
798
  target: {
798
799
  fieldId: string;
799
800
  };
@@ -803,18 +804,18 @@ export declare const FilterSchema: z.ZodObject<{
803
804
  unitOfTime: UnitOfTime;
804
805
  };
805
806
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
806
- values: unknown[];
807
807
  })[];
808
808
  } | {
809
809
  id: string;
810
810
  or: ({
811
+ values: unknown[];
811
812
  target: {
812
813
  fieldId: string;
813
814
  };
814
815
  id: string;
815
816
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
816
- values: unknown[];
817
817
  } | {
818
+ values: unknown[];
818
819
  target: {
819
820
  fieldId: string;
820
821
  };
@@ -824,19 +825,19 @@ export declare const FilterSchema: z.ZodObject<{
824
825
  unitOfTime: UnitOfTime;
825
826
  };
826
827
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
827
- values: unknown[];
828
828
  })[];
829
829
  } | undefined;
830
830
  metrics?: {
831
831
  id: string;
832
832
  and: ({
833
+ values: unknown[];
833
834
  target: {
834
835
  fieldId: string;
835
836
  };
836
837
  id: string;
837
838
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
838
- values: unknown[];
839
839
  } | {
840
+ values: unknown[];
840
841
  target: {
841
842
  fieldId: string;
842
843
  };
@@ -846,18 +847,18 @@ export declare const FilterSchema: z.ZodObject<{
846
847
  unitOfTime: UnitOfTime;
847
848
  };
848
849
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
849
- values: unknown[];
850
850
  })[];
851
851
  } | {
852
852
  id: string;
853
853
  or: ({
854
+ values: unknown[];
854
855
  target: {
855
856
  fieldId: string;
856
857
  };
857
858
  id: string;
858
859
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
859
- values: unknown[];
860
860
  } | {
861
+ values: unknown[];
861
862
  target: {
862
863
  fieldId: string;
863
864
  };
@@ -867,7 +868,6 @@ export declare const FilterSchema: z.ZodObject<{
867
868
  unitOfTime: UnitOfTime;
868
869
  };
869
870
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
870
- values: unknown[];
871
871
  })[];
872
872
  } | undefined;
873
873
  }>;
@@ -887,19 +887,19 @@ export declare const GenerateQueryFiltersToolSchema: z.ZodObject<{
887
887
  operator: z.ZodUnion<[z.ZodLiteral<ConditionalOperator.NULL>, z.ZodLiteral<ConditionalOperator.NOT_NULL>, z.ZodLiteral<ConditionalOperator.EQUALS>, z.ZodLiteral<ConditionalOperator.NOT_EQUALS>, z.ZodLiteral<ConditionalOperator.STARTS_WITH>, z.ZodLiteral<ConditionalOperator.ENDS_WITH>, z.ZodLiteral<ConditionalOperator.INCLUDE>, z.ZodLiteral<ConditionalOperator.NOT_INCLUDE>, z.ZodLiteral<ConditionalOperator.LESS_THAN>, z.ZodLiteral<ConditionalOperator.LESS_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.GREATER_THAN>, z.ZodLiteral<ConditionalOperator.GREATER_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.IN_BETWEEN>]>;
888
888
  values: z.ZodArray<z.ZodUnknown, "many">;
889
889
  }, "strip", z.ZodTypeAny, {
890
+ values: unknown[];
890
891
  target: {
891
892
  fieldId: string;
892
893
  };
893
894
  id: string;
894
895
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
895
- values: unknown[];
896
896
  }, {
897
+ values: unknown[];
897
898
  target: {
898
899
  fieldId: string;
899
900
  };
900
901
  id: string;
901
902
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
902
- values: unknown[];
903
903
  }>, z.ZodObject<z.objectUtil.extendShape<{
904
904
  id: z.ZodString;
905
905
  target: z.ZodObject<{
@@ -924,6 +924,7 @@ export declare const GenerateQueryFiltersToolSchema: z.ZodObject<{
924
924
  unitOfTime: UnitOfTime;
925
925
  }>;
926
926
  }>, "strip", z.ZodTypeAny, {
927
+ values: unknown[];
927
928
  target: {
928
929
  fieldId: string;
929
930
  };
@@ -933,8 +934,8 @@ export declare const GenerateQueryFiltersToolSchema: z.ZodObject<{
933
934
  unitOfTime: UnitOfTime;
934
935
  };
935
936
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
936
- values: unknown[];
937
937
  }, {
938
+ values: unknown[];
938
939
  target: {
939
940
  fieldId: string;
940
941
  };
@@ -944,18 +945,18 @@ export declare const GenerateQueryFiltersToolSchema: z.ZodObject<{
944
945
  unitOfTime: UnitOfTime;
945
946
  };
946
947
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
947
- values: unknown[];
948
948
  }>]>, "many">;
949
949
  }, "strip", z.ZodTypeAny, {
950
950
  id: string;
951
951
  and: ({
952
+ values: unknown[];
952
953
  target: {
953
954
  fieldId: string;
954
955
  };
955
956
  id: string;
956
957
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
957
- values: unknown[];
958
958
  } | {
959
+ values: unknown[];
959
960
  target: {
960
961
  fieldId: string;
961
962
  };
@@ -965,18 +966,18 @@ export declare const GenerateQueryFiltersToolSchema: z.ZodObject<{
965
966
  unitOfTime: UnitOfTime;
966
967
  };
967
968
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
968
- values: unknown[];
969
969
  })[];
970
970
  }, {
971
971
  id: string;
972
972
  and: ({
973
+ values: unknown[];
973
974
  target: {
974
975
  fieldId: string;
975
976
  };
976
977
  id: string;
977
978
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
978
- values: unknown[];
979
979
  } | {
980
+ values: unknown[];
980
981
  target: {
981
982
  fieldId: string;
982
983
  };
@@ -986,7 +987,6 @@ export declare const GenerateQueryFiltersToolSchema: z.ZodObject<{
986
987
  unitOfTime: UnitOfTime;
987
988
  };
988
989
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
989
- values: unknown[];
990
990
  })[];
991
991
  }>, z.ZodObject<{
992
992
  id: z.ZodString;
@@ -1002,19 +1002,19 @@ export declare const GenerateQueryFiltersToolSchema: z.ZodObject<{
1002
1002
  operator: z.ZodUnion<[z.ZodLiteral<ConditionalOperator.NULL>, z.ZodLiteral<ConditionalOperator.NOT_NULL>, z.ZodLiteral<ConditionalOperator.EQUALS>, z.ZodLiteral<ConditionalOperator.NOT_EQUALS>, z.ZodLiteral<ConditionalOperator.STARTS_WITH>, z.ZodLiteral<ConditionalOperator.ENDS_WITH>, z.ZodLiteral<ConditionalOperator.INCLUDE>, z.ZodLiteral<ConditionalOperator.NOT_INCLUDE>, z.ZodLiteral<ConditionalOperator.LESS_THAN>, z.ZodLiteral<ConditionalOperator.LESS_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.GREATER_THAN>, z.ZodLiteral<ConditionalOperator.GREATER_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.IN_BETWEEN>]>;
1003
1003
  values: z.ZodArray<z.ZodUnknown, "many">;
1004
1004
  }, "strip", z.ZodTypeAny, {
1005
+ values: unknown[];
1005
1006
  target: {
1006
1007
  fieldId: string;
1007
1008
  };
1008
1009
  id: string;
1009
1010
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1010
- values: unknown[];
1011
1011
  }, {
1012
+ values: unknown[];
1012
1013
  target: {
1013
1014
  fieldId: string;
1014
1015
  };
1015
1016
  id: string;
1016
1017
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1017
- values: unknown[];
1018
1018
  }>, z.ZodObject<z.objectUtil.extendShape<{
1019
1019
  id: z.ZodString;
1020
1020
  target: z.ZodObject<{
@@ -1039,6 +1039,7 @@ export declare const GenerateQueryFiltersToolSchema: z.ZodObject<{
1039
1039
  unitOfTime: UnitOfTime;
1040
1040
  }>;
1041
1041
  }>, "strip", z.ZodTypeAny, {
1042
+ values: unknown[];
1042
1043
  target: {
1043
1044
  fieldId: string;
1044
1045
  };
@@ -1048,8 +1049,8 @@ export declare const GenerateQueryFiltersToolSchema: z.ZodObject<{
1048
1049
  unitOfTime: UnitOfTime;
1049
1050
  };
1050
1051
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1051
- values: unknown[];
1052
1052
  }, {
1053
+ values: unknown[];
1053
1054
  target: {
1054
1055
  fieldId: string;
1055
1056
  };
@@ -1059,18 +1060,18 @@ export declare const GenerateQueryFiltersToolSchema: z.ZodObject<{
1059
1060
  unitOfTime: UnitOfTime;
1060
1061
  };
1061
1062
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1062
- values: unknown[];
1063
1063
  }>]>, "many">;
1064
1064
  }, "strip", z.ZodTypeAny, {
1065
1065
  id: string;
1066
1066
  or: ({
1067
+ values: unknown[];
1067
1068
  target: {
1068
1069
  fieldId: string;
1069
1070
  };
1070
1071
  id: string;
1071
1072
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1072
- values: unknown[];
1073
1073
  } | {
1074
+ values: unknown[];
1074
1075
  target: {
1075
1076
  fieldId: string;
1076
1077
  };
@@ -1080,18 +1081,18 @@ export declare const GenerateQueryFiltersToolSchema: z.ZodObject<{
1080
1081
  unitOfTime: UnitOfTime;
1081
1082
  };
1082
1083
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1083
- values: unknown[];
1084
1084
  })[];
1085
1085
  }, {
1086
1086
  id: string;
1087
1087
  or: ({
1088
+ values: unknown[];
1088
1089
  target: {
1089
1090
  fieldId: string;
1090
1091
  };
1091
1092
  id: string;
1092
1093
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1093
- values: unknown[];
1094
1094
  } | {
1095
+ values: unknown[];
1095
1096
  target: {
1096
1097
  fieldId: string;
1097
1098
  };
@@ -1101,7 +1102,6 @@ export declare const GenerateQueryFiltersToolSchema: z.ZodObject<{
1101
1102
  unitOfTime: UnitOfTime;
1102
1103
  };
1103
1104
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1104
- values: unknown[];
1105
1105
  })[];
1106
1106
  }>]>;
1107
1107
  }, "strip", z.ZodTypeAny, {
@@ -1109,13 +1109,14 @@ export declare const GenerateQueryFiltersToolSchema: z.ZodObject<{
1109
1109
  filterGroup: {
1110
1110
  id: string;
1111
1111
  and: ({
1112
+ values: unknown[];
1112
1113
  target: {
1113
1114
  fieldId: string;
1114
1115
  };
1115
1116
  id: string;
1116
1117
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1117
- values: unknown[];
1118
1118
  } | {
1119
+ values: unknown[];
1119
1120
  target: {
1120
1121
  fieldId: string;
1121
1122
  };
@@ -1125,18 +1126,18 @@ export declare const GenerateQueryFiltersToolSchema: z.ZodObject<{
1125
1126
  unitOfTime: UnitOfTime;
1126
1127
  };
1127
1128
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1128
- values: unknown[];
1129
1129
  })[];
1130
1130
  } | {
1131
1131
  id: string;
1132
1132
  or: ({
1133
+ values: unknown[];
1133
1134
  target: {
1134
1135
  fieldId: string;
1135
1136
  };
1136
1137
  id: string;
1137
1138
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1138
- values: unknown[];
1139
1139
  } | {
1140
+ values: unknown[];
1140
1141
  target: {
1141
1142
  fieldId: string;
1142
1143
  };
@@ -1146,7 +1147,6 @@ export declare const GenerateQueryFiltersToolSchema: z.ZodObject<{
1146
1147
  unitOfTime: UnitOfTime;
1147
1148
  };
1148
1149
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1149
- values: unknown[];
1150
1150
  })[];
1151
1151
  };
1152
1152
  }, {
@@ -1154,13 +1154,14 @@ export declare const GenerateQueryFiltersToolSchema: z.ZodObject<{
1154
1154
  filterGroup: {
1155
1155
  id: string;
1156
1156
  and: ({
1157
+ values: unknown[];
1157
1158
  target: {
1158
1159
  fieldId: string;
1159
1160
  };
1160
1161
  id: string;
1161
1162
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1162
- values: unknown[];
1163
1163
  } | {
1164
+ values: unknown[];
1164
1165
  target: {
1165
1166
  fieldId: string;
1166
1167
  };
@@ -1170,18 +1171,18 @@ export declare const GenerateQueryFiltersToolSchema: z.ZodObject<{
1170
1171
  unitOfTime: UnitOfTime;
1171
1172
  };
1172
1173
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1173
- values: unknown[];
1174
1174
  })[];
1175
1175
  } | {
1176
1176
  id: string;
1177
1177
  or: ({
1178
+ values: unknown[];
1178
1179
  target: {
1179
1180
  fieldId: string;
1180
1181
  };
1181
1182
  id: string;
1182
1183
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1183
- values: unknown[];
1184
1184
  } | {
1185
+ values: unknown[];
1185
1186
  target: {
1186
1187
  fieldId: string;
1187
1188
  };
@@ -1191,7 +1192,6 @@ export declare const GenerateQueryFiltersToolSchema: z.ZodObject<{
1191
1192
  unitOfTime: UnitOfTime;
1192
1193
  };
1193
1194
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1194
- values: unknown[];
1195
1195
  })[];
1196
1196
  };
1197
1197
  }>;
@@ -1224,19 +1224,19 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1224
1224
  operator: z.ZodUnion<[z.ZodLiteral<ConditionalOperator.NULL>, z.ZodLiteral<ConditionalOperator.NOT_NULL>, z.ZodLiteral<ConditionalOperator.EQUALS>, z.ZodLiteral<ConditionalOperator.NOT_EQUALS>, z.ZodLiteral<ConditionalOperator.STARTS_WITH>, z.ZodLiteral<ConditionalOperator.ENDS_WITH>, z.ZodLiteral<ConditionalOperator.INCLUDE>, z.ZodLiteral<ConditionalOperator.NOT_INCLUDE>, z.ZodLiteral<ConditionalOperator.LESS_THAN>, z.ZodLiteral<ConditionalOperator.LESS_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.GREATER_THAN>, z.ZodLiteral<ConditionalOperator.GREATER_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.IN_BETWEEN>]>;
1225
1225
  values: z.ZodArray<z.ZodUnknown, "many">;
1226
1226
  }, "strip", z.ZodTypeAny, {
1227
+ values: unknown[];
1227
1228
  target: {
1228
1229
  fieldId: string;
1229
1230
  };
1230
1231
  id: string;
1231
1232
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1232
- values: unknown[];
1233
1233
  }, {
1234
+ values: unknown[];
1234
1235
  target: {
1235
1236
  fieldId: string;
1236
1237
  };
1237
1238
  id: string;
1238
1239
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1239
- values: unknown[];
1240
1240
  }>, z.ZodObject<z.objectUtil.extendShape<{
1241
1241
  id: z.ZodString;
1242
1242
  target: z.ZodObject<{
@@ -1261,6 +1261,7 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1261
1261
  unitOfTime: UnitOfTime;
1262
1262
  }>;
1263
1263
  }>, "strip", z.ZodTypeAny, {
1264
+ values: unknown[];
1264
1265
  target: {
1265
1266
  fieldId: string;
1266
1267
  };
@@ -1270,8 +1271,8 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1270
1271
  unitOfTime: UnitOfTime;
1271
1272
  };
1272
1273
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1273
- values: unknown[];
1274
1274
  }, {
1275
+ values: unknown[];
1275
1276
  target: {
1276
1277
  fieldId: string;
1277
1278
  };
@@ -1281,18 +1282,18 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1281
1282
  unitOfTime: UnitOfTime;
1282
1283
  };
1283
1284
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1284
- values: unknown[];
1285
1285
  }>]>, "many">;
1286
1286
  }, "strip", z.ZodTypeAny, {
1287
1287
  id: string;
1288
1288
  and: ({
1289
+ values: unknown[];
1289
1290
  target: {
1290
1291
  fieldId: string;
1291
1292
  };
1292
1293
  id: string;
1293
1294
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1294
- values: unknown[];
1295
1295
  } | {
1296
+ values: unknown[];
1296
1297
  target: {
1297
1298
  fieldId: string;
1298
1299
  };
@@ -1302,18 +1303,18 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1302
1303
  unitOfTime: UnitOfTime;
1303
1304
  };
1304
1305
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1305
- values: unknown[];
1306
1306
  })[];
1307
1307
  }, {
1308
1308
  id: string;
1309
1309
  and: ({
1310
+ values: unknown[];
1310
1311
  target: {
1311
1312
  fieldId: string;
1312
1313
  };
1313
1314
  id: string;
1314
1315
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1315
- values: unknown[];
1316
1316
  } | {
1317
+ values: unknown[];
1317
1318
  target: {
1318
1319
  fieldId: string;
1319
1320
  };
@@ -1323,7 +1324,6 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1323
1324
  unitOfTime: UnitOfTime;
1324
1325
  };
1325
1326
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1326
- values: unknown[];
1327
1327
  })[];
1328
1328
  }>, z.ZodObject<{
1329
1329
  id: z.ZodString;
@@ -1339,19 +1339,19 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1339
1339
  operator: z.ZodUnion<[z.ZodLiteral<ConditionalOperator.NULL>, z.ZodLiteral<ConditionalOperator.NOT_NULL>, z.ZodLiteral<ConditionalOperator.EQUALS>, z.ZodLiteral<ConditionalOperator.NOT_EQUALS>, z.ZodLiteral<ConditionalOperator.STARTS_WITH>, z.ZodLiteral<ConditionalOperator.ENDS_WITH>, z.ZodLiteral<ConditionalOperator.INCLUDE>, z.ZodLiteral<ConditionalOperator.NOT_INCLUDE>, z.ZodLiteral<ConditionalOperator.LESS_THAN>, z.ZodLiteral<ConditionalOperator.LESS_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.GREATER_THAN>, z.ZodLiteral<ConditionalOperator.GREATER_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.IN_BETWEEN>]>;
1340
1340
  values: z.ZodArray<z.ZodUnknown, "many">;
1341
1341
  }, "strip", z.ZodTypeAny, {
1342
+ values: unknown[];
1342
1343
  target: {
1343
1344
  fieldId: string;
1344
1345
  };
1345
1346
  id: string;
1346
1347
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1347
- values: unknown[];
1348
1348
  }, {
1349
+ values: unknown[];
1349
1350
  target: {
1350
1351
  fieldId: string;
1351
1352
  };
1352
1353
  id: string;
1353
1354
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1354
- values: unknown[];
1355
1355
  }>, z.ZodObject<z.objectUtil.extendShape<{
1356
1356
  id: z.ZodString;
1357
1357
  target: z.ZodObject<{
@@ -1376,6 +1376,7 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1376
1376
  unitOfTime: UnitOfTime;
1377
1377
  }>;
1378
1378
  }>, "strip", z.ZodTypeAny, {
1379
+ values: unknown[];
1379
1380
  target: {
1380
1381
  fieldId: string;
1381
1382
  };
@@ -1385,8 +1386,8 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1385
1386
  unitOfTime: UnitOfTime;
1386
1387
  };
1387
1388
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1388
- values: unknown[];
1389
1389
  }, {
1390
+ values: unknown[];
1390
1391
  target: {
1391
1392
  fieldId: string;
1392
1393
  };
@@ -1396,18 +1397,18 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1396
1397
  unitOfTime: UnitOfTime;
1397
1398
  };
1398
1399
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1399
- values: unknown[];
1400
1400
  }>]>, "many">;
1401
1401
  }, "strip", z.ZodTypeAny, {
1402
1402
  id: string;
1403
1403
  or: ({
1404
+ values: unknown[];
1404
1405
  target: {
1405
1406
  fieldId: string;
1406
1407
  };
1407
1408
  id: string;
1408
1409
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1409
- values: unknown[];
1410
1410
  } | {
1411
+ values: unknown[];
1411
1412
  target: {
1412
1413
  fieldId: string;
1413
1414
  };
@@ -1417,18 +1418,18 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1417
1418
  unitOfTime: UnitOfTime;
1418
1419
  };
1419
1420
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1420
- values: unknown[];
1421
1421
  })[];
1422
1422
  }, {
1423
1423
  id: string;
1424
1424
  or: ({
1425
+ values: unknown[];
1425
1426
  target: {
1426
1427
  fieldId: string;
1427
1428
  };
1428
1429
  id: string;
1429
1430
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1430
- values: unknown[];
1431
1431
  } | {
1432
+ values: unknown[];
1432
1433
  target: {
1433
1434
  fieldId: string;
1434
1435
  };
@@ -1438,7 +1439,6 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1438
1439
  unitOfTime: UnitOfTime;
1439
1440
  };
1440
1441
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1441
- values: unknown[];
1442
1442
  })[];
1443
1443
  }>]>>;
1444
1444
  metrics: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
@@ -1455,19 +1455,19 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1455
1455
  operator: z.ZodUnion<[z.ZodLiteral<ConditionalOperator.NULL>, z.ZodLiteral<ConditionalOperator.NOT_NULL>, z.ZodLiteral<ConditionalOperator.EQUALS>, z.ZodLiteral<ConditionalOperator.NOT_EQUALS>, z.ZodLiteral<ConditionalOperator.STARTS_WITH>, z.ZodLiteral<ConditionalOperator.ENDS_WITH>, z.ZodLiteral<ConditionalOperator.INCLUDE>, z.ZodLiteral<ConditionalOperator.NOT_INCLUDE>, z.ZodLiteral<ConditionalOperator.LESS_THAN>, z.ZodLiteral<ConditionalOperator.LESS_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.GREATER_THAN>, z.ZodLiteral<ConditionalOperator.GREATER_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.IN_BETWEEN>]>;
1456
1456
  values: z.ZodArray<z.ZodUnknown, "many">;
1457
1457
  }, "strip", z.ZodTypeAny, {
1458
+ values: unknown[];
1458
1459
  target: {
1459
1460
  fieldId: string;
1460
1461
  };
1461
1462
  id: string;
1462
1463
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1463
- values: unknown[];
1464
1464
  }, {
1465
+ values: unknown[];
1465
1466
  target: {
1466
1467
  fieldId: string;
1467
1468
  };
1468
1469
  id: string;
1469
1470
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1470
- values: unknown[];
1471
1471
  }>, z.ZodObject<z.objectUtil.extendShape<{
1472
1472
  id: z.ZodString;
1473
1473
  target: z.ZodObject<{
@@ -1492,6 +1492,7 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1492
1492
  unitOfTime: UnitOfTime;
1493
1493
  }>;
1494
1494
  }>, "strip", z.ZodTypeAny, {
1495
+ values: unknown[];
1495
1496
  target: {
1496
1497
  fieldId: string;
1497
1498
  };
@@ -1501,8 +1502,8 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1501
1502
  unitOfTime: UnitOfTime;
1502
1503
  };
1503
1504
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1504
- values: unknown[];
1505
1505
  }, {
1506
+ values: unknown[];
1506
1507
  target: {
1507
1508
  fieldId: string;
1508
1509
  };
@@ -1512,18 +1513,18 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1512
1513
  unitOfTime: UnitOfTime;
1513
1514
  };
1514
1515
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1515
- values: unknown[];
1516
1516
  }>]>, "many">;
1517
1517
  }, "strip", z.ZodTypeAny, {
1518
1518
  id: string;
1519
1519
  and: ({
1520
+ values: unknown[];
1520
1521
  target: {
1521
1522
  fieldId: string;
1522
1523
  };
1523
1524
  id: string;
1524
1525
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1525
- values: unknown[];
1526
1526
  } | {
1527
+ values: unknown[];
1527
1528
  target: {
1528
1529
  fieldId: string;
1529
1530
  };
@@ -1533,18 +1534,18 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1533
1534
  unitOfTime: UnitOfTime;
1534
1535
  };
1535
1536
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1536
- values: unknown[];
1537
1537
  })[];
1538
1538
  }, {
1539
1539
  id: string;
1540
1540
  and: ({
1541
+ values: unknown[];
1541
1542
  target: {
1542
1543
  fieldId: string;
1543
1544
  };
1544
1545
  id: string;
1545
1546
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1546
- values: unknown[];
1547
1547
  } | {
1548
+ values: unknown[];
1548
1549
  target: {
1549
1550
  fieldId: string;
1550
1551
  };
@@ -1554,7 +1555,6 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1554
1555
  unitOfTime: UnitOfTime;
1555
1556
  };
1556
1557
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1557
- values: unknown[];
1558
1558
  })[];
1559
1559
  }>, z.ZodObject<{
1560
1560
  id: z.ZodString;
@@ -1570,19 +1570,19 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1570
1570
  operator: z.ZodUnion<[z.ZodLiteral<ConditionalOperator.NULL>, z.ZodLiteral<ConditionalOperator.NOT_NULL>, z.ZodLiteral<ConditionalOperator.EQUALS>, z.ZodLiteral<ConditionalOperator.NOT_EQUALS>, z.ZodLiteral<ConditionalOperator.STARTS_WITH>, z.ZodLiteral<ConditionalOperator.ENDS_WITH>, z.ZodLiteral<ConditionalOperator.INCLUDE>, z.ZodLiteral<ConditionalOperator.NOT_INCLUDE>, z.ZodLiteral<ConditionalOperator.LESS_THAN>, z.ZodLiteral<ConditionalOperator.LESS_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.GREATER_THAN>, z.ZodLiteral<ConditionalOperator.GREATER_THAN_OR_EQUAL>, z.ZodLiteral<ConditionalOperator.IN_BETWEEN>]>;
1571
1571
  values: z.ZodArray<z.ZodUnknown, "many">;
1572
1572
  }, "strip", z.ZodTypeAny, {
1573
+ values: unknown[];
1573
1574
  target: {
1574
1575
  fieldId: string;
1575
1576
  };
1576
1577
  id: string;
1577
1578
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1578
- values: unknown[];
1579
1579
  }, {
1580
+ values: unknown[];
1580
1581
  target: {
1581
1582
  fieldId: string;
1582
1583
  };
1583
1584
  id: string;
1584
1585
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1585
- values: unknown[];
1586
1586
  }>, z.ZodObject<z.objectUtil.extendShape<{
1587
1587
  id: z.ZodString;
1588
1588
  target: z.ZodObject<{
@@ -1607,6 +1607,7 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1607
1607
  unitOfTime: UnitOfTime;
1608
1608
  }>;
1609
1609
  }>, "strip", z.ZodTypeAny, {
1610
+ values: unknown[];
1610
1611
  target: {
1611
1612
  fieldId: string;
1612
1613
  };
@@ -1616,8 +1617,8 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1616
1617
  unitOfTime: UnitOfTime;
1617
1618
  };
1618
1619
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1619
- values: unknown[];
1620
1620
  }, {
1621
+ values: unknown[];
1621
1622
  target: {
1622
1623
  fieldId: string;
1623
1624
  };
@@ -1627,18 +1628,18 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1627
1628
  unitOfTime: UnitOfTime;
1628
1629
  };
1629
1630
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1630
- values: unknown[];
1631
1631
  }>]>, "many">;
1632
1632
  }, "strip", z.ZodTypeAny, {
1633
1633
  id: string;
1634
1634
  or: ({
1635
+ values: unknown[];
1635
1636
  target: {
1636
1637
  fieldId: string;
1637
1638
  };
1638
1639
  id: string;
1639
1640
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1640
- values: unknown[];
1641
1641
  } | {
1642
+ values: unknown[];
1642
1643
  target: {
1643
1644
  fieldId: string;
1644
1645
  };
@@ -1648,18 +1649,18 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1648
1649
  unitOfTime: UnitOfTime;
1649
1650
  };
1650
1651
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1651
- values: unknown[];
1652
1652
  })[];
1653
1653
  }, {
1654
1654
  id: string;
1655
1655
  or: ({
1656
+ values: unknown[];
1656
1657
  target: {
1657
1658
  fieldId: string;
1658
1659
  };
1659
1660
  id: string;
1660
1661
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1661
- values: unknown[];
1662
1662
  } | {
1663
+ values: unknown[];
1663
1664
  target: {
1664
1665
  fieldId: string;
1665
1666
  };
@@ -1669,20 +1670,20 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1669
1670
  unitOfTime: UnitOfTime;
1670
1671
  };
1671
1672
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1672
- values: unknown[];
1673
1673
  })[];
1674
1674
  }>]>>;
1675
1675
  }, "strip", z.ZodTypeAny, {
1676
1676
  dimensions?: {
1677
1677
  id: string;
1678
1678
  and: ({
1679
+ values: unknown[];
1679
1680
  target: {
1680
1681
  fieldId: string;
1681
1682
  };
1682
1683
  id: string;
1683
1684
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1684
- values: unknown[];
1685
1685
  } | {
1686
+ values: unknown[];
1686
1687
  target: {
1687
1688
  fieldId: string;
1688
1689
  };
@@ -1692,18 +1693,18 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1692
1693
  unitOfTime: UnitOfTime;
1693
1694
  };
1694
1695
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1695
- values: unknown[];
1696
1696
  })[];
1697
1697
  } | {
1698
1698
  id: string;
1699
1699
  or: ({
1700
+ values: unknown[];
1700
1701
  target: {
1701
1702
  fieldId: string;
1702
1703
  };
1703
1704
  id: string;
1704
1705
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1705
- values: unknown[];
1706
1706
  } | {
1707
+ values: unknown[];
1707
1708
  target: {
1708
1709
  fieldId: string;
1709
1710
  };
@@ -1713,19 +1714,19 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1713
1714
  unitOfTime: UnitOfTime;
1714
1715
  };
1715
1716
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1716
- values: unknown[];
1717
1717
  })[];
1718
1718
  } | undefined;
1719
1719
  metrics?: {
1720
1720
  id: string;
1721
1721
  and: ({
1722
+ values: unknown[];
1722
1723
  target: {
1723
1724
  fieldId: string;
1724
1725
  };
1725
1726
  id: string;
1726
1727
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1727
- values: unknown[];
1728
1728
  } | {
1729
+ values: unknown[];
1729
1730
  target: {
1730
1731
  fieldId: string;
1731
1732
  };
@@ -1735,18 +1736,18 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1735
1736
  unitOfTime: UnitOfTime;
1736
1737
  };
1737
1738
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1738
- values: unknown[];
1739
1739
  })[];
1740
1740
  } | {
1741
1741
  id: string;
1742
1742
  or: ({
1743
+ values: unknown[];
1743
1744
  target: {
1744
1745
  fieldId: string;
1745
1746
  };
1746
1747
  id: string;
1747
1748
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1748
- values: unknown[];
1749
1749
  } | {
1750
+ values: unknown[];
1750
1751
  target: {
1751
1752
  fieldId: string;
1752
1753
  };
@@ -1756,20 +1757,20 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1756
1757
  unitOfTime: UnitOfTime;
1757
1758
  };
1758
1759
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1759
- values: unknown[];
1760
1760
  })[];
1761
1761
  } | undefined;
1762
1762
  }, {
1763
1763
  dimensions?: {
1764
1764
  id: string;
1765
1765
  and: ({
1766
+ values: unknown[];
1766
1767
  target: {
1767
1768
  fieldId: string;
1768
1769
  };
1769
1770
  id: string;
1770
1771
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1771
- values: unknown[];
1772
1772
  } | {
1773
+ values: unknown[];
1773
1774
  target: {
1774
1775
  fieldId: string;
1775
1776
  };
@@ -1779,18 +1780,18 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1779
1780
  unitOfTime: UnitOfTime;
1780
1781
  };
1781
1782
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1782
- values: unknown[];
1783
1783
  })[];
1784
1784
  } | {
1785
1785
  id: string;
1786
1786
  or: ({
1787
+ values: unknown[];
1787
1788
  target: {
1788
1789
  fieldId: string;
1789
1790
  };
1790
1791
  id: string;
1791
1792
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1792
- values: unknown[];
1793
1793
  } | {
1794
+ values: unknown[];
1794
1795
  target: {
1795
1796
  fieldId: string;
1796
1797
  };
@@ -1800,19 +1801,19 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1800
1801
  unitOfTime: UnitOfTime;
1801
1802
  };
1802
1803
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1803
- values: unknown[];
1804
1804
  })[];
1805
1805
  } | undefined;
1806
1806
  metrics?: {
1807
1807
  id: string;
1808
1808
  and: ({
1809
+ values: unknown[];
1809
1810
  target: {
1810
1811
  fieldId: string;
1811
1812
  };
1812
1813
  id: string;
1813
1814
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1814
- values: unknown[];
1815
1815
  } | {
1816
+ values: unknown[];
1816
1817
  target: {
1817
1818
  fieldId: string;
1818
1819
  };
@@ -1822,18 +1823,18 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1822
1823
  unitOfTime: UnitOfTime;
1823
1824
  };
1824
1825
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1825
- values: unknown[];
1826
1826
  })[];
1827
1827
  } | {
1828
1828
  id: string;
1829
1829
  or: ({
1830
+ values: unknown[];
1830
1831
  target: {
1831
1832
  fieldId: string;
1832
1833
  };
1833
1834
  id: string;
1834
1835
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1835
- values: unknown[];
1836
1836
  } | {
1837
+ values: unknown[];
1837
1838
  target: {
1838
1839
  fieldId: string;
1839
1840
  };
@@ -1843,7 +1844,6 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1843
1844
  unitOfTime: UnitOfTime;
1844
1845
  };
1845
1846
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1846
- values: unknown[];
1847
1847
  })[];
1848
1848
  } | undefined;
1849
1849
  }>;
@@ -1863,13 +1863,14 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1863
1863
  dimensions?: {
1864
1864
  id: string;
1865
1865
  and: ({
1866
+ values: unknown[];
1866
1867
  target: {
1867
1868
  fieldId: string;
1868
1869
  };
1869
1870
  id: string;
1870
1871
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1871
- values: unknown[];
1872
1872
  } | {
1873
+ values: unknown[];
1873
1874
  target: {
1874
1875
  fieldId: string;
1875
1876
  };
@@ -1879,18 +1880,18 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1879
1880
  unitOfTime: UnitOfTime;
1880
1881
  };
1881
1882
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1882
- values: unknown[];
1883
1883
  })[];
1884
1884
  } | {
1885
1885
  id: string;
1886
1886
  or: ({
1887
+ values: unknown[];
1887
1888
  target: {
1888
1889
  fieldId: string;
1889
1890
  };
1890
1891
  id: string;
1891
1892
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1892
- values: unknown[];
1893
1893
  } | {
1894
+ values: unknown[];
1894
1895
  target: {
1895
1896
  fieldId: string;
1896
1897
  };
@@ -1900,19 +1901,19 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1900
1901
  unitOfTime: UnitOfTime;
1901
1902
  };
1902
1903
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1903
- values: unknown[];
1904
1904
  })[];
1905
1905
  } | undefined;
1906
1906
  metrics?: {
1907
1907
  id: string;
1908
1908
  and: ({
1909
+ values: unknown[];
1909
1910
  target: {
1910
1911
  fieldId: string;
1911
1912
  };
1912
1913
  id: string;
1913
1914
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1914
- values: unknown[];
1915
1915
  } | {
1916
+ values: unknown[];
1916
1917
  target: {
1917
1918
  fieldId: string;
1918
1919
  };
@@ -1922,18 +1923,18 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1922
1923
  unitOfTime: UnitOfTime;
1923
1924
  };
1924
1925
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1925
- values: unknown[];
1926
1926
  })[];
1927
1927
  } | {
1928
1928
  id: string;
1929
1929
  or: ({
1930
+ values: unknown[];
1930
1931
  target: {
1931
1932
  fieldId: string;
1932
1933
  };
1933
1934
  id: string;
1934
1935
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1935
- values: unknown[];
1936
1936
  } | {
1937
+ values: unknown[];
1937
1938
  target: {
1938
1939
  fieldId: string;
1939
1940
  };
@@ -1943,7 +1944,6 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1943
1944
  unitOfTime: UnitOfTime;
1944
1945
  };
1945
1946
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1946
- values: unknown[];
1947
1947
  })[];
1948
1948
  } | undefined;
1949
1949
  };
@@ -1960,13 +1960,14 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1960
1960
  dimensions?: {
1961
1961
  id: string;
1962
1962
  and: ({
1963
+ values: unknown[];
1963
1964
  target: {
1964
1965
  fieldId: string;
1965
1966
  };
1966
1967
  id: string;
1967
1968
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1968
- values: unknown[];
1969
1969
  } | {
1970
+ values: unknown[];
1970
1971
  target: {
1971
1972
  fieldId: string;
1972
1973
  };
@@ -1976,18 +1977,18 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1976
1977
  unitOfTime: UnitOfTime;
1977
1978
  };
1978
1979
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
1979
- values: unknown[];
1980
1980
  })[];
1981
1981
  } | {
1982
1982
  id: string;
1983
1983
  or: ({
1984
+ values: unknown[];
1984
1985
  target: {
1985
1986
  fieldId: string;
1986
1987
  };
1987
1988
  id: string;
1988
1989
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
1989
- values: unknown[];
1990
1990
  } | {
1991
+ values: unknown[];
1991
1992
  target: {
1992
1993
  fieldId: string;
1993
1994
  };
@@ -1997,19 +1998,19 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
1997
1998
  unitOfTime: UnitOfTime;
1998
1999
  };
1999
2000
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
2000
- values: unknown[];
2001
2001
  })[];
2002
2002
  } | undefined;
2003
2003
  metrics?: {
2004
2004
  id: string;
2005
2005
  and: ({
2006
+ values: unknown[];
2006
2007
  target: {
2007
2008
  fieldId: string;
2008
2009
  };
2009
2010
  id: string;
2010
2011
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
2011
- values: unknown[];
2012
2012
  } | {
2013
+ values: unknown[];
2013
2014
  target: {
2014
2015
  fieldId: string;
2015
2016
  };
@@ -2019,18 +2020,18 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
2019
2020
  unitOfTime: UnitOfTime;
2020
2021
  };
2021
2022
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
2022
- values: unknown[];
2023
2023
  })[];
2024
2024
  } | {
2025
2025
  id: string;
2026
2026
  or: ({
2027
+ values: unknown[];
2027
2028
  target: {
2028
2029
  fieldId: string;
2029
2030
  };
2030
2031
  id: string;
2031
2032
  operator: ConditionalOperator.NULL | ConditionalOperator.NOT_NULL | ConditionalOperator.EQUALS | ConditionalOperator.NOT_EQUALS | ConditionalOperator.STARTS_WITH | ConditionalOperator.ENDS_WITH | ConditionalOperator.INCLUDE | ConditionalOperator.NOT_INCLUDE | ConditionalOperator.LESS_THAN | ConditionalOperator.LESS_THAN_OR_EQUAL | ConditionalOperator.GREATER_THAN | ConditionalOperator.GREATER_THAN_OR_EQUAL | ConditionalOperator.IN_BETWEEN;
2032
- values: unknown[];
2033
2033
  } | {
2034
+ values: unknown[];
2034
2035
  target: {
2035
2036
  fieldId: string;
2036
2037
  };
@@ -2040,7 +2041,6 @@ export declare const lighterMetricQuerySchema: z.ZodObject<{
2040
2041
  unitOfTime: UnitOfTime;
2041
2042
  };
2042
2043
  operator: ConditionalOperator.IN_THE_PAST | ConditionalOperator.NOT_IN_THE_PAST | ConditionalOperator.IN_THE_NEXT | ConditionalOperator.IN_THE_CURRENT | ConditionalOperator.NOT_IN_THE_CURRENT;
2043
- values: unknown[];
2044
2044
  })[];
2045
2045
  } | undefined;
2046
2046
  };