@gooddata/sdk-code-schemas 11.54.0-alpha.4 → 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 +306 -149
- package/esm/v1/metadata.d.ts +189 -151
- package/esm/v1/metadata.d.ts.map +1 -1
- package/esm/v1/metadata.json +94 -1
- package/esm/v1/schema.d.ts +107 -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;
|
|
@@ -7525,6 +7668,9 @@ export declare const metadata_v1: {
|
|
|
7525
7668
|
type: string;
|
|
7526
7669
|
pattern: string;
|
|
7527
7670
|
})[];
|
|
7671
|
+
$semantic: {
|
|
7672
|
+
type: string;
|
|
7673
|
+
};
|
|
7528
7674
|
};
|
|
7529
7675
|
widget: {
|
|
7530
7676
|
title: string;
|
|
@@ -10230,7 +10376,7 @@ declare interface NormalDataset {
|
|
|
10230
10376
|
}
|
|
10231
10377
|
|
|
10232
10378
|
declare interface Parameter {
|
|
10233
|
-
id:
|
|
10379
|
+
id: Id20;
|
|
10234
10380
|
type: "parameter";
|
|
10235
10381
|
/**
|
|
10236
10382
|
* An optional human readable title for the parameter. Will be derived from id if not provided explicitly.
|
|
@@ -10240,7 +10386,7 @@ declare interface Parameter {
|
|
|
10240
10386
|
* An optional description of the parameter.
|
|
10241
10387
|
*/
|
|
10242
10388
|
description?: string;
|
|
10243
|
-
tags?:
|
|
10389
|
+
tags?: Tags13;
|
|
10244
10390
|
definition: ParameterDefinition;
|
|
10245
10391
|
}
|
|
10246
10392
|
|
|
@@ -10280,7 +10426,7 @@ declare interface PieChart {
|
|
|
10280
10426
|
* Type of visualisation.
|
|
10281
10427
|
*/
|
|
10282
10428
|
type: "pie_chart";
|
|
10283
|
-
id:
|
|
10429
|
+
id: Id28;
|
|
10284
10430
|
/**
|
|
10285
10431
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10286
10432
|
*/
|
|
@@ -10289,7 +10435,7 @@ declare interface PieChart {
|
|
|
10289
10435
|
* An optional description of the visualisation.
|
|
10290
10436
|
*/
|
|
10291
10437
|
description?: string;
|
|
10292
|
-
tags?:
|
|
10438
|
+
tags?: Tags21;
|
|
10293
10439
|
/**
|
|
10294
10440
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10295
10441
|
*/
|
|
@@ -10320,7 +10466,7 @@ declare interface PieChart1 {
|
|
|
10320
10466
|
* Type of visualisation.
|
|
10321
10467
|
*/
|
|
10322
10468
|
type: "donut_chart";
|
|
10323
|
-
id:
|
|
10469
|
+
id: Id29;
|
|
10324
10470
|
/**
|
|
10325
10471
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10326
10472
|
*/
|
|
@@ -10329,7 +10475,7 @@ declare interface PieChart1 {
|
|
|
10329
10475
|
* An optional description of the visualisation.
|
|
10330
10476
|
*/
|
|
10331
10477
|
description?: string;
|
|
10332
|
-
tags?:
|
|
10478
|
+
tags?: Tags22;
|
|
10333
10479
|
/**
|
|
10334
10480
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10335
10481
|
*/
|
|
@@ -10356,7 +10502,7 @@ declare interface PieChart1 {
|
|
|
10356
10502
|
}
|
|
10357
10503
|
|
|
10358
10504
|
declare interface Plugin_2 {
|
|
10359
|
-
id:
|
|
10505
|
+
id: Id18;
|
|
10360
10506
|
type: "plugin";
|
|
10361
10507
|
/**
|
|
10362
10508
|
* An optional human readable title for the plugin. Will be derived from id if not provided explicitly.
|
|
@@ -10366,7 +10512,7 @@ declare interface Plugin_2 {
|
|
|
10366
10512
|
* An optional description of the plugin.
|
|
10367
10513
|
*/
|
|
10368
10514
|
description?: string;
|
|
10369
|
-
tags?:
|
|
10515
|
+
tags?: Tags11;
|
|
10370
10516
|
/**
|
|
10371
10517
|
* URL of the plugin.
|
|
10372
10518
|
*/
|
|
@@ -10491,7 +10637,7 @@ declare interface PyramidChart {
|
|
|
10491
10637
|
* Type of visualisation.
|
|
10492
10638
|
*/
|
|
10493
10639
|
type: "pyramid_chart";
|
|
10494
|
-
id:
|
|
10640
|
+
id: Id31;
|
|
10495
10641
|
/**
|
|
10496
10642
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10497
10643
|
*/
|
|
@@ -10500,7 +10646,7 @@ declare interface PyramidChart {
|
|
|
10500
10646
|
* An optional description of the visualisation.
|
|
10501
10647
|
*/
|
|
10502
10648
|
description?: string;
|
|
10503
|
-
tags?:
|
|
10649
|
+
tags?: Tags24;
|
|
10504
10650
|
/**
|
|
10505
10651
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10506
10652
|
*/
|
|
@@ -10759,7 +10905,7 @@ declare interface RadarChart {
|
|
|
10759
10905
|
* Type of visualisation.
|
|
10760
10906
|
*/
|
|
10761
10907
|
type: "radar_chart";
|
|
10762
|
-
id:
|
|
10908
|
+
id: Id44;
|
|
10763
10909
|
/**
|
|
10764
10910
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10765
10911
|
*/
|
|
@@ -10768,7 +10914,7 @@ declare interface RadarChart {
|
|
|
10768
10914
|
* An optional description of the visualisation.
|
|
10769
10915
|
*/
|
|
10770
10916
|
description?: string;
|
|
10771
|
-
tags?:
|
|
10917
|
+
tags?: Tags36;
|
|
10772
10918
|
/**
|
|
10773
10919
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10774
10920
|
*/
|
|
@@ -10860,7 +11006,7 @@ declare interface RepeaterChart {
|
|
|
10860
11006
|
* Type of visualisation.
|
|
10861
11007
|
*/
|
|
10862
11008
|
type: "repeater_chart";
|
|
10863
|
-
id:
|
|
11009
|
+
id: Id43;
|
|
10864
11010
|
/**
|
|
10865
11011
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10866
11012
|
*/
|
|
@@ -10869,7 +11015,7 @@ declare interface RepeaterChart {
|
|
|
10869
11015
|
* An optional description of the visualisation.
|
|
10870
11016
|
*/
|
|
10871
11017
|
description?: string;
|
|
10872
|
-
tags?:
|
|
11018
|
+
tags?: Tags35;
|
|
10873
11019
|
/**
|
|
10874
11020
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10875
11021
|
*/
|
|
@@ -10904,7 +11050,7 @@ declare interface RepeaterChart {
|
|
|
10904
11050
|
}
|
|
10905
11051
|
|
|
10906
11052
|
declare interface RichTextWidget {
|
|
10907
|
-
id?:
|
|
11053
|
+
id?: Id12;
|
|
10908
11054
|
/**
|
|
10909
11055
|
* A markdown content of the widget
|
|
10910
11056
|
*/
|
|
@@ -10924,7 +11070,7 @@ declare interface SankeyChart {
|
|
|
10924
11070
|
* Type of visualisation.
|
|
10925
11071
|
*/
|
|
10926
11072
|
type: "sankey_chart";
|
|
10927
|
-
id:
|
|
11073
|
+
id: Id37;
|
|
10928
11074
|
/**
|
|
10929
11075
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10930
11076
|
*/
|
|
@@ -10933,7 +11079,7 @@ declare interface SankeyChart {
|
|
|
10933
11079
|
* An optional description of the visualisation.
|
|
10934
11080
|
*/
|
|
10935
11081
|
description?: string;
|
|
10936
|
-
tags?:
|
|
11082
|
+
tags?: Tags30;
|
|
10937
11083
|
/**
|
|
10938
11084
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10939
11085
|
*/
|
|
@@ -10966,7 +11112,7 @@ declare interface ScatterChart {
|
|
|
10966
11112
|
* Type of visualisation.
|
|
10967
11113
|
*/
|
|
10968
11114
|
type: "scatter_chart";
|
|
10969
|
-
id:
|
|
11115
|
+
id: Id26;
|
|
10970
11116
|
/**
|
|
10971
11117
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10972
11118
|
*/
|
|
@@ -10975,7 +11121,7 @@ declare interface ScatterChart {
|
|
|
10975
11121
|
* An optional description of the visualisation.
|
|
10976
11122
|
*/
|
|
10977
11123
|
description?: string;
|
|
10978
|
-
tags?:
|
|
11124
|
+
tags?: Tags19;
|
|
10979
11125
|
/**
|
|
10980
11126
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10981
11127
|
*/
|
|
@@ -11143,7 +11289,7 @@ declare interface StringParameterDefinition {
|
|
|
11143
11289
|
declare type StructuredField = AttributeFieldGuard | MetricFieldGuard | CalculatedMetricFieldGuard | InlineMetricFieldGuard | ArithmeticMetricFieldGuard | PoPMetricFieldGuard | PreviousPeriodMetricFieldGuard;
|
|
11144
11290
|
|
|
11145
11291
|
declare interface Tab {
|
|
11146
|
-
id:
|
|
11292
|
+
id: Id17;
|
|
11147
11293
|
/**
|
|
11148
11294
|
* Display title for the tab.
|
|
11149
11295
|
*/
|
|
@@ -11160,7 +11306,7 @@ declare interface Table {
|
|
|
11160
11306
|
* Type of visualisation.
|
|
11161
11307
|
*/
|
|
11162
11308
|
type: "table";
|
|
11163
|
-
id:
|
|
11309
|
+
id: Id21;
|
|
11164
11310
|
/**
|
|
11165
11311
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
11166
11312
|
*/
|
|
@@ -11169,7 +11315,7 @@ declare interface Table {
|
|
|
11169
11315
|
* An optional description of the visualisation.
|
|
11170
11316
|
*/
|
|
11171
11317
|
description?: string;
|
|
11172
|
-
tags?:
|
|
11318
|
+
tags?: Tags14;
|
|
11173
11319
|
/**
|
|
11174
11320
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
11175
11321
|
*/
|
|
@@ -11211,22 +11357,22 @@ declare type Tags = string[];
|
|
|
11211
11357
|
declare type Tags1 = string[];
|
|
11212
11358
|
|
|
11213
11359
|
/**
|
|
11214
|
-
* A list of strings - metadata tags of this
|
|
11360
|
+
* A list of strings - metadata tags of this dashboard.
|
|
11215
11361
|
*/
|
|
11216
11362
|
declare type Tags10 = string[];
|
|
11217
11363
|
|
|
11218
11364
|
/**
|
|
11219
|
-
* A list of strings - metadata tags of this
|
|
11365
|
+
* A list of strings - metadata tags of this plugin.
|
|
11220
11366
|
*/
|
|
11221
11367
|
declare type Tags11 = string[];
|
|
11222
11368
|
|
|
11223
11369
|
/**
|
|
11224
|
-
* A list of strings - metadata tags of this
|
|
11370
|
+
* A list of strings - metadata tags of this attribute hierarchy.
|
|
11225
11371
|
*/
|
|
11226
11372
|
declare type Tags12 = string[];
|
|
11227
11373
|
|
|
11228
11374
|
/**
|
|
11229
|
-
* A list of strings - metadata tags of this
|
|
11375
|
+
* A list of strings - metadata tags of this parameter.
|
|
11230
11376
|
*/
|
|
11231
11377
|
declare type Tags13 = string[];
|
|
11232
11378
|
|
|
@@ -11347,6 +11493,11 @@ declare type Tags34 = string[];
|
|
|
11347
11493
|
*/
|
|
11348
11494
|
declare type Tags35 = string[];
|
|
11349
11495
|
|
|
11496
|
+
/**
|
|
11497
|
+
* A list of strings - metadata tags of this visualisation.
|
|
11498
|
+
*/
|
|
11499
|
+
declare type Tags36 = string[];
|
|
11500
|
+
|
|
11350
11501
|
declare type Tags4 = string[];
|
|
11351
11502
|
|
|
11352
11503
|
/**
|
|
@@ -11370,7 +11521,7 @@ declare type Tags7 = string[];
|
|
|
11370
11521
|
declare type Tags8 = string[];
|
|
11371
11522
|
|
|
11372
11523
|
/**
|
|
11373
|
-
* A list of strings - metadata tags of this
|
|
11524
|
+
* A list of strings - metadata tags of this computed attribute.
|
|
11374
11525
|
*/
|
|
11375
11526
|
declare type Tags9 = string[];
|
|
11376
11527
|
|
|
@@ -11470,7 +11621,7 @@ declare interface TreemapChart {
|
|
|
11470
11621
|
* Type of visualisation.
|
|
11471
11622
|
*/
|
|
11472
11623
|
type: "treemap_chart";
|
|
11473
|
-
id:
|
|
11624
|
+
id: Id30;
|
|
11474
11625
|
/**
|
|
11475
11626
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
11476
11627
|
*/
|
|
@@ -11479,7 +11630,7 @@ declare interface TreemapChart {
|
|
|
11479
11630
|
* An optional description of the visualisation.
|
|
11480
11631
|
*/
|
|
11481
11632
|
description?: string;
|
|
11482
|
-
tags?:
|
|
11633
|
+
tags?: Tags23;
|
|
11483
11634
|
/**
|
|
11484
11635
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
11485
11636
|
*/
|
|
@@ -11544,10 +11695,14 @@ export declare namespace v1 {
|
|
|
11544
11695
|
Metadata14,
|
|
11545
11696
|
Id8,
|
|
11546
11697
|
Tags9,
|
|
11698
|
+
Metadata15,
|
|
11699
|
+
Metadata17,
|
|
11700
|
+
Id9,
|
|
11701
|
+
Tags10,
|
|
11547
11702
|
Widget,
|
|
11548
11703
|
Widget1,
|
|
11549
|
-
Id9,
|
|
11550
11704
|
Id10,
|
|
11705
|
+
Id11,
|
|
11551
11706
|
Interaction,
|
|
11552
11707
|
Interaction1,
|
|
11553
11708
|
InteractionClickOn,
|
|
@@ -11567,11 +11722,11 @@ export declare namespace v1 {
|
|
|
11567
11722
|
IgnoredDrillDown2,
|
|
11568
11723
|
IgnoredDrillDown3,
|
|
11569
11724
|
Widget2,
|
|
11570
|
-
Id11,
|
|
11571
|
-
Widget3,
|
|
11572
11725
|
Id12,
|
|
11573
|
-
|
|
11726
|
+
Widget3,
|
|
11574
11727
|
Id13,
|
|
11728
|
+
Widget4,
|
|
11729
|
+
Id14,
|
|
11575
11730
|
DashboardAttributeFilter,
|
|
11576
11731
|
DashboardAttributeFilter1,
|
|
11577
11732
|
AttributeIdentifier2,
|
|
@@ -11590,30 +11745,30 @@ export declare namespace v1 {
|
|
|
11590
11745
|
AttributeIdentifier5,
|
|
11591
11746
|
LabelIdentifier5,
|
|
11592
11747
|
DisplayAsLabelIdentifier3,
|
|
11593
|
-
Id14,
|
|
11594
11748
|
Id15,
|
|
11595
11749
|
Id16,
|
|
11596
|
-
Metadata15,
|
|
11597
|
-
Metadata17,
|
|
11598
11750
|
Id17,
|
|
11599
|
-
Tags10,
|
|
11600
11751
|
Metadata18,
|
|
11601
11752
|
Metadata20,
|
|
11602
11753
|
Id18,
|
|
11603
11754
|
Tags11,
|
|
11604
|
-
AttributeIdentifier6,
|
|
11605
11755
|
Metadata21,
|
|
11606
11756
|
Metadata23,
|
|
11607
11757
|
Id19,
|
|
11608
11758
|
Tags12,
|
|
11609
|
-
|
|
11610
|
-
ParameterDefinition1,
|
|
11759
|
+
AttributeIdentifier6,
|
|
11611
11760
|
Metadata24,
|
|
11612
11761
|
Metadata26,
|
|
11613
|
-
Visualisation,
|
|
11614
|
-
Visualisation1,
|
|
11615
11762
|
Id20,
|
|
11616
11763
|
Tags13,
|
|
11764
|
+
ParameterDefinition,
|
|
11765
|
+
ParameterDefinition1,
|
|
11766
|
+
Metadata27,
|
|
11767
|
+
Metadata29,
|
|
11768
|
+
Visualisation,
|
|
11769
|
+
Visualisation1,
|
|
11770
|
+
Id21,
|
|
11771
|
+
Tags14,
|
|
11617
11772
|
Field,
|
|
11618
11773
|
AttributeIdentifier7,
|
|
11619
11774
|
Field1,
|
|
@@ -11695,83 +11850,83 @@ export declare namespace v1 {
|
|
|
11695
11850
|
Bucket,
|
|
11696
11851
|
SimpleBucket,
|
|
11697
11852
|
Visualisation2,
|
|
11698
|
-
Id21,
|
|
11699
|
-
Tags14,
|
|
11700
|
-
Visualisation3,
|
|
11701
11853
|
Id22,
|
|
11702
11854
|
Tags15,
|
|
11703
|
-
|
|
11855
|
+
Visualisation3,
|
|
11704
11856
|
Id23,
|
|
11705
11857
|
Tags16,
|
|
11706
|
-
|
|
11858
|
+
Visualisation4,
|
|
11707
11859
|
Id24,
|
|
11708
11860
|
Tags17,
|
|
11709
|
-
|
|
11861
|
+
Visualisation5,
|
|
11710
11862
|
Id25,
|
|
11711
11863
|
Tags18,
|
|
11712
|
-
|
|
11713
|
-
Visualisation7,
|
|
11864
|
+
Visualisation6,
|
|
11714
11865
|
Id26,
|
|
11715
11866
|
Tags19,
|
|
11716
|
-
|
|
11867
|
+
EmptyBucket,
|
|
11868
|
+
Visualisation7,
|
|
11717
11869
|
Id27,
|
|
11718
11870
|
Tags20,
|
|
11719
|
-
|
|
11871
|
+
Visualisation8,
|
|
11720
11872
|
Id28,
|
|
11721
11873
|
Tags21,
|
|
11722
|
-
|
|
11874
|
+
Visualisation9,
|
|
11723
11875
|
Id29,
|
|
11724
11876
|
Tags22,
|
|
11725
|
-
|
|
11877
|
+
Visualisation10,
|
|
11726
11878
|
Id30,
|
|
11727
11879
|
Tags23,
|
|
11728
|
-
|
|
11880
|
+
Visualisation11,
|
|
11729
11881
|
Id31,
|
|
11730
11882
|
Tags24,
|
|
11731
|
-
|
|
11883
|
+
Visualisation12,
|
|
11732
11884
|
Id32,
|
|
11733
11885
|
Tags25,
|
|
11734
|
-
|
|
11886
|
+
Visualisation13,
|
|
11735
11887
|
Id33,
|
|
11736
11888
|
Tags26,
|
|
11737
|
-
|
|
11889
|
+
Visualisation14,
|
|
11738
11890
|
Id34,
|
|
11739
11891
|
Tags27,
|
|
11740
|
-
|
|
11892
|
+
Visualisation15,
|
|
11741
11893
|
Id35,
|
|
11742
11894
|
Tags28,
|
|
11895
|
+
Visualisation16,
|
|
11896
|
+
Id36,
|
|
11897
|
+
Tags29,
|
|
11743
11898
|
Bucket1,
|
|
11744
11899
|
Bucket2,
|
|
11745
11900
|
Visualisation17,
|
|
11746
|
-
|
|
11747
|
-
|
|
11901
|
+
Id37,
|
|
11902
|
+
Tags30,
|
|
11748
11903
|
Bucket3,
|
|
11749
11904
|
Bucket4,
|
|
11750
11905
|
Visualisation18,
|
|
11751
|
-
Id37,
|
|
11752
|
-
Tags30,
|
|
11753
|
-
Visualisation19,
|
|
11754
11906
|
Id38,
|
|
11755
11907
|
Tags31,
|
|
11756
|
-
|
|
11908
|
+
Visualisation19,
|
|
11757
11909
|
Id39,
|
|
11758
11910
|
Tags32,
|
|
11911
|
+
Visualisation20,
|
|
11912
|
+
Id40,
|
|
11913
|
+
Tags33,
|
|
11759
11914
|
PushpinLocationBucket,
|
|
11760
11915
|
LayerItem,
|
|
11761
|
-
|
|
11916
|
+
Id41,
|
|
11762
11917
|
LocationBucket,
|
|
11763
11918
|
GeoAreaBucket,
|
|
11764
11919
|
Visualisation21,
|
|
11765
|
-
Id41,
|
|
11766
|
-
Tags33,
|
|
11767
|
-
Visualisation22,
|
|
11768
11920
|
Id42,
|
|
11769
11921
|
Tags34,
|
|
11770
|
-
|
|
11922
|
+
Visualisation22,
|
|
11771
11923
|
Id43,
|
|
11772
11924
|
Tags35,
|
|
11773
|
-
|
|
11774
|
-
|
|
11925
|
+
Visualisation23,
|
|
11926
|
+
Id44,
|
|
11927
|
+
Tags36,
|
|
11928
|
+
Metadata30,
|
|
11929
|
+
Metadata32,
|
|
11775
11930
|
Metadata1,
|
|
11776
11931
|
Metadata4,
|
|
11777
11932
|
NormalDataset,
|
|
@@ -11794,6 +11949,8 @@ export declare namespace v1 {
|
|
|
11794
11949
|
Metadata10,
|
|
11795
11950
|
Metric,
|
|
11796
11951
|
Metadata13,
|
|
11952
|
+
ComputedAttribute,
|
|
11953
|
+
Metadata16,
|
|
11797
11954
|
Dashboard,
|
|
11798
11955
|
TimezoneConfig,
|
|
11799
11956
|
Section,
|
|
@@ -11823,16 +11980,16 @@ export declare namespace v1 {
|
|
|
11823
11980
|
Tab,
|
|
11824
11981
|
DashboardFilters1,
|
|
11825
11982
|
Permission,
|
|
11826
|
-
Metadata16,
|
|
11827
|
-
Plugin_2 as Plugin,
|
|
11828
11983
|
Metadata19,
|
|
11829
|
-
|
|
11984
|
+
Plugin_2 as Plugin,
|
|
11830
11985
|
Metadata22,
|
|
11986
|
+
AttributeHierarchy,
|
|
11987
|
+
Metadata25,
|
|
11831
11988
|
Parameter,
|
|
11832
11989
|
StringParameterDefinition,
|
|
11833
11990
|
StringParameterConstraints,
|
|
11834
11991
|
ParameterAllowedValue,
|
|
11835
|
-
|
|
11992
|
+
Metadata28,
|
|
11836
11993
|
Table,
|
|
11837
11994
|
Query,
|
|
11838
11995
|
Fields3,
|
|
@@ -11946,7 +12103,7 @@ export declare namespace v1 {
|
|
|
11946
12103
|
RadarChart,
|
|
11947
12104
|
Query22,
|
|
11948
12105
|
VisualisationConfig23,
|
|
11949
|
-
|
|
12106
|
+
Metadata31
|
|
11950
12107
|
}
|
|
11951
12108
|
}
|
|
11952
12109
|
|
|
@@ -18599,7 +18756,7 @@ declare interface VisualisationConfig9 {
|
|
|
18599
18756
|
}
|
|
18600
18757
|
|
|
18601
18758
|
declare interface VisualisationWidget {
|
|
18602
|
-
id?:
|
|
18759
|
+
id?: Id10;
|
|
18603
18760
|
/**
|
|
18604
18761
|
* An id of the visualization to be rendered with the widget
|
|
18605
18762
|
*/
|
|
@@ -18614,7 +18771,7 @@ declare interface VisualisationWidget {
|
|
|
18614
18771
|
* An optional height of the widget in the grid, each row being ~20px high
|
|
18615
18772
|
*/
|
|
18616
18773
|
rows?: number;
|
|
18617
|
-
date?:
|
|
18774
|
+
date?: Id11;
|
|
18618
18775
|
/**
|
|
18619
18776
|
* A list of dashboard filters to be ignored for this widget
|
|
18620
18777
|
*/
|
|
@@ -18639,7 +18796,7 @@ declare interface VisualisationWidget {
|
|
|
18639
18796
|
}
|
|
18640
18797
|
|
|
18641
18798
|
declare interface VisualisationWidget1 {
|
|
18642
|
-
id?:
|
|
18799
|
+
id?: Id10;
|
|
18643
18800
|
/**
|
|
18644
18801
|
* An id of the visualization to be rendered with the widget
|
|
18645
18802
|
*/
|
|
@@ -18654,7 +18811,7 @@ declare interface VisualisationWidget1 {
|
|
|
18654
18811
|
* An optional height of the widget in the grid, each row being ~20px high
|
|
18655
18812
|
*/
|
|
18656
18813
|
rows?: number;
|
|
18657
|
-
date?:
|
|
18814
|
+
date?: Id11;
|
|
18658
18815
|
/**
|
|
18659
18816
|
* A list of dashboard filters to be ignored for this widget
|
|
18660
18817
|
*/
|
|
@@ -18679,7 +18836,7 @@ declare interface VisualisationWidget1 {
|
|
|
18679
18836
|
}
|
|
18680
18837
|
|
|
18681
18838
|
declare interface VisualizationDataLayer {
|
|
18682
|
-
id:
|
|
18839
|
+
id: Id41;
|
|
18683
18840
|
/**
|
|
18684
18841
|
* An optional human readable title for the layer. Will be derived from id if not provided explicitly.
|
|
18685
18842
|
*/
|
|
@@ -18704,7 +18861,7 @@ declare interface VisualizationDataLayer {
|
|
|
18704
18861
|
}
|
|
18705
18862
|
|
|
18706
18863
|
declare interface VisualizationSwitcherWidget {
|
|
18707
|
-
id?:
|
|
18864
|
+
id?: Id13;
|
|
18708
18865
|
/**
|
|
18709
18866
|
* An optional width of the widget in the grid, total width being 12 columns
|
|
18710
18867
|
*/
|
|
@@ -18724,7 +18881,7 @@ declare interface WaterfallChart {
|
|
|
18724
18881
|
* Type of visualisation.
|
|
18725
18882
|
*/
|
|
18726
18883
|
type: "waterfall_chart";
|
|
18727
|
-
id:
|
|
18884
|
+
id: Id35;
|
|
18728
18885
|
/**
|
|
18729
18886
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
18730
18887
|
*/
|
|
@@ -18733,7 +18890,7 @@ declare interface WaterfallChart {
|
|
|
18733
18890
|
* An optional description of the visualisation.
|
|
18734
18891
|
*/
|
|
18735
18892
|
description?: string;
|
|
18736
|
-
tags?:
|
|
18893
|
+
tags?: Tags28;
|
|
18737
18894
|
/**
|
|
18738
18895
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
18739
18896
|
*/
|