@gooddata/sdk-code-schemas 11.53.0 → 11.54.0-alpha.1
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
package/esm/v1/metadata.d.ts
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* JSON schema for Gooddata Analytics
|
|
8
8
|
*/
|
|
9
9
|
export type Metadata = Metadata1 & Metadata2;
|
|
10
|
-
export type Metadata2 = Metadata3 | Metadata6 | Metadata9 | Metadata12 | Metadata15 | Metadata18 | Metadata21 | Metadata24;
|
|
10
|
+
export type Metadata2 = Metadata3 | Metadata6 | Metadata9 | Metadata12 | Metadata15 | Metadata18 | Metadata21 | Metadata24 | Metadata27;
|
|
11
11
|
/**
|
|
12
12
|
* JSON schema for Gooddata Analytics
|
|
13
13
|
*/
|
|
@@ -425,7 +425,28 @@ export type AttributeIdentifier6 = string;
|
|
|
425
425
|
* JSON schema for Gooddata Analytics
|
|
426
426
|
*/
|
|
427
427
|
export type Metadata21 = Metadata22 & Metadata23;
|
|
428
|
-
export type Metadata23 =
|
|
428
|
+
export type Metadata23 = Parameter;
|
|
429
|
+
/**
|
|
430
|
+
* A unique identifier of the parameter.
|
|
431
|
+
*/
|
|
432
|
+
export type Id19 = string;
|
|
433
|
+
/**
|
|
434
|
+
* A list of strings - metadata tags of this parameter.
|
|
435
|
+
*/
|
|
436
|
+
export type Tags12 = string[];
|
|
437
|
+
/**
|
|
438
|
+
* The typed definition of the parameter - its data type, default value and constraints.
|
|
439
|
+
*/
|
|
440
|
+
export type ParameterDefinition = ParameterDefinition1;
|
|
441
|
+
/**
|
|
442
|
+
* A typed parameter definition. Only textual parameters are supported as code.
|
|
443
|
+
*/
|
|
444
|
+
export type ParameterDefinition1 = StringParameterDefinition;
|
|
445
|
+
/**
|
|
446
|
+
* JSON schema for Gooddata Analytics
|
|
447
|
+
*/
|
|
448
|
+
export type Metadata24 = Metadata25 & Metadata26;
|
|
449
|
+
export type Metadata26 = Visualisation;
|
|
429
450
|
/**
|
|
430
451
|
* JSON schema for Gooddata Analytics Visualisation
|
|
431
452
|
*/
|
|
@@ -437,11 +458,11 @@ export type Visualisation1 = Table;
|
|
|
437
458
|
/**
|
|
438
459
|
* A unique identifier of the visualisation.
|
|
439
460
|
*/
|
|
440
|
-
export type
|
|
461
|
+
export type Id20 = string;
|
|
441
462
|
/**
|
|
442
463
|
* A list of strings - metadata tags of this visualisation.
|
|
443
464
|
*/
|
|
444
|
-
export type
|
|
465
|
+
export type Tags13 = string[];
|
|
445
466
|
/**
|
|
446
467
|
* This interface was referenced by `Fields3`'s JSON-Schema definition
|
|
447
468
|
* via the `patternProperty` "^(?!\.)[.A-Za-z0-9_-]\{1,255\}$".
|
|
@@ -701,18 +722,6 @@ export type SimpleBucket = string;
|
|
|
701
722
|
* JSON schema for Gooddata Analytics Visualisation
|
|
702
723
|
*/
|
|
703
724
|
export type Visualisation2 = BarChart;
|
|
704
|
-
/**
|
|
705
|
-
* A unique identifier of the visualisation.
|
|
706
|
-
*/
|
|
707
|
-
export type Id20 = string;
|
|
708
|
-
/**
|
|
709
|
-
* A list of strings - metadata tags of this visualisation.
|
|
710
|
-
*/
|
|
711
|
-
export type Tags13 = string[];
|
|
712
|
-
/**
|
|
713
|
-
* JSON schema for Gooddata Analytics Visualisation
|
|
714
|
-
*/
|
|
715
|
-
export type Visualisation3 = ColumnChart;
|
|
716
725
|
/**
|
|
717
726
|
* A unique identifier of the visualisation.
|
|
718
727
|
*/
|
|
@@ -724,7 +733,7 @@ export type Tags14 = string[];
|
|
|
724
733
|
/**
|
|
725
734
|
* JSON schema for Gooddata Analytics Visualisation
|
|
726
735
|
*/
|
|
727
|
-
export type
|
|
736
|
+
export type Visualisation3 = ColumnChart;
|
|
728
737
|
/**
|
|
729
738
|
* A unique identifier of the visualisation.
|
|
730
739
|
*/
|
|
@@ -736,7 +745,7 @@ export type Tags15 = string[];
|
|
|
736
745
|
/**
|
|
737
746
|
* JSON schema for Gooddata Analytics Visualisation
|
|
738
747
|
*/
|
|
739
|
-
export type
|
|
748
|
+
export type Visualisation4 = LineChart;
|
|
740
749
|
/**
|
|
741
750
|
* A unique identifier of the visualisation.
|
|
742
751
|
*/
|
|
@@ -748,7 +757,7 @@ export type Tags16 = string[];
|
|
|
748
757
|
/**
|
|
749
758
|
* JSON schema for Gooddata Analytics Visualisation
|
|
750
759
|
*/
|
|
751
|
-
export type
|
|
760
|
+
export type Visualisation5 = AreaChart;
|
|
752
761
|
/**
|
|
753
762
|
* A unique identifier of the visualisation.
|
|
754
763
|
*/
|
|
@@ -757,11 +766,10 @@ export type Id24 = string;
|
|
|
757
766
|
* A list of strings - metadata tags of this visualisation.
|
|
758
767
|
*/
|
|
759
768
|
export type Tags17 = string[];
|
|
760
|
-
export type EmptyBucket = null;
|
|
761
769
|
/**
|
|
762
770
|
* JSON schema for Gooddata Analytics Visualisation
|
|
763
771
|
*/
|
|
764
|
-
export type
|
|
772
|
+
export type Visualisation6 = ScatterChart;
|
|
765
773
|
/**
|
|
766
774
|
* A unique identifier of the visualisation.
|
|
767
775
|
*/
|
|
@@ -770,10 +778,11 @@ export type Id25 = string;
|
|
|
770
778
|
* A list of strings - metadata tags of this visualisation.
|
|
771
779
|
*/
|
|
772
780
|
export type Tags18 = string[];
|
|
781
|
+
export type EmptyBucket = null;
|
|
773
782
|
/**
|
|
774
783
|
* JSON schema for Gooddata Analytics Visualisation
|
|
775
784
|
*/
|
|
776
|
-
export type
|
|
785
|
+
export type Visualisation7 = BubbleChart;
|
|
777
786
|
/**
|
|
778
787
|
* A unique identifier of the visualisation.
|
|
779
788
|
*/
|
|
@@ -785,7 +794,7 @@ export type Tags19 = string[];
|
|
|
785
794
|
/**
|
|
786
795
|
* JSON schema for Gooddata Analytics Visualisation
|
|
787
796
|
*/
|
|
788
|
-
export type
|
|
797
|
+
export type Visualisation8 = PieChart;
|
|
789
798
|
/**
|
|
790
799
|
* A unique identifier of the visualisation.
|
|
791
800
|
*/
|
|
@@ -797,7 +806,7 @@ export type Tags20 = string[];
|
|
|
797
806
|
/**
|
|
798
807
|
* JSON schema for Gooddata Analytics Visualisation
|
|
799
808
|
*/
|
|
800
|
-
export type
|
|
809
|
+
export type Visualisation9 = PieChart1;
|
|
801
810
|
/**
|
|
802
811
|
* A unique identifier of the visualisation.
|
|
803
812
|
*/
|
|
@@ -809,7 +818,7 @@ export type Tags21 = string[];
|
|
|
809
818
|
/**
|
|
810
819
|
* JSON schema for Gooddata Analytics Visualisation
|
|
811
820
|
*/
|
|
812
|
-
export type
|
|
821
|
+
export type Visualisation10 = TreemapChart;
|
|
813
822
|
/**
|
|
814
823
|
* A unique identifier of the visualisation.
|
|
815
824
|
*/
|
|
@@ -821,7 +830,7 @@ export type Tags22 = string[];
|
|
|
821
830
|
/**
|
|
822
831
|
* JSON schema for Gooddata Analytics Visualisation
|
|
823
832
|
*/
|
|
824
|
-
export type
|
|
833
|
+
export type Visualisation11 = PyramidChart;
|
|
825
834
|
/**
|
|
826
835
|
* A unique identifier of the visualisation.
|
|
827
836
|
*/
|
|
@@ -833,7 +842,7 @@ export type Tags23 = string[];
|
|
|
833
842
|
/**
|
|
834
843
|
* JSON schema for Gooddata Analytics Visualisation
|
|
835
844
|
*/
|
|
836
|
-
export type
|
|
845
|
+
export type Visualisation12 = FunnelChart;
|
|
837
846
|
/**
|
|
838
847
|
* A unique identifier of the visualisation.
|
|
839
848
|
*/
|
|
@@ -845,7 +854,7 @@ export type Tags24 = string[];
|
|
|
845
854
|
/**
|
|
846
855
|
* JSON schema for Gooddata Analytics Visualisation
|
|
847
856
|
*/
|
|
848
|
-
export type
|
|
857
|
+
export type Visualisation13 = HeatmapChart;
|
|
849
858
|
/**
|
|
850
859
|
* A unique identifier of the visualisation.
|
|
851
860
|
*/
|
|
@@ -857,7 +866,7 @@ export type Tags25 = string[];
|
|
|
857
866
|
/**
|
|
858
867
|
* JSON schema for Gooddata Analytics Visualisation
|
|
859
868
|
*/
|
|
860
|
-
export type
|
|
869
|
+
export type Visualisation14 = BulletChart;
|
|
861
870
|
/**
|
|
862
871
|
* A unique identifier of the visualisation.
|
|
863
872
|
*/
|
|
@@ -869,7 +878,7 @@ export type Tags26 = string[];
|
|
|
869
878
|
/**
|
|
870
879
|
* JSON schema for Gooddata Analytics Visualisation
|
|
871
880
|
*/
|
|
872
|
-
export type
|
|
881
|
+
export type Visualisation15 = WaterfallChart;
|
|
873
882
|
/**
|
|
874
883
|
* A unique identifier of the visualisation.
|
|
875
884
|
*/
|
|
@@ -878,6 +887,18 @@ export type Id34 = string;
|
|
|
878
887
|
* A list of strings - metadata tags of this visualisation.
|
|
879
888
|
*/
|
|
880
889
|
export type Tags27 = string[];
|
|
890
|
+
/**
|
|
891
|
+
* JSON schema for Gooddata Analytics Visualisation
|
|
892
|
+
*/
|
|
893
|
+
export type Visualisation16 = DependencyWheelChart;
|
|
894
|
+
/**
|
|
895
|
+
* A unique identifier of the visualisation.
|
|
896
|
+
*/
|
|
897
|
+
export type Id35 = string;
|
|
898
|
+
/**
|
|
899
|
+
* A list of strings - metadata tags of this visualisation.
|
|
900
|
+
*/
|
|
901
|
+
export type Tags28 = string[];
|
|
881
902
|
/**
|
|
882
903
|
* A from attribute in this visualisation.
|
|
883
904
|
*/
|
|
@@ -893,11 +914,11 @@ export type Visualisation17 = SankeyChart;
|
|
|
893
914
|
/**
|
|
894
915
|
* A unique identifier of the visualisation.
|
|
895
916
|
*/
|
|
896
|
-
export type
|
|
917
|
+
export type Id36 = string;
|
|
897
918
|
/**
|
|
898
919
|
* A list of strings - metadata tags of this visualisation.
|
|
899
920
|
*/
|
|
900
|
-
export type
|
|
921
|
+
export type Tags29 = string[];
|
|
901
922
|
/**
|
|
902
923
|
* A from attribute in this visualisation.
|
|
903
924
|
*/
|
|
@@ -913,11 +934,11 @@ export type Visualisation18 = HeadlineChart;
|
|
|
913
934
|
/**
|
|
914
935
|
* A unique identifier of the visualisation.
|
|
915
936
|
*/
|
|
916
|
-
export type
|
|
937
|
+
export type Id37 = string;
|
|
917
938
|
/**
|
|
918
939
|
* A list of strings - metadata tags of this visualisation.
|
|
919
940
|
*/
|
|
920
|
-
export type
|
|
941
|
+
export type Tags30 = string[];
|
|
921
942
|
/**
|
|
922
943
|
* JSON schema for Gooddata Analytics Visualisation
|
|
923
944
|
*/
|
|
@@ -925,11 +946,11 @@ export type Visualisation19 = ComboChart;
|
|
|
925
946
|
/**
|
|
926
947
|
* A unique identifier of the visualisation.
|
|
927
948
|
*/
|
|
928
|
-
export type
|
|
949
|
+
export type Id38 = string;
|
|
929
950
|
/**
|
|
930
951
|
* A list of strings - metadata tags of this visualisation.
|
|
931
952
|
*/
|
|
932
|
-
export type
|
|
953
|
+
export type Tags31 = string[];
|
|
933
954
|
/**
|
|
934
955
|
* JSON schema for Gooddata Analytics Visualisation
|
|
935
956
|
*/
|
|
@@ -937,11 +958,11 @@ export type Visualisation20 = GeoChart;
|
|
|
937
958
|
/**
|
|
938
959
|
* A unique identifier of the visualisation.
|
|
939
960
|
*/
|
|
940
|
-
export type
|
|
961
|
+
export type Id39 = string;
|
|
941
962
|
/**
|
|
942
963
|
* A list of strings - metadata tags of this visualisation.
|
|
943
964
|
*/
|
|
944
|
-
export type
|
|
965
|
+
export type Tags32 = string[];
|
|
945
966
|
export type PushpinLocationBucket = string;
|
|
946
967
|
export type LayerItem = VisualizationDataLayer | ({
|
|
947
968
|
type: "pushpin";
|
|
@@ -961,7 +982,7 @@ export type LayerItem = VisualizationDataLayer | ({
|
|
|
961
982
|
/**
|
|
962
983
|
* A unique identifier of the visualization data layer.
|
|
963
984
|
*/
|
|
964
|
-
export type
|
|
985
|
+
export type Id40 = string;
|
|
965
986
|
export type LocationBucket = string;
|
|
966
987
|
export type GeoAreaBucket = string;
|
|
967
988
|
/**
|
|
@@ -971,11 +992,11 @@ export type Visualisation21 = GeoAreaChart;
|
|
|
971
992
|
/**
|
|
972
993
|
* A unique identifier of the visualisation.
|
|
973
994
|
*/
|
|
974
|
-
export type
|
|
995
|
+
export type Id41 = string;
|
|
975
996
|
/**
|
|
976
997
|
* A list of strings - metadata tags of this visualisation.
|
|
977
998
|
*/
|
|
978
|
-
export type
|
|
999
|
+
export type Tags33 = string[];
|
|
979
1000
|
/**
|
|
980
1001
|
* JSON schema for Gooddata Analytics Visualisation
|
|
981
1002
|
*/
|
|
@@ -983,11 +1004,11 @@ export type Visualisation22 = RepeaterChart;
|
|
|
983
1004
|
/**
|
|
984
1005
|
* A unique identifier of the visualisation.
|
|
985
1006
|
*/
|
|
986
|
-
export type
|
|
1007
|
+
export type Id42 = string;
|
|
987
1008
|
/**
|
|
988
1009
|
* A list of strings - metadata tags of this visualisation.
|
|
989
1010
|
*/
|
|
990
|
-
export type
|
|
1011
|
+
export type Tags34 = string[];
|
|
991
1012
|
/**
|
|
992
1013
|
* JSON schema for Gooddata Analytics Visualisation
|
|
993
1014
|
*/
|
|
@@ -995,24 +1016,24 @@ export type Visualisation23 = RadarChart;
|
|
|
995
1016
|
/**
|
|
996
1017
|
* A unique identifier of the visualisation.
|
|
997
1018
|
*/
|
|
998
|
-
export type
|
|
1019
|
+
export type Id43 = string;
|
|
999
1020
|
/**
|
|
1000
1021
|
* A list of strings - metadata tags of this visualisation.
|
|
1001
1022
|
*/
|
|
1002
|
-
export type
|
|
1023
|
+
export type Tags35 = string[];
|
|
1003
1024
|
/**
|
|
1004
1025
|
* JSON schema for Gooddata Analytics
|
|
1005
1026
|
*/
|
|
1006
|
-
export type
|
|
1007
|
-
export type
|
|
1027
|
+
export type Metadata27 = Metadata28 & Metadata29;
|
|
1028
|
+
export type Metadata29 = {
|
|
1008
1029
|
[k: string]: unknown;
|
|
1009
1030
|
};
|
|
1010
1031
|
export interface Metadata1 {
|
|
1011
|
-
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";
|
|
1032
|
+
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";
|
|
1012
1033
|
[k: string]: unknown;
|
|
1013
1034
|
}
|
|
1014
1035
|
export interface Metadata4 {
|
|
1015
|
-
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";
|
|
1036
|
+
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";
|
|
1016
1037
|
[k: string]: unknown;
|
|
1017
1038
|
}
|
|
1018
1039
|
export interface NormalDataset {
|
|
@@ -1424,7 +1445,7 @@ export interface Fields2 {
|
|
|
1424
1445
|
};
|
|
1425
1446
|
}
|
|
1426
1447
|
export interface Metadata7 {
|
|
1427
|
-
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";
|
|
1448
|
+
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";
|
|
1428
1449
|
[k: string]: unknown;
|
|
1429
1450
|
}
|
|
1430
1451
|
export interface DateDataset {
|
|
@@ -1450,7 +1471,7 @@ export interface DateDataset {
|
|
|
1450
1471
|
granularities?: ("SECOND" | "MINUTE" | "HOUR" | "DAY" | "WEEK" | "WEEK_US" | "MONTH" | "QUARTER" | "YEAR" | "SECOND_OF_MINUTE" | "SECOND_OF_DAY" | "MINUTE_OF_HOUR" | "MINUTE_OF_DAY" | "HOUR_OF_DAY" | "DAY_OF_WEEK" | "DAY_OF_WEEK_EU" | "DAY_OF_MONTH" | "DAY_OF_YEAR" | "DAY_OF_QUARTER" | "WEEK_OF_YEAR" | "WEEK_OF_YEAR_EU" | "WEEK_OF_QUARTER_EU" | "WEEK_OF_QUARTER" | "MONTH_OF_YEAR" | "MONTH_OF_QUARTER" | "QUARTER_OF_YEAR" | "FISCAL_YEAR" | "FISCAL_QUARTER" | "FISCAL_MONTH")[];
|
|
1451
1472
|
}
|
|
1452
1473
|
export interface Metadata10 {
|
|
1453
|
-
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";
|
|
1474
|
+
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";
|
|
1454
1475
|
[k: string]: unknown;
|
|
1455
1476
|
}
|
|
1456
1477
|
export interface Metric {
|
|
@@ -1484,7 +1505,7 @@ export interface Metric {
|
|
|
1484
1505
|
is_hidden?: boolean;
|
|
1485
1506
|
}
|
|
1486
1507
|
export interface Metadata13 {
|
|
1487
|
-
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";
|
|
1508
|
+
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";
|
|
1488
1509
|
[k: string]: unknown;
|
|
1489
1510
|
}
|
|
1490
1511
|
export interface Dashboard {
|
|
@@ -1983,7 +2004,7 @@ export interface Permission {
|
|
|
1983
2004
|
[k: string]: unknown;
|
|
1984
2005
|
}
|
|
1985
2006
|
export interface Metadata16 {
|
|
1986
|
-
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";
|
|
2007
|
+
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";
|
|
1987
2008
|
[k: string]: unknown;
|
|
1988
2009
|
}
|
|
1989
2010
|
export interface Plugin {
|
|
@@ -2004,7 +2025,7 @@ export interface Plugin {
|
|
|
2004
2025
|
url: string;
|
|
2005
2026
|
}
|
|
2006
2027
|
export interface Metadata19 {
|
|
2007
|
-
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";
|
|
2028
|
+
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";
|
|
2008
2029
|
[k: string]: unknown;
|
|
2009
2030
|
}
|
|
2010
2031
|
export interface AttributeHierarchy {
|
|
@@ -2025,7 +2046,63 @@ export interface AttributeHierarchy {
|
|
|
2025
2046
|
attributes: [AttributeIdentifier6, ...AttributeIdentifier6[]];
|
|
2026
2047
|
}
|
|
2027
2048
|
export interface Metadata22 {
|
|
2028
|
-
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";
|
|
2049
|
+
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";
|
|
2050
|
+
[k: string]: unknown;
|
|
2051
|
+
}
|
|
2052
|
+
export interface Parameter {
|
|
2053
|
+
id: Id19;
|
|
2054
|
+
type: "parameter";
|
|
2055
|
+
/**
|
|
2056
|
+
* An optional human readable title for the parameter. Will be derived from id if not provided explicitly.
|
|
2057
|
+
*/
|
|
2058
|
+
title?: string;
|
|
2059
|
+
/**
|
|
2060
|
+
* An optional description of the parameter.
|
|
2061
|
+
*/
|
|
2062
|
+
description?: string;
|
|
2063
|
+
tags?: Tags12;
|
|
2064
|
+
definition: ParameterDefinition;
|
|
2065
|
+
}
|
|
2066
|
+
/**
|
|
2067
|
+
* A textual parameter definition. Without 'constraints' the parameter accepts any free-text value.
|
|
2068
|
+
*/
|
|
2069
|
+
export interface StringParameterDefinition {
|
|
2070
|
+
type: "STRING";
|
|
2071
|
+
/**
|
|
2072
|
+
* The value used whenever the parameter is not overridden.
|
|
2073
|
+
*/
|
|
2074
|
+
defaultValue: string;
|
|
2075
|
+
constraints?: StringParameterConstraints;
|
|
2076
|
+
}
|
|
2077
|
+
/**
|
|
2078
|
+
* Optional restrictions the parameter value must satisfy. Length bounds and 'allowedValues' are mutually exclusive.
|
|
2079
|
+
*/
|
|
2080
|
+
export interface StringParameterConstraints {
|
|
2081
|
+
/**
|
|
2082
|
+
* The shortest accepted value length, inclusive.
|
|
2083
|
+
*/
|
|
2084
|
+
minLength?: number;
|
|
2085
|
+
/**
|
|
2086
|
+
* The longest accepted value length, inclusive.
|
|
2087
|
+
*/
|
|
2088
|
+
maxLength?: number;
|
|
2089
|
+
/**
|
|
2090
|
+
* When present, the parameter value must equal one of the listed values.
|
|
2091
|
+
*/
|
|
2092
|
+
allowedValues?: [ParameterAllowedValue, ...ParameterAllowedValue[]];
|
|
2093
|
+
}
|
|
2094
|
+
export interface ParameterAllowedValue {
|
|
2095
|
+
/**
|
|
2096
|
+
* The accepted parameter value.
|
|
2097
|
+
*/
|
|
2098
|
+
value: string;
|
|
2099
|
+
/**
|
|
2100
|
+
* An optional human readable title shown instead of the raw value. Defaults to the value.
|
|
2101
|
+
*/
|
|
2102
|
+
title?: string;
|
|
2103
|
+
}
|
|
2104
|
+
export interface Metadata25 {
|
|
2105
|
+
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";
|
|
2029
2106
|
[k: string]: unknown;
|
|
2030
2107
|
}
|
|
2031
2108
|
export interface Table {
|
|
@@ -2033,7 +2110,7 @@ export interface Table {
|
|
|
2033
2110
|
* Type of visualisation.
|
|
2034
2111
|
*/
|
|
2035
2112
|
type: "table";
|
|
2036
|
-
id:
|
|
2113
|
+
id: Id20;
|
|
2037
2114
|
/**
|
|
2038
2115
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
2039
2116
|
*/
|
|
@@ -2042,7 +2119,7 @@ export interface Table {
|
|
|
2042
2119
|
* An optional description of the visualisation.
|
|
2043
2120
|
*/
|
|
2044
2121
|
description?: string;
|
|
2045
|
-
tags?:
|
|
2122
|
+
tags?: Tags13;
|
|
2046
2123
|
/**
|
|
2047
2124
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
2048
2125
|
*/
|
|
@@ -3000,7 +3077,7 @@ export interface BarChart {
|
|
|
3000
3077
|
* Type of visualisation.
|
|
3001
3078
|
*/
|
|
3002
3079
|
type: "bar_chart";
|
|
3003
|
-
id:
|
|
3080
|
+
id: Id21;
|
|
3004
3081
|
/**
|
|
3005
3082
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
3006
3083
|
*/
|
|
@@ -3009,7 +3086,7 @@ export interface BarChart {
|
|
|
3009
3086
|
* An optional description of the visualisation.
|
|
3010
3087
|
*/
|
|
3011
3088
|
description?: string;
|
|
3012
|
-
tags?:
|
|
3089
|
+
tags?: Tags14;
|
|
3013
3090
|
/**
|
|
3014
3091
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
3015
3092
|
*/
|
|
@@ -3322,7 +3399,7 @@ export interface ColumnChart {
|
|
|
3322
3399
|
* Type of visualisation.
|
|
3323
3400
|
*/
|
|
3324
3401
|
type: "column_chart";
|
|
3325
|
-
id:
|
|
3402
|
+
id: Id22;
|
|
3326
3403
|
/**
|
|
3327
3404
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
3328
3405
|
*/
|
|
@@ -3331,7 +3408,7 @@ export interface ColumnChart {
|
|
|
3331
3408
|
* An optional description of the visualisation.
|
|
3332
3409
|
*/
|
|
3333
3410
|
description?: string;
|
|
3334
|
-
tags?:
|
|
3411
|
+
tags?: Tags15;
|
|
3335
3412
|
/**
|
|
3336
3413
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
3337
3414
|
*/
|
|
@@ -3644,7 +3721,7 @@ export interface LineChart {
|
|
|
3644
3721
|
* Type of visualisation.
|
|
3645
3722
|
*/
|
|
3646
3723
|
type: "line_chart";
|
|
3647
|
-
id:
|
|
3724
|
+
id: Id23;
|
|
3648
3725
|
/**
|
|
3649
3726
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
3650
3727
|
*/
|
|
@@ -3653,7 +3730,7 @@ export interface LineChart {
|
|
|
3653
3730
|
* An optional description of the visualisation.
|
|
3654
3731
|
*/
|
|
3655
3732
|
description?: string;
|
|
3656
|
-
tags?:
|
|
3733
|
+
tags?: Tags16;
|
|
3657
3734
|
/**
|
|
3658
3735
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
3659
3736
|
*/
|
|
@@ -3966,7 +4043,7 @@ export interface AreaChart {
|
|
|
3966
4043
|
* Type of visualisation.
|
|
3967
4044
|
*/
|
|
3968
4045
|
type: "area_chart";
|
|
3969
|
-
id:
|
|
4046
|
+
id: Id24;
|
|
3970
4047
|
/**
|
|
3971
4048
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
3972
4049
|
*/
|
|
@@ -3975,7 +4052,7 @@ export interface AreaChart {
|
|
|
3975
4052
|
* An optional description of the visualisation.
|
|
3976
4053
|
*/
|
|
3977
4054
|
description?: string;
|
|
3978
|
-
tags?:
|
|
4055
|
+
tags?: Tags17;
|
|
3979
4056
|
/**
|
|
3980
4057
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
3981
4058
|
*/
|
|
@@ -4288,7 +4365,7 @@ export interface ScatterChart {
|
|
|
4288
4365
|
* Type of visualisation.
|
|
4289
4366
|
*/
|
|
4290
4367
|
type: "scatter_chart";
|
|
4291
|
-
id:
|
|
4368
|
+
id: Id25;
|
|
4292
4369
|
/**
|
|
4293
4370
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
4294
4371
|
*/
|
|
@@ -4297,7 +4374,7 @@ export interface ScatterChart {
|
|
|
4297
4374
|
* An optional description of the visualisation.
|
|
4298
4375
|
*/
|
|
4299
4376
|
description?: string;
|
|
4300
|
-
tags?:
|
|
4377
|
+
tags?: Tags18;
|
|
4301
4378
|
/**
|
|
4302
4379
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
4303
4380
|
*/
|
|
@@ -4610,7 +4687,7 @@ export interface BubbleChart {
|
|
|
4610
4687
|
* Type of visualisation.
|
|
4611
4688
|
*/
|
|
4612
4689
|
type: "bubble_chart";
|
|
4613
|
-
id:
|
|
4690
|
+
id: Id26;
|
|
4614
4691
|
/**
|
|
4615
4692
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
4616
4693
|
*/
|
|
@@ -4619,7 +4696,7 @@ export interface BubbleChart {
|
|
|
4619
4696
|
* An optional description of the visualisation.
|
|
4620
4697
|
*/
|
|
4621
4698
|
description?: string;
|
|
4622
|
-
tags?:
|
|
4699
|
+
tags?: Tags19;
|
|
4623
4700
|
/**
|
|
4624
4701
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
4625
4702
|
*/
|
|
@@ -4932,7 +5009,7 @@ export interface PieChart {
|
|
|
4932
5009
|
* Type of visualisation.
|
|
4933
5010
|
*/
|
|
4934
5011
|
type: "pie_chart";
|
|
4935
|
-
id:
|
|
5012
|
+
id: Id27;
|
|
4936
5013
|
/**
|
|
4937
5014
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
4938
5015
|
*/
|
|
@@ -4941,7 +5018,7 @@ export interface PieChart {
|
|
|
4941
5018
|
* An optional description of the visualisation.
|
|
4942
5019
|
*/
|
|
4943
5020
|
description?: string;
|
|
4944
|
-
tags?:
|
|
5021
|
+
tags?: Tags20;
|
|
4945
5022
|
/**
|
|
4946
5023
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
4947
5024
|
*/
|
|
@@ -5250,7 +5327,7 @@ export interface PieChart1 {
|
|
|
5250
5327
|
* Type of visualisation.
|
|
5251
5328
|
*/
|
|
5252
5329
|
type: "donut_chart";
|
|
5253
|
-
id:
|
|
5330
|
+
id: Id28;
|
|
5254
5331
|
/**
|
|
5255
5332
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
5256
5333
|
*/
|
|
@@ -5259,7 +5336,7 @@ export interface PieChart1 {
|
|
|
5259
5336
|
* An optional description of the visualisation.
|
|
5260
5337
|
*/
|
|
5261
5338
|
description?: string;
|
|
5262
|
-
tags?:
|
|
5339
|
+
tags?: Tags21;
|
|
5263
5340
|
/**
|
|
5264
5341
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
5265
5342
|
*/
|
|
@@ -5568,7 +5645,7 @@ export interface TreemapChart {
|
|
|
5568
5645
|
* Type of visualisation.
|
|
5569
5646
|
*/
|
|
5570
5647
|
type: "treemap_chart";
|
|
5571
|
-
id:
|
|
5648
|
+
id: Id29;
|
|
5572
5649
|
/**
|
|
5573
5650
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
5574
5651
|
*/
|
|
@@ -5577,7 +5654,7 @@ export interface TreemapChart {
|
|
|
5577
5654
|
* An optional description of the visualisation.
|
|
5578
5655
|
*/
|
|
5579
5656
|
description?: string;
|
|
5580
|
-
tags?:
|
|
5657
|
+
tags?: Tags22;
|
|
5581
5658
|
/**
|
|
5582
5659
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
5583
5660
|
*/
|
|
@@ -5886,7 +5963,7 @@ export interface PyramidChart {
|
|
|
5886
5963
|
* Type of visualisation.
|
|
5887
5964
|
*/
|
|
5888
5965
|
type: "pyramid_chart";
|
|
5889
|
-
id:
|
|
5966
|
+
id: Id30;
|
|
5890
5967
|
/**
|
|
5891
5968
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
5892
5969
|
*/
|
|
@@ -5895,7 +5972,7 @@ export interface PyramidChart {
|
|
|
5895
5972
|
* An optional description of the visualisation.
|
|
5896
5973
|
*/
|
|
5897
5974
|
description?: string;
|
|
5898
|
-
tags?:
|
|
5975
|
+
tags?: Tags23;
|
|
5899
5976
|
/**
|
|
5900
5977
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
5901
5978
|
*/
|
|
@@ -6204,7 +6281,7 @@ export interface FunnelChart {
|
|
|
6204
6281
|
* Type of visualisation.
|
|
6205
6282
|
*/
|
|
6206
6283
|
type: "funnel_chart";
|
|
6207
|
-
id:
|
|
6284
|
+
id: Id31;
|
|
6208
6285
|
/**
|
|
6209
6286
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
6210
6287
|
*/
|
|
@@ -6213,7 +6290,7 @@ export interface FunnelChart {
|
|
|
6213
6290
|
* An optional description of the visualisation.
|
|
6214
6291
|
*/
|
|
6215
6292
|
description?: string;
|
|
6216
|
-
tags?:
|
|
6293
|
+
tags?: Tags24;
|
|
6217
6294
|
/**
|
|
6218
6295
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
6219
6296
|
*/
|
|
@@ -6522,7 +6599,7 @@ export interface HeatmapChart {
|
|
|
6522
6599
|
* Type of visualisation.
|
|
6523
6600
|
*/
|
|
6524
6601
|
type: "heatmap_chart";
|
|
6525
|
-
id:
|
|
6602
|
+
id: Id32;
|
|
6526
6603
|
/**
|
|
6527
6604
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
6528
6605
|
*/
|
|
@@ -6531,7 +6608,7 @@ export interface HeatmapChart {
|
|
|
6531
6608
|
* An optional description of the visualisation.
|
|
6532
6609
|
*/
|
|
6533
6610
|
description?: string;
|
|
6534
|
-
tags?:
|
|
6611
|
+
tags?: Tags25;
|
|
6535
6612
|
/**
|
|
6536
6613
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
6537
6614
|
*/
|
|
@@ -6848,7 +6925,7 @@ export interface BulletChart {
|
|
|
6848
6925
|
* Type of visualisation.
|
|
6849
6926
|
*/
|
|
6850
6927
|
type: "bullet_chart";
|
|
6851
|
-
id:
|
|
6928
|
+
id: Id33;
|
|
6852
6929
|
/**
|
|
6853
6930
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
6854
6931
|
*/
|
|
@@ -6857,7 +6934,7 @@ export interface BulletChart {
|
|
|
6857
6934
|
* An optional description of the visualisation.
|
|
6858
6935
|
*/
|
|
6859
6936
|
description?: string;
|
|
6860
|
-
tags?:
|
|
6937
|
+
tags?: Tags26;
|
|
6861
6938
|
/**
|
|
6862
6939
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
6863
6940
|
*/
|
|
@@ -7166,7 +7243,7 @@ export interface WaterfallChart {
|
|
|
7166
7243
|
* Type of visualisation.
|
|
7167
7244
|
*/
|
|
7168
7245
|
type: "waterfall_chart";
|
|
7169
|
-
id:
|
|
7246
|
+
id: Id34;
|
|
7170
7247
|
/**
|
|
7171
7248
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
7172
7249
|
*/
|
|
@@ -7175,7 +7252,7 @@ export interface WaterfallChart {
|
|
|
7175
7252
|
* An optional description of the visualisation.
|
|
7176
7253
|
*/
|
|
7177
7254
|
description?: string;
|
|
7178
|
-
tags?:
|
|
7255
|
+
tags?: Tags27;
|
|
7179
7256
|
/**
|
|
7180
7257
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
7181
7258
|
*/
|
|
@@ -7484,7 +7561,7 @@ export interface DependencyWheelChart {
|
|
|
7484
7561
|
* Type of visualisation.
|
|
7485
7562
|
*/
|
|
7486
7563
|
type: "dependency_wheel_chart";
|
|
7487
|
-
id:
|
|
7564
|
+
id: Id35;
|
|
7488
7565
|
/**
|
|
7489
7566
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
7490
7567
|
*/
|
|
@@ -7493,7 +7570,7 @@ export interface DependencyWheelChart {
|
|
|
7493
7570
|
* An optional description of the visualisation.
|
|
7494
7571
|
*/
|
|
7495
7572
|
description?: string;
|
|
7496
|
-
tags?:
|
|
7573
|
+
tags?: Tags28;
|
|
7497
7574
|
/**
|
|
7498
7575
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
7499
7576
|
*/
|
|
@@ -7804,7 +7881,7 @@ export interface SankeyChart {
|
|
|
7804
7881
|
* Type of visualisation.
|
|
7805
7882
|
*/
|
|
7806
7883
|
type: "sankey_chart";
|
|
7807
|
-
id:
|
|
7884
|
+
id: Id36;
|
|
7808
7885
|
/**
|
|
7809
7886
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
7810
7887
|
*/
|
|
@@ -7813,7 +7890,7 @@ export interface SankeyChart {
|
|
|
7813
7890
|
* An optional description of the visualisation.
|
|
7814
7891
|
*/
|
|
7815
7892
|
description?: string;
|
|
7816
|
-
tags?:
|
|
7893
|
+
tags?: Tags29;
|
|
7817
7894
|
/**
|
|
7818
7895
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
7819
7896
|
*/
|
|
@@ -8124,7 +8201,7 @@ export interface HeadlineChart {
|
|
|
8124
8201
|
* Type of visualisation.
|
|
8125
8202
|
*/
|
|
8126
8203
|
type: "headline_chart";
|
|
8127
|
-
id:
|
|
8204
|
+
id: Id37;
|
|
8128
8205
|
/**
|
|
8129
8206
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
8130
8207
|
*/
|
|
@@ -8133,7 +8210,7 @@ export interface HeadlineChart {
|
|
|
8133
8210
|
* An optional description of the visualisation.
|
|
8134
8211
|
*/
|
|
8135
8212
|
description?: string;
|
|
8136
|
-
tags?:
|
|
8213
|
+
tags?: Tags30;
|
|
8137
8214
|
/**
|
|
8138
8215
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
8139
8216
|
*/
|
|
@@ -8442,7 +8519,7 @@ export interface ComboChart {
|
|
|
8442
8519
|
* Type of visualisation.
|
|
8443
8520
|
*/
|
|
8444
8521
|
type: "combo_chart";
|
|
8445
|
-
id:
|
|
8522
|
+
id: Id38;
|
|
8446
8523
|
/**
|
|
8447
8524
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
8448
8525
|
*/
|
|
@@ -8451,7 +8528,7 @@ export interface ComboChart {
|
|
|
8451
8528
|
* An optional description of the visualisation.
|
|
8452
8529
|
*/
|
|
8453
8530
|
description?: string;
|
|
8454
|
-
tags?:
|
|
8531
|
+
tags?: Tags31;
|
|
8455
8532
|
/**
|
|
8456
8533
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
8457
8534
|
*/
|
|
@@ -8760,7 +8837,7 @@ export interface GeoChart {
|
|
|
8760
8837
|
* Type of visualisation.
|
|
8761
8838
|
*/
|
|
8762
8839
|
type: "geo_chart";
|
|
8763
|
-
id:
|
|
8840
|
+
id: Id39;
|
|
8764
8841
|
/**
|
|
8765
8842
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
8766
8843
|
*/
|
|
@@ -8769,7 +8846,7 @@ export interface GeoChart {
|
|
|
8769
8846
|
* An optional description of the visualisation.
|
|
8770
8847
|
*/
|
|
8771
8848
|
description?: string;
|
|
8772
|
-
tags?:
|
|
8849
|
+
tags?: Tags32;
|
|
8773
8850
|
/**
|
|
8774
8851
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
8775
8852
|
*/
|
|
@@ -9078,7 +9155,7 @@ export interface VisualisationConfig19 {
|
|
|
9078
9155
|
[k: string]: unknown;
|
|
9079
9156
|
}
|
|
9080
9157
|
export interface VisualizationDataLayer {
|
|
9081
|
-
id:
|
|
9158
|
+
id: Id40;
|
|
9082
9159
|
/**
|
|
9083
9160
|
* An optional human readable title for the layer. Will be derived from id if not provided explicitly.
|
|
9084
9161
|
*/
|
|
@@ -9377,7 +9454,7 @@ export interface GeoAreaChart {
|
|
|
9377
9454
|
* Type of visualisation.
|
|
9378
9455
|
*/
|
|
9379
9456
|
type: "geo_area_chart";
|
|
9380
|
-
id:
|
|
9457
|
+
id: Id41;
|
|
9381
9458
|
/**
|
|
9382
9459
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
9383
9460
|
*/
|
|
@@ -9386,7 +9463,7 @@ export interface GeoAreaChart {
|
|
|
9386
9463
|
* An optional description of the visualisation.
|
|
9387
9464
|
*/
|
|
9388
9465
|
description?: string;
|
|
9389
|
-
tags?:
|
|
9466
|
+
tags?: Tags33;
|
|
9390
9467
|
/**
|
|
9391
9468
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
9392
9469
|
*/
|
|
@@ -9699,7 +9776,7 @@ export interface RepeaterChart {
|
|
|
9699
9776
|
* Type of visualisation.
|
|
9700
9777
|
*/
|
|
9701
9778
|
type: "repeater_chart";
|
|
9702
|
-
id:
|
|
9779
|
+
id: Id42;
|
|
9703
9780
|
/**
|
|
9704
9781
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
9705
9782
|
*/
|
|
@@ -9708,7 +9785,7 @@ export interface RepeaterChart {
|
|
|
9708
9785
|
* An optional description of the visualisation.
|
|
9709
9786
|
*/
|
|
9710
9787
|
description?: string;
|
|
9711
|
-
tags?:
|
|
9788
|
+
tags?: Tags34;
|
|
9712
9789
|
/**
|
|
9713
9790
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
9714
9791
|
*/
|
|
@@ -10025,7 +10102,7 @@ export interface RadarChart {
|
|
|
10025
10102
|
* Type of visualisation.
|
|
10026
10103
|
*/
|
|
10027
10104
|
type: "radar_chart";
|
|
10028
|
-
id:
|
|
10105
|
+
id: Id43;
|
|
10029
10106
|
/**
|
|
10030
10107
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10031
10108
|
*/
|
|
@@ -10034,7 +10111,7 @@ export interface RadarChart {
|
|
|
10034
10111
|
* An optional description of the visualisation.
|
|
10035
10112
|
*/
|
|
10036
10113
|
description?: string;
|
|
10037
|
-
tags?:
|
|
10114
|
+
tags?: Tags35;
|
|
10038
10115
|
/**
|
|
10039
10116
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10040
10117
|
*/
|
|
@@ -10338,8 +10415,8 @@ export interface VisualisationConfig23 {
|
|
|
10338
10415
|
};
|
|
10339
10416
|
[k: string]: unknown;
|
|
10340
10417
|
}
|
|
10341
|
-
export interface
|
|
10342
|
-
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";
|
|
10418
|
+
export interface Metadata28 {
|
|
10419
|
+
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";
|
|
10343
10420
|
[k: string]: unknown;
|
|
10344
10421
|
}
|
|
10345
10422
|
//# sourceMappingURL=metadata.d.ts.map
|