@gooddata/sdk-code-schemas 11.54.0-alpha.5 → 11.54.0-alpha.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/sdk-code-schemas.d.ts +303 -149
- package/esm/v1/metadata.d.ts +189 -151
- package/esm/v1/metadata.d.ts.map +1 -1
- package/esm/v1/metadata.json +92 -0
- package/esm/v1/schema.d.ts +104 -0
- package/esm/v1/schema.d.ts.map +1 -1
- package/package.json +4 -4
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 | Metadata27;
|
|
10
|
+
export type Metadata2 = Metadata3 | Metadata6 | Metadata9 | Metadata12 | Metadata15 | Metadata18 | Metadata21 | Metadata24 | Metadata27 | Metadata30;
|
|
11
11
|
/**
|
|
12
12
|
* JSON schema for Gooddata Analytics
|
|
13
13
|
*/
|
|
@@ -103,25 +103,38 @@ export type Tags8 = string[];
|
|
|
103
103
|
* JSON schema for Gooddata Analytics
|
|
104
104
|
*/
|
|
105
105
|
export type Metadata12 = Metadata13 & Metadata14;
|
|
106
|
-
export type Metadata14 =
|
|
106
|
+
export type Metadata14 = ComputedAttribute;
|
|
107
107
|
/**
|
|
108
|
-
* A unique identifier of the
|
|
108
|
+
* A unique identifier of the computed attribute. Must not collide with the identifier of an attribute or a label.
|
|
109
109
|
*/
|
|
110
110
|
export type Id8 = string;
|
|
111
111
|
/**
|
|
112
|
-
* A list of strings - metadata tags of this
|
|
112
|
+
* A list of strings - metadata tags of this computed attribute.
|
|
113
113
|
*/
|
|
114
114
|
export type Tags9 = string[];
|
|
115
|
+
/**
|
|
116
|
+
* JSON schema for Gooddata Analytics
|
|
117
|
+
*/
|
|
118
|
+
export type Metadata15 = Metadata16 & Metadata17;
|
|
119
|
+
export type Metadata17 = Dashboard;
|
|
120
|
+
/**
|
|
121
|
+
* A unique identifier of the dashboard.
|
|
122
|
+
*/
|
|
123
|
+
export type Id9 = string;
|
|
124
|
+
/**
|
|
125
|
+
* A list of strings - metadata tags of this dashboard.
|
|
126
|
+
*/
|
|
127
|
+
export type Tags10 = string[];
|
|
115
128
|
export type Widget = Widget1 | Widget2 | Widget3 | Widget4;
|
|
116
129
|
export type Widget1 = VisualisationWidget;
|
|
117
130
|
/**
|
|
118
131
|
* A unique identifier of the widget.
|
|
119
132
|
*/
|
|
120
|
-
export type
|
|
133
|
+
export type Id10 = string;
|
|
121
134
|
/**
|
|
122
135
|
* An id of the date dataset to be used for date filtering in this widget
|
|
123
136
|
*/
|
|
124
|
-
export type
|
|
137
|
+
export type Id11 = string;
|
|
125
138
|
/**
|
|
126
139
|
* An interaction for current widget.
|
|
127
140
|
*/
|
|
@@ -226,17 +239,17 @@ export type Widget2 = RichTextWidget;
|
|
|
226
239
|
/**
|
|
227
240
|
* A unique identifier of the widget.
|
|
228
241
|
*/
|
|
229
|
-
export type
|
|
242
|
+
export type Id12 = string;
|
|
230
243
|
export type Widget3 = VisualizationSwitcherWidget;
|
|
231
244
|
/**
|
|
232
245
|
* A unique identifier of the widget.
|
|
233
246
|
*/
|
|
234
|
-
export type
|
|
247
|
+
export type Id13 = string;
|
|
235
248
|
export type Widget4 = ContainerWidget;
|
|
236
249
|
/**
|
|
237
250
|
* A unique identifier of the widget.
|
|
238
251
|
*/
|
|
239
|
-
export type
|
|
252
|
+
export type Id14 = string;
|
|
240
253
|
/**
|
|
241
254
|
* A dashboard attribute filter
|
|
242
255
|
*/
|
|
@@ -382,41 +395,41 @@ export type DisplayAsLabelIdentifier3 = string;
|
|
|
382
395
|
/**
|
|
383
396
|
* An unique identifier of the plugin.
|
|
384
397
|
*/
|
|
385
|
-
export type
|
|
398
|
+
export type Id15 = string;
|
|
386
399
|
/**
|
|
387
400
|
* An unique identifier of the plugin.
|
|
388
401
|
*/
|
|
389
|
-
export type
|
|
402
|
+
export type Id16 = string;
|
|
390
403
|
/**
|
|
391
404
|
* A unique identifier of the tab.
|
|
392
405
|
*/
|
|
393
|
-
export type
|
|
406
|
+
export type Id17 = string;
|
|
394
407
|
/**
|
|
395
408
|
* JSON schema for Gooddata Analytics
|
|
396
409
|
*/
|
|
397
|
-
export type
|
|
398
|
-
export type
|
|
410
|
+
export type Metadata18 = Metadata19 & Metadata20;
|
|
411
|
+
export type Metadata20 = Plugin;
|
|
399
412
|
/**
|
|
400
413
|
* A unique identifier of the plugin.
|
|
401
414
|
*/
|
|
402
|
-
export type
|
|
415
|
+
export type Id18 = string;
|
|
403
416
|
/**
|
|
404
417
|
* A list of strings - metadata tags of this plugin.
|
|
405
418
|
*/
|
|
406
|
-
export type
|
|
419
|
+
export type Tags11 = string[];
|
|
407
420
|
/**
|
|
408
421
|
* JSON schema for Gooddata Analytics
|
|
409
422
|
*/
|
|
410
|
-
export type
|
|
411
|
-
export type
|
|
423
|
+
export type Metadata21 = Metadata22 & Metadata23;
|
|
424
|
+
export type Metadata23 = AttributeHierarchy;
|
|
412
425
|
/**
|
|
413
426
|
* A unique identifier of the attribute hierarchy.
|
|
414
427
|
*/
|
|
415
|
-
export type
|
|
428
|
+
export type Id19 = string;
|
|
416
429
|
/**
|
|
417
430
|
* A list of strings - metadata tags of this attribute hierarchy.
|
|
418
431
|
*/
|
|
419
|
-
export type
|
|
432
|
+
export type Tags12 = string[];
|
|
420
433
|
/**
|
|
421
434
|
* A attribute identifier in the form of attribute/\{id\}.
|
|
422
435
|
*/
|
|
@@ -424,16 +437,16 @@ export type AttributeIdentifier6 = string;
|
|
|
424
437
|
/**
|
|
425
438
|
* JSON schema for Gooddata Analytics
|
|
426
439
|
*/
|
|
427
|
-
export type
|
|
428
|
-
export type
|
|
440
|
+
export type Metadata24 = Metadata25 & Metadata26;
|
|
441
|
+
export type Metadata26 = Parameter;
|
|
429
442
|
/**
|
|
430
443
|
* A unique identifier of the parameter.
|
|
431
444
|
*/
|
|
432
|
-
export type
|
|
445
|
+
export type Id20 = string;
|
|
433
446
|
/**
|
|
434
447
|
* A list of strings - metadata tags of this parameter.
|
|
435
448
|
*/
|
|
436
|
-
export type
|
|
449
|
+
export type Tags13 = string[];
|
|
437
450
|
/**
|
|
438
451
|
* The typed definition of the parameter - its data type, default value and constraints.
|
|
439
452
|
*/
|
|
@@ -445,8 +458,8 @@ export type ParameterDefinition1 = StringParameterDefinition;
|
|
|
445
458
|
/**
|
|
446
459
|
* JSON schema for Gooddata Analytics
|
|
447
460
|
*/
|
|
448
|
-
export type
|
|
449
|
-
export type
|
|
461
|
+
export type Metadata27 = Metadata28 & Metadata29;
|
|
462
|
+
export type Metadata29 = Visualisation;
|
|
450
463
|
/**
|
|
451
464
|
* JSON schema for Gooddata Analytics Visualisation
|
|
452
465
|
*/
|
|
@@ -458,11 +471,11 @@ export type Visualisation1 = Table;
|
|
|
458
471
|
/**
|
|
459
472
|
* A unique identifier of the visualisation.
|
|
460
473
|
*/
|
|
461
|
-
export type
|
|
474
|
+
export type Id21 = string;
|
|
462
475
|
/**
|
|
463
476
|
* A list of strings - metadata tags of this visualisation.
|
|
464
477
|
*/
|
|
465
|
-
export type
|
|
478
|
+
export type Tags14 = string[];
|
|
466
479
|
/**
|
|
467
480
|
* This interface was referenced by `Fields3`'s JSON-Schema definition
|
|
468
481
|
* via the `patternProperty` "^(?!\.)[.A-Za-z0-9_-]\{1,255\}$".
|
|
@@ -722,18 +735,6 @@ export type SimpleBucket = string;
|
|
|
722
735
|
* JSON schema for Gooddata Analytics Visualisation
|
|
723
736
|
*/
|
|
724
737
|
export type Visualisation2 = BarChart;
|
|
725
|
-
/**
|
|
726
|
-
* A unique identifier of the visualisation.
|
|
727
|
-
*/
|
|
728
|
-
export type Id21 = string;
|
|
729
|
-
/**
|
|
730
|
-
* A list of strings - metadata tags of this visualisation.
|
|
731
|
-
*/
|
|
732
|
-
export type Tags14 = string[];
|
|
733
|
-
/**
|
|
734
|
-
* JSON schema for Gooddata Analytics Visualisation
|
|
735
|
-
*/
|
|
736
|
-
export type Visualisation3 = ColumnChart;
|
|
737
738
|
/**
|
|
738
739
|
* A unique identifier of the visualisation.
|
|
739
740
|
*/
|
|
@@ -745,7 +746,7 @@ export type Tags15 = string[];
|
|
|
745
746
|
/**
|
|
746
747
|
* JSON schema for Gooddata Analytics Visualisation
|
|
747
748
|
*/
|
|
748
|
-
export type
|
|
749
|
+
export type Visualisation3 = ColumnChart;
|
|
749
750
|
/**
|
|
750
751
|
* A unique identifier of the visualisation.
|
|
751
752
|
*/
|
|
@@ -757,7 +758,7 @@ export type Tags16 = string[];
|
|
|
757
758
|
/**
|
|
758
759
|
* JSON schema for Gooddata Analytics Visualisation
|
|
759
760
|
*/
|
|
760
|
-
export type
|
|
761
|
+
export type Visualisation4 = LineChart;
|
|
761
762
|
/**
|
|
762
763
|
* A unique identifier of the visualisation.
|
|
763
764
|
*/
|
|
@@ -769,7 +770,7 @@ export type Tags17 = string[];
|
|
|
769
770
|
/**
|
|
770
771
|
* JSON schema for Gooddata Analytics Visualisation
|
|
771
772
|
*/
|
|
772
|
-
export type
|
|
773
|
+
export type Visualisation5 = AreaChart;
|
|
773
774
|
/**
|
|
774
775
|
* A unique identifier of the visualisation.
|
|
775
776
|
*/
|
|
@@ -778,11 +779,10 @@ export type Id25 = string;
|
|
|
778
779
|
* A list of strings - metadata tags of this visualisation.
|
|
779
780
|
*/
|
|
780
781
|
export type Tags18 = string[];
|
|
781
|
-
export type EmptyBucket = null;
|
|
782
782
|
/**
|
|
783
783
|
* JSON schema for Gooddata Analytics Visualisation
|
|
784
784
|
*/
|
|
785
|
-
export type
|
|
785
|
+
export type Visualisation6 = ScatterChart;
|
|
786
786
|
/**
|
|
787
787
|
* A unique identifier of the visualisation.
|
|
788
788
|
*/
|
|
@@ -791,10 +791,11 @@ export type Id26 = string;
|
|
|
791
791
|
* A list of strings - metadata tags of this visualisation.
|
|
792
792
|
*/
|
|
793
793
|
export type Tags19 = string[];
|
|
794
|
+
export type EmptyBucket = null;
|
|
794
795
|
/**
|
|
795
796
|
* JSON schema for Gooddata Analytics Visualisation
|
|
796
797
|
*/
|
|
797
|
-
export type
|
|
798
|
+
export type Visualisation7 = BubbleChart;
|
|
798
799
|
/**
|
|
799
800
|
* A unique identifier of the visualisation.
|
|
800
801
|
*/
|
|
@@ -806,7 +807,7 @@ export type Tags20 = string[];
|
|
|
806
807
|
/**
|
|
807
808
|
* JSON schema for Gooddata Analytics Visualisation
|
|
808
809
|
*/
|
|
809
|
-
export type
|
|
810
|
+
export type Visualisation8 = PieChart;
|
|
810
811
|
/**
|
|
811
812
|
* A unique identifier of the visualisation.
|
|
812
813
|
*/
|
|
@@ -818,7 +819,7 @@ export type Tags21 = string[];
|
|
|
818
819
|
/**
|
|
819
820
|
* JSON schema for Gooddata Analytics Visualisation
|
|
820
821
|
*/
|
|
821
|
-
export type
|
|
822
|
+
export type Visualisation9 = PieChart1;
|
|
822
823
|
/**
|
|
823
824
|
* A unique identifier of the visualisation.
|
|
824
825
|
*/
|
|
@@ -830,7 +831,7 @@ export type Tags22 = string[];
|
|
|
830
831
|
/**
|
|
831
832
|
* JSON schema for Gooddata Analytics Visualisation
|
|
832
833
|
*/
|
|
833
|
-
export type
|
|
834
|
+
export type Visualisation10 = TreemapChart;
|
|
834
835
|
/**
|
|
835
836
|
* A unique identifier of the visualisation.
|
|
836
837
|
*/
|
|
@@ -842,7 +843,7 @@ export type Tags23 = string[];
|
|
|
842
843
|
/**
|
|
843
844
|
* JSON schema for Gooddata Analytics Visualisation
|
|
844
845
|
*/
|
|
845
|
-
export type
|
|
846
|
+
export type Visualisation11 = PyramidChart;
|
|
846
847
|
/**
|
|
847
848
|
* A unique identifier of the visualisation.
|
|
848
849
|
*/
|
|
@@ -854,7 +855,7 @@ export type Tags24 = string[];
|
|
|
854
855
|
/**
|
|
855
856
|
* JSON schema for Gooddata Analytics Visualisation
|
|
856
857
|
*/
|
|
857
|
-
export type
|
|
858
|
+
export type Visualisation12 = FunnelChart;
|
|
858
859
|
/**
|
|
859
860
|
* A unique identifier of the visualisation.
|
|
860
861
|
*/
|
|
@@ -866,7 +867,7 @@ export type Tags25 = string[];
|
|
|
866
867
|
/**
|
|
867
868
|
* JSON schema for Gooddata Analytics Visualisation
|
|
868
869
|
*/
|
|
869
|
-
export type
|
|
870
|
+
export type Visualisation13 = HeatmapChart;
|
|
870
871
|
/**
|
|
871
872
|
* A unique identifier of the visualisation.
|
|
872
873
|
*/
|
|
@@ -878,7 +879,7 @@ export type Tags26 = string[];
|
|
|
878
879
|
/**
|
|
879
880
|
* JSON schema for Gooddata Analytics Visualisation
|
|
880
881
|
*/
|
|
881
|
-
export type
|
|
882
|
+
export type Visualisation14 = BulletChart;
|
|
882
883
|
/**
|
|
883
884
|
* A unique identifier of the visualisation.
|
|
884
885
|
*/
|
|
@@ -890,7 +891,7 @@ export type Tags27 = string[];
|
|
|
890
891
|
/**
|
|
891
892
|
* JSON schema for Gooddata Analytics Visualisation
|
|
892
893
|
*/
|
|
893
|
-
export type
|
|
894
|
+
export type Visualisation15 = WaterfallChart;
|
|
894
895
|
/**
|
|
895
896
|
* A unique identifier of the visualisation.
|
|
896
897
|
*/
|
|
@@ -899,6 +900,18 @@ export type Id35 = string;
|
|
|
899
900
|
* A list of strings - metadata tags of this visualisation.
|
|
900
901
|
*/
|
|
901
902
|
export type Tags28 = string[];
|
|
903
|
+
/**
|
|
904
|
+
* JSON schema for Gooddata Analytics Visualisation
|
|
905
|
+
*/
|
|
906
|
+
export type Visualisation16 = DependencyWheelChart;
|
|
907
|
+
/**
|
|
908
|
+
* A unique identifier of the visualisation.
|
|
909
|
+
*/
|
|
910
|
+
export type Id36 = string;
|
|
911
|
+
/**
|
|
912
|
+
* A list of strings - metadata tags of this visualisation.
|
|
913
|
+
*/
|
|
914
|
+
export type Tags29 = string[];
|
|
902
915
|
/**
|
|
903
916
|
* A from attribute in this visualisation.
|
|
904
917
|
*/
|
|
@@ -914,11 +927,11 @@ export type Visualisation17 = SankeyChart;
|
|
|
914
927
|
/**
|
|
915
928
|
* A unique identifier of the visualisation.
|
|
916
929
|
*/
|
|
917
|
-
export type
|
|
930
|
+
export type Id37 = string;
|
|
918
931
|
/**
|
|
919
932
|
* A list of strings - metadata tags of this visualisation.
|
|
920
933
|
*/
|
|
921
|
-
export type
|
|
934
|
+
export type Tags30 = string[];
|
|
922
935
|
/**
|
|
923
936
|
* A from attribute in this visualisation.
|
|
924
937
|
*/
|
|
@@ -934,11 +947,11 @@ export type Visualisation18 = HeadlineChart;
|
|
|
934
947
|
/**
|
|
935
948
|
* A unique identifier of the visualisation.
|
|
936
949
|
*/
|
|
937
|
-
export type
|
|
950
|
+
export type Id38 = string;
|
|
938
951
|
/**
|
|
939
952
|
* A list of strings - metadata tags of this visualisation.
|
|
940
953
|
*/
|
|
941
|
-
export type
|
|
954
|
+
export type Tags31 = string[];
|
|
942
955
|
/**
|
|
943
956
|
* JSON schema for Gooddata Analytics Visualisation
|
|
944
957
|
*/
|
|
@@ -946,11 +959,11 @@ export type Visualisation19 = ComboChart;
|
|
|
946
959
|
/**
|
|
947
960
|
* A unique identifier of the visualisation.
|
|
948
961
|
*/
|
|
949
|
-
export type
|
|
962
|
+
export type Id39 = string;
|
|
950
963
|
/**
|
|
951
964
|
* A list of strings - metadata tags of this visualisation.
|
|
952
965
|
*/
|
|
953
|
-
export type
|
|
966
|
+
export type Tags32 = string[];
|
|
954
967
|
/**
|
|
955
968
|
* JSON schema for Gooddata Analytics Visualisation
|
|
956
969
|
*/
|
|
@@ -958,11 +971,11 @@ export type Visualisation20 = GeoChart;
|
|
|
958
971
|
/**
|
|
959
972
|
* A unique identifier of the visualisation.
|
|
960
973
|
*/
|
|
961
|
-
export type
|
|
974
|
+
export type Id40 = string;
|
|
962
975
|
/**
|
|
963
976
|
* A list of strings - metadata tags of this visualisation.
|
|
964
977
|
*/
|
|
965
|
-
export type
|
|
978
|
+
export type Tags33 = string[];
|
|
966
979
|
export type PushpinLocationBucket = string;
|
|
967
980
|
export type LayerItem = VisualizationDataLayer | ({
|
|
968
981
|
type: "pushpin";
|
|
@@ -982,7 +995,7 @@ export type LayerItem = VisualizationDataLayer | ({
|
|
|
982
995
|
/**
|
|
983
996
|
* A unique identifier of the visualization data layer.
|
|
984
997
|
*/
|
|
985
|
-
export type
|
|
998
|
+
export type Id41 = string;
|
|
986
999
|
export type LocationBucket = string;
|
|
987
1000
|
export type GeoAreaBucket = string;
|
|
988
1001
|
/**
|
|
@@ -992,11 +1005,11 @@ export type Visualisation21 = GeoAreaChart;
|
|
|
992
1005
|
/**
|
|
993
1006
|
* A unique identifier of the visualisation.
|
|
994
1007
|
*/
|
|
995
|
-
export type
|
|
1008
|
+
export type Id42 = string;
|
|
996
1009
|
/**
|
|
997
1010
|
* A list of strings - metadata tags of this visualisation.
|
|
998
1011
|
*/
|
|
999
|
-
export type
|
|
1012
|
+
export type Tags34 = string[];
|
|
1000
1013
|
/**
|
|
1001
1014
|
* JSON schema for Gooddata Analytics Visualisation
|
|
1002
1015
|
*/
|
|
@@ -1004,11 +1017,11 @@ export type Visualisation22 = RepeaterChart;
|
|
|
1004
1017
|
/**
|
|
1005
1018
|
* A unique identifier of the visualisation.
|
|
1006
1019
|
*/
|
|
1007
|
-
export type
|
|
1020
|
+
export type Id43 = string;
|
|
1008
1021
|
/**
|
|
1009
1022
|
* A list of strings - metadata tags of this visualisation.
|
|
1010
1023
|
*/
|
|
1011
|
-
export type
|
|
1024
|
+
export type Tags35 = string[];
|
|
1012
1025
|
/**
|
|
1013
1026
|
* JSON schema for Gooddata Analytics Visualisation
|
|
1014
1027
|
*/
|
|
@@ -1016,24 +1029,24 @@ export type Visualisation23 = RadarChart;
|
|
|
1016
1029
|
/**
|
|
1017
1030
|
* A unique identifier of the visualisation.
|
|
1018
1031
|
*/
|
|
1019
|
-
export type
|
|
1032
|
+
export type Id44 = string;
|
|
1020
1033
|
/**
|
|
1021
1034
|
* A list of strings - metadata tags of this visualisation.
|
|
1022
1035
|
*/
|
|
1023
|
-
export type
|
|
1036
|
+
export type Tags36 = string[];
|
|
1024
1037
|
/**
|
|
1025
1038
|
* JSON schema for Gooddata Analytics
|
|
1026
1039
|
*/
|
|
1027
|
-
export type
|
|
1028
|
-
export type
|
|
1040
|
+
export type Metadata30 = Metadata31 & Metadata32;
|
|
1041
|
+
export type Metadata32 = {
|
|
1029
1042
|
[k: string]: unknown;
|
|
1030
1043
|
};
|
|
1031
1044
|
export interface Metadata1 {
|
|
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";
|
|
1045
|
+
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";
|
|
1033
1046
|
[k: string]: unknown;
|
|
1034
1047
|
}
|
|
1035
1048
|
export interface Metadata4 {
|
|
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";
|
|
1049
|
+
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";
|
|
1037
1050
|
[k: string]: unknown;
|
|
1038
1051
|
}
|
|
1039
1052
|
export interface NormalDataset {
|
|
@@ -1445,7 +1458,7 @@ export interface Fields2 {
|
|
|
1445
1458
|
};
|
|
1446
1459
|
}
|
|
1447
1460
|
export interface Metadata7 {
|
|
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";
|
|
1461
|
+
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";
|
|
1449
1462
|
[k: string]: unknown;
|
|
1450
1463
|
}
|
|
1451
1464
|
export interface DateDataset {
|
|
@@ -1471,7 +1484,7 @@ export interface DateDataset {
|
|
|
1471
1484
|
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")[];
|
|
1472
1485
|
}
|
|
1473
1486
|
export interface Metadata10 {
|
|
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";
|
|
1487
|
+
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";
|
|
1475
1488
|
[k: string]: unknown;
|
|
1476
1489
|
}
|
|
1477
1490
|
export interface Metric {
|
|
@@ -1505,11 +1518,36 @@ export interface Metric {
|
|
|
1505
1518
|
is_hidden?: boolean;
|
|
1506
1519
|
}
|
|
1507
1520
|
export interface Metadata13 {
|
|
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";
|
|
1521
|
+
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";
|
|
1509
1522
|
[k: string]: unknown;
|
|
1510
1523
|
}
|
|
1511
|
-
export interface
|
|
1524
|
+
export interface ComputedAttribute {
|
|
1512
1525
|
id: Id8;
|
|
1526
|
+
type: "computed_attribute";
|
|
1527
|
+
/**
|
|
1528
|
+
* An optional human readable title for the computed attribute. Will be derived from id if not provided explicitly.
|
|
1529
|
+
*/
|
|
1530
|
+
title?: string;
|
|
1531
|
+
/**
|
|
1532
|
+
* An optional description of the computed attribute.
|
|
1533
|
+
*/
|
|
1534
|
+
description?: string;
|
|
1535
|
+
tags?: Tags9;
|
|
1536
|
+
/**
|
|
1537
|
+
* 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.
|
|
1538
|
+
*/
|
|
1539
|
+
maql: string;
|
|
1540
|
+
/**
|
|
1541
|
+
* An optional locale whose collation order the computed values are sorted by.
|
|
1542
|
+
*/
|
|
1543
|
+
locale?: string;
|
|
1544
|
+
}
|
|
1545
|
+
export interface Metadata16 {
|
|
1546
|
+
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";
|
|
1547
|
+
[k: string]: unknown;
|
|
1548
|
+
}
|
|
1549
|
+
export interface Dashboard {
|
|
1550
|
+
id: Id9;
|
|
1513
1551
|
type: "dashboard";
|
|
1514
1552
|
/**
|
|
1515
1553
|
* 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.
|
|
@@ -1523,7 +1561,7 @@ export interface Dashboard {
|
|
|
1523
1561
|
* An optional description of the dashboard.
|
|
1524
1562
|
*/
|
|
1525
1563
|
description?: string;
|
|
1526
|
-
tags?:
|
|
1564
|
+
tags?: Tags10;
|
|
1527
1565
|
/**
|
|
1528
1566
|
* Whether cross filtering is enabled for this dashboard. Defaults to true.
|
|
1529
1567
|
*/
|
|
@@ -1558,14 +1596,14 @@ export interface Dashboard {
|
|
|
1558
1596
|
* A list of plugins in this dashboard.
|
|
1559
1597
|
*/
|
|
1560
1598
|
plugins?: ({
|
|
1561
|
-
id:
|
|
1599
|
+
id: Id15;
|
|
1562
1600
|
/**
|
|
1563
1601
|
* Parameter that will be passed to the plugin. Everything other than string will be serialized to JSON automatically.
|
|
1564
1602
|
*/
|
|
1565
1603
|
parameters?: {
|
|
1566
1604
|
[k: string]: unknown;
|
|
1567
1605
|
};
|
|
1568
|
-
} |
|
|
1606
|
+
} | Id16)[];
|
|
1569
1607
|
/**
|
|
1570
1608
|
* 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.
|
|
1571
1609
|
*/
|
|
@@ -1611,7 +1649,7 @@ export interface Section {
|
|
|
1611
1649
|
widgets: Widget[];
|
|
1612
1650
|
}
|
|
1613
1651
|
export interface VisualisationWidget {
|
|
1614
|
-
id?:
|
|
1652
|
+
id?: Id10;
|
|
1615
1653
|
/**
|
|
1616
1654
|
* An id of the visualization to be rendered with the widget
|
|
1617
1655
|
*/
|
|
@@ -1626,7 +1664,7 @@ export interface VisualisationWidget {
|
|
|
1626
1664
|
* An optional height of the widget in the grid, each row being ~20px high
|
|
1627
1665
|
*/
|
|
1628
1666
|
rows?: number;
|
|
1629
|
-
date?:
|
|
1667
|
+
date?: Id11;
|
|
1630
1668
|
/**
|
|
1631
1669
|
* A list of dashboard filters to be ignored for this widget
|
|
1632
1670
|
*/
|
|
@@ -1723,7 +1761,7 @@ export interface IgnoredDrillDownIntersection {
|
|
|
1723
1761
|
[k: string]: unknown;
|
|
1724
1762
|
}
|
|
1725
1763
|
export interface RichTextWidget {
|
|
1726
|
-
id?:
|
|
1764
|
+
id?: Id12;
|
|
1727
1765
|
/**
|
|
1728
1766
|
* A markdown content of the widget
|
|
1729
1767
|
*/
|
|
@@ -1738,7 +1776,7 @@ export interface RichTextWidget {
|
|
|
1738
1776
|
rows?: number;
|
|
1739
1777
|
}
|
|
1740
1778
|
export interface VisualizationSwitcherWidget {
|
|
1741
|
-
id?:
|
|
1779
|
+
id?: Id13;
|
|
1742
1780
|
/**
|
|
1743
1781
|
* An optional width of the widget in the grid, total width being 12 columns
|
|
1744
1782
|
*/
|
|
@@ -1753,7 +1791,7 @@ export interface VisualizationSwitcherWidget {
|
|
|
1753
1791
|
visualizations: VisualisationWidget1[];
|
|
1754
1792
|
}
|
|
1755
1793
|
export interface VisualisationWidget1 {
|
|
1756
|
-
id?:
|
|
1794
|
+
id?: Id10;
|
|
1757
1795
|
/**
|
|
1758
1796
|
* An id of the visualization to be rendered with the widget
|
|
1759
1797
|
*/
|
|
@@ -1768,7 +1806,7 @@ export interface VisualisationWidget1 {
|
|
|
1768
1806
|
* An optional height of the widget in the grid, each row being ~20px high
|
|
1769
1807
|
*/
|
|
1770
1808
|
rows?: number;
|
|
1771
|
-
date?:
|
|
1809
|
+
date?: Id11;
|
|
1772
1810
|
/**
|
|
1773
1811
|
* A list of dashboard filters to be ignored for this widget
|
|
1774
1812
|
*/
|
|
@@ -1792,7 +1830,7 @@ export interface VisualisationWidget1 {
|
|
|
1792
1830
|
ignored_cross_filtering?: boolean;
|
|
1793
1831
|
}
|
|
1794
1832
|
export interface ContainerWidget {
|
|
1795
|
-
container:
|
|
1833
|
+
container: Id14;
|
|
1796
1834
|
/**
|
|
1797
1835
|
* 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.
|
|
1798
1836
|
*/
|
|
@@ -1971,7 +2009,7 @@ export interface DashboardFilterGroup {
|
|
|
1971
2009
|
type: "date_filter" | "attribute_filter" | "text_filter" | "metric_value_filter" | "filter_group";
|
|
1972
2010
|
}
|
|
1973
2011
|
export interface Tab {
|
|
1974
|
-
id:
|
|
2012
|
+
id: Id17;
|
|
1975
2013
|
/**
|
|
1976
2014
|
* Display title for the tab.
|
|
1977
2015
|
*/
|
|
@@ -2003,12 +2041,12 @@ export interface Permission {
|
|
|
2003
2041
|
user_groups?: string[];
|
|
2004
2042
|
[k: string]: unknown;
|
|
2005
2043
|
}
|
|
2006
|
-
export interface
|
|
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";
|
|
2044
|
+
export interface Metadata19 {
|
|
2045
|
+
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";
|
|
2008
2046
|
[k: string]: unknown;
|
|
2009
2047
|
}
|
|
2010
2048
|
export interface Plugin {
|
|
2011
|
-
id:
|
|
2049
|
+
id: Id18;
|
|
2012
2050
|
type: "plugin";
|
|
2013
2051
|
/**
|
|
2014
2052
|
* An optional human readable title for the plugin. Will be derived from id if not provided explicitly.
|
|
@@ -2018,18 +2056,18 @@ export interface Plugin {
|
|
|
2018
2056
|
* An optional description of the plugin.
|
|
2019
2057
|
*/
|
|
2020
2058
|
description?: string;
|
|
2021
|
-
tags?:
|
|
2059
|
+
tags?: Tags11;
|
|
2022
2060
|
/**
|
|
2023
2061
|
* URL of the plugin.
|
|
2024
2062
|
*/
|
|
2025
2063
|
url: string;
|
|
2026
2064
|
}
|
|
2027
|
-
export interface
|
|
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";
|
|
2065
|
+
export interface Metadata22 {
|
|
2066
|
+
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";
|
|
2029
2067
|
[k: string]: unknown;
|
|
2030
2068
|
}
|
|
2031
2069
|
export interface AttributeHierarchy {
|
|
2032
|
-
id:
|
|
2070
|
+
id: Id19;
|
|
2033
2071
|
type: "attribute_hierarchy";
|
|
2034
2072
|
/**
|
|
2035
2073
|
* An optional human readable title for the attribute hierarchy. Will be derived from id if not provided explicitly.
|
|
@@ -2039,18 +2077,18 @@ export interface AttributeHierarchy {
|
|
|
2039
2077
|
* An optional description of the attribute hierarchy.
|
|
2040
2078
|
*/
|
|
2041
2079
|
description?: string;
|
|
2042
|
-
tags?:
|
|
2080
|
+
tags?: Tags12;
|
|
2043
2081
|
/**
|
|
2044
2082
|
* A list of sorted attributes use in attribute hierarchy. The first attribute is the top level attribute.
|
|
2045
2083
|
*/
|
|
2046
2084
|
attributes: [AttributeIdentifier6, ...AttributeIdentifier6[]];
|
|
2047
2085
|
}
|
|
2048
|
-
export interface
|
|
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";
|
|
2086
|
+
export interface Metadata25 {
|
|
2087
|
+
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";
|
|
2050
2088
|
[k: string]: unknown;
|
|
2051
2089
|
}
|
|
2052
2090
|
export interface Parameter {
|
|
2053
|
-
id:
|
|
2091
|
+
id: Id20;
|
|
2054
2092
|
type: "parameter";
|
|
2055
2093
|
/**
|
|
2056
2094
|
* An optional human readable title for the parameter. Will be derived from id if not provided explicitly.
|
|
@@ -2060,7 +2098,7 @@ export interface Parameter {
|
|
|
2060
2098
|
* An optional description of the parameter.
|
|
2061
2099
|
*/
|
|
2062
2100
|
description?: string;
|
|
2063
|
-
tags?:
|
|
2101
|
+
tags?: Tags13;
|
|
2064
2102
|
definition: ParameterDefinition;
|
|
2065
2103
|
}
|
|
2066
2104
|
/**
|
|
@@ -2101,8 +2139,8 @@ export interface ParameterAllowedValue {
|
|
|
2101
2139
|
*/
|
|
2102
2140
|
title?: string;
|
|
2103
2141
|
}
|
|
2104
|
-
export interface
|
|
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";
|
|
2142
|
+
export interface Metadata28 {
|
|
2143
|
+
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";
|
|
2106
2144
|
[k: string]: unknown;
|
|
2107
2145
|
}
|
|
2108
2146
|
export interface Table {
|
|
@@ -2110,7 +2148,7 @@ export interface Table {
|
|
|
2110
2148
|
* Type of visualisation.
|
|
2111
2149
|
*/
|
|
2112
2150
|
type: "table";
|
|
2113
|
-
id:
|
|
2151
|
+
id: Id21;
|
|
2114
2152
|
/**
|
|
2115
2153
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
2116
2154
|
*/
|
|
@@ -2119,7 +2157,7 @@ export interface Table {
|
|
|
2119
2157
|
* An optional description of the visualisation.
|
|
2120
2158
|
*/
|
|
2121
2159
|
description?: string;
|
|
2122
|
-
tags?:
|
|
2160
|
+
tags?: Tags14;
|
|
2123
2161
|
/**
|
|
2124
2162
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
2125
2163
|
*/
|
|
@@ -3077,7 +3115,7 @@ export interface BarChart {
|
|
|
3077
3115
|
* Type of visualisation.
|
|
3078
3116
|
*/
|
|
3079
3117
|
type: "bar_chart";
|
|
3080
|
-
id:
|
|
3118
|
+
id: Id22;
|
|
3081
3119
|
/**
|
|
3082
3120
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
3083
3121
|
*/
|
|
@@ -3086,7 +3124,7 @@ export interface BarChart {
|
|
|
3086
3124
|
* An optional description of the visualisation.
|
|
3087
3125
|
*/
|
|
3088
3126
|
description?: string;
|
|
3089
|
-
tags?:
|
|
3127
|
+
tags?: Tags15;
|
|
3090
3128
|
/**
|
|
3091
3129
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
3092
3130
|
*/
|
|
@@ -3399,7 +3437,7 @@ export interface ColumnChart {
|
|
|
3399
3437
|
* Type of visualisation.
|
|
3400
3438
|
*/
|
|
3401
3439
|
type: "column_chart";
|
|
3402
|
-
id:
|
|
3440
|
+
id: Id23;
|
|
3403
3441
|
/**
|
|
3404
3442
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
3405
3443
|
*/
|
|
@@ -3408,7 +3446,7 @@ export interface ColumnChart {
|
|
|
3408
3446
|
* An optional description of the visualisation.
|
|
3409
3447
|
*/
|
|
3410
3448
|
description?: string;
|
|
3411
|
-
tags?:
|
|
3449
|
+
tags?: Tags16;
|
|
3412
3450
|
/**
|
|
3413
3451
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
3414
3452
|
*/
|
|
@@ -3721,7 +3759,7 @@ export interface LineChart {
|
|
|
3721
3759
|
* Type of visualisation.
|
|
3722
3760
|
*/
|
|
3723
3761
|
type: "line_chart";
|
|
3724
|
-
id:
|
|
3762
|
+
id: Id24;
|
|
3725
3763
|
/**
|
|
3726
3764
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
3727
3765
|
*/
|
|
@@ -3730,7 +3768,7 @@ export interface LineChart {
|
|
|
3730
3768
|
* An optional description of the visualisation.
|
|
3731
3769
|
*/
|
|
3732
3770
|
description?: string;
|
|
3733
|
-
tags?:
|
|
3771
|
+
tags?: Tags17;
|
|
3734
3772
|
/**
|
|
3735
3773
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
3736
3774
|
*/
|
|
@@ -4043,7 +4081,7 @@ export interface AreaChart {
|
|
|
4043
4081
|
* Type of visualisation.
|
|
4044
4082
|
*/
|
|
4045
4083
|
type: "area_chart";
|
|
4046
|
-
id:
|
|
4084
|
+
id: Id25;
|
|
4047
4085
|
/**
|
|
4048
4086
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
4049
4087
|
*/
|
|
@@ -4052,7 +4090,7 @@ export interface AreaChart {
|
|
|
4052
4090
|
* An optional description of the visualisation.
|
|
4053
4091
|
*/
|
|
4054
4092
|
description?: string;
|
|
4055
|
-
tags?:
|
|
4093
|
+
tags?: Tags18;
|
|
4056
4094
|
/**
|
|
4057
4095
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
4058
4096
|
*/
|
|
@@ -4365,7 +4403,7 @@ export interface ScatterChart {
|
|
|
4365
4403
|
* Type of visualisation.
|
|
4366
4404
|
*/
|
|
4367
4405
|
type: "scatter_chart";
|
|
4368
|
-
id:
|
|
4406
|
+
id: Id26;
|
|
4369
4407
|
/**
|
|
4370
4408
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
4371
4409
|
*/
|
|
@@ -4374,7 +4412,7 @@ export interface ScatterChart {
|
|
|
4374
4412
|
* An optional description of the visualisation.
|
|
4375
4413
|
*/
|
|
4376
4414
|
description?: string;
|
|
4377
|
-
tags?:
|
|
4415
|
+
tags?: Tags19;
|
|
4378
4416
|
/**
|
|
4379
4417
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
4380
4418
|
*/
|
|
@@ -4687,7 +4725,7 @@ export interface BubbleChart {
|
|
|
4687
4725
|
* Type of visualisation.
|
|
4688
4726
|
*/
|
|
4689
4727
|
type: "bubble_chart";
|
|
4690
|
-
id:
|
|
4728
|
+
id: Id27;
|
|
4691
4729
|
/**
|
|
4692
4730
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
4693
4731
|
*/
|
|
@@ -4696,7 +4734,7 @@ export interface BubbleChart {
|
|
|
4696
4734
|
* An optional description of the visualisation.
|
|
4697
4735
|
*/
|
|
4698
4736
|
description?: string;
|
|
4699
|
-
tags?:
|
|
4737
|
+
tags?: Tags20;
|
|
4700
4738
|
/**
|
|
4701
4739
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
4702
4740
|
*/
|
|
@@ -5009,7 +5047,7 @@ export interface PieChart {
|
|
|
5009
5047
|
* Type of visualisation.
|
|
5010
5048
|
*/
|
|
5011
5049
|
type: "pie_chart";
|
|
5012
|
-
id:
|
|
5050
|
+
id: Id28;
|
|
5013
5051
|
/**
|
|
5014
5052
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
5015
5053
|
*/
|
|
@@ -5018,7 +5056,7 @@ export interface PieChart {
|
|
|
5018
5056
|
* An optional description of the visualisation.
|
|
5019
5057
|
*/
|
|
5020
5058
|
description?: string;
|
|
5021
|
-
tags?:
|
|
5059
|
+
tags?: Tags21;
|
|
5022
5060
|
/**
|
|
5023
5061
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
5024
5062
|
*/
|
|
@@ -5327,7 +5365,7 @@ export interface PieChart1 {
|
|
|
5327
5365
|
* Type of visualisation.
|
|
5328
5366
|
*/
|
|
5329
5367
|
type: "donut_chart";
|
|
5330
|
-
id:
|
|
5368
|
+
id: Id29;
|
|
5331
5369
|
/**
|
|
5332
5370
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
5333
5371
|
*/
|
|
@@ -5336,7 +5374,7 @@ export interface PieChart1 {
|
|
|
5336
5374
|
* An optional description of the visualisation.
|
|
5337
5375
|
*/
|
|
5338
5376
|
description?: string;
|
|
5339
|
-
tags?:
|
|
5377
|
+
tags?: Tags22;
|
|
5340
5378
|
/**
|
|
5341
5379
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
5342
5380
|
*/
|
|
@@ -5645,7 +5683,7 @@ export interface TreemapChart {
|
|
|
5645
5683
|
* Type of visualisation.
|
|
5646
5684
|
*/
|
|
5647
5685
|
type: "treemap_chart";
|
|
5648
|
-
id:
|
|
5686
|
+
id: Id30;
|
|
5649
5687
|
/**
|
|
5650
5688
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
5651
5689
|
*/
|
|
@@ -5654,7 +5692,7 @@ export interface TreemapChart {
|
|
|
5654
5692
|
* An optional description of the visualisation.
|
|
5655
5693
|
*/
|
|
5656
5694
|
description?: string;
|
|
5657
|
-
tags?:
|
|
5695
|
+
tags?: Tags23;
|
|
5658
5696
|
/**
|
|
5659
5697
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
5660
5698
|
*/
|
|
@@ -5963,7 +6001,7 @@ export interface PyramidChart {
|
|
|
5963
6001
|
* Type of visualisation.
|
|
5964
6002
|
*/
|
|
5965
6003
|
type: "pyramid_chart";
|
|
5966
|
-
id:
|
|
6004
|
+
id: Id31;
|
|
5967
6005
|
/**
|
|
5968
6006
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
5969
6007
|
*/
|
|
@@ -5972,7 +6010,7 @@ export interface PyramidChart {
|
|
|
5972
6010
|
* An optional description of the visualisation.
|
|
5973
6011
|
*/
|
|
5974
6012
|
description?: string;
|
|
5975
|
-
tags?:
|
|
6013
|
+
tags?: Tags24;
|
|
5976
6014
|
/**
|
|
5977
6015
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
5978
6016
|
*/
|
|
@@ -6281,7 +6319,7 @@ export interface FunnelChart {
|
|
|
6281
6319
|
* Type of visualisation.
|
|
6282
6320
|
*/
|
|
6283
6321
|
type: "funnel_chart";
|
|
6284
|
-
id:
|
|
6322
|
+
id: Id32;
|
|
6285
6323
|
/**
|
|
6286
6324
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
6287
6325
|
*/
|
|
@@ -6290,7 +6328,7 @@ export interface FunnelChart {
|
|
|
6290
6328
|
* An optional description of the visualisation.
|
|
6291
6329
|
*/
|
|
6292
6330
|
description?: string;
|
|
6293
|
-
tags?:
|
|
6331
|
+
tags?: Tags25;
|
|
6294
6332
|
/**
|
|
6295
6333
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
6296
6334
|
*/
|
|
@@ -6599,7 +6637,7 @@ export interface HeatmapChart {
|
|
|
6599
6637
|
* Type of visualisation.
|
|
6600
6638
|
*/
|
|
6601
6639
|
type: "heatmap_chart";
|
|
6602
|
-
id:
|
|
6640
|
+
id: Id33;
|
|
6603
6641
|
/**
|
|
6604
6642
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
6605
6643
|
*/
|
|
@@ -6608,7 +6646,7 @@ export interface HeatmapChart {
|
|
|
6608
6646
|
* An optional description of the visualisation.
|
|
6609
6647
|
*/
|
|
6610
6648
|
description?: string;
|
|
6611
|
-
tags?:
|
|
6649
|
+
tags?: Tags26;
|
|
6612
6650
|
/**
|
|
6613
6651
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
6614
6652
|
*/
|
|
@@ -6925,7 +6963,7 @@ export interface BulletChart {
|
|
|
6925
6963
|
* Type of visualisation.
|
|
6926
6964
|
*/
|
|
6927
6965
|
type: "bullet_chart";
|
|
6928
|
-
id:
|
|
6966
|
+
id: Id34;
|
|
6929
6967
|
/**
|
|
6930
6968
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
6931
6969
|
*/
|
|
@@ -6934,7 +6972,7 @@ export interface BulletChart {
|
|
|
6934
6972
|
* An optional description of the visualisation.
|
|
6935
6973
|
*/
|
|
6936
6974
|
description?: string;
|
|
6937
|
-
tags?:
|
|
6975
|
+
tags?: Tags27;
|
|
6938
6976
|
/**
|
|
6939
6977
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
6940
6978
|
*/
|
|
@@ -7243,7 +7281,7 @@ export interface WaterfallChart {
|
|
|
7243
7281
|
* Type of visualisation.
|
|
7244
7282
|
*/
|
|
7245
7283
|
type: "waterfall_chart";
|
|
7246
|
-
id:
|
|
7284
|
+
id: Id35;
|
|
7247
7285
|
/**
|
|
7248
7286
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
7249
7287
|
*/
|
|
@@ -7252,7 +7290,7 @@ export interface WaterfallChart {
|
|
|
7252
7290
|
* An optional description of the visualisation.
|
|
7253
7291
|
*/
|
|
7254
7292
|
description?: string;
|
|
7255
|
-
tags?:
|
|
7293
|
+
tags?: Tags28;
|
|
7256
7294
|
/**
|
|
7257
7295
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
7258
7296
|
*/
|
|
@@ -7561,7 +7599,7 @@ export interface DependencyWheelChart {
|
|
|
7561
7599
|
* Type of visualisation.
|
|
7562
7600
|
*/
|
|
7563
7601
|
type: "dependency_wheel_chart";
|
|
7564
|
-
id:
|
|
7602
|
+
id: Id36;
|
|
7565
7603
|
/**
|
|
7566
7604
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
7567
7605
|
*/
|
|
@@ -7570,7 +7608,7 @@ export interface DependencyWheelChart {
|
|
|
7570
7608
|
* An optional description of the visualisation.
|
|
7571
7609
|
*/
|
|
7572
7610
|
description?: string;
|
|
7573
|
-
tags?:
|
|
7611
|
+
tags?: Tags29;
|
|
7574
7612
|
/**
|
|
7575
7613
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
7576
7614
|
*/
|
|
@@ -7881,7 +7919,7 @@ export interface SankeyChart {
|
|
|
7881
7919
|
* Type of visualisation.
|
|
7882
7920
|
*/
|
|
7883
7921
|
type: "sankey_chart";
|
|
7884
|
-
id:
|
|
7922
|
+
id: Id37;
|
|
7885
7923
|
/**
|
|
7886
7924
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
7887
7925
|
*/
|
|
@@ -7890,7 +7928,7 @@ export interface SankeyChart {
|
|
|
7890
7928
|
* An optional description of the visualisation.
|
|
7891
7929
|
*/
|
|
7892
7930
|
description?: string;
|
|
7893
|
-
tags?:
|
|
7931
|
+
tags?: Tags30;
|
|
7894
7932
|
/**
|
|
7895
7933
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
7896
7934
|
*/
|
|
@@ -8201,7 +8239,7 @@ export interface HeadlineChart {
|
|
|
8201
8239
|
* Type of visualisation.
|
|
8202
8240
|
*/
|
|
8203
8241
|
type: "headline_chart";
|
|
8204
|
-
id:
|
|
8242
|
+
id: Id38;
|
|
8205
8243
|
/**
|
|
8206
8244
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
8207
8245
|
*/
|
|
@@ -8210,7 +8248,7 @@ export interface HeadlineChart {
|
|
|
8210
8248
|
* An optional description of the visualisation.
|
|
8211
8249
|
*/
|
|
8212
8250
|
description?: string;
|
|
8213
|
-
tags?:
|
|
8251
|
+
tags?: Tags31;
|
|
8214
8252
|
/**
|
|
8215
8253
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
8216
8254
|
*/
|
|
@@ -8519,7 +8557,7 @@ export interface ComboChart {
|
|
|
8519
8557
|
* Type of visualisation.
|
|
8520
8558
|
*/
|
|
8521
8559
|
type: "combo_chart";
|
|
8522
|
-
id:
|
|
8560
|
+
id: Id39;
|
|
8523
8561
|
/**
|
|
8524
8562
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
8525
8563
|
*/
|
|
@@ -8528,7 +8566,7 @@ export interface ComboChart {
|
|
|
8528
8566
|
* An optional description of the visualisation.
|
|
8529
8567
|
*/
|
|
8530
8568
|
description?: string;
|
|
8531
|
-
tags?:
|
|
8569
|
+
tags?: Tags32;
|
|
8532
8570
|
/**
|
|
8533
8571
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
8534
8572
|
*/
|
|
@@ -8837,7 +8875,7 @@ export interface GeoChart {
|
|
|
8837
8875
|
* Type of visualisation.
|
|
8838
8876
|
*/
|
|
8839
8877
|
type: "geo_chart";
|
|
8840
|
-
id:
|
|
8878
|
+
id: Id40;
|
|
8841
8879
|
/**
|
|
8842
8880
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
8843
8881
|
*/
|
|
@@ -8846,7 +8884,7 @@ export interface GeoChart {
|
|
|
8846
8884
|
* An optional description of the visualisation.
|
|
8847
8885
|
*/
|
|
8848
8886
|
description?: string;
|
|
8849
|
-
tags?:
|
|
8887
|
+
tags?: Tags33;
|
|
8850
8888
|
/**
|
|
8851
8889
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
8852
8890
|
*/
|
|
@@ -9155,7 +9193,7 @@ export interface VisualisationConfig19 {
|
|
|
9155
9193
|
[k: string]: unknown;
|
|
9156
9194
|
}
|
|
9157
9195
|
export interface VisualizationDataLayer {
|
|
9158
|
-
id:
|
|
9196
|
+
id: Id41;
|
|
9159
9197
|
/**
|
|
9160
9198
|
* An optional human readable title for the layer. Will be derived from id if not provided explicitly.
|
|
9161
9199
|
*/
|
|
@@ -9454,7 +9492,7 @@ export interface GeoAreaChart {
|
|
|
9454
9492
|
* Type of visualisation.
|
|
9455
9493
|
*/
|
|
9456
9494
|
type: "geo_area_chart";
|
|
9457
|
-
id:
|
|
9495
|
+
id: Id42;
|
|
9458
9496
|
/**
|
|
9459
9497
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
9460
9498
|
*/
|
|
@@ -9463,7 +9501,7 @@ export interface GeoAreaChart {
|
|
|
9463
9501
|
* An optional description of the visualisation.
|
|
9464
9502
|
*/
|
|
9465
9503
|
description?: string;
|
|
9466
|
-
tags?:
|
|
9504
|
+
tags?: Tags34;
|
|
9467
9505
|
/**
|
|
9468
9506
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
9469
9507
|
*/
|
|
@@ -9776,7 +9814,7 @@ export interface RepeaterChart {
|
|
|
9776
9814
|
* Type of visualisation.
|
|
9777
9815
|
*/
|
|
9778
9816
|
type: "repeater_chart";
|
|
9779
|
-
id:
|
|
9817
|
+
id: Id43;
|
|
9780
9818
|
/**
|
|
9781
9819
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
9782
9820
|
*/
|
|
@@ -9785,7 +9823,7 @@ export interface RepeaterChart {
|
|
|
9785
9823
|
* An optional description of the visualisation.
|
|
9786
9824
|
*/
|
|
9787
9825
|
description?: string;
|
|
9788
|
-
tags?:
|
|
9826
|
+
tags?: Tags35;
|
|
9789
9827
|
/**
|
|
9790
9828
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
9791
9829
|
*/
|
|
@@ -10102,7 +10140,7 @@ export interface RadarChart {
|
|
|
10102
10140
|
* Type of visualisation.
|
|
10103
10141
|
*/
|
|
10104
10142
|
type: "radar_chart";
|
|
10105
|
-
id:
|
|
10143
|
+
id: Id44;
|
|
10106
10144
|
/**
|
|
10107
10145
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
10108
10146
|
*/
|
|
@@ -10111,7 +10149,7 @@ export interface RadarChart {
|
|
|
10111
10149
|
* An optional description of the visualisation.
|
|
10112
10150
|
*/
|
|
10113
10151
|
description?: string;
|
|
10114
|
-
tags?:
|
|
10152
|
+
tags?: Tags36;
|
|
10115
10153
|
/**
|
|
10116
10154
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
10117
10155
|
*/
|
|
@@ -10415,8 +10453,8 @@ export interface VisualisationConfig23 {
|
|
|
10415
10453
|
};
|
|
10416
10454
|
[k: string]: unknown;
|
|
10417
10455
|
}
|
|
10418
|
-
export interface
|
|
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";
|
|
10456
|
+
export interface Metadata31 {
|
|
10457
|
+
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";
|
|
10420
10458
|
[k: string]: unknown;
|
|
10421
10459
|
}
|
|
10422
10460
|
//# sourceMappingURL=metadata.d.ts.map
|