@devtable/dashboard 14.29.0 → 14.30.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -147,6 +147,7 @@ export declare const FiltersRenderModel: import("mobx-state-tree").IModelType<{
147
147
  }[];
148
148
  readonly valuesString: string;
149
149
  readonly filter: any;
150
+ readonly keysToTypes: Record<string, DashboardFilterType>;
150
151
  readonly valuesForPayload: Record<string, any>;
151
152
  readonly contentModel: any;
152
153
  readonly context: any;
@@ -1144,6 +1145,7 @@ export interface IFiltersRenderModel {
1144
1145
  readonly json: IFilterJsonType[];
1145
1146
  readonly valuesString: string;
1146
1147
  readonly filter: unknown;
1148
+ readonly keysToTypes: Record<string, DashboardFilterType>;
1147
1149
  readonly valuesForPayload: Record<string, unknown>;
1148
1150
  readonly contentModel: IContentRenderModel;
1149
1151
  readonly context: ContextRecordType;
@@ -3455,6 +3455,8 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
3455
3455
  eq: string;
3456
3456
  } | {
3457
3457
  in: string[];
3458
+ } | {
3459
+ between: any[] | [number, number];
3458
3460
  }>;
3459
3461
  groupBys: string[];
3460
3462
  timeQuery?: {
@@ -3792,6 +3794,8 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
3792
3794
  eq: string;
3793
3795
  } | {
3794
3796
  in: string[];
3797
+ } | {
3798
+ between: any[] | [number, number];
3795
3799
  }>;
3796
3800
  groupBys: string[];
3797
3801
  timeQuery?: {
@@ -4862,6 +4866,8 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
4862
4866
  eq: string;
4863
4867
  } | {
4864
4868
  in: string[];
4869
+ } | {
4870
+ between: any[] | [number, number];
4865
4871
  }>;
4866
4872
  groupBys: string[];
4867
4873
  timeQuery?: {
@@ -5199,6 +5205,8 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
5199
5205
  eq: string;
5200
5206
  } | {
5201
5207
  in: string[];
5208
+ } | {
5209
+ between: any[] | [number, number];
5202
5210
  }>;
5203
5211
  groupBys: string[];
5204
5212
  timeQuery?: {
@@ -10,6 +10,8 @@ type MetricQueryPayload = {
10
10
  eq: string;
11
11
  } | {
12
12
  in: Array<string>;
13
+ } | {
14
+ between: [number, number] | any[];
13
15
  }>;
14
16
  groupBys: string[];
15
17
  timeQuery?: {
@@ -303,6 +303,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
303
303
  eq: string;
304
304
  } | {
305
305
  in: string[];
306
+ } | {
307
+ between: any[] | [number, number];
306
308
  }>;
307
309
  groupBys: string[];
308
310
  timeQuery?: {
@@ -1376,6 +1378,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
1376
1378
  eq: string;
1377
1379
  } | {
1378
1380
  in: string[];
1381
+ } | {
1382
+ between: any[] | [number, number];
1379
1383
  }>;
1380
1384
  groupBys: string[];
1381
1385
  timeQuery?: {
@@ -1713,6 +1717,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
1713
1717
  eq: string;
1714
1718
  } | {
1715
1719
  in: string[];
1720
+ } | {
1721
+ between: any[] | [number, number];
1716
1722
  }>;
1717
1723
  groupBys: string[];
1718
1724
  timeQuery?: {
@@ -2783,6 +2789,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
2783
2789
  eq: string;
2784
2790
  } | {
2785
2791
  in: string[];
2792
+ } | {
2793
+ between: any[] | [number, number];
2786
2794
  }>;
2787
2795
  groupBys: string[];
2788
2796
  timeQuery?: {
@@ -3120,6 +3128,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
3120
3128
  eq: string;
3121
3129
  } | {
3122
3130
  in: string[];
3131
+ } | {
3132
+ between: any[] | [number, number];
3123
3133
  }>;
3124
3134
  groupBys: string[];
3125
3135
  timeQuery?: {
@@ -4238,6 +4248,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
4238
4248
  eq: string;
4239
4249
  } | {
4240
4250
  in: string[];
4251
+ } | {
4252
+ between: any[] | [number, number];
4241
4253
  }>;
4242
4254
  groupBys: string[];
4243
4255
  timeQuery?: {
@@ -4575,6 +4587,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
4575
4587
  eq: string;
4576
4588
  } | {
4577
4589
  in: string[];
4590
+ } | {
4591
+ between: any[] | [number, number];
4578
4592
  }>;
4579
4593
  groupBys: string[];
4580
4594
  timeQuery?: {
@@ -5645,6 +5659,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
5645
5659
  eq: string;
5646
5660
  } | {
5647
5661
  in: string[];
5662
+ } | {
5663
+ between: any[] | [number, number];
5648
5664
  }>;
5649
5665
  groupBys: string[];
5650
5666
  timeQuery?: {
@@ -5982,6 +5998,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
5982
5998
  eq: string;
5983
5999
  } | {
5984
6000
  in: string[];
6001
+ } | {
6002
+ between: any[] | [number, number];
5985
6003
  }>;
5986
6004
  groupBys: string[];
5987
6005
  timeQuery?: {
@@ -304,6 +304,8 @@ export declare const QueryRenderModel: import("mobx-state-tree").IModelType<{
304
304
  eq: string;
305
305
  } | {
306
306
  in: string[];
307
+ } | {
308
+ between: any[] | [number, number];
307
309
  }>;
308
310
  groupBys: string[];
309
311
  timeQuery?: {