@gooddata/sdk-code-schemas 11.28.0-alpha.8 → 11.28.0
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 +181 -52
- package/esm/v1/metadata.d.ts +162 -47
- package/esm/v1/metadata.d.ts.map +1 -1
- package/esm/v1/metadata.json +17 -6
- package/esm/v1/schema.d.ts +19 -5
- package/esm/v1/schema.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -1929,7 +1929,7 @@ declare interface Label {
|
|
|
1929
1929
|
*/
|
|
1930
1930
|
description?: string;
|
|
1931
1931
|
tags?: Tags2;
|
|
1932
|
-
value_type?: "TEXT" | "HYPERLINK" | "GEO" | "GEO_LONGITUDE" | "GEO_LATITUDE" | "IMAGE" | "GEO_AREA";
|
|
1932
|
+
value_type?: "TEXT" | "HYPERLINK" | "GEO" | "GEO_LONGITUDE" | "GEO_LATITUDE" | "GEO_ICON" | "IMAGE" | "GEO_AREA";
|
|
1933
1933
|
geo_area_config?: GeoAreaConfig;
|
|
1934
1934
|
/**
|
|
1935
1935
|
* Optional flag to indicate if the label should be shown in AI results. When omitted, the label is visible.
|
|
@@ -4466,11 +4466,6 @@ export declare const metadata_v1: {
|
|
|
4466
4466
|
};
|
|
4467
4467
|
basemap: {
|
|
4468
4468
|
type: string;
|
|
4469
|
-
enum: string[];
|
|
4470
|
-
};
|
|
4471
|
-
color_scheme: {
|
|
4472
|
-
type: string;
|
|
4473
|
-
enum: string[];
|
|
4474
4469
|
};
|
|
4475
4470
|
viewport_pan: {
|
|
4476
4471
|
type: string;
|
|
@@ -4498,6 +4493,25 @@ export declare const metadata_v1: {
|
|
|
4498
4493
|
type: string;
|
|
4499
4494
|
enum: string[];
|
|
4500
4495
|
};
|
|
4496
|
+
shape_type: {
|
|
4497
|
+
type: string;
|
|
4498
|
+
enum: string[];
|
|
4499
|
+
};
|
|
4500
|
+
icon: {
|
|
4501
|
+
type: string;
|
|
4502
|
+
};
|
|
4503
|
+
viewport_bounds_ne_lat: {
|
|
4504
|
+
type: string;
|
|
4505
|
+
};
|
|
4506
|
+
viewport_bounds_ne_lng: {
|
|
4507
|
+
type: string;
|
|
4508
|
+
};
|
|
4509
|
+
viewport_bounds_sw_lat: {
|
|
4510
|
+
type: string;
|
|
4511
|
+
};
|
|
4512
|
+
viewport_bounds_sw_lng: {
|
|
4513
|
+
type: string;
|
|
4514
|
+
};
|
|
4501
4515
|
row_height: {
|
|
4502
4516
|
type: string;
|
|
4503
4517
|
enum: string[];
|
|
@@ -10647,8 +10661,7 @@ declare interface VisualisationConfig {
|
|
|
10647
10661
|
yaxis_secondary_show_on_right?: boolean;
|
|
10648
10662
|
tooltip_text?: string;
|
|
10649
10663
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
10650
|
-
basemap?:
|
|
10651
|
-
color_scheme?: "light" | "dark";
|
|
10664
|
+
basemap?: string;
|
|
10652
10665
|
viewport_pan?: boolean;
|
|
10653
10666
|
viewport_zoom?: boolean;
|
|
10654
10667
|
center_lat?: number;
|
|
@@ -10657,6 +10670,12 @@ declare interface VisualisationConfig {
|
|
|
10657
10670
|
group_nearby_points?: boolean;
|
|
10658
10671
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
10659
10672
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
10673
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
10674
|
+
icon?: string;
|
|
10675
|
+
viewport_bounds_ne_lat?: number;
|
|
10676
|
+
viewport_bounds_ne_lng?: number;
|
|
10677
|
+
viewport_bounds_sw_lat?: number;
|
|
10678
|
+
viewport_bounds_sw_lng?: number;
|
|
10660
10679
|
row_height?: "small" | "medium" | "large";
|
|
10661
10680
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
10662
10681
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -10813,8 +10832,7 @@ declare interface VisualisationConfig1 {
|
|
|
10813
10832
|
yaxis_secondary_show_on_right?: boolean;
|
|
10814
10833
|
tooltip_text?: string;
|
|
10815
10834
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
10816
|
-
basemap?:
|
|
10817
|
-
color_scheme?: "light" | "dark";
|
|
10835
|
+
basemap?: string;
|
|
10818
10836
|
viewport_pan?: boolean;
|
|
10819
10837
|
viewport_zoom?: boolean;
|
|
10820
10838
|
center_lat?: number;
|
|
@@ -10823,6 +10841,12 @@ declare interface VisualisationConfig1 {
|
|
|
10823
10841
|
group_nearby_points?: boolean;
|
|
10824
10842
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
10825
10843
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
10844
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
10845
|
+
icon?: string;
|
|
10846
|
+
viewport_bounds_ne_lat?: number;
|
|
10847
|
+
viewport_bounds_ne_lng?: number;
|
|
10848
|
+
viewport_bounds_sw_lat?: number;
|
|
10849
|
+
viewport_bounds_sw_lng?: number;
|
|
10826
10850
|
row_height?: "small" | "medium" | "large";
|
|
10827
10851
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
10828
10852
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -10979,8 +11003,7 @@ declare interface VisualisationConfig10 {
|
|
|
10979
11003
|
yaxis_secondary_show_on_right?: boolean;
|
|
10980
11004
|
tooltip_text?: string;
|
|
10981
11005
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
10982
|
-
basemap?:
|
|
10983
|
-
color_scheme?: "light" | "dark";
|
|
11006
|
+
basemap?: string;
|
|
10984
11007
|
viewport_pan?: boolean;
|
|
10985
11008
|
viewport_zoom?: boolean;
|
|
10986
11009
|
center_lat?: number;
|
|
@@ -10989,6 +11012,12 @@ declare interface VisualisationConfig10 {
|
|
|
10989
11012
|
group_nearby_points?: boolean;
|
|
10990
11013
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
10991
11014
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
11015
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
11016
|
+
icon?: string;
|
|
11017
|
+
viewport_bounds_ne_lat?: number;
|
|
11018
|
+
viewport_bounds_ne_lng?: number;
|
|
11019
|
+
viewport_bounds_sw_lat?: number;
|
|
11020
|
+
viewport_bounds_sw_lng?: number;
|
|
10992
11021
|
row_height?: "small" | "medium" | "large";
|
|
10993
11022
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
10994
11023
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -11145,8 +11174,7 @@ declare interface VisualisationConfig11 {
|
|
|
11145
11174
|
yaxis_secondary_show_on_right?: boolean;
|
|
11146
11175
|
tooltip_text?: string;
|
|
11147
11176
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
11148
|
-
basemap?:
|
|
11149
|
-
color_scheme?: "light" | "dark";
|
|
11177
|
+
basemap?: string;
|
|
11150
11178
|
viewport_pan?: boolean;
|
|
11151
11179
|
viewport_zoom?: boolean;
|
|
11152
11180
|
center_lat?: number;
|
|
@@ -11155,6 +11183,12 @@ declare interface VisualisationConfig11 {
|
|
|
11155
11183
|
group_nearby_points?: boolean;
|
|
11156
11184
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
11157
11185
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
11186
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
11187
|
+
icon?: string;
|
|
11188
|
+
viewport_bounds_ne_lat?: number;
|
|
11189
|
+
viewport_bounds_ne_lng?: number;
|
|
11190
|
+
viewport_bounds_sw_lat?: number;
|
|
11191
|
+
viewport_bounds_sw_lng?: number;
|
|
11158
11192
|
row_height?: "small" | "medium" | "large";
|
|
11159
11193
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
11160
11194
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -11311,8 +11345,7 @@ declare interface VisualisationConfig12 {
|
|
|
11311
11345
|
yaxis_secondary_show_on_right?: boolean;
|
|
11312
11346
|
tooltip_text?: string;
|
|
11313
11347
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
11314
|
-
basemap?:
|
|
11315
|
-
color_scheme?: "light" | "dark";
|
|
11348
|
+
basemap?: string;
|
|
11316
11349
|
viewport_pan?: boolean;
|
|
11317
11350
|
viewport_zoom?: boolean;
|
|
11318
11351
|
center_lat?: number;
|
|
@@ -11321,6 +11354,12 @@ declare interface VisualisationConfig12 {
|
|
|
11321
11354
|
group_nearby_points?: boolean;
|
|
11322
11355
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
11323
11356
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
11357
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
11358
|
+
icon?: string;
|
|
11359
|
+
viewport_bounds_ne_lat?: number;
|
|
11360
|
+
viewport_bounds_ne_lng?: number;
|
|
11361
|
+
viewport_bounds_sw_lat?: number;
|
|
11362
|
+
viewport_bounds_sw_lng?: number;
|
|
11324
11363
|
row_height?: "small" | "medium" | "large";
|
|
11325
11364
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
11326
11365
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -11477,8 +11516,7 @@ declare interface VisualisationConfig13 {
|
|
|
11477
11516
|
yaxis_secondary_show_on_right?: boolean;
|
|
11478
11517
|
tooltip_text?: string;
|
|
11479
11518
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
11480
|
-
basemap?:
|
|
11481
|
-
color_scheme?: "light" | "dark";
|
|
11519
|
+
basemap?: string;
|
|
11482
11520
|
viewport_pan?: boolean;
|
|
11483
11521
|
viewport_zoom?: boolean;
|
|
11484
11522
|
center_lat?: number;
|
|
@@ -11487,6 +11525,12 @@ declare interface VisualisationConfig13 {
|
|
|
11487
11525
|
group_nearby_points?: boolean;
|
|
11488
11526
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
11489
11527
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
11528
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
11529
|
+
icon?: string;
|
|
11530
|
+
viewport_bounds_ne_lat?: number;
|
|
11531
|
+
viewport_bounds_ne_lng?: number;
|
|
11532
|
+
viewport_bounds_sw_lat?: number;
|
|
11533
|
+
viewport_bounds_sw_lng?: number;
|
|
11490
11534
|
row_height?: "small" | "medium" | "large";
|
|
11491
11535
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
11492
11536
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -11643,8 +11687,7 @@ declare interface VisualisationConfig14 {
|
|
|
11643
11687
|
yaxis_secondary_show_on_right?: boolean;
|
|
11644
11688
|
tooltip_text?: string;
|
|
11645
11689
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
11646
|
-
basemap?:
|
|
11647
|
-
color_scheme?: "light" | "dark";
|
|
11690
|
+
basemap?: string;
|
|
11648
11691
|
viewport_pan?: boolean;
|
|
11649
11692
|
viewport_zoom?: boolean;
|
|
11650
11693
|
center_lat?: number;
|
|
@@ -11653,6 +11696,12 @@ declare interface VisualisationConfig14 {
|
|
|
11653
11696
|
group_nearby_points?: boolean;
|
|
11654
11697
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
11655
11698
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
11699
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
11700
|
+
icon?: string;
|
|
11701
|
+
viewport_bounds_ne_lat?: number;
|
|
11702
|
+
viewport_bounds_ne_lng?: number;
|
|
11703
|
+
viewport_bounds_sw_lat?: number;
|
|
11704
|
+
viewport_bounds_sw_lng?: number;
|
|
11656
11705
|
row_height?: "small" | "medium" | "large";
|
|
11657
11706
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
11658
11707
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -11809,8 +11858,7 @@ declare interface VisualisationConfig15 {
|
|
|
11809
11858
|
yaxis_secondary_show_on_right?: boolean;
|
|
11810
11859
|
tooltip_text?: string;
|
|
11811
11860
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
11812
|
-
basemap?:
|
|
11813
|
-
color_scheme?: "light" | "dark";
|
|
11861
|
+
basemap?: string;
|
|
11814
11862
|
viewport_pan?: boolean;
|
|
11815
11863
|
viewport_zoom?: boolean;
|
|
11816
11864
|
center_lat?: number;
|
|
@@ -11819,6 +11867,12 @@ declare interface VisualisationConfig15 {
|
|
|
11819
11867
|
group_nearby_points?: boolean;
|
|
11820
11868
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
11821
11869
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
11870
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
11871
|
+
icon?: string;
|
|
11872
|
+
viewport_bounds_ne_lat?: number;
|
|
11873
|
+
viewport_bounds_ne_lng?: number;
|
|
11874
|
+
viewport_bounds_sw_lat?: number;
|
|
11875
|
+
viewport_bounds_sw_lng?: number;
|
|
11822
11876
|
row_height?: "small" | "medium" | "large";
|
|
11823
11877
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
11824
11878
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -11975,8 +12029,7 @@ declare interface VisualisationConfig16 {
|
|
|
11975
12029
|
yaxis_secondary_show_on_right?: boolean;
|
|
11976
12030
|
tooltip_text?: string;
|
|
11977
12031
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
11978
|
-
basemap?:
|
|
11979
|
-
color_scheme?: "light" | "dark";
|
|
12032
|
+
basemap?: string;
|
|
11980
12033
|
viewport_pan?: boolean;
|
|
11981
12034
|
viewport_zoom?: boolean;
|
|
11982
12035
|
center_lat?: number;
|
|
@@ -11985,6 +12038,12 @@ declare interface VisualisationConfig16 {
|
|
|
11985
12038
|
group_nearby_points?: boolean;
|
|
11986
12039
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
11987
12040
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
12041
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
12042
|
+
icon?: string;
|
|
12043
|
+
viewport_bounds_ne_lat?: number;
|
|
12044
|
+
viewport_bounds_ne_lng?: number;
|
|
12045
|
+
viewport_bounds_sw_lat?: number;
|
|
12046
|
+
viewport_bounds_sw_lng?: number;
|
|
11988
12047
|
row_height?: "small" | "medium" | "large";
|
|
11989
12048
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
11990
12049
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -12141,8 +12200,7 @@ declare interface VisualisationConfig17 {
|
|
|
12141
12200
|
yaxis_secondary_show_on_right?: boolean;
|
|
12142
12201
|
tooltip_text?: string;
|
|
12143
12202
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
12144
|
-
basemap?:
|
|
12145
|
-
color_scheme?: "light" | "dark";
|
|
12203
|
+
basemap?: string;
|
|
12146
12204
|
viewport_pan?: boolean;
|
|
12147
12205
|
viewport_zoom?: boolean;
|
|
12148
12206
|
center_lat?: number;
|
|
@@ -12151,6 +12209,12 @@ declare interface VisualisationConfig17 {
|
|
|
12151
12209
|
group_nearby_points?: boolean;
|
|
12152
12210
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
12153
12211
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
12212
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
12213
|
+
icon?: string;
|
|
12214
|
+
viewport_bounds_ne_lat?: number;
|
|
12215
|
+
viewport_bounds_ne_lng?: number;
|
|
12216
|
+
viewport_bounds_sw_lat?: number;
|
|
12217
|
+
viewport_bounds_sw_lng?: number;
|
|
12154
12218
|
row_height?: "small" | "medium" | "large";
|
|
12155
12219
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
12156
12220
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -12307,8 +12371,7 @@ declare interface VisualisationConfig18 {
|
|
|
12307
12371
|
yaxis_secondary_show_on_right?: boolean;
|
|
12308
12372
|
tooltip_text?: string;
|
|
12309
12373
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
12310
|
-
basemap?:
|
|
12311
|
-
color_scheme?: "light" | "dark";
|
|
12374
|
+
basemap?: string;
|
|
12312
12375
|
viewport_pan?: boolean;
|
|
12313
12376
|
viewport_zoom?: boolean;
|
|
12314
12377
|
center_lat?: number;
|
|
@@ -12317,6 +12380,12 @@ declare interface VisualisationConfig18 {
|
|
|
12317
12380
|
group_nearby_points?: boolean;
|
|
12318
12381
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
12319
12382
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
12383
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
12384
|
+
icon?: string;
|
|
12385
|
+
viewport_bounds_ne_lat?: number;
|
|
12386
|
+
viewport_bounds_ne_lng?: number;
|
|
12387
|
+
viewport_bounds_sw_lat?: number;
|
|
12388
|
+
viewport_bounds_sw_lng?: number;
|
|
12320
12389
|
row_height?: "small" | "medium" | "large";
|
|
12321
12390
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
12322
12391
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -12473,8 +12542,7 @@ declare interface VisualisationConfig19 {
|
|
|
12473
12542
|
yaxis_secondary_show_on_right?: boolean;
|
|
12474
12543
|
tooltip_text?: string;
|
|
12475
12544
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
12476
|
-
basemap?:
|
|
12477
|
-
color_scheme?: "light" | "dark";
|
|
12545
|
+
basemap?: string;
|
|
12478
12546
|
viewport_pan?: boolean;
|
|
12479
12547
|
viewport_zoom?: boolean;
|
|
12480
12548
|
center_lat?: number;
|
|
@@ -12483,6 +12551,12 @@ declare interface VisualisationConfig19 {
|
|
|
12483
12551
|
group_nearby_points?: boolean;
|
|
12484
12552
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
12485
12553
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
12554
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
12555
|
+
icon?: string;
|
|
12556
|
+
viewport_bounds_ne_lat?: number;
|
|
12557
|
+
viewport_bounds_ne_lng?: number;
|
|
12558
|
+
viewport_bounds_sw_lat?: number;
|
|
12559
|
+
viewport_bounds_sw_lng?: number;
|
|
12486
12560
|
row_height?: "small" | "medium" | "large";
|
|
12487
12561
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
12488
12562
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -12639,8 +12713,7 @@ declare interface VisualisationConfig2 {
|
|
|
12639
12713
|
yaxis_secondary_show_on_right?: boolean;
|
|
12640
12714
|
tooltip_text?: string;
|
|
12641
12715
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
12642
|
-
basemap?:
|
|
12643
|
-
color_scheme?: "light" | "dark";
|
|
12716
|
+
basemap?: string;
|
|
12644
12717
|
viewport_pan?: boolean;
|
|
12645
12718
|
viewport_zoom?: boolean;
|
|
12646
12719
|
center_lat?: number;
|
|
@@ -12649,6 +12722,12 @@ declare interface VisualisationConfig2 {
|
|
|
12649
12722
|
group_nearby_points?: boolean;
|
|
12650
12723
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
12651
12724
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
12725
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
12726
|
+
icon?: string;
|
|
12727
|
+
viewport_bounds_ne_lat?: number;
|
|
12728
|
+
viewport_bounds_ne_lng?: number;
|
|
12729
|
+
viewport_bounds_sw_lat?: number;
|
|
12730
|
+
viewport_bounds_sw_lng?: number;
|
|
12652
12731
|
row_height?: "small" | "medium" | "large";
|
|
12653
12732
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
12654
12733
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -12805,8 +12884,7 @@ declare interface VisualisationConfig20 {
|
|
|
12805
12884
|
yaxis_secondary_show_on_right?: boolean;
|
|
12806
12885
|
tooltip_text?: string;
|
|
12807
12886
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
12808
|
-
basemap?:
|
|
12809
|
-
color_scheme?: "light" | "dark";
|
|
12887
|
+
basemap?: string;
|
|
12810
12888
|
viewport_pan?: boolean;
|
|
12811
12889
|
viewport_zoom?: boolean;
|
|
12812
12890
|
center_lat?: number;
|
|
@@ -12815,6 +12893,12 @@ declare interface VisualisationConfig20 {
|
|
|
12815
12893
|
group_nearby_points?: boolean;
|
|
12816
12894
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
12817
12895
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
12896
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
12897
|
+
icon?: string;
|
|
12898
|
+
viewport_bounds_ne_lat?: number;
|
|
12899
|
+
viewport_bounds_ne_lng?: number;
|
|
12900
|
+
viewport_bounds_sw_lat?: number;
|
|
12901
|
+
viewport_bounds_sw_lng?: number;
|
|
12818
12902
|
row_height?: "small" | "medium" | "large";
|
|
12819
12903
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
12820
12904
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -12971,8 +13055,7 @@ declare interface VisualisationConfig21 {
|
|
|
12971
13055
|
yaxis_secondary_show_on_right?: boolean;
|
|
12972
13056
|
tooltip_text?: string;
|
|
12973
13057
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
12974
|
-
basemap?:
|
|
12975
|
-
color_scheme?: "light" | "dark";
|
|
13058
|
+
basemap?: string;
|
|
12976
13059
|
viewport_pan?: boolean;
|
|
12977
13060
|
viewport_zoom?: boolean;
|
|
12978
13061
|
center_lat?: number;
|
|
@@ -12981,6 +13064,12 @@ declare interface VisualisationConfig21 {
|
|
|
12981
13064
|
group_nearby_points?: boolean;
|
|
12982
13065
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
12983
13066
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
13067
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
13068
|
+
icon?: string;
|
|
13069
|
+
viewport_bounds_ne_lat?: number;
|
|
13070
|
+
viewport_bounds_ne_lng?: number;
|
|
13071
|
+
viewport_bounds_sw_lat?: number;
|
|
13072
|
+
viewport_bounds_sw_lng?: number;
|
|
12984
13073
|
row_height?: "small" | "medium" | "large";
|
|
12985
13074
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
12986
13075
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -13137,8 +13226,7 @@ declare interface VisualisationConfig22 {
|
|
|
13137
13226
|
yaxis_secondary_show_on_right?: boolean;
|
|
13138
13227
|
tooltip_text?: string;
|
|
13139
13228
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
13140
|
-
basemap?:
|
|
13141
|
-
color_scheme?: "light" | "dark";
|
|
13229
|
+
basemap?: string;
|
|
13142
13230
|
viewport_pan?: boolean;
|
|
13143
13231
|
viewport_zoom?: boolean;
|
|
13144
13232
|
center_lat?: number;
|
|
@@ -13147,6 +13235,12 @@ declare interface VisualisationConfig22 {
|
|
|
13147
13235
|
group_nearby_points?: boolean;
|
|
13148
13236
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
13149
13237
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
13238
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
13239
|
+
icon?: string;
|
|
13240
|
+
viewport_bounds_ne_lat?: number;
|
|
13241
|
+
viewport_bounds_ne_lng?: number;
|
|
13242
|
+
viewport_bounds_sw_lat?: number;
|
|
13243
|
+
viewport_bounds_sw_lng?: number;
|
|
13150
13244
|
row_height?: "small" | "medium" | "large";
|
|
13151
13245
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
13152
13246
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -13303,8 +13397,7 @@ declare interface VisualisationConfig3 {
|
|
|
13303
13397
|
yaxis_secondary_show_on_right?: boolean;
|
|
13304
13398
|
tooltip_text?: string;
|
|
13305
13399
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
13306
|
-
basemap?:
|
|
13307
|
-
color_scheme?: "light" | "dark";
|
|
13400
|
+
basemap?: string;
|
|
13308
13401
|
viewport_pan?: boolean;
|
|
13309
13402
|
viewport_zoom?: boolean;
|
|
13310
13403
|
center_lat?: number;
|
|
@@ -13313,6 +13406,12 @@ declare interface VisualisationConfig3 {
|
|
|
13313
13406
|
group_nearby_points?: boolean;
|
|
13314
13407
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
13315
13408
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
13409
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
13410
|
+
icon?: string;
|
|
13411
|
+
viewport_bounds_ne_lat?: number;
|
|
13412
|
+
viewport_bounds_ne_lng?: number;
|
|
13413
|
+
viewport_bounds_sw_lat?: number;
|
|
13414
|
+
viewport_bounds_sw_lng?: number;
|
|
13316
13415
|
row_height?: "small" | "medium" | "large";
|
|
13317
13416
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
13318
13417
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -13469,8 +13568,7 @@ declare interface VisualisationConfig4 {
|
|
|
13469
13568
|
yaxis_secondary_show_on_right?: boolean;
|
|
13470
13569
|
tooltip_text?: string;
|
|
13471
13570
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
13472
|
-
basemap?:
|
|
13473
|
-
color_scheme?: "light" | "dark";
|
|
13571
|
+
basemap?: string;
|
|
13474
13572
|
viewport_pan?: boolean;
|
|
13475
13573
|
viewport_zoom?: boolean;
|
|
13476
13574
|
center_lat?: number;
|
|
@@ -13479,6 +13577,12 @@ declare interface VisualisationConfig4 {
|
|
|
13479
13577
|
group_nearby_points?: boolean;
|
|
13480
13578
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
13481
13579
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
13580
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
13581
|
+
icon?: string;
|
|
13582
|
+
viewport_bounds_ne_lat?: number;
|
|
13583
|
+
viewport_bounds_ne_lng?: number;
|
|
13584
|
+
viewport_bounds_sw_lat?: number;
|
|
13585
|
+
viewport_bounds_sw_lng?: number;
|
|
13482
13586
|
row_height?: "small" | "medium" | "large";
|
|
13483
13587
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
13484
13588
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -13635,8 +13739,7 @@ declare interface VisualisationConfig5 {
|
|
|
13635
13739
|
yaxis_secondary_show_on_right?: boolean;
|
|
13636
13740
|
tooltip_text?: string;
|
|
13637
13741
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
13638
|
-
basemap?:
|
|
13639
|
-
color_scheme?: "light" | "dark";
|
|
13742
|
+
basemap?: string;
|
|
13640
13743
|
viewport_pan?: boolean;
|
|
13641
13744
|
viewport_zoom?: boolean;
|
|
13642
13745
|
center_lat?: number;
|
|
@@ -13645,6 +13748,12 @@ declare interface VisualisationConfig5 {
|
|
|
13645
13748
|
group_nearby_points?: boolean;
|
|
13646
13749
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
13647
13750
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
13751
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
13752
|
+
icon?: string;
|
|
13753
|
+
viewport_bounds_ne_lat?: number;
|
|
13754
|
+
viewport_bounds_ne_lng?: number;
|
|
13755
|
+
viewport_bounds_sw_lat?: number;
|
|
13756
|
+
viewport_bounds_sw_lng?: number;
|
|
13648
13757
|
row_height?: "small" | "medium" | "large";
|
|
13649
13758
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
13650
13759
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -13801,8 +13910,7 @@ declare interface VisualisationConfig6 {
|
|
|
13801
13910
|
yaxis_secondary_show_on_right?: boolean;
|
|
13802
13911
|
tooltip_text?: string;
|
|
13803
13912
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
13804
|
-
basemap?:
|
|
13805
|
-
color_scheme?: "light" | "dark";
|
|
13913
|
+
basemap?: string;
|
|
13806
13914
|
viewport_pan?: boolean;
|
|
13807
13915
|
viewport_zoom?: boolean;
|
|
13808
13916
|
center_lat?: number;
|
|
@@ -13811,6 +13919,12 @@ declare interface VisualisationConfig6 {
|
|
|
13811
13919
|
group_nearby_points?: boolean;
|
|
13812
13920
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
13813
13921
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
13922
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
13923
|
+
icon?: string;
|
|
13924
|
+
viewport_bounds_ne_lat?: number;
|
|
13925
|
+
viewport_bounds_ne_lng?: number;
|
|
13926
|
+
viewport_bounds_sw_lat?: number;
|
|
13927
|
+
viewport_bounds_sw_lng?: number;
|
|
13814
13928
|
row_height?: "small" | "medium" | "large";
|
|
13815
13929
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
13816
13930
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -13967,8 +14081,7 @@ declare interface VisualisationConfig7 {
|
|
|
13967
14081
|
yaxis_secondary_show_on_right?: boolean;
|
|
13968
14082
|
tooltip_text?: string;
|
|
13969
14083
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
13970
|
-
basemap?:
|
|
13971
|
-
color_scheme?: "light" | "dark";
|
|
14084
|
+
basemap?: string;
|
|
13972
14085
|
viewport_pan?: boolean;
|
|
13973
14086
|
viewport_zoom?: boolean;
|
|
13974
14087
|
center_lat?: number;
|
|
@@ -13977,6 +14090,12 @@ declare interface VisualisationConfig7 {
|
|
|
13977
14090
|
group_nearby_points?: boolean;
|
|
13978
14091
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
13979
14092
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
14093
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
14094
|
+
icon?: string;
|
|
14095
|
+
viewport_bounds_ne_lat?: number;
|
|
14096
|
+
viewport_bounds_ne_lng?: number;
|
|
14097
|
+
viewport_bounds_sw_lat?: number;
|
|
14098
|
+
viewport_bounds_sw_lng?: number;
|
|
13980
14099
|
row_height?: "small" | "medium" | "large";
|
|
13981
14100
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
13982
14101
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -14133,8 +14252,7 @@ declare interface VisualisationConfig8 {
|
|
|
14133
14252
|
yaxis_secondary_show_on_right?: boolean;
|
|
14134
14253
|
tooltip_text?: string;
|
|
14135
14254
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
14136
|
-
basemap?:
|
|
14137
|
-
color_scheme?: "light" | "dark";
|
|
14255
|
+
basemap?: string;
|
|
14138
14256
|
viewport_pan?: boolean;
|
|
14139
14257
|
viewport_zoom?: boolean;
|
|
14140
14258
|
center_lat?: number;
|
|
@@ -14143,6 +14261,12 @@ declare interface VisualisationConfig8 {
|
|
|
14143
14261
|
group_nearby_points?: boolean;
|
|
14144
14262
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
14145
14263
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
14264
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
14265
|
+
icon?: string;
|
|
14266
|
+
viewport_bounds_ne_lat?: number;
|
|
14267
|
+
viewport_bounds_ne_lng?: number;
|
|
14268
|
+
viewport_bounds_sw_lat?: number;
|
|
14269
|
+
viewport_bounds_sw_lng?: number;
|
|
14146
14270
|
row_height?: "small" | "medium" | "large";
|
|
14147
14271
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
14148
14272
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -14299,8 +14423,7 @@ declare interface VisualisationConfig9 {
|
|
|
14299
14423
|
yaxis_secondary_show_on_right?: boolean;
|
|
14300
14424
|
tooltip_text?: string;
|
|
14301
14425
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
14302
|
-
basemap?:
|
|
14303
|
-
color_scheme?: "light" | "dark";
|
|
14426
|
+
basemap?: string;
|
|
14304
14427
|
viewport_pan?: boolean;
|
|
14305
14428
|
viewport_zoom?: boolean;
|
|
14306
14429
|
center_lat?: number;
|
|
@@ -14309,6 +14432,12 @@ declare interface VisualisationConfig9 {
|
|
|
14309
14432
|
group_nearby_points?: boolean;
|
|
14310
14433
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
14311
14434
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
14435
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
14436
|
+
icon?: string;
|
|
14437
|
+
viewport_bounds_ne_lat?: number;
|
|
14438
|
+
viewport_bounds_ne_lng?: number;
|
|
14439
|
+
viewport_bounds_sw_lat?: number;
|
|
14440
|
+
viewport_bounds_sw_lng?: number;
|
|
14312
14441
|
row_height?: "small" | "medium" | "large";
|
|
14313
14442
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
14314
14443
|
cell_text_wrapping?: "clip" | "wrap";
|