@gooddata/sdk-code-schemas 11.54.0-alpha.5 → 11.54.0-alpha.6
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 +303 -149
- package/esm/v1/metadata.d.ts +189 -151
- package/esm/v1/metadata.d.ts.map +1 -1
- package/esm/v1/metadata.json +92 -0
- package/esm/v1/schema.d.ts +104 -0
- package/esm/v1/schema.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -77,7 +77,7 @@ declare interface AreaChart {
|
|
|
77
77
|
* Type of visualisation.
|
|
78
78
|
*/
|
|
79
79
|
type: "area_chart";
|
|
80
|
-
id:
|
|
80
|
+
id: Id25;
|
|
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?: Tags18;
|
|
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
|
*/
|
|
@@ -282,7 +282,7 @@ declare interface AttributeFilter1 {
|
|
|
282
282
|
}
|
|
283
283
|
|
|
284
284
|
declare interface AttributeHierarchy {
|
|
285
|
-
id:
|
|
285
|
+
id: Id19;
|
|
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?: Tags12;
|
|
296
296
|
/**
|
|
297
297
|
* A list of sorted attributes use in attribute hierarchy. The first attribute is the top level attribute.
|
|
298
298
|
*/
|
|
@@ -433,7 +433,7 @@ declare interface BarChart {
|
|
|
433
433
|
* Type of visualisation.
|
|
434
434
|
*/
|
|
435
435
|
type: "bar_chart";
|
|
436
|
-
id:
|
|
436
|
+
id: Id22;
|
|
437
437
|
/**
|
|
438
438
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
439
439
|
*/
|
|
@@ -442,7 +442,7 @@ declare interface BarChart {
|
|
|
442
442
|
* An optional description of the visualisation.
|
|
443
443
|
*/
|
|
444
444
|
description?: string;
|
|
445
|
-
tags?:
|
|
445
|
+
tags?: Tags15;
|
|
446
446
|
/**
|
|
447
447
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
448
448
|
*/
|
|
@@ -501,7 +501,7 @@ declare interface BubbleChart {
|
|
|
501
501
|
* Type of visualisation.
|
|
502
502
|
*/
|
|
503
503
|
type: "bubble_chart";
|
|
504
|
-
id:
|
|
504
|
+
id: Id27;
|
|
505
505
|
/**
|
|
506
506
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
507
507
|
*/
|
|
@@ -510,7 +510,7 @@ declare interface BubbleChart {
|
|
|
510
510
|
* An optional description of the visualisation.
|
|
511
511
|
*/
|
|
512
512
|
description?: string;
|
|
513
|
-
tags?:
|
|
513
|
+
tags?: Tags20;
|
|
514
514
|
/**
|
|
515
515
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
516
516
|
*/
|
|
@@ -567,7 +567,7 @@ declare interface BulletChart {
|
|
|
567
567
|
* Type of visualisation.
|
|
568
568
|
*/
|
|
569
569
|
type: "bullet_chart";
|
|
570
|
-
id:
|
|
570
|
+
id: Id34;
|
|
571
571
|
/**
|
|
572
572
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
573
573
|
*/
|
|
@@ -576,7 +576,7 @@ declare interface BulletChart {
|
|
|
576
576
|
* An optional description of the visualisation.
|
|
577
577
|
*/
|
|
578
578
|
description?: string;
|
|
579
|
-
tags?:
|
|
579
|
+
tags?: Tags27;
|
|
580
580
|
/**
|
|
581
581
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
582
582
|
*/
|
|
@@ -676,7 +676,7 @@ declare interface ColumnChart {
|
|
|
676
676
|
* Type of visualisation.
|
|
677
677
|
*/
|
|
678
678
|
type: "column_chart";
|
|
679
|
-
id:
|
|
679
|
+
id: Id23;
|
|
680
680
|
/**
|
|
681
681
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
682
682
|
*/
|
|
@@ -685,7 +685,7 @@ declare interface ColumnChart {
|
|
|
685
685
|
* An optional description of the visualisation.
|
|
686
686
|
*/
|
|
687
687
|
description?: string;
|
|
688
|
-
tags?:
|
|
688
|
+
tags?: Tags16;
|
|
689
689
|
/**
|
|
690
690
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
691
691
|
*/
|
|
@@ -720,7 +720,7 @@ declare interface ComboChart {
|
|
|
720
720
|
* Type of visualisation.
|
|
721
721
|
*/
|
|
722
722
|
type: "combo_chart";
|
|
723
|
-
id:
|
|
723
|
+
id: Id39;
|
|
724
724
|
/**
|
|
725
725
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
726
726
|
*/
|
|
@@ -729,7 +729,7 @@ declare interface ComboChart {
|
|
|
729
729
|
* An optional description of the visualisation.
|
|
730
730
|
*/
|
|
731
731
|
description?: string;
|
|
732
|
-
tags?:
|
|
732
|
+
tags?: Tags32;
|
|
733
733
|
/**
|
|
734
734
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
735
735
|
*/
|
|
@@ -829,8 +829,30 @@ declare type CompositePrimaryKey1 = Id3[];
|
|
|
829
829
|
*/
|
|
830
830
|
declare type CompositePrimaryKey2 = Id5[];
|
|
831
831
|
|
|
832
|
+
declare interface ComputedAttribute {
|
|
833
|
+
id: Id8;
|
|
834
|
+
type: "computed_attribute";
|
|
835
|
+
/**
|
|
836
|
+
* An optional human readable title for the computed attribute. Will be derived from id if not provided explicitly.
|
|
837
|
+
*/
|
|
838
|
+
title?: string;
|
|
839
|
+
/**
|
|
840
|
+
* An optional description of the computed attribute.
|
|
841
|
+
*/
|
|
842
|
+
description?: string;
|
|
843
|
+
tags?: Tags9;
|
|
844
|
+
/**
|
|
845
|
+
* Define MAQL syntax for the computed attribute. Values are assigned with break points written as CASE WHEN branches over a metric, and the first matching branch wins.
|
|
846
|
+
*/
|
|
847
|
+
maql: string;
|
|
848
|
+
/**
|
|
849
|
+
* An optional locale whose collation order the computed values are sorted by.
|
|
850
|
+
*/
|
|
851
|
+
locale?: string;
|
|
852
|
+
}
|
|
853
|
+
|
|
832
854
|
declare interface ContainerWidget {
|
|
833
|
-
container:
|
|
855
|
+
container: Id14;
|
|
834
856
|
/**
|
|
835
857
|
* 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.
|
|
836
858
|
*/
|
|
@@ -867,7 +889,7 @@ declare interface ContainerWidget {
|
|
|
867
889
|
}
|
|
868
890
|
|
|
869
891
|
declare interface Dashboard {
|
|
870
|
-
id:
|
|
892
|
+
id: Id9;
|
|
871
893
|
type: "dashboard";
|
|
872
894
|
/**
|
|
873
895
|
* Dashboard model version. "2" (default if omitted) — legacy shape: root-level sections/filters are also mirrored into a default tab, producing a declarative model with duplicated content for backward compatibility with older SDK readers. "3" — clean shape: tabs are the sole source of layout and filters; root sections/filters in YAML are still allowed as an authoring shortcut but are wrapped into a single synthetic tab without duplication. Use "3" for new dashboards; "2" exists to keep existing files round-trippable.
|
|
@@ -881,7 +903,7 @@ declare interface Dashboard {
|
|
|
881
903
|
* An optional description of the dashboard.
|
|
882
904
|
*/
|
|
883
905
|
description?: string;
|
|
884
|
-
tags?:
|
|
906
|
+
tags?: Tags10;
|
|
885
907
|
/**
|
|
886
908
|
* Whether cross filtering is enabled for this dashboard. Defaults to true.
|
|
887
909
|
*/
|
|
@@ -916,14 +938,14 @@ declare interface Dashboard {
|
|
|
916
938
|
* A list of plugins in this dashboard.
|
|
917
939
|
*/
|
|
918
940
|
plugins?: ({
|
|
919
|
-
id:
|
|
941
|
+
id: Id15;
|
|
920
942
|
/**
|
|
921
943
|
* Parameter that will be passed to the plugin. Everything other than string will be serialized to JSON automatically.
|
|
922
944
|
*/
|
|
923
945
|
parameters?: {
|
|
924
946
|
[k: string]: unknown;
|
|
925
947
|
};
|
|
926
|
-
} |
|
|
948
|
+
} | Id16)[];
|
|
927
949
|
/**
|
|
928
950
|
* 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.
|
|
929
951
|
*/
|
|
@@ -1231,7 +1253,7 @@ declare interface DependencyWheelChart {
|
|
|
1231
1253
|
* Type of visualisation.
|
|
1232
1254
|
*/
|
|
1233
1255
|
type: "dependency_wheel_chart";
|
|
1234
|
-
id:
|
|
1256
|
+
id: Id36;
|
|
1235
1257
|
/**
|
|
1236
1258
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
1237
1259
|
*/
|
|
@@ -1240,7 +1262,7 @@ declare interface DependencyWheelChart {
|
|
|
1240
1262
|
* An optional description of the visualisation.
|
|
1241
1263
|
*/
|
|
1242
1264
|
description?: string;
|
|
1243
|
-
tags?:
|
|
1265
|
+
tags?: Tags29;
|
|
1244
1266
|
/**
|
|
1245
1267
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
1246
1268
|
*/
|
|
@@ -1461,7 +1483,7 @@ declare interface FunnelChart {
|
|
|
1461
1483
|
* Type of visualisation.
|
|
1462
1484
|
*/
|
|
1463
1485
|
type: "funnel_chart";
|
|
1464
|
-
id:
|
|
1486
|
+
id: Id32;
|
|
1465
1487
|
/**
|
|
1466
1488
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
1467
1489
|
*/
|
|
@@ -1470,7 +1492,7 @@ declare interface FunnelChart {
|
|
|
1470
1492
|
* An optional description of the visualisation.
|
|
1471
1493
|
*/
|
|
1472
1494
|
description?: string;
|
|
1473
|
-
tags?:
|
|
1495
|
+
tags?: Tags25;
|
|
1474
1496
|
/**
|
|
1475
1497
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
1476
1498
|
*/
|
|
@@ -1503,7 +1525,7 @@ declare interface GeoAreaChart {
|
|
|
1503
1525
|
* Type of visualisation.
|
|
1504
1526
|
*/
|
|
1505
1527
|
type: "geo_area_chart";
|
|
1506
|
-
id:
|
|
1528
|
+
id: Id42;
|
|
1507
1529
|
/**
|
|
1508
1530
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
1509
1531
|
*/
|
|
@@ -1512,7 +1534,7 @@ declare interface GeoAreaChart {
|
|
|
1512
1534
|
* An optional description of the visualisation.
|
|
1513
1535
|
*/
|
|
1514
1536
|
description?: string;
|
|
1515
|
-
tags?:
|
|
1537
|
+
tags?: Tags34;
|
|
1516
1538
|
/**
|
|
1517
1539
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
1518
1540
|
*/
|
|
@@ -1559,7 +1581,7 @@ declare interface GeoChart {
|
|
|
1559
1581
|
* Type of visualisation.
|
|
1560
1582
|
*/
|
|
1561
1583
|
type: "geo_chart";
|
|
1562
|
-
id:
|
|
1584
|
+
id: Id40;
|
|
1563
1585
|
/**
|
|
1564
1586
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
1565
1587
|
*/
|
|
@@ -1568,7 +1590,7 @@ declare interface GeoChart {
|
|
|
1568
1590
|
* An optional description of the visualisation.
|
|
1569
1591
|
*/
|
|
1570
1592
|
description?: string;
|
|
1571
|
-
tags?:
|
|
1593
|
+
tags?: Tags33;
|
|
1572
1594
|
/**
|
|
1573
1595
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
1574
1596
|
*/
|
|
@@ -1603,7 +1625,7 @@ declare interface HeadlineChart {
|
|
|
1603
1625
|
* Type of visualisation.
|
|
1604
1626
|
*/
|
|
1605
1627
|
type: "headline_chart";
|
|
1606
|
-
id:
|
|
1628
|
+
id: Id38;
|
|
1607
1629
|
/**
|
|
1608
1630
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
1609
1631
|
*/
|
|
@@ -1612,7 +1634,7 @@ declare interface HeadlineChart {
|
|
|
1612
1634
|
* An optional description of the visualisation.
|
|
1613
1635
|
*/
|
|
1614
1636
|
description?: string;
|
|
1615
|
-
tags?:
|
|
1637
|
+
tags?: Tags31;
|
|
1616
1638
|
/**
|
|
1617
1639
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
1618
1640
|
*/
|
|
@@ -1643,7 +1665,7 @@ declare interface HeatmapChart {
|
|
|
1643
1665
|
* Type of visualisation.
|
|
1644
1666
|
*/
|
|
1645
1667
|
type: "heatmap_chart";
|
|
1646
|
-
id:
|
|
1668
|
+
id: Id33;
|
|
1647
1669
|
/**
|
|
1648
1670
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
1649
1671
|
*/
|
|
@@ -1652,7 +1674,7 @@ declare interface HeatmapChart {
|
|
|
1652
1674
|
* An optional description of the visualisation.
|
|
1653
1675
|
*/
|
|
1654
1676
|
description?: string;
|
|
1655
|
-
tags?:
|
|
1677
|
+
tags?: Tags26;
|
|
1656
1678
|
/**
|
|
1657
1679
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
1658
1680
|
*/
|
|
@@ -1694,12 +1716,12 @@ declare type Id = string;
|
|
|
1694
1716
|
declare type Id1 = string;
|
|
1695
1717
|
|
|
1696
1718
|
/**
|
|
1697
|
-
*
|
|
1719
|
+
* A unique identifier of the widget.
|
|
1698
1720
|
*/
|
|
1699
1721
|
declare type Id10 = string;
|
|
1700
1722
|
|
|
1701
1723
|
/**
|
|
1702
|
-
*
|
|
1724
|
+
* An id of the date dataset to be used for date filtering in this widget
|
|
1703
1725
|
*/
|
|
1704
1726
|
declare type Id11 = string;
|
|
1705
1727
|
|
|
@@ -1714,7 +1736,7 @@ declare type Id12 = string;
|
|
|
1714
1736
|
declare type Id13 = string;
|
|
1715
1737
|
|
|
1716
1738
|
/**
|
|
1717
|
-
*
|
|
1739
|
+
* A unique identifier of the widget.
|
|
1718
1740
|
*/
|
|
1719
1741
|
declare type Id14 = string;
|
|
1720
1742
|
|
|
@@ -1724,22 +1746,22 @@ declare type Id14 = string;
|
|
|
1724
1746
|
declare type Id15 = string;
|
|
1725
1747
|
|
|
1726
1748
|
/**
|
|
1727
|
-
*
|
|
1749
|
+
* An unique identifier of the plugin.
|
|
1728
1750
|
*/
|
|
1729
1751
|
declare type Id16 = string;
|
|
1730
1752
|
|
|
1731
1753
|
/**
|
|
1732
|
-
* A unique identifier of the
|
|
1754
|
+
* A unique identifier of the tab.
|
|
1733
1755
|
*/
|
|
1734
1756
|
declare type Id17 = string;
|
|
1735
1757
|
|
|
1736
1758
|
/**
|
|
1737
|
-
* A unique identifier of the
|
|
1759
|
+
* A unique identifier of the plugin.
|
|
1738
1760
|
*/
|
|
1739
1761
|
declare type Id18 = string;
|
|
1740
1762
|
|
|
1741
1763
|
/**
|
|
1742
|
-
* A unique identifier of the
|
|
1764
|
+
* A unique identifier of the attribute hierarchy.
|
|
1743
1765
|
*/
|
|
1744
1766
|
declare type Id19 = string;
|
|
1745
1767
|
|
|
@@ -1749,7 +1771,7 @@ declare type Id19 = string;
|
|
|
1749
1771
|
declare type Id2 = string;
|
|
1750
1772
|
|
|
1751
1773
|
/**
|
|
1752
|
-
* A unique identifier of the
|
|
1774
|
+
* A unique identifier of the parameter.
|
|
1753
1775
|
*/
|
|
1754
1776
|
declare type Id20 = string;
|
|
1755
1777
|
|
|
@@ -1856,12 +1878,12 @@ declare type Id39 = string;
|
|
|
1856
1878
|
declare type Id4 = string;
|
|
1857
1879
|
|
|
1858
1880
|
/**
|
|
1859
|
-
* A unique identifier of the
|
|
1881
|
+
* A unique identifier of the visualisation.
|
|
1860
1882
|
*/
|
|
1861
1883
|
declare type Id40 = string;
|
|
1862
1884
|
|
|
1863
1885
|
/**
|
|
1864
|
-
* A unique identifier of the
|
|
1886
|
+
* A unique identifier of the visualization data layer.
|
|
1865
1887
|
*/
|
|
1866
1888
|
declare type Id41 = string;
|
|
1867
1889
|
|
|
@@ -1875,6 +1897,11 @@ declare type Id42 = string;
|
|
|
1875
1897
|
*/
|
|
1876
1898
|
declare type Id43 = string;
|
|
1877
1899
|
|
|
1900
|
+
/**
|
|
1901
|
+
* A unique identifier of the visualisation.
|
|
1902
|
+
*/
|
|
1903
|
+
declare type Id44 = string;
|
|
1904
|
+
|
|
1878
1905
|
declare type Id5 = string;
|
|
1879
1906
|
|
|
1880
1907
|
/**
|
|
@@ -1888,12 +1915,12 @@ declare type Id6 = string;
|
|
|
1888
1915
|
declare type Id7 = string;
|
|
1889
1916
|
|
|
1890
1917
|
/**
|
|
1891
|
-
* A unique identifier of the
|
|
1918
|
+
* A unique identifier of the computed attribute. Must not collide with the identifier of an attribute or a label.
|
|
1892
1919
|
*/
|
|
1893
1920
|
declare type Id8 = string;
|
|
1894
1921
|
|
|
1895
1922
|
/**
|
|
1896
|
-
* A unique identifier of the
|
|
1923
|
+
* A unique identifier of the dashboard.
|
|
1897
1924
|
*/
|
|
1898
1925
|
declare type Id9 = string;
|
|
1899
1926
|
|
|
@@ -2277,7 +2304,7 @@ declare interface LineChart {
|
|
|
2277
2304
|
* Type of visualisation.
|
|
2278
2305
|
*/
|
|
2279
2306
|
type: "line_chart";
|
|
2280
|
-
id:
|
|
2307
|
+
id: Id24;
|
|
2281
2308
|
/**
|
|
2282
2309
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
2283
2310
|
*/
|
|
@@ -2286,7 +2313,7 @@ declare interface LineChart {
|
|
|
2286
2313
|
* An optional description of the visualisation.
|
|
2287
2314
|
*/
|
|
2288
2315
|
description?: string;
|
|
2289
|
-
tags?:
|
|
2316
|
+
tags?: Tags17;
|
|
2290
2317
|
/**
|
|
2291
2318
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
2292
2319
|
*/
|
|
@@ -2415,12 +2442,12 @@ declare type LocationBucket = string;
|
|
|
2415
2442
|
declare type Metadata = Metadata1 & Metadata2;
|
|
2416
2443
|
|
|
2417
2444
|
declare interface Metadata1 {
|
|
2418
|
-
type: "dataset" | "date" | "metric" | "dashboard" | "plugin" | "table" | "bar_chart" | "column_chart" | "line_chart" | "area_chart" | "scatter_chart" | "bubble_chart" | "pie_chart" | "donut_chart" | "treemap_chart" | "pyramid_chart" | "funnel_chart" | "heatmap_chart" | "bullet_chart" | "waterfall_chart" | "dependency_wheel_chart" | "sankey_chart" | "headline_chart" | "combo_chart" | "geo_chart" | "geo_area_chart" | "repeater_chart" | "radar_chart" | "attribute_hierarchy" | "parameter";
|
|
2445
|
+
type: "dataset" | "date" | "metric" | "computed_attribute" | "dashboard" | "plugin" | "table" | "bar_chart" | "column_chart" | "line_chart" | "area_chart" | "scatter_chart" | "bubble_chart" | "pie_chart" | "donut_chart" | "treemap_chart" | "pyramid_chart" | "funnel_chart" | "heatmap_chart" | "bullet_chart" | "waterfall_chart" | "dependency_wheel_chart" | "sankey_chart" | "headline_chart" | "combo_chart" | "geo_chart" | "geo_area_chart" | "repeater_chart" | "radar_chart" | "attribute_hierarchy" | "parameter";
|
|
2419
2446
|
[k: string]: unknown;
|
|
2420
2447
|
}
|
|
2421
2448
|
|
|
2422
2449
|
declare interface Metadata10 {
|
|
2423
|
-
type: "dataset" | "date" | "metric" | "dashboard" | "plugin" | "table" | "bar_chart" | "column_chart" | "line_chart" | "area_chart" | "scatter_chart" | "bubble_chart" | "pie_chart" | "donut_chart" | "treemap_chart" | "pyramid_chart" | "funnel_chart" | "heatmap_chart" | "bullet_chart" | "waterfall_chart" | "dependency_wheel_chart" | "sankey_chart" | "headline_chart" | "combo_chart" | "geo_chart" | "geo_area_chart" | "repeater_chart" | "radar_chart" | "attribute_hierarchy" | "parameter";
|
|
2450
|
+
type: "dataset" | "date" | "metric" | "computed_attribute" | "dashboard" | "plugin" | "table" | "bar_chart" | "column_chart" | "line_chart" | "area_chart" | "scatter_chart" | "bubble_chart" | "pie_chart" | "donut_chart" | "treemap_chart" | "pyramid_chart" | "funnel_chart" | "heatmap_chart" | "bullet_chart" | "waterfall_chart" | "dependency_wheel_chart" | "sankey_chart" | "headline_chart" | "combo_chart" | "geo_chart" | "geo_area_chart" | "repeater_chart" | "radar_chart" | "attribute_hierarchy" | "parameter";
|
|
2424
2451
|
[k: string]: unknown;
|
|
2425
2452
|
}
|
|
2426
2453
|
|
|
@@ -2432,11 +2459,11 @@ declare type Metadata11 = Metric;
|
|
|
2432
2459
|
declare type Metadata12 = Metadata13 & Metadata14;
|
|
2433
2460
|
|
|
2434
2461
|
declare interface Metadata13 {
|
|
2435
|
-
type: "dataset" | "date" | "metric" | "dashboard" | "plugin" | "table" | "bar_chart" | "column_chart" | "line_chart" | "area_chart" | "scatter_chart" | "bubble_chart" | "pie_chart" | "donut_chart" | "treemap_chart" | "pyramid_chart" | "funnel_chart" | "heatmap_chart" | "bullet_chart" | "waterfall_chart" | "dependency_wheel_chart" | "sankey_chart" | "headline_chart" | "combo_chart" | "geo_chart" | "geo_area_chart" | "repeater_chart" | "radar_chart" | "attribute_hierarchy" | "parameter";
|
|
2462
|
+
type: "dataset" | "date" | "metric" | "computed_attribute" | "dashboard" | "plugin" | "table" | "bar_chart" | "column_chart" | "line_chart" | "area_chart" | "scatter_chart" | "bubble_chart" | "pie_chart" | "donut_chart" | "treemap_chart" | "pyramid_chart" | "funnel_chart" | "heatmap_chart" | "bullet_chart" | "waterfall_chart" | "dependency_wheel_chart" | "sankey_chart" | "headline_chart" | "combo_chart" | "geo_chart" | "geo_area_chart" | "repeater_chart" | "radar_chart" | "attribute_hierarchy" | "parameter";
|
|
2436
2463
|
[k: string]: unknown;
|
|
2437
2464
|
}
|
|
2438
2465
|
|
|
2439
|
-
declare type Metadata14 =
|
|
2466
|
+
declare type Metadata14 = ComputedAttribute;
|
|
2440
2467
|
|
|
2441
2468
|
/**
|
|
2442
2469
|
* JSON schema for Gooddata Analytics
|
|
@@ -2444,11 +2471,11 @@ declare type Metadata14 = Dashboard;
|
|
|
2444
2471
|
declare type Metadata15 = Metadata16 & Metadata17;
|
|
2445
2472
|
|
|
2446
2473
|
declare interface Metadata16 {
|
|
2447
|
-
type: "dataset" | "date" | "metric" | "dashboard" | "plugin" | "table" | "bar_chart" | "column_chart" | "line_chart" | "area_chart" | "scatter_chart" | "bubble_chart" | "pie_chart" | "donut_chart" | "treemap_chart" | "pyramid_chart" | "funnel_chart" | "heatmap_chart" | "bullet_chart" | "waterfall_chart" | "dependency_wheel_chart" | "sankey_chart" | "headline_chart" | "combo_chart" | "geo_chart" | "geo_area_chart" | "repeater_chart" | "radar_chart" | "attribute_hierarchy" | "parameter";
|
|
2474
|
+
type: "dataset" | "date" | "metric" | "computed_attribute" | "dashboard" | "plugin" | "table" | "bar_chart" | "column_chart" | "line_chart" | "area_chart" | "scatter_chart" | "bubble_chart" | "pie_chart" | "donut_chart" | "treemap_chart" | "pyramid_chart" | "funnel_chart" | "heatmap_chart" | "bullet_chart" | "waterfall_chart" | "dependency_wheel_chart" | "sankey_chart" | "headline_chart" | "combo_chart" | "geo_chart" | "geo_area_chart" | "repeater_chart" | "radar_chart" | "attribute_hierarchy" | "parameter";
|
|
2448
2475
|
[k: string]: unknown;
|
|
2449
2476
|
}
|
|
2450
2477
|
|
|
2451
|
-
declare type Metadata17 =
|
|
2478
|
+
declare type Metadata17 = Dashboard;
|
|
2452
2479
|
|
|
2453
2480
|
/**
|
|
2454
2481
|
* JSON schema for Gooddata Analytics
|
|
@@ -2456,13 +2483,13 @@ declare type Metadata17 = Plugin_2;
|
|
|
2456
2483
|
declare type Metadata18 = Metadata19 & Metadata20;
|
|
2457
2484
|
|
|
2458
2485
|
declare interface Metadata19 {
|
|
2459
|
-
type: "dataset" | "date" | "metric" | "dashboard" | "plugin" | "table" | "bar_chart" | "column_chart" | "line_chart" | "area_chart" | "scatter_chart" | "bubble_chart" | "pie_chart" | "donut_chart" | "treemap_chart" | "pyramid_chart" | "funnel_chart" | "heatmap_chart" | "bullet_chart" | "waterfall_chart" | "dependency_wheel_chart" | "sankey_chart" | "headline_chart" | "combo_chart" | "geo_chart" | "geo_area_chart" | "repeater_chart" | "radar_chart" | "attribute_hierarchy" | "parameter";
|
|
2486
|
+
type: "dataset" | "date" | "metric" | "computed_attribute" | "dashboard" | "plugin" | "table" | "bar_chart" | "column_chart" | "line_chart" | "area_chart" | "scatter_chart" | "bubble_chart" | "pie_chart" | "donut_chart" | "treemap_chart" | "pyramid_chart" | "funnel_chart" | "heatmap_chart" | "bullet_chart" | "waterfall_chart" | "dependency_wheel_chart" | "sankey_chart" | "headline_chart" | "combo_chart" | "geo_chart" | "geo_area_chart" | "repeater_chart" | "radar_chart" | "attribute_hierarchy" | "parameter";
|
|
2460
2487
|
[k: string]: unknown;
|
|
2461
2488
|
}
|
|
2462
2489
|
|
|
2463
|
-
declare type Metadata2 = Metadata3 | Metadata6 | Metadata9 | Metadata12 | Metadata15 | Metadata18 | Metadata21 | Metadata24 | Metadata27;
|
|
2490
|
+
declare type Metadata2 = Metadata3 | Metadata6 | Metadata9 | Metadata12 | Metadata15 | Metadata18 | Metadata21 | Metadata24 | Metadata27 | Metadata30;
|
|
2464
2491
|
|
|
2465
|
-
declare type Metadata20 =
|
|
2492
|
+
declare type Metadata20 = Plugin_2;
|
|
2466
2493
|
|
|
2467
2494
|
/**
|
|
2468
2495
|
* JSON schema for Gooddata Analytics
|
|
@@ -2470,11 +2497,11 @@ declare type Metadata20 = AttributeHierarchy;
|
|
|
2470
2497
|
declare type Metadata21 = Metadata22 & Metadata23;
|
|
2471
2498
|
|
|
2472
2499
|
declare interface Metadata22 {
|
|
2473
|
-
type: "dataset" | "date" | "metric" | "dashboard" | "plugin" | "table" | "bar_chart" | "column_chart" | "line_chart" | "area_chart" | "scatter_chart" | "bubble_chart" | "pie_chart" | "donut_chart" | "treemap_chart" | "pyramid_chart" | "funnel_chart" | "heatmap_chart" | "bullet_chart" | "waterfall_chart" | "dependency_wheel_chart" | "sankey_chart" | "headline_chart" | "combo_chart" | "geo_chart" | "geo_area_chart" | "repeater_chart" | "radar_chart" | "attribute_hierarchy" | "parameter";
|
|
2500
|
+
type: "dataset" | "date" | "metric" | "computed_attribute" | "dashboard" | "plugin" | "table" | "bar_chart" | "column_chart" | "line_chart" | "area_chart" | "scatter_chart" | "bubble_chart" | "pie_chart" | "donut_chart" | "treemap_chart" | "pyramid_chart" | "funnel_chart" | "heatmap_chart" | "bullet_chart" | "waterfall_chart" | "dependency_wheel_chart" | "sankey_chart" | "headline_chart" | "combo_chart" | "geo_chart" | "geo_area_chart" | "repeater_chart" | "radar_chart" | "attribute_hierarchy" | "parameter";
|
|
2474
2501
|
[k: string]: unknown;
|
|
2475
2502
|
}
|
|
2476
2503
|
|
|
2477
|
-
declare type Metadata23 =
|
|
2504
|
+
declare type Metadata23 = AttributeHierarchy;
|
|
2478
2505
|
|
|
2479
2506
|
/**
|
|
2480
2507
|
* JSON schema for Gooddata Analytics
|
|
@@ -2482,11 +2509,11 @@ declare type Metadata23 = Parameter;
|
|
|
2482
2509
|
declare type Metadata24 = Metadata25 & Metadata26;
|
|
2483
2510
|
|
|
2484
2511
|
declare interface Metadata25 {
|
|
2485
|
-
type: "dataset" | "date" | "metric" | "dashboard" | "plugin" | "table" | "bar_chart" | "column_chart" | "line_chart" | "area_chart" | "scatter_chart" | "bubble_chart" | "pie_chart" | "donut_chart" | "treemap_chart" | "pyramid_chart" | "funnel_chart" | "heatmap_chart" | "bullet_chart" | "waterfall_chart" | "dependency_wheel_chart" | "sankey_chart" | "headline_chart" | "combo_chart" | "geo_chart" | "geo_area_chart" | "repeater_chart" | "radar_chart" | "attribute_hierarchy" | "parameter";
|
|
2512
|
+
type: "dataset" | "date" | "metric" | "computed_attribute" | "dashboard" | "plugin" | "table" | "bar_chart" | "column_chart" | "line_chart" | "area_chart" | "scatter_chart" | "bubble_chart" | "pie_chart" | "donut_chart" | "treemap_chart" | "pyramid_chart" | "funnel_chart" | "heatmap_chart" | "bullet_chart" | "waterfall_chart" | "dependency_wheel_chart" | "sankey_chart" | "headline_chart" | "combo_chart" | "geo_chart" | "geo_area_chart" | "repeater_chart" | "radar_chart" | "attribute_hierarchy" | "parameter";
|
|
2486
2513
|
[k: string]: unknown;
|
|
2487
2514
|
}
|
|
2488
2515
|
|
|
2489
|
-
declare type Metadata26 =
|
|
2516
|
+
declare type Metadata26 = Parameter;
|
|
2490
2517
|
|
|
2491
2518
|
/**
|
|
2492
2519
|
* JSON schema for Gooddata Analytics
|
|
@@ -2494,21 +2521,33 @@ declare type Metadata26 = Visualisation;
|
|
|
2494
2521
|
declare type Metadata27 = Metadata28 & Metadata29;
|
|
2495
2522
|
|
|
2496
2523
|
declare interface Metadata28 {
|
|
2497
|
-
type: "dataset" | "date" | "metric" | "dashboard" | "plugin" | "table" | "bar_chart" | "column_chart" | "line_chart" | "area_chart" | "scatter_chart" | "bubble_chart" | "pie_chart" | "donut_chart" | "treemap_chart" | "pyramid_chart" | "funnel_chart" | "heatmap_chart" | "bullet_chart" | "waterfall_chart" | "dependency_wheel_chart" | "sankey_chart" | "headline_chart" | "combo_chart" | "geo_chart" | "geo_area_chart" | "repeater_chart" | "radar_chart" | "attribute_hierarchy" | "parameter";
|
|
2524
|
+
type: "dataset" | "date" | "metric" | "computed_attribute" | "dashboard" | "plugin" | "table" | "bar_chart" | "column_chart" | "line_chart" | "area_chart" | "scatter_chart" | "bubble_chart" | "pie_chart" | "donut_chart" | "treemap_chart" | "pyramid_chart" | "funnel_chart" | "heatmap_chart" | "bullet_chart" | "waterfall_chart" | "dependency_wheel_chart" | "sankey_chart" | "headline_chart" | "combo_chart" | "geo_chart" | "geo_area_chart" | "repeater_chart" | "radar_chart" | "attribute_hierarchy" | "parameter";
|
|
2498
2525
|
[k: string]: unknown;
|
|
2499
2526
|
}
|
|
2500
2527
|
|
|
2501
|
-
declare type Metadata29 =
|
|
2502
|
-
[k: string]: unknown;
|
|
2503
|
-
};
|
|
2528
|
+
declare type Metadata29 = Visualisation;
|
|
2504
2529
|
|
|
2505
2530
|
/**
|
|
2506
2531
|
* JSON schema for Gooddata Analytics
|
|
2507
2532
|
*/
|
|
2508
2533
|
declare type Metadata3 = Metadata4 & Metadata5;
|
|
2509
2534
|
|
|
2535
|
+
/**
|
|
2536
|
+
* JSON schema for Gooddata Analytics
|
|
2537
|
+
*/
|
|
2538
|
+
declare type Metadata30 = Metadata31 & Metadata32;
|
|
2539
|
+
|
|
2540
|
+
declare interface Metadata31 {
|
|
2541
|
+
type: "dataset" | "date" | "metric" | "computed_attribute" | "dashboard" | "plugin" | "table" | "bar_chart" | "column_chart" | "line_chart" | "area_chart" | "scatter_chart" | "bubble_chart" | "pie_chart" | "donut_chart" | "treemap_chart" | "pyramid_chart" | "funnel_chart" | "heatmap_chart" | "bullet_chart" | "waterfall_chart" | "dependency_wheel_chart" | "sankey_chart" | "headline_chart" | "combo_chart" | "geo_chart" | "geo_area_chart" | "repeater_chart" | "radar_chart" | "attribute_hierarchy" | "parameter";
|
|
2542
|
+
[k: string]: unknown;
|
|
2543
|
+
}
|
|
2544
|
+
|
|
2545
|
+
declare type Metadata32 = {
|
|
2546
|
+
[k: string]: unknown;
|
|
2547
|
+
};
|
|
2548
|
+
|
|
2510
2549
|
declare interface Metadata4 {
|
|
2511
|
-
type: "dataset" | "date" | "metric" | "dashboard" | "plugin" | "table" | "bar_chart" | "column_chart" | "line_chart" | "area_chart" | "scatter_chart" | "bubble_chart" | "pie_chart" | "donut_chart" | "treemap_chart" | "pyramid_chart" | "funnel_chart" | "heatmap_chart" | "bullet_chart" | "waterfall_chart" | "dependency_wheel_chart" | "sankey_chart" | "headline_chart" | "combo_chart" | "geo_chart" | "geo_area_chart" | "repeater_chart" | "radar_chart" | "attribute_hierarchy" | "parameter";
|
|
2550
|
+
type: "dataset" | "date" | "metric" | "computed_attribute" | "dashboard" | "plugin" | "table" | "bar_chart" | "column_chart" | "line_chart" | "area_chart" | "scatter_chart" | "bubble_chart" | "pie_chart" | "donut_chart" | "treemap_chart" | "pyramid_chart" | "funnel_chart" | "heatmap_chart" | "bullet_chart" | "waterfall_chart" | "dependency_wheel_chart" | "sankey_chart" | "headline_chart" | "combo_chart" | "geo_chart" | "geo_area_chart" | "repeater_chart" | "radar_chart" | "attribute_hierarchy" | "parameter";
|
|
2512
2551
|
[k: string]: unknown;
|
|
2513
2552
|
}
|
|
2514
2553
|
|
|
@@ -2520,7 +2559,7 @@ declare type Metadata5 = Dataset;
|
|
|
2520
2559
|
declare type Metadata6 = Metadata7 & Metadata8;
|
|
2521
2560
|
|
|
2522
2561
|
declare interface Metadata7 {
|
|
2523
|
-
type: "dataset" | "date" | "metric" | "dashboard" | "plugin" | "table" | "bar_chart" | "column_chart" | "line_chart" | "area_chart" | "scatter_chart" | "bubble_chart" | "pie_chart" | "donut_chart" | "treemap_chart" | "pyramid_chart" | "funnel_chart" | "heatmap_chart" | "bullet_chart" | "waterfall_chart" | "dependency_wheel_chart" | "sankey_chart" | "headline_chart" | "combo_chart" | "geo_chart" | "geo_area_chart" | "repeater_chart" | "radar_chart" | "attribute_hierarchy" | "parameter";
|
|
2562
|
+
type: "dataset" | "date" | "metric" | "computed_attribute" | "dashboard" | "plugin" | "table" | "bar_chart" | "column_chart" | "line_chart" | "area_chart" | "scatter_chart" | "bubble_chart" | "pie_chart" | "donut_chart" | "treemap_chart" | "pyramid_chart" | "funnel_chart" | "heatmap_chart" | "bullet_chart" | "waterfall_chart" | "dependency_wheel_chart" | "sankey_chart" | "headline_chart" | "combo_chart" | "geo_chart" | "geo_area_chart" | "repeater_chart" | "radar_chart" | "attribute_hierarchy" | "parameter";
|
|
2524
2563
|
[k: string]: unknown;
|
|
2525
2564
|
}
|
|
2526
2565
|
|
|
@@ -2875,6 +2914,58 @@ export declare const metadata_v1: {
|
|
|
2875
2914
|
};
|
|
2876
2915
|
required: string[];
|
|
2877
2916
|
};
|
|
2917
|
+
computed_attribute: {
|
|
2918
|
+
title: string;
|
|
2919
|
+
type: string;
|
|
2920
|
+
additionalProperties: boolean;
|
|
2921
|
+
properties: {
|
|
2922
|
+
id: {
|
|
2923
|
+
$ref: string;
|
|
2924
|
+
description: string;
|
|
2925
|
+
$semantic: ({
|
|
2926
|
+
type: string;
|
|
2927
|
+
source: string;
|
|
2928
|
+
code: string;
|
|
2929
|
+
} | {
|
|
2930
|
+
code?: undefined;
|
|
2931
|
+
type: string;
|
|
2932
|
+
source: string;
|
|
2933
|
+
})[];
|
|
2934
|
+
};
|
|
2935
|
+
type: {
|
|
2936
|
+
type: string;
|
|
2937
|
+
enum: string[];
|
|
2938
|
+
};
|
|
2939
|
+
title: {
|
|
2940
|
+
$ref: string;
|
|
2941
|
+
description: string;
|
|
2942
|
+
};
|
|
2943
|
+
description: {
|
|
2944
|
+
$ref: string;
|
|
2945
|
+
description: string;
|
|
2946
|
+
};
|
|
2947
|
+
tags: {
|
|
2948
|
+
$ref: string;
|
|
2949
|
+
description: string;
|
|
2950
|
+
};
|
|
2951
|
+
maql: {
|
|
2952
|
+
type: string;
|
|
2953
|
+
description: string;
|
|
2954
|
+
$semantic: {
|
|
2955
|
+
type: string;
|
|
2956
|
+
};
|
|
2957
|
+
};
|
|
2958
|
+
locale: {
|
|
2959
|
+
type: string;
|
|
2960
|
+
description: string;
|
|
2961
|
+
};
|
|
2962
|
+
};
|
|
2963
|
+
$semantic: {
|
|
2964
|
+
type: string;
|
|
2965
|
+
snippets: string[];
|
|
2966
|
+
};
|
|
2967
|
+
required: string[];
|
|
2968
|
+
};
|
|
2878
2969
|
dashboard: {
|
|
2879
2970
|
title: string;
|
|
2880
2971
|
type: string;
|
|
@@ -7096,6 +7187,58 @@ export declare const metadata_v1: {
|
|
|
7096
7187
|
mode: string;
|
|
7097
7188
|
};
|
|
7098
7189
|
};
|
|
7190
|
+
computed_attribute: {
|
|
7191
|
+
title: string;
|
|
7192
|
+
type: string;
|
|
7193
|
+
additionalProperties: boolean;
|
|
7194
|
+
properties: {
|
|
7195
|
+
id: {
|
|
7196
|
+
$ref: string;
|
|
7197
|
+
description: string;
|
|
7198
|
+
$semantic: ({
|
|
7199
|
+
type: string;
|
|
7200
|
+
source: string;
|
|
7201
|
+
code: string;
|
|
7202
|
+
} | {
|
|
7203
|
+
code?: undefined;
|
|
7204
|
+
type: string;
|
|
7205
|
+
source: string;
|
|
7206
|
+
})[];
|
|
7207
|
+
};
|
|
7208
|
+
type: {
|
|
7209
|
+
type: string;
|
|
7210
|
+
enum: string[];
|
|
7211
|
+
};
|
|
7212
|
+
title: {
|
|
7213
|
+
$ref: string;
|
|
7214
|
+
description: string;
|
|
7215
|
+
};
|
|
7216
|
+
description: {
|
|
7217
|
+
$ref: string;
|
|
7218
|
+
description: string;
|
|
7219
|
+
};
|
|
7220
|
+
tags: {
|
|
7221
|
+
$ref: string;
|
|
7222
|
+
description: string;
|
|
7223
|
+
};
|
|
7224
|
+
maql: {
|
|
7225
|
+
type: string;
|
|
7226
|
+
description: string;
|
|
7227
|
+
$semantic: {
|
|
7228
|
+
type: string;
|
|
7229
|
+
};
|
|
7230
|
+
};
|
|
7231
|
+
locale: {
|
|
7232
|
+
type: string;
|
|
7233
|
+
description: string;
|
|
7234
|
+
};
|
|
7235
|
+
};
|
|
7236
|
+
$semantic: {
|
|
7237
|
+
type: string;
|
|
7238
|
+
snippets: string[];
|
|
7239
|
+
};
|
|
7240
|
+
required: string[];
|
|
7241
|
+
};
|
|
7099
7242
|
widthItem: {
|
|
7100
7243
|
title: string;
|
|
7101
7244
|
type: string;
|
|
@@ -10233,7 +10376,7 @@ declare interface NormalDataset {
|
|
|
10233
10376
|
}
|
|
10234
10377
|
|
|
10235
10378
|
declare interface Parameter {
|
|
10236
|
-
id:
|
|
10379
|
+
id: Id20;
|
|
10237
10380
|
type: "parameter";
|
|
10238
10381
|
/**
|
|
10239
10382
|
* An optional human readable title for the parameter. Will be derived from id if not provided explicitly.
|
|
@@ -10243,7 +10386,7 @@ declare interface Parameter {
|
|
|
10243
10386
|
* An optional description of the parameter.
|
|
10244
10387
|
*/
|
|
10245
10388
|
description?: string;
|
|
10246
|
-
tags?:
|
|
10389
|
+
tags?: Tags13;
|
|
10247
10390
|
definition: ParameterDefinition;
|
|
10248
10391
|
}
|
|
10249
10392
|
|
|
@@ -10283,7 +10426,7 @@ declare interface PieChart {
|
|
|
10283
10426
|
* Type of visualisation.
|
|
10284
10427
|
*/
|
|
10285
10428
|
type: "pie_chart";
|
|
10286
|
-
id:
|
|
10429
|
+
id: Id28;
|
|
10287
10430
|
/**
|
|
10288
10431
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10289
10432
|
*/
|
|
@@ -10292,7 +10435,7 @@ declare interface PieChart {
|
|
|
10292
10435
|
* An optional description of the visualisation.
|
|
10293
10436
|
*/
|
|
10294
10437
|
description?: string;
|
|
10295
|
-
tags?:
|
|
10438
|
+
tags?: Tags21;
|
|
10296
10439
|
/**
|
|
10297
10440
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10298
10441
|
*/
|
|
@@ -10323,7 +10466,7 @@ declare interface PieChart1 {
|
|
|
10323
10466
|
* Type of visualisation.
|
|
10324
10467
|
*/
|
|
10325
10468
|
type: "donut_chart";
|
|
10326
|
-
id:
|
|
10469
|
+
id: Id29;
|
|
10327
10470
|
/**
|
|
10328
10471
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10329
10472
|
*/
|
|
@@ -10332,7 +10475,7 @@ declare interface PieChart1 {
|
|
|
10332
10475
|
* An optional description of the visualisation.
|
|
10333
10476
|
*/
|
|
10334
10477
|
description?: string;
|
|
10335
|
-
tags?:
|
|
10478
|
+
tags?: Tags22;
|
|
10336
10479
|
/**
|
|
10337
10480
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10338
10481
|
*/
|
|
@@ -10359,7 +10502,7 @@ declare interface PieChart1 {
|
|
|
10359
10502
|
}
|
|
10360
10503
|
|
|
10361
10504
|
declare interface Plugin_2 {
|
|
10362
|
-
id:
|
|
10505
|
+
id: Id18;
|
|
10363
10506
|
type: "plugin";
|
|
10364
10507
|
/**
|
|
10365
10508
|
* An optional human readable title for the plugin. Will be derived from id if not provided explicitly.
|
|
@@ -10369,7 +10512,7 @@ declare interface Plugin_2 {
|
|
|
10369
10512
|
* An optional description of the plugin.
|
|
10370
10513
|
*/
|
|
10371
10514
|
description?: string;
|
|
10372
|
-
tags?:
|
|
10515
|
+
tags?: Tags11;
|
|
10373
10516
|
/**
|
|
10374
10517
|
* URL of the plugin.
|
|
10375
10518
|
*/
|
|
@@ -10494,7 +10637,7 @@ declare interface PyramidChart {
|
|
|
10494
10637
|
* Type of visualisation.
|
|
10495
10638
|
*/
|
|
10496
10639
|
type: "pyramid_chart";
|
|
10497
|
-
id:
|
|
10640
|
+
id: Id31;
|
|
10498
10641
|
/**
|
|
10499
10642
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10500
10643
|
*/
|
|
@@ -10503,7 +10646,7 @@ declare interface PyramidChart {
|
|
|
10503
10646
|
* An optional description of the visualisation.
|
|
10504
10647
|
*/
|
|
10505
10648
|
description?: string;
|
|
10506
|
-
tags?:
|
|
10649
|
+
tags?: Tags24;
|
|
10507
10650
|
/**
|
|
10508
10651
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10509
10652
|
*/
|
|
@@ -10762,7 +10905,7 @@ declare interface RadarChart {
|
|
|
10762
10905
|
* Type of visualisation.
|
|
10763
10906
|
*/
|
|
10764
10907
|
type: "radar_chart";
|
|
10765
|
-
id:
|
|
10908
|
+
id: Id44;
|
|
10766
10909
|
/**
|
|
10767
10910
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10768
10911
|
*/
|
|
@@ -10771,7 +10914,7 @@ declare interface RadarChart {
|
|
|
10771
10914
|
* An optional description of the visualisation.
|
|
10772
10915
|
*/
|
|
10773
10916
|
description?: string;
|
|
10774
|
-
tags?:
|
|
10917
|
+
tags?: Tags36;
|
|
10775
10918
|
/**
|
|
10776
10919
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10777
10920
|
*/
|
|
@@ -10863,7 +11006,7 @@ declare interface RepeaterChart {
|
|
|
10863
11006
|
* Type of visualisation.
|
|
10864
11007
|
*/
|
|
10865
11008
|
type: "repeater_chart";
|
|
10866
|
-
id:
|
|
11009
|
+
id: Id43;
|
|
10867
11010
|
/**
|
|
10868
11011
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10869
11012
|
*/
|
|
@@ -10872,7 +11015,7 @@ declare interface RepeaterChart {
|
|
|
10872
11015
|
* An optional description of the visualisation.
|
|
10873
11016
|
*/
|
|
10874
11017
|
description?: string;
|
|
10875
|
-
tags?:
|
|
11018
|
+
tags?: Tags35;
|
|
10876
11019
|
/**
|
|
10877
11020
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10878
11021
|
*/
|
|
@@ -10907,7 +11050,7 @@ declare interface RepeaterChart {
|
|
|
10907
11050
|
}
|
|
10908
11051
|
|
|
10909
11052
|
declare interface RichTextWidget {
|
|
10910
|
-
id?:
|
|
11053
|
+
id?: Id12;
|
|
10911
11054
|
/**
|
|
10912
11055
|
* A markdown content of the widget
|
|
10913
11056
|
*/
|
|
@@ -10927,7 +11070,7 @@ declare interface SankeyChart {
|
|
|
10927
11070
|
* Type of visualisation.
|
|
10928
11071
|
*/
|
|
10929
11072
|
type: "sankey_chart";
|
|
10930
|
-
id:
|
|
11073
|
+
id: Id37;
|
|
10931
11074
|
/**
|
|
10932
11075
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10933
11076
|
*/
|
|
@@ -10936,7 +11079,7 @@ declare interface SankeyChart {
|
|
|
10936
11079
|
* An optional description of the visualisation.
|
|
10937
11080
|
*/
|
|
10938
11081
|
description?: string;
|
|
10939
|
-
tags?:
|
|
11082
|
+
tags?: Tags30;
|
|
10940
11083
|
/**
|
|
10941
11084
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10942
11085
|
*/
|
|
@@ -10969,7 +11112,7 @@ declare interface ScatterChart {
|
|
|
10969
11112
|
* Type of visualisation.
|
|
10970
11113
|
*/
|
|
10971
11114
|
type: "scatter_chart";
|
|
10972
|
-
id:
|
|
11115
|
+
id: Id26;
|
|
10973
11116
|
/**
|
|
10974
11117
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10975
11118
|
*/
|
|
@@ -10978,7 +11121,7 @@ declare interface ScatterChart {
|
|
|
10978
11121
|
* An optional description of the visualisation.
|
|
10979
11122
|
*/
|
|
10980
11123
|
description?: string;
|
|
10981
|
-
tags?:
|
|
11124
|
+
tags?: Tags19;
|
|
10982
11125
|
/**
|
|
10983
11126
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10984
11127
|
*/
|
|
@@ -11146,7 +11289,7 @@ declare interface StringParameterDefinition {
|
|
|
11146
11289
|
declare type StructuredField = AttributeFieldGuard | MetricFieldGuard | CalculatedMetricFieldGuard | InlineMetricFieldGuard | ArithmeticMetricFieldGuard | PoPMetricFieldGuard | PreviousPeriodMetricFieldGuard;
|
|
11147
11290
|
|
|
11148
11291
|
declare interface Tab {
|
|
11149
|
-
id:
|
|
11292
|
+
id: Id17;
|
|
11150
11293
|
/**
|
|
11151
11294
|
* Display title for the tab.
|
|
11152
11295
|
*/
|
|
@@ -11163,7 +11306,7 @@ declare interface Table {
|
|
|
11163
11306
|
* Type of visualisation.
|
|
11164
11307
|
*/
|
|
11165
11308
|
type: "table";
|
|
11166
|
-
id:
|
|
11309
|
+
id: Id21;
|
|
11167
11310
|
/**
|
|
11168
11311
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
11169
11312
|
*/
|
|
@@ -11172,7 +11315,7 @@ declare interface Table {
|
|
|
11172
11315
|
* An optional description of the visualisation.
|
|
11173
11316
|
*/
|
|
11174
11317
|
description?: string;
|
|
11175
|
-
tags?:
|
|
11318
|
+
tags?: Tags14;
|
|
11176
11319
|
/**
|
|
11177
11320
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
11178
11321
|
*/
|
|
@@ -11214,22 +11357,22 @@ declare type Tags = string[];
|
|
|
11214
11357
|
declare type Tags1 = string[];
|
|
11215
11358
|
|
|
11216
11359
|
/**
|
|
11217
|
-
* A list of strings - metadata tags of this
|
|
11360
|
+
* A list of strings - metadata tags of this dashboard.
|
|
11218
11361
|
*/
|
|
11219
11362
|
declare type Tags10 = string[];
|
|
11220
11363
|
|
|
11221
11364
|
/**
|
|
11222
|
-
* A list of strings - metadata tags of this
|
|
11365
|
+
* A list of strings - metadata tags of this plugin.
|
|
11223
11366
|
*/
|
|
11224
11367
|
declare type Tags11 = string[];
|
|
11225
11368
|
|
|
11226
11369
|
/**
|
|
11227
|
-
* A list of strings - metadata tags of this
|
|
11370
|
+
* A list of strings - metadata tags of this attribute hierarchy.
|
|
11228
11371
|
*/
|
|
11229
11372
|
declare type Tags12 = string[];
|
|
11230
11373
|
|
|
11231
11374
|
/**
|
|
11232
|
-
* A list of strings - metadata tags of this
|
|
11375
|
+
* A list of strings - metadata tags of this parameter.
|
|
11233
11376
|
*/
|
|
11234
11377
|
declare type Tags13 = string[];
|
|
11235
11378
|
|
|
@@ -11350,6 +11493,11 @@ declare type Tags34 = string[];
|
|
|
11350
11493
|
*/
|
|
11351
11494
|
declare type Tags35 = string[];
|
|
11352
11495
|
|
|
11496
|
+
/**
|
|
11497
|
+
* A list of strings - metadata tags of this visualisation.
|
|
11498
|
+
*/
|
|
11499
|
+
declare type Tags36 = string[];
|
|
11500
|
+
|
|
11353
11501
|
declare type Tags4 = string[];
|
|
11354
11502
|
|
|
11355
11503
|
/**
|
|
@@ -11373,7 +11521,7 @@ declare type Tags7 = string[];
|
|
|
11373
11521
|
declare type Tags8 = string[];
|
|
11374
11522
|
|
|
11375
11523
|
/**
|
|
11376
|
-
* A list of strings - metadata tags of this
|
|
11524
|
+
* A list of strings - metadata tags of this computed attribute.
|
|
11377
11525
|
*/
|
|
11378
11526
|
declare type Tags9 = string[];
|
|
11379
11527
|
|
|
@@ -11473,7 +11621,7 @@ declare interface TreemapChart {
|
|
|
11473
11621
|
* Type of visualisation.
|
|
11474
11622
|
*/
|
|
11475
11623
|
type: "treemap_chart";
|
|
11476
|
-
id:
|
|
11624
|
+
id: Id30;
|
|
11477
11625
|
/**
|
|
11478
11626
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
11479
11627
|
*/
|
|
@@ -11482,7 +11630,7 @@ declare interface TreemapChart {
|
|
|
11482
11630
|
* An optional description of the visualisation.
|
|
11483
11631
|
*/
|
|
11484
11632
|
description?: string;
|
|
11485
|
-
tags?:
|
|
11633
|
+
tags?: Tags23;
|
|
11486
11634
|
/**
|
|
11487
11635
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
11488
11636
|
*/
|
|
@@ -11547,10 +11695,14 @@ export declare namespace v1 {
|
|
|
11547
11695
|
Metadata14,
|
|
11548
11696
|
Id8,
|
|
11549
11697
|
Tags9,
|
|
11698
|
+
Metadata15,
|
|
11699
|
+
Metadata17,
|
|
11700
|
+
Id9,
|
|
11701
|
+
Tags10,
|
|
11550
11702
|
Widget,
|
|
11551
11703
|
Widget1,
|
|
11552
|
-
Id9,
|
|
11553
11704
|
Id10,
|
|
11705
|
+
Id11,
|
|
11554
11706
|
Interaction,
|
|
11555
11707
|
Interaction1,
|
|
11556
11708
|
InteractionClickOn,
|
|
@@ -11570,11 +11722,11 @@ export declare namespace v1 {
|
|
|
11570
11722
|
IgnoredDrillDown2,
|
|
11571
11723
|
IgnoredDrillDown3,
|
|
11572
11724
|
Widget2,
|
|
11573
|
-
Id11,
|
|
11574
|
-
Widget3,
|
|
11575
11725
|
Id12,
|
|
11576
|
-
|
|
11726
|
+
Widget3,
|
|
11577
11727
|
Id13,
|
|
11728
|
+
Widget4,
|
|
11729
|
+
Id14,
|
|
11578
11730
|
DashboardAttributeFilter,
|
|
11579
11731
|
DashboardAttributeFilter1,
|
|
11580
11732
|
AttributeIdentifier2,
|
|
@@ -11593,30 +11745,30 @@ export declare namespace v1 {
|
|
|
11593
11745
|
AttributeIdentifier5,
|
|
11594
11746
|
LabelIdentifier5,
|
|
11595
11747
|
DisplayAsLabelIdentifier3,
|
|
11596
|
-
Id14,
|
|
11597
11748
|
Id15,
|
|
11598
11749
|
Id16,
|
|
11599
|
-
Metadata15,
|
|
11600
|
-
Metadata17,
|
|
11601
11750
|
Id17,
|
|
11602
|
-
Tags10,
|
|
11603
11751
|
Metadata18,
|
|
11604
11752
|
Metadata20,
|
|
11605
11753
|
Id18,
|
|
11606
11754
|
Tags11,
|
|
11607
|
-
AttributeIdentifier6,
|
|
11608
11755
|
Metadata21,
|
|
11609
11756
|
Metadata23,
|
|
11610
11757
|
Id19,
|
|
11611
11758
|
Tags12,
|
|
11612
|
-
|
|
11613
|
-
ParameterDefinition1,
|
|
11759
|
+
AttributeIdentifier6,
|
|
11614
11760
|
Metadata24,
|
|
11615
11761
|
Metadata26,
|
|
11616
|
-
Visualisation,
|
|
11617
|
-
Visualisation1,
|
|
11618
11762
|
Id20,
|
|
11619
11763
|
Tags13,
|
|
11764
|
+
ParameterDefinition,
|
|
11765
|
+
ParameterDefinition1,
|
|
11766
|
+
Metadata27,
|
|
11767
|
+
Metadata29,
|
|
11768
|
+
Visualisation,
|
|
11769
|
+
Visualisation1,
|
|
11770
|
+
Id21,
|
|
11771
|
+
Tags14,
|
|
11620
11772
|
Field,
|
|
11621
11773
|
AttributeIdentifier7,
|
|
11622
11774
|
Field1,
|
|
@@ -11698,83 +11850,83 @@ export declare namespace v1 {
|
|
|
11698
11850
|
Bucket,
|
|
11699
11851
|
SimpleBucket,
|
|
11700
11852
|
Visualisation2,
|
|
11701
|
-
Id21,
|
|
11702
|
-
Tags14,
|
|
11703
|
-
Visualisation3,
|
|
11704
11853
|
Id22,
|
|
11705
11854
|
Tags15,
|
|
11706
|
-
|
|
11855
|
+
Visualisation3,
|
|
11707
11856
|
Id23,
|
|
11708
11857
|
Tags16,
|
|
11709
|
-
|
|
11858
|
+
Visualisation4,
|
|
11710
11859
|
Id24,
|
|
11711
11860
|
Tags17,
|
|
11712
|
-
|
|
11861
|
+
Visualisation5,
|
|
11713
11862
|
Id25,
|
|
11714
11863
|
Tags18,
|
|
11715
|
-
|
|
11716
|
-
Visualisation7,
|
|
11864
|
+
Visualisation6,
|
|
11717
11865
|
Id26,
|
|
11718
11866
|
Tags19,
|
|
11719
|
-
|
|
11867
|
+
EmptyBucket,
|
|
11868
|
+
Visualisation7,
|
|
11720
11869
|
Id27,
|
|
11721
11870
|
Tags20,
|
|
11722
|
-
|
|
11871
|
+
Visualisation8,
|
|
11723
11872
|
Id28,
|
|
11724
11873
|
Tags21,
|
|
11725
|
-
|
|
11874
|
+
Visualisation9,
|
|
11726
11875
|
Id29,
|
|
11727
11876
|
Tags22,
|
|
11728
|
-
|
|
11877
|
+
Visualisation10,
|
|
11729
11878
|
Id30,
|
|
11730
11879
|
Tags23,
|
|
11731
|
-
|
|
11880
|
+
Visualisation11,
|
|
11732
11881
|
Id31,
|
|
11733
11882
|
Tags24,
|
|
11734
|
-
|
|
11883
|
+
Visualisation12,
|
|
11735
11884
|
Id32,
|
|
11736
11885
|
Tags25,
|
|
11737
|
-
|
|
11886
|
+
Visualisation13,
|
|
11738
11887
|
Id33,
|
|
11739
11888
|
Tags26,
|
|
11740
|
-
|
|
11889
|
+
Visualisation14,
|
|
11741
11890
|
Id34,
|
|
11742
11891
|
Tags27,
|
|
11743
|
-
|
|
11892
|
+
Visualisation15,
|
|
11744
11893
|
Id35,
|
|
11745
11894
|
Tags28,
|
|
11895
|
+
Visualisation16,
|
|
11896
|
+
Id36,
|
|
11897
|
+
Tags29,
|
|
11746
11898
|
Bucket1,
|
|
11747
11899
|
Bucket2,
|
|
11748
11900
|
Visualisation17,
|
|
11749
|
-
|
|
11750
|
-
|
|
11901
|
+
Id37,
|
|
11902
|
+
Tags30,
|
|
11751
11903
|
Bucket3,
|
|
11752
11904
|
Bucket4,
|
|
11753
11905
|
Visualisation18,
|
|
11754
|
-
Id37,
|
|
11755
|
-
Tags30,
|
|
11756
|
-
Visualisation19,
|
|
11757
11906
|
Id38,
|
|
11758
11907
|
Tags31,
|
|
11759
|
-
|
|
11908
|
+
Visualisation19,
|
|
11760
11909
|
Id39,
|
|
11761
11910
|
Tags32,
|
|
11911
|
+
Visualisation20,
|
|
11912
|
+
Id40,
|
|
11913
|
+
Tags33,
|
|
11762
11914
|
PushpinLocationBucket,
|
|
11763
11915
|
LayerItem,
|
|
11764
|
-
|
|
11916
|
+
Id41,
|
|
11765
11917
|
LocationBucket,
|
|
11766
11918
|
GeoAreaBucket,
|
|
11767
11919
|
Visualisation21,
|
|
11768
|
-
Id41,
|
|
11769
|
-
Tags33,
|
|
11770
|
-
Visualisation22,
|
|
11771
11920
|
Id42,
|
|
11772
11921
|
Tags34,
|
|
11773
|
-
|
|
11922
|
+
Visualisation22,
|
|
11774
11923
|
Id43,
|
|
11775
11924
|
Tags35,
|
|
11776
|
-
|
|
11777
|
-
|
|
11925
|
+
Visualisation23,
|
|
11926
|
+
Id44,
|
|
11927
|
+
Tags36,
|
|
11928
|
+
Metadata30,
|
|
11929
|
+
Metadata32,
|
|
11778
11930
|
Metadata1,
|
|
11779
11931
|
Metadata4,
|
|
11780
11932
|
NormalDataset,
|
|
@@ -11797,6 +11949,8 @@ export declare namespace v1 {
|
|
|
11797
11949
|
Metadata10,
|
|
11798
11950
|
Metric,
|
|
11799
11951
|
Metadata13,
|
|
11952
|
+
ComputedAttribute,
|
|
11953
|
+
Metadata16,
|
|
11800
11954
|
Dashboard,
|
|
11801
11955
|
TimezoneConfig,
|
|
11802
11956
|
Section,
|
|
@@ -11826,16 +11980,16 @@ export declare namespace v1 {
|
|
|
11826
11980
|
Tab,
|
|
11827
11981
|
DashboardFilters1,
|
|
11828
11982
|
Permission,
|
|
11829
|
-
Metadata16,
|
|
11830
|
-
Plugin_2 as Plugin,
|
|
11831
11983
|
Metadata19,
|
|
11832
|
-
|
|
11984
|
+
Plugin_2 as Plugin,
|
|
11833
11985
|
Metadata22,
|
|
11986
|
+
AttributeHierarchy,
|
|
11987
|
+
Metadata25,
|
|
11834
11988
|
Parameter,
|
|
11835
11989
|
StringParameterDefinition,
|
|
11836
11990
|
StringParameterConstraints,
|
|
11837
11991
|
ParameterAllowedValue,
|
|
11838
|
-
|
|
11992
|
+
Metadata28,
|
|
11839
11993
|
Table,
|
|
11840
11994
|
Query,
|
|
11841
11995
|
Fields3,
|
|
@@ -11949,7 +12103,7 @@ export declare namespace v1 {
|
|
|
11949
12103
|
RadarChart,
|
|
11950
12104
|
Query22,
|
|
11951
12105
|
VisualisationConfig23,
|
|
11952
|
-
|
|
12106
|
+
Metadata31
|
|
11953
12107
|
}
|
|
11954
12108
|
}
|
|
11955
12109
|
|
|
@@ -18602,7 +18756,7 @@ declare interface VisualisationConfig9 {
|
|
|
18602
18756
|
}
|
|
18603
18757
|
|
|
18604
18758
|
declare interface VisualisationWidget {
|
|
18605
|
-
id?:
|
|
18759
|
+
id?: Id10;
|
|
18606
18760
|
/**
|
|
18607
18761
|
* An id of the visualization to be rendered with the widget
|
|
18608
18762
|
*/
|
|
@@ -18617,7 +18771,7 @@ declare interface VisualisationWidget {
|
|
|
18617
18771
|
* An optional height of the widget in the grid, each row being ~20px high
|
|
18618
18772
|
*/
|
|
18619
18773
|
rows?: number;
|
|
18620
|
-
date?:
|
|
18774
|
+
date?: Id11;
|
|
18621
18775
|
/**
|
|
18622
18776
|
* A list of dashboard filters to be ignored for this widget
|
|
18623
18777
|
*/
|
|
@@ -18642,7 +18796,7 @@ declare interface VisualisationWidget {
|
|
|
18642
18796
|
}
|
|
18643
18797
|
|
|
18644
18798
|
declare interface VisualisationWidget1 {
|
|
18645
|
-
id?:
|
|
18799
|
+
id?: Id10;
|
|
18646
18800
|
/**
|
|
18647
18801
|
* An id of the visualization to be rendered with the widget
|
|
18648
18802
|
*/
|
|
@@ -18657,7 +18811,7 @@ declare interface VisualisationWidget1 {
|
|
|
18657
18811
|
* An optional height of the widget in the grid, each row being ~20px high
|
|
18658
18812
|
*/
|
|
18659
18813
|
rows?: number;
|
|
18660
|
-
date?:
|
|
18814
|
+
date?: Id11;
|
|
18661
18815
|
/**
|
|
18662
18816
|
* A list of dashboard filters to be ignored for this widget
|
|
18663
18817
|
*/
|
|
@@ -18682,7 +18836,7 @@ declare interface VisualisationWidget1 {
|
|
|
18682
18836
|
}
|
|
18683
18837
|
|
|
18684
18838
|
declare interface VisualizationDataLayer {
|
|
18685
|
-
id:
|
|
18839
|
+
id: Id41;
|
|
18686
18840
|
/**
|
|
18687
18841
|
* An optional human readable title for the layer. Will be derived from id if not provided explicitly.
|
|
18688
18842
|
*/
|
|
@@ -18707,7 +18861,7 @@ declare interface VisualizationDataLayer {
|
|
|
18707
18861
|
}
|
|
18708
18862
|
|
|
18709
18863
|
declare interface VisualizationSwitcherWidget {
|
|
18710
|
-
id?:
|
|
18864
|
+
id?: Id13;
|
|
18711
18865
|
/**
|
|
18712
18866
|
* An optional width of the widget in the grid, total width being 12 columns
|
|
18713
18867
|
*/
|
|
@@ -18727,7 +18881,7 @@ declare interface WaterfallChart {
|
|
|
18727
18881
|
* Type of visualisation.
|
|
18728
18882
|
*/
|
|
18729
18883
|
type: "waterfall_chart";
|
|
18730
|
-
id:
|
|
18884
|
+
id: Id35;
|
|
18731
18885
|
/**
|
|
18732
18886
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
18733
18887
|
*/
|
|
@@ -18736,7 +18890,7 @@ declare interface WaterfallChart {
|
|
|
18736
18890
|
* An optional description of the visualisation.
|
|
18737
18891
|
*/
|
|
18738
18892
|
description?: string;
|
|
18739
|
-
tags?:
|
|
18893
|
+
tags?: Tags28;
|
|
18740
18894
|
/**
|
|
18741
18895
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
18742
18896
|
*/
|