@kong-ui-public/dashboard-renderer 8.9.10 → 8.9.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{GeoMapRenderer-DwpwiD-Y.js → GeoMapRenderer-CTei4zeC.js} +1 -1
- package/dist/dashboard-renderer.es.js +1 -1
- package/dist/dashboard-renderer.umd.js +7 -3
- package/dist/{index-Df_ifG7X.js → index-DGAMoPpS.js} +1025 -980
- package/dist/style.css +1 -1
- package/dist/types/components/DashboardRenderer.vue.d.ts +192 -84
- package/dist/types/components/DashboardRenderer.vue.d.ts.map +1 -1
- package/dist/types/components/DashboardTile.vue.d.ts +282 -120
- package/dist/types/components/DashboardTile.vue.d.ts.map +1 -1
- package/dist/types/composables/useContextLinks.d.ts +7 -0
- package/dist/types/composables/useContextLinks.d.ts.map +1 -1
- package/dist/types/composables/useIssueQuery.d.ts.map +1 -1
- package/package.json +14 -14
|
@@ -25,9 +25,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
25
25
|
"edit-tile": (tile: {
|
|
26
26
|
chart: {
|
|
27
27
|
stacked?: boolean | undefined;
|
|
28
|
-
chart_dataset_colors?: {
|
|
28
|
+
chart_dataset_colors?: string[] | {
|
|
29
29
|
[x: string]: string;
|
|
30
|
-
} |
|
|
30
|
+
} | undefined;
|
|
31
31
|
synthetics_data_key?: string | undefined;
|
|
32
32
|
chart_title?: string | undefined;
|
|
33
33
|
allow_csv_export?: boolean | undefined;
|
|
@@ -45,9 +45,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
45
45
|
type: "donut";
|
|
46
46
|
} | {
|
|
47
47
|
stacked?: boolean | undefined;
|
|
48
|
-
chart_dataset_colors?: {
|
|
48
|
+
chart_dataset_colors?: string[] | {
|
|
49
49
|
[x: string]: string;
|
|
50
|
-
} |
|
|
50
|
+
} | undefined;
|
|
51
51
|
synthetics_data_key?: string | undefined;
|
|
52
52
|
chart_title?: string | undefined;
|
|
53
53
|
allow_csv_export?: boolean | undefined;
|
|
@@ -88,11 +88,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
88
88
|
};
|
|
89
89
|
query: {
|
|
90
90
|
filters?: ({
|
|
91
|
-
field:
|
|
91
|
+
field: string;
|
|
92
92
|
operator: "in" | "not_in" | "selector";
|
|
93
93
|
value: (string | number | null)[];
|
|
94
94
|
} | {
|
|
95
|
-
field:
|
|
95
|
+
field: string;
|
|
96
96
|
operator: "empty" | "not_empty";
|
|
97
97
|
})[] | undefined;
|
|
98
98
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -110,16 +110,16 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
110
110
|
meta?: {
|
|
111
111
|
[x: string]: unknown;
|
|
112
112
|
} | undefined;
|
|
113
|
-
metrics?:
|
|
114
|
-
dimensions?:
|
|
113
|
+
metrics?: string[] | undefined;
|
|
114
|
+
dimensions?: string[] | undefined;
|
|
115
115
|
datasource: "api_usage";
|
|
116
116
|
} | {
|
|
117
117
|
filters?: ({
|
|
118
|
-
field:
|
|
118
|
+
field: string;
|
|
119
119
|
operator: "in" | "not_in" | "selector";
|
|
120
120
|
value: (string | number | null)[];
|
|
121
121
|
} | {
|
|
122
|
-
field:
|
|
122
|
+
field: string;
|
|
123
123
|
operator: "empty" | "not_empty";
|
|
124
124
|
})[] | undefined;
|
|
125
125
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -137,16 +137,16 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
137
137
|
meta?: {
|
|
138
138
|
[x: string]: unknown;
|
|
139
139
|
} | undefined;
|
|
140
|
-
metrics?:
|
|
141
|
-
dimensions?:
|
|
140
|
+
metrics?: string[] | undefined;
|
|
141
|
+
dimensions?: string[] | undefined;
|
|
142
142
|
datasource: "basic";
|
|
143
143
|
} | {
|
|
144
144
|
filters?: ({
|
|
145
|
-
field:
|
|
145
|
+
field: string;
|
|
146
146
|
operator: "in" | "not_in" | "selector";
|
|
147
147
|
value: (string | number | null)[];
|
|
148
148
|
} | {
|
|
149
|
-
field:
|
|
149
|
+
field: string;
|
|
150
150
|
operator: "empty" | "not_empty";
|
|
151
151
|
})[] | undefined;
|
|
152
152
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -164,16 +164,16 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
164
164
|
meta?: {
|
|
165
165
|
[x: string]: unknown;
|
|
166
166
|
} | undefined;
|
|
167
|
-
metrics?:
|
|
168
|
-
dimensions?:
|
|
167
|
+
metrics?: string[] | undefined;
|
|
168
|
+
dimensions?: string[] | undefined;
|
|
169
169
|
datasource: "llm_usage";
|
|
170
170
|
} | {
|
|
171
171
|
filters?: ({
|
|
172
|
-
field:
|
|
172
|
+
field: string;
|
|
173
173
|
operator: "in" | "not_in" | "selector";
|
|
174
174
|
value: (string | number | null)[];
|
|
175
175
|
} | {
|
|
176
|
-
field:
|
|
176
|
+
field: string;
|
|
177
177
|
operator: "empty" | "not_empty";
|
|
178
178
|
})[] | undefined;
|
|
179
179
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -191,17 +191,44 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
191
191
|
meta?: {
|
|
192
192
|
[x: string]: unknown;
|
|
193
193
|
} | undefined;
|
|
194
|
-
metrics?:
|
|
195
|
-
dimensions?:
|
|
194
|
+
metrics?: string[] | undefined;
|
|
195
|
+
dimensions?: string[] | undefined;
|
|
196
196
|
datasource: "agentic_usage";
|
|
197
|
+
} | {
|
|
198
|
+
filters?: ({
|
|
199
|
+
field: string;
|
|
200
|
+
operator: string;
|
|
201
|
+
value: (string | number | null)[];
|
|
202
|
+
} | {
|
|
203
|
+
field: string;
|
|
204
|
+
operator: string;
|
|
205
|
+
})[] | undefined;
|
|
206
|
+
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
207
|
+
time_range?: {
|
|
208
|
+
tz?: string | undefined;
|
|
209
|
+
type: "relative";
|
|
210
|
+
time_range: string;
|
|
211
|
+
} | {
|
|
212
|
+
tz?: string | undefined;
|
|
213
|
+
type: "absolute";
|
|
214
|
+
start: string;
|
|
215
|
+
end: string;
|
|
216
|
+
} | undefined;
|
|
217
|
+
limit?: number | undefined;
|
|
218
|
+
meta?: {
|
|
219
|
+
[x: string]: unknown;
|
|
220
|
+
} | undefined;
|
|
221
|
+
metrics?: string[] | undefined;
|
|
222
|
+
dimensions?: string[] | undefined;
|
|
223
|
+
datasource: "platform";
|
|
197
224
|
};
|
|
198
225
|
}) => any;
|
|
199
226
|
"duplicate-tile": (tile: {
|
|
200
227
|
chart: {
|
|
201
228
|
stacked?: boolean | undefined;
|
|
202
|
-
chart_dataset_colors?: {
|
|
229
|
+
chart_dataset_colors?: string[] | {
|
|
203
230
|
[x: string]: string;
|
|
204
|
-
} |
|
|
231
|
+
} | undefined;
|
|
205
232
|
synthetics_data_key?: string | undefined;
|
|
206
233
|
chart_title?: string | undefined;
|
|
207
234
|
allow_csv_export?: boolean | undefined;
|
|
@@ -219,9 +246,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
219
246
|
type: "donut";
|
|
220
247
|
} | {
|
|
221
248
|
stacked?: boolean | undefined;
|
|
222
|
-
chart_dataset_colors?: {
|
|
249
|
+
chart_dataset_colors?: string[] | {
|
|
223
250
|
[x: string]: string;
|
|
224
|
-
} |
|
|
251
|
+
} | undefined;
|
|
225
252
|
synthetics_data_key?: string | undefined;
|
|
226
253
|
chart_title?: string | undefined;
|
|
227
254
|
allow_csv_export?: boolean | undefined;
|
|
@@ -262,11 +289,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
262
289
|
};
|
|
263
290
|
query: {
|
|
264
291
|
filters?: ({
|
|
265
|
-
field:
|
|
292
|
+
field: string;
|
|
266
293
|
operator: "in" | "not_in" | "selector";
|
|
267
294
|
value: (string | number | null)[];
|
|
268
295
|
} | {
|
|
269
|
-
field:
|
|
296
|
+
field: string;
|
|
270
297
|
operator: "empty" | "not_empty";
|
|
271
298
|
})[] | undefined;
|
|
272
299
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -284,16 +311,16 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
284
311
|
meta?: {
|
|
285
312
|
[x: string]: unknown;
|
|
286
313
|
} | undefined;
|
|
287
|
-
metrics?:
|
|
288
|
-
dimensions?:
|
|
314
|
+
metrics?: string[] | undefined;
|
|
315
|
+
dimensions?: string[] | undefined;
|
|
289
316
|
datasource: "api_usage";
|
|
290
317
|
} | {
|
|
291
318
|
filters?: ({
|
|
292
|
-
field:
|
|
319
|
+
field: string;
|
|
293
320
|
operator: "in" | "not_in" | "selector";
|
|
294
321
|
value: (string | number | null)[];
|
|
295
322
|
} | {
|
|
296
|
-
field:
|
|
323
|
+
field: string;
|
|
297
324
|
operator: "empty" | "not_empty";
|
|
298
325
|
})[] | undefined;
|
|
299
326
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -311,16 +338,16 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
311
338
|
meta?: {
|
|
312
339
|
[x: string]: unknown;
|
|
313
340
|
} | undefined;
|
|
314
|
-
metrics?:
|
|
315
|
-
dimensions?:
|
|
341
|
+
metrics?: string[] | undefined;
|
|
342
|
+
dimensions?: string[] | undefined;
|
|
316
343
|
datasource: "basic";
|
|
317
344
|
} | {
|
|
318
345
|
filters?: ({
|
|
319
|
-
field:
|
|
346
|
+
field: string;
|
|
320
347
|
operator: "in" | "not_in" | "selector";
|
|
321
348
|
value: (string | number | null)[];
|
|
322
349
|
} | {
|
|
323
|
-
field:
|
|
350
|
+
field: string;
|
|
324
351
|
operator: "empty" | "not_empty";
|
|
325
352
|
})[] | undefined;
|
|
326
353
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -338,16 +365,16 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
338
365
|
meta?: {
|
|
339
366
|
[x: string]: unknown;
|
|
340
367
|
} | undefined;
|
|
341
|
-
metrics?:
|
|
342
|
-
dimensions?:
|
|
368
|
+
metrics?: string[] | undefined;
|
|
369
|
+
dimensions?: string[] | undefined;
|
|
343
370
|
datasource: "llm_usage";
|
|
344
371
|
} | {
|
|
345
372
|
filters?: ({
|
|
346
|
-
field:
|
|
373
|
+
field: string;
|
|
347
374
|
operator: "in" | "not_in" | "selector";
|
|
348
375
|
value: (string | number | null)[];
|
|
349
376
|
} | {
|
|
350
|
-
field:
|
|
377
|
+
field: string;
|
|
351
378
|
operator: "empty" | "not_empty";
|
|
352
379
|
})[] | undefined;
|
|
353
380
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -365,17 +392,44 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
365
392
|
meta?: {
|
|
366
393
|
[x: string]: unknown;
|
|
367
394
|
} | undefined;
|
|
368
|
-
metrics?:
|
|
369
|
-
dimensions?:
|
|
395
|
+
metrics?: string[] | undefined;
|
|
396
|
+
dimensions?: string[] | undefined;
|
|
370
397
|
datasource: "agentic_usage";
|
|
398
|
+
} | {
|
|
399
|
+
filters?: ({
|
|
400
|
+
field: string;
|
|
401
|
+
operator: string;
|
|
402
|
+
value: (string | number | null)[];
|
|
403
|
+
} | {
|
|
404
|
+
field: string;
|
|
405
|
+
operator: string;
|
|
406
|
+
})[] | undefined;
|
|
407
|
+
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
408
|
+
time_range?: {
|
|
409
|
+
tz?: string | undefined;
|
|
410
|
+
type: "relative";
|
|
411
|
+
time_range: string;
|
|
412
|
+
} | {
|
|
413
|
+
tz?: string | undefined;
|
|
414
|
+
type: "absolute";
|
|
415
|
+
start: string;
|
|
416
|
+
end: string;
|
|
417
|
+
} | undefined;
|
|
418
|
+
limit?: number | undefined;
|
|
419
|
+
meta?: {
|
|
420
|
+
[x: string]: unknown;
|
|
421
|
+
} | undefined;
|
|
422
|
+
metrics?: string[] | undefined;
|
|
423
|
+
dimensions?: string[] | undefined;
|
|
424
|
+
datasource: "platform";
|
|
371
425
|
};
|
|
372
426
|
}) => any;
|
|
373
427
|
"remove-tile": (tile: {
|
|
374
428
|
chart: {
|
|
375
429
|
stacked?: boolean | undefined;
|
|
376
|
-
chart_dataset_colors?: {
|
|
430
|
+
chart_dataset_colors?: string[] | {
|
|
377
431
|
[x: string]: string;
|
|
378
|
-
} |
|
|
432
|
+
} | undefined;
|
|
379
433
|
synthetics_data_key?: string | undefined;
|
|
380
434
|
chart_title?: string | undefined;
|
|
381
435
|
allow_csv_export?: boolean | undefined;
|
|
@@ -393,9 +447,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
393
447
|
type: "donut";
|
|
394
448
|
} | {
|
|
395
449
|
stacked?: boolean | undefined;
|
|
396
|
-
chart_dataset_colors?: {
|
|
450
|
+
chart_dataset_colors?: string[] | {
|
|
397
451
|
[x: string]: string;
|
|
398
|
-
} |
|
|
452
|
+
} | undefined;
|
|
399
453
|
synthetics_data_key?: string | undefined;
|
|
400
454
|
chart_title?: string | undefined;
|
|
401
455
|
allow_csv_export?: boolean | undefined;
|
|
@@ -436,11 +490,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
436
490
|
};
|
|
437
491
|
query: {
|
|
438
492
|
filters?: ({
|
|
439
|
-
field:
|
|
493
|
+
field: string;
|
|
440
494
|
operator: "in" | "not_in" | "selector";
|
|
441
495
|
value: (string | number | null)[];
|
|
442
496
|
} | {
|
|
443
|
-
field:
|
|
497
|
+
field: string;
|
|
444
498
|
operator: "empty" | "not_empty";
|
|
445
499
|
})[] | undefined;
|
|
446
500
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -458,16 +512,16 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
458
512
|
meta?: {
|
|
459
513
|
[x: string]: unknown;
|
|
460
514
|
} | undefined;
|
|
461
|
-
metrics?:
|
|
462
|
-
dimensions?:
|
|
515
|
+
metrics?: string[] | undefined;
|
|
516
|
+
dimensions?: string[] | undefined;
|
|
463
517
|
datasource: "api_usage";
|
|
464
518
|
} | {
|
|
465
519
|
filters?: ({
|
|
466
|
-
field:
|
|
520
|
+
field: string;
|
|
467
521
|
operator: "in" | "not_in" | "selector";
|
|
468
522
|
value: (string | number | null)[];
|
|
469
523
|
} | {
|
|
470
|
-
field:
|
|
524
|
+
field: string;
|
|
471
525
|
operator: "empty" | "not_empty";
|
|
472
526
|
})[] | undefined;
|
|
473
527
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -485,16 +539,16 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
485
539
|
meta?: {
|
|
486
540
|
[x: string]: unknown;
|
|
487
541
|
} | undefined;
|
|
488
|
-
metrics?:
|
|
489
|
-
dimensions?:
|
|
542
|
+
metrics?: string[] | undefined;
|
|
543
|
+
dimensions?: string[] | undefined;
|
|
490
544
|
datasource: "basic";
|
|
491
545
|
} | {
|
|
492
546
|
filters?: ({
|
|
493
|
-
field:
|
|
547
|
+
field: string;
|
|
494
548
|
operator: "in" | "not_in" | "selector";
|
|
495
549
|
value: (string | number | null)[];
|
|
496
550
|
} | {
|
|
497
|
-
field:
|
|
551
|
+
field: string;
|
|
498
552
|
operator: "empty" | "not_empty";
|
|
499
553
|
})[] | undefined;
|
|
500
554
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -512,16 +566,16 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
512
566
|
meta?: {
|
|
513
567
|
[x: string]: unknown;
|
|
514
568
|
} | undefined;
|
|
515
|
-
metrics?:
|
|
516
|
-
dimensions?:
|
|
569
|
+
metrics?: string[] | undefined;
|
|
570
|
+
dimensions?: string[] | undefined;
|
|
517
571
|
datasource: "llm_usage";
|
|
518
572
|
} | {
|
|
519
573
|
filters?: ({
|
|
520
|
-
field:
|
|
574
|
+
field: string;
|
|
521
575
|
operator: "in" | "not_in" | "selector";
|
|
522
576
|
value: (string | number | null)[];
|
|
523
577
|
} | {
|
|
524
|
-
field:
|
|
578
|
+
field: string;
|
|
525
579
|
operator: "empty" | "not_empty";
|
|
526
580
|
})[] | undefined;
|
|
527
581
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -539,9 +593,36 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
539
593
|
meta?: {
|
|
540
594
|
[x: string]: unknown;
|
|
541
595
|
} | undefined;
|
|
542
|
-
metrics?:
|
|
543
|
-
dimensions?:
|
|
596
|
+
metrics?: string[] | undefined;
|
|
597
|
+
dimensions?: string[] | undefined;
|
|
544
598
|
datasource: "agentic_usage";
|
|
599
|
+
} | {
|
|
600
|
+
filters?: ({
|
|
601
|
+
field: string;
|
|
602
|
+
operator: string;
|
|
603
|
+
value: (string | number | null)[];
|
|
604
|
+
} | {
|
|
605
|
+
field: string;
|
|
606
|
+
operator: string;
|
|
607
|
+
})[] | undefined;
|
|
608
|
+
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
609
|
+
time_range?: {
|
|
610
|
+
tz?: string | undefined;
|
|
611
|
+
type: "relative";
|
|
612
|
+
time_range: string;
|
|
613
|
+
} | {
|
|
614
|
+
tz?: string | undefined;
|
|
615
|
+
type: "absolute";
|
|
616
|
+
start: string;
|
|
617
|
+
end: string;
|
|
618
|
+
} | undefined;
|
|
619
|
+
limit?: number | undefined;
|
|
620
|
+
meta?: {
|
|
621
|
+
[x: string]: unknown;
|
|
622
|
+
} | undefined;
|
|
623
|
+
metrics?: string[] | undefined;
|
|
624
|
+
dimensions?: string[] | undefined;
|
|
625
|
+
datasource: "platform";
|
|
545
626
|
};
|
|
546
627
|
}) => any;
|
|
547
628
|
"tile-time-range-zoom": (newTimeRange: TileZoomEvent) => any;
|
|
@@ -551,9 +632,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
551
632
|
"onEdit-tile"?: ((tile: {
|
|
552
633
|
chart: {
|
|
553
634
|
stacked?: boolean | undefined;
|
|
554
|
-
chart_dataset_colors?: {
|
|
635
|
+
chart_dataset_colors?: string[] | {
|
|
555
636
|
[x: string]: string;
|
|
556
|
-
} |
|
|
637
|
+
} | undefined;
|
|
557
638
|
synthetics_data_key?: string | undefined;
|
|
558
639
|
chart_title?: string | undefined;
|
|
559
640
|
allow_csv_export?: boolean | undefined;
|
|
@@ -571,9 +652,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
571
652
|
type: "donut";
|
|
572
653
|
} | {
|
|
573
654
|
stacked?: boolean | undefined;
|
|
574
|
-
chart_dataset_colors?: {
|
|
655
|
+
chart_dataset_colors?: string[] | {
|
|
575
656
|
[x: string]: string;
|
|
576
|
-
} |
|
|
657
|
+
} | undefined;
|
|
577
658
|
synthetics_data_key?: string | undefined;
|
|
578
659
|
chart_title?: string | undefined;
|
|
579
660
|
allow_csv_export?: boolean | undefined;
|
|
@@ -614,11 +695,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
614
695
|
};
|
|
615
696
|
query: {
|
|
616
697
|
filters?: ({
|
|
617
|
-
field:
|
|
698
|
+
field: string;
|
|
618
699
|
operator: "in" | "not_in" | "selector";
|
|
619
700
|
value: (string | number | null)[];
|
|
620
701
|
} | {
|
|
621
|
-
field:
|
|
702
|
+
field: string;
|
|
622
703
|
operator: "empty" | "not_empty";
|
|
623
704
|
})[] | undefined;
|
|
624
705
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -636,16 +717,16 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
636
717
|
meta?: {
|
|
637
718
|
[x: string]: unknown;
|
|
638
719
|
} | undefined;
|
|
639
|
-
metrics?:
|
|
640
|
-
dimensions?:
|
|
720
|
+
metrics?: string[] | undefined;
|
|
721
|
+
dimensions?: string[] | undefined;
|
|
641
722
|
datasource: "api_usage";
|
|
642
723
|
} | {
|
|
643
724
|
filters?: ({
|
|
644
|
-
field:
|
|
725
|
+
field: string;
|
|
645
726
|
operator: "in" | "not_in" | "selector";
|
|
646
727
|
value: (string | number | null)[];
|
|
647
728
|
} | {
|
|
648
|
-
field:
|
|
729
|
+
field: string;
|
|
649
730
|
operator: "empty" | "not_empty";
|
|
650
731
|
})[] | undefined;
|
|
651
732
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -663,16 +744,16 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
663
744
|
meta?: {
|
|
664
745
|
[x: string]: unknown;
|
|
665
746
|
} | undefined;
|
|
666
|
-
metrics?:
|
|
667
|
-
dimensions?:
|
|
747
|
+
metrics?: string[] | undefined;
|
|
748
|
+
dimensions?: string[] | undefined;
|
|
668
749
|
datasource: "basic";
|
|
669
750
|
} | {
|
|
670
751
|
filters?: ({
|
|
671
|
-
field:
|
|
752
|
+
field: string;
|
|
672
753
|
operator: "in" | "not_in" | "selector";
|
|
673
754
|
value: (string | number | null)[];
|
|
674
755
|
} | {
|
|
675
|
-
field:
|
|
756
|
+
field: string;
|
|
676
757
|
operator: "empty" | "not_empty";
|
|
677
758
|
})[] | undefined;
|
|
678
759
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -690,16 +771,16 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
690
771
|
meta?: {
|
|
691
772
|
[x: string]: unknown;
|
|
692
773
|
} | undefined;
|
|
693
|
-
metrics?:
|
|
694
|
-
dimensions?:
|
|
774
|
+
metrics?: string[] | undefined;
|
|
775
|
+
dimensions?: string[] | undefined;
|
|
695
776
|
datasource: "llm_usage";
|
|
696
777
|
} | {
|
|
697
778
|
filters?: ({
|
|
698
|
-
field:
|
|
779
|
+
field: string;
|
|
699
780
|
operator: "in" | "not_in" | "selector";
|
|
700
781
|
value: (string | number | null)[];
|
|
701
782
|
} | {
|
|
702
|
-
field:
|
|
783
|
+
field: string;
|
|
703
784
|
operator: "empty" | "not_empty";
|
|
704
785
|
})[] | undefined;
|
|
705
786
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -717,17 +798,44 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
717
798
|
meta?: {
|
|
718
799
|
[x: string]: unknown;
|
|
719
800
|
} | undefined;
|
|
720
|
-
metrics?:
|
|
721
|
-
dimensions?:
|
|
801
|
+
metrics?: string[] | undefined;
|
|
802
|
+
dimensions?: string[] | undefined;
|
|
722
803
|
datasource: "agentic_usage";
|
|
804
|
+
} | {
|
|
805
|
+
filters?: ({
|
|
806
|
+
field: string;
|
|
807
|
+
operator: string;
|
|
808
|
+
value: (string | number | null)[];
|
|
809
|
+
} | {
|
|
810
|
+
field: string;
|
|
811
|
+
operator: string;
|
|
812
|
+
})[] | undefined;
|
|
813
|
+
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
814
|
+
time_range?: {
|
|
815
|
+
tz?: string | undefined;
|
|
816
|
+
type: "relative";
|
|
817
|
+
time_range: string;
|
|
818
|
+
} | {
|
|
819
|
+
tz?: string | undefined;
|
|
820
|
+
type: "absolute";
|
|
821
|
+
start: string;
|
|
822
|
+
end: string;
|
|
823
|
+
} | undefined;
|
|
824
|
+
limit?: number | undefined;
|
|
825
|
+
meta?: {
|
|
826
|
+
[x: string]: unknown;
|
|
827
|
+
} | undefined;
|
|
828
|
+
metrics?: string[] | undefined;
|
|
829
|
+
dimensions?: string[] | undefined;
|
|
830
|
+
datasource: "platform";
|
|
723
831
|
};
|
|
724
832
|
}) => any) | undefined;
|
|
725
833
|
"onDuplicate-tile"?: ((tile: {
|
|
726
834
|
chart: {
|
|
727
835
|
stacked?: boolean | undefined;
|
|
728
|
-
chart_dataset_colors?: {
|
|
836
|
+
chart_dataset_colors?: string[] | {
|
|
729
837
|
[x: string]: string;
|
|
730
|
-
} |
|
|
838
|
+
} | undefined;
|
|
731
839
|
synthetics_data_key?: string | undefined;
|
|
732
840
|
chart_title?: string | undefined;
|
|
733
841
|
allow_csv_export?: boolean | undefined;
|
|
@@ -745,9 +853,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
745
853
|
type: "donut";
|
|
746
854
|
} | {
|
|
747
855
|
stacked?: boolean | undefined;
|
|
748
|
-
chart_dataset_colors?: {
|
|
856
|
+
chart_dataset_colors?: string[] | {
|
|
749
857
|
[x: string]: string;
|
|
750
|
-
} |
|
|
858
|
+
} | undefined;
|
|
751
859
|
synthetics_data_key?: string | undefined;
|
|
752
860
|
chart_title?: string | undefined;
|
|
753
861
|
allow_csv_export?: boolean | undefined;
|
|
@@ -788,11 +896,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
788
896
|
};
|
|
789
897
|
query: {
|
|
790
898
|
filters?: ({
|
|
791
|
-
field:
|
|
899
|
+
field: string;
|
|
792
900
|
operator: "in" | "not_in" | "selector";
|
|
793
901
|
value: (string | number | null)[];
|
|
794
902
|
} | {
|
|
795
|
-
field:
|
|
903
|
+
field: string;
|
|
796
904
|
operator: "empty" | "not_empty";
|
|
797
905
|
})[] | undefined;
|
|
798
906
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -810,16 +918,16 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
810
918
|
meta?: {
|
|
811
919
|
[x: string]: unknown;
|
|
812
920
|
} | undefined;
|
|
813
|
-
metrics?:
|
|
814
|
-
dimensions?:
|
|
921
|
+
metrics?: string[] | undefined;
|
|
922
|
+
dimensions?: string[] | undefined;
|
|
815
923
|
datasource: "api_usage";
|
|
816
924
|
} | {
|
|
817
925
|
filters?: ({
|
|
818
|
-
field:
|
|
926
|
+
field: string;
|
|
819
927
|
operator: "in" | "not_in" | "selector";
|
|
820
928
|
value: (string | number | null)[];
|
|
821
929
|
} | {
|
|
822
|
-
field:
|
|
930
|
+
field: string;
|
|
823
931
|
operator: "empty" | "not_empty";
|
|
824
932
|
})[] | undefined;
|
|
825
933
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -837,16 +945,16 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
837
945
|
meta?: {
|
|
838
946
|
[x: string]: unknown;
|
|
839
947
|
} | undefined;
|
|
840
|
-
metrics?:
|
|
841
|
-
dimensions?:
|
|
948
|
+
metrics?: string[] | undefined;
|
|
949
|
+
dimensions?: string[] | undefined;
|
|
842
950
|
datasource: "basic";
|
|
843
951
|
} | {
|
|
844
952
|
filters?: ({
|
|
845
|
-
field:
|
|
953
|
+
field: string;
|
|
846
954
|
operator: "in" | "not_in" | "selector";
|
|
847
955
|
value: (string | number | null)[];
|
|
848
956
|
} | {
|
|
849
|
-
field:
|
|
957
|
+
field: string;
|
|
850
958
|
operator: "empty" | "not_empty";
|
|
851
959
|
})[] | undefined;
|
|
852
960
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -864,16 +972,16 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
864
972
|
meta?: {
|
|
865
973
|
[x: string]: unknown;
|
|
866
974
|
} | undefined;
|
|
867
|
-
metrics?:
|
|
868
|
-
dimensions?:
|
|
975
|
+
metrics?: string[] | undefined;
|
|
976
|
+
dimensions?: string[] | undefined;
|
|
869
977
|
datasource: "llm_usage";
|
|
870
978
|
} | {
|
|
871
979
|
filters?: ({
|
|
872
|
-
field:
|
|
980
|
+
field: string;
|
|
873
981
|
operator: "in" | "not_in" | "selector";
|
|
874
982
|
value: (string | number | null)[];
|
|
875
983
|
} | {
|
|
876
|
-
field:
|
|
984
|
+
field: string;
|
|
877
985
|
operator: "empty" | "not_empty";
|
|
878
986
|
})[] | undefined;
|
|
879
987
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -891,17 +999,44 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
891
999
|
meta?: {
|
|
892
1000
|
[x: string]: unknown;
|
|
893
1001
|
} | undefined;
|
|
894
|
-
metrics?:
|
|
895
|
-
dimensions?:
|
|
1002
|
+
metrics?: string[] | undefined;
|
|
1003
|
+
dimensions?: string[] | undefined;
|
|
896
1004
|
datasource: "agentic_usage";
|
|
1005
|
+
} | {
|
|
1006
|
+
filters?: ({
|
|
1007
|
+
field: string;
|
|
1008
|
+
operator: string;
|
|
1009
|
+
value: (string | number | null)[];
|
|
1010
|
+
} | {
|
|
1011
|
+
field: string;
|
|
1012
|
+
operator: string;
|
|
1013
|
+
})[] | undefined;
|
|
1014
|
+
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
1015
|
+
time_range?: {
|
|
1016
|
+
tz?: string | undefined;
|
|
1017
|
+
type: "relative";
|
|
1018
|
+
time_range: string;
|
|
1019
|
+
} | {
|
|
1020
|
+
tz?: string | undefined;
|
|
1021
|
+
type: "absolute";
|
|
1022
|
+
start: string;
|
|
1023
|
+
end: string;
|
|
1024
|
+
} | undefined;
|
|
1025
|
+
limit?: number | undefined;
|
|
1026
|
+
meta?: {
|
|
1027
|
+
[x: string]: unknown;
|
|
1028
|
+
} | undefined;
|
|
1029
|
+
metrics?: string[] | undefined;
|
|
1030
|
+
dimensions?: string[] | undefined;
|
|
1031
|
+
datasource: "platform";
|
|
897
1032
|
};
|
|
898
1033
|
}) => any) | undefined;
|
|
899
1034
|
"onRemove-tile"?: ((tile: {
|
|
900
1035
|
chart: {
|
|
901
1036
|
stacked?: boolean | undefined;
|
|
902
|
-
chart_dataset_colors?: {
|
|
1037
|
+
chart_dataset_colors?: string[] | {
|
|
903
1038
|
[x: string]: string;
|
|
904
|
-
} |
|
|
1039
|
+
} | undefined;
|
|
905
1040
|
synthetics_data_key?: string | undefined;
|
|
906
1041
|
chart_title?: string | undefined;
|
|
907
1042
|
allow_csv_export?: boolean | undefined;
|
|
@@ -919,9 +1054,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
919
1054
|
type: "donut";
|
|
920
1055
|
} | {
|
|
921
1056
|
stacked?: boolean | undefined;
|
|
922
|
-
chart_dataset_colors?: {
|
|
1057
|
+
chart_dataset_colors?: string[] | {
|
|
923
1058
|
[x: string]: string;
|
|
924
|
-
} |
|
|
1059
|
+
} | undefined;
|
|
925
1060
|
synthetics_data_key?: string | undefined;
|
|
926
1061
|
chart_title?: string | undefined;
|
|
927
1062
|
allow_csv_export?: boolean | undefined;
|
|
@@ -962,11 +1097,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
962
1097
|
};
|
|
963
1098
|
query: {
|
|
964
1099
|
filters?: ({
|
|
965
|
-
field:
|
|
1100
|
+
field: string;
|
|
966
1101
|
operator: "in" | "not_in" | "selector";
|
|
967
1102
|
value: (string | number | null)[];
|
|
968
1103
|
} | {
|
|
969
|
-
field:
|
|
1104
|
+
field: string;
|
|
970
1105
|
operator: "empty" | "not_empty";
|
|
971
1106
|
})[] | undefined;
|
|
972
1107
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -984,16 +1119,16 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
984
1119
|
meta?: {
|
|
985
1120
|
[x: string]: unknown;
|
|
986
1121
|
} | undefined;
|
|
987
|
-
metrics?:
|
|
988
|
-
dimensions?:
|
|
1122
|
+
metrics?: string[] | undefined;
|
|
1123
|
+
dimensions?: string[] | undefined;
|
|
989
1124
|
datasource: "api_usage";
|
|
990
1125
|
} | {
|
|
991
1126
|
filters?: ({
|
|
992
|
-
field:
|
|
1127
|
+
field: string;
|
|
993
1128
|
operator: "in" | "not_in" | "selector";
|
|
994
1129
|
value: (string | number | null)[];
|
|
995
1130
|
} | {
|
|
996
|
-
field:
|
|
1131
|
+
field: string;
|
|
997
1132
|
operator: "empty" | "not_empty";
|
|
998
1133
|
})[] | undefined;
|
|
999
1134
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -1011,16 +1146,16 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
1011
1146
|
meta?: {
|
|
1012
1147
|
[x: string]: unknown;
|
|
1013
1148
|
} | undefined;
|
|
1014
|
-
metrics?:
|
|
1015
|
-
dimensions?:
|
|
1149
|
+
metrics?: string[] | undefined;
|
|
1150
|
+
dimensions?: string[] | undefined;
|
|
1016
1151
|
datasource: "basic";
|
|
1017
1152
|
} | {
|
|
1018
1153
|
filters?: ({
|
|
1019
|
-
field:
|
|
1154
|
+
field: string;
|
|
1020
1155
|
operator: "in" | "not_in" | "selector";
|
|
1021
1156
|
value: (string | number | null)[];
|
|
1022
1157
|
} | {
|
|
1023
|
-
field:
|
|
1158
|
+
field: string;
|
|
1024
1159
|
operator: "empty" | "not_empty";
|
|
1025
1160
|
})[] | undefined;
|
|
1026
1161
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -1038,16 +1173,16 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
1038
1173
|
meta?: {
|
|
1039
1174
|
[x: string]: unknown;
|
|
1040
1175
|
} | undefined;
|
|
1041
|
-
metrics?:
|
|
1042
|
-
dimensions?:
|
|
1176
|
+
metrics?: string[] | undefined;
|
|
1177
|
+
dimensions?: string[] | undefined;
|
|
1043
1178
|
datasource: "llm_usage";
|
|
1044
1179
|
} | {
|
|
1045
1180
|
filters?: ({
|
|
1046
|
-
field:
|
|
1181
|
+
field: string;
|
|
1047
1182
|
operator: "in" | "not_in" | "selector";
|
|
1048
1183
|
value: (string | number | null)[];
|
|
1049
1184
|
} | {
|
|
1050
|
-
field:
|
|
1185
|
+
field: string;
|
|
1051
1186
|
operator: "empty" | "not_empty";
|
|
1052
1187
|
})[] | undefined;
|
|
1053
1188
|
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
@@ -1065,9 +1200,36 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
1065
1200
|
meta?: {
|
|
1066
1201
|
[x: string]: unknown;
|
|
1067
1202
|
} | undefined;
|
|
1068
|
-
metrics?:
|
|
1069
|
-
dimensions?:
|
|
1203
|
+
metrics?: string[] | undefined;
|
|
1204
|
+
dimensions?: string[] | undefined;
|
|
1070
1205
|
datasource: "agentic_usage";
|
|
1206
|
+
} | {
|
|
1207
|
+
filters?: ({
|
|
1208
|
+
field: string;
|
|
1209
|
+
operator: string;
|
|
1210
|
+
value: (string | number | null)[];
|
|
1211
|
+
} | {
|
|
1212
|
+
field: string;
|
|
1213
|
+
operator: string;
|
|
1214
|
+
})[] | undefined;
|
|
1215
|
+
granularity?: "secondly" | "tenSecondly" | "thirtySecondly" | "minutely" | "fiveMinutely" | "tenMinutely" | "thirtyMinutely" | "hourly" | "twoHourly" | "twelveHourly" | "daily" | "weekly" | "trend" | undefined;
|
|
1216
|
+
time_range?: {
|
|
1217
|
+
tz?: string | undefined;
|
|
1218
|
+
type: "relative";
|
|
1219
|
+
time_range: string;
|
|
1220
|
+
} | {
|
|
1221
|
+
tz?: string | undefined;
|
|
1222
|
+
type: "absolute";
|
|
1223
|
+
start: string;
|
|
1224
|
+
end: string;
|
|
1225
|
+
} | undefined;
|
|
1226
|
+
limit?: number | undefined;
|
|
1227
|
+
meta?: {
|
|
1228
|
+
[x: string]: unknown;
|
|
1229
|
+
} | undefined;
|
|
1230
|
+
metrics?: string[] | undefined;
|
|
1231
|
+
dimensions?: string[] | undefined;
|
|
1232
|
+
datasource: "platform";
|
|
1071
1233
|
};
|
|
1072
1234
|
}) => any) | undefined;
|
|
1073
1235
|
"onTile-time-range-zoom"?: ((newTimeRange: TileZoomEvent) => any) | undefined;
|