@gooddata/api-client-tiger 11.22.0-alpha.3 → 11.22.0-alpha.5

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.
@@ -37,9 +37,17 @@ export declare interface AbsoluteDateFilterAbsoluteDateFilter {
37
37
  'to': string;
38
38
  'localIdentifier'?: string;
39
39
  'applyOnResult'?: boolean;
40
+ /**
41
+ * Specifies how rows with empty (null/missing) date values should be handled. INCLUDE includes empty dates in addition to the date range restriction, EXCLUDE removes rows with empty dates (default), ONLY keeps only rows with empty dates.
42
+ */
43
+ 'emptyValueHandling'?: AbsoluteDateFilterAbsoluteDateFilterEmptyValueHandlingEnum;
40
44
  'dataset': AfmObjectIdentifierDataset;
41
45
  }
42
46
 
47
+ export declare type AbsoluteDateFilterAbsoluteDateFilterEmptyValueHandlingEnum = 'INCLUDE' | 'EXCLUDE' | 'ONLY';
48
+
49
+ declare type AbsoluteDateFilterAbsoluteDateFilterEmptyValueHandlingEnum_2 = 'INCLUDE' | 'EXCLUDE' | 'ONLY';
50
+
43
51
  /**
44
52
  * @type AbstractMeasureValueFilter
45
53
  */
@@ -4807,6 +4815,10 @@ export declare interface AfmAbsoluteDateFilterAbsoluteDateFilter {
4807
4815
  'to': string;
4808
4816
  'localIdentifier'?: string;
4809
4817
  'applyOnResult'?: boolean;
4818
+ /**
4819
+ * Specifies how rows with empty (null/missing) date values should be handled. INCLUDE includes empty dates in addition to the date range restriction, EXCLUDE removes rows with empty dates (default), ONLY keeps only rows with empty dates.
4820
+ */
4821
+ 'emptyValueHandling'?: AbsoluteDateFilterAbsoluteDateFilterEmptyValueHandlingEnum_2;
4810
4822
  'dataset': AfmModelObjectIdentifierDataset;
4811
4823
  }
4812
4824
 
@@ -5721,7 +5733,7 @@ export declare type AfmComparisonMeasureValueFilterComparisonMeasureValueFilterO
5721
5733
  * @type DateFilter
5722
5734
  * Abstract filter definition type for dates.
5723
5735
  */
5724
- export declare type AfmDateFilter = AfmAbsoluteDateFilter | AfmRelativeDateFilter;
5736
+ export declare type AfmDateFilter = AfmAbsoluteDateFilter | AllTimeDateFilter_2 | AfmRelativeDateFilter;
5725
5737
 
5726
5738
  export declare interface AfmExecution {
5727
5739
  'execution': AfmModel;
@@ -5754,7 +5766,7 @@ export declare interface AfmExecutionSettings {
5754
5766
  * @type FilterDefinition
5755
5767
  * Abstract filter definition type
5756
5768
  */
5757
- export declare type AfmFilterDefinition = AfmAbsoluteDateFilter | AfmComparisonMeasureValueFilter | CompoundMeasureValueFilter_2 | AfmInlineFilterDefinition | MatchAttributeFilter_2 | AfmNegativeAttributeFilter | AfmPositiveAttributeFilter | AfmRangeMeasureValueFilter | AfmRankingFilter | AfmRelativeDateFilter;
5769
+ export declare type AfmFilterDefinition = AfmAbsoluteDateFilter | AllTimeDateFilter_2 | AfmComparisonMeasureValueFilter | CompoundMeasureValueFilter_2 | AfmInlineFilterDefinition | MatchAttributeFilter_2 | AfmNegativeAttributeFilter | AfmPositiveAttributeFilter | AfmRangeMeasureValueFilter | AfmRankingFilter | AfmRelativeDateFilter;
5758
5770
 
5759
5771
  /**
5760
5772
  * @type FilterDefinitionForSimpleMeasure
@@ -6310,6 +6322,10 @@ export declare interface AfmRelativeDateFilterRelativeDateFilter {
6310
6322
  'localIdentifier'?: string;
6311
6323
  'applyOnResult'?: boolean;
6312
6324
  'boundedFilter'?: AfmBoundedFilter;
6325
+ /**
6326
+ * Specifies how rows with empty (null/missing) date values should be handled. INCLUDE includes empty dates in addition to the date range restriction, EXCLUDE removes rows with empty dates (default), ONLY keeps only rows with empty dates.
6327
+ */
6328
+ 'emptyValueHandling'?: RelativeDateFilterRelativeDateFilterEmptyValueHandlingEnum_2;
6313
6329
  'dataset': AfmModelObjectIdentifierDataset;
6314
6330
  }
6315
6331
 
@@ -7696,6 +7712,56 @@ export declare type AllowedRelationshipTypeSourceTypeEnum = 'attribute' | 'metri
7696
7712
 
7697
7713
  export declare type AllowedRelationshipTypeTargetTypeEnum = 'attribute' | 'metric' | 'fact' | 'label' | 'date' | 'dataset' | 'visualization' | 'dashboard';
7698
7714
 
7715
+ /**
7716
+ * An all-time date filter that does not restrict by date range. Controls how rows with empty (null/missing) date values are handled.
7717
+ */
7718
+ export declare interface AllTimeDateFilter {
7719
+ 'allTimeDateFilter': AllTimeDateFilterAllTimeDateFilter;
7720
+ }
7721
+
7722
+ /**
7723
+ * An all-time date filter that does not restrict by date range. Controls how rows with empty (null/missing) date values are handled.
7724
+ */
7725
+ declare interface AllTimeDateFilter_2 {
7726
+ 'allTimeDateFilter': AllTimeDateFilterAllTimeDateFilter_2;
7727
+ }
7728
+
7729
+ export declare interface AllTimeDateFilterAllTimeDateFilter {
7730
+ /**
7731
+ * Specifies how rows with empty (null/missing) date values should be handled. INCLUDE means no filtering effect (default), EXCLUDE removes rows with null dates, ONLY keeps only rows with null dates.
7732
+ */
7733
+ 'emptyValueHandling'?: AllTimeDateFilterAllTimeDateFilterEmptyValueHandlingEnum;
7734
+ /**
7735
+ * Date granularity used to resolve the date attribute label for null value checks. Defaults to DAY if not specified.
7736
+ */
7737
+ 'granularity'?: AllTimeDateFilterAllTimeDateFilterGranularityEnum;
7738
+ 'localIdentifier'?: string;
7739
+ 'applyOnResult'?: boolean;
7740
+ 'dataset': AfmObjectIdentifierDataset;
7741
+ }
7742
+
7743
+ declare interface AllTimeDateFilterAllTimeDateFilter_2 {
7744
+ /**
7745
+ * Specifies how rows with empty (null/missing) date values should be handled. INCLUDE means no filtering effect (default), EXCLUDE removes rows with null dates, ONLY keeps only rows with null dates.
7746
+ */
7747
+ 'emptyValueHandling'?: AllTimeDateFilterAllTimeDateFilterEmptyValueHandlingEnum_2;
7748
+ /**
7749
+ * Date granularity used to resolve the date attribute label for null value checks. Defaults to DAY if not specified.
7750
+ */
7751
+ 'granularity'?: AllTimeDateFilterAllTimeDateFilterGranularityEnum_2;
7752
+ 'localIdentifier'?: string;
7753
+ 'applyOnResult'?: boolean;
7754
+ 'dataset': AfmModelObjectIdentifierDataset;
7755
+ }
7756
+
7757
+ export declare type AllTimeDateFilterAllTimeDateFilterEmptyValueHandlingEnum = 'INCLUDE' | 'EXCLUDE' | 'ONLY';
7758
+
7759
+ declare type AllTimeDateFilterAllTimeDateFilterEmptyValueHandlingEnum_2 = 'INCLUDE' | 'EXCLUDE' | 'ONLY';
7760
+
7761
+ export declare type AllTimeDateFilterAllTimeDateFilterGranularityEnum = 'MINUTE' | 'HOUR' | 'DAY' | 'WEEK' | 'MONTH' | 'QUARTER' | 'YEAR' | 'MINUTE_OF_HOUR' | 'HOUR_OF_DAY' | 'DAY_OF_WEEK' | 'DAY_OF_MONTH' | 'DAY_OF_QUARTER' | 'DAY_OF_YEAR' | 'WEEK_OF_YEAR' | 'MONTH_OF_YEAR' | 'QUARTER_OF_YEAR' | 'FISCAL_MONTH' | 'FISCAL_QUARTER' | 'FISCAL_YEAR';
7762
+
7763
+ declare type AllTimeDateFilterAllTimeDateFilterGranularityEnum_2 = 'MINUTE' | 'HOUR' | 'DAY' | 'WEEK' | 'MONTH' | 'QUARTER' | 'YEAR' | 'MINUTE_OF_HOUR' | 'HOUR_OF_DAY' | 'DAY_OF_WEEK' | 'DAY_OF_MONTH' | 'DAY_OF_QUARTER' | 'DAY_OF_YEAR' | 'WEEK_OF_YEAR' | 'MONTH_OF_YEAR' | 'QUARTER_OF_YEAR' | 'FISCAL_MONTH' | 'FISCAL_QUARTER' | 'FISCAL_YEAR';
7764
+
7699
7765
  declare namespace AnalyticalDashboardModelV1 {
7700
7766
  export {
7701
7767
  isAnalyticalDashboard,
@@ -10292,9 +10358,15 @@ export declare interface AutomationAbsoluteDateFilterAbsoluteDateFilter {
10292
10358
  'to': string;
10293
10359
  'localIdentifier'?: string;
10294
10360
  'applyOnResult'?: boolean;
10361
+ /**
10362
+ * Specifies how rows with empty (null/missing) date values should be handled. INCLUDE includes empty dates in addition to the date range restriction, EXCLUDE removes rows with empty dates (default), ONLY keeps only rows with empty dates.
10363
+ */
10364
+ 'emptyValueHandling'?: AutomationAbsoluteDateFilterAbsoluteDateFilterEmptyValueHandlingEnum;
10295
10365
  'dataset': AutomationAfmObjectIdentifierDataset;
10296
10366
  }
10297
10367
 
10368
+ declare type AutomationAbsoluteDateFilterAbsoluteDateFilterEmptyValueHandlingEnum = 'INCLUDE' | 'EXCLUDE' | 'ONLY';
10369
+
10298
10370
  /**
10299
10371
  * @type AutomationAbstractMeasureValueFilter
10300
10372
  */
@@ -10514,6 +10586,31 @@ export declare type AutomationAlertIntervalEnum = 'DAY' | 'WEEK' | 'MONTH' | 'QU
10514
10586
 
10515
10587
  export declare type AutomationAlertTriggerEnum = 'ALWAYS' | 'ONCE' | 'ONCE_PER_INTERVAL';
10516
10588
 
10589
+ /**
10590
+ * An all-time date filter that does not restrict by date range. Controls how rows with empty (null/missing) date values are handled.
10591
+ */
10592
+ declare interface AutomationAllTimeDateFilter {
10593
+ 'allTimeDateFilter': AutomationAllTimeDateFilterAllTimeDateFilter;
10594
+ }
10595
+
10596
+ declare interface AutomationAllTimeDateFilterAllTimeDateFilter {
10597
+ /**
10598
+ * Specifies how rows with empty (null/missing) date values should be handled. INCLUDE means no filtering effect (default), EXCLUDE removes rows with null dates, ONLY keeps only rows with null dates.
10599
+ */
10600
+ 'emptyValueHandling'?: AutomationAllTimeDateFilterAllTimeDateFilterEmptyValueHandlingEnum;
10601
+ /**
10602
+ * Date granularity used to resolve the date attribute label for null value checks. Defaults to DAY if not specified.
10603
+ */
10604
+ 'granularity'?: AutomationAllTimeDateFilterAllTimeDateFilterGranularityEnum;
10605
+ 'localIdentifier'?: string;
10606
+ 'applyOnResult'?: boolean;
10607
+ 'dataset': AutomationAfmObjectIdentifierDataset;
10608
+ }
10609
+
10610
+ declare type AutomationAllTimeDateFilterAllTimeDateFilterEmptyValueHandlingEnum = 'INCLUDE' | 'EXCLUDE' | 'ONLY';
10611
+
10612
+ declare type AutomationAllTimeDateFilterAllTimeDateFilterGranularityEnum = 'MINUTE' | 'HOUR' | 'DAY' | 'WEEK' | 'MONTH' | 'QUARTER' | 'YEAR' | 'MINUTE_OF_HOUR' | 'HOUR_OF_DAY' | 'DAY_OF_WEEK' | 'DAY_OF_MONTH' | 'DAY_OF_QUARTER' | 'DAY_OF_YEAR' | 'WEEK_OF_YEAR' | 'MONTH_OF_YEAR' | 'QUARTER_OF_YEAR' | 'FISCAL_MONTH' | 'FISCAL_QUARTER' | 'FISCAL_YEAR';
10613
+
10517
10614
  declare interface AutomationAnomalyDetection {
10518
10615
  'measure': AutomationLocalIdentifier;
10519
10616
  /**
@@ -11026,7 +11123,7 @@ export declare type AutomationDashboardTabularExportRequestV2FormatEnum = 'XLSX'
11026
11123
  * @type AutomationDateFilter
11027
11124
  * Abstract filter definition type for dates.
11028
11125
  */
11029
- export declare type AutomationDateFilter = AutomationAbsoluteDateFilter | AutomationRelativeDateFilter;
11126
+ export declare type AutomationDateFilter = AutomationAbsoluteDateFilter | AutomationAllTimeDateFilter | AutomationRelativeDateFilter;
11030
11127
 
11031
11128
  export declare interface AutomationDateValue {
11032
11129
  'value': string;
@@ -11139,7 +11236,7 @@ export declare interface AutomationExternalRecipient {
11139
11236
  * @type AutomationFilterDefinition
11140
11237
  * Abstract filter definition type
11141
11238
  */
11142
- export declare type AutomationFilterDefinition = AutomationAbsoluteDateFilter | AutomationComparisonMeasureValueFilter | AutomationCompoundMeasureValueFilter | AutomationInlineFilterDefinition | AutomationMatchAttributeFilter | AutomationNegativeAttributeFilter | AutomationPositiveAttributeFilter | AutomationRangeMeasureValueFilter | AutomationRankingFilter | AutomationRelativeDateFilter;
11239
+ export declare type AutomationFilterDefinition = AutomationAbsoluteDateFilter | AutomationAllTimeDateFilter | AutomationComparisonMeasureValueFilter | AutomationCompoundMeasureValueFilter | AutomationInlineFilterDefinition | AutomationMatchAttributeFilter | AutomationNegativeAttributeFilter | AutomationPositiveAttributeFilter | AutomationRangeMeasureValueFilter | AutomationRankingFilter | AutomationRelativeDateFilter;
11143
11240
 
11144
11241
  /**
11145
11242
  * @type AutomationFilterDefinitionForSimpleMeasure
@@ -11784,9 +11881,15 @@ export declare interface AutomationRelativeDateFilterRelativeDateFilter {
11784
11881
  'localIdentifier'?: string;
11785
11882
  'applyOnResult'?: boolean;
11786
11883
  'boundedFilter'?: AutomationBoundedFilter;
11884
+ /**
11885
+ * Specifies how rows with empty (null/missing) date values should be handled. INCLUDE includes empty dates in addition to the date range restriction, EXCLUDE removes rows with empty dates (default), ONLY keeps only rows with empty dates.
11886
+ */
11887
+ 'emptyValueHandling'?: AutomationRelativeDateFilterRelativeDateFilterEmptyValueHandlingEnum;
11787
11888
  'dataset': AutomationAfmObjectIdentifierDataset;
11788
11889
  }
11789
11890
 
11891
+ declare type AutomationRelativeDateFilterRelativeDateFilterEmptyValueHandlingEnum = 'INCLUDE' | 'EXCLUDE' | 'ONLY';
11892
+
11790
11893
  export declare type AutomationRelativeDateFilterRelativeDateFilterGranularityEnum = 'MINUTE' | 'HOUR' | 'DAY' | 'WEEK' | 'MONTH' | 'QUARTER' | 'YEAR' | 'MINUTE_OF_HOUR' | 'HOUR_OF_DAY' | 'DAY_OF_WEEK' | 'DAY_OF_MONTH' | 'DAY_OF_QUARTER' | 'DAY_OF_YEAR' | 'WEEK_OF_YEAR' | 'MONTH_OF_YEAR' | 'QUARTER_OF_YEAR' | 'FISCAL_MONTH' | 'FISCAL_QUARTER' | 'FISCAL_YEAR';
11791
11894
 
11792
11895
  export declare type AutomationRelativeOperatorEnum = 'INCREASES_BY' | 'DECREASES_BY' | 'CHANGES_BY';
@@ -19102,7 +19205,7 @@ export declare interface DateAbsoluteFilter {
19102
19205
  * @type DateFilter
19103
19206
  * Abstract filter definition type for dates.
19104
19207
  */
19105
- export declare type DateFilter = AbsoluteDateFilter | RelativeDateFilter;
19208
+ export declare type DateFilter = AbsoluteDateFilter | AllTimeDateFilter | RelativeDateFilter;
19106
19209
 
19107
19210
  export declare interface DateRelativeFilter {
19108
19211
  'using': string;
@@ -40176,9 +40279,15 @@ export declare interface ExportAbsoluteDateFilterAbsoluteDateFilter {
40176
40279
  'to': string;
40177
40280
  'localIdentifier'?: string;
40178
40281
  'applyOnResult'?: boolean;
40282
+ /**
40283
+ * Specifies how rows with empty (null/missing) date values should be handled. INCLUDE includes empty dates in addition to the date range restriction, EXCLUDE removes rows with empty dates (default), ONLY keeps only rows with empty dates.
40284
+ */
40285
+ 'emptyValueHandling'?: ExportAbsoluteDateFilterAbsoluteDateFilterEmptyValueHandlingEnum;
40179
40286
  'dataset': ExportAfmObjectIdentifierDataset;
40180
40287
  }
40181
40288
 
40289
+ export declare type ExportAbsoluteDateFilterAbsoluteDateFilterEmptyValueHandlingEnum = 'INCLUDE' | 'EXCLUDE' | 'ONLY';
40290
+
40182
40291
  /**
40183
40292
  * @type ExportAbstractMeasureValueFilter
40184
40293
  */
@@ -40283,6 +40392,31 @@ export declare interface ExportAfmObjectIdentifierLabelIdentifier {
40283
40392
 
40284
40393
  export declare type ExportAfmObjectIdentifierLabelIdentifierTypeEnum = 'label';
40285
40394
 
40395
+ /**
40396
+ * An all-time date filter that does not restrict by date range. Controls how rows with empty (null/missing) date values are handled.
40397
+ */
40398
+ export declare interface ExportAllTimeDateFilter {
40399
+ 'allTimeDateFilter': ExportAllTimeDateFilterAllTimeDateFilter;
40400
+ }
40401
+
40402
+ export declare interface ExportAllTimeDateFilterAllTimeDateFilter {
40403
+ /**
40404
+ * Specifies how rows with empty (null/missing) date values should be handled. INCLUDE means no filtering effect (default), EXCLUDE removes rows with null dates, ONLY keeps only rows with null dates.
40405
+ */
40406
+ 'emptyValueHandling'?: ExportAllTimeDateFilterAllTimeDateFilterEmptyValueHandlingEnum;
40407
+ /**
40408
+ * Date granularity used to resolve the date attribute label for null value checks. Defaults to DAY if not specified.
40409
+ */
40410
+ 'granularity'?: ExportAllTimeDateFilterAllTimeDateFilterGranularityEnum;
40411
+ 'localIdentifier'?: string;
40412
+ 'applyOnResult'?: boolean;
40413
+ 'dataset': ExportAfmObjectIdentifierDataset;
40414
+ }
40415
+
40416
+ export declare type ExportAllTimeDateFilterAllTimeDateFilterEmptyValueHandlingEnum = 'INCLUDE' | 'EXCLUDE' | 'ONLY';
40417
+
40418
+ export declare type ExportAllTimeDateFilterAllTimeDateFilterGranularityEnum = 'MINUTE' | 'HOUR' | 'DAY' | 'WEEK' | 'MONTH' | 'QUARTER' | 'YEAR' | 'MINUTE_OF_HOUR' | 'HOUR_OF_DAY' | 'DAY_OF_WEEK' | 'DAY_OF_MONTH' | 'DAY_OF_QUARTER' | 'DAY_OF_YEAR' | 'WEEK_OF_YEAR' | 'MONTH_OF_YEAR' | 'QUARTER_OF_YEAR' | 'FISCAL_MONTH' | 'FISCAL_QUARTER' | 'FISCAL_YEAR';
40419
+
40286
40420
  /**
40287
40421
  * Metric representing arithmetics between other metrics.
40288
40422
  */
@@ -40677,7 +40811,7 @@ export declare type ExportDashboardTabularExportRequestFormatEnum = 'XLSX' | 'PD
40677
40811
  * @type ExportDateFilter
40678
40812
  * Abstract filter definition type for dates.
40679
40813
  */
40680
- export declare type ExportDateFilter = ExportAbsoluteDateFilter | ExportRelativeDateFilter;
40814
+ export declare type ExportDateFilter = ExportAbsoluteDateFilter | ExportAllTimeDateFilter | ExportRelativeDateFilter;
40681
40815
 
40682
40816
  export declare interface ExportDateValue {
40683
40817
  'value': string;
@@ -41303,7 +41437,7 @@ export declare interface ExportExportResponse {
41303
41437
  * @type ExportFilterDefinition
41304
41438
  * Abstract filter definition type
41305
41439
  */
41306
- export declare type ExportFilterDefinition = ExportAbsoluteDateFilter | ExportComparisonMeasureValueFilter | ExportCompoundMeasureValueFilter | ExportInlineFilterDefinition | ExportMatchAttributeFilter | ExportNegativeAttributeFilter | ExportPositiveAttributeFilter | ExportRangeMeasureValueFilter | ExportRankingFilter | ExportRelativeDateFilter;
41440
+ export declare type ExportFilterDefinition = ExportAbsoluteDateFilter | ExportAllTimeDateFilter | ExportComparisonMeasureValueFilter | ExportCompoundMeasureValueFilter | ExportInlineFilterDefinition | ExportMatchAttributeFilter | ExportNegativeAttributeFilter | ExportPositiveAttributeFilter | ExportRangeMeasureValueFilter | ExportRankingFilter | ExportRelativeDateFilter;
41307
41441
 
41308
41442
  /**
41309
41443
  * @type ExportFilterDefinitionForSimpleMeasure
@@ -41731,9 +41865,15 @@ export declare interface ExportRelativeDateFilterRelativeDateFilter {
41731
41865
  'localIdentifier'?: string;
41732
41866
  'applyOnResult'?: boolean;
41733
41867
  'boundedFilter'?: ExportBoundedFilter;
41868
+ /**
41869
+ * Specifies how rows with empty (null/missing) date values should be handled. INCLUDE includes empty dates in addition to the date range restriction, EXCLUDE removes rows with empty dates (default), ONLY keeps only rows with empty dates.
41870
+ */
41871
+ 'emptyValueHandling'?: ExportRelativeDateFilterRelativeDateFilterEmptyValueHandlingEnum;
41734
41872
  'dataset': ExportAfmObjectIdentifierDataset;
41735
41873
  }
41736
41874
 
41875
+ export declare type ExportRelativeDateFilterRelativeDateFilterEmptyValueHandlingEnum = 'INCLUDE' | 'EXCLUDE' | 'ONLY';
41876
+
41737
41877
  export declare type ExportRelativeDateFilterRelativeDateFilterGranularityEnum = 'MINUTE' | 'HOUR' | 'DAY' | 'WEEK' | 'MONTH' | 'QUARTER' | 'YEAR' | 'MINUTE_OF_HOUR' | 'HOUR_OF_DAY' | 'DAY_OF_WEEK' | 'DAY_OF_MONTH' | 'DAY_OF_QUARTER' | 'DAY_OF_YEAR' | 'WEEK_OF_YEAR' | 'MONTH_OF_YEAR' | 'QUARTER_OF_YEAR' | 'FISCAL_MONTH' | 'FISCAL_QUARTER' | 'FISCAL_YEAR';
41738
41878
 
41739
41879
  /**
@@ -43607,7 +43747,7 @@ export declare interface FilterContextApiUpdateEntityFilterContextsRequest {
43607
43747
  * @type FilterDefinition
43608
43748
  * Abstract filter definition type
43609
43749
  */
43610
- export declare type FilterDefinition = AbsoluteDateFilter | ComparisonMeasureValueFilter | CompoundMeasureValueFilter | InlineFilterDefinition | MatchAttributeFilter | NegativeAttributeFilter | PositiveAttributeFilter | RangeMeasureValueFilter | RankingFilter | RelativeDateFilter;
43750
+ export declare type FilterDefinition = AbsoluteDateFilter | AllTimeDateFilter | ComparisonMeasureValueFilter | CompoundMeasureValueFilter | InlineFilterDefinition | MatchAttributeFilter | NegativeAttributeFilter | PositiveAttributeFilter | RangeMeasureValueFilter | RankingFilter | RelativeDateFilter;
43611
43751
 
43612
43752
  /**
43613
43753
  * @type FilterDefinitionForSimpleMeasure
@@ -46629,6 +46769,26 @@ export declare interface IStaticFeatures {
46629
46769
  };
46630
46770
  }
46631
46771
 
46772
+ /**
46773
+ * @public
46774
+ */
46775
+ export declare function isTigerFilter(obj: unknown): obj is ITigerFilter;
46776
+
46777
+ /**
46778
+ * @public
46779
+ */
46780
+ export declare function isTigerFilterContextItem(obj: unknown): obj is ITigerFilterContextItem;
46781
+
46782
+ /**
46783
+ * @public
46784
+ */
46785
+ export declare function isTigerFilterContextItems(filters: unknown[]): filters is ITigerFilterContextItem[];
46786
+
46787
+ /**
46788
+ * @public
46789
+ */
46790
+ export declare function isTigerFilters(filters: unknown[]): filters is ITigerFilter[];
46791
+
46632
46792
  /**
46633
46793
  * @public
46634
46794
  */
@@ -46846,7 +47006,7 @@ export declare interface ITigerClientBase {
46846
47006
  * Tiger-specific comparison condition
46847
47007
  * @public
46848
47008
  */
46849
- declare interface ITigerComparisonCondition {
47009
+ export declare interface ITigerComparisonCondition {
46850
47010
  comparison: {
46851
47011
  operator: "GREATER_THAN" | "GREATER_THAN_OR_EQUAL_TO" | "LESS_THAN" | "LESS_THAN_OR_EQUAL_TO" | "EQUAL_TO" | "NOT_EQUAL_TO";
46852
47012
  value: number;
@@ -46855,30 +47015,25 @@ declare interface ITigerComparisonCondition {
46855
47015
  }
46856
47016
 
46857
47017
  /**
46858
- * Tiger-specific dashboard attribute filter
47018
+ * Tiger-specific comparison condition in the compound condition
46859
47019
  * @public
46860
47020
  */
46861
- declare interface ITigerDashboardAttributeFilter {
46862
- attributeFilter: {
46863
- displayForm: ObjRef;
46864
- negativeSelection: boolean;
46865
- attributeElements: ITigerAttributeElements;
46866
- localIdentifier?: string;
46867
- filterElementsBy?: ITigerDashboardAttributeFilterParent[];
46868
- filterElementsByDate?: ITigerDashboardAttributeFilterByDate[];
46869
- validateElementsBy?: ObjRef[];
46870
- title?: string;
46871
- selectionMode?: "single" | "multi";
47021
+ export declare interface ITigerComparisonConditionInCompound {
47022
+ comparison: {
47023
+ operator: "GREATER_THAN" | "GREATER_THAN_OR_EQUAL_TO" | "LESS_THAN" | "LESS_THAN_OR_EQUAL_TO" | "EQUAL_TO" | "NOT_EQUAL_TO";
47024
+ value: number;
46872
47025
  };
46873
47026
  }
46874
47027
 
46875
47028
  /**
46876
- * Tiger-specific dashboard attribute filter by date
47029
+ * Tiger-specific compound condition
46877
47030
  * @public
46878
47031
  */
46879
- declare interface ITigerDashboardAttributeFilterByDate {
46880
- filterLocalIdentifier: string;
46881
- isCommonDate: boolean;
47032
+ export declare interface ITigerCompoundCondition {
47033
+ compound: {
47034
+ conditions: Array<ITigerComparisonConditionInCompound | ITigerRangeConditionInCompound>;
47035
+ treatNullValuesAs?: number;
47036
+ };
46882
47037
  }
46883
47038
 
46884
47039
  /**
@@ -46899,33 +47054,6 @@ export declare interface ITigerDashboardAttributeFilterConfig {
46899
47054
  selectionMode?: "single" | "multi";
46900
47055
  }
46901
47056
 
46902
- /**
46903
- * Tiger-specific dashboard attribute filter parent
46904
- * @public
46905
- */
46906
- declare interface ITigerDashboardAttributeFilterParent {
46907
- filterLocalIdentifier: string;
46908
- over: {
46909
- attributes: ObjRef[];
46910
- };
46911
- }
46912
-
46913
- /**
46914
- * Tiger-specific dashboard date filter
46915
- * @public
46916
- */
46917
- declare interface ITigerDashboardDateFilter {
46918
- dateFilter: {
46919
- type: "relative" | "absolute";
46920
- granularity: string;
46921
- from?: string | number;
46922
- to?: string | number;
46923
- dataSet?: ObjRef;
46924
- attribute?: ObjRef;
46925
- localIdentifier?: string;
46926
- };
46927
- }
46928
-
46929
47057
  /**
46930
47058
  * Tiger-specific dashboard date filter config
46931
47059
  * @public
@@ -47072,7 +47200,7 @@ export declare type ITigerFilter = ITigerAbsoluteDateFilter | ITigerRelativeDate
47072
47200
  * Tiger-specific filter context item
47073
47201
  * @public
47074
47202
  */
47075
- export declare type ITigerFilterContextItem = ITigerDashboardAttributeFilter | ITigerDashboardDateFilter;
47203
+ export declare type ITigerFilterContextItem = DashboardFilter;
47076
47204
 
47077
47205
  /**
47078
47206
  * Tiger-specific insight layer definition
@@ -47158,7 +47286,7 @@ declare interface ITigerMeasureSortItem {
47158
47286
  * Tiger-specific measure value filter
47159
47287
  * @public
47160
47288
  */
47161
- declare interface ITigerMeasureValueFilter {
47289
+ export declare interface ITigerMeasureValueFilter {
47162
47290
  measureValueFilter: {
47163
47291
  measure: ObjRef;
47164
47292
  condition?: ITigerMeasureValueFilterCondition;
@@ -47169,7 +47297,7 @@ declare interface ITigerMeasureValueFilter {
47169
47297
  /**
47170
47298
  * @public
47171
47299
  */
47172
- declare type ITigerMeasureValueFilterCondition = ITigerComparisonCondition | ITigerRangeCondition;
47300
+ export declare type ITigerMeasureValueFilterCondition = ITigerComparisonCondition | ITigerRangeCondition | ITigerCompoundCondition;
47173
47301
 
47174
47302
  /**
47175
47303
  * Tiger-specific negative attribute filter
@@ -47246,7 +47374,7 @@ declare interface ITigerPreviousPeriodMeasureDefinition {
47246
47374
  * Tiger-specific range condition
47247
47375
  * @public
47248
47376
  */
47249
- declare interface ITigerRangeCondition {
47377
+ export declare interface ITigerRangeCondition {
47250
47378
  range: {
47251
47379
  operator: "BETWEEN" | "NOT_BETWEEN";
47252
47380
  from: number;
@@ -47255,6 +47383,18 @@ declare interface ITigerRangeCondition {
47255
47383
  };
47256
47384
  }
47257
47385
 
47386
+ /**
47387
+ * Tiger-specific range condition in the compound condition
47388
+ * @public
47389
+ */
47390
+ export declare interface ITigerRangeConditionInCompound {
47391
+ range: {
47392
+ operator: "BETWEEN" | "NOT_BETWEEN";
47393
+ from: number;
47394
+ to: number;
47395
+ };
47396
+ }
47397
+
47258
47398
  /**
47259
47399
  * Tiger-specific ranking filter
47260
47400
  * @public
@@ -47447,7 +47587,7 @@ export declare interface JsonApiAggregatedFactOut {
47447
47587
  * API identifier of an object
47448
47588
  */
47449
47589
  'id': string;
47450
- 'meta'?: JsonApiDatasetOutMeta;
47590
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
47451
47591
  'attributes': JsonApiAggregatedFactOutAttributes;
47452
47592
  'relationships'?: JsonApiAggregatedFactOutRelationships;
47453
47593
  }
@@ -47487,15 +47627,19 @@ export declare type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLink
47487
47627
  export declare interface JsonApiAggregatedFactOutList {
47488
47628
  'data': Array<JsonApiAggregatedFactOutWithLinks>;
47489
47629
  'links'?: ListLinks;
47490
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
47630
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
47491
47631
  /**
47492
47632
  * Included resources
47493
47633
  */
47494
47634
  'included'?: Array<JsonApiAggregatedFactOutIncludes>;
47495
47635
  }
47496
47636
 
47637
+ export declare interface JsonApiAggregatedFactOutListMeta {
47638
+ 'page'?: PageMetadata;
47639
+ }
47640
+
47497
47641
  export declare interface JsonApiAggregatedFactOutRelationships {
47498
- 'dataset'?: JsonApiFactOutRelationshipsDataset;
47642
+ 'dataset'?: JsonApiAttributeOutRelationshipsDataset;
47499
47643
  'sourceFact'?: JsonApiAggregatedFactOutRelationshipsSourceFact;
47500
47644
  }
47501
47645
 
@@ -47514,7 +47658,7 @@ export declare interface JsonApiAggregatedFactOutWithLinks {
47514
47658
  * API identifier of an object
47515
47659
  */
47516
47660
  'id': string;
47517
- 'meta'?: JsonApiDatasetOutMeta;
47661
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
47518
47662
  'attributes': JsonApiAggregatedFactOutAttributes;
47519
47663
  'relationships'?: JsonApiAggregatedFactOutRelationships;
47520
47664
  'links'?: ObjectLinks;
@@ -47534,7 +47678,22 @@ export declare interface JsonApiAnalyticalDashboardIn {
47534
47678
  * API identifier of an object
47535
47679
  */
47536
47680
  'id': string;
47537
- 'attributes': JsonApiAnalyticalDashboardPostOptionalIdAttributes;
47681
+ 'attributes': JsonApiAnalyticalDashboardInAttributes;
47682
+ }
47683
+
47684
+ export declare interface JsonApiAnalyticalDashboardInAttributes {
47685
+ 'title'?: string;
47686
+ 'description'?: string;
47687
+ 'tags'?: Array<string>;
47688
+ 'areRelationsValid'?: boolean;
47689
+ /**
47690
+ * Free-form JSON content. Maximum supported length is 250000 characters.
47691
+ */
47692
+ 'content': object;
47693
+ /**
47694
+ * AI-generated summary of the dashboard content
47695
+ */
47696
+ 'summary'?: string;
47538
47697
  }
47539
47698
 
47540
47699
  export declare interface JsonApiAnalyticalDashboardInDocument {
@@ -47613,7 +47772,7 @@ export declare type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDas
47613
47772
  export declare interface JsonApiAnalyticalDashboardOutList {
47614
47773
  'data': Array<JsonApiAnalyticalDashboardOutWithLinks>;
47615
47774
  'links'?: ListLinks;
47616
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
47775
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
47617
47776
  /**
47618
47777
  * Included resources
47619
47778
  */
@@ -47625,7 +47784,7 @@ export declare interface JsonApiAnalyticalDashboardOutMeta {
47625
47784
  * List of valid permissions for a logged-in user.
47626
47785
  */
47627
47786
  'permissions'?: Array<JsonApiAnalyticalDashboardOutMetaPermissionsEnum>;
47628
- 'origin'?: JsonApiDatasetOutMetaOrigin;
47787
+ 'origin'?: JsonApiVisualizationObjectOutMetaOrigin;
47629
47788
  'accessInfo'?: JsonApiAnalyticalDashboardOutMetaAccessInfo;
47630
47789
  }
47631
47790
 
@@ -47645,7 +47804,7 @@ export declare interface JsonApiAnalyticalDashboardOutRelationships {
47645
47804
  'analyticalDashboards'?: JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards;
47646
47805
  'labels'?: JsonApiVisualizationObjectOutRelationshipsLabels;
47647
47806
  'metrics'?: JsonApiVisualizationObjectOutRelationshipsMetrics;
47648
- 'datasets'?: JsonApiDatasetOutRelationshipsReferences;
47807
+ 'datasets'?: JsonApiVisualizationObjectOutRelationshipsDatasets;
47649
47808
  'filterContexts'?: JsonApiAnalyticalDashboardOutRelationshipsFilterContexts;
47650
47809
  'dashboardPlugins'?: JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins;
47651
47810
  }
@@ -47745,22 +47904,7 @@ export declare interface JsonApiAnalyticalDashboardPostOptionalId {
47745
47904
  * API identifier of an object
47746
47905
  */
47747
47906
  'id'?: string;
47748
- 'attributes': JsonApiAnalyticalDashboardPostOptionalIdAttributes;
47749
- }
47750
-
47751
- export declare interface JsonApiAnalyticalDashboardPostOptionalIdAttributes {
47752
- 'title'?: string;
47753
- 'description'?: string;
47754
- 'tags'?: Array<string>;
47755
- 'areRelationsValid'?: boolean;
47756
- /**
47757
- * Free-form JSON content. Maximum supported length is 250000 characters.
47758
- */
47759
- 'content': object;
47760
- /**
47761
- * AI-generated summary of the dashboard content
47762
- */
47763
- 'summary'?: string;
47907
+ 'attributes': JsonApiAnalyticalDashboardInAttributes;
47764
47908
  }
47765
47909
 
47766
47910
  export declare interface JsonApiAnalyticalDashboardPostOptionalIdDocument {
@@ -47822,7 +47966,7 @@ export declare interface JsonApiApiTokenOutDocument {
47822
47966
  export declare interface JsonApiApiTokenOutList {
47823
47967
  'data': Array<JsonApiApiTokenOutWithLinks>;
47824
47968
  'links'?: ListLinks;
47825
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
47969
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
47826
47970
  }
47827
47971
 
47828
47972
  export declare type JsonApiApiTokenOutTypeEnum = 'apiToken';
@@ -47854,18 +47998,7 @@ export declare interface JsonApiAttributeHierarchyIn {
47854
47998
  * API identifier of an object
47855
47999
  */
47856
48000
  'id': string;
47857
- 'attributes'?: JsonApiAttributeHierarchyInAttributes;
47858
- }
47859
-
47860
- export declare interface JsonApiAttributeHierarchyInAttributes {
47861
- 'title'?: string;
47862
- 'description'?: string;
47863
- 'tags'?: Array<string>;
47864
- 'areRelationsValid'?: boolean;
47865
- /**
47866
- * Free-form JSON content. Maximum supported length is 15000 characters.
47867
- */
47868
- 'content'?: object;
48001
+ 'attributes'?: JsonApiAttributeHierarchyPatchAttributes;
47869
48002
  }
47870
48003
 
47871
48004
  export declare interface JsonApiAttributeHierarchyInDocument {
@@ -47896,7 +48029,7 @@ export declare interface JsonApiAttributeHierarchyOut {
47896
48029
  * API identifier of an object
47897
48030
  */
47898
48031
  'id': string;
47899
- 'meta'?: JsonApiDatasetOutMeta;
48032
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
47900
48033
  'attributes'?: JsonApiAttributeHierarchyOutAttributes;
47901
48034
  'relationships'?: JsonApiAttributeHierarchyOutRelationships;
47902
48035
  }
@@ -47940,7 +48073,7 @@ export declare type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWi
47940
48073
  export declare interface JsonApiAttributeHierarchyOutList {
47941
48074
  'data': Array<JsonApiAttributeHierarchyOutWithLinks>;
47942
48075
  'links'?: ListLinks;
47943
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
48076
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
47944
48077
  /**
47945
48078
  * Included resources
47946
48079
  */
@@ -47950,7 +48083,7 @@ export declare interface JsonApiAttributeHierarchyOutList {
47950
48083
  export declare interface JsonApiAttributeHierarchyOutRelationships {
47951
48084
  'createdBy'?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
47952
48085
  'modifiedBy'?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
47953
- 'attributes'?: JsonApiDatasetOutRelationshipsAttributes;
48086
+ 'attributes'?: JsonApiVisualizationObjectOutRelationshipsAttributes;
47954
48087
  }
47955
48088
 
47956
48089
  export declare type JsonApiAttributeHierarchyOutTypeEnum = 'attributeHierarchy';
@@ -47964,7 +48097,7 @@ export declare interface JsonApiAttributeHierarchyOutWithLinks {
47964
48097
  * API identifier of an object
47965
48098
  */
47966
48099
  'id': string;
47967
- 'meta'?: JsonApiDatasetOutMeta;
48100
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
47968
48101
  'attributes'?: JsonApiAttributeHierarchyOutAttributes;
47969
48102
  'relationships'?: JsonApiAttributeHierarchyOutRelationships;
47970
48103
  'links'?: ObjectLinks;
@@ -47984,7 +48117,18 @@ export declare interface JsonApiAttributeHierarchyPatch {
47984
48117
  * API identifier of an object
47985
48118
  */
47986
48119
  'id': string;
47987
- 'attributes'?: JsonApiAttributeHierarchyInAttributes;
48120
+ 'attributes'?: JsonApiAttributeHierarchyPatchAttributes;
48121
+ }
48122
+
48123
+ export declare interface JsonApiAttributeHierarchyPatchAttributes {
48124
+ 'title'?: string;
48125
+ 'description'?: string;
48126
+ 'tags'?: Array<string>;
48127
+ 'areRelationsValid'?: boolean;
48128
+ /**
48129
+ * Free-form JSON content. Maximum supported length is 15000 characters.
48130
+ */
48131
+ 'content'?: object;
47988
48132
  }
47989
48133
 
47990
48134
  export declare interface JsonApiAttributeHierarchyPatchDocument {
@@ -48015,7 +48159,7 @@ export declare interface JsonApiAttributeOut {
48015
48159
  * API identifier of an object
48016
48160
  */
48017
48161
  'id': string;
48018
- 'meta'?: JsonApiDatasetOutMeta;
48162
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
48019
48163
  'attributes'?: JsonApiAttributeOutAttributes;
48020
48164
  'relationships'?: JsonApiAttributeOutRelationships;
48021
48165
  }
@@ -48062,7 +48206,7 @@ export declare type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWi
48062
48206
  export declare interface JsonApiAttributeOutList {
48063
48207
  'data': Array<JsonApiAttributeOutWithLinks>;
48064
48208
  'links'?: ListLinks;
48065
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
48209
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
48066
48210
  /**
48067
48211
  * Included resources
48068
48212
  */
@@ -48070,7 +48214,7 @@ export declare interface JsonApiAttributeOutList {
48070
48214
  }
48071
48215
 
48072
48216
  export declare interface JsonApiAttributeOutRelationships {
48073
- 'dataset'?: JsonApiFactOutRelationshipsDataset;
48217
+ 'dataset'?: JsonApiAttributeOutRelationshipsDataset;
48074
48218
  'defaultView'?: JsonApiAttributeOutRelationshipsDefaultView;
48075
48219
  'labels'?: JsonApiVisualizationObjectOutRelationshipsLabels;
48076
48220
  'attributeHierarchies'?: JsonApiAttributeOutRelationshipsAttributeHierarchies;
@@ -48083,6 +48227,10 @@ export declare interface JsonApiAttributeOutRelationshipsAttributeHierarchies {
48083
48227
  'data': Array<JsonApiAttributeHierarchyLinkage>;
48084
48228
  }
48085
48229
 
48230
+ export declare interface JsonApiAttributeOutRelationshipsDataset {
48231
+ 'data': JsonApiDatasetLinkage | null;
48232
+ }
48233
+
48086
48234
  export declare interface JsonApiAttributeOutRelationshipsDefaultView {
48087
48235
  'data': JsonApiLabelLinkage | null;
48088
48236
  }
@@ -48098,7 +48246,7 @@ export declare interface JsonApiAttributeOutWithLinks {
48098
48246
  * API identifier of an object
48099
48247
  */
48100
48248
  'id': string;
48101
- 'meta'?: JsonApiDatasetOutMeta;
48249
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
48102
48250
  'attributes'?: JsonApiAttributeOutAttributes;
48103
48251
  'relationships'?: JsonApiAttributeOutRelationships;
48104
48252
  'links'?: ObjectLinks;
@@ -48150,57 +48298,14 @@ export declare interface JsonApiAutomationIn {
48150
48298
  * API identifier of an object
48151
48299
  */
48152
48300
  'id': string;
48153
- 'attributes'?: JsonApiAutomationInAttributes;
48154
- 'relationships'?: JsonApiAutomationInRelationships;
48301
+ 'attributes'?: JsonApiAutomationPatchAttributes;
48302
+ 'relationships'?: JsonApiAutomationPatchRelationships;
48155
48303
  }
48156
48304
 
48157
- export declare interface JsonApiAutomationInAttributes {
48158
- 'title'?: string;
48159
- 'description'?: string;
48160
- 'tags'?: Array<string>;
48161
- 'areRelationsValid'?: boolean;
48162
- /**
48163
- * Additional details to be included in the automated message.
48164
- */
48165
- 'details'?: object;
48166
- 'metadata'?: JsonApiAutomationOutAttributesMetadata | null;
48167
- /**
48168
- * Current state of the automation.
48169
- */
48170
- 'state'?: JsonApiAutomationInAttributesStateEnum;
48171
- /**
48172
- * Specify automation evaluation mode.
48173
- */
48174
- 'evaluationMode'?: JsonApiAutomationInAttributesEvaluationModeEnum;
48175
- 'schedule'?: JsonApiAutomationOutAttributesSchedule;
48176
- 'alert'?: JsonApiAutomationOutAttributesAlert;
48177
- 'tabularExports'?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
48178
- 'visualExports'?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
48179
- 'imageExports'?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
48180
- 'rawExports'?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
48181
- 'slidesExports'?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
48182
- 'dashboardTabularExports'?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
48183
- /**
48184
- * External recipients of the automation action results.
48185
- */
48186
- 'externalRecipients'?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
48187
- }
48188
-
48189
- export declare type JsonApiAutomationInAttributesEvaluationModeEnum = 'SHARED' | 'PER_RECIPIENT';
48190
-
48191
- export declare type JsonApiAutomationInAttributesStateEnum = 'ACTIVE' | 'PAUSED';
48192
-
48193
48305
  export declare interface JsonApiAutomationInDocument {
48194
48306
  'data': JsonApiAutomationIn;
48195
48307
  }
48196
48308
 
48197
- export declare interface JsonApiAutomationInRelationships {
48198
- 'notificationChannel'?: JsonApiAutomationOutRelationshipsNotificationChannel;
48199
- 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
48200
- 'exportDefinitions'?: JsonApiAutomationOutRelationshipsExportDefinitions;
48201
- 'recipients'?: JsonApiAutomationOutRelationshipsRecipients;
48202
- }
48203
-
48204
48309
  export declare type JsonApiAutomationInTypeEnum = 'automation';
48205
48310
 
48206
48311
  /**
@@ -48225,7 +48330,7 @@ export declare interface JsonApiAutomationOut {
48225
48330
  * API identifier of an object
48226
48331
  */
48227
48332
  'id': string;
48228
- 'meta'?: JsonApiDatasetOutMeta;
48333
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
48229
48334
  'attributes'?: JsonApiAutomationOutAttributes;
48230
48335
  'relationships'?: JsonApiAutomationOutRelationships;
48231
48336
  }
@@ -48239,7 +48344,7 @@ export declare interface JsonApiAutomationOutAttributes {
48239
48344
  * Additional details to be included in the automated message.
48240
48345
  */
48241
48346
  'details'?: object;
48242
- 'metadata'?: JsonApiAutomationOutAttributesMetadata | null;
48347
+ 'metadata'?: JsonApiAutomationPatchAttributesMetadata | null;
48243
48348
  /**
48244
48349
  * Current state of the automation.
48245
48350
  */
@@ -48248,18 +48353,18 @@ export declare interface JsonApiAutomationOutAttributes {
48248
48353
  * Specify automation evaluation mode.
48249
48354
  */
48250
48355
  'evaluationMode'?: JsonApiAutomationOutAttributesEvaluationModeEnum;
48251
- 'schedule'?: JsonApiAutomationOutAttributesSchedule;
48252
- 'alert'?: JsonApiAutomationOutAttributesAlert;
48253
- 'tabularExports'?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
48254
- 'visualExports'?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
48255
- 'imageExports'?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
48256
- 'rawExports'?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
48257
- 'slidesExports'?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
48258
- 'dashboardTabularExports'?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
48356
+ 'schedule'?: JsonApiAutomationPatchAttributesSchedule;
48357
+ 'alert'?: JsonApiAutomationPatchAttributesAlert;
48358
+ 'tabularExports'?: Array<JsonApiAutomationPatchAttributesTabularExportsInner>;
48359
+ 'visualExports'?: Array<JsonApiAutomationPatchAttributesVisualExportsInner>;
48360
+ 'imageExports'?: Array<JsonApiAutomationPatchAttributesImageExportsInner>;
48361
+ 'rawExports'?: Array<JsonApiAutomationPatchAttributesRawExportsInner>;
48362
+ 'slidesExports'?: Array<JsonApiAutomationPatchAttributesSlidesExportsInner>;
48363
+ 'dashboardTabularExports'?: Array<JsonApiAutomationPatchAttributesDashboardTabularExportsInner>;
48259
48364
  /**
48260
48365
  * External recipients of the automation action results.
48261
48366
  */
48262
- 'externalRecipients'?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
48367
+ 'externalRecipients'?: Array<JsonApiAutomationPatchAttributesExternalRecipientsInner>;
48263
48368
  /**
48264
48369
  * Time of the entity creation.
48265
48370
  */
@@ -48270,54 +48375,169 @@ export declare interface JsonApiAutomationOutAttributes {
48270
48375
  'modifiedAt'?: string | null;
48271
48376
  }
48272
48377
 
48273
- export declare interface JsonApiAutomationOutAttributesAlert {
48378
+ export declare type JsonApiAutomationOutAttributesEvaluationModeEnum = 'SHARED' | 'PER_RECIPIENT';
48379
+
48380
+ export declare type JsonApiAutomationOutAttributesStateEnum = 'ACTIVE' | 'PAUSED';
48381
+
48382
+ export declare interface JsonApiAutomationOutDocument {
48383
+ 'data': JsonApiAutomationOut;
48384
+ 'links'?: ObjectLinks;
48385
+ /**
48386
+ * Included resources
48387
+ */
48388
+ 'included'?: Array<JsonApiAutomationOutIncludes>;
48389
+ }
48390
+
48391
+ /**
48392
+ * @type JsonApiAutomationOutIncludes
48393
+ */
48394
+ export declare type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiAutomationResultOutWithLinks | JsonApiExportDefinitionOutWithLinks | JsonApiNotificationChannelOutWithLinks | JsonApiUserIdentifierOutWithLinks | JsonApiUserOutWithLinks;
48395
+
48396
+ /**
48397
+ * A JSON:API document with a list of resources
48398
+ */
48399
+ export declare interface JsonApiAutomationOutList {
48400
+ 'data': Array<JsonApiAutomationOutWithLinks>;
48401
+ 'links'?: ListLinks;
48402
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
48403
+ /**
48404
+ * Included resources
48405
+ */
48406
+ 'included'?: Array<JsonApiAutomationOutIncludes>;
48407
+ }
48408
+
48409
+ export declare interface JsonApiAutomationOutRelationships {
48410
+ 'notificationChannel'?: JsonApiAutomationPatchRelationshipsNotificationChannel;
48411
+ 'analyticalDashboard'?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
48412
+ 'createdBy'?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
48413
+ 'modifiedBy'?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
48414
+ 'exportDefinitions'?: JsonApiAutomationPatchRelationshipsExportDefinitions;
48415
+ 'recipients'?: JsonApiAutomationPatchRelationshipsRecipients;
48416
+ 'automationResults'?: JsonApiAutomationOutRelationshipsAutomationResults;
48417
+ }
48418
+
48419
+ export declare interface JsonApiAutomationOutRelationshipsAutomationResults {
48420
+ /**
48421
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
48422
+ */
48423
+ 'data': Array<JsonApiAutomationResultLinkage>;
48424
+ }
48425
+
48426
+ export declare type JsonApiAutomationOutTypeEnum = 'automation';
48427
+
48428
+ export declare interface JsonApiAutomationOutWithLinks {
48429
+ /**
48430
+ * Object type
48431
+ */
48432
+ 'type': JsonApiAutomationOutWithLinksTypeEnum;
48433
+ /**
48434
+ * API identifier of an object
48435
+ */
48436
+ 'id': string;
48437
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
48438
+ 'attributes'?: JsonApiAutomationOutAttributes;
48439
+ 'relationships'?: JsonApiAutomationOutRelationships;
48440
+ 'links'?: ObjectLinks;
48441
+ }
48442
+
48443
+ export declare type JsonApiAutomationOutWithLinksTypeEnum = 'automation';
48444
+
48445
+ /**
48446
+ * JSON:API representation of patching automation entity.
48447
+ */
48448
+ export declare interface JsonApiAutomationPatch {
48449
+ /**
48450
+ * Object type
48451
+ */
48452
+ 'type': JsonApiAutomationPatchTypeEnum;
48453
+ /**
48454
+ * API identifier of an object
48455
+ */
48456
+ 'id': string;
48457
+ 'attributes'?: JsonApiAutomationPatchAttributes;
48458
+ 'relationships'?: JsonApiAutomationPatchRelationships;
48459
+ }
48460
+
48461
+ export declare interface JsonApiAutomationPatchAttributes {
48462
+ 'title'?: string;
48463
+ 'description'?: string;
48464
+ 'tags'?: Array<string>;
48465
+ 'areRelationsValid'?: boolean;
48466
+ /**
48467
+ * Additional details to be included in the automated message.
48468
+ */
48469
+ 'details'?: object;
48470
+ 'metadata'?: JsonApiAutomationPatchAttributesMetadata | null;
48471
+ /**
48472
+ * Current state of the automation.
48473
+ */
48474
+ 'state'?: JsonApiAutomationPatchAttributesStateEnum;
48475
+ /**
48476
+ * Specify automation evaluation mode.
48477
+ */
48478
+ 'evaluationMode'?: JsonApiAutomationPatchAttributesEvaluationModeEnum;
48479
+ 'schedule'?: JsonApiAutomationPatchAttributesSchedule;
48480
+ 'alert'?: JsonApiAutomationPatchAttributesAlert;
48481
+ 'tabularExports'?: Array<JsonApiAutomationPatchAttributesTabularExportsInner>;
48482
+ 'visualExports'?: Array<JsonApiAutomationPatchAttributesVisualExportsInner>;
48483
+ 'imageExports'?: Array<JsonApiAutomationPatchAttributesImageExportsInner>;
48484
+ 'rawExports'?: Array<JsonApiAutomationPatchAttributesRawExportsInner>;
48485
+ 'slidesExports'?: Array<JsonApiAutomationPatchAttributesSlidesExportsInner>;
48486
+ 'dashboardTabularExports'?: Array<JsonApiAutomationPatchAttributesDashboardTabularExportsInner>;
48487
+ /**
48488
+ * External recipients of the automation action results.
48489
+ */
48490
+ 'externalRecipients'?: Array<JsonApiAutomationPatchAttributesExternalRecipientsInner>;
48491
+ }
48492
+
48493
+ export declare interface JsonApiAutomationPatchAttributesAlert {
48274
48494
  'execution': AlertAfm;
48275
48495
  'condition': AlertCondition;
48276
48496
  /**
48277
48497
  * Trigger behavior for the alert. ALWAYS - alert is triggered every time the condition is met. ONCE - alert is triggered only once when the condition is met. ONCE_PER_INTERVAL - alert is triggered when the condition is met, then suppressed for the interval. If no interval is specified, it behaves as ALWAYS.
48278
48498
  */
48279
- 'trigger'?: JsonApiAutomationOutAttributesAlertTriggerEnum;
48499
+ 'trigger'?: JsonApiAutomationPatchAttributesAlertTriggerEnum;
48280
48500
  /**
48281
48501
  * Date granularity for the interval of ONCE_PER_INTERVAL trigger. Supported granularities: DAY, WEEK, MONTH, QUARTER, YEAR.
48282
48502
  */
48283
- 'interval'?: JsonApiAutomationOutAttributesAlertIntervalEnum;
48503
+ 'interval'?: JsonApiAutomationPatchAttributesAlertIntervalEnum;
48284
48504
  }
48285
48505
 
48286
- export declare type JsonApiAutomationOutAttributesAlertIntervalEnum = 'DAY' | 'WEEK' | 'MONTH' | 'QUARTER' | 'YEAR';
48506
+ export declare type JsonApiAutomationPatchAttributesAlertIntervalEnum = 'DAY' | 'WEEK' | 'MONTH' | 'QUARTER' | 'YEAR';
48287
48507
 
48288
- export declare type JsonApiAutomationOutAttributesAlertTriggerEnum = 'ALWAYS' | 'ONCE' | 'ONCE_PER_INTERVAL';
48508
+ export declare type JsonApiAutomationPatchAttributesAlertTriggerEnum = 'ALWAYS' | 'ONCE' | 'ONCE_PER_INTERVAL';
48289
48509
 
48290
- export declare interface JsonApiAutomationOutAttributesDashboardTabularExportsInner {
48510
+ export declare interface JsonApiAutomationPatchAttributesDashboardTabularExportsInner {
48291
48511
  'requestPayload': DashboardTabularExportRequestV2;
48292
48512
  }
48293
48513
 
48294
- export declare type JsonApiAutomationOutAttributesEvaluationModeEnum = 'SHARED' | 'PER_RECIPIENT';
48514
+ export declare type JsonApiAutomationPatchAttributesEvaluationModeEnum = 'SHARED' | 'PER_RECIPIENT';
48295
48515
 
48296
- export declare interface JsonApiAutomationOutAttributesExternalRecipientsInner {
48516
+ export declare interface JsonApiAutomationPatchAttributesExternalRecipientsInner {
48297
48517
  /**
48298
48518
  * E-mail address to send notifications from.
48299
48519
  */
48300
48520
  'email': string;
48301
48521
  }
48302
48522
 
48303
- export declare interface JsonApiAutomationOutAttributesImageExportsInner {
48523
+ export declare interface JsonApiAutomationPatchAttributesImageExportsInner {
48304
48524
  'requestPayload': ImageExportRequest;
48305
48525
  }
48306
48526
 
48307
48527
  /**
48308
48528
  * Additional information for the automation.
48309
48529
  */
48310
- export declare interface JsonApiAutomationOutAttributesMetadata {
48530
+ export declare interface JsonApiAutomationPatchAttributesMetadata {
48311
48531
  [key: string]: any;
48312
48532
  'widget'?: string;
48313
48533
  'visibleFilters'?: Array<VisibleFilter>;
48314
48534
  }
48315
48535
 
48316
- export declare interface JsonApiAutomationOutAttributesRawExportsInner {
48536
+ export declare interface JsonApiAutomationPatchAttributesRawExportsInner {
48317
48537
  'requestPayload': RawExportAutomationRequest;
48318
48538
  }
48319
48539
 
48320
- export declare interface JsonApiAutomationOutAttributesSchedule {
48540
+ export declare interface JsonApiAutomationPatchAttributesSchedule {
48321
48541
  /**
48322
48542
  * Cron expression defining the schedule of the automation. The format is SECOND MINUTE HOUR DAY-OF-MONTH MONTH DAY-OF-WEEK (YEAR). The example expression signifies an action every 30 minutes from 9:00 to 17:00 on workdays.
48323
48543
  */
@@ -48336,121 +48556,53 @@ export declare interface JsonApiAutomationOutAttributesSchedule {
48336
48556
  'firstRun'?: string;
48337
48557
  }
48338
48558
 
48339
- export declare interface JsonApiAutomationOutAttributesSlidesExportsInner {
48559
+ export declare interface JsonApiAutomationPatchAttributesSlidesExportsInner {
48340
48560
  'requestPayload': SlidesExportRequest;
48341
48561
  }
48342
48562
 
48343
- export declare type JsonApiAutomationOutAttributesStateEnum = 'ACTIVE' | 'PAUSED';
48563
+ export declare type JsonApiAutomationPatchAttributesStateEnum = 'ACTIVE' | 'PAUSED';
48344
48564
 
48345
- export declare interface JsonApiAutomationOutAttributesTabularExportsInner {
48565
+ export declare interface JsonApiAutomationPatchAttributesTabularExportsInner {
48346
48566
  'requestPayload': TabularExportRequest;
48347
48567
  }
48348
48568
 
48349
- export declare interface JsonApiAutomationOutAttributesVisualExportsInner {
48569
+ export declare interface JsonApiAutomationPatchAttributesVisualExportsInner {
48350
48570
  'requestPayload': VisualExportRequest;
48351
48571
  }
48352
48572
 
48353
- export declare interface JsonApiAutomationOutDocument {
48354
- 'data': JsonApiAutomationOut;
48355
- 'links'?: ObjectLinks;
48356
- /**
48357
- * Included resources
48358
- */
48359
- 'included'?: Array<JsonApiAutomationOutIncludes>;
48360
- }
48361
-
48362
- /**
48363
- * @type JsonApiAutomationOutIncludes
48364
- */
48365
- export declare type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiAutomationResultOutWithLinks | JsonApiExportDefinitionOutWithLinks | JsonApiNotificationChannelOutWithLinks | JsonApiUserIdentifierOutWithLinks | JsonApiUserOutWithLinks;
48366
-
48367
- /**
48368
- * A JSON:API document with a list of resources
48369
- */
48370
- export declare interface JsonApiAutomationOutList {
48371
- 'data': Array<JsonApiAutomationOutWithLinks>;
48372
- 'links'?: ListLinks;
48373
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
48374
- /**
48375
- * Included resources
48376
- */
48377
- 'included'?: Array<JsonApiAutomationOutIncludes>;
48573
+ export declare interface JsonApiAutomationPatchDocument {
48574
+ 'data': JsonApiAutomationPatch;
48378
48575
  }
48379
48576
 
48380
- export declare interface JsonApiAutomationOutRelationships {
48381
- 'notificationChannel'?: JsonApiAutomationOutRelationshipsNotificationChannel;
48382
- 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
48383
- 'createdBy'?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
48384
- 'modifiedBy'?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
48385
- 'exportDefinitions'?: JsonApiAutomationOutRelationshipsExportDefinitions;
48386
- 'recipients'?: JsonApiAutomationOutRelationshipsRecipients;
48387
- 'automationResults'?: JsonApiAutomationOutRelationshipsAutomationResults;
48577
+ export declare interface JsonApiAutomationPatchRelationships {
48578
+ 'notificationChannel'?: JsonApiAutomationPatchRelationshipsNotificationChannel;
48579
+ 'analyticalDashboard'?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
48580
+ 'exportDefinitions'?: JsonApiAutomationPatchRelationshipsExportDefinitions;
48581
+ 'recipients'?: JsonApiAutomationPatchRelationshipsRecipients;
48388
48582
  }
48389
48583
 
48390
- export declare interface JsonApiAutomationOutRelationshipsAutomationResults {
48391
- /**
48392
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
48393
- */
48394
- 'data': Array<JsonApiAutomationResultLinkage>;
48584
+ export declare interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard {
48585
+ 'data': JsonApiAnalyticalDashboardLinkage | null;
48395
48586
  }
48396
48587
 
48397
- export declare interface JsonApiAutomationOutRelationshipsExportDefinitions {
48588
+ export declare interface JsonApiAutomationPatchRelationshipsExportDefinitions {
48398
48589
  /**
48399
48590
  * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
48400
48591
  */
48401
48592
  'data': Array<JsonApiExportDefinitionLinkage>;
48402
48593
  }
48403
48594
 
48404
- export declare interface JsonApiAutomationOutRelationshipsNotificationChannel {
48595
+ export declare interface JsonApiAutomationPatchRelationshipsNotificationChannel {
48405
48596
  'data': JsonApiNotificationChannelLinkage | null;
48406
48597
  }
48407
48598
 
48408
- export declare interface JsonApiAutomationOutRelationshipsRecipients {
48599
+ export declare interface JsonApiAutomationPatchRelationshipsRecipients {
48409
48600
  /**
48410
48601
  * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
48411
48602
  */
48412
48603
  'data': Array<JsonApiUserLinkage>;
48413
48604
  }
48414
48605
 
48415
- export declare type JsonApiAutomationOutTypeEnum = 'automation';
48416
-
48417
- export declare interface JsonApiAutomationOutWithLinks {
48418
- /**
48419
- * Object type
48420
- */
48421
- 'type': JsonApiAutomationOutWithLinksTypeEnum;
48422
- /**
48423
- * API identifier of an object
48424
- */
48425
- 'id': string;
48426
- 'meta'?: JsonApiDatasetOutMeta;
48427
- 'attributes'?: JsonApiAutomationOutAttributes;
48428
- 'relationships'?: JsonApiAutomationOutRelationships;
48429
- 'links'?: ObjectLinks;
48430
- }
48431
-
48432
- export declare type JsonApiAutomationOutWithLinksTypeEnum = 'automation';
48433
-
48434
- /**
48435
- * JSON:API representation of patching automation entity.
48436
- */
48437
- export declare interface JsonApiAutomationPatch {
48438
- /**
48439
- * Object type
48440
- */
48441
- 'type': JsonApiAutomationPatchTypeEnum;
48442
- /**
48443
- * API identifier of an object
48444
- */
48445
- 'id': string;
48446
- 'attributes'?: JsonApiAutomationInAttributes;
48447
- 'relationships'?: JsonApiAutomationInRelationships;
48448
- }
48449
-
48450
- export declare interface JsonApiAutomationPatchDocument {
48451
- 'data': JsonApiAutomationPatch;
48452
- }
48453
-
48454
48606
  export declare type JsonApiAutomationPatchTypeEnum = 'automation';
48455
48607
 
48456
48608
  /**
@@ -48500,7 +48652,7 @@ export declare type JsonApiAutomationResultOutAttributesStatusEnum = 'SUCCESS' |
48500
48652
  export declare interface JsonApiAutomationResultOutList {
48501
48653
  'data': Array<JsonApiAutomationResultOutWithLinks>;
48502
48654
  'links'?: ListLinks;
48503
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
48655
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
48504
48656
  /**
48505
48657
  * Included resources
48506
48658
  */
@@ -48541,7 +48693,15 @@ export declare interface JsonApiColorPaletteIn {
48541
48693
  * API identifier of an object
48542
48694
  */
48543
48695
  'id': string;
48544
- 'attributes': JsonApiColorPaletteOutAttributes;
48696
+ 'attributes': JsonApiColorPaletteInAttributes;
48697
+ }
48698
+
48699
+ export declare interface JsonApiColorPaletteInAttributes {
48700
+ 'name': string;
48701
+ /**
48702
+ * Free-form JSON content. Maximum supported length is 15000 characters.
48703
+ */
48704
+ 'content': object;
48545
48705
  }
48546
48706
 
48547
48707
  export declare interface JsonApiColorPaletteInDocument {
@@ -48562,15 +48722,7 @@ export declare interface JsonApiColorPaletteOut {
48562
48722
  * API identifier of an object
48563
48723
  */
48564
48724
  'id': string;
48565
- 'attributes': JsonApiColorPaletteOutAttributes;
48566
- }
48567
-
48568
- export declare interface JsonApiColorPaletteOutAttributes {
48569
- 'name': string;
48570
- /**
48571
- * Free-form JSON content. Maximum supported length is 15000 characters.
48572
- */
48573
- 'content': object;
48725
+ 'attributes': JsonApiColorPaletteInAttributes;
48574
48726
  }
48575
48727
 
48576
48728
  export declare interface JsonApiColorPaletteOutDocument {
@@ -48584,7 +48736,7 @@ export declare interface JsonApiColorPaletteOutDocument {
48584
48736
  export declare interface JsonApiColorPaletteOutList {
48585
48737
  'data': Array<JsonApiColorPaletteOutWithLinks>;
48586
48738
  'links'?: ListLinks;
48587
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
48739
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
48588
48740
  }
48589
48741
 
48590
48742
  export declare type JsonApiColorPaletteOutTypeEnum = 'colorPalette';
@@ -48598,7 +48750,7 @@ export declare interface JsonApiColorPaletteOutWithLinks {
48598
48750
  * API identifier of an object
48599
48751
  */
48600
48752
  'id': string;
48601
- 'attributes': JsonApiColorPaletteOutAttributes;
48753
+ 'attributes': JsonApiColorPaletteInAttributes;
48602
48754
  'links'?: ObjectLinks;
48603
48755
  }
48604
48756
 
@@ -48645,7 +48797,7 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
48645
48797
  * API identifier of an object
48646
48798
  */
48647
48799
  'id': string;
48648
- 'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
48800
+ 'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
48649
48801
  }
48650
48802
 
48651
48803
  export declare interface JsonApiCookieSecurityConfigurationInDocument {
@@ -48666,15 +48818,7 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
48666
48818
  * API identifier of an object
48667
48819
  */
48668
48820
  'id': string;
48669
- 'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
48670
- }
48671
-
48672
- export declare interface JsonApiCookieSecurityConfigurationOutAttributes {
48673
- 'lastRotation'?: string;
48674
- /**
48675
- * Length of interval between automatic rotations expressed in format of ISO 8601 duration
48676
- */
48677
- 'rotationInterval'?: string;
48821
+ 'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
48678
48822
  }
48679
48823
 
48680
48824
  export declare interface JsonApiCookieSecurityConfigurationOutDocument {
@@ -48696,7 +48840,15 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
48696
48840
  * API identifier of an object
48697
48841
  */
48698
48842
  'id': string;
48699
- 'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
48843
+ 'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
48844
+ }
48845
+
48846
+ export declare interface JsonApiCookieSecurityConfigurationPatchAttributes {
48847
+ 'lastRotation'?: string;
48848
+ /**
48849
+ * Length of interval between automatic rotations expressed in format of ISO 8601 duration
48850
+ */
48851
+ 'rotationInterval'?: string;
48700
48852
  }
48701
48853
 
48702
48854
  export declare interface JsonApiCookieSecurityConfigurationPatchDocument {
@@ -48717,7 +48869,11 @@ export declare interface JsonApiCspDirectiveIn {
48717
48869
  * API identifier of an object
48718
48870
  */
48719
48871
  'id': string;
48720
- 'attributes': JsonApiCspDirectiveOutAttributes;
48872
+ 'attributes': JsonApiCspDirectiveInAttributes;
48873
+ }
48874
+
48875
+ export declare interface JsonApiCspDirectiveInAttributes {
48876
+ 'sources': Array<string>;
48721
48877
  }
48722
48878
 
48723
48879
  export declare interface JsonApiCspDirectiveInDocument {
@@ -48738,11 +48894,7 @@ export declare interface JsonApiCspDirectiveOut {
48738
48894
  * API identifier of an object
48739
48895
  */
48740
48896
  'id': string;
48741
- 'attributes': JsonApiCspDirectiveOutAttributes;
48742
- }
48743
-
48744
- export declare interface JsonApiCspDirectiveOutAttributes {
48745
- 'sources': Array<string>;
48897
+ 'attributes': JsonApiCspDirectiveInAttributes;
48746
48898
  }
48747
48899
 
48748
48900
  export declare interface JsonApiCspDirectiveOutDocument {
@@ -48756,7 +48908,7 @@ export declare interface JsonApiCspDirectiveOutDocument {
48756
48908
  export declare interface JsonApiCspDirectiveOutList {
48757
48909
  'data': Array<JsonApiCspDirectiveOutWithLinks>;
48758
48910
  'links'?: ListLinks;
48759
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
48911
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
48760
48912
  }
48761
48913
 
48762
48914
  export declare type JsonApiCspDirectiveOutTypeEnum = 'cspDirective';
@@ -48770,7 +48922,7 @@ export declare interface JsonApiCspDirectiveOutWithLinks {
48770
48922
  * API identifier of an object
48771
48923
  */
48772
48924
  'id': string;
48773
- 'attributes': JsonApiCspDirectiveOutAttributes;
48925
+ 'attributes': JsonApiCspDirectiveInAttributes;
48774
48926
  'links'?: ObjectLinks;
48775
48927
  }
48776
48928
 
@@ -48834,7 +48986,7 @@ export declare interface JsonApiCustomApplicationSettingOut {
48834
48986
  * API identifier of an object
48835
48987
  */
48836
48988
  'id': string;
48837
- 'meta'?: JsonApiDatasetOutMeta;
48989
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
48838
48990
  'attributes': JsonApiCustomApplicationSettingOutAttributes;
48839
48991
  }
48840
48992
 
@@ -48857,7 +49009,7 @@ export declare interface JsonApiCustomApplicationSettingOutDocument {
48857
49009
  export declare interface JsonApiCustomApplicationSettingOutList {
48858
49010
  'data': Array<JsonApiCustomApplicationSettingOutWithLinks>;
48859
49011
  'links'?: ListLinks;
48860
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
49012
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
48861
49013
  }
48862
49014
 
48863
49015
  export declare type JsonApiCustomApplicationSettingOutTypeEnum = 'customApplicationSetting';
@@ -48871,7 +49023,7 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
48871
49023
  * API identifier of an object
48872
49024
  */
48873
49025
  'id': string;
48874
- 'meta'?: JsonApiDatasetOutMeta;
49026
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
48875
49027
  'attributes': JsonApiCustomApplicationSettingOutAttributes;
48876
49028
  'links'?: ObjectLinks;
48877
49029
  }
@@ -48940,7 +49092,12 @@ export declare interface JsonApiCustomGeoCollectionIn {
48940
49092
  * API identifier of an object
48941
49093
  */
48942
49094
  'id': string;
48943
- 'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
49095
+ 'attributes'?: JsonApiCustomGeoCollectionInAttributes;
49096
+ }
49097
+
49098
+ export declare interface JsonApiCustomGeoCollectionInAttributes {
49099
+ 'name'?: string | null;
49100
+ 'description'?: string | null;
48944
49101
  }
48945
49102
 
48946
49103
  export declare interface JsonApiCustomGeoCollectionInDocument {
@@ -48961,12 +49118,7 @@ export declare interface JsonApiCustomGeoCollectionOut {
48961
49118
  * API identifier of an object
48962
49119
  */
48963
49120
  'id': string;
48964
- 'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
48965
- }
48966
-
48967
- export declare interface JsonApiCustomGeoCollectionOutAttributes {
48968
- 'name'?: string | null;
48969
- 'description'?: string | null;
49121
+ 'attributes'?: JsonApiCustomGeoCollectionInAttributes;
48970
49122
  }
48971
49123
 
48972
49124
  export declare interface JsonApiCustomGeoCollectionOutDocument {
@@ -48980,7 +49132,7 @@ export declare interface JsonApiCustomGeoCollectionOutDocument {
48980
49132
  export declare interface JsonApiCustomGeoCollectionOutList {
48981
49133
  'data': Array<JsonApiCustomGeoCollectionOutWithLinks>;
48982
49134
  'links'?: ListLinks;
48983
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
49135
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
48984
49136
  }
48985
49137
 
48986
49138
  export declare type JsonApiCustomGeoCollectionOutTypeEnum = 'customGeoCollection';
@@ -48994,7 +49146,7 @@ export declare interface JsonApiCustomGeoCollectionOutWithLinks {
48994
49146
  * API identifier of an object
48995
49147
  */
48996
49148
  'id': string;
48997
- 'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
49149
+ 'attributes'?: JsonApiCustomGeoCollectionInAttributes;
48998
49150
  'links'?: ObjectLinks;
48999
49151
  }
49000
49152
 
@@ -49012,7 +49164,7 @@ export declare interface JsonApiCustomGeoCollectionPatch {
49012
49164
  * API identifier of an object
49013
49165
  */
49014
49166
  'id': string;
49015
- 'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
49167
+ 'attributes'?: JsonApiCustomGeoCollectionInAttributes;
49016
49168
  }
49017
49169
 
49018
49170
  export declare interface JsonApiCustomGeoCollectionPatchDocument {
@@ -49033,7 +49185,7 @@ export declare interface JsonApiDashboardPluginIn {
49033
49185
  * API identifier of an object
49034
49186
  */
49035
49187
  'id': string;
49036
- 'attributes'?: JsonApiDashboardPluginPostOptionalIdAttributes;
49188
+ 'attributes'?: JsonApiDashboardPluginPatchAttributes;
49037
49189
  }
49038
49190
 
49039
49191
  export declare interface JsonApiDashboardPluginInDocument {
@@ -49064,7 +49216,7 @@ export declare interface JsonApiDashboardPluginOut {
49064
49216
  * API identifier of an object
49065
49217
  */
49066
49218
  'id': string;
49067
- 'meta'?: JsonApiDatasetOutMeta;
49219
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
49068
49220
  'attributes'?: JsonApiDashboardPluginOutAttributes;
49069
49221
  'relationships'?: JsonApiDashboardPluginOutRelationships;
49070
49222
  }
@@ -49103,7 +49255,7 @@ export declare interface JsonApiDashboardPluginOutDocument {
49103
49255
  export declare interface JsonApiDashboardPluginOutList {
49104
49256
  'data': Array<JsonApiDashboardPluginOutWithLinks>;
49105
49257
  'links'?: ListLinks;
49106
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
49258
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
49107
49259
  /**
49108
49260
  * Included resources
49109
49261
  */
@@ -49126,7 +49278,7 @@ export declare interface JsonApiDashboardPluginOutWithLinks {
49126
49278
  * API identifier of an object
49127
49279
  */
49128
49280
  'id': string;
49129
- 'meta'?: JsonApiDatasetOutMeta;
49281
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
49130
49282
  'attributes'?: JsonApiDashboardPluginOutAttributes;
49131
49283
  'relationships'?: JsonApiDashboardPluginOutRelationships;
49132
49284
  'links'?: ObjectLinks;
@@ -49146,7 +49298,18 @@ export declare interface JsonApiDashboardPluginPatch {
49146
49298
  * API identifier of an object
49147
49299
  */
49148
49300
  'id': string;
49149
- 'attributes'?: JsonApiDashboardPluginPostOptionalIdAttributes;
49301
+ 'attributes'?: JsonApiDashboardPluginPatchAttributes;
49302
+ }
49303
+
49304
+ export declare interface JsonApiDashboardPluginPatchAttributes {
49305
+ 'title'?: string;
49306
+ 'description'?: string;
49307
+ 'tags'?: Array<string>;
49308
+ 'areRelationsValid'?: boolean;
49309
+ /**
49310
+ * Free-form JSON content. Maximum supported length is 250000 characters.
49311
+ */
49312
+ 'content'?: object;
49150
49313
  }
49151
49314
 
49152
49315
  export declare interface JsonApiDashboardPluginPatchDocument {
@@ -49167,18 +49330,7 @@ export declare interface JsonApiDashboardPluginPostOptionalId {
49167
49330
  * API identifier of an object
49168
49331
  */
49169
49332
  'id'?: string;
49170
- 'attributes'?: JsonApiDashboardPluginPostOptionalIdAttributes;
49171
- }
49172
-
49173
- export declare interface JsonApiDashboardPluginPostOptionalIdAttributes {
49174
- 'title'?: string;
49175
- 'description'?: string;
49176
- 'tags'?: Array<string>;
49177
- 'areRelationsValid'?: boolean;
49178
- /**
49179
- * Free-form JSON content. Maximum supported length is 250000 characters.
49180
- */
49181
- 'content'?: object;
49333
+ 'attributes'?: JsonApiDashboardPluginPatchAttributes;
49182
49334
  }
49183
49335
 
49184
49336
  export declare interface JsonApiDashboardPluginPostOptionalIdDocument {
@@ -49209,7 +49361,7 @@ export declare interface JsonApiDatasetOut {
49209
49361
  * API identifier of an object
49210
49362
  */
49211
49363
  'id': string;
49212
- 'meta'?: JsonApiDatasetOutMeta;
49364
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
49213
49365
  'attributes': JsonApiDatasetOutAttributes;
49214
49366
  'relationships'?: JsonApiDatasetOutRelationships;
49215
49367
  }
@@ -49295,35 +49447,18 @@ export declare type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLink
49295
49447
  export declare interface JsonApiDatasetOutList {
49296
49448
  'data': Array<JsonApiDatasetOutWithLinks>;
49297
49449
  'links'?: ListLinks;
49298
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
49450
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
49299
49451
  /**
49300
49452
  * Included resources
49301
49453
  */
49302
49454
  'included'?: Array<JsonApiDatasetOutIncludes>;
49303
49455
  }
49304
49456
 
49305
- export declare interface JsonApiDatasetOutMeta {
49306
- 'origin'?: JsonApiDatasetOutMetaOrigin;
49307
- }
49308
-
49309
- export declare interface JsonApiDatasetOutMetaOrigin {
49310
- /**
49311
- * defines type of the origin of the entity
49312
- */
49313
- 'originType': JsonApiDatasetOutMetaOriginOriginTypeEnum;
49314
- /**
49315
- * defines id of the workspace where the entity comes from
49316
- */
49317
- 'originId': string;
49318
- }
49319
-
49320
- export declare type JsonApiDatasetOutMetaOriginOriginTypeEnum = 'NATIVE' | 'PARENT';
49321
-
49322
49457
  export declare interface JsonApiDatasetOutRelationships {
49323
- 'attributes'?: JsonApiDatasetOutRelationshipsAttributes;
49324
- 'facts'?: JsonApiDatasetOutRelationshipsFacts;
49458
+ 'attributes'?: JsonApiVisualizationObjectOutRelationshipsAttributes;
49459
+ 'facts'?: JsonApiVisualizationObjectOutRelationshipsFacts;
49325
49460
  'aggregatedFacts'?: JsonApiDatasetOutRelationshipsAggregatedFacts;
49326
- 'references'?: JsonApiDatasetOutRelationshipsReferences;
49461
+ 'references'?: JsonApiVisualizationObjectOutRelationshipsDatasets;
49327
49462
  'workspaceDataFilters'?: JsonApiDatasetOutRelationshipsWorkspaceDataFilters;
49328
49463
  }
49329
49464
 
@@ -49334,27 +49469,6 @@ export declare interface JsonApiDatasetOutRelationshipsAggregatedFacts {
49334
49469
  'data': Array<JsonApiAggregatedFactLinkage>;
49335
49470
  }
49336
49471
 
49337
- export declare interface JsonApiDatasetOutRelationshipsAttributes {
49338
- /**
49339
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
49340
- */
49341
- 'data': Array<JsonApiAttributeLinkage>;
49342
- }
49343
-
49344
- export declare interface JsonApiDatasetOutRelationshipsFacts {
49345
- /**
49346
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
49347
- */
49348
- 'data': Array<JsonApiFactLinkage>;
49349
- }
49350
-
49351
- export declare interface JsonApiDatasetOutRelationshipsReferences {
49352
- /**
49353
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
49354
- */
49355
- 'data': Array<JsonApiDatasetLinkage>;
49356
- }
49357
-
49358
49472
  export declare interface JsonApiDatasetOutRelationshipsWorkspaceDataFilters {
49359
49473
  /**
49360
49474
  * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
@@ -49373,7 +49487,7 @@ export declare interface JsonApiDatasetOutWithLinks {
49373
49487
  * API identifier of an object
49374
49488
  */
49375
49489
  'id': string;
49376
- 'meta'?: JsonApiDatasetOutMeta;
49490
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
49377
49491
  'attributes': JsonApiDatasetOutAttributes;
49378
49492
  'relationships'?: JsonApiDatasetOutRelationships;
49379
49493
  'links'?: ObjectLinks;
@@ -49414,7 +49528,7 @@ export declare interface JsonApiDataSourceIdentifierOut {
49414
49528
  * API identifier of an object
49415
49529
  */
49416
49530
  'id': string;
49417
- 'meta'?: JsonApiDataSourceIdentifierOutMeta;
49531
+ 'meta'?: JsonApiDataSourceOutMeta;
49418
49532
  'attributes': JsonApiDataSourceIdentifierOutAttributes;
49419
49533
  }
49420
49534
 
@@ -49437,18 +49551,9 @@ export declare interface JsonApiDataSourceIdentifierOutDocument {
49437
49551
  export declare interface JsonApiDataSourceIdentifierOutList {
49438
49552
  'data': Array<JsonApiDataSourceIdentifierOutWithLinks>;
49439
49553
  'links'?: ListLinks;
49440
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
49441
- }
49442
-
49443
- export declare interface JsonApiDataSourceIdentifierOutMeta {
49444
- /**
49445
- * List of valid permissions for a logged-in user.
49446
- */
49447
- 'permissions'?: Array<JsonApiDataSourceIdentifierOutMetaPermissionsEnum>;
49554
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
49448
49555
  }
49449
49556
 
49450
- export declare type JsonApiDataSourceIdentifierOutMetaPermissionsEnum = 'MANAGE' | 'USE';
49451
-
49452
49557
  export declare type JsonApiDataSourceIdentifierOutTypeEnum = 'dataSourceIdentifier';
49453
49558
 
49454
49559
  export declare interface JsonApiDataSourceIdentifierOutWithLinks {
@@ -49460,7 +49565,7 @@ export declare interface JsonApiDataSourceIdentifierOutWithLinks {
49460
49565
  * API identifier of an object
49461
49566
  */
49462
49567
  'id': string;
49463
- 'meta'?: JsonApiDataSourceIdentifierOutMeta;
49568
+ 'meta'?: JsonApiDataSourceOutMeta;
49464
49569
  'attributes': JsonApiDataSourceIdentifierOutAttributes;
49465
49570
  'links'?: ObjectLinks;
49466
49571
  }
@@ -49530,7 +49635,7 @@ export declare interface JsonApiDataSourceInAttributes {
49530
49635
  /**
49531
49636
  * Additional parameters to be used when connecting to the database providing the data for the data source.
49532
49637
  */
49533
- 'parameters'?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
49638
+ 'parameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
49534
49639
  /**
49535
49640
  * Determines how the results coming from a particular datasource should be cached.
49536
49641
  */
@@ -49543,6 +49648,11 @@ export declare interface JsonApiDataSourceInAttributes {
49543
49648
 
49544
49649
  export declare type JsonApiDataSourceInAttributesCacheStrategyEnum = 'ALWAYS' | 'NEVER';
49545
49650
 
49651
+ export declare interface JsonApiDataSourceInAttributesParametersInner {
49652
+ 'name': string;
49653
+ 'value': string;
49654
+ }
49655
+
49546
49656
  export declare type JsonApiDataSourceInAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE';
49547
49657
 
49548
49658
  export declare interface JsonApiDataSourceInDocument {
@@ -49563,7 +49673,7 @@ export declare interface JsonApiDataSourceOut {
49563
49673
  * API identifier of an object
49564
49674
  */
49565
49675
  'id': string;
49566
- 'meta'?: JsonApiDataSourceIdentifierOutMeta;
49676
+ 'meta'?: JsonApiDataSourceOutMeta;
49567
49677
  'attributes': JsonApiDataSourceOutAttributes;
49568
49678
  }
49569
49679
 
@@ -49595,11 +49705,11 @@ export declare interface JsonApiDataSourceOutAttributes {
49595
49705
  /**
49596
49706
  * Additional parameters to be used when connecting to the database providing the data for the data source.
49597
49707
  */
49598
- 'parameters'?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
49708
+ 'parameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
49599
49709
  /**
49600
49710
  * Decoded parameters to be used when connecting to the database providing the data for the data source.
49601
49711
  */
49602
- 'decodedParameters'?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
49712
+ 'decodedParameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
49603
49713
  /**
49604
49714
  * Determines how the results coming from a particular datasource should be cached.
49605
49715
  */
@@ -49618,11 +49728,6 @@ export declare type JsonApiDataSourceOutAttributesAuthenticationTypeEnum = 'USER
49618
49728
 
49619
49729
  export declare type JsonApiDataSourceOutAttributesCacheStrategyEnum = 'ALWAYS' | 'NEVER';
49620
49730
 
49621
- export declare interface JsonApiDataSourceOutAttributesParametersInner {
49622
- 'name': string;
49623
- 'value': string;
49624
- }
49625
-
49626
49731
  export declare type JsonApiDataSourceOutAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE';
49627
49732
 
49628
49733
  export declare interface JsonApiDataSourceOutDocument {
@@ -49636,9 +49741,18 @@ export declare interface JsonApiDataSourceOutDocument {
49636
49741
  export declare interface JsonApiDataSourceOutList {
49637
49742
  'data': Array<JsonApiDataSourceOutWithLinks>;
49638
49743
  'links'?: ListLinks;
49639
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
49744
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
49745
+ }
49746
+
49747
+ export declare interface JsonApiDataSourceOutMeta {
49748
+ /**
49749
+ * List of valid permissions for a logged-in user.
49750
+ */
49751
+ 'permissions'?: Array<JsonApiDataSourceOutMetaPermissionsEnum>;
49640
49752
  }
49641
49753
 
49754
+ export declare type JsonApiDataSourceOutMetaPermissionsEnum = 'MANAGE' | 'USE';
49755
+
49642
49756
  export declare type JsonApiDataSourceOutTypeEnum = 'dataSource';
49643
49757
 
49644
49758
  export declare interface JsonApiDataSourceOutWithLinks {
@@ -49650,7 +49764,7 @@ export declare interface JsonApiDataSourceOutWithLinks {
49650
49764
  * API identifier of an object
49651
49765
  */
49652
49766
  'id': string;
49653
- 'meta'?: JsonApiDataSourceIdentifierOutMeta;
49767
+ 'meta'?: JsonApiDataSourceOutMeta;
49654
49768
  'attributes': JsonApiDataSourceOutAttributes;
49655
49769
  'links'?: ObjectLinks;
49656
49770
  }
@@ -49720,7 +49834,7 @@ export declare interface JsonApiDataSourcePatchAttributes {
49720
49834
  /**
49721
49835
  * Additional parameters to be used when connecting to the database providing the data for the data source.
49722
49836
  */
49723
- 'parameters'?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
49837
+ 'parameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
49724
49838
  /**
49725
49839
  * Determines how the results coming from a particular datasource should be cached.
49726
49840
  */
@@ -49772,7 +49886,7 @@ export declare interface JsonApiEntitlementOutDocument {
49772
49886
  export declare interface JsonApiEntitlementOutList {
49773
49887
  'data': Array<JsonApiEntitlementOutWithLinks>;
49774
49888
  'links'?: ListLinks;
49775
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
49889
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
49776
49890
  }
49777
49891
 
49778
49892
  export declare type JsonApiEntitlementOutTypeEnum = 'entitlement';
@@ -49804,8 +49918,8 @@ export declare interface JsonApiExportDefinitionIn {
49804
49918
  * API identifier of an object
49805
49919
  */
49806
49920
  'id': string;
49807
- 'attributes'?: JsonApiExportDefinitionPostOptionalIdAttributes;
49808
- 'relationships'?: JsonApiExportDefinitionPostOptionalIdRelationships;
49921
+ 'attributes'?: JsonApiExportDefinitionPatchAttributes;
49922
+ 'relationships'?: JsonApiExportDefinitionPatchRelationships;
49809
49923
  }
49810
49924
 
49811
49925
  export declare interface JsonApiExportDefinitionInDocument {
@@ -49836,7 +49950,7 @@ export declare interface JsonApiExportDefinitionOut {
49836
49950
  * API identifier of an object
49837
49951
  */
49838
49952
  'id': string;
49839
- 'meta'?: JsonApiDatasetOutMeta;
49953
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
49840
49954
  'attributes'?: JsonApiExportDefinitionOutAttributes;
49841
49955
  'relationships'?: JsonApiExportDefinitionOutRelationships;
49842
49956
  }
@@ -49883,7 +49997,7 @@ export declare type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashbo
49883
49997
  export declare interface JsonApiExportDefinitionOutList {
49884
49998
  'data': Array<JsonApiExportDefinitionOutWithLinks>;
49885
49999
  'links'?: ListLinks;
49886
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
50000
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
49887
50001
  /**
49888
50002
  * Included resources
49889
50003
  */
@@ -49892,16 +50006,12 @@ export declare interface JsonApiExportDefinitionOutList {
49892
50006
 
49893
50007
  export declare interface JsonApiExportDefinitionOutRelationships {
49894
50008
  'visualizationObject'?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
49895
- 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
50009
+ 'analyticalDashboard'?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
49896
50010
  'automation'?: JsonApiExportDefinitionOutRelationshipsAutomation;
49897
50011
  'createdBy'?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
49898
50012
  'modifiedBy'?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
49899
50013
  }
49900
50014
 
49901
- export declare interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
49902
- 'data': JsonApiAnalyticalDashboardLinkage | null;
49903
- }
49904
-
49905
50015
  export declare interface JsonApiExportDefinitionOutRelationshipsAutomation {
49906
50016
  'data': JsonApiAutomationLinkage | null;
49907
50017
  }
@@ -49921,7 +50031,7 @@ export declare interface JsonApiExportDefinitionOutWithLinks {
49921
50031
  * API identifier of an object
49922
50032
  */
49923
50033
  'id': string;
49924
- 'meta'?: JsonApiDatasetOutMeta;
50034
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
49925
50035
  'attributes'?: JsonApiExportDefinitionOutAttributes;
49926
50036
  'relationships'?: JsonApiExportDefinitionOutRelationships;
49927
50037
  'links'?: ObjectLinks;
@@ -49941,14 +50051,27 @@ export declare interface JsonApiExportDefinitionPatch {
49941
50051
  * API identifier of an object
49942
50052
  */
49943
50053
  'id': string;
49944
- 'attributes'?: JsonApiExportDefinitionPostOptionalIdAttributes;
49945
- 'relationships'?: JsonApiExportDefinitionPostOptionalIdRelationships;
50054
+ 'attributes'?: JsonApiExportDefinitionPatchAttributes;
50055
+ 'relationships'?: JsonApiExportDefinitionPatchRelationships;
50056
+ }
50057
+
50058
+ export declare interface JsonApiExportDefinitionPatchAttributes {
50059
+ 'title'?: string;
50060
+ 'description'?: string;
50061
+ 'tags'?: Array<string>;
50062
+ 'requestPayload'?: JsonApiExportDefinitionOutAttributesRequestPayload;
50063
+ 'areRelationsValid'?: boolean;
49946
50064
  }
49947
50065
 
49948
50066
  export declare interface JsonApiExportDefinitionPatchDocument {
49949
50067
  'data': JsonApiExportDefinitionPatch;
49950
50068
  }
49951
50069
 
50070
+ export declare interface JsonApiExportDefinitionPatchRelationships {
50071
+ 'visualizationObject'?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
50072
+ 'analyticalDashboard'?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
50073
+ }
50074
+
49952
50075
  export declare type JsonApiExportDefinitionPatchTypeEnum = 'exportDefinition';
49953
50076
 
49954
50077
  /**
@@ -49963,27 +50086,14 @@ export declare interface JsonApiExportDefinitionPostOptionalId {
49963
50086
  * API identifier of an object
49964
50087
  */
49965
50088
  'id'?: string;
49966
- 'attributes'?: JsonApiExportDefinitionPostOptionalIdAttributes;
49967
- 'relationships'?: JsonApiExportDefinitionPostOptionalIdRelationships;
49968
- }
49969
-
49970
- export declare interface JsonApiExportDefinitionPostOptionalIdAttributes {
49971
- 'title'?: string;
49972
- 'description'?: string;
49973
- 'tags'?: Array<string>;
49974
- 'requestPayload'?: JsonApiExportDefinitionOutAttributesRequestPayload;
49975
- 'areRelationsValid'?: boolean;
50089
+ 'attributes'?: JsonApiExportDefinitionPatchAttributes;
50090
+ 'relationships'?: JsonApiExportDefinitionPatchRelationships;
49976
50091
  }
49977
50092
 
49978
50093
  export declare interface JsonApiExportDefinitionPostOptionalIdDocument {
49979
50094
  'data': JsonApiExportDefinitionPostOptionalId;
49980
50095
  }
49981
50096
 
49982
- export declare interface JsonApiExportDefinitionPostOptionalIdRelationships {
49983
- 'visualizationObject'?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
49984
- 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
49985
- }
49986
-
49987
50097
  export declare type JsonApiExportDefinitionPostOptionalIdTypeEnum = 'exportDefinition';
49988
50098
 
49989
50099
  /**
@@ -49998,67 +50108,67 @@ export declare interface JsonApiExportTemplateIn {
49998
50108
  * API identifier of an object
49999
50109
  */
50000
50110
  'id': string;
50001
- 'attributes': JsonApiExportTemplateOutAttributes;
50002
- }
50003
-
50004
- export declare interface JsonApiExportTemplateInDocument {
50005
- 'data': JsonApiExportTemplateIn;
50111
+ 'attributes': JsonApiExportTemplateInAttributes;
50006
50112
  }
50007
50113
 
50008
- export declare type JsonApiExportTemplateInTypeEnum = 'exportTemplate';
50009
-
50010
- /**
50011
- * JSON:API representation of exportTemplate entity.
50012
- */
50013
- export declare interface JsonApiExportTemplateOut {
50014
- /**
50015
- * Object type
50016
- */
50017
- 'type': JsonApiExportTemplateOutTypeEnum;
50018
- /**
50019
- * API identifier of an object
50020
- */
50021
- 'id': string;
50022
- 'attributes': JsonApiExportTemplateOutAttributes;
50023
- }
50024
-
50025
- export declare interface JsonApiExportTemplateOutAttributes {
50114
+ export declare interface JsonApiExportTemplateInAttributes {
50026
50115
  /**
50027
50116
  * User-facing name of the Slides template.
50028
50117
  */
50029
50118
  'name': string;
50030
- 'dashboardSlidesTemplate'?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
50031
- 'widgetSlidesTemplate'?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
50119
+ 'dashboardSlidesTemplate'?: JsonApiExportTemplateInAttributesDashboardSlidesTemplate | null;
50120
+ 'widgetSlidesTemplate'?: JsonApiExportTemplateInAttributesWidgetSlidesTemplate | null;
50032
50121
  }
50033
50122
 
50034
50123
  /**
50035
50124
  * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
50036
50125
  */
50037
- export declare interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
50126
+ export declare interface JsonApiExportTemplateInAttributesDashboardSlidesTemplate {
50038
50127
  /**
50039
50128
  * Export types this template applies to.
50040
50129
  */
50041
- 'appliedOn': Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
50130
+ 'appliedOn': Array<JsonApiExportTemplateInAttributesDashboardSlidesTemplateAppliedOnEnum>;
50042
50131
  'coverSlide'?: CoverSlideTemplate | null;
50043
50132
  'introSlide'?: IntroSlideTemplate | null;
50044
50133
  'sectionSlide'?: SectionSlideTemplate | null;
50045
50134
  'contentSlide'?: ContentSlideTemplate | null;
50046
50135
  }
50047
50136
 
50048
- export declare type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
50137
+ export declare type JsonApiExportTemplateInAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
50049
50138
 
50050
50139
  /**
50051
50140
  * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
50052
50141
  */
50053
- export declare interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
50142
+ export declare interface JsonApiExportTemplateInAttributesWidgetSlidesTemplate {
50054
50143
  /**
50055
50144
  * Export types this template applies to.
50056
50145
  */
50057
- 'appliedOn': Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
50146
+ 'appliedOn': Array<JsonApiExportTemplateInAttributesWidgetSlidesTemplateAppliedOnEnum>;
50058
50147
  'contentSlide'?: ContentSlideTemplate | null;
50059
50148
  }
50060
50149
 
50061
- export declare type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
50150
+ export declare type JsonApiExportTemplateInAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
50151
+
50152
+ export declare interface JsonApiExportTemplateInDocument {
50153
+ 'data': JsonApiExportTemplateIn;
50154
+ }
50155
+
50156
+ export declare type JsonApiExportTemplateInTypeEnum = 'exportTemplate';
50157
+
50158
+ /**
50159
+ * JSON:API representation of exportTemplate entity.
50160
+ */
50161
+ export declare interface JsonApiExportTemplateOut {
50162
+ /**
50163
+ * Object type
50164
+ */
50165
+ 'type': JsonApiExportTemplateOutTypeEnum;
50166
+ /**
50167
+ * API identifier of an object
50168
+ */
50169
+ 'id': string;
50170
+ 'attributes': JsonApiExportTemplateInAttributes;
50171
+ }
50062
50172
 
50063
50173
  export declare interface JsonApiExportTemplateOutDocument {
50064
50174
  'data': JsonApiExportTemplateOut;
@@ -50071,7 +50181,7 @@ export declare interface JsonApiExportTemplateOutDocument {
50071
50181
  export declare interface JsonApiExportTemplateOutList {
50072
50182
  'data': Array<JsonApiExportTemplateOutWithLinks>;
50073
50183
  'links'?: ListLinks;
50074
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
50184
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
50075
50185
  }
50076
50186
 
50077
50187
  export declare type JsonApiExportTemplateOutTypeEnum = 'exportTemplate';
@@ -50085,7 +50195,7 @@ export declare interface JsonApiExportTemplateOutWithLinks {
50085
50195
  * API identifier of an object
50086
50196
  */
50087
50197
  'id': string;
50088
- 'attributes': JsonApiExportTemplateOutAttributes;
50198
+ 'attributes': JsonApiExportTemplateInAttributes;
50089
50199
  'links'?: ObjectLinks;
50090
50200
  }
50091
50201
 
@@ -50111,8 +50221,8 @@ export declare interface JsonApiExportTemplatePatchAttributes {
50111
50221
  * User-facing name of the Slides template.
50112
50222
  */
50113
50223
  'name'?: string;
50114
- 'dashboardSlidesTemplate'?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
50115
- 'widgetSlidesTemplate'?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
50224
+ 'dashboardSlidesTemplate'?: JsonApiExportTemplateInAttributesDashboardSlidesTemplate | null;
50225
+ 'widgetSlidesTemplate'?: JsonApiExportTemplateInAttributesWidgetSlidesTemplate | null;
50116
50226
  }
50117
50227
 
50118
50228
  export declare interface JsonApiExportTemplatePatchDocument {
@@ -50133,7 +50243,7 @@ export declare interface JsonApiExportTemplatePostOptionalId {
50133
50243
  * API identifier of an object
50134
50244
  */
50135
50245
  'id'?: string;
50136
- 'attributes': JsonApiExportTemplateOutAttributes;
50246
+ 'attributes': JsonApiExportTemplateInAttributes;
50137
50247
  }
50138
50248
 
50139
50249
  export declare interface JsonApiExportTemplatePostOptionalIdDocument {
@@ -50164,7 +50274,7 @@ export declare interface JsonApiFactOut {
50164
50274
  * API identifier of an object
50165
50275
  */
50166
50276
  'id': string;
50167
- 'meta'?: JsonApiDatasetOutMeta;
50277
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
50168
50278
  'attributes'?: JsonApiFactOutAttributes;
50169
50279
  'relationships'?: JsonApiFactOutRelationships;
50170
50280
  }
@@ -50198,7 +50308,7 @@ export declare interface JsonApiFactOutDocument {
50198
50308
  export declare interface JsonApiFactOutList {
50199
50309
  'data': Array<JsonApiFactOutWithLinks>;
50200
50310
  'links'?: ListLinks;
50201
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
50311
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
50202
50312
  /**
50203
50313
  * Included resources
50204
50314
  */
@@ -50206,11 +50316,7 @@ export declare interface JsonApiFactOutList {
50206
50316
  }
50207
50317
 
50208
50318
  export declare interface JsonApiFactOutRelationships {
50209
- 'dataset'?: JsonApiFactOutRelationshipsDataset;
50210
- }
50211
-
50212
- export declare interface JsonApiFactOutRelationshipsDataset {
50213
- 'data': JsonApiDatasetLinkage | null;
50319
+ 'dataset'?: JsonApiAttributeOutRelationshipsDataset;
50214
50320
  }
50215
50321
 
50216
50322
  export declare type JsonApiFactOutTypeEnum = 'fact';
@@ -50224,7 +50330,7 @@ export declare interface JsonApiFactOutWithLinks {
50224
50330
  * API identifier of an object
50225
50331
  */
50226
50332
  'id': string;
50227
- 'meta'?: JsonApiDatasetOutMeta;
50333
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
50228
50334
  'attributes'?: JsonApiFactOutAttributes;
50229
50335
  'relationships'?: JsonApiFactOutRelationships;
50230
50336
  'links'?: ObjectLinks;
@@ -50296,7 +50402,7 @@ export declare interface JsonApiFilterContextOut {
50296
50402
  * API identifier of an object
50297
50403
  */
50298
50404
  'id': string;
50299
- 'meta'?: JsonApiDatasetOutMeta;
50405
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
50300
50406
  'attributes': JsonApiFilterContextOutAttributes;
50301
50407
  'relationships'?: JsonApiFilterContextOutRelationships;
50302
50408
  }
@@ -50332,7 +50438,7 @@ export declare type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLin
50332
50438
  export declare interface JsonApiFilterContextOutList {
50333
50439
  'data': Array<JsonApiFilterContextOutWithLinks>;
50334
50440
  'links'?: ListLinks;
50335
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
50441
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
50336
50442
  /**
50337
50443
  * Included resources
50338
50444
  */
@@ -50340,8 +50446,8 @@ export declare interface JsonApiFilterContextOutList {
50340
50446
  }
50341
50447
 
50342
50448
  export declare interface JsonApiFilterContextOutRelationships {
50343
- 'attributes'?: JsonApiDatasetOutRelationshipsAttributes;
50344
- 'datasets'?: JsonApiDatasetOutRelationshipsReferences;
50449
+ 'attributes'?: JsonApiVisualizationObjectOutRelationshipsAttributes;
50450
+ 'datasets'?: JsonApiVisualizationObjectOutRelationshipsDatasets;
50345
50451
  'labels'?: JsonApiVisualizationObjectOutRelationshipsLabels;
50346
50452
  }
50347
50453
 
@@ -50356,7 +50462,7 @@ export declare interface JsonApiFilterContextOutWithLinks {
50356
50462
  * API identifier of an object
50357
50463
  */
50358
50464
  'id': string;
50359
- 'meta'?: JsonApiDatasetOutMeta;
50465
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
50360
50466
  'attributes': JsonApiFilterContextOutAttributes;
50361
50467
  'relationships'?: JsonApiFilterContextOutRelationships;
50362
50468
  'links'?: ObjectLinks;
@@ -50430,7 +50536,7 @@ export declare interface JsonApiFilterViewIn {
50430
50536
  */
50431
50537
  'id': string;
50432
50538
  'attributes': JsonApiFilterViewOutAttributes;
50433
- 'relationships'?: JsonApiFilterViewOutRelationships;
50539
+ 'relationships'?: JsonApiFilterViewPatchRelationships;
50434
50540
  }
50435
50541
 
50436
50542
  export declare interface JsonApiFilterViewInDocument {
@@ -50452,7 +50558,7 @@ export declare interface JsonApiFilterViewOut {
50452
50558
  */
50453
50559
  'id': string;
50454
50560
  'attributes': JsonApiFilterViewOutAttributes;
50455
- 'relationships'?: JsonApiFilterViewOutRelationships;
50561
+ 'relationships'?: JsonApiFilterViewPatchRelationships;
50456
50562
  }
50457
50563
 
50458
50564
  export declare interface JsonApiFilterViewOutAttributes {
@@ -50490,22 +50596,13 @@ export declare type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOut
50490
50596
  export declare interface JsonApiFilterViewOutList {
50491
50597
  'data': Array<JsonApiFilterViewOutWithLinks>;
50492
50598
  'links'?: ListLinks;
50493
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
50599
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
50494
50600
  /**
50495
50601
  * Included resources
50496
50602
  */
50497
50603
  'included'?: Array<JsonApiFilterViewOutIncludes>;
50498
50604
  }
50499
50605
 
50500
- export declare interface JsonApiFilterViewOutRelationships {
50501
- 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
50502
- 'user'?: JsonApiFilterViewOutRelationshipsUser;
50503
- }
50504
-
50505
- export declare interface JsonApiFilterViewOutRelationshipsUser {
50506
- 'data': JsonApiUserLinkage | null;
50507
- }
50508
-
50509
50606
  export declare type JsonApiFilterViewOutTypeEnum = 'filterView';
50510
50607
 
50511
50608
  export declare interface JsonApiFilterViewOutWithLinks {
@@ -50518,7 +50615,7 @@ export declare interface JsonApiFilterViewOutWithLinks {
50518
50615
  */
50519
50616
  'id': string;
50520
50617
  'attributes': JsonApiFilterViewOutAttributes;
50521
- 'relationships'?: JsonApiFilterViewOutRelationships;
50618
+ 'relationships'?: JsonApiFilterViewPatchRelationships;
50522
50619
  'links'?: ObjectLinks;
50523
50620
  }
50524
50621
 
@@ -50537,7 +50634,7 @@ export declare interface JsonApiFilterViewPatch {
50537
50634
  */
50538
50635
  'id': string;
50539
50636
  'attributes': JsonApiFilterViewPatchAttributes;
50540
- 'relationships'?: JsonApiFilterViewOutRelationships;
50637
+ 'relationships'?: JsonApiFilterViewPatchRelationships;
50541
50638
  }
50542
50639
 
50543
50640
  export declare interface JsonApiFilterViewPatchAttributes {
@@ -50559,6 +50656,15 @@ export declare interface JsonApiFilterViewPatchDocument {
50559
50656
  'data': JsonApiFilterViewPatch;
50560
50657
  }
50561
50658
 
50659
+ export declare interface JsonApiFilterViewPatchRelationships {
50660
+ 'analyticalDashboard'?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
50661
+ 'user'?: JsonApiFilterViewPatchRelationshipsUser;
50662
+ }
50663
+
50664
+ export declare interface JsonApiFilterViewPatchRelationshipsUser {
50665
+ 'data': JsonApiUserLinkage | null;
50666
+ }
50667
+
50562
50668
  export declare type JsonApiFilterViewPatchTypeEnum = 'filterView';
50563
50669
 
50564
50670
  /**
@@ -50582,9 +50688,62 @@ export declare interface JsonApiIdentityProviderIn {
50582
50688
  * API identifier of an object
50583
50689
  */
50584
50690
  'id': string;
50585
- 'attributes'?: JsonApiIdentityProviderPatchAttributes;
50691
+ 'attributes'?: JsonApiIdentityProviderInAttributes;
50586
50692
  }
50587
50693
 
50694
+ export declare interface JsonApiIdentityProviderInAttributes {
50695
+ /**
50696
+ * List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
50697
+ */
50698
+ 'identifiers'?: Array<string>;
50699
+ /**
50700
+ * Map of custom claim overrides. To be used when your Idp does not provide default claims (sub, email, name, given_name, family_name). Define the key pair for the claim you wish to override, where the key is the default name of the attribute and the value is your custom name for the given attribute.
50701
+ */
50702
+ 'customClaimMapping'?: {
50703
+ [key: string]: string;
50704
+ };
50705
+ /**
50706
+ * Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
50707
+ */
50708
+ 'samlMetadata'?: string;
50709
+ /**
50710
+ * The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
50711
+ */
50712
+ 'oauthClientId'?: string;
50713
+ /**
50714
+ * The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
50715
+ */
50716
+ 'oauthClientSecret'?: string;
50717
+ /**
50718
+ * The location of your OIDC provider. This field is mandatory for OIDC IdP.
50719
+ */
50720
+ 'oauthIssuerLocation'?: string;
50721
+ /**
50722
+ * Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
50723
+ */
50724
+ 'oauthIssuerId'?: string;
50725
+ /**
50726
+ * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
50727
+ */
50728
+ 'oauthSubjectIdClaim'?: string;
50729
+ /**
50730
+ * Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
50731
+ */
50732
+ 'oauthCustomAuthAttributes'?: {
50733
+ [key: string]: string;
50734
+ };
50735
+ /**
50736
+ * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
50737
+ */
50738
+ 'oauthCustomScopes'?: Array<string> | null;
50739
+ /**
50740
+ * Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
50741
+ */
50742
+ 'idpType'?: JsonApiIdentityProviderInAttributesIdpTypeEnum;
50743
+ }
50744
+
50745
+ export declare type JsonApiIdentityProviderInAttributesIdpTypeEnum = 'MANAGED_IDP' | 'FIM_IDP' | 'DEX_IDP' | 'CUSTOM_IDP';
50746
+
50588
50747
  export declare interface JsonApiIdentityProviderInDocument {
50589
50748
  'data': JsonApiIdentityProviderIn;
50590
50749
  }
@@ -50672,7 +50831,7 @@ export declare interface JsonApiIdentityProviderOutDocument {
50672
50831
  export declare interface JsonApiIdentityProviderOutList {
50673
50832
  'data': Array<JsonApiIdentityProviderOutWithLinks>;
50674
50833
  'links'?: ListLinks;
50675
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
50834
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
50676
50835
  }
50677
50836
 
50678
50837
  export declare type JsonApiIdentityProviderOutTypeEnum = 'identityProvider';
@@ -50704,62 +50863,9 @@ export declare interface JsonApiIdentityProviderPatch {
50704
50863
  * API identifier of an object
50705
50864
  */
50706
50865
  'id': string;
50707
- 'attributes'?: JsonApiIdentityProviderPatchAttributes;
50866
+ 'attributes'?: JsonApiIdentityProviderInAttributes;
50708
50867
  }
50709
50868
 
50710
- export declare interface JsonApiIdentityProviderPatchAttributes {
50711
- /**
50712
- * List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
50713
- */
50714
- 'identifiers'?: Array<string>;
50715
- /**
50716
- * Map of custom claim overrides. To be used when your Idp does not provide default claims (sub, email, name, given_name, family_name). Define the key pair for the claim you wish to override, where the key is the default name of the attribute and the value is your custom name for the given attribute.
50717
- */
50718
- 'customClaimMapping'?: {
50719
- [key: string]: string;
50720
- };
50721
- /**
50722
- * Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
50723
- */
50724
- 'samlMetadata'?: string;
50725
- /**
50726
- * The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
50727
- */
50728
- 'oauthClientId'?: string;
50729
- /**
50730
- * The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
50731
- */
50732
- 'oauthClientSecret'?: string;
50733
- /**
50734
- * The location of your OIDC provider. This field is mandatory for OIDC IdP.
50735
- */
50736
- 'oauthIssuerLocation'?: string;
50737
- /**
50738
- * Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
50739
- */
50740
- 'oauthIssuerId'?: string;
50741
- /**
50742
- * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
50743
- */
50744
- 'oauthSubjectIdClaim'?: string;
50745
- /**
50746
- * Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
50747
- */
50748
- 'oauthCustomAuthAttributes'?: {
50749
- [key: string]: string;
50750
- };
50751
- /**
50752
- * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
50753
- */
50754
- 'oauthCustomScopes'?: Array<string> | null;
50755
- /**
50756
- * Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
50757
- */
50758
- 'idpType'?: JsonApiIdentityProviderPatchAttributesIdpTypeEnum;
50759
- }
50760
-
50761
- export declare type JsonApiIdentityProviderPatchAttributesIdpTypeEnum = 'MANAGED_IDP' | 'FIM_IDP' | 'DEX_IDP' | 'CUSTOM_IDP';
50762
-
50763
50869
  export declare interface JsonApiIdentityProviderPatchDocument {
50764
50870
  'data': JsonApiIdentityProviderPatch;
50765
50871
  }
@@ -50778,7 +50884,11 @@ export declare interface JsonApiJwkIn {
50778
50884
  * API identifier of an object
50779
50885
  */
50780
50886
  'id': string;
50781
- 'attributes'?: JsonApiJwkOutAttributes;
50887
+ 'attributes'?: JsonApiJwkInAttributes;
50888
+ }
50889
+
50890
+ export declare interface JsonApiJwkInAttributes {
50891
+ 'content'?: RsaSpecification;
50782
50892
  }
50783
50893
 
50784
50894
  export declare interface JsonApiJwkInDocument {
@@ -50799,11 +50909,7 @@ export declare interface JsonApiJwkOut {
50799
50909
  * API identifier of an object
50800
50910
  */
50801
50911
  'id': string;
50802
- 'attributes'?: JsonApiJwkOutAttributes;
50803
- }
50804
-
50805
- export declare interface JsonApiJwkOutAttributes {
50806
- 'content'?: RsaSpecification;
50912
+ 'attributes'?: JsonApiJwkInAttributes;
50807
50913
  }
50808
50914
 
50809
50915
  export declare interface JsonApiJwkOutDocument {
@@ -50817,7 +50923,7 @@ export declare interface JsonApiJwkOutDocument {
50817
50923
  export declare interface JsonApiJwkOutList {
50818
50924
  'data': Array<JsonApiJwkOutWithLinks>;
50819
50925
  'links'?: ListLinks;
50820
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
50926
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
50821
50927
  }
50822
50928
 
50823
50929
  export declare type JsonApiJwkOutTypeEnum = 'jwk';
@@ -50831,7 +50937,7 @@ export declare interface JsonApiJwkOutWithLinks {
50831
50937
  * API identifier of an object
50832
50938
  */
50833
50939
  'id': string;
50834
- 'attributes'?: JsonApiJwkOutAttributes;
50940
+ 'attributes'?: JsonApiJwkInAttributes;
50835
50941
  'links'?: ObjectLinks;
50836
50942
  }
50837
50943
 
@@ -50849,7 +50955,7 @@ export declare interface JsonApiJwkPatch {
50849
50955
  * API identifier of an object
50850
50956
  */
50851
50957
  'id': string;
50852
- 'attributes'?: JsonApiJwkOutAttributes;
50958
+ 'attributes'?: JsonApiJwkInAttributes;
50853
50959
  }
50854
50960
 
50855
50961
  export declare interface JsonApiJwkPatchDocument {
@@ -50870,34 +50976,11 @@ export declare interface JsonApiKnowledgeRecommendationIn {
50870
50976
  * API identifier of an object
50871
50977
  */
50872
50978
  'id': string;
50873
- 'attributes': JsonApiKnowledgeRecommendationPostOptionalIdAttributes;
50874
- 'relationships': JsonApiKnowledgeRecommendationPostOptionalIdRelationships;
50875
- }
50876
-
50877
- export declare interface JsonApiKnowledgeRecommendationInDocument {
50878
- 'data': JsonApiKnowledgeRecommendationIn;
50879
- }
50880
-
50881
- export declare type JsonApiKnowledgeRecommendationInTypeEnum = 'knowledgeRecommendation';
50882
-
50883
- /**
50884
- * JSON:API representation of knowledgeRecommendation entity.
50885
- */
50886
- export declare interface JsonApiKnowledgeRecommendationOut {
50887
- /**
50888
- * Object type
50889
- */
50890
- 'type': JsonApiKnowledgeRecommendationOutTypeEnum;
50891
- /**
50892
- * API identifier of an object
50893
- */
50894
- 'id': string;
50895
- 'meta'?: JsonApiDatasetOutMeta;
50896
- 'attributes': JsonApiKnowledgeRecommendationOutAttributes;
50897
- 'relationships'?: JsonApiKnowledgeRecommendationOutRelationships;
50979
+ 'attributes': JsonApiKnowledgeRecommendationInAttributes;
50980
+ 'relationships': JsonApiKnowledgeRecommendationInRelationships;
50898
50981
  }
50899
50982
 
50900
- export declare interface JsonApiKnowledgeRecommendationOutAttributes {
50983
+ export declare interface JsonApiKnowledgeRecommendationInAttributes {
50901
50984
  /**
50902
50985
  * Human-readable title for the recommendation, e.g. \'Revenue decreased vs last month\'
50903
50986
  */
@@ -50915,11 +50998,11 @@ export declare interface JsonApiKnowledgeRecommendationOutAttributes {
50915
50998
  /**
50916
50999
  * Direction of the metric change
50917
51000
  */
50918
- 'direction': JsonApiKnowledgeRecommendationOutAttributesDirectionEnum;
51001
+ 'direction': JsonApiKnowledgeRecommendationInAttributesDirectionEnum;
50919
51002
  /**
50920
51003
  * Time period for comparison
50921
51004
  */
50922
- 'comparisonType': JsonApiKnowledgeRecommendationOutAttributesComparisonTypeEnum;
51005
+ 'comparisonType': JsonApiKnowledgeRecommendationInAttributesComparisonTypeEnum;
50923
51006
  /**
50924
51007
  * ID of the widget where the anomaly was detected
50925
51008
  */
@@ -50960,89 +51043,45 @@ export declare interface JsonApiKnowledgeRecommendationOutAttributes {
50960
51043
  * Human-readable title of the analytical dashboard (denormalized for display)
50961
51044
  */
50962
51045
  'analyticalDashboardTitle'?: string;
50963
- 'createdAt'?: string;
50964
- }
50965
-
50966
- export declare type JsonApiKnowledgeRecommendationOutAttributesComparisonTypeEnum = 'MONTH' | 'QUARTER' | 'YEAR';
50967
-
50968
- export declare type JsonApiKnowledgeRecommendationOutAttributesDirectionEnum = 'INCREASED' | 'DECREASED';
50969
-
50970
- export declare interface JsonApiKnowledgeRecommendationOutDocument {
50971
- 'data': JsonApiKnowledgeRecommendationOut;
50972
- 'links'?: ObjectLinks;
50973
- /**
50974
- * Included resources
50975
- */
50976
- 'included'?: Array<JsonApiKnowledgeRecommendationOutIncludes>;
50977
51046
  }
50978
51047
 
50979
- /**
50980
- * @type JsonApiKnowledgeRecommendationOutIncludes
50981
- */
50982
- export declare type JsonApiKnowledgeRecommendationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiMetricOutWithLinks;
50983
-
50984
- /**
50985
- * A JSON:API document with a list of resources
50986
- */
50987
- export declare interface JsonApiKnowledgeRecommendationOutList {
50988
- 'data': Array<JsonApiKnowledgeRecommendationOutWithLinks>;
50989
- 'links'?: ListLinks;
50990
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
50991
- /**
50992
- * Included resources
50993
- */
50994
- 'included'?: Array<JsonApiKnowledgeRecommendationOutIncludes>;
50995
- }
51048
+ export declare type JsonApiKnowledgeRecommendationInAttributesComparisonTypeEnum = 'MONTH' | 'QUARTER' | 'YEAR';
50996
51049
 
50997
- export declare interface JsonApiKnowledgeRecommendationOutRelationships {
50998
- 'metric'?: JsonApiKnowledgeRecommendationOutRelationshipsMetric;
50999
- 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
51000
- }
51050
+ export declare type JsonApiKnowledgeRecommendationInAttributesDirectionEnum = 'INCREASED' | 'DECREASED';
51001
51051
 
51002
- export declare interface JsonApiKnowledgeRecommendationOutRelationshipsMetric {
51003
- 'data': JsonApiMetricLinkage | null;
51052
+ export declare interface JsonApiKnowledgeRecommendationInDocument {
51053
+ 'data': JsonApiKnowledgeRecommendationIn;
51004
51054
  }
51005
51055
 
51006
- export declare type JsonApiKnowledgeRecommendationOutTypeEnum = 'knowledgeRecommendation';
51007
-
51008
- export declare interface JsonApiKnowledgeRecommendationOutWithLinks {
51009
- /**
51010
- * Object type
51011
- */
51012
- 'type': JsonApiKnowledgeRecommendationOutWithLinksTypeEnum;
51013
- /**
51014
- * API identifier of an object
51015
- */
51016
- 'id': string;
51017
- 'meta'?: JsonApiDatasetOutMeta;
51018
- 'attributes': JsonApiKnowledgeRecommendationOutAttributes;
51019
- 'relationships'?: JsonApiKnowledgeRecommendationOutRelationships;
51020
- 'links'?: ObjectLinks;
51056
+ export declare interface JsonApiKnowledgeRecommendationInRelationships {
51057
+ 'metric': JsonApiKnowledgeRecommendationPatchRelationshipsMetric;
51058
+ 'analyticalDashboard'?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
51021
51059
  }
51022
51060
 
51023
- export declare type JsonApiKnowledgeRecommendationOutWithLinksTypeEnum = 'knowledgeRecommendation';
51061
+ export declare type JsonApiKnowledgeRecommendationInTypeEnum = 'knowledgeRecommendation';
51024
51062
 
51025
51063
  /**
51026
- * JSON:API representation of patching knowledgeRecommendation entity.
51064
+ * JSON:API representation of knowledgeRecommendation entity.
51027
51065
  */
51028
- export declare interface JsonApiKnowledgeRecommendationPatch {
51066
+ export declare interface JsonApiKnowledgeRecommendationOut {
51029
51067
  /**
51030
51068
  * Object type
51031
51069
  */
51032
- 'type': JsonApiKnowledgeRecommendationPatchTypeEnum;
51070
+ 'type': JsonApiKnowledgeRecommendationOutTypeEnum;
51033
51071
  /**
51034
51072
  * API identifier of an object
51035
51073
  */
51036
51074
  'id': string;
51037
- 'attributes': JsonApiKnowledgeRecommendationPatchAttributes;
51038
- 'relationships': JsonApiKnowledgeRecommendationOutRelationships;
51075
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
51076
+ 'attributes': JsonApiKnowledgeRecommendationOutAttributes;
51077
+ 'relationships'?: JsonApiKnowledgeRecommendationPatchRelationships;
51039
51078
  }
51040
51079
 
51041
- export declare interface JsonApiKnowledgeRecommendationPatchAttributes {
51080
+ export declare interface JsonApiKnowledgeRecommendationOutAttributes {
51042
51081
  /**
51043
51082
  * Human-readable title for the recommendation, e.g. \'Revenue decreased vs last month\'
51044
51083
  */
51045
- 'title'?: string;
51084
+ 'title': string;
51046
51085
  /**
51047
51086
  * Description of the recommendation
51048
51087
  */
@@ -51056,11 +51095,11 @@ export declare interface JsonApiKnowledgeRecommendationPatchAttributes {
51056
51095
  /**
51057
51096
  * Direction of the metric change
51058
51097
  */
51059
- 'direction'?: JsonApiKnowledgeRecommendationPatchAttributesDirectionEnum;
51098
+ 'direction': JsonApiKnowledgeRecommendationOutAttributesDirectionEnum;
51060
51099
  /**
51061
51100
  * Time period for comparison
51062
51101
  */
51063
- 'comparisonType'?: JsonApiKnowledgeRecommendationPatchAttributesComparisonTypeEnum;
51102
+ 'comparisonType': JsonApiKnowledgeRecommendationOutAttributesComparisonTypeEnum;
51064
51103
  /**
51065
51104
  * ID of the widget where the anomaly was detected
51066
51105
  */
@@ -51101,39 +51140,80 @@ export declare interface JsonApiKnowledgeRecommendationPatchAttributes {
51101
51140
  * Human-readable title of the analytical dashboard (denormalized for display)
51102
51141
  */
51103
51142
  'analyticalDashboardTitle'?: string;
51143
+ 'createdAt'?: string;
51104
51144
  }
51105
51145
 
51106
- export declare type JsonApiKnowledgeRecommendationPatchAttributesComparisonTypeEnum = 'MONTH' | 'QUARTER' | 'YEAR';
51146
+ export declare type JsonApiKnowledgeRecommendationOutAttributesComparisonTypeEnum = 'MONTH' | 'QUARTER' | 'YEAR';
51107
51147
 
51108
- export declare type JsonApiKnowledgeRecommendationPatchAttributesDirectionEnum = 'INCREASED' | 'DECREASED';
51148
+ export declare type JsonApiKnowledgeRecommendationOutAttributesDirectionEnum = 'INCREASED' | 'DECREASED';
51109
51149
 
51110
- export declare interface JsonApiKnowledgeRecommendationPatchDocument {
51111
- 'data': JsonApiKnowledgeRecommendationPatch;
51150
+ export declare interface JsonApiKnowledgeRecommendationOutDocument {
51151
+ 'data': JsonApiKnowledgeRecommendationOut;
51152
+ 'links'?: ObjectLinks;
51153
+ /**
51154
+ * Included resources
51155
+ */
51156
+ 'included'?: Array<JsonApiKnowledgeRecommendationOutIncludes>;
51112
51157
  }
51113
51158
 
51114
- export declare type JsonApiKnowledgeRecommendationPatchTypeEnum = 'knowledgeRecommendation';
51159
+ /**
51160
+ * @type JsonApiKnowledgeRecommendationOutIncludes
51161
+ */
51162
+ export declare type JsonApiKnowledgeRecommendationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiMetricOutWithLinks;
51115
51163
 
51116
51164
  /**
51117
- * JSON:API representation of knowledgeRecommendation entity.
51165
+ * A JSON:API document with a list of resources
51118
51166
  */
51119
- export declare interface JsonApiKnowledgeRecommendationPostOptionalId {
51167
+ export declare interface JsonApiKnowledgeRecommendationOutList {
51168
+ 'data': Array<JsonApiKnowledgeRecommendationOutWithLinks>;
51169
+ 'links'?: ListLinks;
51170
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
51171
+ /**
51172
+ * Included resources
51173
+ */
51174
+ 'included'?: Array<JsonApiKnowledgeRecommendationOutIncludes>;
51175
+ }
51176
+
51177
+ export declare type JsonApiKnowledgeRecommendationOutTypeEnum = 'knowledgeRecommendation';
51178
+
51179
+ export declare interface JsonApiKnowledgeRecommendationOutWithLinks {
51120
51180
  /**
51121
51181
  * Object type
51122
51182
  */
51123
- 'type': JsonApiKnowledgeRecommendationPostOptionalIdTypeEnum;
51183
+ 'type': JsonApiKnowledgeRecommendationOutWithLinksTypeEnum;
51124
51184
  /**
51125
51185
  * API identifier of an object
51126
51186
  */
51127
- 'id'?: string;
51128
- 'attributes': JsonApiKnowledgeRecommendationPostOptionalIdAttributes;
51129
- 'relationships': JsonApiKnowledgeRecommendationPostOptionalIdRelationships;
51187
+ 'id': string;
51188
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
51189
+ 'attributes': JsonApiKnowledgeRecommendationOutAttributes;
51190
+ 'relationships'?: JsonApiKnowledgeRecommendationPatchRelationships;
51191
+ 'links'?: ObjectLinks;
51192
+ }
51193
+
51194
+ export declare type JsonApiKnowledgeRecommendationOutWithLinksTypeEnum = 'knowledgeRecommendation';
51195
+
51196
+ /**
51197
+ * JSON:API representation of patching knowledgeRecommendation entity.
51198
+ */
51199
+ export declare interface JsonApiKnowledgeRecommendationPatch {
51200
+ /**
51201
+ * Object type
51202
+ */
51203
+ 'type': JsonApiKnowledgeRecommendationPatchTypeEnum;
51204
+ /**
51205
+ * API identifier of an object
51206
+ */
51207
+ 'id': string;
51208
+ 'attributes': JsonApiKnowledgeRecommendationPatchAttributes;
51209
+ 'relationships': JsonApiKnowledgeRecommendationPatchRelationships;
51130
51210
  }
51131
51211
 
51132
- export declare interface JsonApiKnowledgeRecommendationPostOptionalIdAttributes {
51212
+ export declare interface JsonApiKnowledgeRecommendationPatchAttributes {
51133
51213
  /**
51134
51214
  * Human-readable title for the recommendation, e.g. \'Revenue decreased vs last month\'
51135
51215
  */
51136
- 'title': string;
51216
+ 'title'?: string;
51137
51217
  /**
51138
51218
  * Description of the recommendation
51139
51219
  */
@@ -51147,11 +51227,11 @@ export declare interface JsonApiKnowledgeRecommendationPostOptionalIdAttributes
51147
51227
  /**
51148
51228
  * Direction of the metric change
51149
51229
  */
51150
- 'direction': JsonApiKnowledgeRecommendationPostOptionalIdAttributesDirectionEnum;
51230
+ 'direction'?: JsonApiKnowledgeRecommendationPatchAttributesDirectionEnum;
51151
51231
  /**
51152
51232
  * Time period for comparison
51153
51233
  */
51154
- 'comparisonType': JsonApiKnowledgeRecommendationPostOptionalIdAttributesComparisonTypeEnum;
51234
+ 'comparisonType'?: JsonApiKnowledgeRecommendationPatchAttributesComparisonTypeEnum;
51155
51235
  /**
51156
51236
  * ID of the widget where the anomaly was detected
51157
51237
  */
@@ -51194,17 +51274,43 @@ export declare interface JsonApiKnowledgeRecommendationPostOptionalIdAttributes
51194
51274
  'analyticalDashboardTitle'?: string;
51195
51275
  }
51196
51276
 
51197
- export declare type JsonApiKnowledgeRecommendationPostOptionalIdAttributesComparisonTypeEnum = 'MONTH' | 'QUARTER' | 'YEAR';
51277
+ export declare type JsonApiKnowledgeRecommendationPatchAttributesComparisonTypeEnum = 'MONTH' | 'QUARTER' | 'YEAR';
51198
51278
 
51199
- export declare type JsonApiKnowledgeRecommendationPostOptionalIdAttributesDirectionEnum = 'INCREASED' | 'DECREASED';
51279
+ export declare type JsonApiKnowledgeRecommendationPatchAttributesDirectionEnum = 'INCREASED' | 'DECREASED';
51200
51280
 
51201
- export declare interface JsonApiKnowledgeRecommendationPostOptionalIdDocument {
51202
- 'data': JsonApiKnowledgeRecommendationPostOptionalId;
51281
+ export declare interface JsonApiKnowledgeRecommendationPatchDocument {
51282
+ 'data': JsonApiKnowledgeRecommendationPatch;
51283
+ }
51284
+
51285
+ export declare interface JsonApiKnowledgeRecommendationPatchRelationships {
51286
+ 'metric'?: JsonApiKnowledgeRecommendationPatchRelationshipsMetric;
51287
+ 'analyticalDashboard'?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
51203
51288
  }
51204
51289
 
51205
- export declare interface JsonApiKnowledgeRecommendationPostOptionalIdRelationships {
51206
- 'metric': JsonApiKnowledgeRecommendationOutRelationshipsMetric;
51207
- 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
51290
+ export declare interface JsonApiKnowledgeRecommendationPatchRelationshipsMetric {
51291
+ 'data': JsonApiMetricLinkage | null;
51292
+ }
51293
+
51294
+ export declare type JsonApiKnowledgeRecommendationPatchTypeEnum = 'knowledgeRecommendation';
51295
+
51296
+ /**
51297
+ * JSON:API representation of knowledgeRecommendation entity.
51298
+ */
51299
+ export declare interface JsonApiKnowledgeRecommendationPostOptionalId {
51300
+ /**
51301
+ * Object type
51302
+ */
51303
+ 'type': JsonApiKnowledgeRecommendationPostOptionalIdTypeEnum;
51304
+ /**
51305
+ * API identifier of an object
51306
+ */
51307
+ 'id'?: string;
51308
+ 'attributes': JsonApiKnowledgeRecommendationInAttributes;
51309
+ 'relationships': JsonApiKnowledgeRecommendationInRelationships;
51310
+ }
51311
+
51312
+ export declare interface JsonApiKnowledgeRecommendationPostOptionalIdDocument {
51313
+ 'data': JsonApiKnowledgeRecommendationPostOptionalId;
51208
51314
  }
51209
51315
 
51210
51316
  export declare type JsonApiKnowledgeRecommendationPostOptionalIdTypeEnum = 'knowledgeRecommendation';
@@ -51231,7 +51337,7 @@ export declare interface JsonApiLabelOut {
51231
51337
  * API identifier of an object
51232
51338
  */
51233
51339
  'id': string;
51234
- 'meta'?: JsonApiDatasetOutMeta;
51340
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
51235
51341
  'attributes'?: JsonApiLabelOutAttributes;
51236
51342
  'relationships'?: JsonApiLabelOutRelationships;
51237
51343
  }
@@ -51284,7 +51390,7 @@ export declare interface JsonApiLabelOutDocument {
51284
51390
  export declare interface JsonApiLabelOutList {
51285
51391
  'data': Array<JsonApiLabelOutWithLinks>;
51286
51392
  'links'?: ListLinks;
51287
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
51393
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
51288
51394
  /**
51289
51395
  * Included resources
51290
51396
  */
@@ -51310,7 +51416,7 @@ export declare interface JsonApiLabelOutWithLinks {
51310
51416
  * API identifier of an object
51311
51417
  */
51312
51418
  'id': string;
51313
- 'meta'?: JsonApiDatasetOutMeta;
51419
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
51314
51420
  'attributes'?: JsonApiLabelOutAttributes;
51315
51421
  'relationships'?: JsonApiLabelOutRelationships;
51316
51422
  'links'?: ObjectLinks;
@@ -51440,7 +51546,7 @@ export declare interface JsonApiLlmEndpointOutDocument {
51440
51546
  export declare interface JsonApiLlmEndpointOutList {
51441
51547
  'data': Array<JsonApiLlmEndpointOutWithLinks>;
51442
51548
  'links'?: ListLinks;
51443
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
51549
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
51444
51550
  }
51445
51551
 
51446
51552
  export declare type JsonApiLlmEndpointOutTypeEnum = 'llmEndpoint';
@@ -51522,9 +51628,34 @@ export declare interface JsonApiMemoryItemIn {
51522
51628
  * API identifier of an object
51523
51629
  */
51524
51630
  'id': string;
51525
- 'attributes': JsonApiMemoryItemPostOptionalIdAttributes;
51631
+ 'attributes': JsonApiMemoryItemInAttributes;
51632
+ }
51633
+
51634
+ export declare interface JsonApiMemoryItemInAttributes {
51635
+ 'title'?: string;
51636
+ 'description'?: string;
51637
+ 'tags'?: Array<string>;
51638
+ 'areRelationsValid'?: boolean;
51639
+ /**
51640
+ * Strategy defining when the memory item should be applied
51641
+ */
51642
+ 'strategy': JsonApiMemoryItemInAttributesStrategyEnum;
51643
+ /**
51644
+ * The text that will be injected into the system prompt
51645
+ */
51646
+ 'instruction': string;
51647
+ /**
51648
+ * Set of unique strings used for semantic similarity filtering
51649
+ */
51650
+ 'keywords'?: Array<string>;
51651
+ /**
51652
+ * Whether memory item is disabled
51653
+ */
51654
+ 'isDisabled'?: boolean;
51526
51655
  }
51527
51656
 
51657
+ export declare type JsonApiMemoryItemInAttributesStrategyEnum = 'ALWAYS' | 'AUTO';
51658
+
51528
51659
  export declare interface JsonApiMemoryItemInDocument {
51529
51660
  'data': JsonApiMemoryItemIn;
51530
51661
  }
@@ -51543,7 +51674,7 @@ export declare interface JsonApiMemoryItemOut {
51543
51674
  * API identifier of an object
51544
51675
  */
51545
51676
  'id': string;
51546
- 'meta'?: JsonApiDatasetOutMeta;
51677
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
51547
51678
  'attributes': JsonApiMemoryItemOutAttributes;
51548
51679
  'relationships'?: JsonApiDashboardPluginOutRelationships;
51549
51680
  }
@@ -51596,7 +51727,7 @@ export declare interface JsonApiMemoryItemOutDocument {
51596
51727
  export declare interface JsonApiMemoryItemOutList {
51597
51728
  'data': Array<JsonApiMemoryItemOutWithLinks>;
51598
51729
  'links'?: ListLinks;
51599
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
51730
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
51600
51731
  /**
51601
51732
  * Included resources
51602
51733
  */
@@ -51614,7 +51745,7 @@ export declare interface JsonApiMemoryItemOutWithLinks {
51614
51745
  * API identifier of an object
51615
51746
  */
51616
51747
  'id': string;
51617
- 'meta'?: JsonApiDatasetOutMeta;
51748
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
51618
51749
  'attributes': JsonApiMemoryItemOutAttributes;
51619
51750
  'relationships'?: JsonApiDashboardPluginOutRelationships;
51620
51751
  'links'?: ObjectLinks;
@@ -51680,34 +51811,9 @@ export declare interface JsonApiMemoryItemPostOptionalId {
51680
51811
  * API identifier of an object
51681
51812
  */
51682
51813
  'id'?: string;
51683
- 'attributes': JsonApiMemoryItemPostOptionalIdAttributes;
51814
+ 'attributes': JsonApiMemoryItemInAttributes;
51684
51815
  }
51685
51816
 
51686
- export declare interface JsonApiMemoryItemPostOptionalIdAttributes {
51687
- 'title'?: string;
51688
- 'description'?: string;
51689
- 'tags'?: Array<string>;
51690
- 'areRelationsValid'?: boolean;
51691
- /**
51692
- * Strategy defining when the memory item should be applied
51693
- */
51694
- 'strategy': JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum;
51695
- /**
51696
- * The text that will be injected into the system prompt
51697
- */
51698
- 'instruction': string;
51699
- /**
51700
- * Set of unique strings used for semantic similarity filtering
51701
- */
51702
- 'keywords'?: Array<string>;
51703
- /**
51704
- * Whether memory item is disabled
51705
- */
51706
- 'isDisabled'?: boolean;
51707
- }
51708
-
51709
- export declare type JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum = 'ALWAYS' | 'AUTO';
51710
-
51711
51817
  export declare interface JsonApiMemoryItemPostOptionalIdDocument {
51712
51818
  'data': JsonApiMemoryItemPostOptionalId;
51713
51819
  }
@@ -51726,7 +51832,17 @@ export declare interface JsonApiMetricIn {
51726
51832
  * API identifier of an object
51727
51833
  */
51728
51834
  'id': string;
51729
- 'attributes': JsonApiMetricPostOptionalIdAttributes;
51835
+ 'attributes': JsonApiMetricInAttributes;
51836
+ }
51837
+
51838
+ export declare interface JsonApiMetricInAttributes {
51839
+ 'title'?: string;
51840
+ 'description'?: string;
51841
+ 'tags'?: Array<string>;
51842
+ 'areRelationsValid'?: boolean;
51843
+ 'content': JsonApiMetricOutAttributesContent;
51844
+ 'isHidden'?: boolean;
51845
+ 'isHiddenFromKda'?: boolean;
51730
51846
  }
51731
51847
 
51732
51848
  export declare interface JsonApiMetricInDocument {
@@ -51757,7 +51873,7 @@ export declare interface JsonApiMetricOut {
51757
51873
  * API identifier of an object
51758
51874
  */
51759
51875
  'id': string;
51760
- 'meta'?: JsonApiDatasetOutMeta;
51876
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
51761
51877
  'attributes': JsonApiMetricOutAttributes;
51762
51878
  'relationships'?: JsonApiVisualizationObjectOutRelationships;
51763
51879
  }
@@ -51814,7 +51930,7 @@ export declare type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | Js
51814
51930
  export declare interface JsonApiMetricOutList {
51815
51931
  'data': Array<JsonApiMetricOutWithLinks>;
51816
51932
  'links'?: ListLinks;
51817
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
51933
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
51818
51934
  /**
51819
51935
  * Included resources
51820
51936
  */
@@ -51832,7 +51948,7 @@ export declare interface JsonApiMetricOutWithLinks {
51832
51948
  * API identifier of an object
51833
51949
  */
51834
51950
  'id': string;
51835
- 'meta'?: JsonApiDatasetOutMeta;
51951
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
51836
51952
  'attributes': JsonApiMetricOutAttributes;
51837
51953
  'relationships'?: JsonApiVisualizationObjectOutRelationships;
51838
51954
  'links'?: ObjectLinks;
@@ -51883,17 +51999,7 @@ export declare interface JsonApiMetricPostOptionalId {
51883
51999
  * API identifier of an object
51884
52000
  */
51885
52001
  'id'?: string;
51886
- 'attributes': JsonApiMetricPostOptionalIdAttributes;
51887
- }
51888
-
51889
- export declare interface JsonApiMetricPostOptionalIdAttributes {
51890
- 'title'?: string;
51891
- 'description'?: string;
51892
- 'tags'?: Array<string>;
51893
- 'areRelationsValid'?: boolean;
51894
- 'content': JsonApiMetricOutAttributesContent;
51895
- 'isHidden'?: boolean;
51896
- 'isHiddenFromKda'?: boolean;
52002
+ 'attributes': JsonApiMetricInAttributes;
51897
52003
  }
51898
52004
 
51899
52005
  export declare interface JsonApiMetricPostOptionalIdDocument {
@@ -51942,7 +52048,7 @@ export declare interface JsonApiNotificationChannelIdentifierOutDocument {
51942
52048
  export declare interface JsonApiNotificationChannelIdentifierOutList {
51943
52049
  'data': Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
51944
52050
  'links'?: ListLinks;
51945
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
52051
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
51946
52052
  }
51947
52053
 
51948
52054
  export declare type JsonApiNotificationChannelIdentifierOutTypeEnum = 'notificationChannelIdentifier';
@@ -51974,9 +52080,41 @@ export declare interface JsonApiNotificationChannelIn {
51974
52080
  * API identifier of an object
51975
52081
  */
51976
52082
  'id': string;
51977
- 'attributes'?: JsonApiNotificationChannelPatchAttributes;
52083
+ 'attributes'?: JsonApiNotificationChannelInAttributes;
51978
52084
  }
51979
52085
 
52086
+ export declare interface JsonApiNotificationChannelInAttributes {
52087
+ 'name'?: string | null;
52088
+ 'description'?: string | null;
52089
+ 'destination'?: JsonApiNotificationChannelOutAttributesDestination;
52090
+ /**
52091
+ * Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
52092
+ */
52093
+ 'customDashboardUrl'?: string;
52094
+ /**
52095
+ * Dashboard link visibility in notifications. HIDDEN - the link will not be included INTERNAL_ONLY - only internal users will see the link ALL - all users will see the link
52096
+ */
52097
+ 'dashboardLinkVisibility'?: JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum;
52098
+ /**
52099
+ * Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
52100
+ */
52101
+ 'notificationSource'?: string;
52102
+ /**
52103
+ * Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
52104
+ */
52105
+ 'allowedRecipients'?: JsonApiNotificationChannelInAttributesAllowedRecipientsEnum;
52106
+ /**
52107
+ * In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications
52108
+ */
52109
+ 'inPlatformNotification'?: JsonApiNotificationChannelInAttributesInPlatformNotificationEnum;
52110
+ }
52111
+
52112
+ export declare type JsonApiNotificationChannelInAttributesAllowedRecipientsEnum = 'CREATOR' | 'INTERNAL' | 'EXTERNAL';
52113
+
52114
+ export declare type JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum = 'HIDDEN' | 'INTERNAL_ONLY' | 'ALL';
52115
+
52116
+ export declare type JsonApiNotificationChannelInAttributesInPlatformNotificationEnum = 'DISABLED' | 'ENABLED';
52117
+
51980
52118
  export declare interface JsonApiNotificationChannelInDocument {
51981
52119
  'data': JsonApiNotificationChannelIn;
51982
52120
  }
@@ -52060,7 +52198,7 @@ export declare interface JsonApiNotificationChannelOutDocument {
52060
52198
  export declare interface JsonApiNotificationChannelOutList {
52061
52199
  'data': Array<JsonApiNotificationChannelOutWithLinks>;
52062
52200
  'links'?: ListLinks;
52063
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
52201
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
52064
52202
  }
52065
52203
 
52066
52204
  export declare type JsonApiNotificationChannelOutTypeEnum = 'notificationChannel';
@@ -52092,41 +52230,9 @@ export declare interface JsonApiNotificationChannelPatch {
52092
52230
  * API identifier of an object
52093
52231
  */
52094
52232
  'id': string;
52095
- 'attributes'?: JsonApiNotificationChannelPatchAttributes;
52096
- }
52097
-
52098
- export declare interface JsonApiNotificationChannelPatchAttributes {
52099
- 'name'?: string | null;
52100
- 'description'?: string | null;
52101
- 'destination'?: JsonApiNotificationChannelOutAttributesDestination;
52102
- /**
52103
- * Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
52104
- */
52105
- 'customDashboardUrl'?: string;
52106
- /**
52107
- * Dashboard link visibility in notifications. HIDDEN - the link will not be included INTERNAL_ONLY - only internal users will see the link ALL - all users will see the link
52108
- */
52109
- 'dashboardLinkVisibility'?: JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum;
52110
- /**
52111
- * Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
52112
- */
52113
- 'notificationSource'?: string;
52114
- /**
52115
- * Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
52116
- */
52117
- 'allowedRecipients'?: JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum;
52118
- /**
52119
- * In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications
52120
- */
52121
- 'inPlatformNotification'?: JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum;
52233
+ 'attributes'?: JsonApiNotificationChannelInAttributes;
52122
52234
  }
52123
52235
 
52124
- export declare type JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum = 'CREATOR' | 'INTERNAL' | 'EXTERNAL';
52125
-
52126
- export declare type JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum = 'HIDDEN' | 'INTERNAL_ONLY' | 'ALL';
52127
-
52128
- export declare type JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum = 'DISABLED' | 'ENABLED';
52129
-
52130
52236
  export declare interface JsonApiNotificationChannelPatchDocument {
52131
52237
  'data': JsonApiNotificationChannelPatch;
52132
52238
  }
@@ -52145,7 +52251,7 @@ export declare interface JsonApiNotificationChannelPostOptionalId {
52145
52251
  * API identifier of an object
52146
52252
  */
52147
52253
  'id'?: string;
52148
- 'attributes'?: JsonApiNotificationChannelPatchAttributes;
52254
+ 'attributes'?: JsonApiNotificationChannelInAttributes;
52149
52255
  }
52150
52256
 
52151
52257
  export declare interface JsonApiNotificationChannelPostOptionalIdDocument {
@@ -52248,13 +52354,9 @@ export declare interface JsonApiOrganizationOutMeta {
52248
52354
  export declare type JsonApiOrganizationOutMetaPermissionsEnum = 'MANAGE' | 'SELF_CREATE_TOKEN' | 'BASE_UI_ACCESS';
52249
52355
 
52250
52356
  export declare interface JsonApiOrganizationOutRelationships {
52251
- 'bootstrapUser'?: JsonApiFilterViewOutRelationshipsUser;
52252
- 'bootstrapUserGroup'?: JsonApiUserDataFilterOutRelationshipsUserGroup;
52253
- 'identityProvider'?: JsonApiOrganizationOutRelationshipsIdentityProvider;
52254
- }
52255
-
52256
- export declare interface JsonApiOrganizationOutRelationshipsIdentityProvider {
52257
- 'data': JsonApiIdentityProviderLinkage | null;
52357
+ 'bootstrapUser'?: JsonApiFilterViewPatchRelationshipsUser;
52358
+ 'bootstrapUserGroup'?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
52359
+ 'identityProvider'?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
52258
52360
  }
52259
52361
 
52260
52362
  export declare type JsonApiOrganizationOutTypeEnum = 'organization';
@@ -52295,7 +52397,11 @@ export declare interface JsonApiOrganizationPatchDocument {
52295
52397
  }
52296
52398
 
52297
52399
  export declare interface JsonApiOrganizationPatchRelationships {
52298
- 'identityProvider'?: JsonApiOrganizationOutRelationshipsIdentityProvider;
52400
+ 'identityProvider'?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
52401
+ }
52402
+
52403
+ export declare interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
52404
+ 'data': JsonApiIdentityProviderLinkage | null;
52299
52405
  }
52300
52406
 
52301
52407
  export declare type JsonApiOrganizationPatchTypeEnum = 'organization';
@@ -52312,7 +52418,7 @@ export declare interface JsonApiOrganizationSettingIn {
52312
52418
  * API identifier of an object
52313
52419
  */
52314
52420
  'id': string;
52315
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
52421
+ 'attributes'?: JsonApiWorkspaceSettingPatchAttributes;
52316
52422
  }
52317
52423
 
52318
52424
  export declare interface JsonApiOrganizationSettingInDocument {
@@ -52333,19 +52439,9 @@ export declare interface JsonApiOrganizationSettingOut {
52333
52439
  * API identifier of an object
52334
52440
  */
52335
52441
  'id': string;
52336
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
52442
+ 'attributes'?: JsonApiWorkspaceSettingPatchAttributes;
52337
52443
  }
52338
52444
 
52339
- export declare interface JsonApiOrganizationSettingOutAttributes {
52340
- /**
52341
- * Free-form JSON content. Maximum supported length is 15000 characters.
52342
- */
52343
- 'content'?: object;
52344
- 'type'?: JsonApiOrganizationSettingOutAttributesTypeEnum;
52345
- }
52346
-
52347
- export declare type JsonApiOrganizationSettingOutAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_ENDPOINT' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI';
52348
-
52349
52445
  export declare interface JsonApiOrganizationSettingOutDocument {
52350
52446
  'data': JsonApiOrganizationSettingOut;
52351
52447
  'links'?: ObjectLinks;
@@ -52357,7 +52453,7 @@ export declare interface JsonApiOrganizationSettingOutDocument {
52357
52453
  export declare interface JsonApiOrganizationSettingOutList {
52358
52454
  'data': Array<JsonApiOrganizationSettingOutWithLinks>;
52359
52455
  'links'?: ListLinks;
52360
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
52456
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
52361
52457
  }
52362
52458
 
52363
52459
  export declare type JsonApiOrganizationSettingOutTypeEnum = 'organizationSetting';
@@ -52371,7 +52467,7 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
52371
52467
  * API identifier of an object
52372
52468
  */
52373
52469
  'id': string;
52374
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
52470
+ 'attributes'?: JsonApiWorkspaceSettingPatchAttributes;
52375
52471
  'links'?: ObjectLinks;
52376
52472
  }
52377
52473
 
@@ -52389,7 +52485,7 @@ export declare interface JsonApiOrganizationSettingPatch {
52389
52485
  * API identifier of an object
52390
52486
  */
52391
52487
  'id': string;
52392
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
52488
+ 'attributes'?: JsonApiWorkspaceSettingPatchAttributes;
52393
52489
  }
52394
52490
 
52395
52491
  export declare interface JsonApiOrganizationSettingPatchDocument {
@@ -52410,7 +52506,7 @@ export declare interface JsonApiThemeIn {
52410
52506
  * API identifier of an object
52411
52507
  */
52412
52508
  'id': string;
52413
- 'attributes': JsonApiColorPaletteOutAttributes;
52509
+ 'attributes': JsonApiColorPaletteInAttributes;
52414
52510
  }
52415
52511
 
52416
52512
  export declare interface JsonApiThemeInDocument {
@@ -52431,7 +52527,7 @@ export declare interface JsonApiThemeOut {
52431
52527
  * API identifier of an object
52432
52528
  */
52433
52529
  'id': string;
52434
- 'attributes': JsonApiColorPaletteOutAttributes;
52530
+ 'attributes': JsonApiColorPaletteInAttributes;
52435
52531
  }
52436
52532
 
52437
52533
  export declare interface JsonApiThemeOutDocument {
@@ -52445,7 +52541,7 @@ export declare interface JsonApiThemeOutDocument {
52445
52541
  export declare interface JsonApiThemeOutList {
52446
52542
  'data': Array<JsonApiThemeOutWithLinks>;
52447
52543
  'links'?: ListLinks;
52448
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
52544
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
52449
52545
  }
52450
52546
 
52451
52547
  export declare type JsonApiThemeOutTypeEnum = 'theme';
@@ -52459,7 +52555,7 @@ export declare interface JsonApiThemeOutWithLinks {
52459
52555
  * API identifier of an object
52460
52556
  */
52461
52557
  'id': string;
52462
- 'attributes': JsonApiColorPaletteOutAttributes;
52558
+ 'attributes': JsonApiColorPaletteInAttributes;
52463
52559
  'links'?: ObjectLinks;
52464
52560
  }
52465
52561
 
@@ -52499,7 +52595,7 @@ export declare interface JsonApiUserDataFilterIn {
52499
52595
  */
52500
52596
  'id': string;
52501
52597
  'attributes': JsonApiUserDataFilterOutAttributes;
52502
- 'relationships'?: JsonApiUserDataFilterPostOptionalIdRelationships;
52598
+ 'relationships'?: JsonApiUserDataFilterPatchRelationships;
52503
52599
  }
52504
52600
 
52505
52601
  export declare interface JsonApiUserDataFilterInDocument {
@@ -52520,7 +52616,7 @@ export declare interface JsonApiUserDataFilterOut {
52520
52616
  * API identifier of an object
52521
52617
  */
52522
52618
  'id': string;
52523
- 'meta'?: JsonApiDatasetOutMeta;
52619
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
52524
52620
  'attributes': JsonApiUserDataFilterOutAttributes;
52525
52621
  'relationships'?: JsonApiUserDataFilterOutRelationships;
52526
52622
  }
@@ -52553,7 +52649,7 @@ export declare type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLi
52553
52649
  export declare interface JsonApiUserDataFilterOutList {
52554
52650
  'data': Array<JsonApiUserDataFilterOutWithLinks>;
52555
52651
  'links'?: ListLinks;
52556
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
52652
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
52557
52653
  /**
52558
52654
  * Included resources
52559
52655
  */
@@ -52561,17 +52657,13 @@ export declare interface JsonApiUserDataFilterOutList {
52561
52657
  }
52562
52658
 
52563
52659
  export declare interface JsonApiUserDataFilterOutRelationships {
52564
- 'user'?: JsonApiFilterViewOutRelationshipsUser;
52565
- 'userGroup'?: JsonApiUserDataFilterOutRelationshipsUserGroup;
52566
- 'facts'?: JsonApiDatasetOutRelationshipsFacts;
52567
- 'attributes'?: JsonApiDatasetOutRelationshipsAttributes;
52660
+ 'user'?: JsonApiFilterViewPatchRelationshipsUser;
52661
+ 'userGroup'?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
52662
+ 'facts'?: JsonApiVisualizationObjectOutRelationshipsFacts;
52663
+ 'attributes'?: JsonApiVisualizationObjectOutRelationshipsAttributes;
52568
52664
  'labels'?: JsonApiVisualizationObjectOutRelationshipsLabels;
52569
52665
  'metrics'?: JsonApiVisualizationObjectOutRelationshipsMetrics;
52570
- 'datasets'?: JsonApiDatasetOutRelationshipsReferences;
52571
- }
52572
-
52573
- export declare interface JsonApiUserDataFilterOutRelationshipsUserGroup {
52574
- 'data': JsonApiUserGroupLinkage | null;
52666
+ 'datasets'?: JsonApiVisualizationObjectOutRelationshipsDatasets;
52575
52667
  }
52576
52668
 
52577
52669
  export declare type JsonApiUserDataFilterOutTypeEnum = 'userDataFilter';
@@ -52585,7 +52677,7 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
52585
52677
  * API identifier of an object
52586
52678
  */
52587
52679
  'id': string;
52588
- 'meta'?: JsonApiDatasetOutMeta;
52680
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
52589
52681
  'attributes': JsonApiUserDataFilterOutAttributes;
52590
52682
  'relationships'?: JsonApiUserDataFilterOutRelationships;
52591
52683
  'links'?: ObjectLinks;
@@ -52606,7 +52698,7 @@ export declare interface JsonApiUserDataFilterPatch {
52606
52698
  */
52607
52699
  'id': string;
52608
52700
  'attributes': JsonApiUserDataFilterPatchAttributes;
52609
- 'relationships'?: JsonApiUserDataFilterPostOptionalIdRelationships;
52701
+ 'relationships'?: JsonApiUserDataFilterPatchRelationships;
52610
52702
  }
52611
52703
 
52612
52704
  export declare interface JsonApiUserDataFilterPatchAttributes {
@@ -52621,6 +52713,15 @@ export declare interface JsonApiUserDataFilterPatchDocument {
52621
52713
  'data': JsonApiUserDataFilterPatch;
52622
52714
  }
52623
52715
 
52716
+ export declare interface JsonApiUserDataFilterPatchRelationships {
52717
+ 'user'?: JsonApiFilterViewPatchRelationshipsUser;
52718
+ 'userGroup'?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
52719
+ }
52720
+
52721
+ export declare interface JsonApiUserDataFilterPatchRelationshipsUserGroup {
52722
+ 'data': JsonApiUserGroupLinkage | null;
52723
+ }
52724
+
52624
52725
  export declare type JsonApiUserDataFilterPatchTypeEnum = 'userDataFilter';
52625
52726
 
52626
52727
  /**
@@ -52636,18 +52737,13 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
52636
52737
  */
52637
52738
  'id'?: string;
52638
52739
  'attributes': JsonApiUserDataFilterOutAttributes;
52639
- 'relationships'?: JsonApiUserDataFilterPostOptionalIdRelationships;
52740
+ 'relationships'?: JsonApiUserDataFilterPatchRelationships;
52640
52741
  }
52641
52742
 
52642
52743
  export declare interface JsonApiUserDataFilterPostOptionalIdDocument {
52643
52744
  'data': JsonApiUserDataFilterPostOptionalId;
52644
52745
  }
52645
52746
 
52646
- export declare interface JsonApiUserDataFilterPostOptionalIdRelationships {
52647
- 'user'?: JsonApiFilterViewOutRelationshipsUser;
52648
- 'userGroup'?: JsonApiUserDataFilterOutRelationshipsUserGroup;
52649
- }
52650
-
52651
52747
  export declare type JsonApiUserDataFilterPostOptionalIdTypeEnum = 'userDataFilter';
52652
52748
 
52653
52749
  /**
@@ -52717,7 +52813,7 @@ export declare interface JsonApiUserGroupOutDocument {
52717
52813
  export declare interface JsonApiUserGroupOutList {
52718
52814
  'data': Array<JsonApiUserGroupOutWithLinks>;
52719
52815
  'links'?: ListLinks;
52720
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
52816
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
52721
52817
  /**
52722
52818
  * Included resources
52723
52819
  */
@@ -52725,14 +52821,7 @@ export declare interface JsonApiUserGroupOutList {
52725
52821
  }
52726
52822
 
52727
52823
  export declare interface JsonApiUserGroupOutRelationships {
52728
- 'parents'?: JsonApiUserGroupOutRelationshipsParents;
52729
- }
52730
-
52731
- export declare interface JsonApiUserGroupOutRelationshipsParents {
52732
- /**
52733
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
52734
- */
52735
- 'data': Array<JsonApiUserGroupLinkage>;
52824
+ 'parents'?: JsonApiUserOutRelationshipsUserGroups;
52736
52825
  }
52737
52826
 
52738
52827
  export declare type JsonApiUserGroupOutTypeEnum = 'userGroup';
@@ -52817,7 +52906,7 @@ export declare interface JsonApiUserIdentifierOutDocument {
52817
52906
  export declare interface JsonApiUserIdentifierOutList {
52818
52907
  'data': Array<JsonApiUserIdentifierOutWithLinks>;
52819
52908
  'links'?: ListLinks;
52820
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
52909
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
52821
52910
  }
52822
52911
 
52823
52912
  export declare type JsonApiUserIdentifierOutTypeEnum = 'userIdentifier';
@@ -52907,7 +52996,7 @@ export declare interface JsonApiUserOutDocument {
52907
52996
  export declare interface JsonApiUserOutList {
52908
52997
  'data': Array<JsonApiUserOutWithLinks>;
52909
52998
  'links'?: ListLinks;
52910
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
52999
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
52911
53000
  /**
52912
53001
  * Included resources
52913
53002
  */
@@ -52915,7 +53004,14 @@ export declare interface JsonApiUserOutList {
52915
53004
  }
52916
53005
 
52917
53006
  export declare interface JsonApiUserOutRelationships {
52918
- 'userGroups'?: JsonApiUserGroupOutRelationshipsParents;
53007
+ 'userGroups'?: JsonApiUserOutRelationshipsUserGroups;
53008
+ }
53009
+
53010
+ export declare interface JsonApiUserOutRelationshipsUserGroups {
53011
+ /**
53012
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
53013
+ */
53014
+ 'data': Array<JsonApiUserGroupLinkage>;
52919
53015
  }
52920
53016
 
52921
53017
  export declare type JsonApiUserOutTypeEnum = 'user';
@@ -52970,7 +53066,7 @@ export declare interface JsonApiUserSettingIn {
52970
53066
  * API identifier of an object
52971
53067
  */
52972
53068
  'id': string;
52973
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
53069
+ 'attributes'?: JsonApiWorkspaceSettingPatchAttributes;
52974
53070
  }
52975
53071
 
52976
53072
  export declare interface JsonApiUserSettingInDocument {
@@ -52991,7 +53087,7 @@ export declare interface JsonApiUserSettingOut {
52991
53087
  * API identifier of an object
52992
53088
  */
52993
53089
  'id': string;
52994
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
53090
+ 'attributes'?: JsonApiWorkspaceSettingPatchAttributes;
52995
53091
  }
52996
53092
 
52997
53093
  export declare interface JsonApiUserSettingOutDocument {
@@ -53005,7 +53101,7 @@ export declare interface JsonApiUserSettingOutDocument {
53005
53101
  export declare interface JsonApiUserSettingOutList {
53006
53102
  'data': Array<JsonApiUserSettingOutWithLinks>;
53007
53103
  'links'?: ListLinks;
53008
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
53104
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
53009
53105
  }
53010
53106
 
53011
53107
  export declare type JsonApiUserSettingOutTypeEnum = 'userSetting';
@@ -53019,7 +53115,7 @@ export declare interface JsonApiUserSettingOutWithLinks {
53019
53115
  * API identifier of an object
53020
53116
  */
53021
53117
  'id': string;
53022
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
53118
+ 'attributes'?: JsonApiWorkspaceSettingPatchAttributes;
53023
53119
  'links'?: ObjectLinks;
53024
53120
  }
53025
53121
 
@@ -53037,7 +53133,19 @@ export declare interface JsonApiVisualizationObjectIn {
53037
53133
  * API identifier of an object
53038
53134
  */
53039
53135
  'id': string;
53040
- 'attributes': JsonApiVisualizationObjectPostOptionalIdAttributes;
53136
+ 'attributes': JsonApiVisualizationObjectInAttributes;
53137
+ }
53138
+
53139
+ export declare interface JsonApiVisualizationObjectInAttributes {
53140
+ 'title'?: string;
53141
+ 'description'?: string;
53142
+ 'tags'?: Array<string>;
53143
+ 'areRelationsValid'?: boolean;
53144
+ /**
53145
+ * Free-form JSON content. Maximum supported length is 250000 characters.
53146
+ */
53147
+ 'content': object;
53148
+ 'isHidden'?: boolean;
53041
53149
  }
53042
53150
 
53043
53151
  export declare interface JsonApiVisualizationObjectInDocument {
@@ -53068,7 +53176,7 @@ export declare interface JsonApiVisualizationObjectOut {
53068
53176
  * API identifier of an object
53069
53177
  */
53070
53178
  'id': string;
53071
- 'meta'?: JsonApiDatasetOutMeta;
53179
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
53072
53180
  'attributes': JsonApiVisualizationObjectOutAttributes;
53073
53181
  'relationships'?: JsonApiVisualizationObjectOutRelationships;
53074
53182
  }
@@ -53108,27 +53216,65 @@ export declare interface JsonApiVisualizationObjectOutDocument {
53108
53216
  export declare interface JsonApiVisualizationObjectOutList {
53109
53217
  'data': Array<JsonApiVisualizationObjectOutWithLinks>;
53110
53218
  'links'?: ListLinks;
53111
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
53219
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
53112
53220
  /**
53113
53221
  * Included resources
53114
53222
  */
53115
53223
  'included'?: Array<JsonApiMetricOutIncludes>;
53116
53224
  }
53117
53225
 
53226
+ export declare interface JsonApiVisualizationObjectOutMeta {
53227
+ 'origin'?: JsonApiVisualizationObjectOutMetaOrigin;
53228
+ }
53229
+
53230
+ export declare interface JsonApiVisualizationObjectOutMetaOrigin {
53231
+ /**
53232
+ * defines type of the origin of the entity
53233
+ */
53234
+ 'originType': JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum;
53235
+ /**
53236
+ * defines id of the workspace where the entity comes from
53237
+ */
53238
+ 'originId': string;
53239
+ }
53240
+
53241
+ export declare type JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum = 'NATIVE' | 'PARENT';
53242
+
53118
53243
  export declare interface JsonApiVisualizationObjectOutRelationships {
53119
53244
  'createdBy'?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
53120
53245
  'modifiedBy'?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
53121
- 'facts'?: JsonApiDatasetOutRelationshipsFacts;
53122
- 'attributes'?: JsonApiDatasetOutRelationshipsAttributes;
53246
+ 'facts'?: JsonApiVisualizationObjectOutRelationshipsFacts;
53247
+ 'attributes'?: JsonApiVisualizationObjectOutRelationshipsAttributes;
53123
53248
  'labels'?: JsonApiVisualizationObjectOutRelationshipsLabels;
53124
53249
  'metrics'?: JsonApiVisualizationObjectOutRelationshipsMetrics;
53125
- 'datasets'?: JsonApiDatasetOutRelationshipsReferences;
53250
+ 'datasets'?: JsonApiVisualizationObjectOutRelationshipsDatasets;
53251
+ }
53252
+
53253
+ export declare interface JsonApiVisualizationObjectOutRelationshipsAttributes {
53254
+ /**
53255
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
53256
+ */
53257
+ 'data': Array<JsonApiAttributeLinkage>;
53126
53258
  }
53127
53259
 
53128
53260
  export declare interface JsonApiVisualizationObjectOutRelationshipsCreatedBy {
53129
53261
  'data': JsonApiUserIdentifierLinkage | null;
53130
53262
  }
53131
53263
 
53264
+ export declare interface JsonApiVisualizationObjectOutRelationshipsDatasets {
53265
+ /**
53266
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
53267
+ */
53268
+ 'data': Array<JsonApiDatasetLinkage>;
53269
+ }
53270
+
53271
+ export declare interface JsonApiVisualizationObjectOutRelationshipsFacts {
53272
+ /**
53273
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
53274
+ */
53275
+ 'data': Array<JsonApiFactLinkage>;
53276
+ }
53277
+
53132
53278
  export declare interface JsonApiVisualizationObjectOutRelationshipsLabels {
53133
53279
  /**
53134
53280
  * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
@@ -53154,7 +53300,7 @@ export declare interface JsonApiVisualizationObjectOutWithLinks {
53154
53300
  * API identifier of an object
53155
53301
  */
53156
53302
  'id': string;
53157
- 'meta'?: JsonApiDatasetOutMeta;
53303
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
53158
53304
  'attributes': JsonApiVisualizationObjectOutAttributes;
53159
53305
  'relationships'?: JsonApiVisualizationObjectOutRelationships;
53160
53306
  'links'?: ObjectLinks;
@@ -53207,19 +53353,7 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
53207
53353
  * API identifier of an object
53208
53354
  */
53209
53355
  'id'?: string;
53210
- 'attributes': JsonApiVisualizationObjectPostOptionalIdAttributes;
53211
- }
53212
-
53213
- export declare interface JsonApiVisualizationObjectPostOptionalIdAttributes {
53214
- 'title'?: string;
53215
- 'description'?: string;
53216
- 'tags'?: Array<string>;
53217
- 'areRelationsValid'?: boolean;
53218
- /**
53219
- * Free-form JSON content. Maximum supported length is 250000 characters.
53220
- */
53221
- 'content': object;
53222
- 'isHidden'?: boolean;
53356
+ 'attributes': JsonApiVisualizationObjectInAttributes;
53223
53357
  }
53224
53358
 
53225
53359
  export declare interface JsonApiVisualizationObjectPostOptionalIdDocument {
@@ -53253,7 +53387,7 @@ export declare interface JsonApiWorkspaceAutomationOutAttributes {
53253
53387
  * Additional details to be included in the automated message.
53254
53388
  */
53255
53389
  'details'?: object;
53256
- 'metadata'?: JsonApiAutomationOutAttributesMetadata | null;
53390
+ 'metadata'?: JsonApiAutomationPatchAttributesMetadata | null;
53257
53391
  /**
53258
53392
  * Current state of the automation.
53259
53393
  */
@@ -53262,18 +53396,18 @@ export declare interface JsonApiWorkspaceAutomationOutAttributes {
53262
53396
  * Specify automation evaluation mode.
53263
53397
  */
53264
53398
  'evaluationMode'?: JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum;
53265
- 'schedule'?: JsonApiAutomationOutAttributesSchedule;
53266
- 'alert'?: JsonApiAutomationOutAttributesAlert;
53267
- 'tabularExports'?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
53268
- 'visualExports'?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
53269
- 'imageExports'?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
53270
- 'rawExports'?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
53271
- 'slidesExports'?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
53272
- 'dashboardTabularExports'?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
53399
+ 'schedule'?: JsonApiAutomationPatchAttributesSchedule;
53400
+ 'alert'?: JsonApiAutomationPatchAttributesAlert;
53401
+ 'tabularExports'?: Array<JsonApiAutomationPatchAttributesTabularExportsInner>;
53402
+ 'visualExports'?: Array<JsonApiAutomationPatchAttributesVisualExportsInner>;
53403
+ 'imageExports'?: Array<JsonApiAutomationPatchAttributesImageExportsInner>;
53404
+ 'rawExports'?: Array<JsonApiAutomationPatchAttributesRawExportsInner>;
53405
+ 'slidesExports'?: Array<JsonApiAutomationPatchAttributesSlidesExportsInner>;
53406
+ 'dashboardTabularExports'?: Array<JsonApiAutomationPatchAttributesDashboardTabularExportsInner>;
53273
53407
  /**
53274
53408
  * External recipients of the automation action results.
53275
53409
  */
53276
- 'externalRecipients'?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
53410
+ 'externalRecipients'?: Array<JsonApiAutomationPatchAttributesExternalRecipientsInner>;
53277
53411
  'createdAt'?: string;
53278
53412
  'modifiedAt'?: string;
53279
53413
  }
@@ -53293,25 +53427,21 @@ export declare type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDas
53293
53427
  export declare interface JsonApiWorkspaceAutomationOutList {
53294
53428
  'data': Array<JsonApiWorkspaceAutomationOutWithLinks>;
53295
53429
  'links'?: ListLinks;
53296
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
53430
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
53297
53431
  /**
53298
53432
  * Included resources
53299
53433
  */
53300
53434
  'included'?: Array<JsonApiWorkspaceAutomationOutIncludes>;
53301
53435
  }
53302
53436
 
53303
- export declare interface JsonApiWorkspaceAutomationOutListMeta {
53304
- 'page'?: PageMetadata;
53305
- }
53306
-
53307
53437
  export declare interface JsonApiWorkspaceAutomationOutRelationships {
53308
53438
  'workspace'?: JsonApiWorkspaceOutRelationshipsParent;
53309
- 'notificationChannel'?: JsonApiAutomationOutRelationshipsNotificationChannel;
53310
- 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
53439
+ 'notificationChannel'?: JsonApiAutomationPatchRelationshipsNotificationChannel;
53440
+ 'analyticalDashboard'?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
53311
53441
  'createdBy'?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
53312
53442
  'modifiedBy'?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
53313
- 'exportDefinitions'?: JsonApiAutomationOutRelationshipsExportDefinitions;
53314
- 'recipients'?: JsonApiAutomationOutRelationshipsRecipients;
53443
+ 'exportDefinitions'?: JsonApiAutomationPatchRelationshipsExportDefinitions;
53444
+ 'recipients'?: JsonApiAutomationPatchRelationshipsRecipients;
53315
53445
  'automationResults'?: JsonApiAutomationOutRelationshipsAutomationResults;
53316
53446
  }
53317
53447
 
@@ -53377,7 +53507,7 @@ export declare interface JsonApiWorkspaceDataFilterOut {
53377
53507
  * API identifier of an object
53378
53508
  */
53379
53509
  'id': string;
53380
- 'meta'?: JsonApiDatasetOutMeta;
53510
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
53381
53511
  'attributes'?: JsonApiWorkspaceDataFilterOutAttributes;
53382
53512
  'relationships'?: JsonApiWorkspaceDataFilterOutRelationships;
53383
53513
  }
@@ -53403,7 +53533,7 @@ export declare interface JsonApiWorkspaceDataFilterOutDocument {
53403
53533
  export declare interface JsonApiWorkspaceDataFilterOutList {
53404
53534
  'data': Array<JsonApiWorkspaceDataFilterOutWithLinks>;
53405
53535
  'links'?: ListLinks;
53406
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
53536
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
53407
53537
  /**
53408
53538
  * Included resources
53409
53539
  */
@@ -53432,7 +53562,7 @@ export declare interface JsonApiWorkspaceDataFilterOutWithLinks {
53432
53562
  * API identifier of an object
53433
53563
  */
53434
53564
  'id': string;
53435
- 'meta'?: JsonApiDatasetOutMeta;
53565
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
53436
53566
  'attributes'?: JsonApiWorkspaceDataFilterOutAttributes;
53437
53567
  'relationships'?: JsonApiWorkspaceDataFilterOutRelationships;
53438
53568
  'links'?: ObjectLinks;
@@ -53474,8 +53604,8 @@ export declare interface JsonApiWorkspaceDataFilterSettingIn {
53474
53604
  * API identifier of an object
53475
53605
  */
53476
53606
  'id': string;
53477
- 'attributes'?: JsonApiWorkspaceDataFilterSettingOutAttributes;
53478
- 'relationships'?: JsonApiWorkspaceDataFilterSettingOutRelationships;
53607
+ 'attributes'?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
53608
+ 'relationships'?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
53479
53609
  }
53480
53610
 
53481
53611
  export declare interface JsonApiWorkspaceDataFilterSettingInDocument {
@@ -53506,15 +53636,9 @@ export declare interface JsonApiWorkspaceDataFilterSettingOut {
53506
53636
  * API identifier of an object
53507
53637
  */
53508
53638
  'id': string;
53509
- 'meta'?: JsonApiDatasetOutMeta;
53510
- 'attributes'?: JsonApiWorkspaceDataFilterSettingOutAttributes;
53511
- 'relationships'?: JsonApiWorkspaceDataFilterSettingOutRelationships;
53512
- }
53513
-
53514
- export declare interface JsonApiWorkspaceDataFilterSettingOutAttributes {
53515
- 'title'?: string;
53516
- 'description'?: string;
53517
- 'filterValues'?: Array<string>;
53639
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
53640
+ 'attributes'?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
53641
+ 'relationships'?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
53518
53642
  }
53519
53643
 
53520
53644
  export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
@@ -53532,21 +53656,13 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
53532
53656
  export declare interface JsonApiWorkspaceDataFilterSettingOutList {
53533
53657
  'data': Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
53534
53658
  'links'?: ListLinks;
53535
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
53659
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
53536
53660
  /**
53537
53661
  * Included resources
53538
53662
  */
53539
53663
  'included'?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
53540
53664
  }
53541
53665
 
53542
- export declare interface JsonApiWorkspaceDataFilterSettingOutRelationships {
53543
- 'workspaceDataFilter'?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
53544
- }
53545
-
53546
- export declare interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
53547
- 'data': JsonApiWorkspaceDataFilterLinkage | null;
53548
- }
53549
-
53550
53666
  export declare type JsonApiWorkspaceDataFilterSettingOutTypeEnum = 'workspaceDataFilterSetting';
53551
53667
 
53552
53668
  export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
@@ -53558,9 +53674,9 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
53558
53674
  * API identifier of an object
53559
53675
  */
53560
53676
  'id': string;
53561
- 'meta'?: JsonApiDatasetOutMeta;
53562
- 'attributes'?: JsonApiWorkspaceDataFilterSettingOutAttributes;
53563
- 'relationships'?: JsonApiWorkspaceDataFilterSettingOutRelationships;
53677
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
53678
+ 'attributes'?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
53679
+ 'relationships'?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
53564
53680
  'links'?: ObjectLinks;
53565
53681
  }
53566
53682
 
@@ -53578,14 +53694,28 @@ export declare interface JsonApiWorkspaceDataFilterSettingPatch {
53578
53694
  * API identifier of an object
53579
53695
  */
53580
53696
  'id': string;
53581
- 'attributes'?: JsonApiWorkspaceDataFilterSettingOutAttributes;
53582
- 'relationships'?: JsonApiWorkspaceDataFilterSettingOutRelationships;
53697
+ 'attributes'?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
53698
+ 'relationships'?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
53699
+ }
53700
+
53701
+ export declare interface JsonApiWorkspaceDataFilterSettingPatchAttributes {
53702
+ 'title'?: string;
53703
+ 'description'?: string;
53704
+ 'filterValues'?: Array<string>;
53583
53705
  }
53584
53706
 
53585
53707
  export declare interface JsonApiWorkspaceDataFilterSettingPatchDocument {
53586
53708
  'data': JsonApiWorkspaceDataFilterSettingPatch;
53587
53709
  }
53588
53710
 
53711
+ export declare interface JsonApiWorkspaceDataFilterSettingPatchRelationships {
53712
+ 'workspaceDataFilter'?: JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter;
53713
+ }
53714
+
53715
+ export declare interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter {
53716
+ 'data': JsonApiWorkspaceDataFilterLinkage | null;
53717
+ }
53718
+
53589
53719
  export declare type JsonApiWorkspaceDataFilterSettingPatchTypeEnum = 'workspaceDataFilterSetting';
53590
53720
 
53591
53721
  /**
@@ -53686,7 +53816,7 @@ export declare interface JsonApiWorkspaceOutDocument {
53686
53816
  export declare interface JsonApiWorkspaceOutList {
53687
53817
  'data': Array<JsonApiWorkspaceOutWithLinks>;
53688
53818
  'links'?: ListLinks;
53689
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
53819
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
53690
53820
  /**
53691
53821
  * Included resources
53692
53822
  */
@@ -53795,7 +53925,7 @@ export declare interface JsonApiWorkspaceSettingIn {
53795
53925
  * API identifier of an object
53796
53926
  */
53797
53927
  'id': string;
53798
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
53928
+ 'attributes'?: JsonApiWorkspaceSettingPatchAttributes;
53799
53929
  }
53800
53930
 
53801
53931
  export declare interface JsonApiWorkspaceSettingInDocument {
@@ -53816,8 +53946,8 @@ export declare interface JsonApiWorkspaceSettingOut {
53816
53946
  * API identifier of an object
53817
53947
  */
53818
53948
  'id': string;
53819
- 'meta'?: JsonApiDatasetOutMeta;
53820
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
53949
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
53950
+ 'attributes'?: JsonApiWorkspaceSettingPatchAttributes;
53821
53951
  }
53822
53952
 
53823
53953
  export declare interface JsonApiWorkspaceSettingOutDocument {
@@ -53831,7 +53961,7 @@ export declare interface JsonApiWorkspaceSettingOutDocument {
53831
53961
  export declare interface JsonApiWorkspaceSettingOutList {
53832
53962
  'data': Array<JsonApiWorkspaceSettingOutWithLinks>;
53833
53963
  'links'?: ListLinks;
53834
- 'meta'?: JsonApiWorkspaceAutomationOutListMeta;
53964
+ 'meta'?: JsonApiAggregatedFactOutListMeta;
53835
53965
  }
53836
53966
 
53837
53967
  export declare type JsonApiWorkspaceSettingOutTypeEnum = 'workspaceSetting';
@@ -53845,8 +53975,8 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
53845
53975
  * API identifier of an object
53846
53976
  */
53847
53977
  'id': string;
53848
- 'meta'?: JsonApiDatasetOutMeta;
53849
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
53978
+ 'meta'?: JsonApiVisualizationObjectOutMeta;
53979
+ 'attributes'?: JsonApiWorkspaceSettingPatchAttributes;
53850
53980
  'links'?: ObjectLinks;
53851
53981
  }
53852
53982
 
@@ -53864,9 +53994,19 @@ export declare interface JsonApiWorkspaceSettingPatch {
53864
53994
  * API identifier of an object
53865
53995
  */
53866
53996
  'id': string;
53867
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
53997
+ 'attributes'?: JsonApiWorkspaceSettingPatchAttributes;
53998
+ }
53999
+
54000
+ export declare interface JsonApiWorkspaceSettingPatchAttributes {
54001
+ /**
54002
+ * Free-form JSON content. Maximum supported length is 15000 characters.
54003
+ */
54004
+ 'content'?: object;
54005
+ 'type'?: JsonApiWorkspaceSettingPatchAttributesTypeEnum;
53868
54006
  }
53869
54007
 
54008
+ export declare type JsonApiWorkspaceSettingPatchAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_ENDPOINT' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI';
54009
+
53870
54010
  export declare interface JsonApiWorkspaceSettingPatchDocument {
53871
54011
  'data': JsonApiWorkspaceSettingPatch;
53872
54012
  }
@@ -53885,7 +54025,7 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
53885
54025
  * API identifier of an object
53886
54026
  */
53887
54027
  'id'?: string;
53888
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
54028
+ 'attributes'?: JsonApiWorkspaceSettingPatchAttributes;
53889
54029
  }
53890
54030
 
53891
54031
  export declare interface JsonApiWorkspaceSettingPostOptionalIdDocument {
@@ -70128,9 +70268,17 @@ export declare interface RelativeDateFilterRelativeDateFilter {
70128
70268
  'localIdentifier'?: string;
70129
70269
  'applyOnResult'?: boolean;
70130
70270
  'boundedFilter'?: BoundedFilter;
70271
+ /**
70272
+ * Specifies how rows with empty (null/missing) date values should be handled. INCLUDE includes empty dates in addition to the date range restriction, EXCLUDE removes rows with empty dates (default), ONLY keeps only rows with empty dates.
70273
+ */
70274
+ 'emptyValueHandling'?: RelativeDateFilterRelativeDateFilterEmptyValueHandlingEnum;
70131
70275
  'dataset': AfmObjectIdentifierDataset;
70132
70276
  }
70133
70277
 
70278
+ export declare type RelativeDateFilterRelativeDateFilterEmptyValueHandlingEnum = 'INCLUDE' | 'EXCLUDE' | 'ONLY';
70279
+
70280
+ declare type RelativeDateFilterRelativeDateFilterEmptyValueHandlingEnum_2 = 'INCLUDE' | 'EXCLUDE' | 'ONLY';
70281
+
70134
70282
  export declare type RelativeDateFilterRelativeDateFilterGranularityEnum = 'MINUTE' | 'HOUR' | 'DAY' | 'WEEK' | 'MONTH' | 'QUARTER' | 'YEAR' | 'MINUTE_OF_HOUR' | 'HOUR_OF_DAY' | 'DAY_OF_WEEK' | 'DAY_OF_MONTH' | 'DAY_OF_QUARTER' | 'DAY_OF_YEAR' | 'WEEK_OF_YEAR' | 'MONTH_OF_YEAR' | 'QUARTER_OF_YEAR' | 'FISCAL_MONTH' | 'FISCAL_QUARTER' | 'FISCAL_YEAR';
70135
70283
 
70136
70284
  export declare type RelativeOperatorEnum = 'INCREASES_BY' | 'DECREASES_BY' | 'CHANGES_BY';