@gooddata/sdk-model 11.26.0-alpha.0 → 11.26.0-alpha.2

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.
@@ -0,0 +1,910 @@
1
+ import type { IDateFilterConfig } from "../dateFilterConfig/index.js";
2
+ /**
3
+ * Describes metric format override configuration.
4
+ *
5
+ * @alpha
6
+ */
7
+ export interface IMetricFormatOverrideSetting {
8
+ /**
9
+ * Mapping of metric type to custom format string.
10
+ * When undefined or null, backend defaults are used.
11
+ */
12
+ formats?: Record<string, string> | null;
13
+ }
14
+ /**
15
+ * Indicates current platform edition.
16
+ *
17
+ * @public
18
+ */
19
+ export type PlatformEdition = "free" | "growth" | "enterprise";
20
+ /**
21
+ * Settings for regional number formatting
22
+ *
23
+ * @public
24
+ */
25
+ export interface ISeparators {
26
+ /**
27
+ * Thousand separator (e.g. " " or ",")
28
+ */
29
+ thousand: string;
30
+ /**
31
+ * Decimal separator (e.g. "," or ".")
32
+ */
33
+ decimal: string;
34
+ }
35
+ /**
36
+ * Determines whether the given object is an instance of {@link ISeparators}.
37
+ * @param obj - object to check
38
+ *
39
+ * @public
40
+ */
41
+ export declare function isSeparators(obj: unknown): obj is ISeparators;
42
+ /**
43
+ * @public
44
+ */
45
+ export interface ILlmEndpoint {
46
+ /**
47
+ * Unique identifier of the LLM endpoint.
48
+ */
49
+ id: string;
50
+ /**
51
+ * Type of the LLM endpoint.
52
+ */
53
+ type: "llmEndpoint";
54
+ }
55
+ /**
56
+ * @public
57
+ */
58
+ export interface ILlmActiveProvider {
59
+ /**
60
+ * Unique identifier of the LLM endpoint.
61
+ */
62
+ id: string;
63
+ /**
64
+ * Type of the LLM endpoint.
65
+ */
66
+ type: "llmProvider";
67
+ /**
68
+ * Name of the LLM provider.
69
+ */
70
+ defaultModelId: string;
71
+ }
72
+ /**
73
+ * Configuration of WhiteLabeling.
74
+ *
75
+ * @public
76
+ */
77
+ export interface IWhiteLabeling {
78
+ /**
79
+ * (De)/Activate whiteLabeling
80
+ */
81
+ enabled: boolean;
82
+ /**
83
+ * Whitelabeling favicon url
84
+ */
85
+ faviconUrl?: string;
86
+ /**
87
+ * Company logo url
88
+ */
89
+ logoUrl?: string;
90
+ /**
91
+ * Whitelabeling of Apple touch icon url
92
+ */
93
+ appleTouchIconUrl?: string;
94
+ }
95
+ /**
96
+ * Alert Default
97
+ *
98
+ * @public
99
+ */
100
+ export interface IAlertDefault {
101
+ /**
102
+ * Default evaluation frequency
103
+ */
104
+ defaultCron: string;
105
+ /**
106
+ * Default timezone
107
+ */
108
+ defaultTimezone: string;
109
+ }
110
+ /**
111
+ * Configuration of integration of OpenAI.
112
+ *
113
+ * @alpha
114
+ */
115
+ export interface IOpenAiConfig {
116
+ /**
117
+ * OpenAI organization ID
118
+ */
119
+ org: string;
120
+ /**
121
+ * OpenAI API token
122
+ */
123
+ token: string;
124
+ }
125
+ /**
126
+ * Values of Dashboard Filters Apply Mode setting. Used for organization and workspace.
127
+ * INDIVIDUAL mean that each filter has its own apply button.
128
+ * ALL_AT_ONCE mean that there is a single apply button for all dashboard filters.
129
+ *
130
+ * @public
131
+ */
132
+ export type DashboardFiltersApplyMode = {
133
+ mode: "INDIVIDUAL";
134
+ } | {
135
+ mode: "ALL_AT_ONCE";
136
+ };
137
+ /**
138
+ * Week start day
139
+ *
140
+ * @public
141
+ */
142
+ export type WeekStart = "Sunday" | "Monday";
143
+ /**
144
+ * Fiscal year calendar configuration
145
+ *
146
+ * @public
147
+ */
148
+ export interface IFiscalYear {
149
+ /**
150
+ * Month offset from January (0 = January, 1 = February, ..., -1 = December of previous year, etc.)
151
+ */
152
+ monthOffset: number;
153
+ /**
154
+ * Prefix for fiscal year labels (e.g. "FY")
155
+ */
156
+ yearPrefix?: string;
157
+ /**
158
+ * Prefix for fiscal quarter labels (e.g. "Q")
159
+ */
160
+ quarterPrefix?: string;
161
+ /**
162
+ * Prefix for fiscal month/period labels (e.g. "P")
163
+ */
164
+ monthPrefix?: string;
165
+ }
166
+ /**
167
+ * Calendar type
168
+ *
169
+ * @public
170
+ */
171
+ export type CalendarType = "STANDARD" | "FISCAL";
172
+ /**
173
+ * Active calendars configuration
174
+ *
175
+ * @public
176
+ */
177
+ export interface IActiveCalendars {
178
+ /**
179
+ * Which calendar type is the default
180
+ */
181
+ default: CalendarType;
182
+ /**
183
+ * Whether standard calendar is enabled
184
+ */
185
+ standard: boolean;
186
+ /**
187
+ * Whether fiscal calendar is enabled
188
+ */
189
+ fiscal: boolean;
190
+ }
191
+ /**
192
+ * @beta
193
+ */
194
+ export type EarlyAccessFeatureContext = "WORKSPACE" | "ORGANIZATION";
195
+ /**
196
+ * @beta
197
+ */
198
+ export type EarlyAccessFeatureStatus = "EXPERIMENTAL" | "BETA";
199
+ /**
200
+ * @beta
201
+ */
202
+ export interface IEarlyAccessFeatureConfig {
203
+ title: string;
204
+ description: string;
205
+ docs?: string;
206
+ earlyAccess: string;
207
+ context: EarlyAccessFeatureContext;
208
+ status: EarlyAccessFeatureStatus;
209
+ }
210
+ /**
211
+ * @beta
212
+ */
213
+ export interface IEarlyAccessFeaturesConfig {
214
+ features: IEarlyAccessFeatureConfig[];
215
+ }
216
+ /**
217
+ * @alpha
218
+ */
219
+ export interface IProductionFeatureConfig {
220
+ title: string;
221
+ description: string;
222
+ docs?: string;
223
+ earlyAccess: string;
224
+ /**
225
+ * Expect global rollout date in ISO-8601 calendar date format (YYYY-MM-DD)
226
+ */
227
+ globalRollout: string;
228
+ }
229
+ /**
230
+ * @alpha
231
+ */
232
+ export interface IProductionFeaturesConfig {
233
+ features?: IProductionFeatureConfig[];
234
+ }
235
+ /**
236
+ * Setting properties are used to customize platform behavior for end users.
237
+ * These are permanent setting options that are intended to remain, unlike feature-flag-based settings.
238
+ *
239
+ * On the Panther/Tiger platform, each setting is backed by a metadata object with a unique setting type
240
+ * registered in the backend.
241
+ *
242
+ * @public
243
+ */
244
+ export interface IPermanentSettings {
245
+ /**
246
+ * Represents whiteLabeling configuration
247
+ */
248
+ whiteLabeling?: IWhiteLabeling;
249
+ /**
250
+ * Represents alert default configuration
251
+ */
252
+ alertDefault?: IAlertDefault;
253
+ /**
254
+ * Represents configuration for OpenAI integration
255
+ * @alpha
256
+ */
257
+ openAiConfig?: IOpenAiConfig;
258
+ /**
259
+ * Represents configuration for Dashboard Filters Apply Mode
260
+ * @alpha
261
+ */
262
+ dashboardFiltersApplyMode?: DashboardFiltersApplyMode;
263
+ /**
264
+ * Indicates current platform edition.
265
+ */
266
+ platformEdition?: PlatformEdition;
267
+ /**
268
+ * Early access features configuration.
269
+ * @beta
270
+ */
271
+ earlyAccessFeatures?: IEarlyAccessFeaturesConfig;
272
+ /**
273
+ * Week start day
274
+ */
275
+ weekStart?: WeekStart;
276
+ /**
277
+ * Fiscal year calendar configuration
278
+ */
279
+ fiscalYear?: IFiscalYear;
280
+ /**
281
+ * Active calendars configuration
282
+ */
283
+ activeCalendars?: IActiveCalendars;
284
+ /**
285
+ * Locale code to use for metadata.
286
+ */
287
+ metadataLocale?: string;
288
+ /**
289
+ * Locale code to use for date formatting.
290
+ */
291
+ formatLocale?: string;
292
+ /**
293
+ * Indicates the format in which the dates will be displayed
294
+ */
295
+ responsiveUiDateFormat?: string;
296
+ /**
297
+ * IANA identifier of time zone in which the platform metadata are stored.
298
+ */
299
+ metadataTimeZone?: string;
300
+ /**
301
+ * Timezone
302
+ */
303
+ timezone?: string;
304
+ /**
305
+ * Ai rate limit in requests per minute.
306
+ */
307
+ aiRateLimit?: number;
308
+ /**
309
+ * Metric format override configuration.
310
+ * @alpha
311
+ */
312
+ metricFormatOverride?: IMetricFormatOverrideSetting;
313
+ /**
314
+ * Resolved currency format override from metricFormatOverride.formats["CURRENCY"].
315
+ * This is a convenience property normalized during settings resolution.
316
+ * @alpha
317
+ */
318
+ currencyFormatOverride?: string | null;
319
+ /**
320
+ * LLM endpoint id as default for the platform.
321
+ */
322
+ llmEndpoint?: ILlmEndpoint;
323
+ /**
324
+ * LLM provider id as default for the platform.
325
+ */
326
+ activeLlmProvider?: ILlmActiveProvider;
327
+ /**
328
+ * Attachment size limit in bytes (null for no limit).
329
+ */
330
+ attachmentSizeLimit?: number | null;
331
+ /**
332
+ * If true, non-TLS endpoints may be used for FlexConnect.
333
+ * Otherwise, only TLS-enabled endpoints may be used.
334
+ */
335
+ allowUnsafeFlexConnectEndpoints?: boolean;
336
+ /**
337
+ * Enable automation evaluation mode.
338
+ */
339
+ enableAutomationEvaluationMode?: boolean;
340
+ /**
341
+ * Maximum zoom level applied to geo visualizations.
342
+ *
343
+ * @remarks
344
+ * Null or undefined means that zoom is unrestricted
345
+ * and default chart settings will be applied.
346
+ */
347
+ maxZoomLevel?: number | null;
348
+ /**
349
+ * Override the default timeout for polling for the export results.
350
+ */
351
+ exportResultPollingTimeoutSeconds?: number;
352
+ /**
353
+ * Headline component will not be underlined when it is set up with drilling.
354
+ */
355
+ disableKpiDashboardHeadlineUnderline?: boolean;
356
+ /**
357
+ * Indicates whether unavailable data items are visible in the settings API
358
+ * only available on Tiger/Panther
359
+ */
360
+ showHiddenCatalogItems?: boolean;
361
+ /**
362
+ * Indicates whether the catalog groups in analytical designer are expanded by default.
363
+ */
364
+ ADCatalogGroupsExpanded?: boolean;
365
+ /**
366
+ * Date filter configuration.
367
+ * @alpha
368
+ */
369
+ dateFilterConfig?: IDateFilterConfig;
370
+ /**
371
+ * Restrict access to Base UI applications.
372
+ */
373
+ restrictBaseUi?: boolean;
374
+ }
375
+ /**
376
+ * Setting properties are used to gate features that are in development or in various stages of rollout.
377
+ * Each property will be retired in a future version of the SDK once the feature has been rolled out to
378
+ * all users and is considered stable enough that there is no longer a need to roll it back or disable
379
+ * it easily.
380
+ *
381
+ * On the Panther platform, each setting is controlled by FeatureHub and is registered as a feature flag
382
+ * in the backend so that it can be configured for GoodData.CN (Tiger).
383
+ *
384
+ * @public
385
+ */
386
+ export interface IFeatureFlags {
387
+ /**
388
+ * Enables UI and API support for metric type selection and metric format overrides management.
389
+ */
390
+ enableMetricFormatOverrides?: boolean;
391
+ /**
392
+ * Enables Highcharts accessibility features.
393
+ */
394
+ enableHighchartsAccessibility?: boolean;
395
+ /**
396
+ * Enables accessible chart tooltips with improved readability and persistence for disabled users.
397
+ */
398
+ enableAccessibleChartTooltip?: boolean;
399
+ /**
400
+ * Indicates whether the Waterfall Chart is available in AD.
401
+ */
402
+ enableWaterfallChart?: boolean;
403
+ /**
404
+ * Indicates whether the Embed dashboard button is available in KPI dashboards.
405
+ */
406
+ enableEmbedButtonInKD?: boolean;
407
+ /**
408
+ * Indicates whether the Embed button/dialog is available in AD.
409
+ */
410
+ enableEmbedButtonInAD?: boolean;
411
+ /**
412
+ * Enable usage of insights, widgets, kpis descriptions.
413
+ */
414
+ enableDescriptions?: boolean;
415
+ /**
416
+ * Enable use of composite grain
417
+ */
418
+ enableCompositeGrain?: boolean;
419
+ /**
420
+ * Enable new max bucket size items limit for Pivot Table
421
+ */
422
+ enablePivotTableIncreaseBucketSize?: boolean;
423
+ /**
424
+ * Enable user management page in Home UI.
425
+ */
426
+ enableUserManagement?: boolean;
427
+ /**
428
+ * Enable cross filtering in KD
429
+ */
430
+ enableKDCrossFiltering?: boolean;
431
+ /**
432
+ * Enable change analysis
433
+ */
434
+ enableChangeAnalysis?: boolean;
435
+ /**
436
+ * Enable multiple date filters.
437
+ */
438
+ enableMultipleDateFilters?: boolean;
439
+ /**
440
+ * Enable multiple conditions in measure value filters (MVF).
441
+ *
442
+ * @remarks
443
+ * Defaults to true when not provided by the backend.
444
+ */
445
+ enableMultipleMvfConditions?: boolean;
446
+ /**
447
+ * Enable ranking filter to be used together with measure value filters (MVF).
448
+ *
449
+ * @remarks
450
+ * Defaults to false when not provided by the backend.
451
+ */
452
+ enableRankingWithMvf?: boolean;
453
+ /**
454
+ * Enables rich text widgets on dashboards.
455
+ */
456
+ enableKDRichText?: boolean;
457
+ /**
458
+ * Enables visualization switcher widgets on dashboards.
459
+ */
460
+ enableKDVisualizationSwitcher?: boolean;
461
+ /**
462
+ * Enable creating users in user management.
463
+ */
464
+ enableCreateUser?: boolean;
465
+ /**
466
+ * Enable attribute filter values validation by date filters.
467
+ */
468
+ enableKDAttributeFilterDatesValidation?: boolean;
469
+ /**
470
+ * Enable multiple data sources to be used in a single workspace.
471
+ */
472
+ enableMultipleDataSourcesInWorkspace?: boolean;
473
+ /**
474
+ * Enables segmentation in scatter plot.
475
+ */
476
+ enableScatterPlotSegmentation?: boolean;
477
+ /**
478
+ * Enable clustering in scatter plot.
479
+ */
480
+ enableScatterPlotClustering?: boolean;
481
+ /**
482
+ * Enables rich text in descriptions.
483
+ */
484
+ enableRichTextDescriptions?: boolean;
485
+ /**
486
+ * Enables scheduling of the dashboard pdf export.
487
+ */
488
+ enableScheduling?: boolean;
489
+ /**
490
+ * Enables alerting of the dashboard widgets.
491
+ */
492
+ enableAlerting?: boolean;
493
+ /**
494
+ * Enables the replacement of LLM endpoints.
495
+ */
496
+ enableLlmEndpointReplacement?: boolean;
497
+ /**
498
+ * Enables attributes in alerts.
499
+ */
500
+ enableAlertAttributes?: boolean;
501
+ /**
502
+ * Enables comparison in alerting.
503
+ */
504
+ enableComparisonInAlerting?: boolean;
505
+ /**
506
+ * Enables alerting rollout of the dashboard widgets.
507
+ */
508
+ enableAlertingRollout?: boolean;
509
+ /**
510
+ * Enables smtp settings.
511
+ */
512
+ enableSmtp?: boolean;
513
+ /**
514
+ * Enables storing widget identifiers.
515
+ */
516
+ enableWidgetIdentifiersRollout?: boolean;
517
+ enableDataSection?: boolean;
518
+ enableMySqlDataSource?: boolean;
519
+ enableMariaDbDataSource?: boolean;
520
+ enableOracleDataSource?: boolean;
521
+ enableSnowflakeKeyPairAuthentication?: boolean;
522
+ enableMotherDuckDataSource?: boolean;
523
+ enableMongoDbDataSource?: boolean;
524
+ enableStarrocksDataSource?: boolean;
525
+ enableSingleStoreDataSource?: boolean;
526
+ enableAthenaDataSource?: boolean;
527
+ enableCrateDbDataSource?: boolean;
528
+ /**
529
+ * Enable GenAI-powered functionality, such as semantic-search.
530
+ * @deprecated Use separate flags for semantic search and GenAI chat below.
531
+ */
532
+ enableAIFunctions?: boolean;
533
+ /**
534
+ * Enable Semantic Search in the UI.
535
+ */
536
+ enableSemanticSearch?: boolean;
537
+ /**
538
+ * Enable Semantic Search rollout in the UI.
539
+ */
540
+ enableSemanticSearchRollout?: boolean;
541
+ /**
542
+ * Enable Gen AI Chatbot in UI.
543
+ */
544
+ enableGenAIChat?: boolean;
545
+ /**
546
+ * Enable Gen AI Chatbot rollout in UI.
547
+ */
548
+ enableGenAIChatRollout?: boolean;
549
+ /**
550
+ * Enable GenAI catalog quality checker in Analytics Catalog.
551
+ */
552
+ enableGenAICatalogQualityChecker?: boolean;
553
+ /**
554
+ * Enable trending and recommended object tabs in Analytics Catalog.
555
+ */
556
+ enableCatalogTrendingObjects?: boolean;
557
+ /**
558
+ * Enable certification indicators in Analytics Catalog.
559
+ */
560
+ enableCertification?: boolean;
561
+ /**
562
+ * Allow sending aggregated data to LLM.
563
+ */
564
+ enableAiOnData?: boolean;
565
+ /**
566
+ * Enable multiple data sources to be used in a single workspace.
567
+ */
568
+ enableDashboardFilterViews?: boolean;
569
+ /**
570
+ * Enable customized dashboards without plugin overlay.
571
+ * When enabled, the plugin overlay will not be displayed on dashboard items.
572
+ */
573
+ enableCustomizedDashboardsWithoutPluginOverlay?: boolean;
574
+ /**
575
+ * Enables ignore cross-filtering in widgets on dashboard.
576
+ */
577
+ enableIgnoreCrossFiltering?: boolean;
578
+ /**
579
+ * Enables manual headline exports on dashboard.
580
+ */
581
+ enableHeadlineExport?: boolean;
582
+ /**
583
+ * Enable the use of alias filter titles in cross filtering.
584
+ * @internal
585
+ */
586
+ enableCrossFilteringAliasTitles?: boolean;
587
+ /**
588
+ * Enable the use of default SMTP in destinations.
589
+ */
590
+ enableDefaultSmtp?: boolean;
591
+ /**
592
+ * Enable number separators configuration in home-ui (both organization and workspace level).
593
+ */
594
+ enableNumberSeparators?: boolean;
595
+ /**
596
+ * Enable the use of new user creation flow.
597
+ */
598
+ enableNewUserCreationFlow?: boolean;
599
+ /**
600
+ * Enable the possibility to test destinations (emails, webhooks) in the UI.
601
+ */
602
+ enableDestinationTesting?: boolean;
603
+ /**
604
+ * Enable in-platform notifications.
605
+ */
606
+ enableInPlatformNotifications?: boolean;
607
+ /**
608
+ * Enable fine-tuning options for visualization in AD configuration panel.
609
+ */
610
+ enableVisualizationFineTuning?: boolean;
611
+ /**
612
+ * Enable improved attribute filters experience in Analytical Designer.
613
+ */
614
+ enableImprovedAdFilters?: boolean;
615
+ /**
616
+ * Enable external recipients options
617
+ */
618
+ enableExternalRecipients?: boolean;
619
+ /**
620
+ * Enable drilled tooltip in drill dialog
621
+ */
622
+ enableDrilledTooltip?: boolean;
623
+ /**
624
+ * Enable dashboard tabular export
625
+ */
626
+ enableDashboardTabularExport?: boolean;
627
+ /**
628
+ * Enable orchestrated tabular exports
629
+ */
630
+ enableOrchestratedTabularExports?: boolean;
631
+ /**
632
+ * Enable dynamic height of the dashboard section description fields in dashboard edit mode.
633
+ */
634
+ enableDashboardDescriptionDynamicHeight?: boolean;
635
+ /**
636
+ * Enables tracking events to Amplitude.
637
+ */
638
+ enableAmplitudeTracker?: boolean;
639
+ /**
640
+ * Enable slideshow exports using the new export render mode in KD.
641
+ */
642
+ enableSlideshowExports?: boolean;
643
+ /**
644
+ * Enable slideshow exports settings from server
645
+ */
646
+ enableSlidesExport?: boolean;
647
+ /**
648
+ * Enable rich text dynamic references.
649
+ */
650
+ enableRichTextDynamicReferences?: boolean;
651
+ /**
652
+ * Enable insights export of raw data when limit is reached.
653
+ */
654
+ enableRawExports?: boolean;
655
+ /**
656
+ * Enable new PDF tabular export option for insights.
657
+ */
658
+ enableNewPdfTabularExport?: boolean;
659
+ /**
660
+ * Enable rich text widget filter configuration.
661
+ * Allows users to configure date and attribute filter settings for rich text widgets.
662
+ * @alpha
663
+ */
664
+ enableRichTextWidgetFilterConfiguration?: boolean;
665
+ /**
666
+ * Enable dashboard-level date dataset configuration for section headers.
667
+ * Allows users to select which date dataset to use for filtering metrics in section header rich text.
668
+ * @alpha
669
+ */
670
+ enableDashboardSectionHeadersDateDataSet?: boolean;
671
+ /**
672
+ * Enable execution cancelling.
673
+ */
674
+ enableExecutionCancelling?: boolean;
675
+ /**
676
+ * Enable immediate attribute filter displayAsLabel migration information propagation right upon the load of the component.
677
+ */
678
+ enableImmediateAttributeFilterDisplayAsLabelMigration?: boolean;
679
+ /**
680
+ * Enable the URL sharing functionality in the dashboard share dialog.
681
+ */
682
+ enableDashboardShareLink?: boolean;
683
+ /**
684
+ * Enable using execution timestamp.
685
+ */
686
+ enableExecutionTimestamp?: boolean;
687
+ /**
688
+ * Enable automation filter context.
689
+ */
690
+ enableAutomationFilterContext?: boolean;
691
+ /**
692
+ * Enables storing date filter identifiers.
693
+ */
694
+ enableDateFilterIdentifiersRollout?: boolean;
695
+ /**
696
+ * Enable to setup alerts evaluation frequency in dashboard settings.
697
+ */
698
+ enableAlertsEvaluationFrequencySetup?: boolean;
699
+ /**
700
+ * Enable a configurable trend threshold in line chart visualization.
701
+ */
702
+ enableLineChartTrendThreshold?: boolean;
703
+ /**
704
+ * Enable to respect chart legend position in KD.
705
+ */
706
+ enableKDRespectLegendPosition?: boolean;
707
+ /**
708
+ * Enables workspace settings link in account menu of the user in every app header.
709
+ */
710
+ enableWorkspaceSettingsAppHeaderMenuItem?: boolean;
711
+ /**
712
+ * Enable accessibility enhancements for snapshot export.
713
+ */
714
+ enableSnapshotExportAccessibility?: boolean;
715
+ /**
716
+ * Enable widget export to PDF.
717
+ */
718
+ enableWidgetExportPdf?: boolean;
719
+ /**
720
+ * Enable widget export to PNG image.
721
+ */
722
+ enableWidgetExportPngImage?: boolean;
723
+ /**
724
+ * Enable export to document storage.
725
+ */
726
+ enableExportToDocumentStorage?: boolean;
727
+ /**
728
+ * Enable notification channel identifiers
729
+ */
730
+ enableNotificationChannelIdentifiers?: boolean;
731
+ /**
732
+ * Enable dashboard share dialog link
733
+ */
734
+ enableDashboardShareDialogLink?: boolean;
735
+ /**
736
+ * Enable production features
737
+ *
738
+ * @alpha
739
+ */
740
+ productionFeatures?: IProductionFeaturesConfig;
741
+ /**
742
+ * Enable new scheduled export
743
+ */
744
+ enableNewScheduledExport?: boolean;
745
+ /**
746
+ * Enable custom Identity Provider
747
+ */
748
+ enableSeamlessIdpSwitch?: boolean;
749
+ /**
750
+ * Enable pre-aggregation datasets support in LDM Modeler.
751
+ */
752
+ enablePreAggregationDatasets?: boolean;
753
+ /**
754
+ * Enable "to date" filters also known as "bounded" filters (e.g. YTD, QTD, MTD, WTD)
755
+ */
756
+ enableToDateFilters?: boolean;
757
+ /**
758
+ * Enable new pivot table
759
+ */
760
+ enableNewPivotTable?: boolean;
761
+ /**
762
+ * Enable new geo pushpin chart
763
+ */
764
+ enableNewGeoPushpin?: boolean;
765
+ /**
766
+ * Enable geo area labels.
767
+ */
768
+ enableGeoArea?: boolean;
769
+ /**
770
+ * Enables geo accessibility enhancements introduced for map canvas, legend semantics,
771
+ * live announcements, and alternate table view.
772
+ */
773
+ enableGeoChartA11yImprovements?: boolean;
774
+ /**
775
+ * Enables viewport configuration for geo charts (custom viewport + pan/zoom navigation controls).
776
+ */
777
+ enableGeoChartsViewportConfig?: boolean;
778
+ /**
779
+ * Enables analytical designer recommendation for geo charts when locations contain conflicting segment values.
780
+ */
781
+ enableGeoSegmentConflictRecommendation?: boolean;
782
+ /**
783
+ * Enable basemap selection in geo chart configuration.
784
+ */
785
+ enableGeoBasemapConfig?: boolean;
786
+ /**
787
+ * Enable Geo collections management UI.
788
+ */
789
+ enableCustomGeoCollection?: boolean;
790
+ /**
791
+ * Enable satellite/hybrid basemap option in geo chart configuration.
792
+ */
793
+ enableGeoSatelliteBasemapOption?: boolean;
794
+ /**
795
+ * Enable automation management in dashboards
796
+ */
797
+ enableAutomationManagement?: boolean;
798
+ /**
799
+ * Enable filter accessibility features including redesigned date filter components.
800
+ */
801
+ enableFilterAccessibility?: boolean;
802
+ /**
803
+ * Enable GenAI memory feature
804
+ */
805
+ enableGenAIMemory?: boolean;
806
+ /**
807
+ * Enable AI Knowledge feature
808
+ */
809
+ enableAIKnowledge?: boolean;
810
+ /**
811
+ * Enable GenAI reasoning visibility.
812
+ */
813
+ enableGenAIReasoningVisibility?: boolean;
814
+ /**
815
+ * AI Chat search limit
816
+ */
817
+ aiChatSearchLimit?: number;
818
+ /**
819
+ * Enable snapshot export
820
+ */
821
+ enableSnapshotExport?: boolean;
822
+ /**
823
+ * Enable accessibility mode
824
+ */
825
+ enableAccessibilityMode?: boolean;
826
+ /**
827
+ * This setting enables drills into URL in pivot table charts by default on all available attributes.
828
+ * Renders table cells as hyperlinks.
829
+ */
830
+ enableDrillToUrlByDefault?: boolean;
831
+ /**
832
+ * This feature flag enables automatic drill to url setting feature.
833
+ */
834
+ enableImplicitDrillToUrl?: boolean;
835
+ /**
836
+ * Enable anomaly detection alert
837
+ */
838
+ enableAnomalyDetectionAlert?: boolean;
839
+ /**
840
+ * Enable anomaly detection in visualization
841
+ */
842
+ enableAnomalyDetectionVisualization?: boolean;
843
+ /**
844
+ * Enable alert once per interval
845
+ */
846
+ enableAlertOncePerInterval?: boolean;
847
+ /**
848
+ * Enable fiscal calendars configuration.
849
+ */
850
+ enableFiscalCalendars?: boolean;
851
+ /**
852
+ * Enable pagination for the pivot table.
853
+ */
854
+ enablePivotTablePagination?: boolean;
855
+ /**
856
+ * Enable dashboard filter groups.
857
+ *
858
+ * Filter group are items in a filter bar which groups regular attribute filters into a logical groups.
859
+ * Groups are configured via dashboard metadata new tab property called filterGroupsConfig.
860
+ */
861
+ enableDashboardFilterGroups?: boolean;
862
+ /**
863
+ * Enable match filter in Analytical Designer.
864
+ */
865
+ enableMatchFilterAD?: boolean;
866
+ /**
867
+ * Enable arbitrary filter in Analytical Designer.
868
+ */
869
+ enableArbitraryFilterAD?: boolean;
870
+ /**
871
+ * Enable match filter in Dashboard app.
872
+ */
873
+ enableMatchFilterKD?: boolean;
874
+ /**
875
+ * Enable arbitrary filter in Dashboard app.
876
+ */
877
+ enableArbitraryFilterKD?: boolean;
878
+ /**
879
+ * Enable filtering of visualizations by tags provided via URL.
880
+ */
881
+ enableVisualizationFilteringByTags?: boolean;
882
+ /**
883
+ * Enables "Empty date values" configuration in KPI Dashboards date filter.
884
+ */
885
+ enableKDEmptyDateValuesFilter?: boolean;
886
+ /**
887
+ * Enable filter control in drilling configuration.
888
+ */
889
+ enableFilterControlInDrillingConfiguration?: boolean;
890
+ /**
891
+ * Enable shell application.
892
+ */
893
+ enableShellApplication?: boolean;
894
+ /**
895
+ * Enable NULL-aware joins used for FULL OUTER JOIN conditions.
896
+ */
897
+ enableNullJoins?: boolean;
898
+ /**
899
+ * Enable dashboard density setting.
900
+ *
901
+ * When enabled, users can switch between "comfortable" and "compact" information density
902
+ * in dashboard view mode.
903
+ */
904
+ enableDashboardDensitySetting?: boolean;
905
+ /**
906
+ * Enable Analytical Catalog application.
907
+ */
908
+ enableAnalyticalCatalog?: boolean;
909
+ }
910
+ //# sourceMappingURL=settings.d.ts.map