@gooddata/sdk-code-schemas 11.54.0-alpha.0 → 11.54.0-alpha.2
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 +374 -96
- package/esm/v1/metadata.d.ts +181 -104
- package/esm/v1/metadata.d.ts.map +1 -1
- package/esm/v1/metadata.json +153 -2
- package/esm/v1/schema.d.ts +179 -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: Id24;
|
|
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?: Tags17;
|
|
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
|
*/
|
|
@@ -433,7 +433,7 @@ declare interface BarChart {
|
|
|
433
433
|
* Type of visualisation.
|
|
434
434
|
*/
|
|
435
435
|
type: "bar_chart";
|
|
436
|
-
id:
|
|
436
|
+
id: Id21;
|
|
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?: Tags14;
|
|
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: Id26;
|
|
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?: Tags19;
|
|
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: Id33;
|
|
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?: Tags26;
|
|
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: Id22;
|
|
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?: Tags15;
|
|
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: Id38;
|
|
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?: Tags31;
|
|
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
|
*/
|
|
@@ -1231,7 +1231,7 @@ declare interface DependencyWheelChart {
|
|
|
1231
1231
|
* Type of visualisation.
|
|
1232
1232
|
*/
|
|
1233
1233
|
type: "dependency_wheel_chart";
|
|
1234
|
-
id:
|
|
1234
|
+
id: Id35;
|
|
1235
1235
|
/**
|
|
1236
1236
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
1237
1237
|
*/
|
|
@@ -1240,7 +1240,7 @@ declare interface DependencyWheelChart {
|
|
|
1240
1240
|
* An optional description of the visualisation.
|
|
1241
1241
|
*/
|
|
1242
1242
|
description?: string;
|
|
1243
|
-
tags?:
|
|
1243
|
+
tags?: Tags28;
|
|
1244
1244
|
/**
|
|
1245
1245
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
1246
1246
|
*/
|
|
@@ -1461,7 +1461,7 @@ declare interface FunnelChart {
|
|
|
1461
1461
|
* Type of visualisation.
|
|
1462
1462
|
*/
|
|
1463
1463
|
type: "funnel_chart";
|
|
1464
|
-
id:
|
|
1464
|
+
id: Id31;
|
|
1465
1465
|
/**
|
|
1466
1466
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
1467
1467
|
*/
|
|
@@ -1470,7 +1470,7 @@ declare interface FunnelChart {
|
|
|
1470
1470
|
* An optional description of the visualisation.
|
|
1471
1471
|
*/
|
|
1472
1472
|
description?: string;
|
|
1473
|
-
tags?:
|
|
1473
|
+
tags?: Tags24;
|
|
1474
1474
|
/**
|
|
1475
1475
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
1476
1476
|
*/
|
|
@@ -1503,7 +1503,7 @@ declare interface GeoAreaChart {
|
|
|
1503
1503
|
* Type of visualisation.
|
|
1504
1504
|
*/
|
|
1505
1505
|
type: "geo_area_chart";
|
|
1506
|
-
id:
|
|
1506
|
+
id: Id41;
|
|
1507
1507
|
/**
|
|
1508
1508
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
1509
1509
|
*/
|
|
@@ -1512,7 +1512,7 @@ declare interface GeoAreaChart {
|
|
|
1512
1512
|
* An optional description of the visualisation.
|
|
1513
1513
|
*/
|
|
1514
1514
|
description?: string;
|
|
1515
|
-
tags?:
|
|
1515
|
+
tags?: Tags33;
|
|
1516
1516
|
/**
|
|
1517
1517
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
1518
1518
|
*/
|
|
@@ -1559,7 +1559,7 @@ declare interface GeoChart {
|
|
|
1559
1559
|
* Type of visualisation.
|
|
1560
1560
|
*/
|
|
1561
1561
|
type: "geo_chart";
|
|
1562
|
-
id:
|
|
1562
|
+
id: Id39;
|
|
1563
1563
|
/**
|
|
1564
1564
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
1565
1565
|
*/
|
|
@@ -1568,7 +1568,7 @@ declare interface GeoChart {
|
|
|
1568
1568
|
* An optional description of the visualisation.
|
|
1569
1569
|
*/
|
|
1570
1570
|
description?: string;
|
|
1571
|
-
tags?:
|
|
1571
|
+
tags?: Tags32;
|
|
1572
1572
|
/**
|
|
1573
1573
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
1574
1574
|
*/
|
|
@@ -1603,7 +1603,7 @@ declare interface HeadlineChart {
|
|
|
1603
1603
|
* Type of visualisation.
|
|
1604
1604
|
*/
|
|
1605
1605
|
type: "headline_chart";
|
|
1606
|
-
id:
|
|
1606
|
+
id: Id37;
|
|
1607
1607
|
/**
|
|
1608
1608
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
1609
1609
|
*/
|
|
@@ -1612,7 +1612,7 @@ declare interface HeadlineChart {
|
|
|
1612
1612
|
* An optional description of the visualisation.
|
|
1613
1613
|
*/
|
|
1614
1614
|
description?: string;
|
|
1615
|
-
tags?:
|
|
1615
|
+
tags?: Tags30;
|
|
1616
1616
|
/**
|
|
1617
1617
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
1618
1618
|
*/
|
|
@@ -1643,7 +1643,7 @@ declare interface HeatmapChart {
|
|
|
1643
1643
|
* Type of visualisation.
|
|
1644
1644
|
*/
|
|
1645
1645
|
type: "heatmap_chart";
|
|
1646
|
-
id:
|
|
1646
|
+
id: Id32;
|
|
1647
1647
|
/**
|
|
1648
1648
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
1649
1649
|
*/
|
|
@@ -1652,7 +1652,7 @@ declare interface HeatmapChart {
|
|
|
1652
1652
|
* An optional description of the visualisation.
|
|
1653
1653
|
*/
|
|
1654
1654
|
description?: string;
|
|
1655
|
-
tags?:
|
|
1655
|
+
tags?: Tags25;
|
|
1656
1656
|
/**
|
|
1657
1657
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
1658
1658
|
*/
|
|
@@ -1739,7 +1739,7 @@ declare type Id17 = string;
|
|
|
1739
1739
|
declare type Id18 = string;
|
|
1740
1740
|
|
|
1741
1741
|
/**
|
|
1742
|
-
* A unique identifier of the
|
|
1742
|
+
* A unique identifier of the parameter.
|
|
1743
1743
|
*/
|
|
1744
1744
|
declare type Id19 = string;
|
|
1745
1745
|
|
|
@@ -1846,7 +1846,7 @@ declare type Id37 = string;
|
|
|
1846
1846
|
declare type Id38 = string;
|
|
1847
1847
|
|
|
1848
1848
|
/**
|
|
1849
|
-
* A unique identifier of the
|
|
1849
|
+
* A unique identifier of the visualisation.
|
|
1850
1850
|
*/
|
|
1851
1851
|
declare type Id39 = string;
|
|
1852
1852
|
|
|
@@ -1856,7 +1856,7 @@ declare type Id39 = string;
|
|
|
1856
1856
|
declare type Id4 = string;
|
|
1857
1857
|
|
|
1858
1858
|
/**
|
|
1859
|
-
* A unique identifier of the
|
|
1859
|
+
* A unique identifier of the visualization data layer.
|
|
1860
1860
|
*/
|
|
1861
1861
|
declare type Id40 = string;
|
|
1862
1862
|
|
|
@@ -1870,6 +1870,11 @@ declare type Id41 = string;
|
|
|
1870
1870
|
*/
|
|
1871
1871
|
declare type Id42 = string;
|
|
1872
1872
|
|
|
1873
|
+
/**
|
|
1874
|
+
* A unique identifier of the visualisation.
|
|
1875
|
+
*/
|
|
1876
|
+
declare type Id43 = string;
|
|
1877
|
+
|
|
1873
1878
|
declare type Id5 = string;
|
|
1874
1879
|
|
|
1875
1880
|
/**
|
|
@@ -2272,7 +2277,7 @@ declare interface LineChart {
|
|
|
2272
2277
|
* Type of visualisation.
|
|
2273
2278
|
*/
|
|
2274
2279
|
type: "line_chart";
|
|
2275
|
-
id:
|
|
2280
|
+
id: Id23;
|
|
2276
2281
|
/**
|
|
2277
2282
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
2278
2283
|
*/
|
|
@@ -2281,7 +2286,7 @@ declare interface LineChart {
|
|
|
2281
2286
|
* An optional description of the visualisation.
|
|
2282
2287
|
*/
|
|
2283
2288
|
description?: string;
|
|
2284
|
-
tags?:
|
|
2289
|
+
tags?: Tags16;
|
|
2285
2290
|
/**
|
|
2286
2291
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
2287
2292
|
*/
|
|
@@ -2410,12 +2415,12 @@ declare type LocationBucket = string;
|
|
|
2410
2415
|
declare type Metadata = Metadata1 & Metadata2;
|
|
2411
2416
|
|
|
2412
2417
|
declare interface Metadata1 {
|
|
2413
|
-
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";
|
|
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";
|
|
2414
2419
|
[k: string]: unknown;
|
|
2415
2420
|
}
|
|
2416
2421
|
|
|
2417
2422
|
declare interface Metadata10 {
|
|
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";
|
|
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";
|
|
2419
2424
|
[k: string]: unknown;
|
|
2420
2425
|
}
|
|
2421
2426
|
|
|
@@ -2427,7 +2432,7 @@ declare type Metadata11 = Metric;
|
|
|
2427
2432
|
declare type Metadata12 = Metadata13 & Metadata14;
|
|
2428
2433
|
|
|
2429
2434
|
declare interface Metadata13 {
|
|
2430
|
-
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";
|
|
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";
|
|
2431
2436
|
[k: string]: unknown;
|
|
2432
2437
|
}
|
|
2433
2438
|
|
|
@@ -2439,7 +2444,7 @@ declare type Metadata14 = Dashboard;
|
|
|
2439
2444
|
declare type Metadata15 = Metadata16 & Metadata17;
|
|
2440
2445
|
|
|
2441
2446
|
declare interface Metadata16 {
|
|
2442
|
-
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";
|
|
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";
|
|
2443
2448
|
[k: string]: unknown;
|
|
2444
2449
|
}
|
|
2445
2450
|
|
|
@@ -2451,11 +2456,11 @@ declare type Metadata17 = Plugin_2;
|
|
|
2451
2456
|
declare type Metadata18 = Metadata19 & Metadata20;
|
|
2452
2457
|
|
|
2453
2458
|
declare interface Metadata19 {
|
|
2454
|
-
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";
|
|
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";
|
|
2455
2460
|
[k: string]: unknown;
|
|
2456
2461
|
}
|
|
2457
2462
|
|
|
2458
|
-
declare type Metadata2 = Metadata3 | Metadata6 | Metadata9 | Metadata12 | Metadata15 | Metadata18 | Metadata21 | Metadata24;
|
|
2463
|
+
declare type Metadata2 = Metadata3 | Metadata6 | Metadata9 | Metadata12 | Metadata15 | Metadata18 | Metadata21 | Metadata24 | Metadata27;
|
|
2459
2464
|
|
|
2460
2465
|
declare type Metadata20 = AttributeHierarchy;
|
|
2461
2466
|
|
|
@@ -2465,11 +2470,11 @@ declare type Metadata20 = AttributeHierarchy;
|
|
|
2465
2470
|
declare type Metadata21 = Metadata22 & Metadata23;
|
|
2466
2471
|
|
|
2467
2472
|
declare interface Metadata22 {
|
|
2468
|
-
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";
|
|
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";
|
|
2469
2474
|
[k: string]: unknown;
|
|
2470
2475
|
}
|
|
2471
2476
|
|
|
2472
|
-
declare type Metadata23 =
|
|
2477
|
+
declare type Metadata23 = Parameter;
|
|
2473
2478
|
|
|
2474
2479
|
/**
|
|
2475
2480
|
* JSON schema for Gooddata Analytics
|
|
@@ -2477,11 +2482,23 @@ declare type Metadata23 = Visualisation;
|
|
|
2477
2482
|
declare type Metadata24 = Metadata25 & Metadata26;
|
|
2478
2483
|
|
|
2479
2484
|
declare interface Metadata25 {
|
|
2480
|
-
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";
|
|
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";
|
|
2486
|
+
[k: string]: unknown;
|
|
2487
|
+
}
|
|
2488
|
+
|
|
2489
|
+
declare type Metadata26 = Visualisation;
|
|
2490
|
+
|
|
2491
|
+
/**
|
|
2492
|
+
* JSON schema for Gooddata Analytics
|
|
2493
|
+
*/
|
|
2494
|
+
declare type Metadata27 = Metadata28 & Metadata29;
|
|
2495
|
+
|
|
2496
|
+
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";
|
|
2481
2498
|
[k: string]: unknown;
|
|
2482
2499
|
}
|
|
2483
2500
|
|
|
2484
|
-
declare type
|
|
2501
|
+
declare type Metadata29 = {
|
|
2485
2502
|
[k: string]: unknown;
|
|
2486
2503
|
};
|
|
2487
2504
|
|
|
@@ -2491,7 +2508,7 @@ declare type Metadata26 = {
|
|
|
2491
2508
|
declare type Metadata3 = Metadata4 & Metadata5;
|
|
2492
2509
|
|
|
2493
2510
|
declare interface Metadata4 {
|
|
2494
|
-
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";
|
|
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";
|
|
2495
2512
|
[k: string]: unknown;
|
|
2496
2513
|
}
|
|
2497
2514
|
|
|
@@ -2503,7 +2520,7 @@ declare type Metadata5 = Dataset;
|
|
|
2503
2520
|
declare type Metadata6 = Metadata7 & Metadata8;
|
|
2504
2521
|
|
|
2505
2522
|
declare interface Metadata7 {
|
|
2506
|
-
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";
|
|
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";
|
|
2507
2524
|
[k: string]: unknown;
|
|
2508
2525
|
}
|
|
2509
2526
|
|
|
@@ -3092,6 +3109,51 @@ export declare const metadata_v1: {
|
|
|
3092
3109
|
};
|
|
3093
3110
|
required: string[];
|
|
3094
3111
|
};
|
|
3112
|
+
parameter: {
|
|
3113
|
+
title: string;
|
|
3114
|
+
type: string;
|
|
3115
|
+
additionalProperties: boolean;
|
|
3116
|
+
properties: {
|
|
3117
|
+
id: {
|
|
3118
|
+
$ref: string;
|
|
3119
|
+
description: string;
|
|
3120
|
+
$semantic: ({
|
|
3121
|
+
type: string;
|
|
3122
|
+
source: string;
|
|
3123
|
+
code: string;
|
|
3124
|
+
} | {
|
|
3125
|
+
code?: undefined;
|
|
3126
|
+
type: string;
|
|
3127
|
+
source: string;
|
|
3128
|
+
})[];
|
|
3129
|
+
};
|
|
3130
|
+
type: {
|
|
3131
|
+
type: string;
|
|
3132
|
+
enum: string[];
|
|
3133
|
+
};
|
|
3134
|
+
title: {
|
|
3135
|
+
$ref: string;
|
|
3136
|
+
description: string;
|
|
3137
|
+
};
|
|
3138
|
+
description: {
|
|
3139
|
+
$ref: string;
|
|
3140
|
+
description: string;
|
|
3141
|
+
};
|
|
3142
|
+
tags: {
|
|
3143
|
+
$ref: string;
|
|
3144
|
+
description: string;
|
|
3145
|
+
};
|
|
3146
|
+
definition: {
|
|
3147
|
+
$ref: string;
|
|
3148
|
+
description: string;
|
|
3149
|
+
};
|
|
3150
|
+
};
|
|
3151
|
+
$semantic: {
|
|
3152
|
+
type: string;
|
|
3153
|
+
snippets: string[];
|
|
3154
|
+
};
|
|
3155
|
+
required: string[];
|
|
3156
|
+
};
|
|
3095
3157
|
visualisation: {
|
|
3096
3158
|
$schema: string;
|
|
3097
3159
|
title: string;
|
|
@@ -8885,6 +8947,140 @@ export declare const metadata_v1: {
|
|
|
8885
8947
|
};
|
|
8886
8948
|
required: string[];
|
|
8887
8949
|
};
|
|
8950
|
+
parameter: {
|
|
8951
|
+
title: string;
|
|
8952
|
+
type: string;
|
|
8953
|
+
additionalProperties: boolean;
|
|
8954
|
+
properties: {
|
|
8955
|
+
id: {
|
|
8956
|
+
$ref: string;
|
|
8957
|
+
description: string;
|
|
8958
|
+
$semantic: ({
|
|
8959
|
+
type: string;
|
|
8960
|
+
source: string;
|
|
8961
|
+
code: string;
|
|
8962
|
+
} | {
|
|
8963
|
+
code?: undefined;
|
|
8964
|
+
type: string;
|
|
8965
|
+
source: string;
|
|
8966
|
+
})[];
|
|
8967
|
+
};
|
|
8968
|
+
type: {
|
|
8969
|
+
type: string;
|
|
8970
|
+
enum: string[];
|
|
8971
|
+
};
|
|
8972
|
+
title: {
|
|
8973
|
+
$ref: string;
|
|
8974
|
+
description: string;
|
|
8975
|
+
};
|
|
8976
|
+
description: {
|
|
8977
|
+
$ref: string;
|
|
8978
|
+
description: string;
|
|
8979
|
+
};
|
|
8980
|
+
tags: {
|
|
8981
|
+
$ref: string;
|
|
8982
|
+
description: string;
|
|
8983
|
+
};
|
|
8984
|
+
definition: {
|
|
8985
|
+
$ref: string;
|
|
8986
|
+
description: string;
|
|
8987
|
+
};
|
|
8988
|
+
};
|
|
8989
|
+
$semantic: {
|
|
8990
|
+
type: string;
|
|
8991
|
+
snippets: string[];
|
|
8992
|
+
};
|
|
8993
|
+
required: string[];
|
|
8994
|
+
};
|
|
8995
|
+
parameterDefinition: {
|
|
8996
|
+
title: string;
|
|
8997
|
+
description: string;
|
|
8998
|
+
allOf: {
|
|
8999
|
+
if: {
|
|
9000
|
+
properties: {
|
|
9001
|
+
type: {
|
|
9002
|
+
const: string;
|
|
9003
|
+
};
|
|
9004
|
+
};
|
|
9005
|
+
required: string[];
|
|
9006
|
+
};
|
|
9007
|
+
then: {
|
|
9008
|
+
$ref: string;
|
|
9009
|
+
};
|
|
9010
|
+
}[];
|
|
9011
|
+
properties: {
|
|
9012
|
+
type: {
|
|
9013
|
+
type: string;
|
|
9014
|
+
enum: string[];
|
|
9015
|
+
};
|
|
9016
|
+
};
|
|
9017
|
+
required: string[];
|
|
9018
|
+
};
|
|
9019
|
+
stringParameterDefinition: {
|
|
9020
|
+
title: string;
|
|
9021
|
+
description: string;
|
|
9022
|
+
type: string;
|
|
9023
|
+
additionalProperties: boolean;
|
|
9024
|
+
properties: {
|
|
9025
|
+
type: {
|
|
9026
|
+
type: string;
|
|
9027
|
+
enum: string[];
|
|
9028
|
+
};
|
|
9029
|
+
defaultValue: {
|
|
9030
|
+
type: string;
|
|
9031
|
+
description: string;
|
|
9032
|
+
};
|
|
9033
|
+
constraints: {
|
|
9034
|
+
title: string;
|
|
9035
|
+
type: string;
|
|
9036
|
+
additionalProperties: boolean;
|
|
9037
|
+
description: string;
|
|
9038
|
+
properties: {
|
|
9039
|
+
minLength: {
|
|
9040
|
+
type: string;
|
|
9041
|
+
minimum: number;
|
|
9042
|
+
description: string;
|
|
9043
|
+
};
|
|
9044
|
+
maxLength: {
|
|
9045
|
+
type: string;
|
|
9046
|
+
minimum: number;
|
|
9047
|
+
description: string;
|
|
9048
|
+
};
|
|
9049
|
+
allowedValues: {
|
|
9050
|
+
type: string;
|
|
9051
|
+
minItems: number;
|
|
9052
|
+
description: string;
|
|
9053
|
+
items: {
|
|
9054
|
+
$ref: string;
|
|
9055
|
+
};
|
|
9056
|
+
};
|
|
9057
|
+
};
|
|
9058
|
+
not: {
|
|
9059
|
+
anyOf: {
|
|
9060
|
+
required: string[];
|
|
9061
|
+
}[];
|
|
9062
|
+
};
|
|
9063
|
+
};
|
|
9064
|
+
};
|
|
9065
|
+
required: string[];
|
|
9066
|
+
};
|
|
9067
|
+
parameterAllowedValue: {
|
|
9068
|
+
title: string;
|
|
9069
|
+
type: string;
|
|
9070
|
+
additionalProperties: boolean;
|
|
9071
|
+
properties: {
|
|
9072
|
+
value: {
|
|
9073
|
+
type: string;
|
|
9074
|
+
minLength: number;
|
|
9075
|
+
description: string;
|
|
9076
|
+
};
|
|
9077
|
+
title: {
|
|
9078
|
+
type: string;
|
|
9079
|
+
description: string;
|
|
9080
|
+
};
|
|
9081
|
+
};
|
|
9082
|
+
required: string[];
|
|
9083
|
+
};
|
|
8888
9084
|
plugin: {
|
|
8889
9085
|
title: string;
|
|
8890
9086
|
type: string;
|
|
@@ -10033,6 +10229,42 @@ declare interface NormalDataset {
|
|
|
10033
10229
|
dataset_type?: "standard" | "auxiliary";
|
|
10034
10230
|
}
|
|
10035
10231
|
|
|
10232
|
+
declare interface Parameter {
|
|
10233
|
+
id: Id19;
|
|
10234
|
+
type: "parameter";
|
|
10235
|
+
/**
|
|
10236
|
+
* An optional human readable title for the parameter. Will be derived from id if not provided explicitly.
|
|
10237
|
+
*/
|
|
10238
|
+
title?: string;
|
|
10239
|
+
/**
|
|
10240
|
+
* An optional description of the parameter.
|
|
10241
|
+
*/
|
|
10242
|
+
description?: string;
|
|
10243
|
+
tags?: Tags12;
|
|
10244
|
+
definition: ParameterDefinition;
|
|
10245
|
+
}
|
|
10246
|
+
|
|
10247
|
+
declare interface ParameterAllowedValue {
|
|
10248
|
+
/**
|
|
10249
|
+
* The accepted parameter value.
|
|
10250
|
+
*/
|
|
10251
|
+
value: string;
|
|
10252
|
+
/**
|
|
10253
|
+
* An optional human readable title shown instead of the raw value. Defaults to the value.
|
|
10254
|
+
*/
|
|
10255
|
+
title?: string;
|
|
10256
|
+
}
|
|
10257
|
+
|
|
10258
|
+
/**
|
|
10259
|
+
* The typed definition of the parameter - its data type, default value and constraints.
|
|
10260
|
+
*/
|
|
10261
|
+
declare type ParameterDefinition = ParameterDefinition1;
|
|
10262
|
+
|
|
10263
|
+
/**
|
|
10264
|
+
* A typed parameter definition. Only textual parameters are supported as code.
|
|
10265
|
+
*/
|
|
10266
|
+
declare type ParameterDefinition1 = StringParameterDefinition;
|
|
10267
|
+
|
|
10036
10268
|
/**
|
|
10037
10269
|
* A permission object
|
|
10038
10270
|
*/
|
|
@@ -10048,7 +10280,7 @@ declare interface PieChart {
|
|
|
10048
10280
|
* Type of visualisation.
|
|
10049
10281
|
*/
|
|
10050
10282
|
type: "pie_chart";
|
|
10051
|
-
id:
|
|
10283
|
+
id: Id27;
|
|
10052
10284
|
/**
|
|
10053
10285
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10054
10286
|
*/
|
|
@@ -10057,7 +10289,7 @@ declare interface PieChart {
|
|
|
10057
10289
|
* An optional description of the visualisation.
|
|
10058
10290
|
*/
|
|
10059
10291
|
description?: string;
|
|
10060
|
-
tags?:
|
|
10292
|
+
tags?: Tags20;
|
|
10061
10293
|
/**
|
|
10062
10294
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10063
10295
|
*/
|
|
@@ -10088,7 +10320,7 @@ declare interface PieChart1 {
|
|
|
10088
10320
|
* Type of visualisation.
|
|
10089
10321
|
*/
|
|
10090
10322
|
type: "donut_chart";
|
|
10091
|
-
id:
|
|
10323
|
+
id: Id28;
|
|
10092
10324
|
/**
|
|
10093
10325
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10094
10326
|
*/
|
|
@@ -10097,7 +10329,7 @@ declare interface PieChart1 {
|
|
|
10097
10329
|
* An optional description of the visualisation.
|
|
10098
10330
|
*/
|
|
10099
10331
|
description?: string;
|
|
10100
|
-
tags?:
|
|
10332
|
+
tags?: Tags21;
|
|
10101
10333
|
/**
|
|
10102
10334
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10103
10335
|
*/
|
|
@@ -10259,7 +10491,7 @@ declare interface PyramidChart {
|
|
|
10259
10491
|
* Type of visualisation.
|
|
10260
10492
|
*/
|
|
10261
10493
|
type: "pyramid_chart";
|
|
10262
|
-
id:
|
|
10494
|
+
id: Id30;
|
|
10263
10495
|
/**
|
|
10264
10496
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10265
10497
|
*/
|
|
@@ -10268,7 +10500,7 @@ declare interface PyramidChart {
|
|
|
10268
10500
|
* An optional description of the visualisation.
|
|
10269
10501
|
*/
|
|
10270
10502
|
description?: string;
|
|
10271
|
-
tags?:
|
|
10503
|
+
tags?: Tags23;
|
|
10272
10504
|
/**
|
|
10273
10505
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10274
10506
|
*/
|
|
@@ -10527,7 +10759,7 @@ declare interface RadarChart {
|
|
|
10527
10759
|
* Type of visualisation.
|
|
10528
10760
|
*/
|
|
10529
10761
|
type: "radar_chart";
|
|
10530
|
-
id:
|
|
10762
|
+
id: Id43;
|
|
10531
10763
|
/**
|
|
10532
10764
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10533
10765
|
*/
|
|
@@ -10536,7 +10768,7 @@ declare interface RadarChart {
|
|
|
10536
10768
|
* An optional description of the visualisation.
|
|
10537
10769
|
*/
|
|
10538
10770
|
description?: string;
|
|
10539
|
-
tags?:
|
|
10771
|
+
tags?: Tags35;
|
|
10540
10772
|
/**
|
|
10541
10773
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10542
10774
|
*/
|
|
@@ -10628,7 +10860,7 @@ declare interface RepeaterChart {
|
|
|
10628
10860
|
* Type of visualisation.
|
|
10629
10861
|
*/
|
|
10630
10862
|
type: "repeater_chart";
|
|
10631
|
-
id:
|
|
10863
|
+
id: Id42;
|
|
10632
10864
|
/**
|
|
10633
10865
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10634
10866
|
*/
|
|
@@ -10637,7 +10869,7 @@ declare interface RepeaterChart {
|
|
|
10637
10869
|
* An optional description of the visualisation.
|
|
10638
10870
|
*/
|
|
10639
10871
|
description?: string;
|
|
10640
|
-
tags?:
|
|
10872
|
+
tags?: Tags34;
|
|
10641
10873
|
/**
|
|
10642
10874
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10643
10875
|
*/
|
|
@@ -10692,7 +10924,7 @@ declare interface SankeyChart {
|
|
|
10692
10924
|
* Type of visualisation.
|
|
10693
10925
|
*/
|
|
10694
10926
|
type: "sankey_chart";
|
|
10695
|
-
id:
|
|
10927
|
+
id: Id36;
|
|
10696
10928
|
/**
|
|
10697
10929
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10698
10930
|
*/
|
|
@@ -10701,7 +10933,7 @@ declare interface SankeyChart {
|
|
|
10701
10933
|
* An optional description of the visualisation.
|
|
10702
10934
|
*/
|
|
10703
10935
|
description?: string;
|
|
10704
|
-
tags?:
|
|
10936
|
+
tags?: Tags29;
|
|
10705
10937
|
/**
|
|
10706
10938
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10707
10939
|
*/
|
|
@@ -10734,7 +10966,7 @@ declare interface ScatterChart {
|
|
|
10734
10966
|
* Type of visualisation.
|
|
10735
10967
|
*/
|
|
10736
10968
|
type: "scatter_chart";
|
|
10737
|
-
id:
|
|
10969
|
+
id: Id25;
|
|
10738
10970
|
/**
|
|
10739
10971
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10740
10972
|
*/
|
|
@@ -10743,7 +10975,7 @@ declare interface ScatterChart {
|
|
|
10743
10975
|
* An optional description of the visualisation.
|
|
10744
10976
|
*/
|
|
10745
10977
|
description?: string;
|
|
10746
|
-
tags?:
|
|
10978
|
+
tags?: Tags18;
|
|
10747
10979
|
/**
|
|
10748
10980
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10749
10981
|
*/
|
|
@@ -10878,6 +11110,36 @@ declare interface State {
|
|
|
10878
11110
|
exclude?: (string | number | boolean)[];
|
|
10879
11111
|
}
|
|
10880
11112
|
|
|
11113
|
+
/**
|
|
11114
|
+
* Optional restrictions the parameter value must satisfy. Length bounds and 'allowedValues' are mutually exclusive.
|
|
11115
|
+
*/
|
|
11116
|
+
declare interface StringParameterConstraints {
|
|
11117
|
+
/**
|
|
11118
|
+
* The shortest accepted value length, inclusive.
|
|
11119
|
+
*/
|
|
11120
|
+
minLength?: number;
|
|
11121
|
+
/**
|
|
11122
|
+
* The longest accepted value length, inclusive.
|
|
11123
|
+
*/
|
|
11124
|
+
maxLength?: number;
|
|
11125
|
+
/**
|
|
11126
|
+
* When present, the parameter value must equal one of the listed values.
|
|
11127
|
+
*/
|
|
11128
|
+
allowedValues?: [ParameterAllowedValue, ...ParameterAllowedValue[]];
|
|
11129
|
+
}
|
|
11130
|
+
|
|
11131
|
+
/**
|
|
11132
|
+
* A textual parameter definition. Without 'constraints' the parameter accepts any free-text value.
|
|
11133
|
+
*/
|
|
11134
|
+
declare interface StringParameterDefinition {
|
|
11135
|
+
type: "STRING";
|
|
11136
|
+
/**
|
|
11137
|
+
* The value used whenever the parameter is not overridden.
|
|
11138
|
+
*/
|
|
11139
|
+
defaultValue: string;
|
|
11140
|
+
constraints?: StringParameterConstraints;
|
|
11141
|
+
}
|
|
11142
|
+
|
|
10881
11143
|
declare type StructuredField = AttributeFieldGuard | MetricFieldGuard | CalculatedMetricFieldGuard | InlineMetricFieldGuard | ArithmeticMetricFieldGuard | PoPMetricFieldGuard | PreviousPeriodMetricFieldGuard;
|
|
10882
11144
|
|
|
10883
11145
|
declare interface Tab {
|
|
@@ -10898,7 +11160,7 @@ declare interface Table {
|
|
|
10898
11160
|
* Type of visualisation.
|
|
10899
11161
|
*/
|
|
10900
11162
|
type: "table";
|
|
10901
|
-
id:
|
|
11163
|
+
id: Id20;
|
|
10902
11164
|
/**
|
|
10903
11165
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10904
11166
|
*/
|
|
@@ -10907,7 +11169,7 @@ declare interface Table {
|
|
|
10907
11169
|
* An optional description of the visualisation.
|
|
10908
11170
|
*/
|
|
10909
11171
|
description?: string;
|
|
10910
|
-
tags?:
|
|
11172
|
+
tags?: Tags13;
|
|
10911
11173
|
/**
|
|
10912
11174
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10913
11175
|
*/
|
|
@@ -10959,7 +11221,7 @@ declare type Tags10 = string[];
|
|
|
10959
11221
|
declare type Tags11 = string[];
|
|
10960
11222
|
|
|
10961
11223
|
/**
|
|
10962
|
-
* A list of strings - metadata tags of this
|
|
11224
|
+
* A list of strings - metadata tags of this parameter.
|
|
10963
11225
|
*/
|
|
10964
11226
|
declare type Tags12 = string[];
|
|
10965
11227
|
|
|
@@ -11080,6 +11342,11 @@ declare type Tags33 = string[];
|
|
|
11080
11342
|
*/
|
|
11081
11343
|
declare type Tags34 = string[];
|
|
11082
11344
|
|
|
11345
|
+
/**
|
|
11346
|
+
* A list of strings - metadata tags of this visualisation.
|
|
11347
|
+
*/
|
|
11348
|
+
declare type Tags35 = string[];
|
|
11349
|
+
|
|
11083
11350
|
declare type Tags4 = string[];
|
|
11084
11351
|
|
|
11085
11352
|
/**
|
|
@@ -11203,7 +11470,7 @@ declare interface TreemapChart {
|
|
|
11203
11470
|
* Type of visualisation.
|
|
11204
11471
|
*/
|
|
11205
11472
|
type: "treemap_chart";
|
|
11206
|
-
id:
|
|
11473
|
+
id: Id29;
|
|
11207
11474
|
/**
|
|
11208
11475
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
11209
11476
|
*/
|
|
@@ -11212,7 +11479,7 @@ declare interface TreemapChart {
|
|
|
11212
11479
|
* An optional description of the visualisation.
|
|
11213
11480
|
*/
|
|
11214
11481
|
description?: string;
|
|
11215
|
-
tags?:
|
|
11482
|
+
tags?: Tags22;
|
|
11216
11483
|
/**
|
|
11217
11484
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
11218
11485
|
*/
|
|
@@ -11337,10 +11604,16 @@ export declare namespace v1 {
|
|
|
11337
11604
|
AttributeIdentifier6,
|
|
11338
11605
|
Metadata21,
|
|
11339
11606
|
Metadata23,
|
|
11340
|
-
Visualisation,
|
|
11341
|
-
Visualisation1,
|
|
11342
11607
|
Id19,
|
|
11343
11608
|
Tags12,
|
|
11609
|
+
ParameterDefinition,
|
|
11610
|
+
ParameterDefinition1,
|
|
11611
|
+
Metadata24,
|
|
11612
|
+
Metadata26,
|
|
11613
|
+
Visualisation,
|
|
11614
|
+
Visualisation1,
|
|
11615
|
+
Id20,
|
|
11616
|
+
Tags13,
|
|
11344
11617
|
Field,
|
|
11345
11618
|
AttributeIdentifier7,
|
|
11346
11619
|
Field1,
|
|
@@ -11422,83 +11695,83 @@ export declare namespace v1 {
|
|
|
11422
11695
|
Bucket,
|
|
11423
11696
|
SimpleBucket,
|
|
11424
11697
|
Visualisation2,
|
|
11425
|
-
Id20,
|
|
11426
|
-
Tags13,
|
|
11427
|
-
Visualisation3,
|
|
11428
11698
|
Id21,
|
|
11429
11699
|
Tags14,
|
|
11430
|
-
|
|
11700
|
+
Visualisation3,
|
|
11431
11701
|
Id22,
|
|
11432
11702
|
Tags15,
|
|
11433
|
-
|
|
11703
|
+
Visualisation4,
|
|
11434
11704
|
Id23,
|
|
11435
11705
|
Tags16,
|
|
11436
|
-
|
|
11706
|
+
Visualisation5,
|
|
11437
11707
|
Id24,
|
|
11438
11708
|
Tags17,
|
|
11439
|
-
|
|
11440
|
-
Visualisation7,
|
|
11709
|
+
Visualisation6,
|
|
11441
11710
|
Id25,
|
|
11442
11711
|
Tags18,
|
|
11443
|
-
|
|
11712
|
+
EmptyBucket,
|
|
11713
|
+
Visualisation7,
|
|
11444
11714
|
Id26,
|
|
11445
11715
|
Tags19,
|
|
11446
|
-
|
|
11716
|
+
Visualisation8,
|
|
11447
11717
|
Id27,
|
|
11448
11718
|
Tags20,
|
|
11449
|
-
|
|
11719
|
+
Visualisation9,
|
|
11450
11720
|
Id28,
|
|
11451
11721
|
Tags21,
|
|
11452
|
-
|
|
11722
|
+
Visualisation10,
|
|
11453
11723
|
Id29,
|
|
11454
11724
|
Tags22,
|
|
11455
|
-
|
|
11725
|
+
Visualisation11,
|
|
11456
11726
|
Id30,
|
|
11457
11727
|
Tags23,
|
|
11458
|
-
|
|
11728
|
+
Visualisation12,
|
|
11459
11729
|
Id31,
|
|
11460
11730
|
Tags24,
|
|
11461
|
-
|
|
11731
|
+
Visualisation13,
|
|
11462
11732
|
Id32,
|
|
11463
11733
|
Tags25,
|
|
11464
|
-
|
|
11734
|
+
Visualisation14,
|
|
11465
11735
|
Id33,
|
|
11466
11736
|
Tags26,
|
|
11467
|
-
|
|
11737
|
+
Visualisation15,
|
|
11468
11738
|
Id34,
|
|
11469
11739
|
Tags27,
|
|
11740
|
+
Visualisation16,
|
|
11741
|
+
Id35,
|
|
11742
|
+
Tags28,
|
|
11470
11743
|
Bucket1,
|
|
11471
11744
|
Bucket2,
|
|
11472
11745
|
Visualisation17,
|
|
11473
|
-
|
|
11474
|
-
|
|
11746
|
+
Id36,
|
|
11747
|
+
Tags29,
|
|
11475
11748
|
Bucket3,
|
|
11476
11749
|
Bucket4,
|
|
11477
11750
|
Visualisation18,
|
|
11478
|
-
Id36,
|
|
11479
|
-
Tags29,
|
|
11480
|
-
Visualisation19,
|
|
11481
11751
|
Id37,
|
|
11482
11752
|
Tags30,
|
|
11483
|
-
|
|
11753
|
+
Visualisation19,
|
|
11484
11754
|
Id38,
|
|
11485
11755
|
Tags31,
|
|
11756
|
+
Visualisation20,
|
|
11757
|
+
Id39,
|
|
11758
|
+
Tags32,
|
|
11486
11759
|
PushpinLocationBucket,
|
|
11487
11760
|
LayerItem,
|
|
11488
|
-
|
|
11761
|
+
Id40,
|
|
11489
11762
|
LocationBucket,
|
|
11490
11763
|
GeoAreaBucket,
|
|
11491
11764
|
Visualisation21,
|
|
11492
|
-
Id40,
|
|
11493
|
-
Tags32,
|
|
11494
|
-
Visualisation22,
|
|
11495
11765
|
Id41,
|
|
11496
11766
|
Tags33,
|
|
11497
|
-
|
|
11767
|
+
Visualisation22,
|
|
11498
11768
|
Id42,
|
|
11499
11769
|
Tags34,
|
|
11500
|
-
|
|
11501
|
-
|
|
11770
|
+
Visualisation23,
|
|
11771
|
+
Id43,
|
|
11772
|
+
Tags35,
|
|
11773
|
+
Metadata27,
|
|
11774
|
+
Metadata29,
|
|
11502
11775
|
Metadata1,
|
|
11503
11776
|
Metadata4,
|
|
11504
11777
|
NormalDataset,
|
|
@@ -11555,6 +11828,11 @@ export declare namespace v1 {
|
|
|
11555
11828
|
Metadata19,
|
|
11556
11829
|
AttributeHierarchy,
|
|
11557
11830
|
Metadata22,
|
|
11831
|
+
Parameter,
|
|
11832
|
+
StringParameterDefinition,
|
|
11833
|
+
StringParameterConstraints,
|
|
11834
|
+
ParameterAllowedValue,
|
|
11835
|
+
Metadata25,
|
|
11558
11836
|
Table,
|
|
11559
11837
|
Query,
|
|
11560
11838
|
Fields3,
|
|
@@ -11668,7 +11946,7 @@ export declare namespace v1 {
|
|
|
11668
11946
|
RadarChart,
|
|
11669
11947
|
Query22,
|
|
11670
11948
|
VisualisationConfig23,
|
|
11671
|
-
|
|
11949
|
+
Metadata28
|
|
11672
11950
|
}
|
|
11673
11951
|
}
|
|
11674
11952
|
|
|
@@ -18401,7 +18679,7 @@ declare interface VisualisationWidget1 {
|
|
|
18401
18679
|
}
|
|
18402
18680
|
|
|
18403
18681
|
declare interface VisualizationDataLayer {
|
|
18404
|
-
id:
|
|
18682
|
+
id: Id40;
|
|
18405
18683
|
/**
|
|
18406
18684
|
* An optional human readable title for the layer. Will be derived from id if not provided explicitly.
|
|
18407
18685
|
*/
|
|
@@ -18446,7 +18724,7 @@ declare interface WaterfallChart {
|
|
|
18446
18724
|
* Type of visualisation.
|
|
18447
18725
|
*/
|
|
18448
18726
|
type: "waterfall_chart";
|
|
18449
|
-
id:
|
|
18727
|
+
id: Id34;
|
|
18450
18728
|
/**
|
|
18451
18729
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
18452
18730
|
*/
|
|
@@ -18455,7 +18733,7 @@ declare interface WaterfallChart {
|
|
|
18455
18733
|
* An optional description of the visualisation.
|
|
18456
18734
|
*/
|
|
18457
18735
|
description?: string;
|
|
18458
|
-
tags?:
|
|
18736
|
+
tags?: Tags27;
|
|
18459
18737
|
/**
|
|
18460
18738
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
18461
18739
|
*/
|