@gooddata/sdk-code-schemas 11.33.0-alpha.5 → 11.33.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.
- package/esm/sdk-code-schemas.d.ts +300 -186
- package/esm/v1/metadata.d.ts +230 -160
- package/esm/v1/metadata.d.ts.map +1 -1
- package/esm/v1/metadata.json +28 -4
- package/esm/v1/schema.d.ts +35 -5
- package/esm/v1/schema.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -22,11 +22,11 @@ declare interface AggregatedFact {
|
|
|
22
22
|
/**
|
|
23
23
|
* A column data type in the physical database.
|
|
24
24
|
*/
|
|
25
|
-
data_type: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN";
|
|
25
|
+
data_type: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN" | "HLL";
|
|
26
26
|
/**
|
|
27
27
|
* Aggregation method for the fact. Mapped to sourceFactReference in the API.
|
|
28
28
|
*/
|
|
29
|
-
aggregated_as: "MIN" | "MAX" | "SUM";
|
|
29
|
+
aggregated_as: "MIN" | "MAX" | "SUM" | "APPROXIMATE_COUNT";
|
|
30
30
|
/**
|
|
31
31
|
* ID of the source fact this aggregated fact is based on. Mapped to sourceFactReference in the API.
|
|
32
32
|
*/
|
|
@@ -77,7 +77,7 @@ declare interface AreaChart {
|
|
|
77
77
|
* Type of visualisation.
|
|
78
78
|
*/
|
|
79
79
|
type: "area_chart";
|
|
80
|
-
id:
|
|
80
|
+
id: Id23;
|
|
81
81
|
/**
|
|
82
82
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
83
83
|
*/
|
|
@@ -86,7 +86,7 @@ declare interface AreaChart {
|
|
|
86
86
|
* An optional description of the visualisation.
|
|
87
87
|
*/
|
|
88
88
|
description?: string;
|
|
89
|
-
tags?:
|
|
89
|
+
tags?: Tags16;
|
|
90
90
|
/**
|
|
91
91
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
92
92
|
*/
|
|
@@ -177,7 +177,7 @@ declare interface Attribute {
|
|
|
177
177
|
/**
|
|
178
178
|
* A column data type in the physical database.
|
|
179
179
|
*/
|
|
180
|
-
data_type: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN";
|
|
180
|
+
data_type: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN" | "HLL";
|
|
181
181
|
/**
|
|
182
182
|
* An Id of the label to be used by default for this field
|
|
183
183
|
*/
|
|
@@ -282,7 +282,7 @@ declare interface AttributeFilter1 {
|
|
|
282
282
|
}
|
|
283
283
|
|
|
284
284
|
declare interface AttributeHierarchy {
|
|
285
|
-
id:
|
|
285
|
+
id: Id18;
|
|
286
286
|
type: "attribute_hierarchy";
|
|
287
287
|
/**
|
|
288
288
|
* An optional human readable title for the attribute hierarchy. Will be derived from id if not provided explicitly.
|
|
@@ -292,7 +292,7 @@ declare interface AttributeHierarchy {
|
|
|
292
292
|
* An optional description of the attribute hierarchy.
|
|
293
293
|
*/
|
|
294
294
|
description?: string;
|
|
295
|
-
tags?:
|
|
295
|
+
tags?: Tags11;
|
|
296
296
|
/**
|
|
297
297
|
* A list of sorted attributes use in attribute hierarchy. The first attribute is the top level attribute.
|
|
298
298
|
*/
|
|
@@ -404,12 +404,46 @@ declare interface AttributeWithElementValue {
|
|
|
404
404
|
[k: string]: string;
|
|
405
405
|
}
|
|
406
406
|
|
|
407
|
+
/**
|
|
408
|
+
* Synthetic reference target for pre-aggregation datasets. Per gdc-nas, AUX datasets must not carry table_path, sql, precedence, or workspace_data_filters; data lives in the referencing pre-aggregation datasets.
|
|
409
|
+
*/
|
|
410
|
+
declare interface AuxiliaryDataset {
|
|
411
|
+
id: Id4;
|
|
412
|
+
type: "dataset";
|
|
413
|
+
/**
|
|
414
|
+
* An optional human readable title for the dataset. Will be derived from id if not provided explicitly.
|
|
415
|
+
*/
|
|
416
|
+
title?: string;
|
|
417
|
+
/**
|
|
418
|
+
* An optional description of the dataset.
|
|
419
|
+
*/
|
|
420
|
+
description?: string;
|
|
421
|
+
tags?: Tags6;
|
|
422
|
+
table_path?: never;
|
|
423
|
+
sql?: never;
|
|
424
|
+
primary_key?: PrimaryKey2 | CompositePrimaryKey2;
|
|
425
|
+
fields?: Fields2;
|
|
426
|
+
/**
|
|
427
|
+
* A list of references, specifies the relations between datasets.
|
|
428
|
+
* Foreign dataset is defined in "dataset" attribute and will always be joined by it's grain.
|
|
429
|
+
* Current dataset will be join by the column name defined in "using" attribute.
|
|
430
|
+
*/
|
|
431
|
+
references?: Reference[];
|
|
432
|
+
workspace_data_filters?: never;
|
|
433
|
+
/**
|
|
434
|
+
* An optional data source id used for the specific dataset.
|
|
435
|
+
*/
|
|
436
|
+
data_source?: string;
|
|
437
|
+
precedence?: never;
|
|
438
|
+
dataset_type: "auxiliary";
|
|
439
|
+
}
|
|
440
|
+
|
|
407
441
|
declare interface BarChart {
|
|
408
442
|
/**
|
|
409
443
|
* Type of visualisation.
|
|
410
444
|
*/
|
|
411
445
|
type: "bar_chart";
|
|
412
|
-
id:
|
|
446
|
+
id: Id20;
|
|
413
447
|
/**
|
|
414
448
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
415
449
|
*/
|
|
@@ -418,7 +452,7 @@ declare interface BarChart {
|
|
|
418
452
|
* An optional description of the visualisation.
|
|
419
453
|
*/
|
|
420
454
|
description?: string;
|
|
421
|
-
tags?:
|
|
455
|
+
tags?: Tags13;
|
|
422
456
|
/**
|
|
423
457
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
424
458
|
*/
|
|
@@ -473,7 +507,7 @@ declare interface BubbleChart {
|
|
|
473
507
|
* Type of visualisation.
|
|
474
508
|
*/
|
|
475
509
|
type: "bubble_chart";
|
|
476
|
-
id:
|
|
510
|
+
id: Id25;
|
|
477
511
|
/**
|
|
478
512
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
479
513
|
*/
|
|
@@ -482,7 +516,7 @@ declare interface BubbleChart {
|
|
|
482
516
|
* An optional description of the visualisation.
|
|
483
517
|
*/
|
|
484
518
|
description?: string;
|
|
485
|
-
tags?:
|
|
519
|
+
tags?: Tags18;
|
|
486
520
|
/**
|
|
487
521
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
488
522
|
*/
|
|
@@ -539,7 +573,7 @@ declare interface BulletChart {
|
|
|
539
573
|
* Type of visualisation.
|
|
540
574
|
*/
|
|
541
575
|
type: "bullet_chart";
|
|
542
|
-
id:
|
|
576
|
+
id: Id32;
|
|
543
577
|
/**
|
|
544
578
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
545
579
|
*/
|
|
@@ -548,7 +582,7 @@ declare interface BulletChart {
|
|
|
548
582
|
* An optional description of the visualisation.
|
|
549
583
|
*/
|
|
550
584
|
description?: string;
|
|
551
|
-
tags?:
|
|
585
|
+
tags?: Tags25;
|
|
552
586
|
/**
|
|
553
587
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
554
588
|
*/
|
|
@@ -648,7 +682,7 @@ declare interface ColumnChart {
|
|
|
648
682
|
* Type of visualisation.
|
|
649
683
|
*/
|
|
650
684
|
type: "column_chart";
|
|
651
|
-
id:
|
|
685
|
+
id: Id21;
|
|
652
686
|
/**
|
|
653
687
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
654
688
|
*/
|
|
@@ -657,7 +691,7 @@ declare interface ColumnChart {
|
|
|
657
691
|
* An optional description of the visualisation.
|
|
658
692
|
*/
|
|
659
693
|
description?: string;
|
|
660
|
-
tags?:
|
|
694
|
+
tags?: Tags14;
|
|
661
695
|
/**
|
|
662
696
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
663
697
|
*/
|
|
@@ -692,7 +726,7 @@ declare interface ComboChart {
|
|
|
692
726
|
* Type of visualisation.
|
|
693
727
|
*/
|
|
694
728
|
type: "combo_chart";
|
|
695
|
-
id:
|
|
729
|
+
id: Id37;
|
|
696
730
|
/**
|
|
697
731
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
698
732
|
*/
|
|
@@ -701,7 +735,7 @@ declare interface ComboChart {
|
|
|
701
735
|
* An optional description of the visualisation.
|
|
702
736
|
*/
|
|
703
737
|
description?: string;
|
|
704
|
-
tags?:
|
|
738
|
+
tags?: Tags30;
|
|
705
739
|
/**
|
|
706
740
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
707
741
|
*/
|
|
@@ -796,8 +830,13 @@ declare type CompositePrimaryKey = Id1[];
|
|
|
796
830
|
*/
|
|
797
831
|
declare type CompositePrimaryKey1 = Id3[];
|
|
798
832
|
|
|
833
|
+
/**
|
|
834
|
+
* A primary key for the given dataset.
|
|
835
|
+
*/
|
|
836
|
+
declare type CompositePrimaryKey2 = Id5[];
|
|
837
|
+
|
|
799
838
|
declare interface ContainerWidget {
|
|
800
|
-
container:
|
|
839
|
+
container: Id13;
|
|
801
840
|
/**
|
|
802
841
|
* An optional width of the widget within the grid. When the parent container's direction is set to 'row', widget widths can vary up to the width of the container. Widgets are placed next to each other and wrap to the next row when their combined width exceeds that of the container. When the direction is set to 'column', the width does not need to be set, or it should match the width of the container.
|
|
803
842
|
*/
|
|
@@ -834,7 +873,7 @@ declare interface ContainerWidget {
|
|
|
834
873
|
}
|
|
835
874
|
|
|
836
875
|
declare interface Dashboard {
|
|
837
|
-
id:
|
|
876
|
+
id: Id8;
|
|
838
877
|
type: "dashboard";
|
|
839
878
|
/**
|
|
840
879
|
* An optional human readable title for the dashboard. Will be derived from id if not provided explicitly.
|
|
@@ -844,7 +883,7 @@ declare interface Dashboard {
|
|
|
844
883
|
* An optional description of the dashboard.
|
|
845
884
|
*/
|
|
846
885
|
description?: string;
|
|
847
|
-
tags?:
|
|
886
|
+
tags?: Tags9;
|
|
848
887
|
/**
|
|
849
888
|
* Whether cross filtering is enabled for this dashboard. Defaults to true.
|
|
850
889
|
*/
|
|
@@ -874,14 +913,14 @@ declare interface Dashboard {
|
|
|
874
913
|
* A list of plugins in this dashboard.
|
|
875
914
|
*/
|
|
876
915
|
plugins?: ({
|
|
877
|
-
id:
|
|
916
|
+
id: Id14;
|
|
878
917
|
/**
|
|
879
918
|
* Parameter that will be passed to the plugin. Everything other than string will be serialized to JSON automatically.
|
|
880
919
|
*/
|
|
881
920
|
parameters?: {
|
|
882
921
|
[k: string]: unknown;
|
|
883
922
|
};
|
|
884
|
-
} |
|
|
923
|
+
} | Id15)[];
|
|
885
924
|
/**
|
|
886
925
|
* A list of tabs in this dashboard. Each tab has its own layout, filters, and filter configurations. Mutually exclusive with sections and filters at dashboard level.
|
|
887
926
|
*/
|
|
@@ -1099,10 +1138,10 @@ declare interface DashboardTextFilter2 {
|
|
|
1099
1138
|
[k: string]: unknown;
|
|
1100
1139
|
}
|
|
1101
1140
|
|
|
1102
|
-
declare type Dataset = NormalDataset | SQLDataset;
|
|
1141
|
+
declare type Dataset = NormalDataset | SQLDataset | AuxiliaryDataset;
|
|
1103
1142
|
|
|
1104
1143
|
declare interface DateDataset {
|
|
1105
|
-
id:
|
|
1144
|
+
id: Id6;
|
|
1106
1145
|
type: "date";
|
|
1107
1146
|
/**
|
|
1108
1147
|
* An optional human readable title for the date instance. Will be derived from id if not provided explicitly.
|
|
@@ -1112,7 +1151,7 @@ declare interface DateDataset {
|
|
|
1112
1151
|
* An optional description of the date instance.
|
|
1113
1152
|
*/
|
|
1114
1153
|
description?: string;
|
|
1115
|
-
tags?:
|
|
1154
|
+
tags?: Tags7;
|
|
1116
1155
|
/**
|
|
1117
1156
|
* A title for the title formatting
|
|
1118
1157
|
*/
|
|
@@ -1189,7 +1228,7 @@ declare interface DependencyWheelChart {
|
|
|
1189
1228
|
* Type of visualisation.
|
|
1190
1229
|
*/
|
|
1191
1230
|
type: "dependency_wheel_chart";
|
|
1192
|
-
id:
|
|
1231
|
+
id: Id34;
|
|
1193
1232
|
/**
|
|
1194
1233
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
1195
1234
|
*/
|
|
@@ -1198,7 +1237,7 @@ declare interface DependencyWheelChart {
|
|
|
1198
1237
|
* An optional description of the visualisation.
|
|
1199
1238
|
*/
|
|
1200
1239
|
description?: string;
|
|
1201
|
-
tags?:
|
|
1240
|
+
tags?: Tags27;
|
|
1202
1241
|
/**
|
|
1203
1242
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
1204
1243
|
*/
|
|
@@ -1281,7 +1320,7 @@ declare interface Fact {
|
|
|
1281
1320
|
/**
|
|
1282
1321
|
* A column data type in the physical database.
|
|
1283
1322
|
*/
|
|
1284
|
-
data_type: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN";
|
|
1323
|
+
data_type: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN" | "HLL";
|
|
1285
1324
|
/**
|
|
1286
1325
|
* Optional flag to indicate if the fact should be shown in AI results. When omitted, the fact is visible.
|
|
1287
1326
|
*/
|
|
@@ -1312,7 +1351,7 @@ declare type FactIdentifier = string;
|
|
|
1312
1351
|
declare type FactIdentifier1 = string;
|
|
1313
1352
|
|
|
1314
1353
|
/**
|
|
1315
|
-
* This interface was referenced by `
|
|
1354
|
+
* This interface was referenced by `Fields3`'s JSON-Schema definition
|
|
1316
1355
|
* via the `patternProperty` "^(?!\.)[.A-Za-z0-9_-]\{1,255\}$".
|
|
1317
1356
|
*/
|
|
1318
1357
|
declare type Field = AttributeIdentifier7 | Field1 | Field2 | Field3 | StructuredField;
|
|
@@ -1341,6 +1380,8 @@ declare interface Fields {
|
|
|
1341
1380
|
* via the `patternProperty` "^(?!\.)[.A-Za-z0-9_-]\{1,255\}$".
|
|
1342
1381
|
* This interface was referenced by `Fields1`'s JSON-Schema definition
|
|
1343
1382
|
* via the `patternProperty` "^(?!\.)[.A-Za-z0-9_-]\{1,255\}$".
|
|
1383
|
+
* This interface was referenced by `Fields2`'s JSON-Schema definition
|
|
1384
|
+
* via the `patternProperty` "^(?!\.)[.A-Za-z0-9_-]\{1,255\}$".
|
|
1344
1385
|
*/
|
|
1345
1386
|
[k: string]: Attribute | Fact | AggregatedFact | {
|
|
1346
1387
|
[k: string]: unknown;
|
|
@@ -1356,6 +1397,8 @@ declare interface Fields1 {
|
|
|
1356
1397
|
* via the `patternProperty` "^(?!\.)[.A-Za-z0-9_-]\{1,255\}$".
|
|
1357
1398
|
* This interface was referenced by `Fields1`'s JSON-Schema definition
|
|
1358
1399
|
* via the `patternProperty` "^(?!\.)[.A-Za-z0-9_-]\{1,255\}$".
|
|
1400
|
+
* This interface was referenced by `Fields2`'s JSON-Schema definition
|
|
1401
|
+
* via the `patternProperty` "^(?!\.)[.A-Za-z0-9_-]\{1,255\}$".
|
|
1359
1402
|
*/
|
|
1360
1403
|
[k: string]: Attribute | Fact | AggregatedFact | {
|
|
1361
1404
|
[k: string]: unknown;
|
|
@@ -1363,9 +1406,26 @@ declare interface Fields1 {
|
|
|
1363
1406
|
}
|
|
1364
1407
|
|
|
1365
1408
|
/**
|
|
1366
|
-
* A list of fields in this
|
|
1409
|
+
* A list of fields in this dataset.
|
|
1367
1410
|
*/
|
|
1368
1411
|
declare interface Fields2 {
|
|
1412
|
+
/**
|
|
1413
|
+
* This interface was referenced by `Fields`'s JSON-Schema definition
|
|
1414
|
+
* via the `patternProperty` "^(?!\.)[.A-Za-z0-9_-]\{1,255\}$".
|
|
1415
|
+
* This interface was referenced by `Fields1`'s JSON-Schema definition
|
|
1416
|
+
* via the `patternProperty` "^(?!\.)[.A-Za-z0-9_-]\{1,255\}$".
|
|
1417
|
+
* This interface was referenced by `Fields2`'s JSON-Schema definition
|
|
1418
|
+
* via the `patternProperty` "^(?!\.)[.A-Za-z0-9_-]\{1,255\}$".
|
|
1419
|
+
*/
|
|
1420
|
+
[k: string]: Attribute | Fact | AggregatedFact | {
|
|
1421
|
+
[k: string]: unknown;
|
|
1422
|
+
};
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
/**
|
|
1426
|
+
* A list of fields in this query.
|
|
1427
|
+
*/
|
|
1428
|
+
declare interface Fields3 {
|
|
1369
1429
|
[k: string]: Field;
|
|
1370
1430
|
}
|
|
1371
1431
|
|
|
@@ -1398,7 +1458,7 @@ declare interface FunnelChart {
|
|
|
1398
1458
|
* Type of visualisation.
|
|
1399
1459
|
*/
|
|
1400
1460
|
type: "funnel_chart";
|
|
1401
|
-
id:
|
|
1461
|
+
id: Id30;
|
|
1402
1462
|
/**
|
|
1403
1463
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
1404
1464
|
*/
|
|
@@ -1407,7 +1467,7 @@ declare interface FunnelChart {
|
|
|
1407
1467
|
* An optional description of the visualisation.
|
|
1408
1468
|
*/
|
|
1409
1469
|
description?: string;
|
|
1410
|
-
tags?:
|
|
1470
|
+
tags?: Tags23;
|
|
1411
1471
|
/**
|
|
1412
1472
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
1413
1473
|
*/
|
|
@@ -1440,7 +1500,7 @@ declare interface GeoAreaChart {
|
|
|
1440
1500
|
* Type of visualisation.
|
|
1441
1501
|
*/
|
|
1442
1502
|
type: "geo_area_chart";
|
|
1443
|
-
id:
|
|
1503
|
+
id: Id40;
|
|
1444
1504
|
/**
|
|
1445
1505
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
1446
1506
|
*/
|
|
@@ -1449,7 +1509,7 @@ declare interface GeoAreaChart {
|
|
|
1449
1509
|
* An optional description of the visualisation.
|
|
1450
1510
|
*/
|
|
1451
1511
|
description?: string;
|
|
1452
|
-
tags?:
|
|
1512
|
+
tags?: Tags32;
|
|
1453
1513
|
/**
|
|
1454
1514
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
1455
1515
|
*/
|
|
@@ -1496,7 +1556,7 @@ declare interface GeoChart {
|
|
|
1496
1556
|
* Type of visualisation.
|
|
1497
1557
|
*/
|
|
1498
1558
|
type: "geo_chart";
|
|
1499
|
-
id:
|
|
1559
|
+
id: Id38;
|
|
1500
1560
|
/**
|
|
1501
1561
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
1502
1562
|
*/
|
|
@@ -1505,7 +1565,7 @@ declare interface GeoChart {
|
|
|
1505
1565
|
* An optional description of the visualisation.
|
|
1506
1566
|
*/
|
|
1507
1567
|
description?: string;
|
|
1508
|
-
tags?:
|
|
1568
|
+
tags?: Tags31;
|
|
1509
1569
|
/**
|
|
1510
1570
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
1511
1571
|
*/
|
|
@@ -1540,7 +1600,7 @@ declare interface HeadlineChart {
|
|
|
1540
1600
|
* Type of visualisation.
|
|
1541
1601
|
*/
|
|
1542
1602
|
type: "headline_chart";
|
|
1543
|
-
id:
|
|
1603
|
+
id: Id36;
|
|
1544
1604
|
/**
|
|
1545
1605
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
1546
1606
|
*/
|
|
@@ -1549,7 +1609,7 @@ declare interface HeadlineChart {
|
|
|
1549
1609
|
* An optional description of the visualisation.
|
|
1550
1610
|
*/
|
|
1551
1611
|
description?: string;
|
|
1552
|
-
tags?:
|
|
1612
|
+
tags?: Tags29;
|
|
1553
1613
|
/**
|
|
1554
1614
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
1555
1615
|
*/
|
|
@@ -1580,7 +1640,7 @@ declare interface HeatmapChart {
|
|
|
1580
1640
|
* Type of visualisation.
|
|
1581
1641
|
*/
|
|
1582
1642
|
type: "heatmap_chart";
|
|
1583
|
-
id:
|
|
1643
|
+
id: Id31;
|
|
1584
1644
|
/**
|
|
1585
1645
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
1586
1646
|
*/
|
|
@@ -1589,7 +1649,7 @@ declare interface HeatmapChart {
|
|
|
1589
1649
|
* An optional description of the visualisation.
|
|
1590
1650
|
*/
|
|
1591
1651
|
description?: string;
|
|
1592
|
-
tags?:
|
|
1652
|
+
tags?: Tags24;
|
|
1593
1653
|
/**
|
|
1594
1654
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
1595
1655
|
*/
|
|
@@ -1631,7 +1691,7 @@ declare type Id = string;
|
|
|
1631
1691
|
declare type Id1 = string;
|
|
1632
1692
|
|
|
1633
1693
|
/**
|
|
1634
|
-
*
|
|
1694
|
+
* An id of the date dataset to be used for date filtering in this widget
|
|
1635
1695
|
*/
|
|
1636
1696
|
declare type Id10 = string;
|
|
1637
1697
|
|
|
@@ -1641,37 +1701,37 @@ declare type Id10 = string;
|
|
|
1641
1701
|
declare type Id11 = string;
|
|
1642
1702
|
|
|
1643
1703
|
/**
|
|
1644
|
-
*
|
|
1704
|
+
* A unique identifier of the widget.
|
|
1645
1705
|
*/
|
|
1646
1706
|
declare type Id12 = string;
|
|
1647
1707
|
|
|
1648
1708
|
/**
|
|
1649
|
-
*
|
|
1709
|
+
* A unique identifier of the widget.
|
|
1650
1710
|
*/
|
|
1651
1711
|
declare type Id13 = string;
|
|
1652
1712
|
|
|
1653
1713
|
/**
|
|
1654
|
-
*
|
|
1714
|
+
* An unique identifier of the plugin.
|
|
1655
1715
|
*/
|
|
1656
1716
|
declare type Id14 = string;
|
|
1657
1717
|
|
|
1658
1718
|
/**
|
|
1659
|
-
*
|
|
1719
|
+
* An unique identifier of the plugin.
|
|
1660
1720
|
*/
|
|
1661
1721
|
declare type Id15 = string;
|
|
1662
1722
|
|
|
1663
1723
|
/**
|
|
1664
|
-
* A unique identifier of the
|
|
1724
|
+
* A unique identifier of the tab.
|
|
1665
1725
|
*/
|
|
1666
1726
|
declare type Id16 = string;
|
|
1667
1727
|
|
|
1668
1728
|
/**
|
|
1669
|
-
* A unique identifier of the
|
|
1729
|
+
* A unique identifier of the plugin.
|
|
1670
1730
|
*/
|
|
1671
1731
|
declare type Id17 = string;
|
|
1672
1732
|
|
|
1673
1733
|
/**
|
|
1674
|
-
* A unique identifier of the
|
|
1734
|
+
* A unique identifier of the attribute hierarchy.
|
|
1675
1735
|
*/
|
|
1676
1736
|
declare type Id18 = string;
|
|
1677
1737
|
|
|
@@ -1773,7 +1833,7 @@ declare type Id35 = string;
|
|
|
1773
1833
|
declare type Id36 = string;
|
|
1774
1834
|
|
|
1775
1835
|
/**
|
|
1776
|
-
* A unique identifier of the
|
|
1836
|
+
* A unique identifier of the visualisation.
|
|
1777
1837
|
*/
|
|
1778
1838
|
declare type Id37 = string;
|
|
1779
1839
|
|
|
@@ -1783,32 +1843,39 @@ declare type Id37 = string;
|
|
|
1783
1843
|
declare type Id38 = string;
|
|
1784
1844
|
|
|
1785
1845
|
/**
|
|
1786
|
-
* A unique identifier of the
|
|
1846
|
+
* A unique identifier of the visualization data layer.
|
|
1787
1847
|
*/
|
|
1788
1848
|
declare type Id39 = string;
|
|
1789
1849
|
|
|
1790
1850
|
/**
|
|
1791
|
-
* A unique identifier of the
|
|
1851
|
+
* A unique identifier of the dataset.
|
|
1792
1852
|
*/
|
|
1793
1853
|
declare type Id4 = string;
|
|
1794
1854
|
|
|
1795
1855
|
/**
|
|
1796
|
-
* A unique identifier of the
|
|
1856
|
+
* A unique identifier of the visualisation.
|
|
1797
1857
|
*/
|
|
1858
|
+
declare type Id40 = string;
|
|
1859
|
+
|
|
1860
|
+
/**
|
|
1861
|
+
* A unique identifier of the visualisation.
|
|
1862
|
+
*/
|
|
1863
|
+
declare type Id41 = string;
|
|
1864
|
+
|
|
1798
1865
|
declare type Id5 = string;
|
|
1799
1866
|
|
|
1800
1867
|
/**
|
|
1801
|
-
* A unique identifier of the
|
|
1868
|
+
* A unique identifier of the date instance.
|
|
1802
1869
|
*/
|
|
1803
1870
|
declare type Id6 = string;
|
|
1804
1871
|
|
|
1805
1872
|
/**
|
|
1806
|
-
* A unique identifier of the
|
|
1873
|
+
* A unique identifier of the metric.
|
|
1807
1874
|
*/
|
|
1808
1875
|
declare type Id7 = string;
|
|
1809
1876
|
|
|
1810
1877
|
/**
|
|
1811
|
-
*
|
|
1878
|
+
* A unique identifier of the dashboard.
|
|
1812
1879
|
*/
|
|
1813
1880
|
declare type Id8 = string;
|
|
1814
1881
|
|
|
@@ -2046,7 +2113,7 @@ declare interface Label {
|
|
|
2046
2113
|
/**
|
|
2047
2114
|
* A column data type in the physical database.
|
|
2048
2115
|
*/
|
|
2049
|
-
data_type?: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN";
|
|
2116
|
+
data_type?: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN" | "HLL";
|
|
2050
2117
|
/**
|
|
2051
2118
|
* An optional human readable title for the label.
|
|
2052
2119
|
*/
|
|
@@ -2187,7 +2254,7 @@ declare interface LineChart {
|
|
|
2187
2254
|
* Type of visualisation.
|
|
2188
2255
|
*/
|
|
2189
2256
|
type: "line_chart";
|
|
2190
|
-
id:
|
|
2257
|
+
id: Id22;
|
|
2191
2258
|
/**
|
|
2192
2259
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
2193
2260
|
*/
|
|
@@ -2196,7 +2263,7 @@ declare interface LineChart {
|
|
|
2196
2263
|
* An optional description of the visualisation.
|
|
2197
2264
|
*/
|
|
2198
2265
|
description?: string;
|
|
2199
|
-
tags?:
|
|
2266
|
+
tags?: Tags15;
|
|
2200
2267
|
/**
|
|
2201
2268
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
2202
2269
|
*/
|
|
@@ -2596,10 +2663,25 @@ export declare const metadata_v1: {
|
|
|
2596
2663
|
snippets: string[];
|
|
2597
2664
|
})[];
|
|
2598
2665
|
required: string[];
|
|
2599
|
-
oneOf: {
|
|
2666
|
+
oneOf: ({
|
|
2667
|
+
properties?: undefined;
|
|
2600
2668
|
title: string;
|
|
2601
2669
|
required: string[];
|
|
2602
|
-
|
|
2670
|
+
description?: undefined;
|
|
2671
|
+
} | {
|
|
2672
|
+
title: string;
|
|
2673
|
+
description: string;
|
|
2674
|
+
properties: {
|
|
2675
|
+
dataset_type: {
|
|
2676
|
+
const: string;
|
|
2677
|
+
};
|
|
2678
|
+
table_path: boolean;
|
|
2679
|
+
sql: boolean;
|
|
2680
|
+
precedence: boolean;
|
|
2681
|
+
workspace_data_filters: boolean;
|
|
2682
|
+
};
|
|
2683
|
+
required: string[];
|
|
2684
|
+
})[];
|
|
2603
2685
|
};
|
|
2604
2686
|
dateDataset: {
|
|
2605
2687
|
title: string;
|
|
@@ -2804,6 +2886,7 @@ export declare const metadata_v1: {
|
|
|
2804
2886
|
oneOf: ({
|
|
2805
2887
|
$ref?: undefined;
|
|
2806
2888
|
$semantic?: undefined;
|
|
2889
|
+
description?: undefined;
|
|
2807
2890
|
type: string;
|
|
2808
2891
|
properties: {
|
|
2809
2892
|
id: {
|
|
@@ -2820,7 +2903,6 @@ export declare const metadata_v1: {
|
|
|
2820
2903
|
};
|
|
2821
2904
|
required: string[];
|
|
2822
2905
|
additionalProperties: boolean;
|
|
2823
|
-
description?: undefined;
|
|
2824
2906
|
} | {
|
|
2825
2907
|
properties?: undefined;
|
|
2826
2908
|
required?: undefined;
|
|
@@ -7773,10 +7855,25 @@ export declare const metadata_v1: {
|
|
|
7773
7855
|
snippets: string[];
|
|
7774
7856
|
})[];
|
|
7775
7857
|
required: string[];
|
|
7776
|
-
oneOf: {
|
|
7858
|
+
oneOf: ({
|
|
7859
|
+
properties?: undefined;
|
|
7860
|
+
description?: undefined;
|
|
7777
7861
|
title: string;
|
|
7778
7862
|
required: string[];
|
|
7779
|
-
}
|
|
7863
|
+
} | {
|
|
7864
|
+
title: string;
|
|
7865
|
+
description: string;
|
|
7866
|
+
properties: {
|
|
7867
|
+
dataset_type: {
|
|
7868
|
+
const: string;
|
|
7869
|
+
};
|
|
7870
|
+
table_path: boolean;
|
|
7871
|
+
sql: boolean;
|
|
7872
|
+
precedence: boolean;
|
|
7873
|
+
workspace_data_filters: boolean;
|
|
7874
|
+
};
|
|
7875
|
+
required: string[];
|
|
7876
|
+
})[];
|
|
7780
7877
|
};
|
|
7781
7878
|
dateDataset: {
|
|
7782
7879
|
title: string;
|
|
@@ -9328,7 +9425,7 @@ export declare const metadata_v1: {
|
|
|
9328
9425
|
};
|
|
9329
9426
|
|
|
9330
9427
|
declare interface Metric {
|
|
9331
|
-
id:
|
|
9428
|
+
id: Id7;
|
|
9332
9429
|
type: "metric";
|
|
9333
9430
|
/**
|
|
9334
9431
|
* An optional human readable title for the metric. Will be derived from id if not provided explicitly.
|
|
@@ -9338,7 +9435,7 @@ declare interface Metric {
|
|
|
9338
9435
|
* An optional description of the metric.
|
|
9339
9436
|
*/
|
|
9340
9437
|
description?: string;
|
|
9341
|
-
tags?:
|
|
9438
|
+
tags?: Tags8;
|
|
9342
9439
|
/**
|
|
9343
9440
|
* Define MAQL syntax for metric.
|
|
9344
9441
|
*/
|
|
@@ -9561,7 +9658,7 @@ declare interface PieChart {
|
|
|
9561
9658
|
* Type of visualisation.
|
|
9562
9659
|
*/
|
|
9563
9660
|
type: "pie_chart";
|
|
9564
|
-
id:
|
|
9661
|
+
id: Id26;
|
|
9565
9662
|
/**
|
|
9566
9663
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
9567
9664
|
*/
|
|
@@ -9570,7 +9667,7 @@ declare interface PieChart {
|
|
|
9570
9667
|
* An optional description of the visualisation.
|
|
9571
9668
|
*/
|
|
9572
9669
|
description?: string;
|
|
9573
|
-
tags?:
|
|
9670
|
+
tags?: Tags19;
|
|
9574
9671
|
/**
|
|
9575
9672
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
9576
9673
|
*/
|
|
@@ -9601,7 +9698,7 @@ declare interface PieChart1 {
|
|
|
9601
9698
|
* Type of visualisation.
|
|
9602
9699
|
*/
|
|
9603
9700
|
type: "donut_chart";
|
|
9604
|
-
id:
|
|
9701
|
+
id: Id27;
|
|
9605
9702
|
/**
|
|
9606
9703
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
9607
9704
|
*/
|
|
@@ -9610,7 +9707,7 @@ declare interface PieChart1 {
|
|
|
9610
9707
|
* An optional description of the visualisation.
|
|
9611
9708
|
*/
|
|
9612
9709
|
description?: string;
|
|
9613
|
-
tags?:
|
|
9710
|
+
tags?: Tags20;
|
|
9614
9711
|
/**
|
|
9615
9712
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
9616
9713
|
*/
|
|
@@ -9637,7 +9734,7 @@ declare interface PieChart1 {
|
|
|
9637
9734
|
}
|
|
9638
9735
|
|
|
9639
9736
|
declare interface Plugin_2 {
|
|
9640
|
-
id:
|
|
9737
|
+
id: Id17;
|
|
9641
9738
|
type: "plugin";
|
|
9642
9739
|
/**
|
|
9643
9740
|
* An optional human readable title for the plugin. Will be derived from id if not provided explicitly.
|
|
@@ -9647,7 +9744,7 @@ declare interface Plugin_2 {
|
|
|
9647
9744
|
* An optional description of the plugin.
|
|
9648
9745
|
*/
|
|
9649
9746
|
description?: string;
|
|
9650
|
-
tags?:
|
|
9747
|
+
tags?: Tags10;
|
|
9651
9748
|
/**
|
|
9652
9749
|
* URL of the plugin.
|
|
9653
9750
|
*/
|
|
@@ -9760,6 +9857,11 @@ declare type PrimaryKey = string;
|
|
|
9760
9857
|
*/
|
|
9761
9858
|
declare type PrimaryKey1 = string;
|
|
9762
9859
|
|
|
9860
|
+
/**
|
|
9861
|
+
* A primary key for the given dataset.
|
|
9862
|
+
*/
|
|
9863
|
+
declare type PrimaryKey2 = string;
|
|
9864
|
+
|
|
9763
9865
|
declare type PushpinLocationBucket = string;
|
|
9764
9866
|
|
|
9765
9867
|
declare interface PyramidChart {
|
|
@@ -9767,7 +9869,7 @@ declare interface PyramidChart {
|
|
|
9767
9869
|
* Type of visualisation.
|
|
9768
9870
|
*/
|
|
9769
9871
|
type: "pyramid_chart";
|
|
9770
|
-
id:
|
|
9872
|
+
id: Id29;
|
|
9771
9873
|
/**
|
|
9772
9874
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
9773
9875
|
*/
|
|
@@ -9776,7 +9878,7 @@ declare interface PyramidChart {
|
|
|
9776
9878
|
* An optional description of the visualisation.
|
|
9777
9879
|
*/
|
|
9778
9880
|
description?: string;
|
|
9779
|
-
tags?:
|
|
9881
|
+
tags?: Tags22;
|
|
9780
9882
|
/**
|
|
9781
9883
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
9782
9884
|
*/
|
|
@@ -9806,7 +9908,7 @@ declare interface PyramidChart {
|
|
|
9806
9908
|
* Query definition of visualisation.
|
|
9807
9909
|
*/
|
|
9808
9910
|
declare interface Query {
|
|
9809
|
-
fields:
|
|
9911
|
+
fields: Fields3;
|
|
9810
9912
|
filter_by?: QueryFilters2;
|
|
9811
9913
|
sort_by?: Sorts;
|
|
9812
9914
|
}
|
|
@@ -9815,7 +9917,7 @@ declare interface Query {
|
|
|
9815
9917
|
* Query definition of visualisation.
|
|
9816
9918
|
*/
|
|
9817
9919
|
declare interface Query1 {
|
|
9818
|
-
fields:
|
|
9920
|
+
fields: Fields3;
|
|
9819
9921
|
filter_by?: QueryFilters2;
|
|
9820
9922
|
sort_by?: Sorts;
|
|
9821
9923
|
}
|
|
@@ -9824,7 +9926,7 @@ declare interface Query1 {
|
|
|
9824
9926
|
* Query definition of visualisation.
|
|
9825
9927
|
*/
|
|
9826
9928
|
declare interface Query10 {
|
|
9827
|
-
fields:
|
|
9929
|
+
fields: Fields3;
|
|
9828
9930
|
filter_by?: QueryFilters2;
|
|
9829
9931
|
sort_by?: Sorts;
|
|
9830
9932
|
}
|
|
@@ -9833,7 +9935,7 @@ declare interface Query10 {
|
|
|
9833
9935
|
* Query definition of visualisation.
|
|
9834
9936
|
*/
|
|
9835
9937
|
declare interface Query11 {
|
|
9836
|
-
fields:
|
|
9938
|
+
fields: Fields3;
|
|
9837
9939
|
filter_by?: QueryFilters2;
|
|
9838
9940
|
sort_by?: Sorts;
|
|
9839
9941
|
}
|
|
@@ -9842,7 +9944,7 @@ declare interface Query11 {
|
|
|
9842
9944
|
* Query definition of visualisation.
|
|
9843
9945
|
*/
|
|
9844
9946
|
declare interface Query12 {
|
|
9845
|
-
fields:
|
|
9947
|
+
fields: Fields3;
|
|
9846
9948
|
filter_by?: QueryFilters2;
|
|
9847
9949
|
sort_by?: Sorts;
|
|
9848
9950
|
}
|
|
@@ -9851,7 +9953,7 @@ declare interface Query12 {
|
|
|
9851
9953
|
* Query definition of visualisation.
|
|
9852
9954
|
*/
|
|
9853
9955
|
declare interface Query13 {
|
|
9854
|
-
fields:
|
|
9956
|
+
fields: Fields3;
|
|
9855
9957
|
filter_by?: QueryFilters2;
|
|
9856
9958
|
sort_by?: Sorts;
|
|
9857
9959
|
}
|
|
@@ -9860,7 +9962,7 @@ declare interface Query13 {
|
|
|
9860
9962
|
* Query definition of visualisation.
|
|
9861
9963
|
*/
|
|
9862
9964
|
declare interface Query14 {
|
|
9863
|
-
fields:
|
|
9965
|
+
fields: Fields3;
|
|
9864
9966
|
filter_by?: QueryFilters2;
|
|
9865
9967
|
sort_by?: Sorts;
|
|
9866
9968
|
}
|
|
@@ -9869,7 +9971,7 @@ declare interface Query14 {
|
|
|
9869
9971
|
* Query definition of visualisation.
|
|
9870
9972
|
*/
|
|
9871
9973
|
declare interface Query15 {
|
|
9872
|
-
fields:
|
|
9974
|
+
fields: Fields3;
|
|
9873
9975
|
filter_by?: QueryFilters2;
|
|
9874
9976
|
sort_by?: Sorts;
|
|
9875
9977
|
}
|
|
@@ -9878,7 +9980,7 @@ declare interface Query15 {
|
|
|
9878
9980
|
* Query definition of visualisation.
|
|
9879
9981
|
*/
|
|
9880
9982
|
declare interface Query16 {
|
|
9881
|
-
fields:
|
|
9983
|
+
fields: Fields3;
|
|
9882
9984
|
filter_by?: QueryFilters2;
|
|
9883
9985
|
sort_by?: Sorts;
|
|
9884
9986
|
}
|
|
@@ -9887,7 +9989,7 @@ declare interface Query16 {
|
|
|
9887
9989
|
* Query definition of visualisation.
|
|
9888
9990
|
*/
|
|
9889
9991
|
declare interface Query17 {
|
|
9890
|
-
fields:
|
|
9992
|
+
fields: Fields3;
|
|
9891
9993
|
filter_by?: QueryFilters2;
|
|
9892
9994
|
sort_by?: Sorts;
|
|
9893
9995
|
}
|
|
@@ -9896,7 +9998,7 @@ declare interface Query17 {
|
|
|
9896
9998
|
* Query definition of visualisation.
|
|
9897
9999
|
*/
|
|
9898
10000
|
declare interface Query18 {
|
|
9899
|
-
fields:
|
|
10001
|
+
fields: Fields3;
|
|
9900
10002
|
filter_by?: QueryFilters2;
|
|
9901
10003
|
sort_by?: Sorts;
|
|
9902
10004
|
}
|
|
@@ -9905,7 +10007,7 @@ declare interface Query18 {
|
|
|
9905
10007
|
* Query definition of visualisation.
|
|
9906
10008
|
*/
|
|
9907
10009
|
declare interface Query19 {
|
|
9908
|
-
fields:
|
|
10010
|
+
fields: Fields3;
|
|
9909
10011
|
filter_by?: QueryFilters2;
|
|
9910
10012
|
sort_by?: Sorts;
|
|
9911
10013
|
}
|
|
@@ -9914,7 +10016,7 @@ declare interface Query19 {
|
|
|
9914
10016
|
* Query definition of visualisation.
|
|
9915
10017
|
*/
|
|
9916
10018
|
declare interface Query2 {
|
|
9917
|
-
fields:
|
|
10019
|
+
fields: Fields3;
|
|
9918
10020
|
filter_by?: QueryFilters2;
|
|
9919
10021
|
sort_by?: Sorts;
|
|
9920
10022
|
}
|
|
@@ -9923,7 +10025,7 @@ declare interface Query2 {
|
|
|
9923
10025
|
* Query definition of visualisation.
|
|
9924
10026
|
*/
|
|
9925
10027
|
declare interface Query20 {
|
|
9926
|
-
fields:
|
|
10028
|
+
fields: Fields3;
|
|
9927
10029
|
filter_by?: QueryFilters2;
|
|
9928
10030
|
sort_by?: Sorts;
|
|
9929
10031
|
}
|
|
@@ -9932,7 +10034,7 @@ declare interface Query20 {
|
|
|
9932
10034
|
* Query definition of visualisation.
|
|
9933
10035
|
*/
|
|
9934
10036
|
declare interface Query21 {
|
|
9935
|
-
fields:
|
|
10037
|
+
fields: Fields3;
|
|
9936
10038
|
filter_by?: QueryFilters2;
|
|
9937
10039
|
sort_by?: Sorts;
|
|
9938
10040
|
}
|
|
@@ -9941,7 +10043,7 @@ declare interface Query21 {
|
|
|
9941
10043
|
* Query definition of visualisation.
|
|
9942
10044
|
*/
|
|
9943
10045
|
declare interface Query3 {
|
|
9944
|
-
fields:
|
|
10046
|
+
fields: Fields3;
|
|
9945
10047
|
filter_by?: QueryFilters2;
|
|
9946
10048
|
sort_by?: Sorts;
|
|
9947
10049
|
}
|
|
@@ -9950,7 +10052,7 @@ declare interface Query3 {
|
|
|
9950
10052
|
* Query definition of visualisation.
|
|
9951
10053
|
*/
|
|
9952
10054
|
declare interface Query4 {
|
|
9953
|
-
fields:
|
|
10055
|
+
fields: Fields3;
|
|
9954
10056
|
filter_by?: QueryFilters2;
|
|
9955
10057
|
sort_by?: Sorts;
|
|
9956
10058
|
}
|
|
@@ -9959,7 +10061,7 @@ declare interface Query4 {
|
|
|
9959
10061
|
* Query definition of visualisation.
|
|
9960
10062
|
*/
|
|
9961
10063
|
declare interface Query5 {
|
|
9962
|
-
fields:
|
|
10064
|
+
fields: Fields3;
|
|
9963
10065
|
filter_by?: QueryFilters2;
|
|
9964
10066
|
sort_by?: Sorts;
|
|
9965
10067
|
}
|
|
@@ -9968,7 +10070,7 @@ declare interface Query5 {
|
|
|
9968
10070
|
* Query definition of visualisation.
|
|
9969
10071
|
*/
|
|
9970
10072
|
declare interface Query6 {
|
|
9971
|
-
fields:
|
|
10073
|
+
fields: Fields3;
|
|
9972
10074
|
filter_by?: QueryFilters2;
|
|
9973
10075
|
sort_by?: Sorts;
|
|
9974
10076
|
}
|
|
@@ -9977,7 +10079,7 @@ declare interface Query6 {
|
|
|
9977
10079
|
* Query definition of visualisation.
|
|
9978
10080
|
*/
|
|
9979
10081
|
declare interface Query7 {
|
|
9980
|
-
fields:
|
|
10082
|
+
fields: Fields3;
|
|
9981
10083
|
filter_by?: QueryFilters2;
|
|
9982
10084
|
sort_by?: Sorts;
|
|
9983
10085
|
}
|
|
@@ -9986,7 +10088,7 @@ declare interface Query7 {
|
|
|
9986
10088
|
* Query definition of visualisation.
|
|
9987
10089
|
*/
|
|
9988
10090
|
declare interface Query8 {
|
|
9989
|
-
fields:
|
|
10091
|
+
fields: Fields3;
|
|
9990
10092
|
filter_by?: QueryFilters2;
|
|
9991
10093
|
sort_by?: Sorts;
|
|
9992
10094
|
}
|
|
@@ -9995,7 +10097,7 @@ declare interface Query8 {
|
|
|
9995
10097
|
* Query definition of visualisation.
|
|
9996
10098
|
*/
|
|
9997
10099
|
declare interface Query9 {
|
|
9998
|
-
fields:
|
|
10100
|
+
fields: Fields3;
|
|
9999
10101
|
filter_by?: QueryFilters2;
|
|
10000
10102
|
sort_by?: Sorts;
|
|
10001
10103
|
}
|
|
@@ -10087,7 +10189,7 @@ declare interface RepeaterChart {
|
|
|
10087
10189
|
* Type of visualisation.
|
|
10088
10190
|
*/
|
|
10089
10191
|
type: "repeater_chart";
|
|
10090
|
-
id:
|
|
10192
|
+
id: Id41;
|
|
10091
10193
|
/**
|
|
10092
10194
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10093
10195
|
*/
|
|
@@ -10096,7 +10198,7 @@ declare interface RepeaterChart {
|
|
|
10096
10198
|
* An optional description of the visualisation.
|
|
10097
10199
|
*/
|
|
10098
10200
|
description?: string;
|
|
10099
|
-
tags?:
|
|
10201
|
+
tags?: Tags33;
|
|
10100
10202
|
/**
|
|
10101
10203
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10102
10204
|
*/
|
|
@@ -10131,7 +10233,7 @@ declare interface RepeaterChart {
|
|
|
10131
10233
|
}
|
|
10132
10234
|
|
|
10133
10235
|
declare interface RichTextWidget {
|
|
10134
|
-
id?:
|
|
10236
|
+
id?: Id11;
|
|
10135
10237
|
/**
|
|
10136
10238
|
* A markdown content of the widget
|
|
10137
10239
|
*/
|
|
@@ -10151,7 +10253,7 @@ declare interface SankeyChart {
|
|
|
10151
10253
|
* Type of visualisation.
|
|
10152
10254
|
*/
|
|
10153
10255
|
type: "sankey_chart";
|
|
10154
|
-
id:
|
|
10256
|
+
id: Id35;
|
|
10155
10257
|
/**
|
|
10156
10258
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10157
10259
|
*/
|
|
@@ -10160,7 +10262,7 @@ declare interface SankeyChart {
|
|
|
10160
10262
|
* An optional description of the visualisation.
|
|
10161
10263
|
*/
|
|
10162
10264
|
description?: string;
|
|
10163
|
-
tags?:
|
|
10265
|
+
tags?: Tags28;
|
|
10164
10266
|
/**
|
|
10165
10267
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10166
10268
|
*/
|
|
@@ -10193,7 +10295,7 @@ declare interface ScatterChart {
|
|
|
10193
10295
|
* Type of visualisation.
|
|
10194
10296
|
*/
|
|
10195
10297
|
type: "scatter_chart";
|
|
10196
|
-
id:
|
|
10298
|
+
id: Id24;
|
|
10197
10299
|
/**
|
|
10198
10300
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10199
10301
|
*/
|
|
@@ -10202,7 +10304,7 @@ declare interface ScatterChart {
|
|
|
10202
10304
|
* An optional description of the visualisation.
|
|
10203
10305
|
*/
|
|
10204
10306
|
description?: string;
|
|
10205
|
-
tags?:
|
|
10307
|
+
tags?: Tags17;
|
|
10206
10308
|
/**
|
|
10207
10309
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10208
10310
|
*/
|
|
@@ -10269,7 +10371,7 @@ declare interface Source {
|
|
|
10269
10371
|
/**
|
|
10270
10372
|
* A column data type in the physical database.
|
|
10271
10373
|
*/
|
|
10272
|
-
data_type: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN";
|
|
10374
|
+
data_type: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN" | "HLL";
|
|
10273
10375
|
/**
|
|
10274
10376
|
* A target dataset one of primary key or date.
|
|
10275
10377
|
*/
|
|
@@ -10340,7 +10442,7 @@ declare interface State {
|
|
|
10340
10442
|
declare type StructuredField = AttributeFieldGuard | MetricFieldGuard | CalculatedMetricFieldGuard | InlineMetricFieldGuard | ArithmeticMetricFieldGuard | PoPMetricFieldGuard | PreviousPeriodMetricFieldGuard;
|
|
10341
10443
|
|
|
10342
10444
|
declare interface Tab {
|
|
10343
|
-
id:
|
|
10445
|
+
id: Id16;
|
|
10344
10446
|
/**
|
|
10345
10447
|
* Display title for the tab.
|
|
10346
10448
|
*/
|
|
@@ -10357,7 +10459,7 @@ declare interface Table {
|
|
|
10357
10459
|
* Type of visualisation.
|
|
10358
10460
|
*/
|
|
10359
10461
|
type: "table";
|
|
10360
|
-
id:
|
|
10462
|
+
id: Id19;
|
|
10361
10463
|
/**
|
|
10362
10464
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10363
10465
|
*/
|
|
@@ -10366,7 +10468,7 @@ declare interface Table {
|
|
|
10366
10468
|
* An optional description of the visualisation.
|
|
10367
10469
|
*/
|
|
10368
10470
|
description?: string;
|
|
10369
|
-
tags?:
|
|
10471
|
+
tags?: Tags12;
|
|
10370
10472
|
/**
|
|
10371
10473
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10372
10474
|
*/
|
|
@@ -10408,12 +10510,12 @@ declare type Tags = string[];
|
|
|
10408
10510
|
declare type Tags1 = string[];
|
|
10409
10511
|
|
|
10410
10512
|
/**
|
|
10411
|
-
* A list of strings - metadata tags of this
|
|
10513
|
+
* A list of strings - metadata tags of this plugin.
|
|
10412
10514
|
*/
|
|
10413
10515
|
declare type Tags10 = string[];
|
|
10414
10516
|
|
|
10415
10517
|
/**
|
|
10416
|
-
* A list of strings - metadata tags of this
|
|
10518
|
+
* A list of strings - metadata tags of this attribute hierarchy.
|
|
10417
10519
|
*/
|
|
10418
10520
|
declare type Tags11 = string[];
|
|
10419
10521
|
|
|
@@ -10529,6 +10631,11 @@ declare type Tags31 = string[];
|
|
|
10529
10631
|
*/
|
|
10530
10632
|
declare type Tags32 = string[];
|
|
10531
10633
|
|
|
10634
|
+
/**
|
|
10635
|
+
* A list of strings - metadata tags of this visualisation.
|
|
10636
|
+
*/
|
|
10637
|
+
declare type Tags33 = string[];
|
|
10638
|
+
|
|
10532
10639
|
declare type Tags4 = string[];
|
|
10533
10640
|
|
|
10534
10641
|
/**
|
|
@@ -10537,22 +10644,22 @@ declare type Tags4 = string[];
|
|
|
10537
10644
|
declare type Tags5 = string[];
|
|
10538
10645
|
|
|
10539
10646
|
/**
|
|
10540
|
-
* A list of strings - metadata tags of this
|
|
10647
|
+
* A list of strings - metadata tags of this dataset.
|
|
10541
10648
|
*/
|
|
10542
10649
|
declare type Tags6 = string[];
|
|
10543
10650
|
|
|
10544
10651
|
/**
|
|
10545
|
-
* A list of strings - metadata tags of this
|
|
10652
|
+
* A list of strings - metadata tags of this date instance.
|
|
10546
10653
|
*/
|
|
10547
10654
|
declare type Tags7 = string[];
|
|
10548
10655
|
|
|
10549
10656
|
/**
|
|
10550
|
-
* A list of strings - metadata tags of this
|
|
10657
|
+
* A list of strings - metadata tags of this metric.
|
|
10551
10658
|
*/
|
|
10552
10659
|
declare type Tags8 = string[];
|
|
10553
10660
|
|
|
10554
10661
|
/**
|
|
10555
|
-
* A list of strings - metadata tags of this
|
|
10662
|
+
* A list of strings - metadata tags of this dashboard.
|
|
10556
10663
|
*/
|
|
10557
10664
|
declare type Tags9 = string[];
|
|
10558
10665
|
|
|
@@ -10630,7 +10737,7 @@ declare interface TreemapChart {
|
|
|
10630
10737
|
* Type of visualisation.
|
|
10631
10738
|
*/
|
|
10632
10739
|
type: "treemap_chart";
|
|
10633
|
-
id:
|
|
10740
|
+
id: Id28;
|
|
10634
10741
|
/**
|
|
10635
10742
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10636
10743
|
*/
|
|
@@ -10639,7 +10746,7 @@ declare interface TreemapChart {
|
|
|
10639
10746
|
* An optional description of the visualisation.
|
|
10640
10747
|
*/
|
|
10641
10748
|
description?: string;
|
|
10642
|
-
tags?:
|
|
10749
|
+
tags?: Tags21;
|
|
10643
10750
|
/**
|
|
10644
10751
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10645
10752
|
*/
|
|
@@ -10687,22 +10794,27 @@ export declare namespace v1 {
|
|
|
10687
10794
|
PrimaryKey1,
|
|
10688
10795
|
Id3,
|
|
10689
10796
|
CompositePrimaryKey1,
|
|
10690
|
-
Metadata6,
|
|
10691
|
-
Metadata8,
|
|
10692
10797
|
Id4,
|
|
10693
10798
|
Tags6,
|
|
10694
|
-
|
|
10695
|
-
Metadata11,
|
|
10799
|
+
PrimaryKey2,
|
|
10696
10800
|
Id5,
|
|
10801
|
+
CompositePrimaryKey2,
|
|
10802
|
+
Metadata6,
|
|
10803
|
+
Metadata8,
|
|
10804
|
+
Id6,
|
|
10697
10805
|
Tags7,
|
|
10806
|
+
Metadata9,
|
|
10807
|
+
Metadata11,
|
|
10808
|
+
Id7,
|
|
10809
|
+
Tags8,
|
|
10698
10810
|
Metadata12,
|
|
10699
10811
|
Metadata14,
|
|
10700
|
-
|
|
10701
|
-
|
|
10812
|
+
Id8,
|
|
10813
|
+
Tags9,
|
|
10702
10814
|
Widget,
|
|
10703
10815
|
Widget1,
|
|
10704
|
-
|
|
10705
|
-
|
|
10816
|
+
Id9,
|
|
10817
|
+
Id10,
|
|
10706
10818
|
Interaction,
|
|
10707
10819
|
Interaction1,
|
|
10708
10820
|
InteractionClickOn,
|
|
@@ -10722,11 +10834,11 @@ export declare namespace v1 {
|
|
|
10722
10834
|
IgnoredDrillDown2,
|
|
10723
10835
|
IgnoredDrillDown3,
|
|
10724
10836
|
Widget2,
|
|
10725
|
-
|
|
10837
|
+
Id11,
|
|
10726
10838
|
Widget3,
|
|
10727
|
-
|
|
10839
|
+
Id12,
|
|
10728
10840
|
Widget4,
|
|
10729
|
-
|
|
10841
|
+
Id13,
|
|
10730
10842
|
DashboardAttributeFilter,
|
|
10731
10843
|
DashboardAttributeFilter1,
|
|
10732
10844
|
AttributeIdentifier2,
|
|
@@ -10745,24 +10857,24 @@ export declare namespace v1 {
|
|
|
10745
10857
|
AttributeIdentifier5,
|
|
10746
10858
|
LabelIdentifier5,
|
|
10747
10859
|
DisplayAsLabelIdentifier3,
|
|
10748
|
-
Id12,
|
|
10749
|
-
Id13,
|
|
10750
10860
|
Id14,
|
|
10861
|
+
Id15,
|
|
10862
|
+
Id16,
|
|
10751
10863
|
Metadata15,
|
|
10752
10864
|
Metadata17,
|
|
10753
|
-
|
|
10754
|
-
|
|
10865
|
+
Id17,
|
|
10866
|
+
Tags10,
|
|
10755
10867
|
Metadata18,
|
|
10756
10868
|
Metadata20,
|
|
10757
|
-
|
|
10758
|
-
|
|
10869
|
+
Id18,
|
|
10870
|
+
Tags11,
|
|
10759
10871
|
AttributeIdentifier6,
|
|
10760
10872
|
Metadata21,
|
|
10761
10873
|
Metadata23,
|
|
10762
10874
|
Visualisation,
|
|
10763
10875
|
Visualisation1,
|
|
10764
|
-
|
|
10765
|
-
|
|
10876
|
+
Id19,
|
|
10877
|
+
Tags12,
|
|
10766
10878
|
Field,
|
|
10767
10879
|
AttributeIdentifier7,
|
|
10768
10880
|
Field1,
|
|
@@ -10844,78 +10956,78 @@ export declare namespace v1 {
|
|
|
10844
10956
|
Bucket,
|
|
10845
10957
|
SimpleBucket,
|
|
10846
10958
|
Visualisation2,
|
|
10847
|
-
Id18,
|
|
10848
|
-
Tags12,
|
|
10849
|
-
Visualisation3,
|
|
10850
|
-
Id19,
|
|
10851
|
-
Tags13,
|
|
10852
|
-
Visualisation4,
|
|
10853
10959
|
Id20,
|
|
10854
|
-
|
|
10855
|
-
|
|
10960
|
+
Tags13,
|
|
10961
|
+
Visualisation3,
|
|
10856
10962
|
Id21,
|
|
10857
|
-
|
|
10858
|
-
|
|
10963
|
+
Tags14,
|
|
10964
|
+
Visualisation4,
|
|
10859
10965
|
Id22,
|
|
10966
|
+
Tags15,
|
|
10967
|
+
Visualisation5,
|
|
10968
|
+
Id23,
|
|
10860
10969
|
Tags16,
|
|
10970
|
+
Visualisation6,
|
|
10971
|
+
Id24,
|
|
10972
|
+
Tags17,
|
|
10861
10973
|
EmptyBucket,
|
|
10862
10974
|
Visualisation7,
|
|
10863
|
-
Id23,
|
|
10864
|
-
Tags17,
|
|
10865
|
-
Visualisation8,
|
|
10866
|
-
Id24,
|
|
10867
|
-
Tags18,
|
|
10868
|
-
Visualisation9,
|
|
10869
10975
|
Id25,
|
|
10870
|
-
|
|
10871
|
-
|
|
10976
|
+
Tags18,
|
|
10977
|
+
Visualisation8,
|
|
10872
10978
|
Id26,
|
|
10873
|
-
|
|
10874
|
-
|
|
10979
|
+
Tags19,
|
|
10980
|
+
Visualisation9,
|
|
10875
10981
|
Id27,
|
|
10876
|
-
|
|
10877
|
-
|
|
10982
|
+
Tags20,
|
|
10983
|
+
Visualisation10,
|
|
10878
10984
|
Id28,
|
|
10879
|
-
|
|
10880
|
-
|
|
10985
|
+
Tags21,
|
|
10986
|
+
Visualisation11,
|
|
10881
10987
|
Id29,
|
|
10882
|
-
|
|
10883
|
-
|
|
10988
|
+
Tags22,
|
|
10989
|
+
Visualisation12,
|
|
10884
10990
|
Id30,
|
|
10885
|
-
|
|
10886
|
-
|
|
10991
|
+
Tags23,
|
|
10992
|
+
Visualisation13,
|
|
10887
10993
|
Id31,
|
|
10888
|
-
|
|
10889
|
-
|
|
10994
|
+
Tags24,
|
|
10995
|
+
Visualisation14,
|
|
10890
10996
|
Id32,
|
|
10997
|
+
Tags25,
|
|
10998
|
+
Visualisation15,
|
|
10999
|
+
Id33,
|
|
10891
11000
|
Tags26,
|
|
11001
|
+
Visualisation16,
|
|
11002
|
+
Id34,
|
|
11003
|
+
Tags27,
|
|
10892
11004
|
Bucket1,
|
|
10893
11005
|
Bucket2,
|
|
10894
11006
|
Visualisation17,
|
|
10895
|
-
|
|
10896
|
-
|
|
11007
|
+
Id35,
|
|
11008
|
+
Tags28,
|
|
10897
11009
|
Bucket3,
|
|
10898
11010
|
Bucket4,
|
|
10899
11011
|
Visualisation18,
|
|
10900
|
-
Id34,
|
|
10901
|
-
Tags28,
|
|
10902
|
-
Visualisation19,
|
|
10903
|
-
Id35,
|
|
10904
|
-
Tags29,
|
|
10905
|
-
Visualisation20,
|
|
10906
11012
|
Id36,
|
|
11013
|
+
Tags29,
|
|
11014
|
+
Visualisation19,
|
|
11015
|
+
Id37,
|
|
10907
11016
|
Tags30,
|
|
11017
|
+
Visualisation20,
|
|
11018
|
+
Id38,
|
|
11019
|
+
Tags31,
|
|
10908
11020
|
PushpinLocationBucket,
|
|
10909
11021
|
LayerItem,
|
|
10910
|
-
|
|
11022
|
+
Id39,
|
|
10911
11023
|
LocationBucket,
|
|
10912
11024
|
GeoAreaBucket,
|
|
10913
11025
|
Visualisation21,
|
|
10914
|
-
|
|
10915
|
-
Tags31,
|
|
10916
|
-
Visualisation22,
|
|
10917
|
-
Id39,
|
|
11026
|
+
Id40,
|
|
10918
11027
|
Tags32,
|
|
11028
|
+
Visualisation22,
|
|
11029
|
+
Id41,
|
|
11030
|
+
Tags33,
|
|
10919
11031
|
Metadata24,
|
|
10920
11032
|
Metadata26,
|
|
10921
11033
|
Metadata1,
|
|
@@ -10933,6 +11045,8 @@ export declare namespace v1 {
|
|
|
10933
11045
|
WorkspaceDataFilter,
|
|
10934
11046
|
SQLDataset,
|
|
10935
11047
|
Fields1,
|
|
11048
|
+
AuxiliaryDataset,
|
|
11049
|
+
Fields2,
|
|
10936
11050
|
Metadata7,
|
|
10937
11051
|
DateDataset,
|
|
10938
11052
|
Metadata10,
|
|
@@ -10973,7 +11087,7 @@ export declare namespace v1 {
|
|
|
10973
11087
|
Metadata22,
|
|
10974
11088
|
Table,
|
|
10975
11089
|
Query,
|
|
10976
|
-
|
|
11090
|
+
Fields3,
|
|
10977
11091
|
AttributeField,
|
|
10978
11092
|
AttributeFieldGuard1,
|
|
10979
11093
|
MetricField,
|
|
@@ -15133,7 +15247,7 @@ declare interface VisualisationConfig9 {
|
|
|
15133
15247
|
}
|
|
15134
15248
|
|
|
15135
15249
|
declare interface VisualisationWidget {
|
|
15136
|
-
id?:
|
|
15250
|
+
id?: Id9;
|
|
15137
15251
|
/**
|
|
15138
15252
|
* An id of the visualization to be rendered with the widget
|
|
15139
15253
|
*/
|
|
@@ -15148,7 +15262,7 @@ declare interface VisualisationWidget {
|
|
|
15148
15262
|
* An optional height of the widget in the grid, each row being ~20px high
|
|
15149
15263
|
*/
|
|
15150
15264
|
rows?: number;
|
|
15151
|
-
date?:
|
|
15265
|
+
date?: Id10;
|
|
15152
15266
|
/**
|
|
15153
15267
|
* A list of dashboard filters to be ignored for this widget
|
|
15154
15268
|
*/
|
|
@@ -15173,7 +15287,7 @@ declare interface VisualisationWidget {
|
|
|
15173
15287
|
}
|
|
15174
15288
|
|
|
15175
15289
|
declare interface VisualisationWidget1 {
|
|
15176
|
-
id?:
|
|
15290
|
+
id?: Id9;
|
|
15177
15291
|
/**
|
|
15178
15292
|
* An id of the visualization to be rendered with the widget
|
|
15179
15293
|
*/
|
|
@@ -15188,7 +15302,7 @@ declare interface VisualisationWidget1 {
|
|
|
15188
15302
|
* An optional height of the widget in the grid, each row being ~20px high
|
|
15189
15303
|
*/
|
|
15190
15304
|
rows?: number;
|
|
15191
|
-
date?:
|
|
15305
|
+
date?: Id10;
|
|
15192
15306
|
/**
|
|
15193
15307
|
* A list of dashboard filters to be ignored for this widget
|
|
15194
15308
|
*/
|
|
@@ -15213,7 +15327,7 @@ declare interface VisualisationWidget1 {
|
|
|
15213
15327
|
}
|
|
15214
15328
|
|
|
15215
15329
|
declare interface VisualizationDataLayer {
|
|
15216
|
-
id:
|
|
15330
|
+
id: Id39;
|
|
15217
15331
|
/**
|
|
15218
15332
|
* An optional human readable title for the layer. Will be derived from id if not provided explicitly.
|
|
15219
15333
|
*/
|
|
@@ -15238,7 +15352,7 @@ declare interface VisualizationDataLayer {
|
|
|
15238
15352
|
}
|
|
15239
15353
|
|
|
15240
15354
|
declare interface VisualizationSwitcherWidget {
|
|
15241
|
-
id?:
|
|
15355
|
+
id?: Id12;
|
|
15242
15356
|
/**
|
|
15243
15357
|
* An optional width of the widget in the grid, total width being 12 columns
|
|
15244
15358
|
*/
|
|
@@ -15258,7 +15372,7 @@ declare interface WaterfallChart {
|
|
|
15258
15372
|
* Type of visualisation.
|
|
15259
15373
|
*/
|
|
15260
15374
|
type: "waterfall_chart";
|
|
15261
|
-
id:
|
|
15375
|
+
id: Id33;
|
|
15262
15376
|
/**
|
|
15263
15377
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
15264
15378
|
*/
|
|
@@ -15267,7 +15381,7 @@ declare interface WaterfallChart {
|
|
|
15267
15381
|
* An optional description of the visualisation.
|
|
15268
15382
|
*/
|
|
15269
15383
|
description?: string;
|
|
15270
|
-
tags?:
|
|
15384
|
+
tags?: Tags26;
|
|
15271
15385
|
/**
|
|
15272
15386
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
15273
15387
|
*/
|
|
@@ -15324,7 +15438,7 @@ declare interface WorkspaceDataFilter {
|
|
|
15324
15438
|
/**
|
|
15325
15439
|
* A column data type in the physical database.
|
|
15326
15440
|
*/
|
|
15327
|
-
data_type: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN";
|
|
15441
|
+
data_type: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN" | "HLL";
|
|
15328
15442
|
}
|
|
15329
15443
|
|
|
15330
15444
|
export { }
|