@aws-sdk/client-quicksight 3.687.0 → 3.691.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.
@@ -36,24 +36,24 @@ export declare const OtherCategories: {
36
36
  export type OtherCategories =
37
37
  (typeof OtherCategories)[keyof typeof OtherCategories];
38
38
  export interface ItemsLimitConfiguration {
39
- ItemsLimit?: number;
40
- OtherCategories?: OtherCategories;
39
+ ItemsLimit?: number | undefined;
40
+ OtherCategories?: OtherCategories | undefined;
41
41
  }
42
42
  export interface FieldSort {
43
43
  FieldId: string | undefined;
44
44
  Direction: SortDirection | undefined;
45
45
  }
46
46
  export interface FieldSortOptions {
47
- FieldSort?: FieldSort;
48
- ColumnSort?: ColumnSort;
47
+ FieldSort?: FieldSort | undefined;
48
+ ColumnSort?: ColumnSort | undefined;
49
49
  }
50
50
  export interface BarChartSortConfiguration {
51
- CategorySort?: FieldSortOptions[];
52
- CategoryItemsLimit?: ItemsLimitConfiguration;
53
- ColorSort?: FieldSortOptions[];
54
- ColorItemsLimit?: ItemsLimitConfiguration;
55
- SmallMultiplesSort?: FieldSortOptions[];
56
- SmallMultiplesLimitConfiguration?: ItemsLimitConfiguration;
51
+ CategorySort?: FieldSortOptions[] | undefined;
52
+ CategoryItemsLimit?: ItemsLimitConfiguration | undefined;
53
+ ColorSort?: FieldSortOptions[] | undefined;
54
+ ColorItemsLimit?: ItemsLimitConfiguration | undefined;
55
+ SmallMultiplesSort?: FieldSortOptions[] | undefined;
56
+ SmallMultiplesLimitConfiguration?: ItemsLimitConfiguration | undefined;
57
57
  }
58
58
  export declare const TooltipTarget: {
59
59
  readonly BAR: "BAR";
@@ -63,20 +63,20 @@ export declare const TooltipTarget: {
63
63
  export type TooltipTarget = (typeof TooltipTarget)[keyof typeof TooltipTarget];
64
64
  export interface ColumnTooltipItem {
65
65
  Column: ColumnIdentifier | undefined;
66
- Label?: string;
67
- Visibility?: Visibility;
68
- Aggregation?: AggregationFunction;
69
- TooltipTarget?: TooltipTarget;
66
+ Label?: string | undefined;
67
+ Visibility?: Visibility | undefined;
68
+ Aggregation?: AggregationFunction | undefined;
69
+ TooltipTarget?: TooltipTarget | undefined;
70
70
  }
71
71
  export interface FieldTooltipItem {
72
72
  FieldId: string | undefined;
73
- Label?: string;
74
- Visibility?: Visibility;
75
- TooltipTarget?: TooltipTarget;
73
+ Label?: string | undefined;
74
+ Visibility?: Visibility | undefined;
75
+ TooltipTarget?: TooltipTarget | undefined;
76
76
  }
77
77
  export interface TooltipItem {
78
- FieldTooltipItem?: FieldTooltipItem;
79
- ColumnTooltipItem?: ColumnTooltipItem;
78
+ FieldTooltipItem?: FieldTooltipItem | undefined;
79
+ ColumnTooltipItem?: ColumnTooltipItem | undefined;
80
80
  }
81
81
  export declare const TooltipTitleType: {
82
82
  readonly NONE: "NONE";
@@ -85,9 +85,9 @@ export declare const TooltipTitleType: {
85
85
  export type TooltipTitleType =
86
86
  (typeof TooltipTitleType)[keyof typeof TooltipTitleType];
87
87
  export interface FieldBasedTooltip {
88
- AggregationVisibility?: Visibility;
89
- TooltipTitleType?: TooltipTitleType;
90
- TooltipFields?: TooltipItem[];
88
+ AggregationVisibility?: Visibility | undefined;
89
+ TooltipTitleType?: TooltipTitleType | undefined;
90
+ TooltipFields?: TooltipItem[] | undefined;
91
91
  }
92
92
  export declare const SelectedTooltipType: {
93
93
  readonly BASIC: "BASIC";
@@ -96,9 +96,9 @@ export declare const SelectedTooltipType: {
96
96
  export type SelectedTooltipType =
97
97
  (typeof SelectedTooltipType)[keyof typeof SelectedTooltipType];
98
98
  export interface TooltipOptions {
99
- TooltipVisibility?: Visibility;
100
- SelectedTooltipType?: SelectedTooltipType;
101
- FieldBasedTooltip?: FieldBasedTooltip;
99
+ TooltipVisibility?: Visibility | undefined;
100
+ SelectedTooltipType?: SelectedTooltipType | undefined;
101
+ FieldBasedTooltip?: FieldBasedTooltip | undefined;
102
102
  }
103
103
  export declare const PivotTableDataPathType: {
104
104
  readonly COUNT_METRIC_COLUMN: "COUNT_METRIC_COLUMN";
@@ -109,40 +109,40 @@ export declare const PivotTableDataPathType: {
109
109
  export type PivotTableDataPathType =
110
110
  (typeof PivotTableDataPathType)[keyof typeof PivotTableDataPathType];
111
111
  export interface DataPathType {
112
- PivotTableDataPathType?: PivotTableDataPathType;
112
+ PivotTableDataPathType?: PivotTableDataPathType | undefined;
113
113
  }
114
114
  export interface DataPathValue {
115
- FieldId?: string;
116
- FieldValue?: string;
117
- DataPathType?: DataPathType;
115
+ FieldId?: string | undefined;
116
+ FieldValue?: string | undefined;
117
+ DataPathType?: DataPathType | undefined;
118
118
  }
119
119
  export interface DataPathColor {
120
120
  Element: DataPathValue | undefined;
121
121
  Color: string | undefined;
122
- TimeGranularity?: TimeGranularity;
122
+ TimeGranularity?: TimeGranularity | undefined;
123
123
  }
124
124
  export interface VisualPalette {
125
- ChartColor?: string;
126
- ColorMap?: DataPathColor[];
125
+ ChartColor?: string | undefined;
126
+ ColorMap?: DataPathColor[] | undefined;
127
127
  }
128
128
  export interface BarChartConfiguration {
129
- FieldWells?: BarChartFieldWells;
130
- SortConfiguration?: BarChartSortConfiguration;
131
- Orientation?: BarChartOrientation;
132
- BarsArrangement?: BarsArrangement;
133
- VisualPalette?: VisualPalette;
134
- SmallMultiplesOptions?: SmallMultiplesOptions;
135
- CategoryAxis?: AxisDisplayOptions;
136
- CategoryLabelOptions?: ChartAxisLabelOptions;
137
- ValueAxis?: AxisDisplayOptions;
138
- ValueLabelOptions?: ChartAxisLabelOptions;
139
- ColorLabelOptions?: ChartAxisLabelOptions;
140
- Legend?: LegendOptions;
141
- DataLabels?: DataLabelOptions;
142
- Tooltip?: TooltipOptions;
143
- ReferenceLines?: ReferenceLine[];
144
- ContributionAnalysisDefaults?: ContributionAnalysisDefault[];
145
- Interactions?: VisualInteractionOptions;
129
+ FieldWells?: BarChartFieldWells | undefined;
130
+ SortConfiguration?: BarChartSortConfiguration | undefined;
131
+ Orientation?: BarChartOrientation | undefined;
132
+ BarsArrangement?: BarsArrangement | undefined;
133
+ VisualPalette?: VisualPalette | undefined;
134
+ SmallMultiplesOptions?: SmallMultiplesOptions | undefined;
135
+ CategoryAxis?: AxisDisplayOptions | undefined;
136
+ CategoryLabelOptions?: ChartAxisLabelOptions | undefined;
137
+ ValueAxis?: AxisDisplayOptions | undefined;
138
+ ValueLabelOptions?: ChartAxisLabelOptions | undefined;
139
+ ColorLabelOptions?: ChartAxisLabelOptions | undefined;
140
+ Legend?: LegendOptions | undefined;
141
+ DataLabels?: DataLabelOptions | undefined;
142
+ Tooltip?: TooltipOptions | undefined;
143
+ ReferenceLines?: ReferenceLine[] | undefined;
144
+ ContributionAnalysisDefaults?: ContributionAnalysisDefault[] | undefined;
145
+ Interactions?: VisualInteractionOptions | undefined;
146
146
  }
147
147
  export interface CategoryDrillDownFilter {
148
148
  Column: ColumnIdentifier | undefined;
@@ -159,52 +159,52 @@ export interface TimeRangeDrillDownFilter {
159
159
  TimeGranularity: TimeGranularity | undefined;
160
160
  }
161
161
  export interface DrillDownFilter {
162
- NumericEqualityFilter?: NumericEqualityDrillDownFilter;
163
- CategoryFilter?: CategoryDrillDownFilter;
164
- TimeRangeFilter?: TimeRangeDrillDownFilter;
162
+ NumericEqualityFilter?: NumericEqualityDrillDownFilter | undefined;
163
+ CategoryFilter?: CategoryDrillDownFilter | undefined;
164
+ TimeRangeFilter?: TimeRangeDrillDownFilter | undefined;
165
165
  }
166
166
  export interface DateTimeHierarchy {
167
167
  HierarchyId: string | undefined;
168
- DrillDownFilters?: DrillDownFilter[];
168
+ DrillDownFilters?: DrillDownFilter[] | undefined;
169
169
  }
170
170
  export interface ExplicitHierarchy {
171
171
  HierarchyId: string | undefined;
172
172
  Columns: ColumnIdentifier[] | undefined;
173
- DrillDownFilters?: DrillDownFilter[];
173
+ DrillDownFilters?: DrillDownFilter[] | undefined;
174
174
  }
175
175
  export interface PredefinedHierarchy {
176
176
  HierarchyId: string | undefined;
177
177
  Columns: ColumnIdentifier[] | undefined;
178
- DrillDownFilters?: DrillDownFilter[];
178
+ DrillDownFilters?: DrillDownFilter[] | undefined;
179
179
  }
180
180
  export interface ColumnHierarchy {
181
- ExplicitHierarchy?: ExplicitHierarchy;
182
- DateTimeHierarchy?: DateTimeHierarchy;
183
- PredefinedHierarchy?: PredefinedHierarchy;
181
+ ExplicitHierarchy?: ExplicitHierarchy | undefined;
182
+ DateTimeHierarchy?: DateTimeHierarchy | undefined;
183
+ PredefinedHierarchy?: PredefinedHierarchy | undefined;
184
184
  }
185
185
  export interface LongFormatText {
186
- PlainText?: string;
187
- RichText?: string;
186
+ PlainText?: string | undefined;
187
+ RichText?: string | undefined;
188
188
  }
189
189
  export interface VisualSubtitleLabelOptions {
190
- Visibility?: Visibility;
191
- FormatText?: LongFormatText;
190
+ Visibility?: Visibility | undefined;
191
+ FormatText?: LongFormatText | undefined;
192
192
  }
193
193
  export interface ShortFormatText {
194
- PlainText?: string;
195
- RichText?: string;
194
+ PlainText?: string | undefined;
195
+ RichText?: string | undefined;
196
196
  }
197
197
  export interface VisualTitleLabelOptions {
198
- Visibility?: Visibility;
199
- FormatText?: ShortFormatText;
198
+ Visibility?: Visibility | undefined;
199
+ FormatText?: ShortFormatText | undefined;
200
200
  }
201
201
  export interface BarChartVisual {
202
202
  VisualId: string | undefined;
203
- Title?: VisualTitleLabelOptions;
204
- Subtitle?: VisualSubtitleLabelOptions;
205
- ChartConfiguration?: BarChartConfiguration;
206
- Actions?: VisualCustomAction[];
207
- ColumnHierarchies?: ColumnHierarchy[];
203
+ Title?: VisualTitleLabelOptions | undefined;
204
+ Subtitle?: VisualSubtitleLabelOptions | undefined;
205
+ ChartConfiguration?: BarChartConfiguration | undefined;
206
+ Actions?: VisualCustomAction[] | undefined;
207
+ ColumnHierarchies?: ColumnHierarchy[] | undefined;
208
208
  }
209
209
  export declare const BoxPlotFillStyle: {
210
210
  readonly SOLID: "SOLID";
@@ -213,58 +213,58 @@ export declare const BoxPlotFillStyle: {
213
213
  export type BoxPlotFillStyle =
214
214
  (typeof BoxPlotFillStyle)[keyof typeof BoxPlotFillStyle];
215
215
  export interface BoxPlotStyleOptions {
216
- FillStyle?: BoxPlotFillStyle;
216
+ FillStyle?: BoxPlotFillStyle | undefined;
217
217
  }
218
218
  export interface BoxPlotOptions {
219
- StyleOptions?: BoxPlotStyleOptions;
220
- OutlierVisibility?: Visibility;
221
- AllDataPointsVisibility?: Visibility;
219
+ StyleOptions?: BoxPlotStyleOptions | undefined;
220
+ OutlierVisibility?: Visibility | undefined;
221
+ AllDataPointsVisibility?: Visibility | undefined;
222
222
  }
223
223
  export interface BoxPlotAggregatedFieldWells {
224
- GroupBy?: DimensionField[];
225
- Values?: MeasureField[];
224
+ GroupBy?: DimensionField[] | undefined;
225
+ Values?: MeasureField[] | undefined;
226
226
  }
227
227
  export interface BoxPlotFieldWells {
228
- BoxPlotAggregatedFieldWells?: BoxPlotAggregatedFieldWells;
228
+ BoxPlotAggregatedFieldWells?: BoxPlotAggregatedFieldWells | undefined;
229
229
  }
230
230
  export interface PaginationConfiguration {
231
231
  PageSize: number | undefined;
232
232
  PageNumber: number | undefined;
233
233
  }
234
234
  export interface BoxPlotSortConfiguration {
235
- CategorySort?: FieldSortOptions[];
236
- PaginationConfiguration?: PaginationConfiguration;
235
+ CategorySort?: FieldSortOptions[] | undefined;
236
+ PaginationConfiguration?: PaginationConfiguration | undefined;
237
237
  }
238
238
  export interface BoxPlotChartConfiguration {
239
- FieldWells?: BoxPlotFieldWells;
240
- SortConfiguration?: BoxPlotSortConfiguration;
241
- BoxPlotOptions?: BoxPlotOptions;
242
- CategoryAxis?: AxisDisplayOptions;
243
- CategoryLabelOptions?: ChartAxisLabelOptions;
244
- PrimaryYAxisDisplayOptions?: AxisDisplayOptions;
245
- PrimaryYAxisLabelOptions?: ChartAxisLabelOptions;
246
- Legend?: LegendOptions;
247
- Tooltip?: TooltipOptions;
248
- ReferenceLines?: ReferenceLine[];
249
- VisualPalette?: VisualPalette;
250
- Interactions?: VisualInteractionOptions;
239
+ FieldWells?: BoxPlotFieldWells | undefined;
240
+ SortConfiguration?: BoxPlotSortConfiguration | undefined;
241
+ BoxPlotOptions?: BoxPlotOptions | undefined;
242
+ CategoryAxis?: AxisDisplayOptions | undefined;
243
+ CategoryLabelOptions?: ChartAxisLabelOptions | undefined;
244
+ PrimaryYAxisDisplayOptions?: AxisDisplayOptions | undefined;
245
+ PrimaryYAxisLabelOptions?: ChartAxisLabelOptions | undefined;
246
+ Legend?: LegendOptions | undefined;
247
+ Tooltip?: TooltipOptions | undefined;
248
+ ReferenceLines?: ReferenceLine[] | undefined;
249
+ VisualPalette?: VisualPalette | undefined;
250
+ Interactions?: VisualInteractionOptions | undefined;
251
251
  }
252
252
  export interface BoxPlotVisual {
253
253
  VisualId: string | undefined;
254
- Title?: VisualTitleLabelOptions;
255
- Subtitle?: VisualSubtitleLabelOptions;
256
- ChartConfiguration?: BoxPlotChartConfiguration;
257
- Actions?: VisualCustomAction[];
258
- ColumnHierarchies?: ColumnHierarchy[];
254
+ Title?: VisualTitleLabelOptions | undefined;
255
+ Subtitle?: VisualSubtitleLabelOptions | undefined;
256
+ ChartConfiguration?: BoxPlotChartConfiguration | undefined;
257
+ Actions?: VisualCustomAction[] | undefined;
258
+ ColumnHierarchies?: ColumnHierarchy[] | undefined;
259
259
  }
260
260
  export interface ComboChartAggregatedFieldWells {
261
- Category?: DimensionField[];
262
- BarValues?: MeasureField[];
263
- Colors?: DimensionField[];
264
- LineValues?: MeasureField[];
261
+ Category?: DimensionField[] | undefined;
262
+ BarValues?: MeasureField[] | undefined;
263
+ Colors?: DimensionField[] | undefined;
264
+ LineValues?: MeasureField[] | undefined;
265
265
  }
266
266
  export interface ComboChartFieldWells {
267
- ComboChartAggregatedFieldWells?: ComboChartAggregatedFieldWells;
267
+ ComboChartAggregatedFieldWells?: ComboChartAggregatedFieldWells | undefined;
268
268
  }
269
269
  export declare const SingleYAxisOption: {
270
270
  readonly PRIMARY_Y_AXIS: "PRIMARY_Y_AXIS";
@@ -275,41 +275,41 @@ export interface YAxisOptions {
275
275
  YAxis: SingleYAxisOption | undefined;
276
276
  }
277
277
  export interface SingleAxisOptions {
278
- YAxisOptions?: YAxisOptions;
278
+ YAxisOptions?: YAxisOptions | undefined;
279
279
  }
280
280
  export interface ComboChartSortConfiguration {
281
- CategorySort?: FieldSortOptions[];
282
- CategoryItemsLimit?: ItemsLimitConfiguration;
283
- ColorSort?: FieldSortOptions[];
284
- ColorItemsLimit?: ItemsLimitConfiguration;
281
+ CategorySort?: FieldSortOptions[] | undefined;
282
+ CategoryItemsLimit?: ItemsLimitConfiguration | undefined;
283
+ ColorSort?: FieldSortOptions[] | undefined;
284
+ ColorItemsLimit?: ItemsLimitConfiguration | undefined;
285
285
  }
286
286
  export interface ComboChartConfiguration {
287
- FieldWells?: ComboChartFieldWells;
288
- SortConfiguration?: ComboChartSortConfiguration;
289
- BarsArrangement?: BarsArrangement;
290
- CategoryAxis?: AxisDisplayOptions;
291
- CategoryLabelOptions?: ChartAxisLabelOptions;
292
- PrimaryYAxisDisplayOptions?: AxisDisplayOptions;
293
- PrimaryYAxisLabelOptions?: ChartAxisLabelOptions;
294
- SecondaryYAxisDisplayOptions?: AxisDisplayOptions;
295
- SecondaryYAxisLabelOptions?: ChartAxisLabelOptions;
296
- SingleAxisOptions?: SingleAxisOptions;
297
- ColorLabelOptions?: ChartAxisLabelOptions;
298
- Legend?: LegendOptions;
299
- BarDataLabels?: DataLabelOptions;
300
- LineDataLabels?: DataLabelOptions;
301
- Tooltip?: TooltipOptions;
302
- ReferenceLines?: ReferenceLine[];
303
- VisualPalette?: VisualPalette;
304
- Interactions?: VisualInteractionOptions;
287
+ FieldWells?: ComboChartFieldWells | undefined;
288
+ SortConfiguration?: ComboChartSortConfiguration | undefined;
289
+ BarsArrangement?: BarsArrangement | undefined;
290
+ CategoryAxis?: AxisDisplayOptions | undefined;
291
+ CategoryLabelOptions?: ChartAxisLabelOptions | undefined;
292
+ PrimaryYAxisDisplayOptions?: AxisDisplayOptions | undefined;
293
+ PrimaryYAxisLabelOptions?: ChartAxisLabelOptions | undefined;
294
+ SecondaryYAxisDisplayOptions?: AxisDisplayOptions | undefined;
295
+ SecondaryYAxisLabelOptions?: ChartAxisLabelOptions | undefined;
296
+ SingleAxisOptions?: SingleAxisOptions | undefined;
297
+ ColorLabelOptions?: ChartAxisLabelOptions | undefined;
298
+ Legend?: LegendOptions | undefined;
299
+ BarDataLabels?: DataLabelOptions | undefined;
300
+ LineDataLabels?: DataLabelOptions | undefined;
301
+ Tooltip?: TooltipOptions | undefined;
302
+ ReferenceLines?: ReferenceLine[] | undefined;
303
+ VisualPalette?: VisualPalette | undefined;
304
+ Interactions?: VisualInteractionOptions | undefined;
305
305
  }
306
306
  export interface ComboChartVisual {
307
307
  VisualId: string | undefined;
308
- Title?: VisualTitleLabelOptions;
309
- Subtitle?: VisualSubtitleLabelOptions;
310
- ChartConfiguration?: ComboChartConfiguration;
311
- Actions?: VisualCustomAction[];
312
- ColumnHierarchies?: ColumnHierarchy[];
308
+ Title?: VisualTitleLabelOptions | undefined;
309
+ Subtitle?: VisualSubtitleLabelOptions | undefined;
310
+ ChartConfiguration?: ComboChartConfiguration | undefined;
311
+ Actions?: VisualCustomAction[] | undefined;
312
+ ColumnHierarchies?: ColumnHierarchy[] | undefined;
313
313
  }
314
314
  export declare const CustomContentType: {
315
315
  readonly IMAGE: "IMAGE";
@@ -326,30 +326,30 @@ export declare const CustomContentImageScalingConfiguration: {
326
326
  export type CustomContentImageScalingConfiguration =
327
327
  (typeof CustomContentImageScalingConfiguration)[keyof typeof CustomContentImageScalingConfiguration];
328
328
  export interface CustomContentConfiguration {
329
- ContentUrl?: string;
330
- ContentType?: CustomContentType;
331
- ImageScaling?: CustomContentImageScalingConfiguration;
332
- Interactions?: VisualInteractionOptions;
329
+ ContentUrl?: string | undefined;
330
+ ContentType?: CustomContentType | undefined;
331
+ ImageScaling?: CustomContentImageScalingConfiguration | undefined;
332
+ Interactions?: VisualInteractionOptions | undefined;
333
333
  }
334
334
  export interface CustomContentVisual {
335
335
  VisualId: string | undefined;
336
- Title?: VisualTitleLabelOptions;
337
- Subtitle?: VisualSubtitleLabelOptions;
338
- ChartConfiguration?: CustomContentConfiguration;
339
- Actions?: VisualCustomAction[];
336
+ Title?: VisualTitleLabelOptions | undefined;
337
+ Subtitle?: VisualSubtitleLabelOptions | undefined;
338
+ ChartConfiguration?: CustomContentConfiguration | undefined;
339
+ Actions?: VisualCustomAction[] | undefined;
340
340
  DataSetIdentifier: string | undefined;
341
341
  }
342
342
  export interface EmptyVisual {
343
343
  VisualId: string | undefined;
344
344
  DataSetIdentifier: string | undefined;
345
- Actions?: VisualCustomAction[];
345
+ Actions?: VisualCustomAction[] | undefined;
346
346
  }
347
347
  export interface FilledMapAggregatedFieldWells {
348
- Geospatial?: DimensionField[];
349
- Values?: MeasureField[];
348
+ Geospatial?: DimensionField[] | undefined;
349
+ Values?: MeasureField[] | undefined;
350
350
  }
351
351
  export interface FilledMapFieldWells {
352
- FilledMapAggregatedFieldWells?: FilledMapAggregatedFieldWells;
352
+ FilledMapAggregatedFieldWells?: FilledMapAggregatedFieldWells | undefined;
353
353
  }
354
354
  export declare const BaseMapStyleType: {
355
355
  readonly DARK_GRAY: "DARK_GRAY";
@@ -360,10 +360,10 @@ export declare const BaseMapStyleType: {
360
360
  export type BaseMapStyleType =
361
361
  (typeof BaseMapStyleType)[keyof typeof BaseMapStyleType];
362
362
  export interface GeospatialMapStyleOptions {
363
- BaseMapStyle?: BaseMapStyleType;
363
+ BaseMapStyle?: BaseMapStyleType | undefined;
364
364
  }
365
365
  export interface FilledMapSortConfiguration {
366
- CategorySort?: FieldSortOptions[];
366
+ CategorySort?: FieldSortOptions[] | undefined;
367
367
  }
368
368
  export interface GeospatialCoordinateBounds {
369
369
  North: number | undefined;
@@ -377,25 +377,25 @@ export declare const MapZoomMode: {
377
377
  };
378
378
  export type MapZoomMode = (typeof MapZoomMode)[keyof typeof MapZoomMode];
379
379
  export interface GeospatialWindowOptions {
380
- Bounds?: GeospatialCoordinateBounds;
381
- MapZoomMode?: MapZoomMode;
380
+ Bounds?: GeospatialCoordinateBounds | undefined;
381
+ MapZoomMode?: MapZoomMode | undefined;
382
382
  }
383
383
  export interface FilledMapConfiguration {
384
- FieldWells?: FilledMapFieldWells;
385
- SortConfiguration?: FilledMapSortConfiguration;
386
- Legend?: LegendOptions;
387
- Tooltip?: TooltipOptions;
388
- WindowOptions?: GeospatialWindowOptions;
389
- MapStyleOptions?: GeospatialMapStyleOptions;
390
- Interactions?: VisualInteractionOptions;
384
+ FieldWells?: FilledMapFieldWells | undefined;
385
+ SortConfiguration?: FilledMapSortConfiguration | undefined;
386
+ Legend?: LegendOptions | undefined;
387
+ Tooltip?: TooltipOptions | undefined;
388
+ WindowOptions?: GeospatialWindowOptions | undefined;
389
+ MapStyleOptions?: GeospatialMapStyleOptions | undefined;
390
+ Interactions?: VisualInteractionOptions | undefined;
391
391
  }
392
392
  export interface GradientStop {
393
393
  GradientOffset: number | undefined;
394
- DataValue?: number;
395
- Color?: string;
394
+ DataValue?: number | undefined;
395
+ Color?: string | undefined;
396
396
  }
397
397
  export interface GradientColor {
398
- Stops?: GradientStop[];
398
+ Stops?: GradientStop[] | undefined;
399
399
  }
400
400
  export interface ConditionalFormattingGradientColor {
401
401
  Expression: string | undefined;
@@ -403,18 +403,18 @@ export interface ConditionalFormattingGradientColor {
403
403
  }
404
404
  export interface ConditionalFormattingSolidColor {
405
405
  Expression: string | undefined;
406
- Color?: string;
406
+ Color?: string | undefined;
407
407
  }
408
408
  export interface ConditionalFormattingColor {
409
- Solid?: ConditionalFormattingSolidColor;
410
- Gradient?: ConditionalFormattingGradientColor;
409
+ Solid?: ConditionalFormattingSolidColor | undefined;
410
+ Gradient?: ConditionalFormattingGradientColor | undefined;
411
411
  }
412
412
  export interface ShapeConditionalFormat {
413
413
  BackgroundColor: ConditionalFormattingColor | undefined;
414
414
  }
415
415
  export interface FilledMapShapeConditionalFormatting {
416
416
  FieldId: string | undefined;
417
- Format?: ShapeConditionalFormat;
417
+ Format?: ShapeConditionalFormat | undefined;
418
418
  }
419
419
  export interface FilledMapConditionalFormattingOption {
420
420
  Shape: FilledMapShapeConditionalFormatting | undefined;
@@ -426,12 +426,12 @@ export interface FilledMapConditionalFormatting {
426
426
  }
427
427
  export interface FilledMapVisual {
428
428
  VisualId: string | undefined;
429
- Title?: VisualTitleLabelOptions;
430
- Subtitle?: VisualSubtitleLabelOptions;
431
- ChartConfiguration?: FilledMapConfiguration;
432
- ConditionalFormatting?: FilledMapConditionalFormatting;
433
- ColumnHierarchies?: ColumnHierarchy[];
434
- Actions?: VisualCustomAction[];
429
+ Title?: VisualTitleLabelOptions | undefined;
430
+ Subtitle?: VisualSubtitleLabelOptions | undefined;
431
+ ChartConfiguration?: FilledMapConfiguration | undefined;
432
+ ConditionalFormatting?: FilledMapConditionalFormatting | undefined;
433
+ ColumnHierarchies?: ColumnHierarchy[] | undefined;
434
+ Actions?: VisualCustomAction[] | undefined;
435
435
  }
436
436
  export declare const FunnelChartMeasureDataLabelStyle: {
437
437
  readonly PERCENTAGE_BY_FIRST_STAGE: "PERCENTAGE_BY_FIRST_STAGE";
@@ -443,50 +443,50 @@ export declare const FunnelChartMeasureDataLabelStyle: {
443
443
  export type FunnelChartMeasureDataLabelStyle =
444
444
  (typeof FunnelChartMeasureDataLabelStyle)[keyof typeof FunnelChartMeasureDataLabelStyle];
445
445
  export interface FunnelChartDataLabelOptions {
446
- Visibility?: Visibility;
447
- CategoryLabelVisibility?: Visibility;
448
- MeasureLabelVisibility?: Visibility;
449
- Position?: DataLabelPosition;
450
- LabelFontConfiguration?: FontConfiguration;
451
- LabelColor?: string;
452
- MeasureDataLabelStyle?: FunnelChartMeasureDataLabelStyle;
446
+ Visibility?: Visibility | undefined;
447
+ CategoryLabelVisibility?: Visibility | undefined;
448
+ MeasureLabelVisibility?: Visibility | undefined;
449
+ Position?: DataLabelPosition | undefined;
450
+ LabelFontConfiguration?: FontConfiguration | undefined;
451
+ LabelColor?: string | undefined;
452
+ MeasureDataLabelStyle?: FunnelChartMeasureDataLabelStyle | undefined;
453
453
  }
454
454
  export interface FunnelChartAggregatedFieldWells {
455
- Category?: DimensionField[];
456
- Values?: MeasureField[];
455
+ Category?: DimensionField[] | undefined;
456
+ Values?: MeasureField[] | undefined;
457
457
  }
458
458
  export interface FunnelChartFieldWells {
459
- FunnelChartAggregatedFieldWells?: FunnelChartAggregatedFieldWells;
459
+ FunnelChartAggregatedFieldWells?: FunnelChartAggregatedFieldWells | undefined;
460
460
  }
461
461
  export interface FunnelChartSortConfiguration {
462
- CategorySort?: FieldSortOptions[];
463
- CategoryItemsLimit?: ItemsLimitConfiguration;
462
+ CategorySort?: FieldSortOptions[] | undefined;
463
+ CategoryItemsLimit?: ItemsLimitConfiguration | undefined;
464
464
  }
465
465
  export interface FunnelChartConfiguration {
466
- FieldWells?: FunnelChartFieldWells;
467
- SortConfiguration?: FunnelChartSortConfiguration;
468
- CategoryLabelOptions?: ChartAxisLabelOptions;
469
- ValueLabelOptions?: ChartAxisLabelOptions;
470
- Tooltip?: TooltipOptions;
471
- DataLabelOptions?: FunnelChartDataLabelOptions;
472
- VisualPalette?: VisualPalette;
473
- Interactions?: VisualInteractionOptions;
466
+ FieldWells?: FunnelChartFieldWells | undefined;
467
+ SortConfiguration?: FunnelChartSortConfiguration | undefined;
468
+ CategoryLabelOptions?: ChartAxisLabelOptions | undefined;
469
+ ValueLabelOptions?: ChartAxisLabelOptions | undefined;
470
+ Tooltip?: TooltipOptions | undefined;
471
+ DataLabelOptions?: FunnelChartDataLabelOptions | undefined;
472
+ VisualPalette?: VisualPalette | undefined;
473
+ Interactions?: VisualInteractionOptions | undefined;
474
474
  }
475
475
  export interface FunnelChartVisual {
476
476
  VisualId: string | undefined;
477
- Title?: VisualTitleLabelOptions;
478
- Subtitle?: VisualSubtitleLabelOptions;
479
- ChartConfiguration?: FunnelChartConfiguration;
480
- Actions?: VisualCustomAction[];
481
- ColumnHierarchies?: ColumnHierarchy[];
477
+ Title?: VisualTitleLabelOptions | undefined;
478
+ Subtitle?: VisualSubtitleLabelOptions | undefined;
479
+ ChartConfiguration?: FunnelChartConfiguration | undefined;
480
+ Actions?: VisualCustomAction[] | undefined;
481
+ ColumnHierarchies?: ColumnHierarchy[] | undefined;
482
482
  }
483
483
  export interface GaugeChartColorConfiguration {
484
- ForegroundColor?: string;
485
- BackgroundColor?: string;
484
+ ForegroundColor?: string | undefined;
485
+ BackgroundColor?: string | undefined;
486
486
  }
487
487
  export interface GaugeChartFieldWells {
488
- Values?: MeasureField[];
489
- TargetValues?: MeasureField[];
488
+ Values?: MeasureField[] | undefined;
489
+ TargetValues?: MeasureField[] | undefined;
490
490
  }
491
491
  export declare const ArcThicknessOptions: {
492
492
  readonly LARGE: "LARGE";
@@ -496,20 +496,24 @@ export declare const ArcThicknessOptions: {
496
496
  export type ArcThicknessOptions =
497
497
  (typeof ArcThicknessOptions)[keyof typeof ArcThicknessOptions];
498
498
  export interface ArcConfiguration {
499
- ArcAngle?: number;
500
- ArcThickness?: ArcThicknessOptions;
499
+ ArcAngle?: number | undefined;
500
+ ArcThickness?: ArcThicknessOptions | undefined;
501
501
  }
502
502
  export interface ArcAxisDisplayRange {
503
- Min?: number;
504
- Max?: number;
503
+ Min?: number | undefined;
504
+ Max?: number | undefined;
505
505
  }
506
506
  export interface ArcAxisConfiguration {
507
- Range?: ArcAxisDisplayRange;
508
- ReserveRange?: number;
507
+ Range?: ArcAxisDisplayRange | undefined;
508
+ ReserveRange?: number | undefined;
509
509
  }
510
510
  export interface ComparisonFormatConfiguration {
511
- NumberDisplayFormatConfiguration?: NumberDisplayFormatConfiguration;
512
- PercentageDisplayFormatConfiguration?: PercentageDisplayFormatConfiguration;
511
+ NumberDisplayFormatConfiguration?:
512
+ | NumberDisplayFormatConfiguration
513
+ | undefined;
514
+ PercentageDisplayFormatConfiguration?:
515
+ | PercentageDisplayFormatConfiguration
516
+ | undefined;
513
517
  }
514
518
  export declare const ComparisonMethod: {
515
519
  readonly DIFFERENCE: "DIFFERENCE";
@@ -519,8 +523,8 @@ export declare const ComparisonMethod: {
519
523
  export type ComparisonMethod =
520
524
  (typeof ComparisonMethod)[keyof typeof ComparisonMethod];
521
525
  export interface ComparisonConfiguration {
522
- ComparisonMethod?: ComparisonMethod;
523
- ComparisonFormat?: ComparisonFormatConfiguration;
526
+ ComparisonMethod?: ComparisonMethod | undefined;
527
+ ComparisonFormat?: ComparisonFormatConfiguration | undefined;
524
528
  }
525
529
  export declare const PrimaryValueDisplayType: {
526
530
  readonly ACTUAL: "ACTUAL";
@@ -530,23 +534,23 @@ export declare const PrimaryValueDisplayType: {
530
534
  export type PrimaryValueDisplayType =
531
535
  (typeof PrimaryValueDisplayType)[keyof typeof PrimaryValueDisplayType];
532
536
  export interface GaugeChartOptions {
533
- PrimaryValueDisplayType?: PrimaryValueDisplayType;
534
- Comparison?: ComparisonConfiguration;
535
- ArcAxis?: ArcAxisConfiguration;
536
- Arc?: ArcConfiguration;
537
- PrimaryValueFontConfiguration?: FontConfiguration;
537
+ PrimaryValueDisplayType?: PrimaryValueDisplayType | undefined;
538
+ Comparison?: ComparisonConfiguration | undefined;
539
+ ArcAxis?: ArcAxisConfiguration | undefined;
540
+ Arc?: ArcConfiguration | undefined;
541
+ PrimaryValueFontConfiguration?: FontConfiguration | undefined;
538
542
  }
539
543
  export interface GaugeChartConfiguration {
540
- FieldWells?: GaugeChartFieldWells;
541
- GaugeChartOptions?: GaugeChartOptions;
542
- DataLabels?: DataLabelOptions;
543
- TooltipOptions?: TooltipOptions;
544
- VisualPalette?: VisualPalette;
545
- ColorConfiguration?: GaugeChartColorConfiguration;
546
- Interactions?: VisualInteractionOptions;
544
+ FieldWells?: GaugeChartFieldWells | undefined;
545
+ GaugeChartOptions?: GaugeChartOptions | undefined;
546
+ DataLabels?: DataLabelOptions | undefined;
547
+ TooltipOptions?: TooltipOptions | undefined;
548
+ VisualPalette?: VisualPalette | undefined;
549
+ ColorConfiguration?: GaugeChartColorConfiguration | undefined;
550
+ Interactions?: VisualInteractionOptions | undefined;
547
551
  }
548
552
  export interface GaugeChartArcConditionalFormatting {
549
- ForegroundColor?: ConditionalFormattingColor;
553
+ ForegroundColor?: ConditionalFormattingColor | undefined;
550
554
  }
551
555
  export declare const ConditionalFormattingIconDisplayOption: {
552
556
  readonly ICON_ONLY: "ICON_ONLY";
@@ -554,7 +558,7 @@ export declare const ConditionalFormattingIconDisplayOption: {
554
558
  export type ConditionalFormattingIconDisplayOption =
555
559
  (typeof ConditionalFormattingIconDisplayOption)[keyof typeof ConditionalFormattingIconDisplayOption];
556
560
  export interface ConditionalFormattingIconDisplayConfiguration {
557
- IconDisplayOption?: ConditionalFormattingIconDisplayOption;
561
+ IconDisplayOption?: ConditionalFormattingIconDisplayOption | undefined;
558
562
  }
559
563
  export declare const Icon: {
560
564
  readonly ARROW_DOWN: "ARROW_DOWN";
@@ -586,14 +590,16 @@ export declare const Icon: {
586
590
  };
587
591
  export type Icon = (typeof Icon)[keyof typeof Icon];
588
592
  export interface ConditionalFormattingCustomIconOptions {
589
- Icon?: Icon;
590
- UnicodeIcon?: string;
593
+ Icon?: Icon | undefined;
594
+ UnicodeIcon?: string | undefined;
591
595
  }
592
596
  export interface ConditionalFormattingCustomIconCondition {
593
597
  Expression: string | undefined;
594
598
  IconOptions: ConditionalFormattingCustomIconOptions | undefined;
595
- Color?: string;
596
- DisplayConfiguration?: ConditionalFormattingIconDisplayConfiguration;
599
+ Color?: string | undefined;
600
+ DisplayConfiguration?:
601
+ | ConditionalFormattingIconDisplayConfiguration
602
+ | undefined;
597
603
  }
598
604
  export declare const ConditionalFormattingIconSetType: {
599
605
  readonly BARS: "BARS";
@@ -612,56 +618,60 @@ export type ConditionalFormattingIconSetType =
612
618
  (typeof ConditionalFormattingIconSetType)[keyof typeof ConditionalFormattingIconSetType];
613
619
  export interface ConditionalFormattingIconSet {
614
620
  Expression: string | undefined;
615
- IconSetType?: ConditionalFormattingIconSetType;
621
+ IconSetType?: ConditionalFormattingIconSetType | undefined;
616
622
  }
617
623
  export interface ConditionalFormattingIcon {
618
- IconSet?: ConditionalFormattingIconSet;
619
- CustomCondition?: ConditionalFormattingCustomIconCondition;
624
+ IconSet?: ConditionalFormattingIconSet | undefined;
625
+ CustomCondition?: ConditionalFormattingCustomIconCondition | undefined;
620
626
  }
621
627
  export interface GaugeChartPrimaryValueConditionalFormatting {
622
- TextColor?: ConditionalFormattingColor;
623
- Icon?: ConditionalFormattingIcon;
628
+ TextColor?: ConditionalFormattingColor | undefined;
629
+ Icon?: ConditionalFormattingIcon | undefined;
624
630
  }
625
631
  export interface GaugeChartConditionalFormattingOption {
626
- PrimaryValue?: GaugeChartPrimaryValueConditionalFormatting;
627
- Arc?: GaugeChartArcConditionalFormatting;
632
+ PrimaryValue?: GaugeChartPrimaryValueConditionalFormatting | undefined;
633
+ Arc?: GaugeChartArcConditionalFormatting | undefined;
628
634
  }
629
635
  export interface GaugeChartConditionalFormatting {
630
- ConditionalFormattingOptions?: GaugeChartConditionalFormattingOption[];
636
+ ConditionalFormattingOptions?:
637
+ | GaugeChartConditionalFormattingOption[]
638
+ | undefined;
631
639
  }
632
640
  export interface GaugeChartVisual {
633
641
  VisualId: string | undefined;
634
- Title?: VisualTitleLabelOptions;
635
- Subtitle?: VisualSubtitleLabelOptions;
636
- ChartConfiguration?: GaugeChartConfiguration;
637
- ConditionalFormatting?: GaugeChartConditionalFormatting;
638
- Actions?: VisualCustomAction[];
642
+ Title?: VisualTitleLabelOptions | undefined;
643
+ Subtitle?: VisualSubtitleLabelOptions | undefined;
644
+ ChartConfiguration?: GaugeChartConfiguration | undefined;
645
+ ConditionalFormatting?: GaugeChartConditionalFormatting | undefined;
646
+ Actions?: VisualCustomAction[] | undefined;
639
647
  }
640
648
  export interface GeospatialMapAggregatedFieldWells {
641
- Geospatial?: DimensionField[];
642
- Values?: MeasureField[];
643
- Colors?: DimensionField[];
649
+ Geospatial?: DimensionField[] | undefined;
650
+ Values?: MeasureField[] | undefined;
651
+ Colors?: DimensionField[] | undefined;
644
652
  }
645
653
  export interface GeospatialMapFieldWells {
646
- GeospatialMapAggregatedFieldWells?: GeospatialMapAggregatedFieldWells;
654
+ GeospatialMapAggregatedFieldWells?:
655
+ | GeospatialMapAggregatedFieldWells
656
+ | undefined;
647
657
  }
648
658
  export interface SimpleClusterMarker {
649
- Color?: string;
659
+ Color?: string | undefined;
650
660
  }
651
661
  export interface ClusterMarker {
652
- SimpleClusterMarker?: SimpleClusterMarker;
662
+ SimpleClusterMarker?: SimpleClusterMarker | undefined;
653
663
  }
654
664
  export interface ClusterMarkerConfiguration {
655
- ClusterMarker?: ClusterMarker;
665
+ ClusterMarker?: ClusterMarker | undefined;
656
666
  }
657
667
  export interface GeospatialHeatmapDataColor {
658
668
  Color: string | undefined;
659
669
  }
660
670
  export interface GeospatialHeatmapColorScale {
661
- Colors?: GeospatialHeatmapDataColor[];
671
+ Colors?: GeospatialHeatmapDataColor[] | undefined;
662
672
  }
663
673
  export interface GeospatialHeatmapConfiguration {
664
- HeatmapColor?: GeospatialHeatmapColorScale;
674
+ HeatmapColor?: GeospatialHeatmapColorScale | undefined;
665
675
  }
666
676
  export declare const GeospatialSelectedPointStyle: {
667
677
  readonly CLUSTER: "CLUSTER";
@@ -671,27 +681,27 @@ export declare const GeospatialSelectedPointStyle: {
671
681
  export type GeospatialSelectedPointStyle =
672
682
  (typeof GeospatialSelectedPointStyle)[keyof typeof GeospatialSelectedPointStyle];
673
683
  export interface GeospatialPointStyleOptions {
674
- SelectedPointStyle?: GeospatialSelectedPointStyle;
675
- ClusterMarkerConfiguration?: ClusterMarkerConfiguration;
676
- HeatmapConfiguration?: GeospatialHeatmapConfiguration;
684
+ SelectedPointStyle?: GeospatialSelectedPointStyle | undefined;
685
+ ClusterMarkerConfiguration?: ClusterMarkerConfiguration | undefined;
686
+ HeatmapConfiguration?: GeospatialHeatmapConfiguration | undefined;
677
687
  }
678
688
  export interface GeospatialMapConfiguration {
679
- FieldWells?: GeospatialMapFieldWells;
680
- Legend?: LegendOptions;
681
- Tooltip?: TooltipOptions;
682
- WindowOptions?: GeospatialWindowOptions;
683
- MapStyleOptions?: GeospatialMapStyleOptions;
684
- PointStyleOptions?: GeospatialPointStyleOptions;
685
- VisualPalette?: VisualPalette;
686
- Interactions?: VisualInteractionOptions;
689
+ FieldWells?: GeospatialMapFieldWells | undefined;
690
+ Legend?: LegendOptions | undefined;
691
+ Tooltip?: TooltipOptions | undefined;
692
+ WindowOptions?: GeospatialWindowOptions | undefined;
693
+ MapStyleOptions?: GeospatialMapStyleOptions | undefined;
694
+ PointStyleOptions?: GeospatialPointStyleOptions | undefined;
695
+ VisualPalette?: VisualPalette | undefined;
696
+ Interactions?: VisualInteractionOptions | undefined;
687
697
  }
688
698
  export interface GeospatialMapVisual {
689
699
  VisualId: string | undefined;
690
- Title?: VisualTitleLabelOptions;
691
- Subtitle?: VisualSubtitleLabelOptions;
692
- ChartConfiguration?: GeospatialMapConfiguration;
693
- ColumnHierarchies?: ColumnHierarchy[];
694
- Actions?: VisualCustomAction[];
700
+ Title?: VisualTitleLabelOptions | undefined;
701
+ Subtitle?: VisualSubtitleLabelOptions | undefined;
702
+ ChartConfiguration?: GeospatialMapConfiguration | undefined;
703
+ ColumnHierarchies?: ColumnHierarchy[] | undefined;
704
+ Actions?: VisualCustomAction[] | undefined;
695
705
  }
696
706
  export declare const ColorFillType: {
697
707
  readonly DISCRETE: "DISCRETE";
@@ -699,53 +709,53 @@ export declare const ColorFillType: {
699
709
  };
700
710
  export type ColorFillType = (typeof ColorFillType)[keyof typeof ColorFillType];
701
711
  export interface DataColor {
702
- Color?: string;
703
- DataValue?: number;
712
+ Color?: string | undefined;
713
+ DataValue?: number | undefined;
704
714
  }
705
715
  export interface ColorScale {
706
716
  Colors: DataColor[] | undefined;
707
717
  ColorFillType: ColorFillType | undefined;
708
- NullValueColor?: DataColor;
718
+ NullValueColor?: DataColor | undefined;
709
719
  }
710
720
  export interface HeatMapAggregatedFieldWells {
711
- Rows?: DimensionField[];
712
- Columns?: DimensionField[];
713
- Values?: MeasureField[];
721
+ Rows?: DimensionField[] | undefined;
722
+ Columns?: DimensionField[] | undefined;
723
+ Values?: MeasureField[] | undefined;
714
724
  }
715
725
  export interface HeatMapFieldWells {
716
- HeatMapAggregatedFieldWells?: HeatMapAggregatedFieldWells;
726
+ HeatMapAggregatedFieldWells?: HeatMapAggregatedFieldWells | undefined;
717
727
  }
718
728
  export interface HeatMapSortConfiguration {
719
- HeatMapRowSort?: FieldSortOptions[];
720
- HeatMapColumnSort?: FieldSortOptions[];
721
- HeatMapRowItemsLimitConfiguration?: ItemsLimitConfiguration;
722
- HeatMapColumnItemsLimitConfiguration?: ItemsLimitConfiguration;
729
+ HeatMapRowSort?: FieldSortOptions[] | undefined;
730
+ HeatMapColumnSort?: FieldSortOptions[] | undefined;
731
+ HeatMapRowItemsLimitConfiguration?: ItemsLimitConfiguration | undefined;
732
+ HeatMapColumnItemsLimitConfiguration?: ItemsLimitConfiguration | undefined;
723
733
  }
724
734
  export interface HeatMapConfiguration {
725
- FieldWells?: HeatMapFieldWells;
726
- SortConfiguration?: HeatMapSortConfiguration;
727
- RowLabelOptions?: ChartAxisLabelOptions;
728
- ColumnLabelOptions?: ChartAxisLabelOptions;
729
- ColorScale?: ColorScale;
730
- Legend?: LegendOptions;
731
- DataLabels?: DataLabelOptions;
732
- Tooltip?: TooltipOptions;
733
- Interactions?: VisualInteractionOptions;
735
+ FieldWells?: HeatMapFieldWells | undefined;
736
+ SortConfiguration?: HeatMapSortConfiguration | undefined;
737
+ RowLabelOptions?: ChartAxisLabelOptions | undefined;
738
+ ColumnLabelOptions?: ChartAxisLabelOptions | undefined;
739
+ ColorScale?: ColorScale | undefined;
740
+ Legend?: LegendOptions | undefined;
741
+ DataLabels?: DataLabelOptions | undefined;
742
+ Tooltip?: TooltipOptions | undefined;
743
+ Interactions?: VisualInteractionOptions | undefined;
734
744
  }
735
745
  export interface HeatMapVisual {
736
746
  VisualId: string | undefined;
737
- Title?: VisualTitleLabelOptions;
738
- Subtitle?: VisualSubtitleLabelOptions;
739
- ChartConfiguration?: HeatMapConfiguration;
740
- ColumnHierarchies?: ColumnHierarchy[];
741
- Actions?: VisualCustomAction[];
747
+ Title?: VisualTitleLabelOptions | undefined;
748
+ Subtitle?: VisualSubtitleLabelOptions | undefined;
749
+ ChartConfiguration?: HeatMapConfiguration | undefined;
750
+ ColumnHierarchies?: ColumnHierarchy[] | undefined;
751
+ Actions?: VisualCustomAction[] | undefined;
742
752
  }
743
753
  export interface BinCountOptions {
744
- Value?: number;
754
+ Value?: number | undefined;
745
755
  }
746
756
  export interface BinWidthOptions {
747
- Value?: number;
748
- BinCountLimit?: number;
757
+ Value?: number | undefined;
758
+ BinCountLimit?: number | undefined;
749
759
  }
750
760
  export declare const HistogramBinType: {
751
761
  readonly BIN_COUNT: "BIN_COUNT";
@@ -754,34 +764,34 @@ export declare const HistogramBinType: {
754
764
  export type HistogramBinType =
755
765
  (typeof HistogramBinType)[keyof typeof HistogramBinType];
756
766
  export interface HistogramBinOptions {
757
- SelectedBinType?: HistogramBinType;
758
- BinCount?: BinCountOptions;
759
- BinWidth?: BinWidthOptions;
760
- StartValue?: number;
767
+ SelectedBinType?: HistogramBinType | undefined;
768
+ BinCount?: BinCountOptions | undefined;
769
+ BinWidth?: BinWidthOptions | undefined;
770
+ StartValue?: number | undefined;
761
771
  }
762
772
  export interface HistogramAggregatedFieldWells {
763
- Values?: MeasureField[];
773
+ Values?: MeasureField[] | undefined;
764
774
  }
765
775
  export interface HistogramFieldWells {
766
- HistogramAggregatedFieldWells?: HistogramAggregatedFieldWells;
776
+ HistogramAggregatedFieldWells?: HistogramAggregatedFieldWells | undefined;
767
777
  }
768
778
  export interface HistogramConfiguration {
769
- FieldWells?: HistogramFieldWells;
770
- XAxisDisplayOptions?: AxisDisplayOptions;
771
- XAxisLabelOptions?: ChartAxisLabelOptions;
772
- YAxisDisplayOptions?: AxisDisplayOptions;
773
- BinOptions?: HistogramBinOptions;
774
- DataLabels?: DataLabelOptions;
775
- Tooltip?: TooltipOptions;
776
- VisualPalette?: VisualPalette;
777
- Interactions?: VisualInteractionOptions;
779
+ FieldWells?: HistogramFieldWells | undefined;
780
+ XAxisDisplayOptions?: AxisDisplayOptions | undefined;
781
+ XAxisLabelOptions?: ChartAxisLabelOptions | undefined;
782
+ YAxisDisplayOptions?: AxisDisplayOptions | undefined;
783
+ BinOptions?: HistogramBinOptions | undefined;
784
+ DataLabels?: DataLabelOptions | undefined;
785
+ Tooltip?: TooltipOptions | undefined;
786
+ VisualPalette?: VisualPalette | undefined;
787
+ Interactions?: VisualInteractionOptions | undefined;
778
788
  }
779
789
  export interface HistogramVisual {
780
790
  VisualId: string | undefined;
781
- Title?: VisualTitleLabelOptions;
782
- Subtitle?: VisualSubtitleLabelOptions;
783
- ChartConfiguration?: HistogramConfiguration;
784
- Actions?: VisualCustomAction[];
791
+ Title?: VisualTitleLabelOptions | undefined;
792
+ Subtitle?: VisualSubtitleLabelOptions | undefined;
793
+ ChartConfiguration?: HistogramConfiguration | undefined;
794
+ Actions?: VisualCustomAction[] | undefined;
785
795
  }
786
796
  export declare const ForecastComputationSeasonality: {
787
797
  readonly AUTOMATIC: "AUTOMATIC";
@@ -791,23 +801,23 @@ export type ForecastComputationSeasonality =
791
801
  (typeof ForecastComputationSeasonality)[keyof typeof ForecastComputationSeasonality];
792
802
  export interface ForecastComputation {
793
803
  ComputationId: string | undefined;
794
- Name?: string;
795
- Time?: DimensionField;
796
- Value?: MeasureField;
797
- PeriodsForward?: number;
798
- PeriodsBackward?: number;
799
- UpperBoundary?: number;
800
- LowerBoundary?: number;
801
- PredictionInterval?: number;
802
- Seasonality?: ForecastComputationSeasonality;
803
- CustomSeasonalityValue?: number;
804
+ Name?: string | undefined;
805
+ Time?: DimensionField | undefined;
806
+ Value?: MeasureField | undefined;
807
+ PeriodsForward?: number | undefined;
808
+ PeriodsBackward?: number | undefined;
809
+ UpperBoundary?: number | undefined;
810
+ LowerBoundary?: number | undefined;
811
+ PredictionInterval?: number | undefined;
812
+ Seasonality?: ForecastComputationSeasonality | undefined;
813
+ CustomSeasonalityValue?: number | undefined;
804
814
  }
805
815
  export interface GrowthRateComputation {
806
816
  ComputationId: string | undefined;
807
- Name?: string;
808
- Time?: DimensionField;
809
- Value?: MeasureField;
810
- PeriodSize?: number;
817
+ Name?: string | undefined;
818
+ Time?: DimensionField | undefined;
819
+ Value?: MeasureField | undefined;
820
+ PeriodSize?: number | undefined;
811
821
  }
812
822
  export declare const MaximumMinimumComputationType: {
813
823
  readonly MAXIMUM: "MAXIMUM";
@@ -817,30 +827,30 @@ export type MaximumMinimumComputationType =
817
827
  (typeof MaximumMinimumComputationType)[keyof typeof MaximumMinimumComputationType];
818
828
  export interface MaximumMinimumComputation {
819
829
  ComputationId: string | undefined;
820
- Name?: string;
821
- Time?: DimensionField;
822
- Value?: MeasureField;
830
+ Name?: string | undefined;
831
+ Time?: DimensionField | undefined;
832
+ Value?: MeasureField | undefined;
823
833
  Type: MaximumMinimumComputationType | undefined;
824
834
  }
825
835
  export interface MetricComparisonComputation {
826
836
  ComputationId: string | undefined;
827
- Name?: string;
828
- Time?: DimensionField;
829
- FromValue?: MeasureField;
830
- TargetValue?: MeasureField;
837
+ Name?: string | undefined;
838
+ Time?: DimensionField | undefined;
839
+ FromValue?: MeasureField | undefined;
840
+ TargetValue?: MeasureField | undefined;
831
841
  }
832
842
  export interface PeriodOverPeriodComputation {
833
843
  ComputationId: string | undefined;
834
- Name?: string;
835
- Time?: DimensionField;
836
- Value?: MeasureField;
844
+ Name?: string | undefined;
845
+ Time?: DimensionField | undefined;
846
+ Value?: MeasureField | undefined;
837
847
  }
838
848
  export interface PeriodToDateComputation {
839
849
  ComputationId: string | undefined;
840
- Name?: string;
841
- Time?: DimensionField;
842
- Value?: MeasureField;
843
- PeriodTimeGranularity?: TimeGranularity;
850
+ Name?: string | undefined;
851
+ Time?: DimensionField | undefined;
852
+ Value?: MeasureField | undefined;
853
+ PeriodTimeGranularity?: TimeGranularity | undefined;
844
854
  }
845
855
  export declare const TopBottomSortOrder: {
846
856
  readonly ABSOLUTE_DIFFERENCE: "ABSOLUTE_DIFFERENCE";
@@ -856,70 +866,70 @@ export type TopBottomComputationType =
856
866
  (typeof TopBottomComputationType)[keyof typeof TopBottomComputationType];
857
867
  export interface TopBottomMoversComputation {
858
868
  ComputationId: string | undefined;
859
- Name?: string;
860
- Time?: DimensionField;
861
- Category?: DimensionField;
862
- Value?: MeasureField;
863
- MoverSize?: number;
864
- SortOrder?: TopBottomSortOrder;
869
+ Name?: string | undefined;
870
+ Time?: DimensionField | undefined;
871
+ Category?: DimensionField | undefined;
872
+ Value?: MeasureField | undefined;
873
+ MoverSize?: number | undefined;
874
+ SortOrder?: TopBottomSortOrder | undefined;
865
875
  Type: TopBottomComputationType | undefined;
866
876
  }
867
877
  export interface TopBottomRankedComputation {
868
878
  ComputationId: string | undefined;
869
- Name?: string;
870
- Category?: DimensionField;
871
- Value?: MeasureField;
872
- ResultSize?: number;
879
+ Name?: string | undefined;
880
+ Category?: DimensionField | undefined;
881
+ Value?: MeasureField | undefined;
882
+ ResultSize?: number | undefined;
873
883
  Type: TopBottomComputationType | undefined;
874
884
  }
875
885
  export interface TotalAggregationComputation {
876
886
  ComputationId: string | undefined;
877
- Name?: string;
878
- Value?: MeasureField;
887
+ Name?: string | undefined;
888
+ Value?: MeasureField | undefined;
879
889
  }
880
890
  export interface UniqueValuesComputation {
881
891
  ComputationId: string | undefined;
882
- Name?: string;
883
- Category?: DimensionField;
892
+ Name?: string | undefined;
893
+ Category?: DimensionField | undefined;
884
894
  }
885
895
  export interface Computation {
886
- TopBottomRanked?: TopBottomRankedComputation;
887
- TopBottomMovers?: TopBottomMoversComputation;
888
- TotalAggregation?: TotalAggregationComputation;
889
- MaximumMinimum?: MaximumMinimumComputation;
890
- MetricComparison?: MetricComparisonComputation;
891
- PeriodOverPeriod?: PeriodOverPeriodComputation;
892
- PeriodToDate?: PeriodToDateComputation;
893
- GrowthRate?: GrowthRateComputation;
894
- UniqueValues?: UniqueValuesComputation;
895
- Forecast?: ForecastComputation;
896
+ TopBottomRanked?: TopBottomRankedComputation | undefined;
897
+ TopBottomMovers?: TopBottomMoversComputation | undefined;
898
+ TotalAggregation?: TotalAggregationComputation | undefined;
899
+ MaximumMinimum?: MaximumMinimumComputation | undefined;
900
+ MetricComparison?: MetricComparisonComputation | undefined;
901
+ PeriodOverPeriod?: PeriodOverPeriodComputation | undefined;
902
+ PeriodToDate?: PeriodToDateComputation | undefined;
903
+ GrowthRate?: GrowthRateComputation | undefined;
904
+ UniqueValues?: UniqueValuesComputation | undefined;
905
+ Forecast?: ForecastComputation | undefined;
896
906
  }
897
907
  export interface CustomNarrativeOptions {
898
908
  Narrative: string | undefined;
899
909
  }
900
910
  export interface InsightConfiguration {
901
- Computations?: Computation[];
902
- CustomNarrative?: CustomNarrativeOptions;
903
- Interactions?: VisualInteractionOptions;
911
+ Computations?: Computation[] | undefined;
912
+ CustomNarrative?: CustomNarrativeOptions | undefined;
913
+ Interactions?: VisualInteractionOptions | undefined;
904
914
  }
905
915
  export interface InsightVisual {
906
916
  VisualId: string | undefined;
907
- Title?: VisualTitleLabelOptions;
908
- Subtitle?: VisualSubtitleLabelOptions;
909
- InsightConfiguration?: InsightConfiguration;
910
- Actions?: VisualCustomAction[];
917
+ Title?: VisualTitleLabelOptions | undefined;
918
+ Subtitle?: VisualSubtitleLabelOptions | undefined;
919
+ InsightConfiguration?: InsightConfiguration | undefined;
920
+ Actions?: VisualCustomAction[] | undefined;
911
921
  DataSetIdentifier: string | undefined;
912
922
  }
913
923
  export interface KPIFieldWells {
914
- Values?: MeasureField[];
915
- TargetValues?: MeasureField[];
916
- TrendGroups?: DimensionField[];
924
+ Values?: MeasureField[] | undefined;
925
+ TargetValues?: MeasureField[] | undefined;
926
+ TrendGroups?: DimensionField[] | undefined;
917
927
  }
918
928
  export interface ProgressBarOptions {
919
- Visibility?: Visibility;
929
+ Visibility?: Visibility | undefined;
920
930
  }
921
931
  export interface SecondaryValueOptions {
922
- Visibility?: Visibility;
932
+ Visibility?: Visibility | undefined;
923
933
  }
924
934
  export declare const KPISparklineType: {
925
935
  readonly AREA: "AREA";
@@ -928,13 +938,13 @@ export declare const KPISparklineType: {
928
938
  export type KPISparklineType =
929
939
  (typeof KPISparklineType)[keyof typeof KPISparklineType];
930
940
  export interface KPISparklineOptions {
931
- Visibility?: Visibility;
941
+ Visibility?: Visibility | undefined;
932
942
  Type: KPISparklineType | undefined;
933
- Color?: string;
934
- TooltipVisibility?: Visibility;
943
+ Color?: string | undefined;
944
+ TooltipVisibility?: Visibility | undefined;
935
945
  }
936
946
  export interface TrendArrowOptions {
937
- Visibility?: Visibility;
947
+ Visibility?: Visibility | undefined;
938
948
  }
939
949
  export declare const KPIVisualStandardLayoutType: {
940
950
  readonly CLASSIC: "CLASSIC";
@@ -946,60 +956,60 @@ export interface KPIVisualStandardLayout {
946
956
  Type: KPIVisualStandardLayoutType | undefined;
947
957
  }
948
958
  export interface KPIVisualLayoutOptions {
949
- StandardLayout?: KPIVisualStandardLayout;
959
+ StandardLayout?: KPIVisualStandardLayout | undefined;
950
960
  }
951
961
  export interface KPIOptions {
952
- ProgressBar?: ProgressBarOptions;
953
- TrendArrows?: TrendArrowOptions;
954
- SecondaryValue?: SecondaryValueOptions;
955
- Comparison?: ComparisonConfiguration;
956
- PrimaryValueDisplayType?: PrimaryValueDisplayType;
957
- PrimaryValueFontConfiguration?: FontConfiguration;
958
- SecondaryValueFontConfiguration?: FontConfiguration;
959
- Sparkline?: KPISparklineOptions;
960
- VisualLayoutOptions?: KPIVisualLayoutOptions;
962
+ ProgressBar?: ProgressBarOptions | undefined;
963
+ TrendArrows?: TrendArrowOptions | undefined;
964
+ SecondaryValue?: SecondaryValueOptions | undefined;
965
+ Comparison?: ComparisonConfiguration | undefined;
966
+ PrimaryValueDisplayType?: PrimaryValueDisplayType | undefined;
967
+ PrimaryValueFontConfiguration?: FontConfiguration | undefined;
968
+ SecondaryValueFontConfiguration?: FontConfiguration | undefined;
969
+ Sparkline?: KPISparklineOptions | undefined;
970
+ VisualLayoutOptions?: KPIVisualLayoutOptions | undefined;
961
971
  }
962
972
  export interface KPISortConfiguration {
963
- TrendGroupSort?: FieldSortOptions[];
973
+ TrendGroupSort?: FieldSortOptions[] | undefined;
964
974
  }
965
975
  export interface KPIConfiguration {
966
- FieldWells?: KPIFieldWells;
967
- SortConfiguration?: KPISortConfiguration;
968
- KPIOptions?: KPIOptions;
969
- Interactions?: VisualInteractionOptions;
976
+ FieldWells?: KPIFieldWells | undefined;
977
+ SortConfiguration?: KPISortConfiguration | undefined;
978
+ KPIOptions?: KPIOptions | undefined;
979
+ Interactions?: VisualInteractionOptions | undefined;
970
980
  }
971
981
  export interface KPIActualValueConditionalFormatting {
972
- TextColor?: ConditionalFormattingColor;
973
- Icon?: ConditionalFormattingIcon;
982
+ TextColor?: ConditionalFormattingColor | undefined;
983
+ Icon?: ConditionalFormattingIcon | undefined;
974
984
  }
975
985
  export interface KPIComparisonValueConditionalFormatting {
976
- TextColor?: ConditionalFormattingColor;
977
- Icon?: ConditionalFormattingIcon;
986
+ TextColor?: ConditionalFormattingColor | undefined;
987
+ Icon?: ConditionalFormattingIcon | undefined;
978
988
  }
979
989
  export interface KPIPrimaryValueConditionalFormatting {
980
- TextColor?: ConditionalFormattingColor;
981
- Icon?: ConditionalFormattingIcon;
990
+ TextColor?: ConditionalFormattingColor | undefined;
991
+ Icon?: ConditionalFormattingIcon | undefined;
982
992
  }
983
993
  export interface KPIProgressBarConditionalFormatting {
984
- ForegroundColor?: ConditionalFormattingColor;
994
+ ForegroundColor?: ConditionalFormattingColor | undefined;
985
995
  }
986
996
  export interface KPIConditionalFormattingOption {
987
- PrimaryValue?: KPIPrimaryValueConditionalFormatting;
988
- ProgressBar?: KPIProgressBarConditionalFormatting;
989
- ActualValue?: KPIActualValueConditionalFormatting;
990
- ComparisonValue?: KPIComparisonValueConditionalFormatting;
997
+ PrimaryValue?: KPIPrimaryValueConditionalFormatting | undefined;
998
+ ProgressBar?: KPIProgressBarConditionalFormatting | undefined;
999
+ ActualValue?: KPIActualValueConditionalFormatting | undefined;
1000
+ ComparisonValue?: KPIComparisonValueConditionalFormatting | undefined;
991
1001
  }
992
1002
  export interface KPIConditionalFormatting {
993
- ConditionalFormattingOptions?: KPIConditionalFormattingOption[];
1003
+ ConditionalFormattingOptions?: KPIConditionalFormattingOption[] | undefined;
994
1004
  }
995
1005
  export interface KPIVisual {
996
1006
  VisualId: string | undefined;
997
- Title?: VisualTitleLabelOptions;
998
- Subtitle?: VisualSubtitleLabelOptions;
999
- ChartConfiguration?: KPIConfiguration;
1000
- ConditionalFormatting?: KPIConditionalFormatting;
1001
- Actions?: VisualCustomAction[];
1002
- ColumnHierarchies?: ColumnHierarchy[];
1007
+ Title?: VisualTitleLabelOptions | undefined;
1008
+ Subtitle?: VisualSubtitleLabelOptions | undefined;
1009
+ ChartConfiguration?: KPIConfiguration | undefined;
1010
+ ConditionalFormatting?: KPIConditionalFormatting | undefined;
1011
+ Actions?: VisualCustomAction[] | undefined;
1012
+ ColumnHierarchies?: ColumnHierarchy[] | undefined;
1003
1013
  }
1004
1014
  export declare const LineInterpolation: {
1005
1015
  readonly LINEAR: "LINEAR";
@@ -1016,10 +1026,10 @@ export declare const LineChartLineStyle: {
1016
1026
  export type LineChartLineStyle =
1017
1027
  (typeof LineChartLineStyle)[keyof typeof LineChartLineStyle];
1018
1028
  export interface LineChartLineStyleSettings {
1019
- LineVisibility?: Visibility;
1020
- LineInterpolation?: LineInterpolation;
1021
- LineStyle?: LineChartLineStyle;
1022
- LineWidth?: string;
1029
+ LineVisibility?: Visibility | undefined;
1030
+ LineInterpolation?: LineInterpolation | undefined;
1031
+ LineStyle?: LineChartLineStyle | undefined;
1032
+ LineWidth?: string | undefined;
1023
1033
  }
1024
1034
  export declare const LineChartMarkerShape: {
1025
1035
  readonly CIRCLE: "CIRCLE";
@@ -1031,32 +1041,32 @@ export declare const LineChartMarkerShape: {
1031
1041
  export type LineChartMarkerShape =
1032
1042
  (typeof LineChartMarkerShape)[keyof typeof LineChartMarkerShape];
1033
1043
  export interface LineChartMarkerStyleSettings {
1034
- MarkerVisibility?: Visibility;
1035
- MarkerShape?: LineChartMarkerShape;
1036
- MarkerSize?: string;
1037
- MarkerColor?: string;
1044
+ MarkerVisibility?: Visibility | undefined;
1045
+ MarkerShape?: LineChartMarkerShape | undefined;
1046
+ MarkerSize?: string | undefined;
1047
+ MarkerColor?: string | undefined;
1038
1048
  }
1039
1049
  export interface LineChartDefaultSeriesSettings {
1040
- AxisBinding?: AxisBinding;
1041
- LineStyleSettings?: LineChartLineStyleSettings;
1042
- MarkerStyleSettings?: LineChartMarkerStyleSettings;
1050
+ AxisBinding?: AxisBinding | undefined;
1051
+ LineStyleSettings?: LineChartLineStyleSettings | undefined;
1052
+ MarkerStyleSettings?: LineChartMarkerStyleSettings | undefined;
1043
1053
  }
1044
1054
  export interface LineChartAggregatedFieldWells {
1045
- Category?: DimensionField[];
1046
- Values?: MeasureField[];
1047
- Colors?: DimensionField[];
1048
- SmallMultiples?: DimensionField[];
1055
+ Category?: DimensionField[] | undefined;
1056
+ Values?: MeasureField[] | undefined;
1057
+ Colors?: DimensionField[] | undefined;
1058
+ SmallMultiples?: DimensionField[] | undefined;
1049
1059
  }
1050
1060
  export interface LineChartFieldWells {
1051
- LineChartAggregatedFieldWells?: LineChartAggregatedFieldWells;
1061
+ LineChartAggregatedFieldWells?: LineChartAggregatedFieldWells | undefined;
1052
1062
  }
1053
1063
  export interface TimeBasedForecastProperties {
1054
- PeriodsForward?: number;
1055
- PeriodsBackward?: number;
1056
- UpperBoundary?: number;
1057
- LowerBoundary?: number;
1058
- PredictionInterval?: number;
1059
- Seasonality?: number;
1064
+ PeriodsForward?: number | undefined;
1065
+ PeriodsBackward?: number | undefined;
1066
+ UpperBoundary?: number | undefined;
1067
+ LowerBoundary?: number | undefined;
1068
+ PredictionInterval?: number | undefined;
1069
+ Seasonality?: number | undefined;
1060
1070
  }
1061
1071
  export interface WhatIfPointScenario {
1062
1072
  Date: Date | undefined;
@@ -1068,12 +1078,12 @@ export interface WhatIfRangeScenario {
1068
1078
  Value: number | undefined;
1069
1079
  }
1070
1080
  export interface ForecastScenario {
1071
- WhatIfPointScenario?: WhatIfPointScenario;
1072
- WhatIfRangeScenario?: WhatIfRangeScenario;
1081
+ WhatIfPointScenario?: WhatIfPointScenario | undefined;
1082
+ WhatIfRangeScenario?: WhatIfRangeScenario | undefined;
1073
1083
  }
1074
1084
  export interface ForecastConfiguration {
1075
- ForecastProperties?: TimeBasedForecastProperties;
1076
- Scenario?: ForecastScenario;
1085
+ ForecastProperties?: TimeBasedForecastProperties | undefined;
1086
+ Scenario?: ForecastScenario | undefined;
1077
1087
  }
1078
1088
  export declare const MissingDataTreatmentOption: {
1079
1089
  readonly INTERPOLATE: "INTERPOLATE";
@@ -1083,37 +1093,37 @@ export declare const MissingDataTreatmentOption: {
1083
1093
  export type MissingDataTreatmentOption =
1084
1094
  (typeof MissingDataTreatmentOption)[keyof typeof MissingDataTreatmentOption];
1085
1095
  export interface MissingDataConfiguration {
1086
- TreatmentOption?: MissingDataTreatmentOption;
1096
+ TreatmentOption?: MissingDataTreatmentOption | undefined;
1087
1097
  }
1088
1098
  export interface LineSeriesAxisDisplayOptions {
1089
- AxisOptions?: AxisDisplayOptions;
1090
- MissingDataConfigurations?: MissingDataConfiguration[];
1099
+ AxisOptions?: AxisDisplayOptions | undefined;
1100
+ MissingDataConfigurations?: MissingDataConfiguration[] | undefined;
1091
1101
  }
1092
1102
  export interface LineChartSeriesSettings {
1093
- LineStyleSettings?: LineChartLineStyleSettings;
1094
- MarkerStyleSettings?: LineChartMarkerStyleSettings;
1103
+ LineStyleSettings?: LineChartLineStyleSettings | undefined;
1104
+ MarkerStyleSettings?: LineChartMarkerStyleSettings | undefined;
1095
1105
  }
1096
1106
  export interface DataFieldSeriesItem {
1097
1107
  FieldId: string | undefined;
1098
- FieldValue?: string;
1108
+ FieldValue?: string | undefined;
1099
1109
  AxisBinding: AxisBinding | undefined;
1100
- Settings?: LineChartSeriesSettings;
1110
+ Settings?: LineChartSeriesSettings | undefined;
1101
1111
  }
1102
1112
  export interface FieldSeriesItem {
1103
1113
  FieldId: string | undefined;
1104
1114
  AxisBinding: AxisBinding | undefined;
1105
- Settings?: LineChartSeriesSettings;
1115
+ Settings?: LineChartSeriesSettings | undefined;
1106
1116
  }
1107
1117
  export interface SeriesItem {
1108
- FieldSeriesItem?: FieldSeriesItem;
1109
- DataFieldSeriesItem?: DataFieldSeriesItem;
1118
+ FieldSeriesItem?: FieldSeriesItem | undefined;
1119
+ DataFieldSeriesItem?: DataFieldSeriesItem | undefined;
1110
1120
  }
1111
1121
  export interface LineChartSortConfiguration {
1112
- CategorySort?: FieldSortOptions[];
1113
- CategoryItemsLimitConfiguration?: ItemsLimitConfiguration;
1114
- ColorItemsLimitConfiguration?: ItemsLimitConfiguration;
1115
- SmallMultiplesSort?: FieldSortOptions[];
1116
- SmallMultiplesLimitConfiguration?: ItemsLimitConfiguration;
1122
+ CategorySort?: FieldSortOptions[] | undefined;
1123
+ CategoryItemsLimitConfiguration?: ItemsLimitConfiguration | undefined;
1124
+ ColorItemsLimitConfiguration?: ItemsLimitConfiguration | undefined;
1125
+ SmallMultiplesSort?: FieldSortOptions[] | undefined;
1126
+ SmallMultiplesLimitConfiguration?: ItemsLimitConfiguration | undefined;
1117
1127
  }
1118
1128
  export declare const LineChartType: {
1119
1129
  readonly AREA: "AREA";
@@ -1122,35 +1132,35 @@ export declare const LineChartType: {
1122
1132
  };
1123
1133
  export type LineChartType = (typeof LineChartType)[keyof typeof LineChartType];
1124
1134
  export interface LineChartConfiguration {
1125
- FieldWells?: LineChartFieldWells;
1126
- SortConfiguration?: LineChartSortConfiguration;
1127
- ForecastConfigurations?: ForecastConfiguration[];
1128
- Type?: LineChartType;
1129
- SmallMultiplesOptions?: SmallMultiplesOptions;
1130
- XAxisDisplayOptions?: AxisDisplayOptions;
1131
- XAxisLabelOptions?: ChartAxisLabelOptions;
1132
- PrimaryYAxisDisplayOptions?: LineSeriesAxisDisplayOptions;
1133
- PrimaryYAxisLabelOptions?: ChartAxisLabelOptions;
1134
- SecondaryYAxisDisplayOptions?: LineSeriesAxisDisplayOptions;
1135
- SecondaryYAxisLabelOptions?: ChartAxisLabelOptions;
1136
- SingleAxisOptions?: SingleAxisOptions;
1137
- DefaultSeriesSettings?: LineChartDefaultSeriesSettings;
1138
- Series?: SeriesItem[];
1139
- Legend?: LegendOptions;
1140
- DataLabels?: DataLabelOptions;
1141
- ReferenceLines?: ReferenceLine[];
1142
- Tooltip?: TooltipOptions;
1143
- ContributionAnalysisDefaults?: ContributionAnalysisDefault[];
1144
- VisualPalette?: VisualPalette;
1145
- Interactions?: VisualInteractionOptions;
1135
+ FieldWells?: LineChartFieldWells | undefined;
1136
+ SortConfiguration?: LineChartSortConfiguration | undefined;
1137
+ ForecastConfigurations?: ForecastConfiguration[] | undefined;
1138
+ Type?: LineChartType | undefined;
1139
+ SmallMultiplesOptions?: SmallMultiplesOptions | undefined;
1140
+ XAxisDisplayOptions?: AxisDisplayOptions | undefined;
1141
+ XAxisLabelOptions?: ChartAxisLabelOptions | undefined;
1142
+ PrimaryYAxisDisplayOptions?: LineSeriesAxisDisplayOptions | undefined;
1143
+ PrimaryYAxisLabelOptions?: ChartAxisLabelOptions | undefined;
1144
+ SecondaryYAxisDisplayOptions?: LineSeriesAxisDisplayOptions | undefined;
1145
+ SecondaryYAxisLabelOptions?: ChartAxisLabelOptions | undefined;
1146
+ SingleAxisOptions?: SingleAxisOptions | undefined;
1147
+ DefaultSeriesSettings?: LineChartDefaultSeriesSettings | undefined;
1148
+ Series?: SeriesItem[] | undefined;
1149
+ Legend?: LegendOptions | undefined;
1150
+ DataLabels?: DataLabelOptions | undefined;
1151
+ ReferenceLines?: ReferenceLine[] | undefined;
1152
+ Tooltip?: TooltipOptions | undefined;
1153
+ ContributionAnalysisDefaults?: ContributionAnalysisDefault[] | undefined;
1154
+ VisualPalette?: VisualPalette | undefined;
1155
+ Interactions?: VisualInteractionOptions | undefined;
1146
1156
  }
1147
1157
  export interface LineChartVisual {
1148
1158
  VisualId: string | undefined;
1149
- Title?: VisualTitleLabelOptions;
1150
- Subtitle?: VisualSubtitleLabelOptions;
1151
- ChartConfiguration?: LineChartConfiguration;
1152
- Actions?: VisualCustomAction[];
1153
- ColumnHierarchies?: ColumnHierarchy[];
1159
+ Title?: VisualTitleLabelOptions | undefined;
1160
+ Subtitle?: VisualSubtitleLabelOptions | undefined;
1161
+ ChartConfiguration?: LineChartConfiguration | undefined;
1162
+ Actions?: VisualCustomAction[] | undefined;
1163
+ ColumnHierarchies?: ColumnHierarchy[] | undefined;
1154
1164
  }
1155
1165
  export declare const ArcThickness: {
1156
1166
  readonly LARGE: "LARGE";
@@ -1160,50 +1170,50 @@ export declare const ArcThickness: {
1160
1170
  };
1161
1171
  export type ArcThickness = (typeof ArcThickness)[keyof typeof ArcThickness];
1162
1172
  export interface ArcOptions {
1163
- ArcThickness?: ArcThickness;
1173
+ ArcThickness?: ArcThickness | undefined;
1164
1174
  }
1165
1175
  export interface DonutCenterOptions {
1166
- LabelVisibility?: Visibility;
1176
+ LabelVisibility?: Visibility | undefined;
1167
1177
  }
1168
1178
  export interface DonutOptions {
1169
- ArcOptions?: ArcOptions;
1170
- DonutCenterOptions?: DonutCenterOptions;
1179
+ ArcOptions?: ArcOptions | undefined;
1180
+ DonutCenterOptions?: DonutCenterOptions | undefined;
1171
1181
  }
1172
1182
  export interface PieChartAggregatedFieldWells {
1173
- Category?: DimensionField[];
1174
- Values?: MeasureField[];
1175
- SmallMultiples?: DimensionField[];
1183
+ Category?: DimensionField[] | undefined;
1184
+ Values?: MeasureField[] | undefined;
1185
+ SmallMultiples?: DimensionField[] | undefined;
1176
1186
  }
1177
1187
  export interface PieChartFieldWells {
1178
- PieChartAggregatedFieldWells?: PieChartAggregatedFieldWells;
1188
+ PieChartAggregatedFieldWells?: PieChartAggregatedFieldWells | undefined;
1179
1189
  }
1180
1190
  export interface PieChartSortConfiguration {
1181
- CategorySort?: FieldSortOptions[];
1182
- CategoryItemsLimit?: ItemsLimitConfiguration;
1183
- SmallMultiplesSort?: FieldSortOptions[];
1184
- SmallMultiplesLimitConfiguration?: ItemsLimitConfiguration;
1191
+ CategorySort?: FieldSortOptions[] | undefined;
1192
+ CategoryItemsLimit?: ItemsLimitConfiguration | undefined;
1193
+ SmallMultiplesSort?: FieldSortOptions[] | undefined;
1194
+ SmallMultiplesLimitConfiguration?: ItemsLimitConfiguration | undefined;
1185
1195
  }
1186
1196
  export interface PieChartConfiguration {
1187
- FieldWells?: PieChartFieldWells;
1188
- SortConfiguration?: PieChartSortConfiguration;
1189
- DonutOptions?: DonutOptions;
1190
- SmallMultiplesOptions?: SmallMultiplesOptions;
1191
- CategoryLabelOptions?: ChartAxisLabelOptions;
1192
- ValueLabelOptions?: ChartAxisLabelOptions;
1193
- Legend?: LegendOptions;
1194
- DataLabels?: DataLabelOptions;
1195
- Tooltip?: TooltipOptions;
1196
- VisualPalette?: VisualPalette;
1197
- ContributionAnalysisDefaults?: ContributionAnalysisDefault[];
1198
- Interactions?: VisualInteractionOptions;
1197
+ FieldWells?: PieChartFieldWells | undefined;
1198
+ SortConfiguration?: PieChartSortConfiguration | undefined;
1199
+ DonutOptions?: DonutOptions | undefined;
1200
+ SmallMultiplesOptions?: SmallMultiplesOptions | undefined;
1201
+ CategoryLabelOptions?: ChartAxisLabelOptions | undefined;
1202
+ ValueLabelOptions?: ChartAxisLabelOptions | undefined;
1203
+ Legend?: LegendOptions | undefined;
1204
+ DataLabels?: DataLabelOptions | undefined;
1205
+ Tooltip?: TooltipOptions | undefined;
1206
+ VisualPalette?: VisualPalette | undefined;
1207
+ ContributionAnalysisDefaults?: ContributionAnalysisDefault[] | undefined;
1208
+ Interactions?: VisualInteractionOptions | undefined;
1199
1209
  }
1200
1210
  export interface PieChartVisual {
1201
1211
  VisualId: string | undefined;
1202
- Title?: VisualTitleLabelOptions;
1203
- Subtitle?: VisualSubtitleLabelOptions;
1204
- ChartConfiguration?: PieChartConfiguration;
1205
- Actions?: VisualCustomAction[];
1206
- ColumnHierarchies?: ColumnHierarchy[];
1212
+ Title?: VisualTitleLabelOptions | undefined;
1213
+ Subtitle?: VisualSubtitleLabelOptions | undefined;
1214
+ ChartConfiguration?: PieChartConfiguration | undefined;
1215
+ Actions?: VisualCustomAction[] | undefined;
1216
+ ColumnHierarchies?: ColumnHierarchy[] | undefined;
1207
1217
  }
1208
1218
  export declare const PivotTableFieldCollapseState: {
1209
1219
  readonly COLLAPSED: "COLLAPSED";
@@ -1212,54 +1222,54 @@ export declare const PivotTableFieldCollapseState: {
1212
1222
  export type PivotTableFieldCollapseState =
1213
1223
  (typeof PivotTableFieldCollapseState)[keyof typeof PivotTableFieldCollapseState];
1214
1224
  export interface PivotTableFieldCollapseStateTarget {
1215
- FieldId?: string;
1216
- FieldDataPathValues?: DataPathValue[];
1225
+ FieldId?: string | undefined;
1226
+ FieldDataPathValues?: DataPathValue[] | undefined;
1217
1227
  }
1218
1228
  export interface PivotTableFieldCollapseStateOption {
1219
1229
  Target: PivotTableFieldCollapseStateTarget | undefined;
1220
- State?: PivotTableFieldCollapseState;
1230
+ State?: PivotTableFieldCollapseState | undefined;
1221
1231
  }
1222
1232
  export interface PivotTableDataPathOption {
1223
1233
  DataPathList: DataPathValue[] | undefined;
1224
- Width?: string;
1234
+ Width?: string | undefined;
1225
1235
  }
1226
1236
  export interface PivotTableFieldOption {
1227
1237
  FieldId: string | undefined;
1228
- CustomLabel?: string;
1229
- Visibility?: Visibility;
1238
+ CustomLabel?: string | undefined;
1239
+ Visibility?: Visibility | undefined;
1230
1240
  }
1231
1241
  export interface PivotTableFieldOptions {
1232
- SelectedFieldOptions?: PivotTableFieldOption[];
1233
- DataPathOptions?: PivotTableDataPathOption[];
1234
- CollapseStateOptions?: PivotTableFieldCollapseStateOption[];
1242
+ SelectedFieldOptions?: PivotTableFieldOption[] | undefined;
1243
+ DataPathOptions?: PivotTableDataPathOption[] | undefined;
1244
+ CollapseStateOptions?: PivotTableFieldCollapseStateOption[] | undefined;
1235
1245
  }
1236
1246
  export interface PivotTableAggregatedFieldWells {
1237
- Rows?: DimensionField[];
1238
- Columns?: DimensionField[];
1239
- Values?: MeasureField[];
1247
+ Rows?: DimensionField[] | undefined;
1248
+ Columns?: DimensionField[] | undefined;
1249
+ Values?: MeasureField[] | undefined;
1240
1250
  }
1241
1251
  export interface PivotTableFieldWells {
1242
- PivotTableAggregatedFieldWells?: PivotTableAggregatedFieldWells;
1252
+ PivotTableAggregatedFieldWells?: PivotTableAggregatedFieldWells | undefined;
1243
1253
  }
1244
1254
  export interface PivotTablePaginatedReportOptions {
1245
- VerticalOverflowVisibility?: Visibility;
1246
- OverflowColumnHeaderVisibility?: Visibility;
1255
+ VerticalOverflowVisibility?: Visibility | undefined;
1256
+ OverflowColumnHeaderVisibility?: Visibility | undefined;
1247
1257
  }
1248
1258
  export interface DataPathSort {
1249
1259
  Direction: SortDirection | undefined;
1250
1260
  SortPaths: DataPathValue[] | undefined;
1251
1261
  }
1252
1262
  export interface PivotTableSortBy {
1253
- Field?: FieldSort;
1254
- Column?: ColumnSort;
1255
- DataPath?: DataPathSort;
1263
+ Field?: FieldSort | undefined;
1264
+ Column?: ColumnSort | undefined;
1265
+ DataPath?: DataPathSort | undefined;
1256
1266
  }
1257
1267
  export interface PivotFieldSortOptions {
1258
1268
  FieldId: string | undefined;
1259
1269
  SortBy: PivotTableSortBy | undefined;
1260
1270
  }
1261
1271
  export interface PivotTableSortConfiguration {
1262
- FieldSortOptions?: PivotFieldSortOptions[];
1272
+ FieldSortOptions?: PivotFieldSortOptions[] | undefined;
1263
1273
  }
1264
1274
  export declare const TableBorderStyle: {
1265
1275
  readonly NONE: "NONE";
@@ -1268,21 +1278,21 @@ export declare const TableBorderStyle: {
1268
1278
  export type TableBorderStyle =
1269
1279
  (typeof TableBorderStyle)[keyof typeof TableBorderStyle];
1270
1280
  export interface TableBorderOptions {
1271
- Color?: string;
1272
- Thickness?: number;
1273
- Style?: TableBorderStyle;
1281
+ Color?: string | undefined;
1282
+ Thickness?: number | undefined;
1283
+ Style?: TableBorderStyle | undefined;
1274
1284
  }
1275
1285
  export interface TableSideBorderOptions {
1276
- InnerVertical?: TableBorderOptions;
1277
- InnerHorizontal?: TableBorderOptions;
1278
- Left?: TableBorderOptions;
1279
- Right?: TableBorderOptions;
1280
- Top?: TableBorderOptions;
1281
- Bottom?: TableBorderOptions;
1286
+ InnerVertical?: TableBorderOptions | undefined;
1287
+ InnerHorizontal?: TableBorderOptions | undefined;
1288
+ Left?: TableBorderOptions | undefined;
1289
+ Right?: TableBorderOptions | undefined;
1290
+ Top?: TableBorderOptions | undefined;
1291
+ Bottom?: TableBorderOptions | undefined;
1282
1292
  }
1283
1293
  export interface GlobalTableBorderOptions {
1284
- UniformBorder?: TableBorderOptions;
1285
- SideSpecificBorder?: TableSideBorderOptions;
1294
+ UniformBorder?: TableBorderOptions | undefined;
1295
+ SideSpecificBorder?: TableSideBorderOptions | undefined;
1286
1296
  }
1287
1297
  export declare const TextWrap: {
1288
1298
  readonly NONE: "NONE";
@@ -1298,14 +1308,14 @@ export declare const VerticalTextAlignment: {
1298
1308
  export type VerticalTextAlignment =
1299
1309
  (typeof VerticalTextAlignment)[keyof typeof VerticalTextAlignment];
1300
1310
  export interface TableCellStyle {
1301
- Visibility?: Visibility;
1302
- FontConfiguration?: FontConfiguration;
1303
- TextWrap?: TextWrap;
1304
- HorizontalTextAlignment?: HorizontalTextAlignment;
1305
- VerticalTextAlignment?: VerticalTextAlignment;
1306
- BackgroundColor?: string;
1307
- Height?: number;
1308
- Border?: GlobalTableBorderOptions;
1311
+ Visibility?: Visibility | undefined;
1312
+ FontConfiguration?: FontConfiguration | undefined;
1313
+ TextWrap?: TextWrap | undefined;
1314
+ HorizontalTextAlignment?: HorizontalTextAlignment | undefined;
1315
+ VerticalTextAlignment?: VerticalTextAlignment | undefined;
1316
+ BackgroundColor?: string | undefined;
1317
+ Height?: number | undefined;
1318
+ Border?: GlobalTableBorderOptions | undefined;
1309
1319
  }
1310
1320
  export declare const PivotTableMetricPlacement: {
1311
1321
  readonly COLUMN: "COLUMN";
@@ -1314,13 +1324,13 @@ export declare const PivotTableMetricPlacement: {
1314
1324
  export type PivotTableMetricPlacement =
1315
1325
  (typeof PivotTableMetricPlacement)[keyof typeof PivotTableMetricPlacement];
1316
1326
  export interface RowAlternateColorOptions {
1317
- Status?: WidgetStatus;
1318
- RowAlternateColors?: string[];
1319
- UsePrimaryBackgroundColor?: WidgetStatus;
1327
+ Status?: WidgetStatus | undefined;
1328
+ RowAlternateColors?: string[] | undefined;
1329
+ UsePrimaryBackgroundColor?: WidgetStatus | undefined;
1320
1330
  }
1321
1331
  export interface PivotTableRowsLabelOptions {
1322
- Visibility?: Visibility;
1323
- CustomLabel?: string;
1332
+ Visibility?: Visibility | undefined;
1333
+ CustomLabel?: string | undefined;
1324
1334
  }
1325
1335
  export declare const PivotTableRowsLayout: {
1326
1336
  readonly HIERARCHY: "HIERARCHY";
@@ -1329,19 +1339,19 @@ export declare const PivotTableRowsLayout: {
1329
1339
  export type PivotTableRowsLayout =
1330
1340
  (typeof PivotTableRowsLayout)[keyof typeof PivotTableRowsLayout];
1331
1341
  export interface PivotTableOptions {
1332
- MetricPlacement?: PivotTableMetricPlacement;
1333
- SingleMetricVisibility?: Visibility;
1334
- ColumnNamesVisibility?: Visibility;
1335
- ToggleButtonsVisibility?: Visibility;
1336
- ColumnHeaderStyle?: TableCellStyle;
1337
- RowHeaderStyle?: TableCellStyle;
1338
- CellStyle?: TableCellStyle;
1339
- RowFieldNamesStyle?: TableCellStyle;
1340
- RowAlternateColorOptions?: RowAlternateColorOptions;
1341
- CollapsedRowDimensionsVisibility?: Visibility;
1342
- RowsLayout?: PivotTableRowsLayout;
1343
- RowsLabelOptions?: PivotTableRowsLabelOptions;
1344
- DefaultCellWidth?: string;
1342
+ MetricPlacement?: PivotTableMetricPlacement | undefined;
1343
+ SingleMetricVisibility?: Visibility | undefined;
1344
+ ColumnNamesVisibility?: Visibility | undefined;
1345
+ ToggleButtonsVisibility?: Visibility | undefined;
1346
+ ColumnHeaderStyle?: TableCellStyle | undefined;
1347
+ RowHeaderStyle?: TableCellStyle | undefined;
1348
+ CellStyle?: TableCellStyle | undefined;
1349
+ RowFieldNamesStyle?: TableCellStyle | undefined;
1350
+ RowAlternateColorOptions?: RowAlternateColorOptions | undefined;
1351
+ CollapsedRowDimensionsVisibility?: Visibility | undefined;
1352
+ RowsLayout?: PivotTableRowsLayout | undefined;
1353
+ RowsLabelOptions?: PivotTableRowsLabelOptions | undefined;
1354
+ DefaultCellWidth?: string | undefined;
1345
1355
  }
1346
1356
  export declare const PivotTableSubtotalLevel: {
1347
1357
  readonly ALL: "ALL";
@@ -1351,7 +1361,7 @@ export declare const PivotTableSubtotalLevel: {
1351
1361
  export type PivotTableSubtotalLevel =
1352
1362
  (typeof PivotTableSubtotalLevel)[keyof typeof PivotTableSubtotalLevel];
1353
1363
  export interface PivotTableFieldSubtotalOptions {
1354
- FieldId?: string;
1364
+ FieldId?: string | undefined;
1355
1365
  }
1356
1366
  export declare const StyledCellType: {
1357
1367
  readonly METRIC_HEADER: "METRIC_HEADER";
@@ -1364,14 +1374,14 @@ export interface TableStyleTarget {
1364
1374
  CellType: StyledCellType | undefined;
1365
1375
  }
1366
1376
  export interface SubtotalOptions {
1367
- TotalsVisibility?: Visibility;
1368
- CustomLabel?: string;
1369
- FieldLevel?: PivotTableSubtotalLevel;
1370
- FieldLevelOptions?: PivotTableFieldSubtotalOptions[];
1371
- TotalCellStyle?: TableCellStyle;
1372
- ValueCellStyle?: TableCellStyle;
1373
- MetricHeaderCellStyle?: TableCellStyle;
1374
- StyleTargets?: TableStyleTarget[];
1377
+ TotalsVisibility?: Visibility | undefined;
1378
+ CustomLabel?: string | undefined;
1379
+ FieldLevel?: PivotTableSubtotalLevel | undefined;
1380
+ FieldLevelOptions?: PivotTableFieldSubtotalOptions[] | undefined;
1381
+ TotalCellStyle?: TableCellStyle | undefined;
1382
+ ValueCellStyle?: TableCellStyle | undefined;
1383
+ MetricHeaderCellStyle?: TableCellStyle | undefined;
1384
+ StyleTargets?: TableStyleTarget[] | undefined;
1375
1385
  }
1376
1386
  export declare const TableTotalsPlacement: {
1377
1387
  readonly AUTO: "AUTO";
@@ -1397,36 +1407,36 @@ export declare const SimpleTotalAggregationFunction: {
1397
1407
  export type SimpleTotalAggregationFunction =
1398
1408
  (typeof SimpleTotalAggregationFunction)[keyof typeof SimpleTotalAggregationFunction];
1399
1409
  export interface TotalAggregationFunction {
1400
- SimpleTotalAggregationFunction?: SimpleTotalAggregationFunction;
1410
+ SimpleTotalAggregationFunction?: SimpleTotalAggregationFunction | undefined;
1401
1411
  }
1402
1412
  export interface TotalAggregationOption {
1403
1413
  FieldId: string | undefined;
1404
1414
  TotalAggregationFunction: TotalAggregationFunction | undefined;
1405
1415
  }
1406
1416
  export interface PivotTotalOptions {
1407
- TotalsVisibility?: Visibility;
1408
- Placement?: TableTotalsPlacement;
1409
- ScrollStatus?: TableTotalsScrollStatus;
1410
- CustomLabel?: string;
1411
- TotalCellStyle?: TableCellStyle;
1412
- ValueCellStyle?: TableCellStyle;
1413
- MetricHeaderCellStyle?: TableCellStyle;
1414
- TotalAggregationOptions?: TotalAggregationOption[];
1417
+ TotalsVisibility?: Visibility | undefined;
1418
+ Placement?: TableTotalsPlacement | undefined;
1419
+ ScrollStatus?: TableTotalsScrollStatus | undefined;
1420
+ CustomLabel?: string | undefined;
1421
+ TotalCellStyle?: TableCellStyle | undefined;
1422
+ ValueCellStyle?: TableCellStyle | undefined;
1423
+ MetricHeaderCellStyle?: TableCellStyle | undefined;
1424
+ TotalAggregationOptions?: TotalAggregationOption[] | undefined;
1415
1425
  }
1416
1426
  export interface PivotTableTotalOptions {
1417
- RowSubtotalOptions?: SubtotalOptions;
1418
- ColumnSubtotalOptions?: SubtotalOptions;
1419
- RowTotalOptions?: PivotTotalOptions;
1420
- ColumnTotalOptions?: PivotTotalOptions;
1427
+ RowSubtotalOptions?: SubtotalOptions | undefined;
1428
+ ColumnSubtotalOptions?: SubtotalOptions | undefined;
1429
+ RowTotalOptions?: PivotTotalOptions | undefined;
1430
+ ColumnTotalOptions?: PivotTotalOptions | undefined;
1421
1431
  }
1422
1432
  export interface PivotTableConfiguration {
1423
- FieldWells?: PivotTableFieldWells;
1424
- SortConfiguration?: PivotTableSortConfiguration;
1425
- TableOptions?: PivotTableOptions;
1426
- TotalOptions?: PivotTableTotalOptions;
1427
- FieldOptions?: PivotTableFieldOptions;
1428
- PaginatedReportOptions?: PivotTablePaginatedReportOptions;
1429
- Interactions?: VisualInteractionOptions;
1433
+ FieldWells?: PivotTableFieldWells | undefined;
1434
+ SortConfiguration?: PivotTableSortConfiguration | undefined;
1435
+ TableOptions?: PivotTableOptions | undefined;
1436
+ TotalOptions?: PivotTableTotalOptions | undefined;
1437
+ FieldOptions?: PivotTableFieldOptions | undefined;
1438
+ PaginatedReportOptions?: PivotTablePaginatedReportOptions | undefined;
1439
+ Interactions?: VisualInteractionOptions | undefined;
1430
1440
  }
1431
1441
  export declare const PivotTableConditionalFormattingScopeRole: {
1432
1442
  readonly FIELD: "FIELD";
@@ -1436,32 +1446,34 @@ export declare const PivotTableConditionalFormattingScopeRole: {
1436
1446
  export type PivotTableConditionalFormattingScopeRole =
1437
1447
  (typeof PivotTableConditionalFormattingScopeRole)[keyof typeof PivotTableConditionalFormattingScopeRole];
1438
1448
  export interface PivotTableConditionalFormattingScope {
1439
- Role?: PivotTableConditionalFormattingScopeRole;
1449
+ Role?: PivotTableConditionalFormattingScopeRole | undefined;
1440
1450
  }
1441
1451
  export interface TextConditionalFormat {
1442
- BackgroundColor?: ConditionalFormattingColor;
1443
- TextColor?: ConditionalFormattingColor;
1444
- Icon?: ConditionalFormattingIcon;
1452
+ BackgroundColor?: ConditionalFormattingColor | undefined;
1453
+ TextColor?: ConditionalFormattingColor | undefined;
1454
+ Icon?: ConditionalFormattingIcon | undefined;
1445
1455
  }
1446
1456
  export interface PivotTableCellConditionalFormatting {
1447
1457
  FieldId: string | undefined;
1448
- TextFormat?: TextConditionalFormat;
1449
- Scope?: PivotTableConditionalFormattingScope;
1450
- Scopes?: PivotTableConditionalFormattingScope[];
1458
+ TextFormat?: TextConditionalFormat | undefined;
1459
+ Scope?: PivotTableConditionalFormattingScope | undefined;
1460
+ Scopes?: PivotTableConditionalFormattingScope[] | undefined;
1451
1461
  }
1452
1462
  export interface PivotTableConditionalFormattingOption {
1453
- Cell?: PivotTableCellConditionalFormatting;
1463
+ Cell?: PivotTableCellConditionalFormatting | undefined;
1454
1464
  }
1455
1465
  export interface PivotTableConditionalFormatting {
1456
- ConditionalFormattingOptions?: PivotTableConditionalFormattingOption[];
1466
+ ConditionalFormattingOptions?:
1467
+ | PivotTableConditionalFormattingOption[]
1468
+ | undefined;
1457
1469
  }
1458
1470
  export interface PivotTableVisual {
1459
1471
  VisualId: string | undefined;
1460
- Title?: VisualTitleLabelOptions;
1461
- Subtitle?: VisualSubtitleLabelOptions;
1462
- ChartConfiguration?: PivotTableConfiguration;
1463
- ConditionalFormatting?: PivotTableConditionalFormatting;
1464
- Actions?: VisualCustomAction[];
1472
+ Title?: VisualTitleLabelOptions | undefined;
1473
+ Subtitle?: VisualSubtitleLabelOptions | undefined;
1474
+ ChartConfiguration?: PivotTableConfiguration | undefined;
1475
+ ConditionalFormatting?: PivotTableConditionalFormatting | undefined;
1476
+ Actions?: VisualCustomAction[] | undefined;
1465
1477
  }
1466
1478
  export declare const RadarChartAxesRangeScale: {
1467
1479
  readonly AUTO: "AUTO";
@@ -1471,18 +1483,18 @@ export declare const RadarChartAxesRangeScale: {
1471
1483
  export type RadarChartAxesRangeScale =
1472
1484
  (typeof RadarChartAxesRangeScale)[keyof typeof RadarChartAxesRangeScale];
1473
1485
  export interface RadarChartAreaStyleSettings {
1474
- Visibility?: Visibility;
1486
+ Visibility?: Visibility | undefined;
1475
1487
  }
1476
1488
  export interface RadarChartSeriesSettings {
1477
- AreaStyleSettings?: RadarChartAreaStyleSettings;
1489
+ AreaStyleSettings?: RadarChartAreaStyleSettings | undefined;
1478
1490
  }
1479
1491
  export interface RadarChartAggregatedFieldWells {
1480
- Category?: DimensionField[];
1481
- Color?: DimensionField[];
1482
- Values?: MeasureField[];
1492
+ Category?: DimensionField[] | undefined;
1493
+ Color?: DimensionField[] | undefined;
1494
+ Values?: MeasureField[] | undefined;
1483
1495
  }
1484
1496
  export interface RadarChartFieldWells {
1485
- RadarChartAggregatedFieldWells?: RadarChartAggregatedFieldWells;
1497
+ RadarChartAggregatedFieldWells?: RadarChartAggregatedFieldWells | undefined;
1486
1498
  }
1487
1499
  export declare const RadarChartShape: {
1488
1500
  readonly CIRCLE: "CIRCLE";
@@ -1491,107 +1503,113 @@ export declare const RadarChartShape: {
1491
1503
  export type RadarChartShape =
1492
1504
  (typeof RadarChartShape)[keyof typeof RadarChartShape];
1493
1505
  export interface RadarChartSortConfiguration {
1494
- CategorySort?: FieldSortOptions[];
1495
- CategoryItemsLimit?: ItemsLimitConfiguration;
1496
- ColorSort?: FieldSortOptions[];
1497
- ColorItemsLimit?: ItemsLimitConfiguration;
1506
+ CategorySort?: FieldSortOptions[] | undefined;
1507
+ CategoryItemsLimit?: ItemsLimitConfiguration | undefined;
1508
+ ColorSort?: FieldSortOptions[] | undefined;
1509
+ ColorItemsLimit?: ItemsLimitConfiguration | undefined;
1498
1510
  }
1499
1511
  export interface RadarChartConfiguration {
1500
- FieldWells?: RadarChartFieldWells;
1501
- SortConfiguration?: RadarChartSortConfiguration;
1502
- Shape?: RadarChartShape;
1503
- BaseSeriesSettings?: RadarChartSeriesSettings;
1504
- StartAngle?: number;
1505
- VisualPalette?: VisualPalette;
1506
- AlternateBandColorsVisibility?: Visibility;
1507
- AlternateBandEvenColor?: string;
1508
- AlternateBandOddColor?: string;
1509
- CategoryAxis?: AxisDisplayOptions;
1510
- CategoryLabelOptions?: ChartAxisLabelOptions;
1511
- ColorAxis?: AxisDisplayOptions;
1512
- ColorLabelOptions?: ChartAxisLabelOptions;
1513
- Legend?: LegendOptions;
1514
- AxesRangeScale?: RadarChartAxesRangeScale;
1515
- Interactions?: VisualInteractionOptions;
1512
+ FieldWells?: RadarChartFieldWells | undefined;
1513
+ SortConfiguration?: RadarChartSortConfiguration | undefined;
1514
+ Shape?: RadarChartShape | undefined;
1515
+ BaseSeriesSettings?: RadarChartSeriesSettings | undefined;
1516
+ StartAngle?: number | undefined;
1517
+ VisualPalette?: VisualPalette | undefined;
1518
+ AlternateBandColorsVisibility?: Visibility | undefined;
1519
+ AlternateBandEvenColor?: string | undefined;
1520
+ AlternateBandOddColor?: string | undefined;
1521
+ CategoryAxis?: AxisDisplayOptions | undefined;
1522
+ CategoryLabelOptions?: ChartAxisLabelOptions | undefined;
1523
+ ColorAxis?: AxisDisplayOptions | undefined;
1524
+ ColorLabelOptions?: ChartAxisLabelOptions | undefined;
1525
+ Legend?: LegendOptions | undefined;
1526
+ AxesRangeScale?: RadarChartAxesRangeScale | undefined;
1527
+ Interactions?: VisualInteractionOptions | undefined;
1516
1528
  }
1517
1529
  export interface RadarChartVisual {
1518
1530
  VisualId: string | undefined;
1519
- Title?: VisualTitleLabelOptions;
1520
- Subtitle?: VisualSubtitleLabelOptions;
1521
- ChartConfiguration?: RadarChartConfiguration;
1522
- Actions?: VisualCustomAction[];
1523
- ColumnHierarchies?: ColumnHierarchy[];
1531
+ Title?: VisualTitleLabelOptions | undefined;
1532
+ Subtitle?: VisualSubtitleLabelOptions | undefined;
1533
+ ChartConfiguration?: RadarChartConfiguration | undefined;
1534
+ Actions?: VisualCustomAction[] | undefined;
1535
+ ColumnHierarchies?: ColumnHierarchy[] | undefined;
1524
1536
  }
1525
1537
  export interface SankeyDiagramAggregatedFieldWells {
1526
- Source?: DimensionField[];
1527
- Destination?: DimensionField[];
1528
- Weight?: MeasureField[];
1538
+ Source?: DimensionField[] | undefined;
1539
+ Destination?: DimensionField[] | undefined;
1540
+ Weight?: MeasureField[] | undefined;
1529
1541
  }
1530
1542
  export interface SankeyDiagramFieldWells {
1531
- SankeyDiagramAggregatedFieldWells?: SankeyDiagramAggregatedFieldWells;
1543
+ SankeyDiagramAggregatedFieldWells?:
1544
+ | SankeyDiagramAggregatedFieldWells
1545
+ | undefined;
1532
1546
  }
1533
1547
  export interface SankeyDiagramSortConfiguration {
1534
- WeightSort?: FieldSortOptions[];
1535
- SourceItemsLimit?: ItemsLimitConfiguration;
1536
- DestinationItemsLimit?: ItemsLimitConfiguration;
1548
+ WeightSort?: FieldSortOptions[] | undefined;
1549
+ SourceItemsLimit?: ItemsLimitConfiguration | undefined;
1550
+ DestinationItemsLimit?: ItemsLimitConfiguration | undefined;
1537
1551
  }
1538
1552
  export interface SankeyDiagramChartConfiguration {
1539
- FieldWells?: SankeyDiagramFieldWells;
1540
- SortConfiguration?: SankeyDiagramSortConfiguration;
1541
- DataLabels?: DataLabelOptions;
1542
- Interactions?: VisualInteractionOptions;
1553
+ FieldWells?: SankeyDiagramFieldWells | undefined;
1554
+ SortConfiguration?: SankeyDiagramSortConfiguration | undefined;
1555
+ DataLabels?: DataLabelOptions | undefined;
1556
+ Interactions?: VisualInteractionOptions | undefined;
1543
1557
  }
1544
1558
  export interface SankeyDiagramVisual {
1545
1559
  VisualId: string | undefined;
1546
- Title?: VisualTitleLabelOptions;
1547
- Subtitle?: VisualSubtitleLabelOptions;
1548
- ChartConfiguration?: SankeyDiagramChartConfiguration;
1549
- Actions?: VisualCustomAction[];
1560
+ Title?: VisualTitleLabelOptions | undefined;
1561
+ Subtitle?: VisualSubtitleLabelOptions | undefined;
1562
+ ChartConfiguration?: SankeyDiagramChartConfiguration | undefined;
1563
+ Actions?: VisualCustomAction[] | undefined;
1550
1564
  }
1551
1565
  export interface ScatterPlotCategoricallyAggregatedFieldWells {
1552
- XAxis?: MeasureField[];
1553
- YAxis?: MeasureField[];
1554
- Category?: DimensionField[];
1555
- Size?: MeasureField[];
1556
- Label?: DimensionField[];
1566
+ XAxis?: MeasureField[] | undefined;
1567
+ YAxis?: MeasureField[] | undefined;
1568
+ Category?: DimensionField[] | undefined;
1569
+ Size?: MeasureField[] | undefined;
1570
+ Label?: DimensionField[] | undefined;
1557
1571
  }
1558
1572
  export interface ScatterPlotUnaggregatedFieldWells {
1559
- XAxis?: DimensionField[];
1560
- YAxis?: DimensionField[];
1561
- Size?: MeasureField[];
1562
- Category?: DimensionField[];
1563
- Label?: DimensionField[];
1573
+ XAxis?: DimensionField[] | undefined;
1574
+ YAxis?: DimensionField[] | undefined;
1575
+ Size?: MeasureField[] | undefined;
1576
+ Category?: DimensionField[] | undefined;
1577
+ Label?: DimensionField[] | undefined;
1564
1578
  }
1565
1579
  export interface ScatterPlotFieldWells {
1566
- ScatterPlotCategoricallyAggregatedFieldWells?: ScatterPlotCategoricallyAggregatedFieldWells;
1567
- ScatterPlotUnaggregatedFieldWells?: ScatterPlotUnaggregatedFieldWells;
1580
+ ScatterPlotCategoricallyAggregatedFieldWells?:
1581
+ | ScatterPlotCategoricallyAggregatedFieldWells
1582
+ | undefined;
1583
+ ScatterPlotUnaggregatedFieldWells?:
1584
+ | ScatterPlotUnaggregatedFieldWells
1585
+ | undefined;
1568
1586
  }
1569
1587
  export interface ScatterPlotSortConfiguration {
1570
- ScatterPlotLimitConfiguration?: ItemsLimitConfiguration;
1588
+ ScatterPlotLimitConfiguration?: ItemsLimitConfiguration | undefined;
1571
1589
  }
1572
1590
  export interface ScatterPlotConfiguration {
1573
- FieldWells?: ScatterPlotFieldWells;
1574
- SortConfiguration?: ScatterPlotSortConfiguration;
1575
- XAxisLabelOptions?: ChartAxisLabelOptions;
1576
- XAxisDisplayOptions?: AxisDisplayOptions;
1577
- YAxisLabelOptions?: ChartAxisLabelOptions;
1578
- YAxisDisplayOptions?: AxisDisplayOptions;
1579
- Legend?: LegendOptions;
1580
- DataLabels?: DataLabelOptions;
1581
- Tooltip?: TooltipOptions;
1582
- VisualPalette?: VisualPalette;
1583
- Interactions?: VisualInteractionOptions;
1591
+ FieldWells?: ScatterPlotFieldWells | undefined;
1592
+ SortConfiguration?: ScatterPlotSortConfiguration | undefined;
1593
+ XAxisLabelOptions?: ChartAxisLabelOptions | undefined;
1594
+ XAxisDisplayOptions?: AxisDisplayOptions | undefined;
1595
+ YAxisLabelOptions?: ChartAxisLabelOptions | undefined;
1596
+ YAxisDisplayOptions?: AxisDisplayOptions | undefined;
1597
+ Legend?: LegendOptions | undefined;
1598
+ DataLabels?: DataLabelOptions | undefined;
1599
+ Tooltip?: TooltipOptions | undefined;
1600
+ VisualPalette?: VisualPalette | undefined;
1601
+ Interactions?: VisualInteractionOptions | undefined;
1584
1602
  }
1585
1603
  export interface ScatterPlotVisual {
1586
1604
  VisualId: string | undefined;
1587
- Title?: VisualTitleLabelOptions;
1588
- Subtitle?: VisualSubtitleLabelOptions;
1589
- ChartConfiguration?: ScatterPlotConfiguration;
1590
- Actions?: VisualCustomAction[];
1591
- ColumnHierarchies?: ColumnHierarchy[];
1605
+ Title?: VisualTitleLabelOptions | undefined;
1606
+ Subtitle?: VisualSubtitleLabelOptions | undefined;
1607
+ ChartConfiguration?: ScatterPlotConfiguration | undefined;
1608
+ Actions?: VisualCustomAction[] | undefined;
1609
+ ColumnHierarchies?: ColumnHierarchy[] | undefined;
1592
1610
  }
1593
1611
  export interface TablePinnedFieldOptions {
1594
- PinnedLeftFields?: string[];
1612
+ PinnedLeftFields?: string[] | undefined;
1595
1613
  }
1596
1614
  export declare const TableCellImageScalingConfiguration: {
1597
1615
  readonly DO_NOT_SCALE: "DO_NOT_SCALE";
@@ -1601,10 +1619,12 @@ export declare const TableCellImageScalingConfiguration: {
1601
1619
  export type TableCellImageScalingConfiguration =
1602
1620
  (typeof TableCellImageScalingConfiguration)[keyof typeof TableCellImageScalingConfiguration];
1603
1621
  export interface TableCellImageSizingConfiguration {
1604
- TableCellImageScalingConfiguration?: TableCellImageScalingConfiguration;
1622
+ TableCellImageScalingConfiguration?:
1623
+ | TableCellImageScalingConfiguration
1624
+ | undefined;
1605
1625
  }
1606
1626
  export interface TableFieldImageConfiguration {
1607
- SizingOptions?: TableCellImageSizingConfiguration;
1627
+ SizingOptions?: TableCellImageSizingConfiguration | undefined;
1608
1628
  }
1609
1629
  export declare const TableFieldIconSetType: {
1610
1630
  readonly LINK: "LINK";
@@ -1612,67 +1632,67 @@ export declare const TableFieldIconSetType: {
1612
1632
  export type TableFieldIconSetType =
1613
1633
  (typeof TableFieldIconSetType)[keyof typeof TableFieldIconSetType];
1614
1634
  export interface TableFieldCustomIconContent {
1615
- Icon?: TableFieldIconSetType;
1635
+ Icon?: TableFieldIconSetType | undefined;
1616
1636
  }
1617
1637
  export interface TableFieldCustomTextContent {
1618
- Value?: string;
1638
+ Value?: string | undefined;
1619
1639
  FontConfiguration: FontConfiguration | undefined;
1620
1640
  }
1621
1641
  export interface TableFieldLinkContentConfiguration {
1622
- CustomTextContent?: TableFieldCustomTextContent;
1623
- CustomIconContent?: TableFieldCustomIconContent;
1642
+ CustomTextContent?: TableFieldCustomTextContent | undefined;
1643
+ CustomIconContent?: TableFieldCustomIconContent | undefined;
1624
1644
  }
1625
1645
  export interface TableFieldLinkConfiguration {
1626
1646
  Target: URLTargetConfiguration | undefined;
1627
1647
  Content: TableFieldLinkContentConfiguration | undefined;
1628
1648
  }
1629
1649
  export interface TableFieldURLConfiguration {
1630
- LinkConfiguration?: TableFieldLinkConfiguration;
1631
- ImageConfiguration?: TableFieldImageConfiguration;
1650
+ LinkConfiguration?: TableFieldLinkConfiguration | undefined;
1651
+ ImageConfiguration?: TableFieldImageConfiguration | undefined;
1632
1652
  }
1633
1653
  export interface TableFieldOption {
1634
1654
  FieldId: string | undefined;
1635
- Width?: string;
1636
- CustomLabel?: string;
1637
- Visibility?: Visibility;
1638
- URLStyling?: TableFieldURLConfiguration;
1655
+ Width?: string | undefined;
1656
+ CustomLabel?: string | undefined;
1657
+ Visibility?: Visibility | undefined;
1658
+ URLStyling?: TableFieldURLConfiguration | undefined;
1639
1659
  }
1640
1660
  export interface TableFieldOptions {
1641
- SelectedFieldOptions?: TableFieldOption[];
1642
- Order?: string[];
1643
- PinnedFieldOptions?: TablePinnedFieldOptions;
1661
+ SelectedFieldOptions?: TableFieldOption[] | undefined;
1662
+ Order?: string[] | undefined;
1663
+ PinnedFieldOptions?: TablePinnedFieldOptions | undefined;
1644
1664
  }
1645
1665
  export interface TableAggregatedFieldWells {
1646
- GroupBy?: DimensionField[];
1647
- Values?: MeasureField[];
1666
+ GroupBy?: DimensionField[] | undefined;
1667
+ Values?: MeasureField[] | undefined;
1648
1668
  }
1649
1669
  export interface UnaggregatedField {
1650
1670
  FieldId: string | undefined;
1651
1671
  Column: ColumnIdentifier | undefined;
1652
- FormatConfiguration?: FormatConfiguration;
1672
+ FormatConfiguration?: FormatConfiguration | undefined;
1653
1673
  }
1654
1674
  export interface TableUnaggregatedFieldWells {
1655
- Values?: UnaggregatedField[];
1675
+ Values?: UnaggregatedField[] | undefined;
1656
1676
  }
1657
1677
  export interface TableFieldWells {
1658
- TableAggregatedFieldWells?: TableAggregatedFieldWells;
1659
- TableUnaggregatedFieldWells?: TableUnaggregatedFieldWells;
1678
+ TableAggregatedFieldWells?: TableAggregatedFieldWells | undefined;
1679
+ TableUnaggregatedFieldWells?: TableUnaggregatedFieldWells | undefined;
1660
1680
  }
1661
1681
  export interface TablePaginatedReportOptions {
1662
- VerticalOverflowVisibility?: Visibility;
1663
- OverflowColumnHeaderVisibility?: Visibility;
1682
+ VerticalOverflowVisibility?: Visibility | undefined;
1683
+ OverflowColumnHeaderVisibility?: Visibility | undefined;
1664
1684
  }
1665
1685
  export interface TableSortConfiguration {
1666
- RowSort?: FieldSortOptions[];
1667
- PaginationConfiguration?: PaginationConfiguration;
1686
+ RowSort?: FieldSortOptions[] | undefined;
1687
+ PaginationConfiguration?: PaginationConfiguration | undefined;
1668
1688
  }
1669
1689
  export interface DataBarsOptions {
1670
1690
  FieldId: string | undefined;
1671
- PositiveColor?: string;
1672
- NegativeColor?: string;
1691
+ PositiveColor?: string | undefined;
1692
+ NegativeColor?: string | undefined;
1673
1693
  }
1674
1694
  export interface TableInlineVisualization {
1675
- DataBars?: DataBarsOptions;
1695
+ DataBars?: DataBarsOptions | undefined;
1676
1696
  }
1677
1697
  export declare const TableOrientation: {
1678
1698
  readonly HORIZONTAL: "HORIZONTAL";
@@ -1681,63 +1701,63 @@ export declare const TableOrientation: {
1681
1701
  export type TableOrientation =
1682
1702
  (typeof TableOrientation)[keyof typeof TableOrientation];
1683
1703
  export interface TableOptions {
1684
- Orientation?: TableOrientation;
1685
- HeaderStyle?: TableCellStyle;
1686
- CellStyle?: TableCellStyle;
1687
- RowAlternateColorOptions?: RowAlternateColorOptions;
1704
+ Orientation?: TableOrientation | undefined;
1705
+ HeaderStyle?: TableCellStyle | undefined;
1706
+ CellStyle?: TableCellStyle | undefined;
1707
+ RowAlternateColorOptions?: RowAlternateColorOptions | undefined;
1688
1708
  }
1689
1709
  export interface TotalOptions {
1690
- TotalsVisibility?: Visibility;
1691
- Placement?: TableTotalsPlacement;
1692
- ScrollStatus?: TableTotalsScrollStatus;
1693
- CustomLabel?: string;
1694
- TotalCellStyle?: TableCellStyle;
1695
- TotalAggregationOptions?: TotalAggregationOption[];
1710
+ TotalsVisibility?: Visibility | undefined;
1711
+ Placement?: TableTotalsPlacement | undefined;
1712
+ ScrollStatus?: TableTotalsScrollStatus | undefined;
1713
+ CustomLabel?: string | undefined;
1714
+ TotalCellStyle?: TableCellStyle | undefined;
1715
+ TotalAggregationOptions?: TotalAggregationOption[] | undefined;
1696
1716
  }
1697
1717
  export interface TableConfiguration {
1698
- FieldWells?: TableFieldWells;
1699
- SortConfiguration?: TableSortConfiguration;
1700
- TableOptions?: TableOptions;
1701
- TotalOptions?: TotalOptions;
1702
- FieldOptions?: TableFieldOptions;
1703
- PaginatedReportOptions?: TablePaginatedReportOptions;
1704
- TableInlineVisualizations?: TableInlineVisualization[];
1705
- Interactions?: VisualInteractionOptions;
1718
+ FieldWells?: TableFieldWells | undefined;
1719
+ SortConfiguration?: TableSortConfiguration | undefined;
1720
+ TableOptions?: TableOptions | undefined;
1721
+ TotalOptions?: TotalOptions | undefined;
1722
+ FieldOptions?: TableFieldOptions | undefined;
1723
+ PaginatedReportOptions?: TablePaginatedReportOptions | undefined;
1724
+ TableInlineVisualizations?: TableInlineVisualization[] | undefined;
1725
+ Interactions?: VisualInteractionOptions | undefined;
1706
1726
  }
1707
1727
  export interface TableCellConditionalFormatting {
1708
1728
  FieldId: string | undefined;
1709
- TextFormat?: TextConditionalFormat;
1729
+ TextFormat?: TextConditionalFormat | undefined;
1710
1730
  }
1711
1731
  export interface TableRowConditionalFormatting {
1712
- BackgroundColor?: ConditionalFormattingColor;
1713
- TextColor?: ConditionalFormattingColor;
1732
+ BackgroundColor?: ConditionalFormattingColor | undefined;
1733
+ TextColor?: ConditionalFormattingColor | undefined;
1714
1734
  }
1715
1735
  export interface TableConditionalFormattingOption {
1716
- Cell?: TableCellConditionalFormatting;
1717
- Row?: TableRowConditionalFormatting;
1736
+ Cell?: TableCellConditionalFormatting | undefined;
1737
+ Row?: TableRowConditionalFormatting | undefined;
1718
1738
  }
1719
1739
  export interface TableConditionalFormatting {
1720
- ConditionalFormattingOptions?: TableConditionalFormattingOption[];
1740
+ ConditionalFormattingOptions?: TableConditionalFormattingOption[] | undefined;
1721
1741
  }
1722
1742
  export interface TableVisual {
1723
1743
  VisualId: string | undefined;
1724
- Title?: VisualTitleLabelOptions;
1725
- Subtitle?: VisualSubtitleLabelOptions;
1726
- ChartConfiguration?: TableConfiguration;
1727
- ConditionalFormatting?: TableConditionalFormatting;
1728
- Actions?: VisualCustomAction[];
1744
+ Title?: VisualTitleLabelOptions | undefined;
1745
+ Subtitle?: VisualSubtitleLabelOptions | undefined;
1746
+ ChartConfiguration?: TableConfiguration | undefined;
1747
+ ConditionalFormatting?: TableConditionalFormatting | undefined;
1748
+ Actions?: VisualCustomAction[] | undefined;
1729
1749
  }
1730
1750
  export interface TreeMapAggregatedFieldWells {
1731
- Groups?: DimensionField[];
1732
- Sizes?: MeasureField[];
1733
- Colors?: MeasureField[];
1751
+ Groups?: DimensionField[] | undefined;
1752
+ Sizes?: MeasureField[] | undefined;
1753
+ Colors?: MeasureField[] | undefined;
1734
1754
  }
1735
1755
  export interface TreeMapFieldWells {
1736
- TreeMapAggregatedFieldWells?: TreeMapAggregatedFieldWells;
1756
+ TreeMapAggregatedFieldWells?: TreeMapAggregatedFieldWells | undefined;
1737
1757
  }
1738
1758
  export interface TreeMapSortConfiguration {
1739
- TreeMapSort?: FieldSortOptions[];
1740
- TreeMapGroupItemsLimitConfiguration?: ItemsLimitConfiguration;
1759
+ TreeMapSort?: FieldSortOptions[] | undefined;
1760
+ TreeMapGroupItemsLimitConfiguration?: ItemsLimitConfiguration | undefined;
1741
1761
  }
1742
1762
  export declare const DataPathValueFilterSensitiveLog: (
1743
1763
  obj: DataPathValue