@gooddata/sdk-model 10.14.0-alpha.5 → 10.14.0-alpha.6
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-model.d.ts +50 -46
- package/esm/settings/index.d.ts +50 -46
- package/esm/settings/index.d.ts.map +1 -1
- package/package.json +1 -1
package/esm/sdk-model.d.ts
CHANGED
@@ -7333,6 +7333,52 @@ export declare interface ISeparators {
|
|
7333
7333
|
* @public
|
7334
7334
|
*/
|
7335
7335
|
export declare interface ISettings {
|
7336
|
+
/**
|
7337
|
+
* Represents whiteLabeling configuration
|
7338
|
+
*/
|
7339
|
+
whiteLabeling?: IWhiteLabeling;
|
7340
|
+
/**
|
7341
|
+
* Represents alert default configuration
|
7342
|
+
*/
|
7343
|
+
alertDefault?: IAlertDefault;
|
7344
|
+
/**
|
7345
|
+
* Represents configuration for OpenAI integration
|
7346
|
+
* @alpha
|
7347
|
+
*/
|
7348
|
+
openAiConfig?: IOpenAiConfig;
|
7349
|
+
/**
|
7350
|
+
* Indicates current platform edition.
|
7351
|
+
*/
|
7352
|
+
platformEdition?: PlatformEdition;
|
7353
|
+
/**
|
7354
|
+
* Early access features configuration.
|
7355
|
+
* @beta
|
7356
|
+
*/
|
7357
|
+
earlyAccessFeatures?: IEarlyAccessFeaturesConfig;
|
7358
|
+
/**
|
7359
|
+
* Week start day
|
7360
|
+
*/
|
7361
|
+
weekStart?: WeekStart;
|
7362
|
+
/**
|
7363
|
+
* Locale code to use for date formatting.
|
7364
|
+
*/
|
7365
|
+
formatLocale?: string;
|
7366
|
+
/**
|
7367
|
+
* Indicates whether "Treat null as zero" option should be displayed in measure value filter configuration and its default state"
|
7368
|
+
*/
|
7369
|
+
ADMeasureValueFilterNullAsZeroOption?: string;
|
7370
|
+
/**
|
7371
|
+
* Indicates the format in which the dates will be displayed
|
7372
|
+
*/
|
7373
|
+
responsiveUiDateFormat?: string;
|
7374
|
+
/**
|
7375
|
+
* IANA identifier of time zone in which the platform metadata are stored.
|
7376
|
+
*/
|
7377
|
+
metadataTimeZone?: string;
|
7378
|
+
/**
|
7379
|
+
* Timezone
|
7380
|
+
*/
|
7381
|
+
timezone?: string;
|
7336
7382
|
/**
|
7337
7383
|
* Indicates whether the Headline's improvements is available.
|
7338
7384
|
*/
|
@@ -7382,10 +7428,6 @@ export declare interface ISettings {
|
|
7382
7428
|
* Indicates whether color picker config panel should allow users to select custom RGB colors.
|
7383
7429
|
*/
|
7384
7430
|
enableCustomColorPicker?: boolean;
|
7385
|
-
/**
|
7386
|
-
* Indicates whether "Treat null as zero" option should be displayed in measure value filter configuration and its default state"
|
7387
|
-
*/
|
7388
|
-
ADMeasureValueFilterNullAsZeroOption?: string;
|
7389
7431
|
/**
|
7390
7432
|
* Indicates whether the catalog groups in analytical designer are expanded by default.
|
7391
7433
|
*/
|
@@ -7394,10 +7436,6 @@ export declare interface ISettings {
|
|
7394
7436
|
* Indicates whether data point visibility configuration is available in AD
|
7395
7437
|
*/
|
7396
7438
|
enableHidingOfDataPoints?: boolean;
|
7397
|
-
/**
|
7398
|
-
* Indicates the format in which the dates will be displayed
|
7399
|
-
*/
|
7400
|
-
responsiveUiDateFormat?: string;
|
7401
7439
|
/**
|
7402
7440
|
* Indicates whether multiple dates can be put into buckets
|
7403
7441
|
*/
|
@@ -7473,10 +7511,6 @@ export declare interface ISettings {
|
|
7473
7511
|
* Indicates whether backend supports data sampling.
|
7474
7512
|
*/
|
7475
7513
|
enableDataSampling?: boolean;
|
7476
|
-
/**
|
7477
|
-
* Indicates current platform edition.
|
7478
|
-
*/
|
7479
|
-
platformEdition?: PlatformEdition;
|
7480
7514
|
/**
|
7481
7515
|
* Indicates whether the company logo should be visible in the embedded dashboard.
|
7482
7516
|
*/
|
@@ -7529,19 +7563,6 @@ export declare interface ISettings {
|
|
7529
7563
|
* Enable visibility control for total labels
|
7530
7564
|
*/
|
7531
7565
|
enableSeparateTotalLabels?: boolean;
|
7532
|
-
/**
|
7533
|
-
* Represents whiteLabeling configuration
|
7534
|
-
*/
|
7535
|
-
whiteLabeling?: IWhiteLabeling;
|
7536
|
-
/**
|
7537
|
-
* Represents alert default configuration
|
7538
|
-
*/
|
7539
|
-
alertDefault?: IAlertDefault;
|
7540
|
-
/**
|
7541
|
-
* Represents configuration for OpenAI integration
|
7542
|
-
* @alpha
|
7543
|
-
*/
|
7544
|
-
openAiConfig?: IOpenAiConfig;
|
7545
7566
|
/**
|
7546
7567
|
* Enable usage of insights, widgets, kpis descriptions.
|
7547
7568
|
*/
|
@@ -7550,18 +7571,10 @@ export declare interface ISettings {
|
|
7550
7571
|
* Enable editing of insight description in AD.
|
7551
7572
|
*/
|
7552
7573
|
enableAdDescriptionEdit?: boolean;
|
7553
|
-
/**
|
7554
|
-
* Locale code to use for date formatting.
|
7555
|
-
*/
|
7556
|
-
formatLocale?: string;
|
7557
7574
|
/**
|
7558
7575
|
* Enable use of composite grain
|
7559
7576
|
*/
|
7560
7577
|
enableCompositeGrain?: boolean;
|
7561
|
-
/**
|
7562
|
-
* Week start day
|
7563
|
-
*/
|
7564
|
-
weekStart?: WeekStart;
|
7565
7578
|
/**
|
7566
7579
|
* Enable table transposition (metrics in rows)
|
7567
7580
|
*/
|
@@ -7570,14 +7583,6 @@ export declare interface ISettings {
|
|
7570
7583
|
* Enable moving column attribute headers to the left.
|
7571
7584
|
*/
|
7572
7585
|
enableColumnHeadersPosition?: boolean;
|
7573
|
-
/**
|
7574
|
-
* IANA identifier of time zone in which the platform metadata are stored.
|
7575
|
-
*/
|
7576
|
-
metadataTimeZone?: string;
|
7577
|
-
/**
|
7578
|
-
* Timezone
|
7579
|
-
*/
|
7580
|
-
timezone?: string;
|
7581
7586
|
/**
|
7582
7587
|
* Enable new max bucket size items limit for Pivot Table
|
7583
7588
|
*/
|
@@ -7729,11 +7734,6 @@ export declare interface ISettings {
|
|
7729
7734
|
* Enables the FlightRPC (FlexFunctions) data source.
|
7730
7735
|
*/
|
7731
7736
|
enableFlightRpcDataSource?: boolean;
|
7732
|
-
/**
|
7733
|
-
* Early access features configuration.
|
7734
|
-
* @beta
|
7735
|
-
*/
|
7736
|
-
earlyAccessFeatures?: IEarlyAccessFeaturesConfig;
|
7737
7737
|
/**
|
7738
7738
|
* Enable early access features rollout.
|
7739
7739
|
*/
|
@@ -7747,6 +7747,10 @@ export declare interface ISettings {
|
|
7747
7747
|
* Enable the use of default SMTP in destinations.
|
7748
7748
|
*/
|
7749
7749
|
enableDefaultSmtp?: boolean;
|
7750
|
+
/**
|
7751
|
+
* Enable number separators configuration in home-ui (both organization and workspace level).
|
7752
|
+
*/
|
7753
|
+
enableNumberSeparators?: boolean;
|
7750
7754
|
[key: string]: number | boolean | string | object | undefined;
|
7751
7755
|
}
|
7752
7756
|
|
package/esm/settings/index.d.ts
CHANGED
@@ -9,6 +9,52 @@
|
|
9
9
|
* @public
|
10
10
|
*/
|
11
11
|
export interface ISettings {
|
12
|
+
/**
|
13
|
+
* Represents whiteLabeling configuration
|
14
|
+
*/
|
15
|
+
whiteLabeling?: IWhiteLabeling;
|
16
|
+
/**
|
17
|
+
* Represents alert default configuration
|
18
|
+
*/
|
19
|
+
alertDefault?: IAlertDefault;
|
20
|
+
/**
|
21
|
+
* Represents configuration for OpenAI integration
|
22
|
+
* @alpha
|
23
|
+
*/
|
24
|
+
openAiConfig?: IOpenAiConfig;
|
25
|
+
/**
|
26
|
+
* Indicates current platform edition.
|
27
|
+
*/
|
28
|
+
platformEdition?: PlatformEdition;
|
29
|
+
/**
|
30
|
+
* Early access features configuration.
|
31
|
+
* @beta
|
32
|
+
*/
|
33
|
+
earlyAccessFeatures?: IEarlyAccessFeaturesConfig;
|
34
|
+
/**
|
35
|
+
* Week start day
|
36
|
+
*/
|
37
|
+
weekStart?: WeekStart;
|
38
|
+
/**
|
39
|
+
* Locale code to use for date formatting.
|
40
|
+
*/
|
41
|
+
formatLocale?: string;
|
42
|
+
/**
|
43
|
+
* Indicates whether "Treat null as zero" option should be displayed in measure value filter configuration and its default state"
|
44
|
+
*/
|
45
|
+
ADMeasureValueFilterNullAsZeroOption?: string;
|
46
|
+
/**
|
47
|
+
* Indicates the format in which the dates will be displayed
|
48
|
+
*/
|
49
|
+
responsiveUiDateFormat?: string;
|
50
|
+
/**
|
51
|
+
* IANA identifier of time zone in which the platform metadata are stored.
|
52
|
+
*/
|
53
|
+
metadataTimeZone?: string;
|
54
|
+
/**
|
55
|
+
* Timezone
|
56
|
+
*/
|
57
|
+
timezone?: string;
|
12
58
|
/**
|
13
59
|
* Indicates whether the Headline's improvements is available.
|
14
60
|
*/
|
@@ -58,10 +104,6 @@ export interface ISettings {
|
|
58
104
|
* Indicates whether color picker config panel should allow users to select custom RGB colors.
|
59
105
|
*/
|
60
106
|
enableCustomColorPicker?: boolean;
|
61
|
-
/**
|
62
|
-
* Indicates whether "Treat null as zero" option should be displayed in measure value filter configuration and its default state"
|
63
|
-
*/
|
64
|
-
ADMeasureValueFilterNullAsZeroOption?: string;
|
65
107
|
/**
|
66
108
|
* Indicates whether the catalog groups in analytical designer are expanded by default.
|
67
109
|
*/
|
@@ -70,10 +112,6 @@ export interface ISettings {
|
|
70
112
|
* Indicates whether data point visibility configuration is available in AD
|
71
113
|
*/
|
72
114
|
enableHidingOfDataPoints?: boolean;
|
73
|
-
/**
|
74
|
-
* Indicates the format in which the dates will be displayed
|
75
|
-
*/
|
76
|
-
responsiveUiDateFormat?: string;
|
77
115
|
/**
|
78
116
|
* Indicates whether multiple dates can be put into buckets
|
79
117
|
*/
|
@@ -149,10 +187,6 @@ export interface ISettings {
|
|
149
187
|
* Indicates whether backend supports data sampling.
|
150
188
|
*/
|
151
189
|
enableDataSampling?: boolean;
|
152
|
-
/**
|
153
|
-
* Indicates current platform edition.
|
154
|
-
*/
|
155
|
-
platformEdition?: PlatformEdition;
|
156
190
|
/**
|
157
191
|
* Indicates whether the company logo should be visible in the embedded dashboard.
|
158
192
|
*/
|
@@ -205,19 +239,6 @@ export interface ISettings {
|
|
205
239
|
* Enable visibility control for total labels
|
206
240
|
*/
|
207
241
|
enableSeparateTotalLabels?: boolean;
|
208
|
-
/**
|
209
|
-
* Represents whiteLabeling configuration
|
210
|
-
*/
|
211
|
-
whiteLabeling?: IWhiteLabeling;
|
212
|
-
/**
|
213
|
-
* Represents alert default configuration
|
214
|
-
*/
|
215
|
-
alertDefault?: IAlertDefault;
|
216
|
-
/**
|
217
|
-
* Represents configuration for OpenAI integration
|
218
|
-
* @alpha
|
219
|
-
*/
|
220
|
-
openAiConfig?: IOpenAiConfig;
|
221
242
|
/**
|
222
243
|
* Enable usage of insights, widgets, kpis descriptions.
|
223
244
|
*/
|
@@ -226,18 +247,10 @@ export interface ISettings {
|
|
226
247
|
* Enable editing of insight description in AD.
|
227
248
|
*/
|
228
249
|
enableAdDescriptionEdit?: boolean;
|
229
|
-
/**
|
230
|
-
* Locale code to use for date formatting.
|
231
|
-
*/
|
232
|
-
formatLocale?: string;
|
233
250
|
/**
|
234
251
|
* Enable use of composite grain
|
235
252
|
*/
|
236
253
|
enableCompositeGrain?: boolean;
|
237
|
-
/**
|
238
|
-
* Week start day
|
239
|
-
*/
|
240
|
-
weekStart?: WeekStart;
|
241
254
|
/**
|
242
255
|
* Enable table transposition (metrics in rows)
|
243
256
|
*/
|
@@ -246,14 +259,6 @@ export interface ISettings {
|
|
246
259
|
* Enable moving column attribute headers to the left.
|
247
260
|
*/
|
248
261
|
enableColumnHeadersPosition?: boolean;
|
249
|
-
/**
|
250
|
-
* IANA identifier of time zone in which the platform metadata are stored.
|
251
|
-
*/
|
252
|
-
metadataTimeZone?: string;
|
253
|
-
/**
|
254
|
-
* Timezone
|
255
|
-
*/
|
256
|
-
timezone?: string;
|
257
262
|
/**
|
258
263
|
* Enable new max bucket size items limit for Pivot Table
|
259
264
|
*/
|
@@ -405,11 +410,6 @@ export interface ISettings {
|
|
405
410
|
* Enables the FlightRPC (FlexFunctions) data source.
|
406
411
|
*/
|
407
412
|
enableFlightRpcDataSource?: boolean;
|
408
|
-
/**
|
409
|
-
* Early access features configuration.
|
410
|
-
* @beta
|
411
|
-
*/
|
412
|
-
earlyAccessFeatures?: IEarlyAccessFeaturesConfig;
|
413
413
|
/**
|
414
414
|
* Enable early access features rollout.
|
415
415
|
*/
|
@@ -423,6 +423,10 @@ export interface ISettings {
|
|
423
423
|
* Enable the use of default SMTP in destinations.
|
424
424
|
*/
|
425
425
|
enableDefaultSmtp?: boolean;
|
426
|
+
/**
|
427
|
+
* Enable number separators configuration in home-ui (both organization and workspace level).
|
428
|
+
*/
|
429
|
+
enableNumberSeparators?: boolean;
|
426
430
|
[key: string]: number | boolean | string | object | undefined;
|
427
431
|
}
|
428
432
|
/**
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/settings/index.ts"],"names":[],"mappings":"AAEA;;;;;;;;;GASG;AACH,MAAM,WAAW,SAAS;
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/settings/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED