@gooddata/sdk-code-schemas 11.33.0-alpha.4 → 11.33.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 +300 -186
- package/esm/v1/metadata.d.ts +230 -160
- package/esm/v1/metadata.d.ts.map +1 -1
- package/esm/v1/metadata.json +28 -4
- package/esm/v1/schema.d.ts +35 -5
- package/esm/v1/schema.d.ts.map +1 -1
- package/package.json +3 -3
package/esm/v1/metadata.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ export type Metadata2 = Metadata3 | Metadata6 | Metadata9 | Metadata12 | Metadat
|
|
|
13
13
|
*/
|
|
14
14
|
export type Metadata3 = Metadata4 & Metadata5;
|
|
15
15
|
export type Metadata5 = Dataset;
|
|
16
|
-
export type Dataset = NormalDataset | SQLDataset;
|
|
16
|
+
export type Dataset = NormalDataset | SQLDataset | AuxiliaryDataset;
|
|
17
17
|
/**
|
|
18
18
|
* A unique identifier of the dataset.
|
|
19
19
|
*/
|
|
@@ -56,6 +56,23 @@ export type Id3 = string;
|
|
|
56
56
|
* A primary key for the given dataset.
|
|
57
57
|
*/
|
|
58
58
|
export type CompositePrimaryKey1 = Id3[];
|
|
59
|
+
/**
|
|
60
|
+
* A unique identifier of the dataset.
|
|
61
|
+
*/
|
|
62
|
+
export type Id4 = string;
|
|
63
|
+
/**
|
|
64
|
+
* A list of strings - metadata tags of this dataset.
|
|
65
|
+
*/
|
|
66
|
+
export type Tags6 = string[];
|
|
67
|
+
/**
|
|
68
|
+
* A primary key for the given dataset.
|
|
69
|
+
*/
|
|
70
|
+
export type PrimaryKey2 = string;
|
|
71
|
+
export type Id5 = string;
|
|
72
|
+
/**
|
|
73
|
+
* A primary key for the given dataset.
|
|
74
|
+
*/
|
|
75
|
+
export type CompositePrimaryKey2 = Id5[];
|
|
59
76
|
/**
|
|
60
77
|
* JSON schema for Gooddata Analytics
|
|
61
78
|
*/
|
|
@@ -64,11 +81,11 @@ export type Metadata8 = DateDataset;
|
|
|
64
81
|
/**
|
|
65
82
|
* A unique identifier of the date instance.
|
|
66
83
|
*/
|
|
67
|
-
export type
|
|
84
|
+
export type Id6 = string;
|
|
68
85
|
/**
|
|
69
86
|
* A list of strings - metadata tags of this date instance.
|
|
70
87
|
*/
|
|
71
|
-
export type
|
|
88
|
+
export type Tags7 = string[];
|
|
72
89
|
/**
|
|
73
90
|
* JSON schema for Gooddata Analytics
|
|
74
91
|
*/
|
|
@@ -77,11 +94,11 @@ export type Metadata11 = Metric;
|
|
|
77
94
|
/**
|
|
78
95
|
* A unique identifier of the metric.
|
|
79
96
|
*/
|
|
80
|
-
export type
|
|
97
|
+
export type Id7 = string;
|
|
81
98
|
/**
|
|
82
99
|
* A list of strings - metadata tags of this metric.
|
|
83
100
|
*/
|
|
84
|
-
export type
|
|
101
|
+
export type Tags8 = string[];
|
|
85
102
|
/**
|
|
86
103
|
* JSON schema for Gooddata Analytics
|
|
87
104
|
*/
|
|
@@ -90,21 +107,21 @@ export type Metadata14 = Dashboard;
|
|
|
90
107
|
/**
|
|
91
108
|
* A unique identifier of the dashboard.
|
|
92
109
|
*/
|
|
93
|
-
export type
|
|
110
|
+
export type Id8 = string;
|
|
94
111
|
/**
|
|
95
112
|
* A list of strings - metadata tags of this dashboard.
|
|
96
113
|
*/
|
|
97
|
-
export type
|
|
114
|
+
export type Tags9 = string[];
|
|
98
115
|
export type Widget = Widget1 | Widget2 | Widget3 | Widget4;
|
|
99
116
|
export type Widget1 = VisualisationWidget;
|
|
100
117
|
/**
|
|
101
118
|
* A unique identifier of the widget.
|
|
102
119
|
*/
|
|
103
|
-
export type
|
|
120
|
+
export type Id9 = string;
|
|
104
121
|
/**
|
|
105
122
|
* An id of the date dataset to be used for date filtering in this widget
|
|
106
123
|
*/
|
|
107
|
-
export type
|
|
124
|
+
export type Id10 = string;
|
|
108
125
|
/**
|
|
109
126
|
* An interaction for current widget.
|
|
110
127
|
*/
|
|
@@ -209,17 +226,17 @@ export type Widget2 = RichTextWidget;
|
|
|
209
226
|
/**
|
|
210
227
|
* A unique identifier of the widget.
|
|
211
228
|
*/
|
|
212
|
-
export type
|
|
229
|
+
export type Id11 = string;
|
|
213
230
|
export type Widget3 = VisualizationSwitcherWidget;
|
|
214
231
|
/**
|
|
215
232
|
* A unique identifier of the widget.
|
|
216
233
|
*/
|
|
217
|
-
export type
|
|
234
|
+
export type Id12 = string;
|
|
218
235
|
export type Widget4 = ContainerWidget;
|
|
219
236
|
/**
|
|
220
237
|
* A unique identifier of the widget.
|
|
221
238
|
*/
|
|
222
|
-
export type
|
|
239
|
+
export type Id13 = string;
|
|
223
240
|
/**
|
|
224
241
|
* A dashboard attribute filter
|
|
225
242
|
*/
|
|
@@ -365,15 +382,15 @@ export type DisplayAsLabelIdentifier3 = string;
|
|
|
365
382
|
/**
|
|
366
383
|
* An unique identifier of the plugin.
|
|
367
384
|
*/
|
|
368
|
-
export type
|
|
385
|
+
export type Id14 = string;
|
|
369
386
|
/**
|
|
370
387
|
* An unique identifier of the plugin.
|
|
371
388
|
*/
|
|
372
|
-
export type
|
|
389
|
+
export type Id15 = string;
|
|
373
390
|
/**
|
|
374
391
|
* A unique identifier of the tab.
|
|
375
392
|
*/
|
|
376
|
-
export type
|
|
393
|
+
export type Id16 = string;
|
|
377
394
|
/**
|
|
378
395
|
* JSON schema for Gooddata Analytics
|
|
379
396
|
*/
|
|
@@ -382,11 +399,11 @@ export type Metadata17 = Plugin;
|
|
|
382
399
|
/**
|
|
383
400
|
* A unique identifier of the plugin.
|
|
384
401
|
*/
|
|
385
|
-
export type
|
|
402
|
+
export type Id17 = string;
|
|
386
403
|
/**
|
|
387
404
|
* A list of strings - metadata tags of this plugin.
|
|
388
405
|
*/
|
|
389
|
-
export type
|
|
406
|
+
export type Tags10 = string[];
|
|
390
407
|
/**
|
|
391
408
|
* JSON schema for Gooddata Analytics
|
|
392
409
|
*/
|
|
@@ -395,11 +412,11 @@ export type Metadata20 = AttributeHierarchy;
|
|
|
395
412
|
/**
|
|
396
413
|
* A unique identifier of the attribute hierarchy.
|
|
397
414
|
*/
|
|
398
|
-
export type
|
|
415
|
+
export type Id18 = string;
|
|
399
416
|
/**
|
|
400
417
|
* A list of strings - metadata tags of this attribute hierarchy.
|
|
401
418
|
*/
|
|
402
|
-
export type
|
|
419
|
+
export type Tags11 = string[];
|
|
403
420
|
/**
|
|
404
421
|
* A attribute identifier in the form of attribute/\{id\}.
|
|
405
422
|
*/
|
|
@@ -420,13 +437,13 @@ export type Visualisation1 = Table;
|
|
|
420
437
|
/**
|
|
421
438
|
* A unique identifier of the visualisation.
|
|
422
439
|
*/
|
|
423
|
-
export type
|
|
440
|
+
export type Id19 = string;
|
|
424
441
|
/**
|
|
425
442
|
* A list of strings - metadata tags of this visualisation.
|
|
426
443
|
*/
|
|
427
|
-
export type
|
|
444
|
+
export type Tags12 = string[];
|
|
428
445
|
/**
|
|
429
|
-
* This interface was referenced by `
|
|
446
|
+
* This interface was referenced by `Fields3`'s JSON-Schema definition
|
|
430
447
|
* via the `patternProperty` "^(?!\.)[.A-Za-z0-9_-]\{1,255\}$".
|
|
431
448
|
*/
|
|
432
449
|
export type Field = AttributeIdentifier7 | Field1 | Field2 | Field3 | StructuredField;
|
|
@@ -687,11 +704,11 @@ export type Visualisation2 = BarChart;
|
|
|
687
704
|
/**
|
|
688
705
|
* A unique identifier of the visualisation.
|
|
689
706
|
*/
|
|
690
|
-
export type
|
|
707
|
+
export type Id20 = string;
|
|
691
708
|
/**
|
|
692
709
|
* A list of strings - metadata tags of this visualisation.
|
|
693
710
|
*/
|
|
694
|
-
export type
|
|
711
|
+
export type Tags13 = string[];
|
|
695
712
|
/**
|
|
696
713
|
* JSON schema for Gooddata Analytics Visualisation
|
|
697
714
|
*/
|
|
@@ -699,11 +716,11 @@ export type Visualisation3 = ColumnChart;
|
|
|
699
716
|
/**
|
|
700
717
|
* A unique identifier of the visualisation.
|
|
701
718
|
*/
|
|
702
|
-
export type
|
|
719
|
+
export type Id21 = string;
|
|
703
720
|
/**
|
|
704
721
|
* A list of strings - metadata tags of this visualisation.
|
|
705
722
|
*/
|
|
706
|
-
export type
|
|
723
|
+
export type Tags14 = string[];
|
|
707
724
|
/**
|
|
708
725
|
* JSON schema for Gooddata Analytics Visualisation
|
|
709
726
|
*/
|
|
@@ -711,11 +728,11 @@ export type Visualisation4 = LineChart;
|
|
|
711
728
|
/**
|
|
712
729
|
* A unique identifier of the visualisation.
|
|
713
730
|
*/
|
|
714
|
-
export type
|
|
731
|
+
export type Id22 = string;
|
|
715
732
|
/**
|
|
716
733
|
* A list of strings - metadata tags of this visualisation.
|
|
717
734
|
*/
|
|
718
|
-
export type
|
|
735
|
+
export type Tags15 = string[];
|
|
719
736
|
/**
|
|
720
737
|
* JSON schema for Gooddata Analytics Visualisation
|
|
721
738
|
*/
|
|
@@ -723,11 +740,11 @@ export type Visualisation5 = AreaChart;
|
|
|
723
740
|
/**
|
|
724
741
|
* A unique identifier of the visualisation.
|
|
725
742
|
*/
|
|
726
|
-
export type
|
|
743
|
+
export type Id23 = string;
|
|
727
744
|
/**
|
|
728
745
|
* A list of strings - metadata tags of this visualisation.
|
|
729
746
|
*/
|
|
730
|
-
export type
|
|
747
|
+
export type Tags16 = string[];
|
|
731
748
|
/**
|
|
732
749
|
* JSON schema for Gooddata Analytics Visualisation
|
|
733
750
|
*/
|
|
@@ -735,11 +752,11 @@ export type Visualisation6 = ScatterChart;
|
|
|
735
752
|
/**
|
|
736
753
|
* A unique identifier of the visualisation.
|
|
737
754
|
*/
|
|
738
|
-
export type
|
|
755
|
+
export type Id24 = string;
|
|
739
756
|
/**
|
|
740
757
|
* A list of strings - metadata tags of this visualisation.
|
|
741
758
|
*/
|
|
742
|
-
export type
|
|
759
|
+
export type Tags17 = string[];
|
|
743
760
|
export type EmptyBucket = null;
|
|
744
761
|
/**
|
|
745
762
|
* JSON schema for Gooddata Analytics Visualisation
|
|
@@ -748,11 +765,11 @@ export type Visualisation7 = BubbleChart;
|
|
|
748
765
|
/**
|
|
749
766
|
* A unique identifier of the visualisation.
|
|
750
767
|
*/
|
|
751
|
-
export type
|
|
768
|
+
export type Id25 = string;
|
|
752
769
|
/**
|
|
753
770
|
* A list of strings - metadata tags of this visualisation.
|
|
754
771
|
*/
|
|
755
|
-
export type
|
|
772
|
+
export type Tags18 = string[];
|
|
756
773
|
/**
|
|
757
774
|
* JSON schema for Gooddata Analytics Visualisation
|
|
758
775
|
*/
|
|
@@ -760,11 +777,11 @@ export type Visualisation8 = PieChart;
|
|
|
760
777
|
/**
|
|
761
778
|
* A unique identifier of the visualisation.
|
|
762
779
|
*/
|
|
763
|
-
export type
|
|
780
|
+
export type Id26 = string;
|
|
764
781
|
/**
|
|
765
782
|
* A list of strings - metadata tags of this visualisation.
|
|
766
783
|
*/
|
|
767
|
-
export type
|
|
784
|
+
export type Tags19 = string[];
|
|
768
785
|
/**
|
|
769
786
|
* JSON schema for Gooddata Analytics Visualisation
|
|
770
787
|
*/
|
|
@@ -772,11 +789,11 @@ export type Visualisation9 = PieChart1;
|
|
|
772
789
|
/**
|
|
773
790
|
* A unique identifier of the visualisation.
|
|
774
791
|
*/
|
|
775
|
-
export type
|
|
792
|
+
export type Id27 = string;
|
|
776
793
|
/**
|
|
777
794
|
* A list of strings - metadata tags of this visualisation.
|
|
778
795
|
*/
|
|
779
|
-
export type
|
|
796
|
+
export type Tags20 = string[];
|
|
780
797
|
/**
|
|
781
798
|
* JSON schema for Gooddata Analytics Visualisation
|
|
782
799
|
*/
|
|
@@ -784,11 +801,11 @@ export type Visualisation10 = TreemapChart;
|
|
|
784
801
|
/**
|
|
785
802
|
* A unique identifier of the visualisation.
|
|
786
803
|
*/
|
|
787
|
-
export type
|
|
804
|
+
export type Id28 = string;
|
|
788
805
|
/**
|
|
789
806
|
* A list of strings - metadata tags of this visualisation.
|
|
790
807
|
*/
|
|
791
|
-
export type
|
|
808
|
+
export type Tags21 = string[];
|
|
792
809
|
/**
|
|
793
810
|
* JSON schema for Gooddata Analytics Visualisation
|
|
794
811
|
*/
|
|
@@ -796,11 +813,11 @@ export type Visualisation11 = PyramidChart;
|
|
|
796
813
|
/**
|
|
797
814
|
* A unique identifier of the visualisation.
|
|
798
815
|
*/
|
|
799
|
-
export type
|
|
816
|
+
export type Id29 = string;
|
|
800
817
|
/**
|
|
801
818
|
* A list of strings - metadata tags of this visualisation.
|
|
802
819
|
*/
|
|
803
|
-
export type
|
|
820
|
+
export type Tags22 = string[];
|
|
804
821
|
/**
|
|
805
822
|
* JSON schema for Gooddata Analytics Visualisation
|
|
806
823
|
*/
|
|
@@ -808,11 +825,11 @@ export type Visualisation12 = FunnelChart;
|
|
|
808
825
|
/**
|
|
809
826
|
* A unique identifier of the visualisation.
|
|
810
827
|
*/
|
|
811
|
-
export type
|
|
828
|
+
export type Id30 = string;
|
|
812
829
|
/**
|
|
813
830
|
* A list of strings - metadata tags of this visualisation.
|
|
814
831
|
*/
|
|
815
|
-
export type
|
|
832
|
+
export type Tags23 = string[];
|
|
816
833
|
/**
|
|
817
834
|
* JSON schema for Gooddata Analytics Visualisation
|
|
818
835
|
*/
|
|
@@ -820,11 +837,11 @@ export type Visualisation13 = HeatmapChart;
|
|
|
820
837
|
/**
|
|
821
838
|
* A unique identifier of the visualisation.
|
|
822
839
|
*/
|
|
823
|
-
export type
|
|
840
|
+
export type Id31 = string;
|
|
824
841
|
/**
|
|
825
842
|
* A list of strings - metadata tags of this visualisation.
|
|
826
843
|
*/
|
|
827
|
-
export type
|
|
844
|
+
export type Tags24 = string[];
|
|
828
845
|
/**
|
|
829
846
|
* JSON schema for Gooddata Analytics Visualisation
|
|
830
847
|
*/
|
|
@@ -832,11 +849,11 @@ export type Visualisation14 = BulletChart;
|
|
|
832
849
|
/**
|
|
833
850
|
* A unique identifier of the visualisation.
|
|
834
851
|
*/
|
|
835
|
-
export type
|
|
852
|
+
export type Id32 = string;
|
|
836
853
|
/**
|
|
837
854
|
* A list of strings - metadata tags of this visualisation.
|
|
838
855
|
*/
|
|
839
|
-
export type
|
|
856
|
+
export type Tags25 = string[];
|
|
840
857
|
/**
|
|
841
858
|
* JSON schema for Gooddata Analytics Visualisation
|
|
842
859
|
*/
|
|
@@ -844,11 +861,11 @@ export type Visualisation15 = WaterfallChart;
|
|
|
844
861
|
/**
|
|
845
862
|
* A unique identifier of the visualisation.
|
|
846
863
|
*/
|
|
847
|
-
export type
|
|
864
|
+
export type Id33 = string;
|
|
848
865
|
/**
|
|
849
866
|
* A list of strings - metadata tags of this visualisation.
|
|
850
867
|
*/
|
|
851
|
-
export type
|
|
868
|
+
export type Tags26 = string[];
|
|
852
869
|
/**
|
|
853
870
|
* JSON schema for Gooddata Analytics Visualisation
|
|
854
871
|
*/
|
|
@@ -856,11 +873,11 @@ export type Visualisation16 = DependencyWheelChart;
|
|
|
856
873
|
/**
|
|
857
874
|
* A unique identifier of the visualisation.
|
|
858
875
|
*/
|
|
859
|
-
export type
|
|
876
|
+
export type Id34 = string;
|
|
860
877
|
/**
|
|
861
878
|
* A list of strings - metadata tags of this visualisation.
|
|
862
879
|
*/
|
|
863
|
-
export type
|
|
880
|
+
export type Tags27 = string[];
|
|
864
881
|
/**
|
|
865
882
|
* A from attribute in this visualisation.
|
|
866
883
|
*/
|
|
@@ -876,11 +893,11 @@ export type Visualisation17 = SankeyChart;
|
|
|
876
893
|
/**
|
|
877
894
|
* A unique identifier of the visualisation.
|
|
878
895
|
*/
|
|
879
|
-
export type
|
|
896
|
+
export type Id35 = string;
|
|
880
897
|
/**
|
|
881
898
|
* A list of strings - metadata tags of this visualisation.
|
|
882
899
|
*/
|
|
883
|
-
export type
|
|
900
|
+
export type Tags28 = string[];
|
|
884
901
|
/**
|
|
885
902
|
* A from attribute in this visualisation.
|
|
886
903
|
*/
|
|
@@ -896,11 +913,11 @@ export type Visualisation18 = HeadlineChart;
|
|
|
896
913
|
/**
|
|
897
914
|
* A unique identifier of the visualisation.
|
|
898
915
|
*/
|
|
899
|
-
export type
|
|
916
|
+
export type Id36 = string;
|
|
900
917
|
/**
|
|
901
918
|
* A list of strings - metadata tags of this visualisation.
|
|
902
919
|
*/
|
|
903
|
-
export type
|
|
920
|
+
export type Tags29 = string[];
|
|
904
921
|
/**
|
|
905
922
|
* JSON schema for Gooddata Analytics Visualisation
|
|
906
923
|
*/
|
|
@@ -908,11 +925,11 @@ export type Visualisation19 = ComboChart;
|
|
|
908
925
|
/**
|
|
909
926
|
* A unique identifier of the visualisation.
|
|
910
927
|
*/
|
|
911
|
-
export type
|
|
928
|
+
export type Id37 = string;
|
|
912
929
|
/**
|
|
913
930
|
* A list of strings - metadata tags of this visualisation.
|
|
914
931
|
*/
|
|
915
|
-
export type
|
|
932
|
+
export type Tags30 = string[];
|
|
916
933
|
/**
|
|
917
934
|
* JSON schema for Gooddata Analytics Visualisation
|
|
918
935
|
*/
|
|
@@ -920,11 +937,11 @@ export type Visualisation20 = GeoChart;
|
|
|
920
937
|
/**
|
|
921
938
|
* A unique identifier of the visualisation.
|
|
922
939
|
*/
|
|
923
|
-
export type
|
|
940
|
+
export type Id38 = string;
|
|
924
941
|
/**
|
|
925
942
|
* A list of strings - metadata tags of this visualisation.
|
|
926
943
|
*/
|
|
927
|
-
export type
|
|
944
|
+
export type Tags31 = string[];
|
|
928
945
|
export type PushpinLocationBucket = string;
|
|
929
946
|
export type LayerItem = VisualizationDataLayer | ({
|
|
930
947
|
type: "pushpin";
|
|
@@ -944,7 +961,7 @@ export type LayerItem = VisualizationDataLayer | ({
|
|
|
944
961
|
/**
|
|
945
962
|
* A unique identifier of the visualization data layer.
|
|
946
963
|
*/
|
|
947
|
-
export type
|
|
964
|
+
export type Id39 = string;
|
|
948
965
|
export type LocationBucket = string;
|
|
949
966
|
export type GeoAreaBucket = string;
|
|
950
967
|
/**
|
|
@@ -954,11 +971,11 @@ export type Visualisation21 = GeoAreaChart;
|
|
|
954
971
|
/**
|
|
955
972
|
* A unique identifier of the visualisation.
|
|
956
973
|
*/
|
|
957
|
-
export type
|
|
974
|
+
export type Id40 = string;
|
|
958
975
|
/**
|
|
959
976
|
* A list of strings - metadata tags of this visualisation.
|
|
960
977
|
*/
|
|
961
|
-
export type
|
|
978
|
+
export type Tags32 = string[];
|
|
962
979
|
/**
|
|
963
980
|
* JSON schema for Gooddata Analytics Visualisation
|
|
964
981
|
*/
|
|
@@ -966,11 +983,11 @@ export type Visualisation22 = RepeaterChart;
|
|
|
966
983
|
/**
|
|
967
984
|
* A unique identifier of the visualisation.
|
|
968
985
|
*/
|
|
969
|
-
export type
|
|
986
|
+
export type Id41 = string;
|
|
970
987
|
/**
|
|
971
988
|
* A list of strings - metadata tags of this visualisation.
|
|
972
989
|
*/
|
|
973
|
-
export type
|
|
990
|
+
export type Tags33 = string[];
|
|
974
991
|
/**
|
|
975
992
|
* JSON schema for Gooddata Analytics
|
|
976
993
|
*/
|
|
@@ -1040,6 +1057,8 @@ export interface Fields {
|
|
|
1040
1057
|
* via the `patternProperty` "^(?!\.)[.A-Za-z0-9_-]\{1,255\}$".
|
|
1041
1058
|
* This interface was referenced by `Fields1`'s JSON-Schema definition
|
|
1042
1059
|
* via the `patternProperty` "^(?!\.)[.A-Za-z0-9_-]\{1,255\}$".
|
|
1060
|
+
* This interface was referenced by `Fields2`'s JSON-Schema definition
|
|
1061
|
+
* via the `patternProperty` "^(?!\.)[.A-Za-z0-9_-]\{1,255\}$".
|
|
1043
1062
|
*/
|
|
1044
1063
|
[k: string]: Attribute | Fact | AggregatedFact | {
|
|
1045
1064
|
[k: string]: unknown;
|
|
@@ -1063,7 +1082,7 @@ export interface Attribute {
|
|
|
1063
1082
|
/**
|
|
1064
1083
|
* A column data type in the physical database.
|
|
1065
1084
|
*/
|
|
1066
|
-
data_type: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN";
|
|
1085
|
+
data_type: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN" | "HLL";
|
|
1067
1086
|
/**
|
|
1068
1087
|
* An Id of the label to be used by default for this field
|
|
1069
1088
|
*/
|
|
@@ -1110,7 +1129,7 @@ export interface Label {
|
|
|
1110
1129
|
/**
|
|
1111
1130
|
* A column data type in the physical database.
|
|
1112
1131
|
*/
|
|
1113
|
-
data_type?: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN";
|
|
1132
|
+
data_type?: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN" | "HLL";
|
|
1114
1133
|
/**
|
|
1115
1134
|
* An optional human readable title for the label.
|
|
1116
1135
|
*/
|
|
@@ -1187,7 +1206,7 @@ export interface Fact {
|
|
|
1187
1206
|
/**
|
|
1188
1207
|
* A column data type in the physical database.
|
|
1189
1208
|
*/
|
|
1190
|
-
data_type: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN";
|
|
1209
|
+
data_type: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN" | "HLL";
|
|
1191
1210
|
/**
|
|
1192
1211
|
* Optional flag to indicate if the fact should be shown in AI results. When omitted, the fact is visible.
|
|
1193
1212
|
*/
|
|
@@ -1220,11 +1239,11 @@ export interface AggregatedFact {
|
|
|
1220
1239
|
/**
|
|
1221
1240
|
* A column data type in the physical database.
|
|
1222
1241
|
*/
|
|
1223
|
-
data_type: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN";
|
|
1242
|
+
data_type: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN" | "HLL";
|
|
1224
1243
|
/**
|
|
1225
1244
|
* Aggregation method for the fact. Mapped to sourceFactReference in the API.
|
|
1226
1245
|
*/
|
|
1227
|
-
aggregated_as: "MIN" | "MAX" | "SUM";
|
|
1246
|
+
aggregated_as: "MIN" | "MAX" | "SUM" | "APPROXIMATE_COUNT";
|
|
1228
1247
|
/**
|
|
1229
1248
|
* ID of the source fact this aggregated fact is based on. Mapped to sourceFactReference in the API.
|
|
1230
1249
|
*/
|
|
@@ -1257,7 +1276,7 @@ export interface Source {
|
|
|
1257
1276
|
/**
|
|
1258
1277
|
* A column data type in the physical database.
|
|
1259
1278
|
*/
|
|
1260
|
-
data_type: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN";
|
|
1279
|
+
data_type: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN" | "HLL";
|
|
1261
1280
|
/**
|
|
1262
1281
|
* A target dataset one of primary key or date.
|
|
1263
1282
|
*/
|
|
@@ -1280,7 +1299,7 @@ export interface WorkspaceDataFilter {
|
|
|
1280
1299
|
/**
|
|
1281
1300
|
* A column data type in the physical database.
|
|
1282
1301
|
*/
|
|
1283
|
-
data_type: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN";
|
|
1302
|
+
data_type: "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN" | "HLL";
|
|
1284
1303
|
}
|
|
1285
1304
|
export interface SQLDataset {
|
|
1286
1305
|
id: Id2;
|
|
@@ -1336,6 +1355,57 @@ export interface Fields1 {
|
|
|
1336
1355
|
* via the `patternProperty` "^(?!\.)[.A-Za-z0-9_-]\{1,255\}$".
|
|
1337
1356
|
* This interface was referenced by `Fields1`'s JSON-Schema definition
|
|
1338
1357
|
* via the `patternProperty` "^(?!\.)[.A-Za-z0-9_-]\{1,255\}$".
|
|
1358
|
+
* This interface was referenced by `Fields2`'s JSON-Schema definition
|
|
1359
|
+
* via the `patternProperty` "^(?!\.)[.A-Za-z0-9_-]\{1,255\}$".
|
|
1360
|
+
*/
|
|
1361
|
+
[k: string]: Attribute | Fact | AggregatedFact | {
|
|
1362
|
+
[k: string]: unknown;
|
|
1363
|
+
};
|
|
1364
|
+
}
|
|
1365
|
+
/**
|
|
1366
|
+
* Synthetic reference target for pre-aggregation datasets. Per gdc-nas, AUX datasets must not carry table_path, sql, precedence, or workspace_data_filters; data lives in the referencing pre-aggregation datasets.
|
|
1367
|
+
*/
|
|
1368
|
+
export interface AuxiliaryDataset {
|
|
1369
|
+
id: Id4;
|
|
1370
|
+
type: "dataset";
|
|
1371
|
+
/**
|
|
1372
|
+
* An optional human readable title for the dataset. Will be derived from id if not provided explicitly.
|
|
1373
|
+
*/
|
|
1374
|
+
title?: string;
|
|
1375
|
+
/**
|
|
1376
|
+
* An optional description of the dataset.
|
|
1377
|
+
*/
|
|
1378
|
+
description?: string;
|
|
1379
|
+
tags?: Tags6;
|
|
1380
|
+
table_path?: never;
|
|
1381
|
+
sql?: never;
|
|
1382
|
+
primary_key?: PrimaryKey2 | CompositePrimaryKey2;
|
|
1383
|
+
fields?: Fields2;
|
|
1384
|
+
/**
|
|
1385
|
+
* A list of references, specifies the relations between datasets.
|
|
1386
|
+
* Foreign dataset is defined in "dataset" attribute and will always be joined by it's grain.
|
|
1387
|
+
* Current dataset will be join by the column name defined in "using" attribute.
|
|
1388
|
+
*/
|
|
1389
|
+
references?: Reference[];
|
|
1390
|
+
workspace_data_filters?: never;
|
|
1391
|
+
/**
|
|
1392
|
+
* An optional data source id used for the specific dataset.
|
|
1393
|
+
*/
|
|
1394
|
+
data_source?: string;
|
|
1395
|
+
precedence?: never;
|
|
1396
|
+
dataset_type: "auxiliary";
|
|
1397
|
+
}
|
|
1398
|
+
/**
|
|
1399
|
+
* A list of fields in this dataset.
|
|
1400
|
+
*/
|
|
1401
|
+
export interface Fields2 {
|
|
1402
|
+
/**
|
|
1403
|
+
* This interface was referenced by `Fields`'s JSON-Schema definition
|
|
1404
|
+
* via the `patternProperty` "^(?!\.)[.A-Za-z0-9_-]\{1,255\}$".
|
|
1405
|
+
* This interface was referenced by `Fields1`'s JSON-Schema definition
|
|
1406
|
+
* via the `patternProperty` "^(?!\.)[.A-Za-z0-9_-]\{1,255\}$".
|
|
1407
|
+
* This interface was referenced by `Fields2`'s JSON-Schema definition
|
|
1408
|
+
* via the `patternProperty` "^(?!\.)[.A-Za-z0-9_-]\{1,255\}$".
|
|
1339
1409
|
*/
|
|
1340
1410
|
[k: string]: Attribute | Fact | AggregatedFact | {
|
|
1341
1411
|
[k: string]: unknown;
|
|
@@ -1346,7 +1416,7 @@ export interface Metadata7 {
|
|
|
1346
1416
|
[k: string]: unknown;
|
|
1347
1417
|
}
|
|
1348
1418
|
export interface DateDataset {
|
|
1349
|
-
id:
|
|
1419
|
+
id: Id6;
|
|
1350
1420
|
type: "date";
|
|
1351
1421
|
/**
|
|
1352
1422
|
* An optional human readable title for the date instance. Will be derived from id if not provided explicitly.
|
|
@@ -1356,7 +1426,7 @@ export interface DateDataset {
|
|
|
1356
1426
|
* An optional description of the date instance.
|
|
1357
1427
|
*/
|
|
1358
1428
|
description?: string;
|
|
1359
|
-
tags?:
|
|
1429
|
+
tags?: Tags7;
|
|
1360
1430
|
/**
|
|
1361
1431
|
* A title for the title formatting
|
|
1362
1432
|
*/
|
|
@@ -1372,7 +1442,7 @@ export interface Metadata10 {
|
|
|
1372
1442
|
[k: string]: unknown;
|
|
1373
1443
|
}
|
|
1374
1444
|
export interface Metric {
|
|
1375
|
-
id:
|
|
1445
|
+
id: Id7;
|
|
1376
1446
|
type: "metric";
|
|
1377
1447
|
/**
|
|
1378
1448
|
* An optional human readable title for the metric. Will be derived from id if not provided explicitly.
|
|
@@ -1382,7 +1452,7 @@ export interface Metric {
|
|
|
1382
1452
|
* An optional description of the metric.
|
|
1383
1453
|
*/
|
|
1384
1454
|
description?: string;
|
|
1385
|
-
tags?:
|
|
1455
|
+
tags?: Tags8;
|
|
1386
1456
|
/**
|
|
1387
1457
|
* Define MAQL syntax for metric.
|
|
1388
1458
|
*/
|
|
@@ -1406,7 +1476,7 @@ export interface Metadata13 {
|
|
|
1406
1476
|
[k: string]: unknown;
|
|
1407
1477
|
}
|
|
1408
1478
|
export interface Dashboard {
|
|
1409
|
-
id:
|
|
1479
|
+
id: Id8;
|
|
1410
1480
|
type: "dashboard";
|
|
1411
1481
|
/**
|
|
1412
1482
|
* An optional human readable title for the dashboard. Will be derived from id if not provided explicitly.
|
|
@@ -1416,7 +1486,7 @@ export interface Dashboard {
|
|
|
1416
1486
|
* An optional description of the dashboard.
|
|
1417
1487
|
*/
|
|
1418
1488
|
description?: string;
|
|
1419
|
-
tags?:
|
|
1489
|
+
tags?: Tags9;
|
|
1420
1490
|
/**
|
|
1421
1491
|
* Whether cross filtering is enabled for this dashboard. Defaults to true.
|
|
1422
1492
|
*/
|
|
@@ -1446,14 +1516,14 @@ export interface Dashboard {
|
|
|
1446
1516
|
* A list of plugins in this dashboard.
|
|
1447
1517
|
*/
|
|
1448
1518
|
plugins?: ({
|
|
1449
|
-
id:
|
|
1519
|
+
id: Id14;
|
|
1450
1520
|
/**
|
|
1451
1521
|
* Parameter that will be passed to the plugin. Everything other than string will be serialized to JSON automatically.
|
|
1452
1522
|
*/
|
|
1453
1523
|
parameters?: {
|
|
1454
1524
|
[k: string]: unknown;
|
|
1455
1525
|
};
|
|
1456
|
-
} |
|
|
1526
|
+
} | Id15)[];
|
|
1457
1527
|
/**
|
|
1458
1528
|
* 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.
|
|
1459
1529
|
*/
|
|
@@ -1482,7 +1552,7 @@ export interface Section {
|
|
|
1482
1552
|
widgets: Widget[];
|
|
1483
1553
|
}
|
|
1484
1554
|
export interface VisualisationWidget {
|
|
1485
|
-
id?:
|
|
1555
|
+
id?: Id9;
|
|
1486
1556
|
/**
|
|
1487
1557
|
* An id of the visualization to be rendered with the widget
|
|
1488
1558
|
*/
|
|
@@ -1497,7 +1567,7 @@ export interface VisualisationWidget {
|
|
|
1497
1567
|
* An optional height of the widget in the grid, each row being ~20px high
|
|
1498
1568
|
*/
|
|
1499
1569
|
rows?: number;
|
|
1500
|
-
date?:
|
|
1570
|
+
date?: Id10;
|
|
1501
1571
|
/**
|
|
1502
1572
|
* A list of dashboard filters to be ignored for this widget
|
|
1503
1573
|
*/
|
|
@@ -1594,7 +1664,7 @@ export interface IgnoredDrillDownIntersection {
|
|
|
1594
1664
|
[k: string]: unknown;
|
|
1595
1665
|
}
|
|
1596
1666
|
export interface RichTextWidget {
|
|
1597
|
-
id?:
|
|
1667
|
+
id?: Id11;
|
|
1598
1668
|
/**
|
|
1599
1669
|
* A markdown content of the widget
|
|
1600
1670
|
*/
|
|
@@ -1609,7 +1679,7 @@ export interface RichTextWidget {
|
|
|
1609
1679
|
rows?: number;
|
|
1610
1680
|
}
|
|
1611
1681
|
export interface VisualizationSwitcherWidget {
|
|
1612
|
-
id?:
|
|
1682
|
+
id?: Id12;
|
|
1613
1683
|
/**
|
|
1614
1684
|
* An optional width of the widget in the grid, total width being 12 columns
|
|
1615
1685
|
*/
|
|
@@ -1624,7 +1694,7 @@ export interface VisualizationSwitcherWidget {
|
|
|
1624
1694
|
visualizations: VisualisationWidget1[];
|
|
1625
1695
|
}
|
|
1626
1696
|
export interface VisualisationWidget1 {
|
|
1627
|
-
id?:
|
|
1697
|
+
id?: Id9;
|
|
1628
1698
|
/**
|
|
1629
1699
|
* An id of the visualization to be rendered with the widget
|
|
1630
1700
|
*/
|
|
@@ -1639,7 +1709,7 @@ export interface VisualisationWidget1 {
|
|
|
1639
1709
|
* An optional height of the widget in the grid, each row being ~20px high
|
|
1640
1710
|
*/
|
|
1641
1711
|
rows?: number;
|
|
1642
|
-
date?:
|
|
1712
|
+
date?: Id10;
|
|
1643
1713
|
/**
|
|
1644
1714
|
* A list of dashboard filters to be ignored for this widget
|
|
1645
1715
|
*/
|
|
@@ -1663,7 +1733,7 @@ export interface VisualisationWidget1 {
|
|
|
1663
1733
|
ignored_cross_filtering?: boolean;
|
|
1664
1734
|
}
|
|
1665
1735
|
export interface ContainerWidget {
|
|
1666
|
-
container:
|
|
1736
|
+
container: Id13;
|
|
1667
1737
|
/**
|
|
1668
1738
|
* 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.
|
|
1669
1739
|
*/
|
|
@@ -1830,7 +1900,7 @@ export interface DashboardFilterGroup {
|
|
|
1830
1900
|
type: "date_filter" | "attribute_filter" | "text_filter" | "metric_value_filter" | "filter_group";
|
|
1831
1901
|
}
|
|
1832
1902
|
export interface Tab {
|
|
1833
|
-
id:
|
|
1903
|
+
id: Id16;
|
|
1834
1904
|
/**
|
|
1835
1905
|
* Display title for the tab.
|
|
1836
1906
|
*/
|
|
@@ -1867,7 +1937,7 @@ export interface Metadata16 {
|
|
|
1867
1937
|
[k: string]: unknown;
|
|
1868
1938
|
}
|
|
1869
1939
|
export interface Plugin {
|
|
1870
|
-
id:
|
|
1940
|
+
id: Id17;
|
|
1871
1941
|
type: "plugin";
|
|
1872
1942
|
/**
|
|
1873
1943
|
* An optional human readable title for the plugin. Will be derived from id if not provided explicitly.
|
|
@@ -1877,7 +1947,7 @@ export interface Plugin {
|
|
|
1877
1947
|
* An optional description of the plugin.
|
|
1878
1948
|
*/
|
|
1879
1949
|
description?: string;
|
|
1880
|
-
tags?:
|
|
1950
|
+
tags?: Tags10;
|
|
1881
1951
|
/**
|
|
1882
1952
|
* URL of the plugin.
|
|
1883
1953
|
*/
|
|
@@ -1888,7 +1958,7 @@ export interface Metadata19 {
|
|
|
1888
1958
|
[k: string]: unknown;
|
|
1889
1959
|
}
|
|
1890
1960
|
export interface AttributeHierarchy {
|
|
1891
|
-
id:
|
|
1961
|
+
id: Id18;
|
|
1892
1962
|
type: "attribute_hierarchy";
|
|
1893
1963
|
/**
|
|
1894
1964
|
* An optional human readable title for the attribute hierarchy. Will be derived from id if not provided explicitly.
|
|
@@ -1898,7 +1968,7 @@ export interface AttributeHierarchy {
|
|
|
1898
1968
|
* An optional description of the attribute hierarchy.
|
|
1899
1969
|
*/
|
|
1900
1970
|
description?: string;
|
|
1901
|
-
tags?:
|
|
1971
|
+
tags?: Tags11;
|
|
1902
1972
|
/**
|
|
1903
1973
|
* A list of sorted attributes use in attribute hierarchy. The first attribute is the top level attribute.
|
|
1904
1974
|
*/
|
|
@@ -1913,7 +1983,7 @@ export interface Table {
|
|
|
1913
1983
|
* Type of visualisation.
|
|
1914
1984
|
*/
|
|
1915
1985
|
type: "table";
|
|
1916
|
-
id:
|
|
1986
|
+
id: Id19;
|
|
1917
1987
|
/**
|
|
1918
1988
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
1919
1989
|
*/
|
|
@@ -1922,7 +1992,7 @@ export interface Table {
|
|
|
1922
1992
|
* An optional description of the visualisation.
|
|
1923
1993
|
*/
|
|
1924
1994
|
description?: string;
|
|
1925
|
-
tags?:
|
|
1995
|
+
tags?: Tags12;
|
|
1926
1996
|
/**
|
|
1927
1997
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
1928
1998
|
*/
|
|
@@ -1959,14 +2029,14 @@ export interface Table {
|
|
|
1959
2029
|
* Query definition of visualisation.
|
|
1960
2030
|
*/
|
|
1961
2031
|
export interface Query {
|
|
1962
|
-
fields:
|
|
2032
|
+
fields: Fields3;
|
|
1963
2033
|
filter_by?: QueryFilters2;
|
|
1964
2034
|
sort_by?: Sorts;
|
|
1965
2035
|
}
|
|
1966
2036
|
/**
|
|
1967
2037
|
* A list of fields in this query.
|
|
1968
2038
|
*/
|
|
1969
|
-
export interface
|
|
2039
|
+
export interface Fields3 {
|
|
1970
2040
|
[k: string]: Field;
|
|
1971
2041
|
}
|
|
1972
2042
|
export interface AttributeField {
|
|
@@ -2756,7 +2826,7 @@ export interface BarChart {
|
|
|
2756
2826
|
* Type of visualisation.
|
|
2757
2827
|
*/
|
|
2758
2828
|
type: "bar_chart";
|
|
2759
|
-
id:
|
|
2829
|
+
id: Id20;
|
|
2760
2830
|
/**
|
|
2761
2831
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
2762
2832
|
*/
|
|
@@ -2765,7 +2835,7 @@ export interface BarChart {
|
|
|
2765
2835
|
* An optional description of the visualisation.
|
|
2766
2836
|
*/
|
|
2767
2837
|
description?: string;
|
|
2768
|
-
tags?:
|
|
2838
|
+
tags?: Tags13;
|
|
2769
2839
|
/**
|
|
2770
2840
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
2771
2841
|
*/
|
|
@@ -2798,7 +2868,7 @@ export interface BarChart {
|
|
|
2798
2868
|
* Query definition of visualisation.
|
|
2799
2869
|
*/
|
|
2800
2870
|
export interface Query1 {
|
|
2801
|
-
fields:
|
|
2871
|
+
fields: Fields3;
|
|
2802
2872
|
filter_by?: QueryFilters2;
|
|
2803
2873
|
sort_by?: Sorts;
|
|
2804
2874
|
}
|
|
@@ -2977,7 +3047,7 @@ export interface ColumnChart {
|
|
|
2977
3047
|
* Type of visualisation.
|
|
2978
3048
|
*/
|
|
2979
3049
|
type: "column_chart";
|
|
2980
|
-
id:
|
|
3050
|
+
id: Id21;
|
|
2981
3051
|
/**
|
|
2982
3052
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
2983
3053
|
*/
|
|
@@ -2986,7 +3056,7 @@ export interface ColumnChart {
|
|
|
2986
3056
|
* An optional description of the visualisation.
|
|
2987
3057
|
*/
|
|
2988
3058
|
description?: string;
|
|
2989
|
-
tags?:
|
|
3059
|
+
tags?: Tags14;
|
|
2990
3060
|
/**
|
|
2991
3061
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
2992
3062
|
*/
|
|
@@ -3019,7 +3089,7 @@ export interface ColumnChart {
|
|
|
3019
3089
|
* Query definition of visualisation.
|
|
3020
3090
|
*/
|
|
3021
3091
|
export interface Query2 {
|
|
3022
|
-
fields:
|
|
3092
|
+
fields: Fields3;
|
|
3023
3093
|
filter_by?: QueryFilters2;
|
|
3024
3094
|
sort_by?: Sorts;
|
|
3025
3095
|
}
|
|
@@ -3198,7 +3268,7 @@ export interface LineChart {
|
|
|
3198
3268
|
* Type of visualisation.
|
|
3199
3269
|
*/
|
|
3200
3270
|
type: "line_chart";
|
|
3201
|
-
id:
|
|
3271
|
+
id: Id22;
|
|
3202
3272
|
/**
|
|
3203
3273
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
3204
3274
|
*/
|
|
@@ -3207,7 +3277,7 @@ export interface LineChart {
|
|
|
3207
3277
|
* An optional description of the visualisation.
|
|
3208
3278
|
*/
|
|
3209
3279
|
description?: string;
|
|
3210
|
-
tags?:
|
|
3280
|
+
tags?: Tags15;
|
|
3211
3281
|
/**
|
|
3212
3282
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
3213
3283
|
*/
|
|
@@ -3240,7 +3310,7 @@ export interface LineChart {
|
|
|
3240
3310
|
* Query definition of visualisation.
|
|
3241
3311
|
*/
|
|
3242
3312
|
export interface Query3 {
|
|
3243
|
-
fields:
|
|
3313
|
+
fields: Fields3;
|
|
3244
3314
|
filter_by?: QueryFilters2;
|
|
3245
3315
|
sort_by?: Sorts;
|
|
3246
3316
|
}
|
|
@@ -3419,7 +3489,7 @@ export interface AreaChart {
|
|
|
3419
3489
|
* Type of visualisation.
|
|
3420
3490
|
*/
|
|
3421
3491
|
type: "area_chart";
|
|
3422
|
-
id:
|
|
3492
|
+
id: Id23;
|
|
3423
3493
|
/**
|
|
3424
3494
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
3425
3495
|
*/
|
|
@@ -3428,7 +3498,7 @@ export interface AreaChart {
|
|
|
3428
3498
|
* An optional description of the visualisation.
|
|
3429
3499
|
*/
|
|
3430
3500
|
description?: string;
|
|
3431
|
-
tags?:
|
|
3501
|
+
tags?: Tags16;
|
|
3432
3502
|
/**
|
|
3433
3503
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
3434
3504
|
*/
|
|
@@ -3461,7 +3531,7 @@ export interface AreaChart {
|
|
|
3461
3531
|
* Query definition of visualisation.
|
|
3462
3532
|
*/
|
|
3463
3533
|
export interface Query4 {
|
|
3464
|
-
fields:
|
|
3534
|
+
fields: Fields3;
|
|
3465
3535
|
filter_by?: QueryFilters2;
|
|
3466
3536
|
sort_by?: Sorts;
|
|
3467
3537
|
}
|
|
@@ -3640,7 +3710,7 @@ export interface ScatterChart {
|
|
|
3640
3710
|
* Type of visualisation.
|
|
3641
3711
|
*/
|
|
3642
3712
|
type: "scatter_chart";
|
|
3643
|
-
id:
|
|
3713
|
+
id: Id24;
|
|
3644
3714
|
/**
|
|
3645
3715
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
3646
3716
|
*/
|
|
@@ -3649,7 +3719,7 @@ export interface ScatterChart {
|
|
|
3649
3719
|
* An optional description of the visualisation.
|
|
3650
3720
|
*/
|
|
3651
3721
|
description?: string;
|
|
3652
|
-
tags?:
|
|
3722
|
+
tags?: Tags17;
|
|
3653
3723
|
/**
|
|
3654
3724
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
3655
3725
|
*/
|
|
@@ -3682,7 +3752,7 @@ export interface ScatterChart {
|
|
|
3682
3752
|
* Query definition of visualisation.
|
|
3683
3753
|
*/
|
|
3684
3754
|
export interface Query5 {
|
|
3685
|
-
fields:
|
|
3755
|
+
fields: Fields3;
|
|
3686
3756
|
filter_by?: QueryFilters2;
|
|
3687
3757
|
sort_by?: Sorts;
|
|
3688
3758
|
}
|
|
@@ -3861,7 +3931,7 @@ export interface BubbleChart {
|
|
|
3861
3931
|
* Type of visualisation.
|
|
3862
3932
|
*/
|
|
3863
3933
|
type: "bubble_chart";
|
|
3864
|
-
id:
|
|
3934
|
+
id: Id25;
|
|
3865
3935
|
/**
|
|
3866
3936
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
3867
3937
|
*/
|
|
@@ -3870,7 +3940,7 @@ export interface BubbleChart {
|
|
|
3870
3940
|
* An optional description of the visualisation.
|
|
3871
3941
|
*/
|
|
3872
3942
|
description?: string;
|
|
3873
|
-
tags?:
|
|
3943
|
+
tags?: Tags18;
|
|
3874
3944
|
/**
|
|
3875
3945
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
3876
3946
|
*/
|
|
@@ -3903,7 +3973,7 @@ export interface BubbleChart {
|
|
|
3903
3973
|
* Query definition of visualisation.
|
|
3904
3974
|
*/
|
|
3905
3975
|
export interface Query6 {
|
|
3906
|
-
fields:
|
|
3976
|
+
fields: Fields3;
|
|
3907
3977
|
filter_by?: QueryFilters2;
|
|
3908
3978
|
sort_by?: Sorts;
|
|
3909
3979
|
}
|
|
@@ -4082,7 +4152,7 @@ export interface PieChart {
|
|
|
4082
4152
|
* Type of visualisation.
|
|
4083
4153
|
*/
|
|
4084
4154
|
type: "pie_chart";
|
|
4085
|
-
id:
|
|
4155
|
+
id: Id26;
|
|
4086
4156
|
/**
|
|
4087
4157
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
4088
4158
|
*/
|
|
@@ -4091,7 +4161,7 @@ export interface PieChart {
|
|
|
4091
4161
|
* An optional description of the visualisation.
|
|
4092
4162
|
*/
|
|
4093
4163
|
description?: string;
|
|
4094
|
-
tags?:
|
|
4164
|
+
tags?: Tags19;
|
|
4095
4165
|
/**
|
|
4096
4166
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
4097
4167
|
*/
|
|
@@ -4120,7 +4190,7 @@ export interface PieChart {
|
|
|
4120
4190
|
* Query definition of visualisation.
|
|
4121
4191
|
*/
|
|
4122
4192
|
export interface Query7 {
|
|
4123
|
-
fields:
|
|
4193
|
+
fields: Fields3;
|
|
4124
4194
|
filter_by?: QueryFilters2;
|
|
4125
4195
|
sort_by?: Sorts;
|
|
4126
4196
|
}
|
|
@@ -4299,7 +4369,7 @@ export interface PieChart1 {
|
|
|
4299
4369
|
* Type of visualisation.
|
|
4300
4370
|
*/
|
|
4301
4371
|
type: "donut_chart";
|
|
4302
|
-
id:
|
|
4372
|
+
id: Id27;
|
|
4303
4373
|
/**
|
|
4304
4374
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
4305
4375
|
*/
|
|
@@ -4308,7 +4378,7 @@ export interface PieChart1 {
|
|
|
4308
4378
|
* An optional description of the visualisation.
|
|
4309
4379
|
*/
|
|
4310
4380
|
description?: string;
|
|
4311
|
-
tags?:
|
|
4381
|
+
tags?: Tags20;
|
|
4312
4382
|
/**
|
|
4313
4383
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
4314
4384
|
*/
|
|
@@ -4337,7 +4407,7 @@ export interface PieChart1 {
|
|
|
4337
4407
|
* Query definition of visualisation.
|
|
4338
4408
|
*/
|
|
4339
4409
|
export interface Query8 {
|
|
4340
|
-
fields:
|
|
4410
|
+
fields: Fields3;
|
|
4341
4411
|
filter_by?: QueryFilters2;
|
|
4342
4412
|
sort_by?: Sorts;
|
|
4343
4413
|
}
|
|
@@ -4516,7 +4586,7 @@ export interface TreemapChart {
|
|
|
4516
4586
|
* Type of visualisation.
|
|
4517
4587
|
*/
|
|
4518
4588
|
type: "treemap_chart";
|
|
4519
|
-
id:
|
|
4589
|
+
id: Id28;
|
|
4520
4590
|
/**
|
|
4521
4591
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
4522
4592
|
*/
|
|
@@ -4525,7 +4595,7 @@ export interface TreemapChart {
|
|
|
4525
4595
|
* An optional description of the visualisation.
|
|
4526
4596
|
*/
|
|
4527
4597
|
description?: string;
|
|
4528
|
-
tags?:
|
|
4598
|
+
tags?: Tags21;
|
|
4529
4599
|
/**
|
|
4530
4600
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
4531
4601
|
*/
|
|
@@ -4554,7 +4624,7 @@ export interface TreemapChart {
|
|
|
4554
4624
|
* Query definition of visualisation.
|
|
4555
4625
|
*/
|
|
4556
4626
|
export interface Query9 {
|
|
4557
|
-
fields:
|
|
4627
|
+
fields: Fields3;
|
|
4558
4628
|
filter_by?: QueryFilters2;
|
|
4559
4629
|
sort_by?: Sorts;
|
|
4560
4630
|
}
|
|
@@ -4733,7 +4803,7 @@ export interface PyramidChart {
|
|
|
4733
4803
|
* Type of visualisation.
|
|
4734
4804
|
*/
|
|
4735
4805
|
type: "pyramid_chart";
|
|
4736
|
-
id:
|
|
4806
|
+
id: Id29;
|
|
4737
4807
|
/**
|
|
4738
4808
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
4739
4809
|
*/
|
|
@@ -4742,7 +4812,7 @@ export interface PyramidChart {
|
|
|
4742
4812
|
* An optional description of the visualisation.
|
|
4743
4813
|
*/
|
|
4744
4814
|
description?: string;
|
|
4745
|
-
tags?:
|
|
4815
|
+
tags?: Tags22;
|
|
4746
4816
|
/**
|
|
4747
4817
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
4748
4818
|
*/
|
|
@@ -4771,7 +4841,7 @@ export interface PyramidChart {
|
|
|
4771
4841
|
* Query definition of visualisation.
|
|
4772
4842
|
*/
|
|
4773
4843
|
export interface Query10 {
|
|
4774
|
-
fields:
|
|
4844
|
+
fields: Fields3;
|
|
4775
4845
|
filter_by?: QueryFilters2;
|
|
4776
4846
|
sort_by?: Sorts;
|
|
4777
4847
|
}
|
|
@@ -4950,7 +5020,7 @@ export interface FunnelChart {
|
|
|
4950
5020
|
* Type of visualisation.
|
|
4951
5021
|
*/
|
|
4952
5022
|
type: "funnel_chart";
|
|
4953
|
-
id:
|
|
5023
|
+
id: Id30;
|
|
4954
5024
|
/**
|
|
4955
5025
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
4956
5026
|
*/
|
|
@@ -4959,7 +5029,7 @@ export interface FunnelChart {
|
|
|
4959
5029
|
* An optional description of the visualisation.
|
|
4960
5030
|
*/
|
|
4961
5031
|
description?: string;
|
|
4962
|
-
tags?:
|
|
5032
|
+
tags?: Tags23;
|
|
4963
5033
|
/**
|
|
4964
5034
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
4965
5035
|
*/
|
|
@@ -4988,7 +5058,7 @@ export interface FunnelChart {
|
|
|
4988
5058
|
* Query definition of visualisation.
|
|
4989
5059
|
*/
|
|
4990
5060
|
export interface Query11 {
|
|
4991
|
-
fields:
|
|
5061
|
+
fields: Fields3;
|
|
4992
5062
|
filter_by?: QueryFilters2;
|
|
4993
5063
|
sort_by?: Sorts;
|
|
4994
5064
|
}
|
|
@@ -5167,7 +5237,7 @@ export interface HeatmapChart {
|
|
|
5167
5237
|
* Type of visualisation.
|
|
5168
5238
|
*/
|
|
5169
5239
|
type: "heatmap_chart";
|
|
5170
|
-
id:
|
|
5240
|
+
id: Id31;
|
|
5171
5241
|
/**
|
|
5172
5242
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
5173
5243
|
*/
|
|
@@ -5176,7 +5246,7 @@ export interface HeatmapChart {
|
|
|
5176
5246
|
* An optional description of the visualisation.
|
|
5177
5247
|
*/
|
|
5178
5248
|
description?: string;
|
|
5179
|
-
tags?:
|
|
5249
|
+
tags?: Tags24;
|
|
5180
5250
|
/**
|
|
5181
5251
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
5182
5252
|
*/
|
|
@@ -5213,7 +5283,7 @@ export interface HeatmapChart {
|
|
|
5213
5283
|
* Query definition of visualisation.
|
|
5214
5284
|
*/
|
|
5215
5285
|
export interface Query12 {
|
|
5216
|
-
fields:
|
|
5286
|
+
fields: Fields3;
|
|
5217
5287
|
filter_by?: QueryFilters2;
|
|
5218
5288
|
sort_by?: Sorts;
|
|
5219
5289
|
}
|
|
@@ -5392,7 +5462,7 @@ export interface BulletChart {
|
|
|
5392
5462
|
* Type of visualisation.
|
|
5393
5463
|
*/
|
|
5394
5464
|
type: "bullet_chart";
|
|
5395
|
-
id:
|
|
5465
|
+
id: Id32;
|
|
5396
5466
|
/**
|
|
5397
5467
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
5398
5468
|
*/
|
|
@@ -5401,7 +5471,7 @@ export interface BulletChart {
|
|
|
5401
5471
|
* An optional description of the visualisation.
|
|
5402
5472
|
*/
|
|
5403
5473
|
description?: string;
|
|
5404
|
-
tags?:
|
|
5474
|
+
tags?: Tags25;
|
|
5405
5475
|
/**
|
|
5406
5476
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
5407
5477
|
*/
|
|
@@ -5430,7 +5500,7 @@ export interface BulletChart {
|
|
|
5430
5500
|
* Query definition of visualisation.
|
|
5431
5501
|
*/
|
|
5432
5502
|
export interface Query13 {
|
|
5433
|
-
fields:
|
|
5503
|
+
fields: Fields3;
|
|
5434
5504
|
filter_by?: QueryFilters2;
|
|
5435
5505
|
sort_by?: Sorts;
|
|
5436
5506
|
}
|
|
@@ -5609,7 +5679,7 @@ export interface WaterfallChart {
|
|
|
5609
5679
|
* Type of visualisation.
|
|
5610
5680
|
*/
|
|
5611
5681
|
type: "waterfall_chart";
|
|
5612
|
-
id:
|
|
5682
|
+
id: Id33;
|
|
5613
5683
|
/**
|
|
5614
5684
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
5615
5685
|
*/
|
|
@@ -5618,7 +5688,7 @@ export interface WaterfallChart {
|
|
|
5618
5688
|
* An optional description of the visualisation.
|
|
5619
5689
|
*/
|
|
5620
5690
|
description?: string;
|
|
5621
|
-
tags?:
|
|
5691
|
+
tags?: Tags26;
|
|
5622
5692
|
/**
|
|
5623
5693
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
5624
5694
|
*/
|
|
@@ -5647,7 +5717,7 @@ export interface WaterfallChart {
|
|
|
5647
5717
|
* Query definition of visualisation.
|
|
5648
5718
|
*/
|
|
5649
5719
|
export interface Query14 {
|
|
5650
|
-
fields:
|
|
5720
|
+
fields: Fields3;
|
|
5651
5721
|
filter_by?: QueryFilters2;
|
|
5652
5722
|
sort_by?: Sorts;
|
|
5653
5723
|
}
|
|
@@ -5826,7 +5896,7 @@ export interface DependencyWheelChart {
|
|
|
5826
5896
|
* Type of visualisation.
|
|
5827
5897
|
*/
|
|
5828
5898
|
type: "dependency_wheel_chart";
|
|
5829
|
-
id:
|
|
5899
|
+
id: Id34;
|
|
5830
5900
|
/**
|
|
5831
5901
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
5832
5902
|
*/
|
|
@@ -5835,7 +5905,7 @@ export interface DependencyWheelChart {
|
|
|
5835
5905
|
* An optional description of the visualisation.
|
|
5836
5906
|
*/
|
|
5837
5907
|
description?: string;
|
|
5838
|
-
tags?:
|
|
5908
|
+
tags?: Tags27;
|
|
5839
5909
|
/**
|
|
5840
5910
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
5841
5911
|
*/
|
|
@@ -5866,7 +5936,7 @@ export interface DependencyWheelChart {
|
|
|
5866
5936
|
* Query definition of visualisation.
|
|
5867
5937
|
*/
|
|
5868
5938
|
export interface Query15 {
|
|
5869
|
-
fields:
|
|
5939
|
+
fields: Fields3;
|
|
5870
5940
|
filter_by?: QueryFilters2;
|
|
5871
5941
|
sort_by?: Sorts;
|
|
5872
5942
|
}
|
|
@@ -6045,7 +6115,7 @@ export interface SankeyChart {
|
|
|
6045
6115
|
* Type of visualisation.
|
|
6046
6116
|
*/
|
|
6047
6117
|
type: "sankey_chart";
|
|
6048
|
-
id:
|
|
6118
|
+
id: Id35;
|
|
6049
6119
|
/**
|
|
6050
6120
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
6051
6121
|
*/
|
|
@@ -6054,7 +6124,7 @@ export interface SankeyChart {
|
|
|
6054
6124
|
* An optional description of the visualisation.
|
|
6055
6125
|
*/
|
|
6056
6126
|
description?: string;
|
|
6057
|
-
tags?:
|
|
6127
|
+
tags?: Tags28;
|
|
6058
6128
|
/**
|
|
6059
6129
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
6060
6130
|
*/
|
|
@@ -6085,7 +6155,7 @@ export interface SankeyChart {
|
|
|
6085
6155
|
* Query definition of visualisation.
|
|
6086
6156
|
*/
|
|
6087
6157
|
export interface Query16 {
|
|
6088
|
-
fields:
|
|
6158
|
+
fields: Fields3;
|
|
6089
6159
|
filter_by?: QueryFilters2;
|
|
6090
6160
|
sort_by?: Sorts;
|
|
6091
6161
|
}
|
|
@@ -6264,7 +6334,7 @@ export interface HeadlineChart {
|
|
|
6264
6334
|
* Type of visualisation.
|
|
6265
6335
|
*/
|
|
6266
6336
|
type: "headline_chart";
|
|
6267
|
-
id:
|
|
6337
|
+
id: Id36;
|
|
6268
6338
|
/**
|
|
6269
6339
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
6270
6340
|
*/
|
|
@@ -6273,7 +6343,7 @@ export interface HeadlineChart {
|
|
|
6273
6343
|
* An optional description of the visualisation.
|
|
6274
6344
|
*/
|
|
6275
6345
|
description?: string;
|
|
6276
|
-
tags?:
|
|
6346
|
+
tags?: Tags29;
|
|
6277
6347
|
/**
|
|
6278
6348
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
6279
6349
|
*/
|
|
@@ -6302,7 +6372,7 @@ export interface HeadlineChart {
|
|
|
6302
6372
|
* Query definition of visualisation.
|
|
6303
6373
|
*/
|
|
6304
6374
|
export interface Query17 {
|
|
6305
|
-
fields:
|
|
6375
|
+
fields: Fields3;
|
|
6306
6376
|
filter_by?: QueryFilters2;
|
|
6307
6377
|
sort_by?: Sorts;
|
|
6308
6378
|
}
|
|
@@ -6481,7 +6551,7 @@ export interface ComboChart {
|
|
|
6481
6551
|
* Type of visualisation.
|
|
6482
6552
|
*/
|
|
6483
6553
|
type: "combo_chart";
|
|
6484
|
-
id:
|
|
6554
|
+
id: Id37;
|
|
6485
6555
|
/**
|
|
6486
6556
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
6487
6557
|
*/
|
|
@@ -6490,7 +6560,7 @@ export interface ComboChart {
|
|
|
6490
6560
|
* An optional description of the visualisation.
|
|
6491
6561
|
*/
|
|
6492
6562
|
description?: string;
|
|
6493
|
-
tags?:
|
|
6563
|
+
tags?: Tags30;
|
|
6494
6564
|
/**
|
|
6495
6565
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
6496
6566
|
*/
|
|
@@ -6519,7 +6589,7 @@ export interface ComboChart {
|
|
|
6519
6589
|
* Query definition of visualisation.
|
|
6520
6590
|
*/
|
|
6521
6591
|
export interface Query18 {
|
|
6522
|
-
fields:
|
|
6592
|
+
fields: Fields3;
|
|
6523
6593
|
filter_by?: QueryFilters2;
|
|
6524
6594
|
sort_by?: Sorts;
|
|
6525
6595
|
}
|
|
@@ -6698,7 +6768,7 @@ export interface GeoChart {
|
|
|
6698
6768
|
* Type of visualisation.
|
|
6699
6769
|
*/
|
|
6700
6770
|
type: "geo_chart";
|
|
6701
|
-
id:
|
|
6771
|
+
id: Id38;
|
|
6702
6772
|
/**
|
|
6703
6773
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
6704
6774
|
*/
|
|
@@ -6707,7 +6777,7 @@ export interface GeoChart {
|
|
|
6707
6777
|
* An optional description of the visualisation.
|
|
6708
6778
|
*/
|
|
6709
6779
|
description?: string;
|
|
6710
|
-
tags?:
|
|
6780
|
+
tags?: Tags31;
|
|
6711
6781
|
/**
|
|
6712
6782
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
6713
6783
|
*/
|
|
@@ -6740,7 +6810,7 @@ export interface GeoChart {
|
|
|
6740
6810
|
* Query definition of visualisation.
|
|
6741
6811
|
*/
|
|
6742
6812
|
export interface Query19 {
|
|
6743
|
-
fields:
|
|
6813
|
+
fields: Fields3;
|
|
6744
6814
|
filter_by?: QueryFilters2;
|
|
6745
6815
|
sort_by?: Sorts;
|
|
6746
6816
|
}
|
|
@@ -6915,7 +6985,7 @@ export interface VisualisationConfig19 {
|
|
|
6915
6985
|
[k: string]: unknown;
|
|
6916
6986
|
}
|
|
6917
6987
|
export interface VisualizationDataLayer {
|
|
6918
|
-
id:
|
|
6988
|
+
id: Id39;
|
|
6919
6989
|
/**
|
|
6920
6990
|
* An optional human readable title for the layer. Will be derived from id if not provided explicitly.
|
|
6921
6991
|
*/
|
|
@@ -7113,7 +7183,7 @@ export interface GeoAreaChart {
|
|
|
7113
7183
|
* Type of visualisation.
|
|
7114
7184
|
*/
|
|
7115
7185
|
type: "geo_area_chart";
|
|
7116
|
-
id:
|
|
7186
|
+
id: Id40;
|
|
7117
7187
|
/**
|
|
7118
7188
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
7119
7189
|
*/
|
|
@@ -7122,7 +7192,7 @@ export interface GeoAreaChart {
|
|
|
7122
7192
|
* An optional description of the visualisation.
|
|
7123
7193
|
*/
|
|
7124
7194
|
description?: string;
|
|
7125
|
-
tags?:
|
|
7195
|
+
tags?: Tags32;
|
|
7126
7196
|
/**
|
|
7127
7197
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
7128
7198
|
*/
|
|
@@ -7155,7 +7225,7 @@ export interface GeoAreaChart {
|
|
|
7155
7225
|
* Query definition of visualisation.
|
|
7156
7226
|
*/
|
|
7157
7227
|
export interface Query20 {
|
|
7158
|
-
fields:
|
|
7228
|
+
fields: Fields3;
|
|
7159
7229
|
filter_by?: QueryFilters2;
|
|
7160
7230
|
sort_by?: Sorts;
|
|
7161
7231
|
}
|
|
@@ -7334,7 +7404,7 @@ export interface RepeaterChart {
|
|
|
7334
7404
|
* Type of visualisation.
|
|
7335
7405
|
*/
|
|
7336
7406
|
type: "repeater_chart";
|
|
7337
|
-
id:
|
|
7407
|
+
id: Id41;
|
|
7338
7408
|
/**
|
|
7339
7409
|
* An optional human readable title for the visualisation. Will be derived from id if not provided explicitly.
|
|
7340
7410
|
*/
|
|
@@ -7343,7 +7413,7 @@ export interface RepeaterChart {
|
|
|
7343
7413
|
* An optional description of the visualisation.
|
|
7344
7414
|
*/
|
|
7345
7415
|
description?: string;
|
|
7346
|
-
tags?:
|
|
7416
|
+
tags?: Tags33;
|
|
7347
7417
|
/**
|
|
7348
7418
|
* Optional flag to indicate if the visualisation should be shown in AI results. When omitted, the visualisation is visible.
|
|
7349
7419
|
*/
|
|
@@ -7380,7 +7450,7 @@ export interface RepeaterChart {
|
|
|
7380
7450
|
* Query definition of visualisation.
|
|
7381
7451
|
*/
|
|
7382
7452
|
export interface Query21 {
|
|
7383
|
-
fields:
|
|
7453
|
+
fields: Fields3;
|
|
7384
7454
|
filter_by?: QueryFilters2;
|
|
7385
7455
|
sort_by?: Sorts;
|
|
7386
7456
|
}
|