@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
package/esm/v1/metadata.d.ts
CHANGED
|
@@ -1050,7 +1050,7 @@ export interface Label {
|
|
|
1050
1050
|
*/
|
|
1051
1051
|
description?: string;
|
|
1052
1052
|
tags?: Tags2;
|
|
1053
|
-
value_type?: "TEXT" | "HYPERLINK" | "GEO" | "GEO_LONGITUDE" | "GEO_LATITUDE" | "IMAGE" | "GEO_AREA";
|
|
1053
|
+
value_type?: "TEXT" | "HYPERLINK" | "GEO" | "GEO_LONGITUDE" | "GEO_LATITUDE" | "GEO_ICON" | "IMAGE" | "GEO_AREA";
|
|
1054
1054
|
geo_area_config?: GeoAreaConfig;
|
|
1055
1055
|
/**
|
|
1056
1056
|
* Optional flag to indicate if the label should be shown in AI results. When omitted, the label is visible.
|
|
@@ -2429,8 +2429,7 @@ export interface VisualisationConfig {
|
|
|
2429
2429
|
yaxis_secondary_show_on_right?: boolean;
|
|
2430
2430
|
tooltip_text?: string;
|
|
2431
2431
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
2432
|
-
basemap?:
|
|
2433
|
-
color_scheme?: "light" | "dark";
|
|
2432
|
+
basemap?: string;
|
|
2434
2433
|
viewport_pan?: boolean;
|
|
2435
2434
|
viewport_zoom?: boolean;
|
|
2436
2435
|
center_lat?: number;
|
|
@@ -2439,6 +2438,12 @@ export interface VisualisationConfig {
|
|
|
2439
2438
|
group_nearby_points?: boolean;
|
|
2440
2439
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
2441
2440
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
2441
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
2442
|
+
icon?: string;
|
|
2443
|
+
viewport_bounds_ne_lat?: number;
|
|
2444
|
+
viewport_bounds_ne_lng?: number;
|
|
2445
|
+
viewport_bounds_sw_lat?: number;
|
|
2446
|
+
viewport_bounds_sw_lng?: number;
|
|
2442
2447
|
row_height?: "small" | "medium" | "large";
|
|
2443
2448
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
2444
2449
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -2709,8 +2714,7 @@ export interface VisualisationConfig1 {
|
|
|
2709
2714
|
yaxis_secondary_show_on_right?: boolean;
|
|
2710
2715
|
tooltip_text?: string;
|
|
2711
2716
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
2712
|
-
basemap?:
|
|
2713
|
-
color_scheme?: "light" | "dark";
|
|
2717
|
+
basemap?: string;
|
|
2714
2718
|
viewport_pan?: boolean;
|
|
2715
2719
|
viewport_zoom?: boolean;
|
|
2716
2720
|
center_lat?: number;
|
|
@@ -2719,6 +2723,12 @@ export interface VisualisationConfig1 {
|
|
|
2719
2723
|
group_nearby_points?: boolean;
|
|
2720
2724
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
2721
2725
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
2726
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
2727
|
+
icon?: string;
|
|
2728
|
+
viewport_bounds_ne_lat?: number;
|
|
2729
|
+
viewport_bounds_ne_lng?: number;
|
|
2730
|
+
viewport_bounds_sw_lat?: number;
|
|
2731
|
+
viewport_bounds_sw_lng?: number;
|
|
2722
2732
|
row_height?: "small" | "medium" | "large";
|
|
2723
2733
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
2724
2734
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -2925,8 +2935,7 @@ export interface VisualisationConfig2 {
|
|
|
2925
2935
|
yaxis_secondary_show_on_right?: boolean;
|
|
2926
2936
|
tooltip_text?: string;
|
|
2927
2937
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
2928
|
-
basemap?:
|
|
2929
|
-
color_scheme?: "light" | "dark";
|
|
2938
|
+
basemap?: string;
|
|
2930
2939
|
viewport_pan?: boolean;
|
|
2931
2940
|
viewport_zoom?: boolean;
|
|
2932
2941
|
center_lat?: number;
|
|
@@ -2935,6 +2944,12 @@ export interface VisualisationConfig2 {
|
|
|
2935
2944
|
group_nearby_points?: boolean;
|
|
2936
2945
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
2937
2946
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
2947
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
2948
|
+
icon?: string;
|
|
2949
|
+
viewport_bounds_ne_lat?: number;
|
|
2950
|
+
viewport_bounds_ne_lng?: number;
|
|
2951
|
+
viewport_bounds_sw_lat?: number;
|
|
2952
|
+
viewport_bounds_sw_lng?: number;
|
|
2938
2953
|
row_height?: "small" | "medium" | "large";
|
|
2939
2954
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
2940
2955
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -3141,8 +3156,7 @@ export interface VisualisationConfig3 {
|
|
|
3141
3156
|
yaxis_secondary_show_on_right?: boolean;
|
|
3142
3157
|
tooltip_text?: string;
|
|
3143
3158
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
3144
|
-
basemap?:
|
|
3145
|
-
color_scheme?: "light" | "dark";
|
|
3159
|
+
basemap?: string;
|
|
3146
3160
|
viewport_pan?: boolean;
|
|
3147
3161
|
viewport_zoom?: boolean;
|
|
3148
3162
|
center_lat?: number;
|
|
@@ -3151,6 +3165,12 @@ export interface VisualisationConfig3 {
|
|
|
3151
3165
|
group_nearby_points?: boolean;
|
|
3152
3166
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
3153
3167
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
3168
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
3169
|
+
icon?: string;
|
|
3170
|
+
viewport_bounds_ne_lat?: number;
|
|
3171
|
+
viewport_bounds_ne_lng?: number;
|
|
3172
|
+
viewport_bounds_sw_lat?: number;
|
|
3173
|
+
viewport_bounds_sw_lng?: number;
|
|
3154
3174
|
row_height?: "small" | "medium" | "large";
|
|
3155
3175
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
3156
3176
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -3357,8 +3377,7 @@ export interface VisualisationConfig4 {
|
|
|
3357
3377
|
yaxis_secondary_show_on_right?: boolean;
|
|
3358
3378
|
tooltip_text?: string;
|
|
3359
3379
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
3360
|
-
basemap?:
|
|
3361
|
-
color_scheme?: "light" | "dark";
|
|
3380
|
+
basemap?: string;
|
|
3362
3381
|
viewport_pan?: boolean;
|
|
3363
3382
|
viewport_zoom?: boolean;
|
|
3364
3383
|
center_lat?: number;
|
|
@@ -3367,6 +3386,12 @@ export interface VisualisationConfig4 {
|
|
|
3367
3386
|
group_nearby_points?: boolean;
|
|
3368
3387
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
3369
3388
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
3389
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
3390
|
+
icon?: string;
|
|
3391
|
+
viewport_bounds_ne_lat?: number;
|
|
3392
|
+
viewport_bounds_ne_lng?: number;
|
|
3393
|
+
viewport_bounds_sw_lat?: number;
|
|
3394
|
+
viewport_bounds_sw_lng?: number;
|
|
3370
3395
|
row_height?: "small" | "medium" | "large";
|
|
3371
3396
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
3372
3397
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -3573,8 +3598,7 @@ export interface VisualisationConfig5 {
|
|
|
3573
3598
|
yaxis_secondary_show_on_right?: boolean;
|
|
3574
3599
|
tooltip_text?: string;
|
|
3575
3600
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
3576
|
-
basemap?:
|
|
3577
|
-
color_scheme?: "light" | "dark";
|
|
3601
|
+
basemap?: string;
|
|
3578
3602
|
viewport_pan?: boolean;
|
|
3579
3603
|
viewport_zoom?: boolean;
|
|
3580
3604
|
center_lat?: number;
|
|
@@ -3583,6 +3607,12 @@ export interface VisualisationConfig5 {
|
|
|
3583
3607
|
group_nearby_points?: boolean;
|
|
3584
3608
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
3585
3609
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
3610
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
3611
|
+
icon?: string;
|
|
3612
|
+
viewport_bounds_ne_lat?: number;
|
|
3613
|
+
viewport_bounds_ne_lng?: number;
|
|
3614
|
+
viewport_bounds_sw_lat?: number;
|
|
3615
|
+
viewport_bounds_sw_lng?: number;
|
|
3586
3616
|
row_height?: "small" | "medium" | "large";
|
|
3587
3617
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
3588
3618
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -3789,8 +3819,7 @@ export interface VisualisationConfig6 {
|
|
|
3789
3819
|
yaxis_secondary_show_on_right?: boolean;
|
|
3790
3820
|
tooltip_text?: string;
|
|
3791
3821
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
3792
|
-
basemap?:
|
|
3793
|
-
color_scheme?: "light" | "dark";
|
|
3822
|
+
basemap?: string;
|
|
3794
3823
|
viewport_pan?: boolean;
|
|
3795
3824
|
viewport_zoom?: boolean;
|
|
3796
3825
|
center_lat?: number;
|
|
@@ -3799,6 +3828,12 @@ export interface VisualisationConfig6 {
|
|
|
3799
3828
|
group_nearby_points?: boolean;
|
|
3800
3829
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
3801
3830
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
3831
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
3832
|
+
icon?: string;
|
|
3833
|
+
viewport_bounds_ne_lat?: number;
|
|
3834
|
+
viewport_bounds_ne_lng?: number;
|
|
3835
|
+
viewport_bounds_sw_lat?: number;
|
|
3836
|
+
viewport_bounds_sw_lng?: number;
|
|
3802
3837
|
row_height?: "small" | "medium" | "large";
|
|
3803
3838
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
3804
3839
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -4001,8 +4036,7 @@ export interface VisualisationConfig7 {
|
|
|
4001
4036
|
yaxis_secondary_show_on_right?: boolean;
|
|
4002
4037
|
tooltip_text?: string;
|
|
4003
4038
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
4004
|
-
basemap?:
|
|
4005
|
-
color_scheme?: "light" | "dark";
|
|
4039
|
+
basemap?: string;
|
|
4006
4040
|
viewport_pan?: boolean;
|
|
4007
4041
|
viewport_zoom?: boolean;
|
|
4008
4042
|
center_lat?: number;
|
|
@@ -4011,6 +4045,12 @@ export interface VisualisationConfig7 {
|
|
|
4011
4045
|
group_nearby_points?: boolean;
|
|
4012
4046
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
4013
4047
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
4048
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
4049
|
+
icon?: string;
|
|
4050
|
+
viewport_bounds_ne_lat?: number;
|
|
4051
|
+
viewport_bounds_ne_lng?: number;
|
|
4052
|
+
viewport_bounds_sw_lat?: number;
|
|
4053
|
+
viewport_bounds_sw_lng?: number;
|
|
4014
4054
|
row_height?: "small" | "medium" | "large";
|
|
4015
4055
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
4016
4056
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -4213,8 +4253,7 @@ export interface VisualisationConfig8 {
|
|
|
4213
4253
|
yaxis_secondary_show_on_right?: boolean;
|
|
4214
4254
|
tooltip_text?: string;
|
|
4215
4255
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
4216
|
-
basemap?:
|
|
4217
|
-
color_scheme?: "light" | "dark";
|
|
4256
|
+
basemap?: string;
|
|
4218
4257
|
viewport_pan?: boolean;
|
|
4219
4258
|
viewport_zoom?: boolean;
|
|
4220
4259
|
center_lat?: number;
|
|
@@ -4223,6 +4262,12 @@ export interface VisualisationConfig8 {
|
|
|
4223
4262
|
group_nearby_points?: boolean;
|
|
4224
4263
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
4225
4264
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
4265
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
4266
|
+
icon?: string;
|
|
4267
|
+
viewport_bounds_ne_lat?: number;
|
|
4268
|
+
viewport_bounds_ne_lng?: number;
|
|
4269
|
+
viewport_bounds_sw_lat?: number;
|
|
4270
|
+
viewport_bounds_sw_lng?: number;
|
|
4226
4271
|
row_height?: "small" | "medium" | "large";
|
|
4227
4272
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
4228
4273
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -4425,8 +4470,7 @@ export interface VisualisationConfig9 {
|
|
|
4425
4470
|
yaxis_secondary_show_on_right?: boolean;
|
|
4426
4471
|
tooltip_text?: string;
|
|
4427
4472
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
4428
|
-
basemap?:
|
|
4429
|
-
color_scheme?: "light" | "dark";
|
|
4473
|
+
basemap?: string;
|
|
4430
4474
|
viewport_pan?: boolean;
|
|
4431
4475
|
viewport_zoom?: boolean;
|
|
4432
4476
|
center_lat?: number;
|
|
@@ -4435,6 +4479,12 @@ export interface VisualisationConfig9 {
|
|
|
4435
4479
|
group_nearby_points?: boolean;
|
|
4436
4480
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
4437
4481
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
4482
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
4483
|
+
icon?: string;
|
|
4484
|
+
viewport_bounds_ne_lat?: number;
|
|
4485
|
+
viewport_bounds_ne_lng?: number;
|
|
4486
|
+
viewport_bounds_sw_lat?: number;
|
|
4487
|
+
viewport_bounds_sw_lng?: number;
|
|
4438
4488
|
row_height?: "small" | "medium" | "large";
|
|
4439
4489
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
4440
4490
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -4637,8 +4687,7 @@ export interface VisualisationConfig10 {
|
|
|
4637
4687
|
yaxis_secondary_show_on_right?: boolean;
|
|
4638
4688
|
tooltip_text?: string;
|
|
4639
4689
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
4640
|
-
basemap?:
|
|
4641
|
-
color_scheme?: "light" | "dark";
|
|
4690
|
+
basemap?: string;
|
|
4642
4691
|
viewport_pan?: boolean;
|
|
4643
4692
|
viewport_zoom?: boolean;
|
|
4644
4693
|
center_lat?: number;
|
|
@@ -4647,6 +4696,12 @@ export interface VisualisationConfig10 {
|
|
|
4647
4696
|
group_nearby_points?: boolean;
|
|
4648
4697
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
4649
4698
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
4699
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
4700
|
+
icon?: string;
|
|
4701
|
+
viewport_bounds_ne_lat?: number;
|
|
4702
|
+
viewport_bounds_ne_lng?: number;
|
|
4703
|
+
viewport_bounds_sw_lat?: number;
|
|
4704
|
+
viewport_bounds_sw_lng?: number;
|
|
4650
4705
|
row_height?: "small" | "medium" | "large";
|
|
4651
4706
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
4652
4707
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -4849,8 +4904,7 @@ export interface VisualisationConfig11 {
|
|
|
4849
4904
|
yaxis_secondary_show_on_right?: boolean;
|
|
4850
4905
|
tooltip_text?: string;
|
|
4851
4906
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
4852
|
-
basemap?:
|
|
4853
|
-
color_scheme?: "light" | "dark";
|
|
4907
|
+
basemap?: string;
|
|
4854
4908
|
viewport_pan?: boolean;
|
|
4855
4909
|
viewport_zoom?: boolean;
|
|
4856
4910
|
center_lat?: number;
|
|
@@ -4859,6 +4913,12 @@ export interface VisualisationConfig11 {
|
|
|
4859
4913
|
group_nearby_points?: boolean;
|
|
4860
4914
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
4861
4915
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
4916
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
4917
|
+
icon?: string;
|
|
4918
|
+
viewport_bounds_ne_lat?: number;
|
|
4919
|
+
viewport_bounds_ne_lng?: number;
|
|
4920
|
+
viewport_bounds_sw_lat?: number;
|
|
4921
|
+
viewport_bounds_sw_lng?: number;
|
|
4862
4922
|
row_height?: "small" | "medium" | "large";
|
|
4863
4923
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
4864
4924
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -5069,8 +5129,7 @@ export interface VisualisationConfig12 {
|
|
|
5069
5129
|
yaxis_secondary_show_on_right?: boolean;
|
|
5070
5130
|
tooltip_text?: string;
|
|
5071
5131
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
5072
|
-
basemap?:
|
|
5073
|
-
color_scheme?: "light" | "dark";
|
|
5132
|
+
basemap?: string;
|
|
5074
5133
|
viewport_pan?: boolean;
|
|
5075
5134
|
viewport_zoom?: boolean;
|
|
5076
5135
|
center_lat?: number;
|
|
@@ -5079,6 +5138,12 @@ export interface VisualisationConfig12 {
|
|
|
5079
5138
|
group_nearby_points?: boolean;
|
|
5080
5139
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
5081
5140
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
5141
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
5142
|
+
icon?: string;
|
|
5143
|
+
viewport_bounds_ne_lat?: number;
|
|
5144
|
+
viewport_bounds_ne_lng?: number;
|
|
5145
|
+
viewport_bounds_sw_lat?: number;
|
|
5146
|
+
viewport_bounds_sw_lng?: number;
|
|
5082
5147
|
row_height?: "small" | "medium" | "large";
|
|
5083
5148
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
5084
5149
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -5281,8 +5346,7 @@ export interface VisualisationConfig13 {
|
|
|
5281
5346
|
yaxis_secondary_show_on_right?: boolean;
|
|
5282
5347
|
tooltip_text?: string;
|
|
5283
5348
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
5284
|
-
basemap?:
|
|
5285
|
-
color_scheme?: "light" | "dark";
|
|
5349
|
+
basemap?: string;
|
|
5286
5350
|
viewport_pan?: boolean;
|
|
5287
5351
|
viewport_zoom?: boolean;
|
|
5288
5352
|
center_lat?: number;
|
|
@@ -5291,6 +5355,12 @@ export interface VisualisationConfig13 {
|
|
|
5291
5355
|
group_nearby_points?: boolean;
|
|
5292
5356
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
5293
5357
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
5358
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
5359
|
+
icon?: string;
|
|
5360
|
+
viewport_bounds_ne_lat?: number;
|
|
5361
|
+
viewport_bounds_ne_lng?: number;
|
|
5362
|
+
viewport_bounds_sw_lat?: number;
|
|
5363
|
+
viewport_bounds_sw_lng?: number;
|
|
5294
5364
|
row_height?: "small" | "medium" | "large";
|
|
5295
5365
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
5296
5366
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -5493,8 +5563,7 @@ export interface VisualisationConfig14 {
|
|
|
5493
5563
|
yaxis_secondary_show_on_right?: boolean;
|
|
5494
5564
|
tooltip_text?: string;
|
|
5495
5565
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
5496
|
-
basemap?:
|
|
5497
|
-
color_scheme?: "light" | "dark";
|
|
5566
|
+
basemap?: string;
|
|
5498
5567
|
viewport_pan?: boolean;
|
|
5499
5568
|
viewport_zoom?: boolean;
|
|
5500
5569
|
center_lat?: number;
|
|
@@ -5503,6 +5572,12 @@ export interface VisualisationConfig14 {
|
|
|
5503
5572
|
group_nearby_points?: boolean;
|
|
5504
5573
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
5505
5574
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
5575
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
5576
|
+
icon?: string;
|
|
5577
|
+
viewport_bounds_ne_lat?: number;
|
|
5578
|
+
viewport_bounds_ne_lng?: number;
|
|
5579
|
+
viewport_bounds_sw_lat?: number;
|
|
5580
|
+
viewport_bounds_sw_lng?: number;
|
|
5506
5581
|
row_height?: "small" | "medium" | "large";
|
|
5507
5582
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
5508
5583
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -5707,8 +5782,7 @@ export interface VisualisationConfig15 {
|
|
|
5707
5782
|
yaxis_secondary_show_on_right?: boolean;
|
|
5708
5783
|
tooltip_text?: string;
|
|
5709
5784
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
5710
|
-
basemap?:
|
|
5711
|
-
color_scheme?: "light" | "dark";
|
|
5785
|
+
basemap?: string;
|
|
5712
5786
|
viewport_pan?: boolean;
|
|
5713
5787
|
viewport_zoom?: boolean;
|
|
5714
5788
|
center_lat?: number;
|
|
@@ -5717,6 +5791,12 @@ export interface VisualisationConfig15 {
|
|
|
5717
5791
|
group_nearby_points?: boolean;
|
|
5718
5792
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
5719
5793
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
5794
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
5795
|
+
icon?: string;
|
|
5796
|
+
viewport_bounds_ne_lat?: number;
|
|
5797
|
+
viewport_bounds_ne_lng?: number;
|
|
5798
|
+
viewport_bounds_sw_lat?: number;
|
|
5799
|
+
viewport_bounds_sw_lng?: number;
|
|
5720
5800
|
row_height?: "small" | "medium" | "large";
|
|
5721
5801
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
5722
5802
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -5921,8 +6001,7 @@ export interface VisualisationConfig16 {
|
|
|
5921
6001
|
yaxis_secondary_show_on_right?: boolean;
|
|
5922
6002
|
tooltip_text?: string;
|
|
5923
6003
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
5924
|
-
basemap?:
|
|
5925
|
-
color_scheme?: "light" | "dark";
|
|
6004
|
+
basemap?: string;
|
|
5926
6005
|
viewport_pan?: boolean;
|
|
5927
6006
|
viewport_zoom?: boolean;
|
|
5928
6007
|
center_lat?: number;
|
|
@@ -5931,6 +6010,12 @@ export interface VisualisationConfig16 {
|
|
|
5931
6010
|
group_nearby_points?: boolean;
|
|
5932
6011
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
5933
6012
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
6013
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
6014
|
+
icon?: string;
|
|
6015
|
+
viewport_bounds_ne_lat?: number;
|
|
6016
|
+
viewport_bounds_ne_lng?: number;
|
|
6017
|
+
viewport_bounds_sw_lat?: number;
|
|
6018
|
+
viewport_bounds_sw_lng?: number;
|
|
5934
6019
|
row_height?: "small" | "medium" | "large";
|
|
5935
6020
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
5936
6021
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -6133,8 +6218,7 @@ export interface VisualisationConfig17 {
|
|
|
6133
6218
|
yaxis_secondary_show_on_right?: boolean;
|
|
6134
6219
|
tooltip_text?: string;
|
|
6135
6220
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
6136
|
-
basemap?:
|
|
6137
|
-
color_scheme?: "light" | "dark";
|
|
6221
|
+
basemap?: string;
|
|
6138
6222
|
viewport_pan?: boolean;
|
|
6139
6223
|
viewport_zoom?: boolean;
|
|
6140
6224
|
center_lat?: number;
|
|
@@ -6143,6 +6227,12 @@ export interface VisualisationConfig17 {
|
|
|
6143
6227
|
group_nearby_points?: boolean;
|
|
6144
6228
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
6145
6229
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
6230
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
6231
|
+
icon?: string;
|
|
6232
|
+
viewport_bounds_ne_lat?: number;
|
|
6233
|
+
viewport_bounds_ne_lng?: number;
|
|
6234
|
+
viewport_bounds_sw_lat?: number;
|
|
6235
|
+
viewport_bounds_sw_lng?: number;
|
|
6146
6236
|
row_height?: "small" | "medium" | "large";
|
|
6147
6237
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
6148
6238
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -6345,8 +6435,7 @@ export interface VisualisationConfig18 {
|
|
|
6345
6435
|
yaxis_secondary_show_on_right?: boolean;
|
|
6346
6436
|
tooltip_text?: string;
|
|
6347
6437
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
6348
|
-
basemap?:
|
|
6349
|
-
color_scheme?: "light" | "dark";
|
|
6438
|
+
basemap?: string;
|
|
6350
6439
|
viewport_pan?: boolean;
|
|
6351
6440
|
viewport_zoom?: boolean;
|
|
6352
6441
|
center_lat?: number;
|
|
@@ -6355,6 +6444,12 @@ export interface VisualisationConfig18 {
|
|
|
6355
6444
|
group_nearby_points?: boolean;
|
|
6356
6445
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
6357
6446
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
6447
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
6448
|
+
icon?: string;
|
|
6449
|
+
viewport_bounds_ne_lat?: number;
|
|
6450
|
+
viewport_bounds_ne_lng?: number;
|
|
6451
|
+
viewport_bounds_sw_lat?: number;
|
|
6452
|
+
viewport_bounds_sw_lng?: number;
|
|
6358
6453
|
row_height?: "small" | "medium" | "large";
|
|
6359
6454
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
6360
6455
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -6561,8 +6656,7 @@ export interface VisualisationConfig19 {
|
|
|
6561
6656
|
yaxis_secondary_show_on_right?: boolean;
|
|
6562
6657
|
tooltip_text?: string;
|
|
6563
6658
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
6564
|
-
basemap?:
|
|
6565
|
-
color_scheme?: "light" | "dark";
|
|
6659
|
+
basemap?: string;
|
|
6566
6660
|
viewport_pan?: boolean;
|
|
6567
6661
|
viewport_zoom?: boolean;
|
|
6568
6662
|
center_lat?: number;
|
|
@@ -6571,6 +6665,12 @@ export interface VisualisationConfig19 {
|
|
|
6571
6665
|
group_nearby_points?: boolean;
|
|
6572
6666
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
6573
6667
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
6668
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
6669
|
+
icon?: string;
|
|
6670
|
+
viewport_bounds_ne_lat?: number;
|
|
6671
|
+
viewport_bounds_ne_lng?: number;
|
|
6672
|
+
viewport_bounds_sw_lat?: number;
|
|
6673
|
+
viewport_bounds_sw_lng?: number;
|
|
6574
6674
|
row_height?: "small" | "medium" | "large";
|
|
6575
6675
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
6576
6676
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -6750,8 +6850,7 @@ export interface VisualisationConfig20 {
|
|
|
6750
6850
|
yaxis_secondary_show_on_right?: boolean;
|
|
6751
6851
|
tooltip_text?: string;
|
|
6752
6852
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
6753
|
-
basemap?:
|
|
6754
|
-
color_scheme?: "light" | "dark";
|
|
6853
|
+
basemap?: string;
|
|
6755
6854
|
viewport_pan?: boolean;
|
|
6756
6855
|
viewport_zoom?: boolean;
|
|
6757
6856
|
center_lat?: number;
|
|
@@ -6760,6 +6859,12 @@ export interface VisualisationConfig20 {
|
|
|
6760
6859
|
group_nearby_points?: boolean;
|
|
6761
6860
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
6762
6861
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
6862
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
6863
|
+
icon?: string;
|
|
6864
|
+
viewport_bounds_ne_lat?: number;
|
|
6865
|
+
viewport_bounds_ne_lng?: number;
|
|
6866
|
+
viewport_bounds_sw_lat?: number;
|
|
6867
|
+
viewport_bounds_sw_lng?: number;
|
|
6763
6868
|
row_height?: "small" | "medium" | "large";
|
|
6764
6869
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
6765
6870
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -6966,8 +7071,7 @@ export interface VisualisationConfig21 {
|
|
|
6966
7071
|
yaxis_secondary_show_on_right?: boolean;
|
|
6967
7072
|
tooltip_text?: string;
|
|
6968
7073
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
6969
|
-
basemap?:
|
|
6970
|
-
color_scheme?: "light" | "dark";
|
|
7074
|
+
basemap?: string;
|
|
6971
7075
|
viewport_pan?: boolean;
|
|
6972
7076
|
viewport_zoom?: boolean;
|
|
6973
7077
|
center_lat?: number;
|
|
@@ -6976,6 +7080,12 @@ export interface VisualisationConfig21 {
|
|
|
6976
7080
|
group_nearby_points?: boolean;
|
|
6977
7081
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
6978
7082
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
7083
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
7084
|
+
icon?: string;
|
|
7085
|
+
viewport_bounds_ne_lat?: number;
|
|
7086
|
+
viewport_bounds_ne_lng?: number;
|
|
7087
|
+
viewport_bounds_sw_lat?: number;
|
|
7088
|
+
viewport_bounds_sw_lng?: number;
|
|
6979
7089
|
row_height?: "small" | "medium" | "large";
|
|
6980
7090
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
6981
7091
|
cell_text_wrapping?: "clip" | "wrap";
|
|
@@ -7186,8 +7296,7 @@ export interface VisualisationConfig22 {
|
|
|
7186
7296
|
yaxis_secondary_show_on_right?: boolean;
|
|
7187
7297
|
tooltip_text?: string;
|
|
7188
7298
|
viewport?: "auto" | "continent_af" | "continent_as" | "continent_au" | "continent_eu" | "continent_na" | "continent_sa" | "world" | "custom";
|
|
7189
|
-
basemap?:
|
|
7190
|
-
color_scheme?: "light" | "dark";
|
|
7299
|
+
basemap?: string;
|
|
7191
7300
|
viewport_pan?: boolean;
|
|
7192
7301
|
viewport_zoom?: boolean;
|
|
7193
7302
|
center_lat?: number;
|
|
@@ -7196,6 +7305,12 @@ export interface VisualisationConfig22 {
|
|
|
7196
7305
|
group_nearby_points?: boolean;
|
|
7197
7306
|
min_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
7198
7307
|
max_size?: "0.5x" | "0.75x" | "normal" | "1.25x" | "1.5x" | "default";
|
|
7308
|
+
shape_type?: "circle" | "iconByValue" | "oneIcon";
|
|
7309
|
+
icon?: string;
|
|
7310
|
+
viewport_bounds_ne_lat?: number;
|
|
7311
|
+
viewport_bounds_ne_lng?: number;
|
|
7312
|
+
viewport_bounds_sw_lat?: number;
|
|
7313
|
+
viewport_bounds_sw_lng?: number;
|
|
7199
7314
|
row_height?: "small" | "medium" | "large";
|
|
7200
7315
|
cell_vertical_align?: "top" | "middle" | "bottom";
|
|
7201
7316
|
cell_text_wrapping?: "clip" | "wrap";
|