@aws-sdk/client-quicksight 3.428.0 → 3.430.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +140 -140
- package/dist-types/models/models_1.d.ts +98 -98
- package/dist-types/models/models_2.d.ts +105 -105
- package/dist-types/models/models_3.d.ts +62 -62
- package/dist-types/models/models_4.d.ts +11 -11
- package/dist-types/ts3.4/models/models_0.d.ts +140 -140
- package/dist-types/ts3.4/models/models_1.d.ts +98 -100
- package/dist-types/ts3.4/models/models_2.d.ts +105 -117
- package/dist-types/ts3.4/models/models_3.d.ts +62 -62
- package/dist-types/ts3.4/models/models_4.d.ts +11 -11
- package/package.json +11 -11
|
@@ -21,7 +21,7 @@ export declare const Edition: {
|
|
|
21
21
|
export type Edition = (typeof Edition)[keyof typeof Edition];
|
|
22
22
|
export interface AccountInfo {
|
|
23
23
|
AccountName?: string;
|
|
24
|
-
Edition?: Edition
|
|
24
|
+
Edition?: Edition;
|
|
25
25
|
NotificationEmail?: string;
|
|
26
26
|
AuthenticationType?: string;
|
|
27
27
|
AccountSubscriptionStatus?: string;
|
|
@@ -29,7 +29,7 @@ export interface AccountInfo {
|
|
|
29
29
|
}
|
|
30
30
|
export interface AccountSettings {
|
|
31
31
|
AccountName?: string;
|
|
32
|
-
Edition?: Edition
|
|
32
|
+
Edition?: Edition;
|
|
33
33
|
DefaultNamespace?: string;
|
|
34
34
|
NotificationEmail?: string;
|
|
35
35
|
PublicSharingEnabled?: boolean;
|
|
@@ -46,7 +46,7 @@ export declare const DashboardBehavior: {
|
|
|
46
46
|
export type DashboardBehavior =
|
|
47
47
|
(typeof DashboardBehavior)[keyof typeof DashboardBehavior];
|
|
48
48
|
export interface AdHocFilteringOption {
|
|
49
|
-
AvailabilityStatus?: DashboardBehavior
|
|
49
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
50
50
|
}
|
|
51
51
|
export declare const SimpleAttributeAggregationFunction: {
|
|
52
52
|
readonly UNIQUE_VALUE: "UNIQUE_VALUE";
|
|
@@ -54,7 +54,7 @@ export declare const SimpleAttributeAggregationFunction: {
|
|
|
54
54
|
export type SimpleAttributeAggregationFunction =
|
|
55
55
|
(typeof SimpleAttributeAggregationFunction)[keyof typeof SimpleAttributeAggregationFunction];
|
|
56
56
|
export interface AttributeAggregationFunction {
|
|
57
|
-
SimpleAttributeAggregation?: SimpleAttributeAggregationFunction
|
|
57
|
+
SimpleAttributeAggregation?: SimpleAttributeAggregationFunction;
|
|
58
58
|
ValueForMultipleValues?: string;
|
|
59
59
|
}
|
|
60
60
|
export declare const CategoricalAggregationFunction: {
|
|
@@ -90,13 +90,13 @@ export declare const SimpleNumericalAggregationFunction: {
|
|
|
90
90
|
export type SimpleNumericalAggregationFunction =
|
|
91
91
|
(typeof SimpleNumericalAggregationFunction)[keyof typeof SimpleNumericalAggregationFunction];
|
|
92
92
|
export interface NumericalAggregationFunction {
|
|
93
|
-
SimpleNumericalAggregation?: SimpleNumericalAggregationFunction
|
|
93
|
+
SimpleNumericalAggregation?: SimpleNumericalAggregationFunction;
|
|
94
94
|
PercentileAggregation?: PercentileAggregation;
|
|
95
95
|
}
|
|
96
96
|
export interface AggregationFunction {
|
|
97
97
|
NumericalAggregationFunction?: NumericalAggregationFunction;
|
|
98
|
-
CategoricalAggregationFunction?: CategoricalAggregationFunction
|
|
99
|
-
DateAggregationFunction?: DateAggregationFunction
|
|
98
|
+
CategoricalAggregationFunction?: CategoricalAggregationFunction;
|
|
99
|
+
DateAggregationFunction?: DateAggregationFunction;
|
|
100
100
|
AttributeAggregationFunction?: AttributeAggregationFunction;
|
|
101
101
|
}
|
|
102
102
|
export interface ColumnIdentifier {
|
|
@@ -110,7 +110,7 @@ export declare const SortDirection: {
|
|
|
110
110
|
export type SortDirection = (typeof SortDirection)[keyof typeof SortDirection];
|
|
111
111
|
export interface AggregationSortConfiguration {
|
|
112
112
|
Column: ColumnIdentifier | undefined;
|
|
113
|
-
SortDirection: SortDirection |
|
|
113
|
+
SortDirection: SortDirection | undefined;
|
|
114
114
|
AggregationFunction?: AggregationFunction;
|
|
115
115
|
}
|
|
116
116
|
export interface AllSheetsFilterScopeConfiguration {}
|
|
@@ -138,7 +138,7 @@ export interface Entity {
|
|
|
138
138
|
Path?: string;
|
|
139
139
|
}
|
|
140
140
|
export interface AnalysisError {
|
|
141
|
-
Type?: AnalysisErrorType
|
|
141
|
+
Type?: AnalysisErrorType;
|
|
142
142
|
Message?: string;
|
|
143
143
|
ViolatedEntities?: Entity[];
|
|
144
144
|
}
|
|
@@ -161,7 +161,7 @@ export interface Analysis {
|
|
|
161
161
|
AnalysisId?: string;
|
|
162
162
|
Arn?: string;
|
|
163
163
|
Name?: string;
|
|
164
|
-
Status?: ResourceStatus
|
|
164
|
+
Status?: ResourceStatus;
|
|
165
165
|
Errors?: AnalysisError[];
|
|
166
166
|
DataSetArns?: string[];
|
|
167
167
|
ThemeArn?: string;
|
|
@@ -184,7 +184,7 @@ export declare const ResizeOption: {
|
|
|
184
184
|
};
|
|
185
185
|
export type ResizeOption = (typeof ResizeOption)[keyof typeof ResizeOption];
|
|
186
186
|
export interface GridLayoutScreenCanvasSizeOptions {
|
|
187
|
-
ResizeOption: ResizeOption |
|
|
187
|
+
ResizeOption: ResizeOption | undefined;
|
|
188
188
|
OptimizedViewPortWidth?: string;
|
|
189
189
|
}
|
|
190
190
|
export interface GridLayoutCanvasSizeOptions {
|
|
@@ -224,8 +224,8 @@ export declare const PaperSize: {
|
|
|
224
224
|
};
|
|
225
225
|
export type PaperSize = (typeof PaperSize)[keyof typeof PaperSize];
|
|
226
226
|
export interface SectionBasedLayoutPaperCanvasSizeOptions {
|
|
227
|
-
PaperSize?: PaperSize
|
|
228
|
-
PaperOrientation?: PaperOrientation
|
|
227
|
+
PaperSize?: PaperSize;
|
|
228
|
+
PaperOrientation?: PaperOrientation;
|
|
229
229
|
PaperMargin?: Spacing;
|
|
230
230
|
}
|
|
231
231
|
export interface SectionBasedLayoutCanvasSizeOptions {
|
|
@@ -246,7 +246,7 @@ export type SheetContentType =
|
|
|
246
246
|
export interface DefaultNewSheetConfiguration {
|
|
247
247
|
InteractiveLayoutConfiguration?: DefaultInteractiveLayoutConfiguration;
|
|
248
248
|
PaginatedLayoutConfiguration?: DefaultPaginatedLayoutConfiguration;
|
|
249
|
-
SheetContentType?: SheetContentType
|
|
249
|
+
SheetContentType?: SheetContentType;
|
|
250
250
|
}
|
|
251
251
|
export interface AnalysisDefaults {
|
|
252
252
|
DefaultNewSheetConfiguration: DefaultNewSheetConfiguration | undefined;
|
|
@@ -265,7 +265,7 @@ export type SpecialValue = (typeof SpecialValue)[keyof typeof SpecialValue];
|
|
|
265
265
|
export interface CustomColor {
|
|
266
266
|
FieldValue?: string;
|
|
267
267
|
Color: string | undefined;
|
|
268
|
-
SpecialValue?: SpecialValue
|
|
268
|
+
SpecialValue?: SpecialValue;
|
|
269
269
|
}
|
|
270
270
|
export interface ColorsConfiguration {
|
|
271
271
|
CustomColors?: CustomColor[];
|
|
@@ -283,7 +283,7 @@ export declare const NegativeValueDisplayMode: {
|
|
|
283
283
|
export type NegativeValueDisplayMode =
|
|
284
284
|
(typeof NegativeValueDisplayMode)[keyof typeof NegativeValueDisplayMode];
|
|
285
285
|
export interface NegativeValueConfiguration {
|
|
286
|
-
DisplayMode: NegativeValueDisplayMode |
|
|
286
|
+
DisplayMode: NegativeValueDisplayMode | undefined;
|
|
287
287
|
}
|
|
288
288
|
export declare const NumberScale: {
|
|
289
289
|
readonly AUTO: "AUTO";
|
|
@@ -307,11 +307,11 @@ export declare const Visibility: {
|
|
|
307
307
|
};
|
|
308
308
|
export type Visibility = (typeof Visibility)[keyof typeof Visibility];
|
|
309
309
|
export interface ThousandSeparatorOptions {
|
|
310
|
-
Symbol?: NumericSeparatorSymbol
|
|
311
|
-
Visibility?: Visibility
|
|
310
|
+
Symbol?: NumericSeparatorSymbol;
|
|
311
|
+
Visibility?: Visibility;
|
|
312
312
|
}
|
|
313
313
|
export interface NumericSeparatorConfiguration {
|
|
314
|
-
DecimalSeparator?: NumericSeparatorSymbol
|
|
314
|
+
DecimalSeparator?: NumericSeparatorSymbol;
|
|
315
315
|
ThousandsSeparator?: ThousandSeparatorOptions;
|
|
316
316
|
}
|
|
317
317
|
export interface CurrencyDisplayFormatConfiguration {
|
|
@@ -320,7 +320,7 @@ export interface CurrencyDisplayFormatConfiguration {
|
|
|
320
320
|
SeparatorConfiguration?: NumericSeparatorConfiguration;
|
|
321
321
|
Symbol?: string;
|
|
322
322
|
DecimalPlacesConfiguration?: DecimalPlacesConfiguration;
|
|
323
|
-
NumberScale?: NumberScale
|
|
323
|
+
NumberScale?: NumberScale;
|
|
324
324
|
NegativeValueConfiguration?: NegativeValueConfiguration;
|
|
325
325
|
NullValueFormatConfiguration?: NullValueFormatConfiguration;
|
|
326
326
|
}
|
|
@@ -329,7 +329,7 @@ export interface NumberDisplayFormatConfiguration {
|
|
|
329
329
|
Suffix?: string;
|
|
330
330
|
SeparatorConfiguration?: NumericSeparatorConfiguration;
|
|
331
331
|
DecimalPlacesConfiguration?: DecimalPlacesConfiguration;
|
|
332
|
-
NumberScale?: NumberScale
|
|
332
|
+
NumberScale?: NumberScale;
|
|
333
333
|
NegativeValueConfiguration?: NegativeValueConfiguration;
|
|
334
334
|
NullValueFormatConfiguration?: NullValueFormatConfiguration;
|
|
335
335
|
}
|
|
@@ -371,7 +371,7 @@ export type ColumnRole = (typeof ColumnRole)[keyof typeof ColumnRole];
|
|
|
371
371
|
export interface ColumnConfiguration {
|
|
372
372
|
Column: ColumnIdentifier | undefined;
|
|
373
373
|
FormatConfiguration?: FormatConfiguration;
|
|
374
|
-
Role?: ColumnRole
|
|
374
|
+
Role?: ColumnRole;
|
|
375
375
|
ColorsConfiguration?: ColorsConfiguration;
|
|
376
376
|
}
|
|
377
377
|
export interface DataSetIdentifierDeclaration {
|
|
@@ -407,23 +407,23 @@ export declare const CategoryFilterSelectAllOptions: {
|
|
|
407
407
|
export type CategoryFilterSelectAllOptions =
|
|
408
408
|
(typeof CategoryFilterSelectAllOptions)[keyof typeof CategoryFilterSelectAllOptions];
|
|
409
409
|
export interface CustomFilterConfiguration {
|
|
410
|
-
MatchOperator: CategoryFilterMatchOperator |
|
|
410
|
+
MatchOperator: CategoryFilterMatchOperator | undefined;
|
|
411
411
|
CategoryValue?: string;
|
|
412
|
-
SelectAllOptions?: CategoryFilterSelectAllOptions
|
|
412
|
+
SelectAllOptions?: CategoryFilterSelectAllOptions;
|
|
413
413
|
ParameterName?: string;
|
|
414
|
-
NullOption: FilterNullOption |
|
|
414
|
+
NullOption: FilterNullOption | undefined;
|
|
415
415
|
}
|
|
416
416
|
export interface CustomFilterListConfiguration {
|
|
417
|
-
MatchOperator: CategoryFilterMatchOperator |
|
|
417
|
+
MatchOperator: CategoryFilterMatchOperator | undefined;
|
|
418
418
|
CategoryValues?: string[];
|
|
419
|
-
SelectAllOptions?: CategoryFilterSelectAllOptions
|
|
420
|
-
NullOption: FilterNullOption |
|
|
419
|
+
SelectAllOptions?: CategoryFilterSelectAllOptions;
|
|
420
|
+
NullOption: FilterNullOption | undefined;
|
|
421
421
|
}
|
|
422
422
|
export interface FilterListConfiguration {
|
|
423
|
-
MatchOperator: CategoryFilterMatchOperator |
|
|
423
|
+
MatchOperator: CategoryFilterMatchOperator | undefined;
|
|
424
424
|
CategoryValues?: string[];
|
|
425
|
-
SelectAllOptions?: CategoryFilterSelectAllOptions
|
|
426
|
-
NullOption?: FilterNullOption
|
|
425
|
+
SelectAllOptions?: CategoryFilterSelectAllOptions;
|
|
426
|
+
NullOption?: FilterNullOption;
|
|
427
427
|
}
|
|
428
428
|
export interface CategoryFilterConfiguration {
|
|
429
429
|
FilterListConfiguration?: FilterListConfiguration;
|
|
@@ -450,11 +450,11 @@ export interface NumericEqualityFilter {
|
|
|
450
450
|
FilterId: string | undefined;
|
|
451
451
|
Column: ColumnIdentifier | undefined;
|
|
452
452
|
Value?: number;
|
|
453
|
-
SelectAllOptions?: NumericFilterSelectAllOptions
|
|
454
|
-
MatchOperator: NumericEqualityMatchOperator |
|
|
453
|
+
SelectAllOptions?: NumericFilterSelectAllOptions;
|
|
454
|
+
MatchOperator: NumericEqualityMatchOperator | undefined;
|
|
455
455
|
AggregationFunction?: AggregationFunction;
|
|
456
456
|
ParameterName?: string;
|
|
457
|
-
NullOption: FilterNullOption |
|
|
457
|
+
NullOption: FilterNullOption | undefined;
|
|
458
458
|
}
|
|
459
459
|
export interface NumericRangeFilterValue {
|
|
460
460
|
StaticValue?: number;
|
|
@@ -467,16 +467,16 @@ export interface NumericRangeFilter {
|
|
|
467
467
|
IncludeMaximum?: boolean;
|
|
468
468
|
RangeMinimum?: NumericRangeFilterValue;
|
|
469
469
|
RangeMaximum?: NumericRangeFilterValue;
|
|
470
|
-
SelectAllOptions?: NumericFilterSelectAllOptions
|
|
470
|
+
SelectAllOptions?: NumericFilterSelectAllOptions;
|
|
471
471
|
AggregationFunction?: AggregationFunction;
|
|
472
|
-
NullOption: FilterNullOption |
|
|
472
|
+
NullOption: FilterNullOption | undefined;
|
|
473
473
|
}
|
|
474
474
|
export declare const AnchorOption: {
|
|
475
475
|
readonly NOW: "NOW";
|
|
476
476
|
};
|
|
477
477
|
export type AnchorOption = (typeof AnchorOption)[keyof typeof AnchorOption];
|
|
478
478
|
export interface AnchorDateConfiguration {
|
|
479
|
-
AnchorOption?: AnchorOption
|
|
479
|
+
AnchorOption?: AnchorOption;
|
|
480
480
|
ParameterName?: string;
|
|
481
481
|
}
|
|
482
482
|
export declare const TimeGranularity: {
|
|
@@ -499,8 +499,8 @@ export declare const WidgetStatus: {
|
|
|
499
499
|
export type WidgetStatus = (typeof WidgetStatus)[keyof typeof WidgetStatus];
|
|
500
500
|
export interface ExcludePeriodConfiguration {
|
|
501
501
|
Amount: number | undefined;
|
|
502
|
-
Granularity: TimeGranularity |
|
|
503
|
-
Status?: WidgetStatus
|
|
502
|
+
Granularity: TimeGranularity | undefined;
|
|
503
|
+
Status?: WidgetStatus;
|
|
504
504
|
}
|
|
505
505
|
export declare const RelativeDateType: {
|
|
506
506
|
readonly LAST: "LAST";
|
|
@@ -515,12 +515,12 @@ export interface RelativeDatesFilter {
|
|
|
515
515
|
FilterId: string | undefined;
|
|
516
516
|
Column: ColumnIdentifier | undefined;
|
|
517
517
|
AnchorDateConfiguration: AnchorDateConfiguration | undefined;
|
|
518
|
-
MinimumGranularity?: TimeGranularity
|
|
519
|
-
TimeGranularity: TimeGranularity |
|
|
520
|
-
RelativeDateType: RelativeDateType |
|
|
518
|
+
MinimumGranularity?: TimeGranularity;
|
|
519
|
+
TimeGranularity: TimeGranularity | undefined;
|
|
520
|
+
RelativeDateType: RelativeDateType | undefined;
|
|
521
521
|
RelativeDateValue?: number;
|
|
522
522
|
ParameterName?: string;
|
|
523
|
-
NullOption: FilterNullOption |
|
|
523
|
+
NullOption: FilterNullOption | undefined;
|
|
524
524
|
ExcludePeriodConfiguration?: ExcludePeriodConfiguration;
|
|
525
525
|
}
|
|
526
526
|
export interface TimeEqualityFilter {
|
|
@@ -528,7 +528,7 @@ export interface TimeEqualityFilter {
|
|
|
528
528
|
Column: ColumnIdentifier | undefined;
|
|
529
529
|
Value?: Date;
|
|
530
530
|
ParameterName?: string;
|
|
531
|
-
TimeGranularity?: TimeGranularity
|
|
531
|
+
TimeGranularity?: TimeGranularity;
|
|
532
532
|
}
|
|
533
533
|
export interface RollingDateConfiguration {
|
|
534
534
|
DataSetIdentifier?: string;
|
|
@@ -546,16 +546,16 @@ export interface TimeRangeFilter {
|
|
|
546
546
|
IncludeMaximum?: boolean;
|
|
547
547
|
RangeMinimumValue?: TimeRangeFilterValue;
|
|
548
548
|
RangeMaximumValue?: TimeRangeFilterValue;
|
|
549
|
-
NullOption: FilterNullOption |
|
|
549
|
+
NullOption: FilterNullOption | undefined;
|
|
550
550
|
ExcludePeriodConfiguration?: ExcludePeriodConfiguration;
|
|
551
|
-
TimeGranularity?: TimeGranularity
|
|
551
|
+
TimeGranularity?: TimeGranularity;
|
|
552
552
|
}
|
|
553
553
|
export interface TopBottomFilter {
|
|
554
554
|
FilterId: string | undefined;
|
|
555
555
|
Column: ColumnIdentifier | undefined;
|
|
556
556
|
Limit?: number;
|
|
557
557
|
AggregationSortConfigurations: AggregationSortConfiguration[] | undefined;
|
|
558
|
-
TimeGranularity?: TimeGranularity
|
|
558
|
+
TimeGranularity?: TimeGranularity;
|
|
559
559
|
ParameterName?: string;
|
|
560
560
|
}
|
|
561
561
|
export interface Filter {
|
|
@@ -575,7 +575,7 @@ export type FilterVisualScope =
|
|
|
575
575
|
(typeof FilterVisualScope)[keyof typeof FilterVisualScope];
|
|
576
576
|
export interface SheetVisualScopingConfiguration {
|
|
577
577
|
SheetId: string | undefined;
|
|
578
|
-
Scope: FilterVisualScope |
|
|
578
|
+
Scope: FilterVisualScope | undefined;
|
|
579
579
|
VisualIds?: string[];
|
|
580
580
|
}
|
|
581
581
|
export interface SelectedSheetsFilterScopeConfiguration {
|
|
@@ -589,8 +589,8 @@ export interface FilterGroup {
|
|
|
589
589
|
FilterGroupId: string | undefined;
|
|
590
590
|
Filters: Filter[] | undefined;
|
|
591
591
|
ScopeConfiguration: FilterScopeConfiguration | undefined;
|
|
592
|
-
Status?: WidgetStatus
|
|
593
|
-
CrossDataset: CrossDatasetTypes |
|
|
592
|
+
Status?: WidgetStatus;
|
|
593
|
+
CrossDataset: CrossDatasetTypes | undefined;
|
|
594
594
|
}
|
|
595
595
|
export interface DynamicDefaultValue {
|
|
596
596
|
UserNameColumn?: ColumnIdentifier;
|
|
@@ -613,13 +613,13 @@ export declare const ValueWhenUnsetOption: {
|
|
|
613
613
|
export type ValueWhenUnsetOption =
|
|
614
614
|
(typeof ValueWhenUnsetOption)[keyof typeof ValueWhenUnsetOption];
|
|
615
615
|
export interface DateTimeValueWhenUnsetConfiguration {
|
|
616
|
-
ValueWhenUnsetOption?: ValueWhenUnsetOption
|
|
616
|
+
ValueWhenUnsetOption?: ValueWhenUnsetOption;
|
|
617
617
|
CustomValue?: Date;
|
|
618
618
|
}
|
|
619
619
|
export interface DateTimeParameterDeclaration {
|
|
620
620
|
Name: string | undefined;
|
|
621
621
|
DefaultValues?: DateTimeDefaultValues;
|
|
622
|
-
TimeGranularity?: TimeGranularity
|
|
622
|
+
TimeGranularity?: TimeGranularity;
|
|
623
623
|
ValueWhenUnset?: DateTimeValueWhenUnsetConfiguration;
|
|
624
624
|
MappedDataSetParameters?: MappedDataSetParameter[];
|
|
625
625
|
}
|
|
@@ -634,11 +634,11 @@ export declare const ParameterValueType: {
|
|
|
634
634
|
export type ParameterValueType =
|
|
635
635
|
(typeof ParameterValueType)[keyof typeof ParameterValueType];
|
|
636
636
|
export interface DecimalValueWhenUnsetConfiguration {
|
|
637
|
-
ValueWhenUnsetOption?: ValueWhenUnsetOption
|
|
637
|
+
ValueWhenUnsetOption?: ValueWhenUnsetOption;
|
|
638
638
|
CustomValue?: number;
|
|
639
639
|
}
|
|
640
640
|
export interface DecimalParameterDeclaration {
|
|
641
|
-
ParameterValueType: ParameterValueType |
|
|
641
|
+
ParameterValueType: ParameterValueType | undefined;
|
|
642
642
|
Name: string | undefined;
|
|
643
643
|
DefaultValues?: DecimalDefaultValues;
|
|
644
644
|
ValueWhenUnset?: DecimalValueWhenUnsetConfiguration;
|
|
@@ -649,11 +649,11 @@ export interface IntegerDefaultValues {
|
|
|
649
649
|
StaticValues?: number[];
|
|
650
650
|
}
|
|
651
651
|
export interface IntegerValueWhenUnsetConfiguration {
|
|
652
|
-
ValueWhenUnsetOption?: ValueWhenUnsetOption
|
|
652
|
+
ValueWhenUnsetOption?: ValueWhenUnsetOption;
|
|
653
653
|
CustomValue?: number;
|
|
654
654
|
}
|
|
655
655
|
export interface IntegerParameterDeclaration {
|
|
656
|
-
ParameterValueType: ParameterValueType |
|
|
656
|
+
ParameterValueType: ParameterValueType | undefined;
|
|
657
657
|
Name: string | undefined;
|
|
658
658
|
DefaultValues?: IntegerDefaultValues;
|
|
659
659
|
ValueWhenUnset?: IntegerValueWhenUnsetConfiguration;
|
|
@@ -664,11 +664,11 @@ export interface StringDefaultValues {
|
|
|
664
664
|
StaticValues?: string[];
|
|
665
665
|
}
|
|
666
666
|
export interface StringValueWhenUnsetConfiguration {
|
|
667
|
-
ValueWhenUnsetOption?: ValueWhenUnsetOption
|
|
667
|
+
ValueWhenUnsetOption?: ValueWhenUnsetOption;
|
|
668
668
|
CustomValue?: string;
|
|
669
669
|
}
|
|
670
670
|
export interface StringParameterDeclaration {
|
|
671
|
-
ParameterValueType: ParameterValueType |
|
|
671
|
+
ParameterValueType: ParameterValueType | undefined;
|
|
672
672
|
Name: string | undefined;
|
|
673
673
|
DefaultValues?: StringDefaultValues;
|
|
674
674
|
ValueWhenUnset?: StringValueWhenUnsetConfiguration;
|
|
@@ -681,7 +681,7 @@ export interface ParameterDeclaration {
|
|
|
681
681
|
DateTimeParameterDeclaration?: DateTimeParameterDeclaration;
|
|
682
682
|
}
|
|
683
683
|
export interface SheetControlInfoIconLabelOptions {
|
|
684
|
-
Visibility?: Visibility
|
|
684
|
+
Visibility?: Visibility;
|
|
685
685
|
InfoIconText?: string;
|
|
686
686
|
}
|
|
687
687
|
export declare const FontDecoration: {
|
|
@@ -700,7 +700,7 @@ export declare const RelativeFontSize: {
|
|
|
700
700
|
export type RelativeFontSize =
|
|
701
701
|
(typeof RelativeFontSize)[keyof typeof RelativeFontSize];
|
|
702
702
|
export interface FontSize {
|
|
703
|
-
Relative?: RelativeFontSize
|
|
703
|
+
Relative?: RelativeFontSize;
|
|
704
704
|
}
|
|
705
705
|
export declare const FontStyle: {
|
|
706
706
|
readonly ITALIC: "ITALIC";
|
|
@@ -714,17 +714,17 @@ export declare const FontWeightName: {
|
|
|
714
714
|
export type FontWeightName =
|
|
715
715
|
(typeof FontWeightName)[keyof typeof FontWeightName];
|
|
716
716
|
export interface FontWeight {
|
|
717
|
-
Name?: FontWeightName
|
|
717
|
+
Name?: FontWeightName;
|
|
718
718
|
}
|
|
719
719
|
export interface FontConfiguration {
|
|
720
720
|
FontSize?: FontSize;
|
|
721
|
-
FontDecoration?: FontDecoration
|
|
721
|
+
FontDecoration?: FontDecoration;
|
|
722
722
|
FontColor?: string;
|
|
723
723
|
FontWeight?: FontWeight;
|
|
724
|
-
FontStyle?: FontStyle
|
|
724
|
+
FontStyle?: FontStyle;
|
|
725
725
|
}
|
|
726
726
|
export interface LabelOptions {
|
|
727
|
-
Visibility?: Visibility
|
|
727
|
+
Visibility?: Visibility;
|
|
728
728
|
FontConfiguration?: FontConfiguration;
|
|
729
729
|
CustomLabel?: string;
|
|
730
730
|
}
|
|
@@ -744,7 +744,7 @@ export interface FilterDateTimePickerControl {
|
|
|
744
744
|
Title: string | undefined;
|
|
745
745
|
SourceFilterId: string | undefined;
|
|
746
746
|
DisplayOptions?: DateTimePickerControlDisplayOptions;
|
|
747
|
-
Type?: SheetControlDateTimePickerType
|
|
747
|
+
Type?: SheetControlDateTimePickerType;
|
|
748
748
|
}
|
|
749
749
|
export interface CascadingControlSource {
|
|
750
750
|
SourceSheetControlId?: string;
|
|
@@ -754,7 +754,7 @@ export interface CascadingControlConfiguration {
|
|
|
754
754
|
SourceControls?: CascadingControlSource[];
|
|
755
755
|
}
|
|
756
756
|
export interface ListControlSelectAllOptions {
|
|
757
|
-
Visibility?: Visibility
|
|
757
|
+
Visibility?: Visibility;
|
|
758
758
|
}
|
|
759
759
|
export interface DropDownControlDisplayOptions {
|
|
760
760
|
SelectAllOptions?: ListControlSelectAllOptions;
|
|
@@ -775,12 +775,12 @@ export interface FilterDropDownControl {
|
|
|
775
775
|
Title: string | undefined;
|
|
776
776
|
SourceFilterId: string | undefined;
|
|
777
777
|
DisplayOptions?: DropDownControlDisplayOptions;
|
|
778
|
-
Type?: SheetControlListType
|
|
778
|
+
Type?: SheetControlListType;
|
|
779
779
|
SelectableValues?: FilterSelectableValues;
|
|
780
780
|
CascadingControlConfiguration?: CascadingControlConfiguration;
|
|
781
781
|
}
|
|
782
782
|
export interface ListControlSearchOptions {
|
|
783
|
-
Visibility?: Visibility
|
|
783
|
+
Visibility?: Visibility;
|
|
784
784
|
}
|
|
785
785
|
export interface ListControlDisplayOptions {
|
|
786
786
|
SearchOptions?: ListControlSearchOptions;
|
|
@@ -793,7 +793,7 @@ export interface FilterListControl {
|
|
|
793
793
|
Title: string | undefined;
|
|
794
794
|
SourceFilterId: string | undefined;
|
|
795
795
|
DisplayOptions?: ListControlDisplayOptions;
|
|
796
|
-
Type?: SheetControlListType
|
|
796
|
+
Type?: SheetControlListType;
|
|
797
797
|
SelectableValues?: FilterSelectableValues;
|
|
798
798
|
CascadingControlConfiguration?: CascadingControlConfiguration;
|
|
799
799
|
}
|
|
@@ -823,13 +823,13 @@ export interface FilterSliderControl {
|
|
|
823
823
|
Title: string | undefined;
|
|
824
824
|
SourceFilterId: string | undefined;
|
|
825
825
|
DisplayOptions?: SliderControlDisplayOptions;
|
|
826
|
-
Type?: SheetControlSliderType
|
|
826
|
+
Type?: SheetControlSliderType;
|
|
827
827
|
MaximumValue: number | undefined;
|
|
828
828
|
MinimumValue: number | undefined;
|
|
829
829
|
StepSize: number | undefined;
|
|
830
830
|
}
|
|
831
831
|
export interface TextControlPlaceholderOptions {
|
|
832
|
-
Visibility?: Visibility
|
|
832
|
+
Visibility?: Visibility;
|
|
833
833
|
}
|
|
834
834
|
export interface TextAreaControlDisplayOptions {
|
|
835
835
|
TitleOptions?: LabelOptions;
|
|
@@ -864,11 +864,11 @@ export interface FilterControl {
|
|
|
864
864
|
RelativeDateTime?: FilterRelativeDateTimeControl;
|
|
865
865
|
}
|
|
866
866
|
export interface FreeFormLayoutElementBackgroundStyle {
|
|
867
|
-
Visibility?: Visibility
|
|
867
|
+
Visibility?: Visibility;
|
|
868
868
|
Color?: string;
|
|
869
869
|
}
|
|
870
870
|
export interface FreeFormLayoutElementBorderStyle {
|
|
871
|
-
Visibility?: Visibility
|
|
871
|
+
Visibility?: Visibility;
|
|
872
872
|
Color?: string;
|
|
873
873
|
}
|
|
874
874
|
export declare const LayoutElementType: {
|
|
@@ -880,10 +880,10 @@ export declare const LayoutElementType: {
|
|
|
880
880
|
export type LayoutElementType =
|
|
881
881
|
(typeof LayoutElementType)[keyof typeof LayoutElementType];
|
|
882
882
|
export interface LoadingAnimation {
|
|
883
|
-
Visibility?: Visibility
|
|
883
|
+
Visibility?: Visibility;
|
|
884
884
|
}
|
|
885
885
|
export interface SheetElementConfigurationOverrides {
|
|
886
|
-
Visibility?: Visibility
|
|
886
|
+
Visibility?: Visibility;
|
|
887
887
|
}
|
|
888
888
|
export interface SheetElementRenderingRule {
|
|
889
889
|
Expression: string | undefined;
|
|
@@ -891,12 +891,12 @@ export interface SheetElementRenderingRule {
|
|
|
891
891
|
}
|
|
892
892
|
export interface FreeFormLayoutElement {
|
|
893
893
|
ElementId: string | undefined;
|
|
894
|
-
ElementType: LayoutElementType |
|
|
894
|
+
ElementType: LayoutElementType | undefined;
|
|
895
895
|
XAxisLocation: string | undefined;
|
|
896
896
|
YAxisLocation: string | undefined;
|
|
897
897
|
Width: string | undefined;
|
|
898
898
|
Height: string | undefined;
|
|
899
|
-
Visibility?: Visibility
|
|
899
|
+
Visibility?: Visibility;
|
|
900
900
|
RenderingRules?: SheetElementRenderingRule[];
|
|
901
901
|
BorderStyle?: FreeFormLayoutElementBorderStyle;
|
|
902
902
|
SelectedBorderStyle?: FreeFormLayoutElementBorderStyle;
|
|
@@ -909,7 +909,7 @@ export interface FreeFormLayoutConfiguration {
|
|
|
909
909
|
}
|
|
910
910
|
export interface GridLayoutElement {
|
|
911
911
|
ElementId: string | undefined;
|
|
912
|
-
ElementType: LayoutElementType |
|
|
912
|
+
ElementType: LayoutElementType | undefined;
|
|
913
913
|
ColumnIndex?: number;
|
|
914
914
|
ColumnSpan: number | undefined;
|
|
915
915
|
RowIndex?: number;
|
|
@@ -935,7 +935,7 @@ export declare const SectionPageBreakStatus: {
|
|
|
935
935
|
export type SectionPageBreakStatus =
|
|
936
936
|
(typeof SectionPageBreakStatus)[keyof typeof SectionPageBreakStatus];
|
|
937
937
|
export interface SectionAfterPageBreak {
|
|
938
|
-
Status?: SectionPageBreakStatus
|
|
938
|
+
Status?: SectionPageBreakStatus;
|
|
939
939
|
}
|
|
940
940
|
export interface SectionPageBreakConfiguration {
|
|
941
941
|
After?: SectionAfterPageBreak;
|
|
@@ -984,7 +984,7 @@ export interface ParameterDropDownControl {
|
|
|
984
984
|
Title: string | undefined;
|
|
985
985
|
SourceParameterName: string | undefined;
|
|
986
986
|
DisplayOptions?: DropDownControlDisplayOptions;
|
|
987
|
-
Type?: SheetControlListType
|
|
987
|
+
Type?: SheetControlListType;
|
|
988
988
|
SelectableValues?: ParameterSelectableValues;
|
|
989
989
|
CascadingControlConfiguration?: CascadingControlConfiguration;
|
|
990
990
|
}
|
|
@@ -993,7 +993,7 @@ export interface ParameterListControl {
|
|
|
993
993
|
Title: string | undefined;
|
|
994
994
|
SourceParameterName: string | undefined;
|
|
995
995
|
DisplayOptions?: ListControlDisplayOptions;
|
|
996
|
-
Type?: SheetControlListType
|
|
996
|
+
Type?: SheetControlListType;
|
|
997
997
|
SelectableValues?: ParameterSelectableValues;
|
|
998
998
|
CascadingControlConfiguration?: CascadingControlConfiguration;
|
|
999
999
|
}
|
|
@@ -1044,7 +1044,7 @@ export type SelectedFieldOptions =
|
|
|
1044
1044
|
(typeof SelectedFieldOptions)[keyof typeof SelectedFieldOptions];
|
|
1045
1045
|
export interface FilterOperationSelectedFieldsConfiguration {
|
|
1046
1046
|
SelectedFields?: string[];
|
|
1047
|
-
SelectedFieldOptions?: SelectedFieldOptions
|
|
1047
|
+
SelectedFieldOptions?: SelectedFieldOptions;
|
|
1048
1048
|
SelectedColumns?: ColumnIdentifier[];
|
|
1049
1049
|
}
|
|
1050
1050
|
export declare const TargetVisualOptions: {
|
|
@@ -1054,7 +1054,7 @@ export type TargetVisualOptions =
|
|
|
1054
1054
|
(typeof TargetVisualOptions)[keyof typeof TargetVisualOptions];
|
|
1055
1055
|
export interface SameSheetTargetVisualConfiguration {
|
|
1056
1056
|
TargetVisuals?: string[];
|
|
1057
|
-
TargetVisualOptions?: TargetVisualOptions
|
|
1057
|
+
TargetVisualOptions?: TargetVisualOptions;
|
|
1058
1058
|
}
|
|
1059
1059
|
export interface FilterOperationTargetVisualsConfiguration {
|
|
1060
1060
|
SameSheetTargetVisualConfiguration?: SameSheetTargetVisualConfiguration;
|
|
@@ -1090,7 +1090,7 @@ export type SelectAllValueOptions =
|
|
|
1090
1090
|
(typeof SelectAllValueOptions)[keyof typeof SelectAllValueOptions];
|
|
1091
1091
|
export interface DestinationParameterValueConfiguration {
|
|
1092
1092
|
CustomValuesConfiguration?: CustomValuesConfiguration;
|
|
1093
|
-
SelectAllValueOptions?: SelectAllValueOptions
|
|
1093
|
+
SelectAllValueOptions?: SelectAllValueOptions;
|
|
1094
1094
|
SourceParameterName?: string;
|
|
1095
1095
|
SourceField?: string;
|
|
1096
1096
|
SourceColumn?: ColumnIdentifier;
|
|
@@ -1111,7 +1111,7 @@ export type URLTargetConfiguration =
|
|
|
1111
1111
|
(typeof URLTargetConfiguration)[keyof typeof URLTargetConfiguration];
|
|
1112
1112
|
export interface CustomActionURLOperation {
|
|
1113
1113
|
URLTemplate: string | undefined;
|
|
1114
|
-
URLTarget: URLTargetConfiguration |
|
|
1114
|
+
URLTarget: URLTargetConfiguration | undefined;
|
|
1115
1115
|
}
|
|
1116
1116
|
export interface VisualCustomActionOperation {
|
|
1117
1117
|
FilterOperation?: CustomActionFilterOperation;
|
|
@@ -1128,8 +1128,8 @@ export type VisualCustomActionTrigger =
|
|
|
1128
1128
|
export interface VisualCustomAction {
|
|
1129
1129
|
CustomActionId: string | undefined;
|
|
1130
1130
|
Name: string | undefined;
|
|
1131
|
-
Status?: WidgetStatus
|
|
1132
|
-
Trigger: VisualCustomActionTrigger |
|
|
1131
|
+
Status?: WidgetStatus;
|
|
1132
|
+
Trigger: VisualCustomActionTrigger | undefined;
|
|
1133
1133
|
ActionOperations: VisualCustomActionOperation[] | undefined;
|
|
1134
1134
|
}
|
|
1135
1135
|
export declare const BarsArrangement: {
|
|
@@ -1140,7 +1140,7 @@ export declare const BarsArrangement: {
|
|
|
1140
1140
|
export type BarsArrangement =
|
|
1141
1141
|
(typeof BarsArrangement)[keyof typeof BarsArrangement];
|
|
1142
1142
|
export interface DateAxisOptions {
|
|
1143
|
-
MissingDateVisibility?: Visibility
|
|
1143
|
+
MissingDateVisibility?: Visibility;
|
|
1144
1144
|
}
|
|
1145
1145
|
export interface AxisDisplayDataDrivenRange {}
|
|
1146
1146
|
export interface AxisDisplayMinMaxRange {
|
|
@@ -1178,7 +1178,7 @@ export interface VisibleRangeOptions {
|
|
|
1178
1178
|
PercentRange?: PercentVisibleRange;
|
|
1179
1179
|
}
|
|
1180
1180
|
export interface ScrollBarOptions {
|
|
1181
|
-
Visibility?: Visibility
|
|
1181
|
+
Visibility?: Visibility;
|
|
1182
1182
|
VisibleRange?: VisibleRangeOptions;
|
|
1183
1183
|
}
|
|
1184
1184
|
export interface AxisTickLabelOptions {
|
|
@@ -1187,8 +1187,8 @@ export interface AxisTickLabelOptions {
|
|
|
1187
1187
|
}
|
|
1188
1188
|
export interface AxisDisplayOptions {
|
|
1189
1189
|
TickLabelOptions?: AxisTickLabelOptions;
|
|
1190
|
-
AxisLineVisibility?: Visibility
|
|
1191
|
-
GridLineVisibility?: Visibility
|
|
1190
|
+
AxisLineVisibility?: Visibility;
|
|
1191
|
+
GridLineVisibility?: Visibility;
|
|
1192
1192
|
DataOptions?: AxisDataOptions;
|
|
1193
1193
|
ScrollbarOptions?: ScrollBarOptions;
|
|
1194
1194
|
AxisOffset?: string;
|
|
@@ -1203,8 +1203,8 @@ export interface AxisLabelOptions {
|
|
|
1203
1203
|
ApplyTo?: AxisLabelReferenceOptions;
|
|
1204
1204
|
}
|
|
1205
1205
|
export interface ChartAxisLabelOptions {
|
|
1206
|
-
Visibility?: Visibility
|
|
1207
|
-
SortIconVisibility?: Visibility
|
|
1206
|
+
Visibility?: Visibility;
|
|
1207
|
+
SortIconVisibility?: Visibility;
|
|
1208
1208
|
AxisLabelOptions?: AxisLabelOptions[];
|
|
1209
1209
|
}
|
|
1210
1210
|
export interface ContributionAnalysisDefault {
|
|
@@ -1214,20 +1214,20 @@ export interface ContributionAnalysisDefault {
|
|
|
1214
1214
|
export interface DataPathLabelType {
|
|
1215
1215
|
FieldId?: string;
|
|
1216
1216
|
FieldValue?: string;
|
|
1217
|
-
Visibility?: Visibility
|
|
1217
|
+
Visibility?: Visibility;
|
|
1218
1218
|
}
|
|
1219
1219
|
export interface FieldLabelType {
|
|
1220
1220
|
FieldId?: string;
|
|
1221
|
-
Visibility?: Visibility
|
|
1221
|
+
Visibility?: Visibility;
|
|
1222
1222
|
}
|
|
1223
1223
|
export interface MaximumLabelType {
|
|
1224
|
-
Visibility?: Visibility
|
|
1224
|
+
Visibility?: Visibility;
|
|
1225
1225
|
}
|
|
1226
1226
|
export interface MinimumLabelType {
|
|
1227
|
-
Visibility?: Visibility
|
|
1227
|
+
Visibility?: Visibility;
|
|
1228
1228
|
}
|
|
1229
1229
|
export interface RangeEndsLabelType {
|
|
1230
|
-
Visibility?: Visibility
|
|
1230
|
+
Visibility?: Visibility;
|
|
1231
1231
|
}
|
|
1232
1232
|
export interface DataLabelType {
|
|
1233
1233
|
FieldLabelType?: FieldLabelType;
|
|
@@ -1260,16 +1260,16 @@ export declare const DataLabelPosition: {
|
|
|
1260
1260
|
export type DataLabelPosition =
|
|
1261
1261
|
(typeof DataLabelPosition)[keyof typeof DataLabelPosition];
|
|
1262
1262
|
export interface DataLabelOptions {
|
|
1263
|
-
Visibility?: Visibility
|
|
1264
|
-
CategoryLabelVisibility?: Visibility
|
|
1265
|
-
MeasureLabelVisibility?: Visibility
|
|
1263
|
+
Visibility?: Visibility;
|
|
1264
|
+
CategoryLabelVisibility?: Visibility;
|
|
1265
|
+
MeasureLabelVisibility?: Visibility;
|
|
1266
1266
|
DataLabelTypes?: DataLabelType[];
|
|
1267
|
-
Position?: DataLabelPosition
|
|
1268
|
-
LabelContent?: DataLabelContent
|
|
1267
|
+
Position?: DataLabelPosition;
|
|
1268
|
+
LabelContent?: DataLabelContent;
|
|
1269
1269
|
LabelFontConfiguration?: FontConfiguration;
|
|
1270
1270
|
LabelColor?: string;
|
|
1271
|
-
Overlap?: DataLabelOverlap
|
|
1272
|
-
TotalsVisibility?: Visibility
|
|
1271
|
+
Overlap?: DataLabelOverlap;
|
|
1272
|
+
TotalsVisibility?: Visibility;
|
|
1273
1273
|
}
|
|
1274
1274
|
export interface CategoricalDimensionField {
|
|
1275
1275
|
FieldId: string | undefined;
|
|
@@ -1280,7 +1280,7 @@ export interface CategoricalDimensionField {
|
|
|
1280
1280
|
export interface DateDimensionField {
|
|
1281
1281
|
FieldId: string | undefined;
|
|
1282
1282
|
Column: ColumnIdentifier | undefined;
|
|
1283
|
-
DateGranularity?: TimeGranularity
|
|
1283
|
+
DateGranularity?: TimeGranularity;
|
|
1284
1284
|
HierarchyId?: string;
|
|
1285
1285
|
FormatConfiguration?: DateTimeFormatConfiguration;
|
|
1286
1286
|
}
|
|
@@ -1302,13 +1302,13 @@ export interface CalculatedMeasureField {
|
|
|
1302
1302
|
export interface CategoricalMeasureField {
|
|
1303
1303
|
FieldId: string | undefined;
|
|
1304
1304
|
Column: ColumnIdentifier | undefined;
|
|
1305
|
-
AggregationFunction?: CategoricalAggregationFunction
|
|
1305
|
+
AggregationFunction?: CategoricalAggregationFunction;
|
|
1306
1306
|
FormatConfiguration?: StringFormatConfiguration;
|
|
1307
1307
|
}
|
|
1308
1308
|
export interface DateMeasureField {
|
|
1309
1309
|
FieldId: string | undefined;
|
|
1310
1310
|
Column: ColumnIdentifier | undefined;
|
|
1311
|
-
AggregationFunction?: DateAggregationFunction
|
|
1311
|
+
AggregationFunction?: DateAggregationFunction;
|
|
1312
1312
|
FormatConfiguration?: DateTimeFormatConfiguration;
|
|
1313
1313
|
}
|
|
1314
1314
|
export interface NumericalMeasureField {
|
|
@@ -1341,9 +1341,9 @@ export declare const LegendPosition: {
|
|
|
1341
1341
|
export type LegendPosition =
|
|
1342
1342
|
(typeof LegendPosition)[keyof typeof LegendPosition];
|
|
1343
1343
|
export interface LegendOptions {
|
|
1344
|
-
Visibility?: Visibility
|
|
1344
|
+
Visibility?: Visibility;
|
|
1345
1345
|
Title?: LabelOptions;
|
|
1346
|
-
Position?: LegendPosition
|
|
1346
|
+
Position?: LegendPosition;
|
|
1347
1347
|
Width?: string;
|
|
1348
1348
|
Height?: string;
|
|
1349
1349
|
}
|
|
@@ -1369,7 +1369,7 @@ export interface ReferenceLineStaticDataConfiguration {
|
|
|
1369
1369
|
export interface ReferenceLineDataConfiguration {
|
|
1370
1370
|
StaticConfiguration?: ReferenceLineStaticDataConfiguration;
|
|
1371
1371
|
DynamicConfiguration?: ReferenceLineDynamicDataConfiguration;
|
|
1372
|
-
AxisBinding?: AxisBinding
|
|
1372
|
+
AxisBinding?: AxisBinding;
|
|
1373
1373
|
}
|
|
1374
1374
|
export interface ReferenceLineCustomLabelConfiguration {
|
|
1375
1375
|
CustomLabel: string | undefined;
|
|
@@ -1388,7 +1388,7 @@ export declare const ReferenceLineValueLabelRelativePosition: {
|
|
|
1388
1388
|
export type ReferenceLineValueLabelRelativePosition =
|
|
1389
1389
|
(typeof ReferenceLineValueLabelRelativePosition)[keyof typeof ReferenceLineValueLabelRelativePosition];
|
|
1390
1390
|
export interface ReferenceLineValueLabelConfiguration {
|
|
1391
|
-
RelativePosition?: ReferenceLineValueLabelRelativePosition
|
|
1391
|
+
RelativePosition?: ReferenceLineValueLabelRelativePosition;
|
|
1392
1392
|
FormatConfiguration?: NumericFormatConfiguration;
|
|
1393
1393
|
}
|
|
1394
1394
|
export declare const ReferenceLineLabelVerticalPosition: {
|
|
@@ -1402,8 +1402,8 @@ export interface ReferenceLineLabelConfiguration {
|
|
|
1402
1402
|
CustomLabelConfiguration?: ReferenceLineCustomLabelConfiguration;
|
|
1403
1403
|
FontConfiguration?: FontConfiguration;
|
|
1404
1404
|
FontColor?: string;
|
|
1405
|
-
HorizontalPosition?: ReferenceLineLabelHorizontalPosition
|
|
1406
|
-
VerticalPosition?: ReferenceLineLabelVerticalPosition
|
|
1405
|
+
HorizontalPosition?: ReferenceLineLabelHorizontalPosition;
|
|
1406
|
+
VerticalPosition?: ReferenceLineLabelVerticalPosition;
|
|
1407
1407
|
}
|
|
1408
1408
|
export declare const ReferenceLinePatternType: {
|
|
1409
1409
|
readonly DASHED: "DASHED";
|
|
@@ -1413,11 +1413,11 @@ export declare const ReferenceLinePatternType: {
|
|
|
1413
1413
|
export type ReferenceLinePatternType =
|
|
1414
1414
|
(typeof ReferenceLinePatternType)[keyof typeof ReferenceLinePatternType];
|
|
1415
1415
|
export interface ReferenceLineStyleConfiguration {
|
|
1416
|
-
Pattern?: ReferenceLinePatternType
|
|
1416
|
+
Pattern?: ReferenceLinePatternType;
|
|
1417
1417
|
Color?: string;
|
|
1418
1418
|
}
|
|
1419
1419
|
export interface ReferenceLine {
|
|
1420
|
-
Status?: WidgetStatus
|
|
1420
|
+
Status?: WidgetStatus;
|
|
1421
1421
|
DataConfiguration: ReferenceLineDataConfiguration | undefined;
|
|
1422
1422
|
StyleConfiguration?: ReferenceLineStyleConfiguration;
|
|
1423
1423
|
LabelConfiguration?: ReferenceLineLabelConfiguration;
|
|
@@ -1438,19 +1438,19 @@ export declare const HorizontalTextAlignment: {
|
|
|
1438
1438
|
export type HorizontalTextAlignment =
|
|
1439
1439
|
(typeof HorizontalTextAlignment)[keyof typeof HorizontalTextAlignment];
|
|
1440
1440
|
export interface PanelTitleOptions {
|
|
1441
|
-
Visibility?: Visibility
|
|
1441
|
+
Visibility?: Visibility;
|
|
1442
1442
|
FontConfiguration?: FontConfiguration;
|
|
1443
|
-
HorizontalTextAlignment?: HorizontalTextAlignment
|
|
1443
|
+
HorizontalTextAlignment?: HorizontalTextAlignment;
|
|
1444
1444
|
}
|
|
1445
1445
|
export interface PanelConfiguration {
|
|
1446
1446
|
Title?: PanelTitleOptions;
|
|
1447
|
-
BorderVisibility?: Visibility
|
|
1447
|
+
BorderVisibility?: Visibility;
|
|
1448
1448
|
BorderThickness?: string;
|
|
1449
|
-
BorderStyle?: PanelBorderStyle
|
|
1449
|
+
BorderStyle?: PanelBorderStyle;
|
|
1450
1450
|
BorderColor?: string;
|
|
1451
|
-
GutterVisibility?: Visibility
|
|
1451
|
+
GutterVisibility?: Visibility;
|
|
1452
1452
|
GutterSpacing?: string;
|
|
1453
|
-
BackgroundVisibility?: Visibility
|
|
1453
|
+
BackgroundVisibility?: Visibility;
|
|
1454
1454
|
BackgroundColor?: string;
|
|
1455
1455
|
}
|
|
1456
1456
|
export declare const SmallMultiplesAxisPlacement: {
|
|
@@ -1466,8 +1466,8 @@ export declare const SmallMultiplesAxisScale: {
|
|
|
1466
1466
|
export type SmallMultiplesAxisScale =
|
|
1467
1467
|
(typeof SmallMultiplesAxisScale)[keyof typeof SmallMultiplesAxisScale];
|
|
1468
1468
|
export interface SmallMultiplesAxisProperties {
|
|
1469
|
-
Scale?: SmallMultiplesAxisScale
|
|
1470
|
-
Placement?: SmallMultiplesAxisPlacement
|
|
1469
|
+
Scale?: SmallMultiplesAxisScale;
|
|
1470
|
+
Placement?: SmallMultiplesAxisPlacement;
|
|
1471
1471
|
}
|
|
1472
1472
|
export interface SmallMultiplesOptions {
|
|
1473
1473
|
MaxVisibleRows?: number;
|
|
@@ -1484,16 +1484,16 @@ export type OtherCategories =
|
|
|
1484
1484
|
(typeof OtherCategories)[keyof typeof OtherCategories];
|
|
1485
1485
|
export interface ItemsLimitConfiguration {
|
|
1486
1486
|
ItemsLimit?: number;
|
|
1487
|
-
OtherCategories?: OtherCategories
|
|
1487
|
+
OtherCategories?: OtherCategories;
|
|
1488
1488
|
}
|
|
1489
1489
|
export interface ColumnSort {
|
|
1490
1490
|
SortBy: ColumnIdentifier | undefined;
|
|
1491
|
-
Direction: SortDirection |
|
|
1491
|
+
Direction: SortDirection | undefined;
|
|
1492
1492
|
AggregationFunction?: AggregationFunction;
|
|
1493
1493
|
}
|
|
1494
1494
|
export interface FieldSort {
|
|
1495
1495
|
FieldId: string | undefined;
|
|
1496
|
-
Direction: SortDirection |
|
|
1496
|
+
Direction: SortDirection | undefined;
|
|
1497
1497
|
}
|
|
1498
1498
|
export interface FieldSortOptions {
|
|
1499
1499
|
FieldSort?: FieldSort;
|
|
@@ -1510,13 +1510,13 @@ export interface BarChartSortConfiguration {
|
|
|
1510
1510
|
export interface ColumnTooltipItem {
|
|
1511
1511
|
Column: ColumnIdentifier | undefined;
|
|
1512
1512
|
Label?: string;
|
|
1513
|
-
Visibility?: Visibility
|
|
1513
|
+
Visibility?: Visibility;
|
|
1514
1514
|
Aggregation?: AggregationFunction;
|
|
1515
1515
|
}
|
|
1516
1516
|
export interface FieldTooltipItem {
|
|
1517
1517
|
FieldId: string | undefined;
|
|
1518
1518
|
Label?: string;
|
|
1519
|
-
Visibility?: Visibility
|
|
1519
|
+
Visibility?: Visibility;
|
|
1520
1520
|
}
|
|
1521
1521
|
export interface TooltipItem {
|
|
1522
1522
|
FieldTooltipItem?: FieldTooltipItem;
|
|
@@ -1529,8 +1529,8 @@ export declare const TooltipTitleType: {
|
|
|
1529
1529
|
export type TooltipTitleType =
|
|
1530
1530
|
(typeof TooltipTitleType)[keyof typeof TooltipTitleType];
|
|
1531
1531
|
export interface FieldBasedTooltip {
|
|
1532
|
-
AggregationVisibility?: Visibility
|
|
1533
|
-
TooltipTitleType?: TooltipTitleType
|
|
1532
|
+
AggregationVisibility?: Visibility;
|
|
1533
|
+
TooltipTitleType?: TooltipTitleType;
|
|
1534
1534
|
TooltipFields?: TooltipItem[];
|
|
1535
1535
|
}
|
|
1536
1536
|
export declare const SelectedTooltipType: {
|
|
@@ -1540,8 +1540,8 @@ export declare const SelectedTooltipType: {
|
|
|
1540
1540
|
export type SelectedTooltipType =
|
|
1541
1541
|
(typeof SelectedTooltipType)[keyof typeof SelectedTooltipType];
|
|
1542
1542
|
export interface TooltipOptions {
|
|
1543
|
-
TooltipVisibility?: Visibility
|
|
1544
|
-
SelectedTooltipType?: SelectedTooltipType
|
|
1543
|
+
TooltipVisibility?: Visibility;
|
|
1544
|
+
SelectedTooltipType?: SelectedTooltipType;
|
|
1545
1545
|
FieldBasedTooltip?: FieldBasedTooltip;
|
|
1546
1546
|
}
|
|
1547
1547
|
export interface DataPathValue {
|
|
@@ -1551,7 +1551,7 @@ export interface DataPathValue {
|
|
|
1551
1551
|
export interface DataPathColor {
|
|
1552
1552
|
Element: DataPathValue | undefined;
|
|
1553
1553
|
Color: string | undefined;
|
|
1554
|
-
TimeGranularity?: TimeGranularity
|
|
1554
|
+
TimeGranularity?: TimeGranularity;
|
|
1555
1555
|
}
|
|
1556
1556
|
export interface VisualPalette {
|
|
1557
1557
|
ChartColor?: string;
|
|
@@ -1560,8 +1560,8 @@ export interface VisualPalette {
|
|
|
1560
1560
|
export interface BarChartConfiguration {
|
|
1561
1561
|
FieldWells?: BarChartFieldWells;
|
|
1562
1562
|
SortConfiguration?: BarChartSortConfiguration;
|
|
1563
|
-
Orientation?: BarChartOrientation
|
|
1564
|
-
BarsArrangement?: BarsArrangement
|
|
1563
|
+
Orientation?: BarChartOrientation;
|
|
1564
|
+
BarsArrangement?: BarsArrangement;
|
|
1565
1565
|
VisualPalette?: VisualPalette;
|
|
1566
1566
|
SmallMultiplesOptions?: SmallMultiplesOptions;
|
|
1567
1567
|
CategoryAxis?: AxisDisplayOptions;
|
|
@@ -1587,7 +1587,7 @@ export interface TimeRangeDrillDownFilter {
|
|
|
1587
1587
|
Column: ColumnIdentifier | undefined;
|
|
1588
1588
|
RangeMinimum: Date | undefined;
|
|
1589
1589
|
RangeMaximum: Date | undefined;
|
|
1590
|
-
TimeGranularity: TimeGranularity |
|
|
1590
|
+
TimeGranularity: TimeGranularity | undefined;
|
|
1591
1591
|
}
|
|
1592
1592
|
export interface DrillDownFilter {
|
|
1593
1593
|
NumericEqualityFilter?: NumericEqualityDrillDownFilter;
|
|
@@ -1618,7 +1618,7 @@ export interface LongFormatText {
|
|
|
1618
1618
|
RichText?: string;
|
|
1619
1619
|
}
|
|
1620
1620
|
export interface VisualSubtitleLabelOptions {
|
|
1621
|
-
Visibility?: Visibility
|
|
1621
|
+
Visibility?: Visibility;
|
|
1622
1622
|
FormatText?: LongFormatText;
|
|
1623
1623
|
}
|
|
1624
1624
|
export interface ShortFormatText {
|
|
@@ -1626,7 +1626,7 @@ export interface ShortFormatText {
|
|
|
1626
1626
|
RichText?: string;
|
|
1627
1627
|
}
|
|
1628
1628
|
export interface VisualTitleLabelOptions {
|
|
1629
|
-
Visibility?: Visibility
|
|
1629
|
+
Visibility?: Visibility;
|
|
1630
1630
|
FormatText?: ShortFormatText;
|
|
1631
1631
|
}
|
|
1632
1632
|
export interface BarChartVisual {
|
|
@@ -1644,7 +1644,7 @@ export declare const BoxPlotFillStyle: {
|
|
|
1644
1644
|
export type BoxPlotFillStyle =
|
|
1645
1645
|
(typeof BoxPlotFillStyle)[keyof typeof BoxPlotFillStyle];
|
|
1646
1646
|
export interface BoxPlotStyleOptions {
|
|
1647
|
-
FillStyle?: BoxPlotFillStyle
|
|
1647
|
+
FillStyle?: BoxPlotFillStyle;
|
|
1648
1648
|
}
|
|
1649
1649
|
export declare const CalculatedFieldFilterSensitiveLog: (
|
|
1650
1650
|
obj: CalculatedField
|