@gooddata/api-client-tiger 11.12.0-alpha.2 → 11.12.0-alpha.4

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.
@@ -6165,7 +6165,7 @@ export declare interface AlertAfm {
6165
6165
  */
6166
6166
  attributes?: Array<AttributeItem>;
6167
6167
  /**
6168
- * Various filter types to filter execution result. For anomaly detection, exactly one date filter (RelativeDateFilter or AbsoluteDateFilter) is required.
6168
+ * Various filter types to filter execution result. For anomaly detection, exactly one dataset is specified in the condition. The AFM may contain multiple date filters for different datasets, but only the date filter matching the dataset from the condition is used for anomaly detection.
6169
6169
  */
6170
6170
  filters: Array<FilterDefinition>;
6171
6171
  /**
@@ -6452,11 +6452,12 @@ export declare interface AnomalyDetection {
6452
6452
  /**
6453
6453
  * Sensitivity level for anomaly detection
6454
6454
  */
6455
- sensitivity?: AnomalyDetectionSensitivityEnum;
6455
+ sensitivity: AnomalyDetectionSensitivityEnum;
6456
6456
  /**
6457
6457
  * Date granularity for anomaly detection. Only time-based granularities are supported (HOUR, DAY, WEEK, MONTH, QUARTER, YEAR).
6458
6458
  */
6459
6459
  granularity: AnomalyDetectionGranularityEnum;
6460
+ dataset: AfmObjectIdentifierDataset;
6460
6461
  }
6461
6462
 
6462
6463
  export declare type AnomalyDetectionGranularityEnum = "HOUR" | "DAY" | "WEEK" | "MONTH" | "QUARTER" | "YEAR";
@@ -8746,7 +8747,7 @@ export declare interface AutomationAfmObjectIdentifierCoreIdentifier {
8746
8747
  export declare type AutomationAfmObjectIdentifierCoreIdentifierTypeEnum = "attribute" | "label" | "fact" | "metric";
8747
8748
 
8748
8749
  /**
8749
- * Reference to the date dataset to which the filter should be applied.
8750
+ * Date dataset used for anomaly detection.
8750
8751
  */
8751
8752
  export declare interface AutomationAfmObjectIdentifierDataset {
8752
8753
  identifier: AutomationAfmObjectIdentifierDatasetIdentifier;
@@ -8792,7 +8793,7 @@ export declare interface AutomationAlertAfm {
8792
8793
  */
8793
8794
  attributes?: Array<AutomationAttributeItem>;
8794
8795
  /**
8795
- * Various filter types to filter execution result. For anomaly detection, exactly one date filter (RelativeDateFilter or AbsoluteDateFilter) is required.
8796
+ * Various filter types to filter execution result. For anomaly detection, exactly one dataset is specified in the condition. The AFM may contain multiple date filters for different datasets, but only the date filter matching the dataset from the condition is used for anomaly detection.
8796
8797
  */
8797
8798
  filters: Array<AutomationFilterDefinition>;
8798
8799
  /**
@@ -8856,11 +8857,12 @@ declare interface AutomationAnomalyDetection {
8856
8857
  /**
8857
8858
  * Sensitivity level for anomaly detection
8858
8859
  */
8859
- sensitivity?: AutomationAnomalyDetectionSensitivityEnum;
8860
+ sensitivity: AutomationAnomalyDetectionSensitivityEnum;
8860
8861
  /**
8861
8862
  * Date granularity for anomaly detection. Only time-based granularities are supported (HOUR, DAY, WEEK, MONTH, QUARTER, YEAR).
8862
8863
  */
8863
8864
  granularity: AutomationAnomalyDetectionGranularityEnum;
8865
+ dataset: AutomationAfmObjectIdentifierDataset;
8864
8866
  }
8865
8867
 
8866
8868
  declare type AutomationAnomalyDetectionGranularityEnum = "HOUR" | "DAY" | "WEEK" | "MONTH" | "QUARTER" | "YEAR";
@@ -12032,6 +12034,7 @@ export declare interface ChatHistoryInteraction {
12032
12034
  */
12033
12035
  errorResponse?: string;
12034
12036
  foundObjects?: FoundObjects;
12037
+ semanticSearch?: SearchResult;
12035
12038
  createdVisualizations?: CreatedVisualizations;
12036
12039
  changeAnalysisParams?: ChangeAnalysisParams;
12037
12040
  /**
@@ -12144,6 +12147,7 @@ export declare interface ChatResult {
12144
12147
  foundObjects?: FoundObjects;
12145
12148
  createdVisualizations?: CreatedVisualizations;
12146
12149
  changeAnalysisParams?: ChangeAnalysisParams;
12150
+ semanticSearch?: SearchResult;
12147
12151
  /**
12148
12152
  * Chat History thread suffix appended to ID generated by backend. Enables more chat windows.
12149
12153
  */
@@ -40849,12 +40853,6 @@ declare interface IAnalyticalDashboard_2 {
40849
40853
  * @alpha
40850
40854
  */
40851
40855
  tabs?: IDashboardTab[];
40852
- /**
40853
- * Local identifier of the active tab for persistence purposes.
40854
- *
40855
- * @alpha
40856
- */
40857
- activeTabLocalIdentifier?: string;
40858
40856
  }
40859
40857
 
40860
40858
  /**
@@ -42222,7 +42220,7 @@ export declare interface JsonApiAggregatedFactOut {
42222
42220
  * API identifier of an object
42223
42221
  */
42224
42222
  id: string;
42225
- meta?: JsonApiDatasetOutMeta;
42223
+ meta?: JsonApiVisualizationObjectOutMeta;
42226
42224
  attributes: JsonApiAggregatedFactOutAttributes;
42227
42225
  relationships?: JsonApiAggregatedFactOutRelationships;
42228
42226
  }
@@ -42260,19 +42258,15 @@ export declare type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLink
42260
42258
  export declare interface JsonApiAggregatedFactOutList {
42261
42259
  data: Array<JsonApiAggregatedFactOutWithLinks>;
42262
42260
  links?: ListLinks;
42263
- meta?: JsonApiAggregatedFactOutListMeta;
42261
+ meta?: JsonApiColorPaletteOutListMeta;
42264
42262
  /**
42265
42263
  * Included resources
42266
42264
  */
42267
42265
  included?: Array<JsonApiAggregatedFactOutIncludes>;
42268
42266
  }
42269
42267
 
42270
- export declare interface JsonApiAggregatedFactOutListMeta {
42271
- page?: PageMetadata;
42272
- }
42273
-
42274
42268
  export declare interface JsonApiAggregatedFactOutRelationships {
42275
- dataset?: JsonApiFactOutRelationshipsDataset;
42269
+ dataset?: JsonApiAttributeOutRelationshipsDataset;
42276
42270
  sourceFact?: JsonApiAggregatedFactOutRelationshipsSourceFact;
42277
42271
  }
42278
42272
 
@@ -42291,7 +42285,7 @@ export declare interface JsonApiAggregatedFactOutWithLinks {
42291
42285
  * API identifier of an object
42292
42286
  */
42293
42287
  id: string;
42294
- meta?: JsonApiDatasetOutMeta;
42288
+ meta?: JsonApiVisualizationObjectOutMeta;
42295
42289
  attributes: JsonApiAggregatedFactOutAttributes;
42296
42290
  relationships?: JsonApiAggregatedFactOutRelationships;
42297
42291
  links?: ObjectLinks;
@@ -42311,7 +42305,7 @@ export declare interface JsonApiAnalyticalDashboardIn {
42311
42305
  * API identifier of an object
42312
42306
  */
42313
42307
  id: string;
42314
- attributes: JsonApiFilterContextOutAttributes;
42308
+ attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
42315
42309
  }
42316
42310
 
42317
42311
  export declare interface JsonApiAnalyticalDashboardInDocument {
@@ -42380,7 +42374,7 @@ export declare type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDas
42380
42374
  export declare interface JsonApiAnalyticalDashboardOutList {
42381
42375
  data: Array<JsonApiAnalyticalDashboardOutWithLinks>;
42382
42376
  links?: ListLinks;
42383
- meta?: JsonApiAggregatedFactOutListMeta;
42377
+ meta?: JsonApiColorPaletteOutListMeta;
42384
42378
  /**
42385
42379
  * Included resources
42386
42380
  */
@@ -42392,7 +42386,7 @@ export declare interface JsonApiAnalyticalDashboardOutMeta {
42392
42386
  * List of valid permissions for a logged-in user.
42393
42387
  */
42394
42388
  permissions?: Array<JsonApiAnalyticalDashboardOutMetaPermissionsEnum>;
42395
- origin?: JsonApiDatasetOutMetaOrigin;
42389
+ origin?: JsonApiVisualizationObjectOutMetaOrigin;
42396
42390
  accessInfo?: JsonApiAnalyticalDashboardOutMetaAccessInfo;
42397
42391
  }
42398
42392
 
@@ -42412,7 +42406,7 @@ export declare interface JsonApiAnalyticalDashboardOutRelationships {
42412
42406
  analyticalDashboards?: JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards;
42413
42407
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
42414
42408
  metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
42415
- datasets?: JsonApiDatasetOutRelationshipsReferences;
42409
+ datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
42416
42410
  filterContexts?: JsonApiAnalyticalDashboardOutRelationshipsFilterContexts;
42417
42411
  dashboardPlugins?: JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins;
42418
42412
  }
@@ -42508,7 +42502,18 @@ export declare interface JsonApiAnalyticalDashboardPostOptionalId {
42508
42502
  * API identifier of an object
42509
42503
  */
42510
42504
  id?: string;
42511
- attributes: JsonApiFilterContextOutAttributes;
42505
+ attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
42506
+ }
42507
+
42508
+ export declare interface JsonApiAnalyticalDashboardPostOptionalIdAttributes {
42509
+ title?: string;
42510
+ description?: string;
42511
+ tags?: Array<string>;
42512
+ areRelationsValid?: boolean;
42513
+ /**
42514
+ * Free-form JSON content. Maximum supported length is 250000 characters.
42515
+ */
42516
+ content: object;
42512
42517
  }
42513
42518
 
42514
42519
  export declare interface JsonApiAnalyticalDashboardPostOptionalIdDocument {
@@ -42570,7 +42575,7 @@ export declare interface JsonApiApiTokenOutDocument {
42570
42575
  export declare interface JsonApiApiTokenOutList {
42571
42576
  data: Array<JsonApiApiTokenOutWithLinks>;
42572
42577
  links?: ListLinks;
42573
- meta?: JsonApiAggregatedFactOutListMeta;
42578
+ meta?: JsonApiColorPaletteOutListMeta;
42574
42579
  }
42575
42580
 
42576
42581
  export declare type JsonApiApiTokenOutTypeEnum = "apiToken";
@@ -42644,7 +42649,7 @@ export declare interface JsonApiAttributeHierarchyOut {
42644
42649
  * API identifier of an object
42645
42650
  */
42646
42651
  id: string;
42647
- meta?: JsonApiDatasetOutMeta;
42652
+ meta?: JsonApiVisualizationObjectOutMeta;
42648
42653
  attributes?: JsonApiAttributeHierarchyOutAttributes;
42649
42654
  relationships?: JsonApiAttributeHierarchyOutRelationships;
42650
42655
  }
@@ -42682,7 +42687,7 @@ export declare type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWi
42682
42687
  export declare interface JsonApiAttributeHierarchyOutList {
42683
42688
  data: Array<JsonApiAttributeHierarchyOutWithLinks>;
42684
42689
  links?: ListLinks;
42685
- meta?: JsonApiAggregatedFactOutListMeta;
42690
+ meta?: JsonApiColorPaletteOutListMeta;
42686
42691
  /**
42687
42692
  * Included resources
42688
42693
  */
@@ -42692,7 +42697,7 @@ export declare interface JsonApiAttributeHierarchyOutList {
42692
42697
  export declare interface JsonApiAttributeHierarchyOutRelationships {
42693
42698
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
42694
42699
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
42695
- attributes?: JsonApiDatasetOutRelationshipsAttributes;
42700
+ attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
42696
42701
  }
42697
42702
 
42698
42703
  export declare type JsonApiAttributeHierarchyOutTypeEnum = "attributeHierarchy";
@@ -42706,7 +42711,7 @@ export declare interface JsonApiAttributeHierarchyOutWithLinks {
42706
42711
  * API identifier of an object
42707
42712
  */
42708
42713
  id: string;
42709
- meta?: JsonApiDatasetOutMeta;
42714
+ meta?: JsonApiVisualizationObjectOutMeta;
42710
42715
  attributes?: JsonApiAttributeHierarchyOutAttributes;
42711
42716
  relationships?: JsonApiAttributeHierarchyOutRelationships;
42712
42717
  links?: ObjectLinks;
@@ -42757,7 +42762,7 @@ export declare interface JsonApiAttributeOut {
42757
42762
  * API identifier of an object
42758
42763
  */
42759
42764
  id: string;
42760
- meta?: JsonApiDatasetOutMeta;
42765
+ meta?: JsonApiVisualizationObjectOutMeta;
42761
42766
  attributes?: JsonApiAttributeOutAttributes;
42762
42767
  relationships?: JsonApiAttributeOutRelationships;
42763
42768
  }
@@ -42802,7 +42807,7 @@ export declare type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWi
42802
42807
  export declare interface JsonApiAttributeOutList {
42803
42808
  data: Array<JsonApiAttributeOutWithLinks>;
42804
42809
  links?: ListLinks;
42805
- meta?: JsonApiAggregatedFactOutListMeta;
42810
+ meta?: JsonApiColorPaletteOutListMeta;
42806
42811
  /**
42807
42812
  * Included resources
42808
42813
  */
@@ -42810,7 +42815,7 @@ export declare interface JsonApiAttributeOutList {
42810
42815
  }
42811
42816
 
42812
42817
  export declare interface JsonApiAttributeOutRelationships {
42813
- dataset?: JsonApiFactOutRelationshipsDataset;
42818
+ dataset?: JsonApiAttributeOutRelationshipsDataset;
42814
42819
  defaultView?: JsonApiAttributeOutRelationshipsDefaultView;
42815
42820
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
42816
42821
  attributeHierarchies?: JsonApiAttributeOutRelationshipsAttributeHierarchies;
@@ -42823,6 +42828,10 @@ export declare interface JsonApiAttributeOutRelationshipsAttributeHierarchies {
42823
42828
  data: Array<JsonApiAttributeHierarchyLinkage>;
42824
42829
  }
42825
42830
 
42831
+ export declare interface JsonApiAttributeOutRelationshipsDataset {
42832
+ data: JsonApiDatasetLinkage | null;
42833
+ }
42834
+
42826
42835
  export declare interface JsonApiAttributeOutRelationshipsDefaultView {
42827
42836
  data: JsonApiLabelLinkage | null;
42828
42837
  }
@@ -42838,7 +42847,7 @@ export declare interface JsonApiAttributeOutWithLinks {
42838
42847
  * API identifier of an object
42839
42848
  */
42840
42849
  id: string;
42841
- meta?: JsonApiDatasetOutMeta;
42850
+ meta?: JsonApiVisualizationObjectOutMeta;
42842
42851
  attributes?: JsonApiAttributeOutAttributes;
42843
42852
  relationships?: JsonApiAttributeOutRelationships;
42844
42853
  links?: ObjectLinks;
@@ -42904,7 +42913,7 @@ export declare interface JsonApiAutomationInAttributes {
42904
42913
  * Additional details to be included in the automated message.
42905
42914
  */
42906
42915
  details?: object;
42907
- metadata?: JsonApiAutomationOutAttributesMetadata | null;
42916
+ metadata?: JsonApiAutomationInAttributesMetadata | null;
42908
42917
  /**
42909
42918
  * Current state of the automation.
42910
42919
  */
@@ -42913,33 +42922,125 @@ export declare interface JsonApiAutomationInAttributes {
42913
42922
  * Specify automation evaluation mode.
42914
42923
  */
42915
42924
  evaluationMode?: JsonApiAutomationInAttributesEvaluationModeEnum;
42916
- schedule?: JsonApiAutomationOutAttributesSchedule;
42917
- alert?: JsonApiAutomationOutAttributesAlert;
42918
- tabularExports?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
42919
- visualExports?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
42920
- imageExports?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
42921
- rawExports?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
42922
- slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
42923
- dashboardTabularExports?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
42925
+ schedule?: JsonApiAutomationInAttributesSchedule;
42926
+ alert?: JsonApiAutomationInAttributesAlert;
42927
+ tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
42928
+ visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
42929
+ imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
42930
+ rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
42931
+ slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
42932
+ dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
42924
42933
  /**
42925
42934
  * External recipients of the automation action results.
42926
42935
  */
42927
- externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
42936
+ externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
42937
+ }
42938
+
42939
+ export declare interface JsonApiAutomationInAttributesAlert {
42940
+ execution: AlertAfm;
42941
+ condition: AlertCondition;
42942
+ /**
42943
+ * 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.
42944
+ */
42945
+ trigger?: JsonApiAutomationInAttributesAlertTriggerEnum;
42946
+ }
42947
+
42948
+ export declare type JsonApiAutomationInAttributesAlertTriggerEnum = "ALWAYS" | "ONCE";
42949
+
42950
+ export declare interface JsonApiAutomationInAttributesDashboardTabularExportsInner {
42951
+ requestPayload: DashboardTabularExportRequestV2;
42928
42952
  }
42929
42953
 
42930
42954
  export declare type JsonApiAutomationInAttributesEvaluationModeEnum = "SHARED" | "PER_RECIPIENT";
42931
42955
 
42956
+ export declare interface JsonApiAutomationInAttributesExternalRecipientsInner {
42957
+ /**
42958
+ * E-mail address to send notifications from.
42959
+ */
42960
+ email: string;
42961
+ }
42962
+
42963
+ export declare interface JsonApiAutomationInAttributesImageExportsInner {
42964
+ requestPayload: ImageExportRequest;
42965
+ }
42966
+
42967
+ /**
42968
+ * Additional information for the automation.
42969
+ */
42970
+ export declare interface JsonApiAutomationInAttributesMetadata {
42971
+ [key: string]: any;
42972
+ widget?: string;
42973
+ visibleFilters?: Array<VisibleFilter>;
42974
+ }
42975
+
42976
+ export declare interface JsonApiAutomationInAttributesRawExportsInner {
42977
+ requestPayload: RawExportAutomationRequest;
42978
+ }
42979
+
42980
+ export declare interface JsonApiAutomationInAttributesSchedule {
42981
+ /**
42982
+ * 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.
42983
+ */
42984
+ cron: string;
42985
+ /**
42986
+ * Human-readable description of the cron expression.
42987
+ */
42988
+ cronDescription?: string;
42989
+ /**
42990
+ * Timezone in which the schedule is defined.
42991
+ */
42992
+ timezone: string;
42993
+ /**
42994
+ * Timestamp of the first scheduled action. If not provided default to the next scheduled time.
42995
+ */
42996
+ firstRun?: string;
42997
+ }
42998
+
42999
+ export declare interface JsonApiAutomationInAttributesSlidesExportsInner {
43000
+ requestPayload: SlidesExportRequest;
43001
+ }
43002
+
42932
43003
  export declare type JsonApiAutomationInAttributesStateEnum = "ACTIVE" | "PAUSED";
42933
43004
 
43005
+ export declare interface JsonApiAutomationInAttributesTabularExportsInner {
43006
+ requestPayload: TabularExportRequest;
43007
+ }
43008
+
43009
+ export declare interface JsonApiAutomationInAttributesVisualExportsInner {
43010
+ requestPayload: VisualExportRequest;
43011
+ }
43012
+
42934
43013
  export declare interface JsonApiAutomationInDocument {
42935
43014
  data: JsonApiAutomationIn;
42936
43015
  }
42937
43016
 
42938
43017
  export declare interface JsonApiAutomationInRelationships {
42939
- notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
42940
- analyticalDashboard?: JsonApiAutomationOutRelationshipsAnalyticalDashboard;
42941
- exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
42942
- recipients?: JsonApiAutomationOutRelationshipsRecipients;
43018
+ notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
43019
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
43020
+ exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
43021
+ recipients?: JsonApiAutomationInRelationshipsRecipients;
43022
+ }
43023
+
43024
+ export declare interface JsonApiAutomationInRelationshipsAnalyticalDashboard {
43025
+ data: JsonApiAnalyticalDashboardLinkage | null;
43026
+ }
43027
+
43028
+ export declare interface JsonApiAutomationInRelationshipsExportDefinitions {
43029
+ /**
43030
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
43031
+ */
43032
+ data: Array<JsonApiExportDefinitionLinkage>;
43033
+ }
43034
+
43035
+ export declare interface JsonApiAutomationInRelationshipsNotificationChannel {
43036
+ data: JsonApiNotificationChannelLinkage | null;
43037
+ }
43038
+
43039
+ export declare interface JsonApiAutomationInRelationshipsRecipients {
43040
+ /**
43041
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
43042
+ */
43043
+ data: Array<JsonApiUserLinkage>;
42943
43044
  }
42944
43045
 
42945
43046
  export declare type JsonApiAutomationInTypeEnum = "automation";
@@ -42966,7 +43067,7 @@ export declare interface JsonApiAutomationOut {
42966
43067
  * API identifier of an object
42967
43068
  */
42968
43069
  id: string;
42969
- meta?: JsonApiDatasetOutMeta;
43070
+ meta?: JsonApiVisualizationObjectOutMeta;
42970
43071
  attributes?: JsonApiAutomationOutAttributes;
42971
43072
  relationships?: JsonApiAutomationOutRelationships;
42972
43073
  }
@@ -42980,7 +43081,7 @@ export declare interface JsonApiAutomationOutAttributes {
42980
43081
  * Additional details to be included in the automated message.
42981
43082
  */
42982
43083
  details?: object;
42983
- metadata?: JsonApiAutomationOutAttributesMetadata | null;
43084
+ metadata?: JsonApiAutomationInAttributesMetadata | null;
42984
43085
  /**
42985
43086
  * Current state of the automation.
42986
43087
  */
@@ -42989,96 +43090,26 @@ export declare interface JsonApiAutomationOutAttributes {
42989
43090
  * Specify automation evaluation mode.
42990
43091
  */
42991
43092
  evaluationMode?: JsonApiAutomationOutAttributesEvaluationModeEnum;
42992
- schedule?: JsonApiAutomationOutAttributesSchedule;
42993
- alert?: JsonApiAutomationOutAttributesAlert;
42994
- tabularExports?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
42995
- visualExports?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
42996
- imageExports?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
42997
- rawExports?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
42998
- slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
42999
- dashboardTabularExports?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
43093
+ schedule?: JsonApiAutomationInAttributesSchedule;
43094
+ alert?: JsonApiAutomationInAttributesAlert;
43095
+ tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
43096
+ visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
43097
+ imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
43098
+ rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
43099
+ slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
43100
+ dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
43000
43101
  /**
43001
43102
  * External recipients of the automation action results.
43002
43103
  */
43003
- externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
43104
+ externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
43004
43105
  createdAt?: string;
43005
43106
  modifiedAt?: string;
43006
43107
  }
43007
43108
 
43008
- export declare interface JsonApiAutomationOutAttributesAlert {
43009
- execution: AlertAfm;
43010
- condition: AlertCondition;
43011
- /**
43012
- * 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.
43013
- */
43014
- trigger?: JsonApiAutomationOutAttributesAlertTriggerEnum;
43015
- }
43016
-
43017
- export declare type JsonApiAutomationOutAttributesAlertTriggerEnum = "ALWAYS" | "ONCE";
43018
-
43019
- export declare interface JsonApiAutomationOutAttributesDashboardTabularExportsInner {
43020
- requestPayload: DashboardTabularExportRequestV2;
43021
- }
43022
-
43023
43109
  export declare type JsonApiAutomationOutAttributesEvaluationModeEnum = "SHARED" | "PER_RECIPIENT";
43024
43110
 
43025
- export declare interface JsonApiAutomationOutAttributesExternalRecipientsInner {
43026
- /**
43027
- * E-mail address to send notifications from.
43028
- */
43029
- email: string;
43030
- }
43031
-
43032
- export declare interface JsonApiAutomationOutAttributesImageExportsInner {
43033
- requestPayload: ImageExportRequest;
43034
- }
43035
-
43036
- /**
43037
- * Additional information for the automation.
43038
- */
43039
- export declare interface JsonApiAutomationOutAttributesMetadata {
43040
- [key: string]: any;
43041
- widget?: string;
43042
- visibleFilters?: Array<VisibleFilter>;
43043
- }
43044
-
43045
- export declare interface JsonApiAutomationOutAttributesRawExportsInner {
43046
- requestPayload: RawExportAutomationRequest;
43047
- }
43048
-
43049
- export declare interface JsonApiAutomationOutAttributesSchedule {
43050
- /**
43051
- * 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.
43052
- */
43053
- cron: string;
43054
- /**
43055
- * Human-readable description of the cron expression.
43056
- */
43057
- cronDescription?: string;
43058
- /**
43059
- * Timezone in which the schedule is defined.
43060
- */
43061
- timezone: string;
43062
- /**
43063
- * Timestamp of the first scheduled action. If not provided default to the next scheduled time.
43064
- */
43065
- firstRun?: string;
43066
- }
43067
-
43068
- export declare interface JsonApiAutomationOutAttributesSlidesExportsInner {
43069
- requestPayload: SlidesExportRequest;
43070
- }
43071
-
43072
43111
  export declare type JsonApiAutomationOutAttributesStateEnum = "ACTIVE" | "PAUSED";
43073
43112
 
43074
- export declare interface JsonApiAutomationOutAttributesTabularExportsInner {
43075
- requestPayload: TabularExportRequest;
43076
- }
43077
-
43078
- export declare interface JsonApiAutomationOutAttributesVisualExportsInner {
43079
- requestPayload: VisualExportRequest;
43080
- }
43081
-
43082
43113
  export declare interface JsonApiAutomationOutDocument {
43083
43114
  data: JsonApiAutomationOut;
43084
43115
  links?: ObjectLinks;
@@ -43099,7 +43130,7 @@ export declare type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOut
43099
43130
  export declare interface JsonApiAutomationOutList {
43100
43131
  data: Array<JsonApiAutomationOutWithLinks>;
43101
43132
  links?: ListLinks;
43102
- meta?: JsonApiAggregatedFactOutListMeta;
43133
+ meta?: JsonApiColorPaletteOutListMeta;
43103
43134
  /**
43104
43135
  * Included resources
43105
43136
  */
@@ -43107,19 +43138,15 @@ export declare interface JsonApiAutomationOutList {
43107
43138
  }
43108
43139
 
43109
43140
  export declare interface JsonApiAutomationOutRelationships {
43110
- notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
43111
- analyticalDashboard?: JsonApiAutomationOutRelationshipsAnalyticalDashboard;
43141
+ notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
43142
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
43112
43143
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
43113
43144
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
43114
- exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
43115
- recipients?: JsonApiAutomationOutRelationshipsRecipients;
43145
+ exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
43146
+ recipients?: JsonApiAutomationInRelationshipsRecipients;
43116
43147
  automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
43117
43148
  }
43118
43149
 
43119
- export declare interface JsonApiAutomationOutRelationshipsAnalyticalDashboard {
43120
- data: JsonApiAnalyticalDashboardLinkage | null;
43121
- }
43122
-
43123
43150
  export declare interface JsonApiAutomationOutRelationshipsAutomationResults {
43124
43151
  /**
43125
43152
  * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
@@ -43127,24 +43154,6 @@ export declare interface JsonApiAutomationOutRelationshipsAutomationResults {
43127
43154
  data: Array<JsonApiAutomationResultLinkage>;
43128
43155
  }
43129
43156
 
43130
- export declare interface JsonApiAutomationOutRelationshipsExportDefinitions {
43131
- /**
43132
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
43133
- */
43134
- data: Array<JsonApiExportDefinitionLinkage>;
43135
- }
43136
-
43137
- export declare interface JsonApiAutomationOutRelationshipsNotificationChannel {
43138
- data: JsonApiNotificationChannelLinkage | null;
43139
- }
43140
-
43141
- export declare interface JsonApiAutomationOutRelationshipsRecipients {
43142
- /**
43143
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
43144
- */
43145
- data: Array<JsonApiUserLinkage>;
43146
- }
43147
-
43148
43157
  export declare type JsonApiAutomationOutTypeEnum = "automation";
43149
43158
 
43150
43159
  export declare interface JsonApiAutomationOutWithLinks {
@@ -43156,7 +43165,7 @@ export declare interface JsonApiAutomationOutWithLinks {
43156
43165
  * API identifier of an object
43157
43166
  */
43158
43167
  id: string;
43159
- meta?: JsonApiDatasetOutMeta;
43168
+ meta?: JsonApiVisualizationObjectOutMeta;
43160
43169
  attributes?: JsonApiAutomationOutAttributes;
43161
43170
  relationships?: JsonApiAutomationOutRelationships;
43162
43171
  links?: ObjectLinks;
@@ -43233,7 +43242,7 @@ export declare type JsonApiAutomationResultOutAttributesStatusEnum = "SUCCESS" |
43233
43242
  export declare interface JsonApiAutomationResultOutList {
43234
43243
  data: Array<JsonApiAutomationResultOutWithLinks>;
43235
43244
  links?: ListLinks;
43236
- meta?: JsonApiAggregatedFactOutListMeta;
43245
+ meta?: JsonApiColorPaletteOutListMeta;
43237
43246
  /**
43238
43247
  * Included resources
43239
43248
  */
@@ -43241,11 +43250,7 @@ export declare interface JsonApiAutomationResultOutList {
43241
43250
  }
43242
43251
 
43243
43252
  export declare interface JsonApiAutomationResultOutRelationships {
43244
- automation?: JsonApiAutomationResultOutRelationshipsAutomation;
43245
- }
43246
-
43247
- export declare interface JsonApiAutomationResultOutRelationshipsAutomation {
43248
- data: JsonApiAutomationLinkage | null;
43253
+ automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
43249
43254
  }
43250
43255
 
43251
43256
  export declare type JsonApiAutomationResultOutTypeEnum = "automationResult";
@@ -43278,15 +43283,7 @@ export declare interface JsonApiColorPaletteIn {
43278
43283
  * API identifier of an object
43279
43284
  */
43280
43285
  id: string;
43281
- attributes: JsonApiColorPaletteInAttributes;
43282
- }
43283
-
43284
- export declare interface JsonApiColorPaletteInAttributes {
43285
- name: string;
43286
- /**
43287
- * Free-form JSON content. Maximum supported length is 15000 characters.
43288
- */
43289
- content: object;
43286
+ attributes: JsonApiColorPaletteOutAttributes;
43290
43287
  }
43291
43288
 
43292
43289
  export declare interface JsonApiColorPaletteInDocument {
@@ -43307,7 +43304,15 @@ export declare interface JsonApiColorPaletteOut {
43307
43304
  * API identifier of an object
43308
43305
  */
43309
43306
  id: string;
43310
- attributes: JsonApiColorPaletteInAttributes;
43307
+ attributes: JsonApiColorPaletteOutAttributes;
43308
+ }
43309
+
43310
+ export declare interface JsonApiColorPaletteOutAttributes {
43311
+ name: string;
43312
+ /**
43313
+ * Free-form JSON content. Maximum supported length is 15000 characters.
43314
+ */
43315
+ content: object;
43311
43316
  }
43312
43317
 
43313
43318
  export declare interface JsonApiColorPaletteOutDocument {
@@ -43321,7 +43326,11 @@ export declare interface JsonApiColorPaletteOutDocument {
43321
43326
  export declare interface JsonApiColorPaletteOutList {
43322
43327
  data: Array<JsonApiColorPaletteOutWithLinks>;
43323
43328
  links?: ListLinks;
43324
- meta?: JsonApiAggregatedFactOutListMeta;
43329
+ meta?: JsonApiColorPaletteOutListMeta;
43330
+ }
43331
+
43332
+ export declare interface JsonApiColorPaletteOutListMeta {
43333
+ page?: PageMetadata;
43325
43334
  }
43326
43335
 
43327
43336
  export declare type JsonApiColorPaletteOutTypeEnum = "colorPalette";
@@ -43335,7 +43344,7 @@ export declare interface JsonApiColorPaletteOutWithLinks {
43335
43344
  * API identifier of an object
43336
43345
  */
43337
43346
  id: string;
43338
- attributes: JsonApiColorPaletteInAttributes;
43347
+ attributes: JsonApiColorPaletteOutAttributes;
43339
43348
  links?: ObjectLinks;
43340
43349
  }
43341
43350
 
@@ -43454,11 +43463,7 @@ export declare interface JsonApiCspDirectiveIn {
43454
43463
  * API identifier of an object
43455
43464
  */
43456
43465
  id: string;
43457
- attributes: JsonApiCspDirectiveInAttributes;
43458
- }
43459
-
43460
- export declare interface JsonApiCspDirectiveInAttributes {
43461
- sources: Array<string>;
43466
+ attributes: JsonApiCspDirectiveOutAttributes;
43462
43467
  }
43463
43468
 
43464
43469
  export declare interface JsonApiCspDirectiveInDocument {
@@ -43479,7 +43484,11 @@ export declare interface JsonApiCspDirectiveOut {
43479
43484
  * API identifier of an object
43480
43485
  */
43481
43486
  id: string;
43482
- attributes: JsonApiCspDirectiveInAttributes;
43487
+ attributes: JsonApiCspDirectiveOutAttributes;
43488
+ }
43489
+
43490
+ export declare interface JsonApiCspDirectiveOutAttributes {
43491
+ sources: Array<string>;
43483
43492
  }
43484
43493
 
43485
43494
  export declare interface JsonApiCspDirectiveOutDocument {
@@ -43493,7 +43502,7 @@ export declare interface JsonApiCspDirectiveOutDocument {
43493
43502
  export declare interface JsonApiCspDirectiveOutList {
43494
43503
  data: Array<JsonApiCspDirectiveOutWithLinks>;
43495
43504
  links?: ListLinks;
43496
- meta?: JsonApiAggregatedFactOutListMeta;
43505
+ meta?: JsonApiColorPaletteOutListMeta;
43497
43506
  }
43498
43507
 
43499
43508
  export declare type JsonApiCspDirectiveOutTypeEnum = "cspDirective";
@@ -43507,7 +43516,7 @@ export declare interface JsonApiCspDirectiveOutWithLinks {
43507
43516
  * API identifier of an object
43508
43517
  */
43509
43518
  id: string;
43510
- attributes: JsonApiCspDirectiveInAttributes;
43519
+ attributes: JsonApiCspDirectiveOutAttributes;
43511
43520
  links?: ObjectLinks;
43512
43521
  }
43513
43522
 
@@ -43550,7 +43559,7 @@ export declare interface JsonApiCustomApplicationSettingIn {
43550
43559
  * API identifier of an object
43551
43560
  */
43552
43561
  id: string;
43553
- attributes: JsonApiCustomApplicationSettingOutAttributes;
43562
+ attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
43554
43563
  }
43555
43564
 
43556
43565
  export declare interface JsonApiCustomApplicationSettingInDocument {
@@ -43571,16 +43580,8 @@ export declare interface JsonApiCustomApplicationSettingOut {
43571
43580
  * API identifier of an object
43572
43581
  */
43573
43582
  id: string;
43574
- meta?: JsonApiDatasetOutMeta;
43575
- attributes: JsonApiCustomApplicationSettingOutAttributes;
43576
- }
43577
-
43578
- export declare interface JsonApiCustomApplicationSettingOutAttributes {
43579
- applicationName: string;
43580
- /**
43581
- * Free-form JSON content. Maximum supported length is 15000 characters.
43582
- */
43583
- content: object;
43583
+ meta?: JsonApiVisualizationObjectOutMeta;
43584
+ attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
43584
43585
  }
43585
43586
 
43586
43587
  export declare interface JsonApiCustomApplicationSettingOutDocument {
@@ -43594,7 +43595,7 @@ export declare interface JsonApiCustomApplicationSettingOutDocument {
43594
43595
  export declare interface JsonApiCustomApplicationSettingOutList {
43595
43596
  data: Array<JsonApiCustomApplicationSettingOutWithLinks>;
43596
43597
  links?: ListLinks;
43597
- meta?: JsonApiAggregatedFactOutListMeta;
43598
+ meta?: JsonApiColorPaletteOutListMeta;
43598
43599
  }
43599
43600
 
43600
43601
  export declare type JsonApiCustomApplicationSettingOutTypeEnum = "customApplicationSetting";
@@ -43608,8 +43609,8 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
43608
43609
  * API identifier of an object
43609
43610
  */
43610
43611
  id: string;
43611
- meta?: JsonApiDatasetOutMeta;
43612
- attributes: JsonApiCustomApplicationSettingOutAttributes;
43612
+ meta?: JsonApiVisualizationObjectOutMeta;
43613
+ attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
43613
43614
  links?: ObjectLinks;
43614
43615
  }
43615
43616
 
@@ -43656,7 +43657,15 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
43656
43657
  * API identifier of an object
43657
43658
  */
43658
43659
  id?: string;
43659
- attributes: JsonApiCustomApplicationSettingOutAttributes;
43660
+ attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
43661
+ }
43662
+
43663
+ export declare interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
43664
+ applicationName: string;
43665
+ /**
43666
+ * Free-form JSON content. Maximum supported length is 15000 characters.
43667
+ */
43668
+ content: object;
43660
43669
  }
43661
43670
 
43662
43671
  export declare interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
@@ -43677,18 +43686,7 @@ export declare interface JsonApiDashboardPluginIn {
43677
43686
  * API identifier of an object
43678
43687
  */
43679
43688
  id: string;
43680
- attributes?: JsonApiDashboardPluginInAttributes;
43681
- }
43682
-
43683
- export declare interface JsonApiDashboardPluginInAttributes {
43684
- title?: string;
43685
- description?: string;
43686
- tags?: Array<string>;
43687
- areRelationsValid?: boolean;
43688
- /**
43689
- * Free-form JSON content. Maximum supported length is 250000 characters.
43690
- */
43691
- content?: object;
43689
+ attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
43692
43690
  }
43693
43691
 
43694
43692
  export declare interface JsonApiDashboardPluginInDocument {
@@ -43719,7 +43717,7 @@ export declare interface JsonApiDashboardPluginOut {
43719
43717
  * API identifier of an object
43720
43718
  */
43721
43719
  id: string;
43722
- meta?: JsonApiDatasetOutMeta;
43720
+ meta?: JsonApiVisualizationObjectOutMeta;
43723
43721
  attributes?: JsonApiDashboardPluginOutAttributes;
43724
43722
  relationships?: JsonApiDashboardPluginOutRelationships;
43725
43723
  }
@@ -43752,7 +43750,7 @@ export declare interface JsonApiDashboardPluginOutDocument {
43752
43750
  export declare interface JsonApiDashboardPluginOutList {
43753
43751
  data: Array<JsonApiDashboardPluginOutWithLinks>;
43754
43752
  links?: ListLinks;
43755
- meta?: JsonApiAggregatedFactOutListMeta;
43753
+ meta?: JsonApiColorPaletteOutListMeta;
43756
43754
  /**
43757
43755
  * Included resources
43758
43756
  */
@@ -43775,7 +43773,7 @@ export declare interface JsonApiDashboardPluginOutWithLinks {
43775
43773
  * API identifier of an object
43776
43774
  */
43777
43775
  id: string;
43778
- meta?: JsonApiDatasetOutMeta;
43776
+ meta?: JsonApiVisualizationObjectOutMeta;
43779
43777
  attributes?: JsonApiDashboardPluginOutAttributes;
43780
43778
  relationships?: JsonApiDashboardPluginOutRelationships;
43781
43779
  links?: ObjectLinks;
@@ -43795,7 +43793,7 @@ export declare interface JsonApiDashboardPluginPatch {
43795
43793
  * API identifier of an object
43796
43794
  */
43797
43795
  id: string;
43798
- attributes?: JsonApiDashboardPluginInAttributes;
43796
+ attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
43799
43797
  }
43800
43798
 
43801
43799
  export declare interface JsonApiDashboardPluginPatchDocument {
@@ -43816,7 +43814,18 @@ export declare interface JsonApiDashboardPluginPostOptionalId {
43816
43814
  * API identifier of an object
43817
43815
  */
43818
43816
  id?: string;
43819
- attributes?: JsonApiDashboardPluginInAttributes;
43817
+ attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
43818
+ }
43819
+
43820
+ export declare interface JsonApiDashboardPluginPostOptionalIdAttributes {
43821
+ title?: string;
43822
+ description?: string;
43823
+ tags?: Array<string>;
43824
+ areRelationsValid?: boolean;
43825
+ /**
43826
+ * Free-form JSON content. Maximum supported length is 250000 characters.
43827
+ */
43828
+ content?: object;
43820
43829
  }
43821
43830
 
43822
43831
  export declare interface JsonApiDashboardPluginPostOptionalIdDocument {
@@ -43847,7 +43856,7 @@ export declare interface JsonApiDatasetOut {
43847
43856
  * API identifier of an object
43848
43857
  */
43849
43858
  id: string;
43850
- meta?: JsonApiDatasetOutMeta;
43859
+ meta?: JsonApiVisualizationObjectOutMeta;
43851
43860
  attributes: JsonApiDatasetOutAttributes;
43852
43861
  relationships?: JsonApiDatasetOutRelationships;
43853
43862
  }
@@ -43933,35 +43942,18 @@ export declare type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLink
43933
43942
  export declare interface JsonApiDatasetOutList {
43934
43943
  data: Array<JsonApiDatasetOutWithLinks>;
43935
43944
  links?: ListLinks;
43936
- meta?: JsonApiAggregatedFactOutListMeta;
43945
+ meta?: JsonApiColorPaletteOutListMeta;
43937
43946
  /**
43938
43947
  * Included resources
43939
43948
  */
43940
43949
  included?: Array<JsonApiDatasetOutIncludes>;
43941
43950
  }
43942
43951
 
43943
- export declare interface JsonApiDatasetOutMeta {
43944
- origin?: JsonApiDatasetOutMetaOrigin;
43945
- }
43946
-
43947
- export declare interface JsonApiDatasetOutMetaOrigin {
43948
- /**
43949
- * defines type of the origin of the entity
43950
- */
43951
- originType: JsonApiDatasetOutMetaOriginOriginTypeEnum;
43952
- /**
43953
- * defines id of the workspace where the entity comes from
43954
- */
43955
- originId: string;
43956
- }
43957
-
43958
- export declare type JsonApiDatasetOutMetaOriginOriginTypeEnum = "NATIVE" | "PARENT";
43959
-
43960
43952
  export declare interface JsonApiDatasetOutRelationships {
43961
- attributes?: JsonApiDatasetOutRelationshipsAttributes;
43962
- facts?: JsonApiDatasetOutRelationshipsFacts;
43953
+ attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
43954
+ facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
43963
43955
  aggregatedFacts?: JsonApiDatasetOutRelationshipsAggregatedFacts;
43964
- references?: JsonApiDatasetOutRelationshipsReferences;
43956
+ references?: JsonApiVisualizationObjectOutRelationshipsDatasets;
43965
43957
  workspaceDataFilters?: JsonApiDatasetOutRelationshipsWorkspaceDataFilters;
43966
43958
  }
43967
43959
 
@@ -43972,27 +43964,6 @@ export declare interface JsonApiDatasetOutRelationshipsAggregatedFacts {
43972
43964
  data: Array<JsonApiAggregatedFactLinkage>;
43973
43965
  }
43974
43966
 
43975
- export declare interface JsonApiDatasetOutRelationshipsAttributes {
43976
- /**
43977
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
43978
- */
43979
- data: Array<JsonApiAttributeLinkage>;
43980
- }
43981
-
43982
- export declare interface JsonApiDatasetOutRelationshipsFacts {
43983
- /**
43984
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
43985
- */
43986
- data: Array<JsonApiFactLinkage>;
43987
- }
43988
-
43989
- export declare interface JsonApiDatasetOutRelationshipsReferences {
43990
- /**
43991
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
43992
- */
43993
- data: Array<JsonApiDatasetLinkage>;
43994
- }
43995
-
43996
43967
  export declare interface JsonApiDatasetOutRelationshipsWorkspaceDataFilters {
43997
43968
  /**
43998
43969
  * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
@@ -44011,7 +43982,7 @@ export declare interface JsonApiDatasetOutWithLinks {
44011
43982
  * API identifier of an object
44012
43983
  */
44013
43984
  id: string;
44014
- meta?: JsonApiDatasetOutMeta;
43985
+ meta?: JsonApiVisualizationObjectOutMeta;
44015
43986
  attributes: JsonApiDatasetOutAttributes;
44016
43987
  relationships?: JsonApiDatasetOutRelationships;
44017
43988
  links?: ObjectLinks;
@@ -44058,7 +44029,7 @@ export declare interface JsonApiDataSourceIdentifierOut {
44058
44029
  * API identifier of an object
44059
44030
  */
44060
44031
  id: string;
44061
- meta?: JsonApiDataSourceOutMeta;
44032
+ meta?: JsonApiDataSourceIdentifierOutMeta;
44062
44033
  attributes: JsonApiDataSourceIdentifierOutAttributes;
44063
44034
  }
44064
44035
 
@@ -44081,9 +44052,18 @@ export declare interface JsonApiDataSourceIdentifierOutDocument {
44081
44052
  export declare interface JsonApiDataSourceIdentifierOutList {
44082
44053
  data: Array<JsonApiDataSourceIdentifierOutWithLinks>;
44083
44054
  links?: ListLinks;
44084
- meta?: JsonApiAggregatedFactOutListMeta;
44055
+ meta?: JsonApiColorPaletteOutListMeta;
44085
44056
  }
44086
44057
 
44058
+ export declare interface JsonApiDataSourceIdentifierOutMeta {
44059
+ /**
44060
+ * List of valid permissions for a logged-in user.
44061
+ */
44062
+ permissions?: Array<JsonApiDataSourceIdentifierOutMetaPermissionsEnum>;
44063
+ }
44064
+
44065
+ export declare type JsonApiDataSourceIdentifierOutMetaPermissionsEnum = "MANAGE" | "USE";
44066
+
44087
44067
  export declare type JsonApiDataSourceIdentifierOutTypeEnum = "dataSourceIdentifier";
44088
44068
 
44089
44069
  export declare interface JsonApiDataSourceIdentifierOutWithLinks {
@@ -44095,7 +44075,7 @@ export declare interface JsonApiDataSourceIdentifierOutWithLinks {
44095
44075
  * API identifier of an object
44096
44076
  */
44097
44077
  id: string;
44098
- meta?: JsonApiDataSourceOutMeta;
44078
+ meta?: JsonApiDataSourceIdentifierOutMeta;
44099
44079
  attributes: JsonApiDataSourceIdentifierOutAttributes;
44100
44080
  links?: ObjectLinks;
44101
44081
  }
@@ -44165,7 +44145,7 @@ export declare interface JsonApiDataSourceInAttributes {
44165
44145
  /**
44166
44146
  * Additional parameters to be used when connecting to the database providing the data for the data source.
44167
44147
  */
44168
- parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
44148
+ parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
44169
44149
  /**
44170
44150
  * Determines how the results coming from a particular datasource should be cached.
44171
44151
  */
@@ -44174,11 +44154,6 @@ export declare interface JsonApiDataSourceInAttributes {
44174
44154
 
44175
44155
  export declare type JsonApiDataSourceInAttributesCacheStrategyEnum = "ALWAYS" | "NEVER";
44176
44156
 
44177
- export declare interface JsonApiDataSourceInAttributesParametersInner {
44178
- name: string;
44179
- value: string;
44180
- }
44181
-
44182
44157
  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";
44183
44158
 
44184
44159
  export declare interface JsonApiDataSourceInDocument {
@@ -44199,7 +44174,7 @@ export declare interface JsonApiDataSourceOut {
44199
44174
  * API identifier of an object
44200
44175
  */
44201
44176
  id: string;
44202
- meta?: JsonApiDataSourceOutMeta;
44177
+ meta?: JsonApiDataSourceIdentifierOutMeta;
44203
44178
  attributes: JsonApiDataSourceOutAttributes;
44204
44179
  }
44205
44180
 
@@ -44231,11 +44206,11 @@ export declare interface JsonApiDataSourceOutAttributes {
44231
44206
  /**
44232
44207
  * Additional parameters to be used when connecting to the database providing the data for the data source.
44233
44208
  */
44234
- parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
44209
+ parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
44235
44210
  /**
44236
44211
  * Decoded parameters to be used when connecting to the database providing the data for the data source.
44237
44212
  */
44238
- decodedParameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
44213
+ decodedParameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
44239
44214
  /**
44240
44215
  * Determines how the results coming from a particular datasource should be cached.
44241
44216
  */
@@ -44250,6 +44225,11 @@ export declare type JsonApiDataSourceOutAttributesAuthenticationTypeEnum = "USER
44250
44225
 
44251
44226
  export declare type JsonApiDataSourceOutAttributesCacheStrategyEnum = "ALWAYS" | "NEVER";
44252
44227
 
44228
+ export declare interface JsonApiDataSourceOutAttributesParametersInner {
44229
+ name: string;
44230
+ value: string;
44231
+ }
44232
+
44253
44233
  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";
44254
44234
 
44255
44235
  export declare interface JsonApiDataSourceOutDocument {
@@ -44263,18 +44243,9 @@ export declare interface JsonApiDataSourceOutDocument {
44263
44243
  export declare interface JsonApiDataSourceOutList {
44264
44244
  data: Array<JsonApiDataSourceOutWithLinks>;
44265
44245
  links?: ListLinks;
44266
- meta?: JsonApiAggregatedFactOutListMeta;
44246
+ meta?: JsonApiColorPaletteOutListMeta;
44267
44247
  }
44268
44248
 
44269
- export declare interface JsonApiDataSourceOutMeta {
44270
- /**
44271
- * List of valid permissions for a logged-in user.
44272
- */
44273
- permissions?: Array<JsonApiDataSourceOutMetaPermissionsEnum>;
44274
- }
44275
-
44276
- export declare type JsonApiDataSourceOutMetaPermissionsEnum = "MANAGE" | "USE";
44277
-
44278
44249
  export declare type JsonApiDataSourceOutTypeEnum = "dataSource";
44279
44250
 
44280
44251
  export declare interface JsonApiDataSourceOutWithLinks {
@@ -44286,7 +44257,7 @@ export declare interface JsonApiDataSourceOutWithLinks {
44286
44257
  * API identifier of an object
44287
44258
  */
44288
44259
  id: string;
44289
- meta?: JsonApiDataSourceOutMeta;
44260
+ meta?: JsonApiDataSourceIdentifierOutMeta;
44290
44261
  attributes: JsonApiDataSourceOutAttributes;
44291
44262
  links?: ObjectLinks;
44292
44263
  }
@@ -44356,7 +44327,7 @@ export declare interface JsonApiDataSourcePatchAttributes {
44356
44327
  /**
44357
44328
  * Additional parameters to be used when connecting to the database providing the data for the data source.
44358
44329
  */
44359
- parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
44330
+ parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
44360
44331
  /**
44361
44332
  * Determines how the results coming from a particular datasource should be cached.
44362
44333
  */
@@ -44404,7 +44375,7 @@ export declare interface JsonApiEntitlementOutDocument {
44404
44375
  export declare interface JsonApiEntitlementOutList {
44405
44376
  data: Array<JsonApiEntitlementOutWithLinks>;
44406
44377
  links?: ListLinks;
44407
- meta?: JsonApiAggregatedFactOutListMeta;
44378
+ meta?: JsonApiColorPaletteOutListMeta;
44408
44379
  }
44409
44380
 
44410
44381
  export declare type JsonApiEntitlementOutTypeEnum = "entitlement";
@@ -44436,27 +44407,14 @@ export declare interface JsonApiExportDefinitionIn {
44436
44407
  * API identifier of an object
44437
44408
  */
44438
44409
  id: string;
44439
- attributes?: JsonApiExportDefinitionInAttributes;
44440
- relationships?: JsonApiExportDefinitionInRelationships;
44441
- }
44442
-
44443
- export declare interface JsonApiExportDefinitionInAttributes {
44444
- title?: string;
44445
- description?: string;
44446
- tags?: Array<string>;
44447
- requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
44448
- areRelationsValid?: boolean;
44410
+ attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
44411
+ relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
44449
44412
  }
44450
44413
 
44451
44414
  export declare interface JsonApiExportDefinitionInDocument {
44452
44415
  data: JsonApiExportDefinitionIn;
44453
44416
  }
44454
44417
 
44455
- export declare interface JsonApiExportDefinitionInRelationships {
44456
- visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
44457
- analyticalDashboard?: JsonApiAutomationOutRelationshipsAnalyticalDashboard;
44458
- }
44459
-
44460
44418
  export declare type JsonApiExportDefinitionInTypeEnum = "exportDefinition";
44461
44419
 
44462
44420
  /**
@@ -44481,7 +44439,7 @@ export declare interface JsonApiExportDefinitionOut {
44481
44439
  * API identifier of an object
44482
44440
  */
44483
44441
  id: string;
44484
- meta?: JsonApiDatasetOutMeta;
44442
+ meta?: JsonApiVisualizationObjectOutMeta;
44485
44443
  attributes?: JsonApiExportDefinitionOutAttributes;
44486
44444
  relationships?: JsonApiExportDefinitionOutRelationships;
44487
44445
  }
@@ -44522,7 +44480,7 @@ export declare type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashbo
44522
44480
  export declare interface JsonApiExportDefinitionOutList {
44523
44481
  data: Array<JsonApiExportDefinitionOutWithLinks>;
44524
44482
  links?: ListLinks;
44525
- meta?: JsonApiAggregatedFactOutListMeta;
44483
+ meta?: JsonApiColorPaletteOutListMeta;
44526
44484
  /**
44527
44485
  * Included resources
44528
44486
  */
@@ -44531,12 +44489,16 @@ export declare interface JsonApiExportDefinitionOutList {
44531
44489
 
44532
44490
  export declare interface JsonApiExportDefinitionOutRelationships {
44533
44491
  visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
44534
- analyticalDashboard?: JsonApiAutomationOutRelationshipsAnalyticalDashboard;
44535
- automation?: JsonApiAutomationResultOutRelationshipsAutomation;
44492
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
44493
+ automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
44536
44494
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
44537
44495
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
44538
44496
  }
44539
44497
 
44498
+ export declare interface JsonApiExportDefinitionOutRelationshipsAutomation {
44499
+ data: JsonApiAutomationLinkage | null;
44500
+ }
44501
+
44540
44502
  export declare interface JsonApiExportDefinitionOutRelationshipsVisualizationObject {
44541
44503
  data: JsonApiVisualizationObjectLinkage | null;
44542
44504
  }
@@ -44552,7 +44514,7 @@ export declare interface JsonApiExportDefinitionOutWithLinks {
44552
44514
  * API identifier of an object
44553
44515
  */
44554
44516
  id: string;
44555
- meta?: JsonApiDatasetOutMeta;
44517
+ meta?: JsonApiVisualizationObjectOutMeta;
44556
44518
  attributes?: JsonApiExportDefinitionOutAttributes;
44557
44519
  relationships?: JsonApiExportDefinitionOutRelationships;
44558
44520
  links?: ObjectLinks;
@@ -44572,8 +44534,8 @@ export declare interface JsonApiExportDefinitionPatch {
44572
44534
  * API identifier of an object
44573
44535
  */
44574
44536
  id: string;
44575
- attributes?: JsonApiExportDefinitionInAttributes;
44576
- relationships?: JsonApiExportDefinitionInRelationships;
44537
+ attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
44538
+ relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
44577
44539
  }
44578
44540
 
44579
44541
  export declare interface JsonApiExportDefinitionPatchDocument {
@@ -44594,14 +44556,27 @@ export declare interface JsonApiExportDefinitionPostOptionalId {
44594
44556
  * API identifier of an object
44595
44557
  */
44596
44558
  id?: string;
44597
- attributes?: JsonApiExportDefinitionInAttributes;
44598
- relationships?: JsonApiExportDefinitionInRelationships;
44559
+ attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
44560
+ relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
44561
+ }
44562
+
44563
+ export declare interface JsonApiExportDefinitionPostOptionalIdAttributes {
44564
+ title?: string;
44565
+ description?: string;
44566
+ tags?: Array<string>;
44567
+ requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
44568
+ areRelationsValid?: boolean;
44599
44569
  }
44600
44570
 
44601
44571
  export declare interface JsonApiExportDefinitionPostOptionalIdDocument {
44602
44572
  data: JsonApiExportDefinitionPostOptionalId;
44603
44573
  }
44604
44574
 
44575
+ export declare interface JsonApiExportDefinitionPostOptionalIdRelationships {
44576
+ visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
44577
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
44578
+ }
44579
+
44605
44580
  export declare type JsonApiExportDefinitionPostOptionalIdTypeEnum = "exportDefinition";
44606
44581
 
44607
44582
  /**
@@ -44616,7 +44591,7 @@ export declare interface JsonApiExportTemplateIn {
44616
44591
  * API identifier of an object
44617
44592
  */
44618
44593
  id: string;
44619
- attributes: JsonApiExportTemplatePostOptionalIdAttributes;
44594
+ attributes: JsonApiExportTemplateOutAttributes;
44620
44595
  }
44621
44596
 
44622
44597
  export declare interface JsonApiExportTemplateInDocument {
@@ -44637,9 +44612,47 @@ export declare interface JsonApiExportTemplateOut {
44637
44612
  * API identifier of an object
44638
44613
  */
44639
44614
  id: string;
44640
- attributes: JsonApiExportTemplatePostOptionalIdAttributes;
44615
+ attributes: JsonApiExportTemplateOutAttributes;
44641
44616
  }
44642
44617
 
44618
+ export declare interface JsonApiExportTemplateOutAttributes {
44619
+ /**
44620
+ * User-facing name of the Slides template.
44621
+ */
44622
+ name: string;
44623
+ dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
44624
+ widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
44625
+ }
44626
+
44627
+ /**
44628
+ * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
44629
+ */
44630
+ export declare interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
44631
+ /**
44632
+ * Export types this template applies to.
44633
+ */
44634
+ appliedOn: Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
44635
+ coverSlide?: CoverSlideTemplate | null;
44636
+ introSlide?: IntroSlideTemplate | null;
44637
+ sectionSlide?: SectionSlideTemplate | null;
44638
+ contentSlide?: ContentSlideTemplate | null;
44639
+ }
44640
+
44641
+ export declare type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = "PDF" | "PPTX";
44642
+
44643
+ /**
44644
+ * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
44645
+ */
44646
+ export declare interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
44647
+ /**
44648
+ * Export types this template applies to.
44649
+ */
44650
+ appliedOn: Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
44651
+ contentSlide?: ContentSlideTemplate | null;
44652
+ }
44653
+
44654
+ export declare type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = "PDF" | "PPTX";
44655
+
44643
44656
  export declare interface JsonApiExportTemplateOutDocument {
44644
44657
  data: JsonApiExportTemplateOut;
44645
44658
  links?: ObjectLinks;
@@ -44651,7 +44664,7 @@ export declare interface JsonApiExportTemplateOutDocument {
44651
44664
  export declare interface JsonApiExportTemplateOutList {
44652
44665
  data: Array<JsonApiExportTemplateOutWithLinks>;
44653
44666
  links?: ListLinks;
44654
- meta?: JsonApiAggregatedFactOutListMeta;
44667
+ meta?: JsonApiColorPaletteOutListMeta;
44655
44668
  }
44656
44669
 
44657
44670
  export declare type JsonApiExportTemplateOutTypeEnum = "exportTemplate";
@@ -44665,7 +44678,7 @@ export declare interface JsonApiExportTemplateOutWithLinks {
44665
44678
  * API identifier of an object
44666
44679
  */
44667
44680
  id: string;
44668
- attributes: JsonApiExportTemplatePostOptionalIdAttributes;
44681
+ attributes: JsonApiExportTemplateOutAttributes;
44669
44682
  links?: ObjectLinks;
44670
44683
  }
44671
44684
 
@@ -44691,8 +44704,8 @@ export declare interface JsonApiExportTemplatePatchAttributes {
44691
44704
  * User-facing name of the Slides template.
44692
44705
  */
44693
44706
  name?: string;
44694
- dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
44695
- widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
44707
+ dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
44708
+ widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
44696
44709
  }
44697
44710
 
44698
44711
  export declare interface JsonApiExportTemplatePatchDocument {
@@ -44713,47 +44726,9 @@ export declare interface JsonApiExportTemplatePostOptionalId {
44713
44726
  * API identifier of an object
44714
44727
  */
44715
44728
  id?: string;
44716
- attributes: JsonApiExportTemplatePostOptionalIdAttributes;
44717
- }
44718
-
44719
- export declare interface JsonApiExportTemplatePostOptionalIdAttributes {
44720
- /**
44721
- * User-facing name of the Slides template.
44722
- */
44723
- name: string;
44724
- dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
44725
- widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
44726
- }
44727
-
44728
- /**
44729
- * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
44730
- */
44731
- export declare interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
44732
- /**
44733
- * Export types this template applies to.
44734
- */
44735
- appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
44736
- coverSlide?: CoverSlideTemplate | null;
44737
- introSlide?: IntroSlideTemplate | null;
44738
- sectionSlide?: SectionSlideTemplate | null;
44739
- contentSlide?: ContentSlideTemplate | null;
44740
- }
44741
-
44742
- export declare type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = "PDF" | "PPTX";
44743
-
44744
- /**
44745
- * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
44746
- */
44747
- export declare interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
44748
- /**
44749
- * Export types this template applies to.
44750
- */
44751
- appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
44752
- contentSlide?: ContentSlideTemplate | null;
44729
+ attributes: JsonApiExportTemplateOutAttributes;
44753
44730
  }
44754
44731
 
44755
- export declare type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = "PDF" | "PPTX";
44756
-
44757
44732
  export declare interface JsonApiExportTemplatePostOptionalIdDocument {
44758
44733
  data: JsonApiExportTemplatePostOptionalId;
44759
44734
  }
@@ -44782,7 +44757,7 @@ export declare interface JsonApiFactOut {
44782
44757
  * API identifier of an object
44783
44758
  */
44784
44759
  id: string;
44785
- meta?: JsonApiDatasetOutMeta;
44760
+ meta?: JsonApiVisualizationObjectOutMeta;
44786
44761
  attributes?: JsonApiFactOutAttributes;
44787
44762
  relationships?: JsonApiFactOutRelationships;
44788
44763
  }
@@ -44814,7 +44789,7 @@ export declare interface JsonApiFactOutDocument {
44814
44789
  export declare interface JsonApiFactOutList {
44815
44790
  data: Array<JsonApiFactOutWithLinks>;
44816
44791
  links?: ListLinks;
44817
- meta?: JsonApiAggregatedFactOutListMeta;
44792
+ meta?: JsonApiColorPaletteOutListMeta;
44818
44793
  /**
44819
44794
  * Included resources
44820
44795
  */
@@ -44822,11 +44797,7 @@ export declare interface JsonApiFactOutList {
44822
44797
  }
44823
44798
 
44824
44799
  export declare interface JsonApiFactOutRelationships {
44825
- dataset?: JsonApiFactOutRelationshipsDataset;
44826
- }
44827
-
44828
- export declare interface JsonApiFactOutRelationshipsDataset {
44829
- data: JsonApiDatasetLinkage | null;
44800
+ dataset?: JsonApiAttributeOutRelationshipsDataset;
44830
44801
  }
44831
44802
 
44832
44803
  export declare type JsonApiFactOutTypeEnum = "fact";
@@ -44840,7 +44811,7 @@ export declare interface JsonApiFactOutWithLinks {
44840
44811
  * API identifier of an object
44841
44812
  */
44842
44813
  id: string;
44843
- meta?: JsonApiDatasetOutMeta;
44814
+ meta?: JsonApiVisualizationObjectOutMeta;
44844
44815
  attributes?: JsonApiFactOutAttributes;
44845
44816
  relationships?: JsonApiFactOutRelationships;
44846
44817
  links?: ObjectLinks;
@@ -44881,7 +44852,7 @@ export declare interface JsonApiFilterContextIn {
44881
44852
  * API identifier of an object
44882
44853
  */
44883
44854
  id: string;
44884
- attributes: JsonApiFilterContextOutAttributes;
44855
+ attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
44885
44856
  }
44886
44857
 
44887
44858
  export declare interface JsonApiFilterContextInDocument {
@@ -44912,22 +44883,11 @@ export declare interface JsonApiFilterContextOut {
44912
44883
  * API identifier of an object
44913
44884
  */
44914
44885
  id: string;
44915
- meta?: JsonApiDatasetOutMeta;
44916
- attributes: JsonApiFilterContextOutAttributes;
44886
+ meta?: JsonApiVisualizationObjectOutMeta;
44887
+ attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
44917
44888
  relationships?: JsonApiFilterContextOutRelationships;
44918
44889
  }
44919
44890
 
44920
- export declare interface JsonApiFilterContextOutAttributes {
44921
- title?: string;
44922
- description?: string;
44923
- tags?: Array<string>;
44924
- areRelationsValid?: boolean;
44925
- /**
44926
- * Free-form JSON content. Maximum supported length is 250000 characters.
44927
- */
44928
- content: object;
44929
- }
44930
-
44931
44891
  export declare interface JsonApiFilterContextOutDocument {
44932
44892
  data: JsonApiFilterContextOut;
44933
44893
  links?: ObjectLinks;
@@ -44948,7 +44908,7 @@ export declare type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLin
44948
44908
  export declare interface JsonApiFilterContextOutList {
44949
44909
  data: Array<JsonApiFilterContextOutWithLinks>;
44950
44910
  links?: ListLinks;
44951
- meta?: JsonApiAggregatedFactOutListMeta;
44911
+ meta?: JsonApiColorPaletteOutListMeta;
44952
44912
  /**
44953
44913
  * Included resources
44954
44914
  */
@@ -44956,8 +44916,8 @@ export declare interface JsonApiFilterContextOutList {
44956
44916
  }
44957
44917
 
44958
44918
  export declare interface JsonApiFilterContextOutRelationships {
44959
- attributes?: JsonApiDatasetOutRelationshipsAttributes;
44960
- datasets?: JsonApiDatasetOutRelationshipsReferences;
44919
+ attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
44920
+ datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
44961
44921
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
44962
44922
  }
44963
44923
 
@@ -44972,8 +44932,8 @@ export declare interface JsonApiFilterContextOutWithLinks {
44972
44932
  * API identifier of an object
44973
44933
  */
44974
44934
  id: string;
44975
- meta?: JsonApiDatasetOutMeta;
44976
- attributes: JsonApiFilterContextOutAttributes;
44935
+ meta?: JsonApiVisualizationObjectOutMeta;
44936
+ attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
44977
44937
  relationships?: JsonApiFilterContextOutRelationships;
44978
44938
  links?: ObjectLinks;
44979
44939
  }
@@ -45013,7 +44973,7 @@ export declare interface JsonApiFilterContextPostOptionalId {
45013
44973
  * API identifier of an object
45014
44974
  */
45015
44975
  id?: string;
45016
- attributes: JsonApiFilterContextOutAttributes;
44976
+ attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
45017
44977
  }
45018
44978
 
45019
44979
  export declare interface JsonApiFilterContextPostOptionalIdDocument {
@@ -45034,14 +44994,34 @@ export declare interface JsonApiFilterViewIn {
45034
44994
  * API identifier of an object
45035
44995
  */
45036
44996
  id: string;
45037
- attributes: JsonApiFilterViewOutAttributes;
45038
- relationships?: JsonApiFilterViewOutRelationships;
44997
+ attributes: JsonApiFilterViewInAttributes;
44998
+ relationships?: JsonApiFilterViewInRelationships;
44999
+ }
45000
+
45001
+ export declare interface JsonApiFilterViewInAttributes {
45002
+ title: string;
45003
+ description?: string;
45004
+ tags?: Array<string>;
45005
+ areRelationsValid?: boolean;
45006
+ /**
45007
+ * Indicator whether the filter view should by applied by default.
45008
+ */
45009
+ isDefault?: boolean;
45010
+ /**
45011
+ * The respective filter context.
45012
+ */
45013
+ content: object;
45039
45014
  }
45040
45015
 
45041
45016
  export declare interface JsonApiFilterViewInDocument {
45042
45017
  data: JsonApiFilterViewIn;
45043
45018
  }
45044
45019
 
45020
+ export declare interface JsonApiFilterViewInRelationships {
45021
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
45022
+ user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
45023
+ }
45024
+
45045
45025
  export declare type JsonApiFilterViewInTypeEnum = "filterView";
45046
45026
 
45047
45027
  /**
@@ -45056,23 +45036,8 @@ export declare interface JsonApiFilterViewOut {
45056
45036
  * API identifier of an object
45057
45037
  */
45058
45038
  id: string;
45059
- attributes: JsonApiFilterViewOutAttributes;
45060
- relationships?: JsonApiFilterViewOutRelationships;
45061
- }
45062
-
45063
- export declare interface JsonApiFilterViewOutAttributes {
45064
- title: string;
45065
- description?: string;
45066
- tags?: Array<string>;
45067
- areRelationsValid?: boolean;
45068
- /**
45069
- * Indicator whether the filter view should by applied by default.
45070
- */
45071
- isDefault?: boolean;
45072
- /**
45073
- * The respective filter context.
45074
- */
45075
- content: object;
45039
+ attributes: JsonApiFilterViewInAttributes;
45040
+ relationships?: JsonApiFilterViewInRelationships;
45076
45041
  }
45077
45042
 
45078
45043
  export declare interface JsonApiFilterViewOutDocument {
@@ -45095,22 +45060,13 @@ export declare type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOut
45095
45060
  export declare interface JsonApiFilterViewOutList {
45096
45061
  data: Array<JsonApiFilterViewOutWithLinks>;
45097
45062
  links?: ListLinks;
45098
- meta?: JsonApiAggregatedFactOutListMeta;
45063
+ meta?: JsonApiColorPaletteOutListMeta;
45099
45064
  /**
45100
45065
  * Included resources
45101
45066
  */
45102
45067
  included?: Array<JsonApiFilterViewOutIncludes>;
45103
45068
  }
45104
45069
 
45105
- export declare interface JsonApiFilterViewOutRelationships {
45106
- analyticalDashboard?: JsonApiAutomationOutRelationshipsAnalyticalDashboard;
45107
- user?: JsonApiFilterViewOutRelationshipsUser;
45108
- }
45109
-
45110
- export declare interface JsonApiFilterViewOutRelationshipsUser {
45111
- data: JsonApiUserLinkage | null;
45112
- }
45113
-
45114
45070
  export declare type JsonApiFilterViewOutTypeEnum = "filterView";
45115
45071
 
45116
45072
  export declare interface JsonApiFilterViewOutWithLinks {
@@ -45122,8 +45078,8 @@ export declare interface JsonApiFilterViewOutWithLinks {
45122
45078
  * API identifier of an object
45123
45079
  */
45124
45080
  id: string;
45125
- attributes: JsonApiFilterViewOutAttributes;
45126
- relationships?: JsonApiFilterViewOutRelationships;
45081
+ attributes: JsonApiFilterViewInAttributes;
45082
+ relationships?: JsonApiFilterViewInRelationships;
45127
45083
  links?: ObjectLinks;
45128
45084
  }
45129
45085
 
@@ -45142,7 +45098,7 @@ export declare interface JsonApiFilterViewPatch {
45142
45098
  */
45143
45099
  id: string;
45144
45100
  attributes: JsonApiFilterViewPatchAttributes;
45145
- relationships?: JsonApiFilterViewOutRelationships;
45101
+ relationships?: JsonApiFilterViewInRelationships;
45146
45102
  }
45147
45103
 
45148
45104
  export declare interface JsonApiFilterViewPatchAttributes {
@@ -45326,7 +45282,7 @@ export declare interface JsonApiIdentityProviderOutDocument {
45326
45282
  export declare interface JsonApiIdentityProviderOutList {
45327
45283
  data: Array<JsonApiIdentityProviderOutWithLinks>;
45328
45284
  links?: ListLinks;
45329
- meta?: JsonApiAggregatedFactOutListMeta;
45285
+ meta?: JsonApiColorPaletteOutListMeta;
45330
45286
  }
45331
45287
 
45332
45288
  export declare type JsonApiIdentityProviderOutTypeEnum = "identityProvider";
@@ -45379,11 +45335,7 @@ export declare interface JsonApiJwkIn {
45379
45335
  * API identifier of an object
45380
45336
  */
45381
45337
  id: string;
45382
- attributes?: JsonApiJwkInAttributes;
45383
- }
45384
-
45385
- export declare interface JsonApiJwkInAttributes {
45386
- content?: RsaSpecification;
45338
+ attributes?: JsonApiJwkOutAttributes;
45387
45339
  }
45388
45340
 
45389
45341
  export declare interface JsonApiJwkInDocument {
@@ -45404,7 +45356,11 @@ export declare interface JsonApiJwkOut {
45404
45356
  * API identifier of an object
45405
45357
  */
45406
45358
  id: string;
45407
- attributes?: JsonApiJwkInAttributes;
45359
+ attributes?: JsonApiJwkOutAttributes;
45360
+ }
45361
+
45362
+ export declare interface JsonApiJwkOutAttributes {
45363
+ content?: RsaSpecification;
45408
45364
  }
45409
45365
 
45410
45366
  export declare interface JsonApiJwkOutDocument {
@@ -45418,7 +45374,7 @@ export declare interface JsonApiJwkOutDocument {
45418
45374
  export declare interface JsonApiJwkOutList {
45419
45375
  data: Array<JsonApiJwkOutWithLinks>;
45420
45376
  links?: ListLinks;
45421
- meta?: JsonApiAggregatedFactOutListMeta;
45377
+ meta?: JsonApiColorPaletteOutListMeta;
45422
45378
  }
45423
45379
 
45424
45380
  export declare type JsonApiJwkOutTypeEnum = "jwk";
@@ -45432,7 +45388,7 @@ export declare interface JsonApiJwkOutWithLinks {
45432
45388
  * API identifier of an object
45433
45389
  */
45434
45390
  id: string;
45435
- attributes?: JsonApiJwkInAttributes;
45391
+ attributes?: JsonApiJwkOutAttributes;
45436
45392
  links?: ObjectLinks;
45437
45393
  }
45438
45394
 
@@ -45450,7 +45406,7 @@ export declare interface JsonApiJwkPatch {
45450
45406
  * API identifier of an object
45451
45407
  */
45452
45408
  id: string;
45453
- attributes?: JsonApiJwkInAttributes;
45409
+ attributes?: JsonApiJwkOutAttributes;
45454
45410
  }
45455
45411
 
45456
45412
  export declare interface JsonApiJwkPatchDocument {
@@ -45481,7 +45437,7 @@ export declare interface JsonApiLabelOut {
45481
45437
  * API identifier of an object
45482
45438
  */
45483
45439
  id: string;
45484
- meta?: JsonApiDatasetOutMeta;
45440
+ meta?: JsonApiVisualizationObjectOutMeta;
45485
45441
  attributes?: JsonApiLabelOutAttributes;
45486
45442
  relationships?: JsonApiLabelOutRelationships;
45487
45443
  }
@@ -45532,7 +45488,7 @@ export declare interface JsonApiLabelOutDocument {
45532
45488
  export declare interface JsonApiLabelOutList {
45533
45489
  data: Array<JsonApiLabelOutWithLinks>;
45534
45490
  links?: ListLinks;
45535
- meta?: JsonApiAggregatedFactOutListMeta;
45491
+ meta?: JsonApiColorPaletteOutListMeta;
45536
45492
  /**
45537
45493
  * Included resources
45538
45494
  */
@@ -45558,7 +45514,7 @@ export declare interface JsonApiLabelOutWithLinks {
45558
45514
  * API identifier of an object
45559
45515
  */
45560
45516
  id: string;
45561
- meta?: JsonApiDatasetOutMeta;
45517
+ meta?: JsonApiVisualizationObjectOutMeta;
45562
45518
  attributes?: JsonApiLabelOutAttributes;
45563
45519
  relationships?: JsonApiLabelOutRelationships;
45564
45520
  links?: ObjectLinks;
@@ -45696,7 +45652,7 @@ export declare interface JsonApiLlmEndpointOutDocument {
45696
45652
  export declare interface JsonApiLlmEndpointOutList {
45697
45653
  data: Array<JsonApiLlmEndpointOutWithLinks>;
45698
45654
  links?: ListLinks;
45699
- meta?: JsonApiAggregatedFactOutListMeta;
45655
+ meta?: JsonApiColorPaletteOutListMeta;
45700
45656
  }
45701
45657
 
45702
45658
  export declare type JsonApiLlmEndpointOutTypeEnum = "llmEndpoint";
@@ -45778,34 +45734,9 @@ export declare interface JsonApiMemoryItemIn {
45778
45734
  * API identifier of an object
45779
45735
  */
45780
45736
  id: string;
45781
- attributes: JsonApiMemoryItemInAttributes;
45782
- }
45783
-
45784
- export declare interface JsonApiMemoryItemInAttributes {
45785
- title?: string;
45786
- description?: string;
45787
- tags?: Array<string>;
45788
- areRelationsValid?: boolean;
45789
- /**
45790
- * Strategy defining when the memory item should be applied
45791
- */
45792
- strategy: JsonApiMemoryItemInAttributesStrategyEnum;
45793
- /**
45794
- * The text that will be injected into the system prompt
45795
- */
45796
- instruction: string;
45797
- /**
45798
- * Set of unique strings used for semantic similarity filtering
45799
- */
45800
- keywords?: Array<string>;
45801
- /**
45802
- * Whether memory item is disabled
45803
- */
45804
- isDisabled?: boolean;
45737
+ attributes: JsonApiMemoryItemPostOptionalIdAttributes;
45805
45738
  }
45806
45739
 
45807
- export declare type JsonApiMemoryItemInAttributesStrategyEnum = "ALWAYS" | "AUTO";
45808
-
45809
45740
  export declare interface JsonApiMemoryItemInDocument {
45810
45741
  data: JsonApiMemoryItemIn;
45811
45742
  }
@@ -45824,7 +45755,7 @@ export declare interface JsonApiMemoryItemOut {
45824
45755
  * API identifier of an object
45825
45756
  */
45826
45757
  id: string;
45827
- meta?: JsonApiDatasetOutMeta;
45758
+ meta?: JsonApiVisualizationObjectOutMeta;
45828
45759
  attributes: JsonApiMemoryItemOutAttributes;
45829
45760
  relationships?: JsonApiDashboardPluginOutRelationships;
45830
45761
  }
@@ -45871,7 +45802,7 @@ export declare interface JsonApiMemoryItemOutDocument {
45871
45802
  export declare interface JsonApiMemoryItemOutList {
45872
45803
  data: Array<JsonApiMemoryItemOutWithLinks>;
45873
45804
  links?: ListLinks;
45874
- meta?: JsonApiAggregatedFactOutListMeta;
45805
+ meta?: JsonApiColorPaletteOutListMeta;
45875
45806
  /**
45876
45807
  * Included resources
45877
45808
  */
@@ -45889,7 +45820,7 @@ export declare interface JsonApiMemoryItemOutWithLinks {
45889
45820
  * API identifier of an object
45890
45821
  */
45891
45822
  id: string;
45892
- meta?: JsonApiDatasetOutMeta;
45823
+ meta?: JsonApiVisualizationObjectOutMeta;
45893
45824
  attributes: JsonApiMemoryItemOutAttributes;
45894
45825
  relationships?: JsonApiDashboardPluginOutRelationships;
45895
45826
  links?: ObjectLinks;
@@ -45955,9 +45886,34 @@ export declare interface JsonApiMemoryItemPostOptionalId {
45955
45886
  * API identifier of an object
45956
45887
  */
45957
45888
  id?: string;
45958
- attributes: JsonApiMemoryItemInAttributes;
45889
+ attributes: JsonApiMemoryItemPostOptionalIdAttributes;
45890
+ }
45891
+
45892
+ export declare interface JsonApiMemoryItemPostOptionalIdAttributes {
45893
+ title?: string;
45894
+ description?: string;
45895
+ tags?: Array<string>;
45896
+ areRelationsValid?: boolean;
45897
+ /**
45898
+ * Strategy defining when the memory item should be applied
45899
+ */
45900
+ strategy: JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum;
45901
+ /**
45902
+ * The text that will be injected into the system prompt
45903
+ */
45904
+ instruction: string;
45905
+ /**
45906
+ * Set of unique strings used for semantic similarity filtering
45907
+ */
45908
+ keywords?: Array<string>;
45909
+ /**
45910
+ * Whether memory item is disabled
45911
+ */
45912
+ isDisabled?: boolean;
45959
45913
  }
45960
45914
 
45915
+ export declare type JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum = "ALWAYS" | "AUTO";
45916
+
45961
45917
  export declare interface JsonApiMemoryItemPostOptionalIdDocument {
45962
45918
  data: JsonApiMemoryItemPostOptionalId;
45963
45919
  }
@@ -45976,16 +45932,7 @@ export declare interface JsonApiMetricIn {
45976
45932
  * API identifier of an object
45977
45933
  */
45978
45934
  id: string;
45979
- attributes: JsonApiMetricInAttributes;
45980
- }
45981
-
45982
- export declare interface JsonApiMetricInAttributes {
45983
- title?: string;
45984
- description?: string;
45985
- tags?: Array<string>;
45986
- areRelationsValid?: boolean;
45987
- content: JsonApiMetricOutAttributesContent;
45988
- isHidden?: boolean;
45935
+ attributes: JsonApiMetricPostOptionalIdAttributes;
45989
45936
  }
45990
45937
 
45991
45938
  export declare interface JsonApiMetricInDocument {
@@ -46016,7 +45963,7 @@ export declare interface JsonApiMetricOut {
46016
45963
  * API identifier of an object
46017
45964
  */
46018
45965
  id: string;
46019
- meta?: JsonApiDatasetOutMeta;
45966
+ meta?: JsonApiVisualizationObjectOutMeta;
46020
45967
  attributes: JsonApiMetricOutAttributes;
46021
45968
  relationships?: JsonApiVisualizationObjectOutRelationships;
46022
45969
  }
@@ -46063,7 +46010,7 @@ export declare type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | Js
46063
46010
  export declare interface JsonApiMetricOutList {
46064
46011
  data: Array<JsonApiMetricOutWithLinks>;
46065
46012
  links?: ListLinks;
46066
- meta?: JsonApiAggregatedFactOutListMeta;
46013
+ meta?: JsonApiColorPaletteOutListMeta;
46067
46014
  /**
46068
46015
  * Included resources
46069
46016
  */
@@ -46081,7 +46028,7 @@ export declare interface JsonApiMetricOutWithLinks {
46081
46028
  * API identifier of an object
46082
46029
  */
46083
46030
  id: string;
46084
- meta?: JsonApiDatasetOutMeta;
46031
+ meta?: JsonApiVisualizationObjectOutMeta;
46085
46032
  attributes: JsonApiMetricOutAttributes;
46086
46033
  relationships?: JsonApiVisualizationObjectOutRelationships;
46087
46034
  links?: ObjectLinks;
@@ -46131,7 +46078,16 @@ export declare interface JsonApiMetricPostOptionalId {
46131
46078
  * API identifier of an object
46132
46079
  */
46133
46080
  id?: string;
46134
- attributes: JsonApiMetricInAttributes;
46081
+ attributes: JsonApiMetricPostOptionalIdAttributes;
46082
+ }
46083
+
46084
+ export declare interface JsonApiMetricPostOptionalIdAttributes {
46085
+ title?: string;
46086
+ description?: string;
46087
+ tags?: Array<string>;
46088
+ areRelationsValid?: boolean;
46089
+ content: JsonApiMetricOutAttributesContent;
46090
+ isHidden?: boolean;
46135
46091
  }
46136
46092
 
46137
46093
  export declare interface JsonApiMetricPostOptionalIdDocument {
@@ -46180,7 +46136,7 @@ export declare interface JsonApiNotificationChannelIdentifierOutDocument {
46180
46136
  export declare interface JsonApiNotificationChannelIdentifierOutList {
46181
46137
  data: Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
46182
46138
  links?: ListLinks;
46183
- meta?: JsonApiAggregatedFactOutListMeta;
46139
+ meta?: JsonApiColorPaletteOutListMeta;
46184
46140
  }
46185
46141
 
46186
46142
  export declare type JsonApiNotificationChannelIdentifierOutTypeEnum = "notificationChannelIdentifier";
@@ -46212,9 +46168,41 @@ export declare interface JsonApiNotificationChannelIn {
46212
46168
  * API identifier of an object
46213
46169
  */
46214
46170
  id: string;
46215
- attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
46171
+ attributes?: JsonApiNotificationChannelInAttributes;
46172
+ }
46173
+
46174
+ export declare interface JsonApiNotificationChannelInAttributes {
46175
+ name?: string | null;
46176
+ description?: string | null;
46177
+ destination?: JsonApiNotificationChannelOutAttributesDestination;
46178
+ /**
46179
+ * 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}
46180
+ */
46181
+ customDashboardUrl?: string;
46182
+ /**
46183
+ * 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
46184
+ */
46185
+ dashboardLinkVisibility?: JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum;
46186
+ /**
46187
+ * 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}}
46188
+ */
46189
+ notificationSource?: string;
46190
+ /**
46191
+ * 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
46192
+ */
46193
+ allowedRecipients?: JsonApiNotificationChannelInAttributesAllowedRecipientsEnum;
46194
+ /**
46195
+ * 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
46196
+ */
46197
+ inPlatformNotification?: JsonApiNotificationChannelInAttributesInPlatformNotificationEnum;
46216
46198
  }
46217
46199
 
46200
+ export declare type JsonApiNotificationChannelInAttributesAllowedRecipientsEnum = "CREATOR" | "INTERNAL" | "EXTERNAL";
46201
+
46202
+ export declare type JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum = "HIDDEN" | "INTERNAL_ONLY" | "ALL";
46203
+
46204
+ export declare type JsonApiNotificationChannelInAttributesInPlatformNotificationEnum = "DISABLED" | "ENABLED";
46205
+
46218
46206
  export declare interface JsonApiNotificationChannelInDocument {
46219
46207
  data: JsonApiNotificationChannelIn;
46220
46208
  }
@@ -46298,7 +46286,7 @@ export declare interface JsonApiNotificationChannelOutDocument {
46298
46286
  export declare interface JsonApiNotificationChannelOutList {
46299
46287
  data: Array<JsonApiNotificationChannelOutWithLinks>;
46300
46288
  links?: ListLinks;
46301
- meta?: JsonApiAggregatedFactOutListMeta;
46289
+ meta?: JsonApiColorPaletteOutListMeta;
46302
46290
  }
46303
46291
 
46304
46292
  export declare type JsonApiNotificationChannelOutTypeEnum = "notificationChannel";
@@ -46330,7 +46318,7 @@ export declare interface JsonApiNotificationChannelPatch {
46330
46318
  * API identifier of an object
46331
46319
  */
46332
46320
  id: string;
46333
- attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
46321
+ attributes?: JsonApiNotificationChannelInAttributes;
46334
46322
  }
46335
46323
 
46336
46324
  export declare interface JsonApiNotificationChannelPatchDocument {
@@ -46351,41 +46339,9 @@ export declare interface JsonApiNotificationChannelPostOptionalId {
46351
46339
  * API identifier of an object
46352
46340
  */
46353
46341
  id?: string;
46354
- attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
46342
+ attributes?: JsonApiNotificationChannelInAttributes;
46355
46343
  }
46356
46344
 
46357
- export declare interface JsonApiNotificationChannelPostOptionalIdAttributes {
46358
- name?: string | null;
46359
- description?: string | null;
46360
- destination?: JsonApiNotificationChannelOutAttributesDestination;
46361
- /**
46362
- * 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}
46363
- */
46364
- customDashboardUrl?: string;
46365
- /**
46366
- * 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
46367
- */
46368
- dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
46369
- /**
46370
- * 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}}
46371
- */
46372
- notificationSource?: string;
46373
- /**
46374
- * 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
46375
- */
46376
- allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
46377
- /**
46378
- * 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
46379
- */
46380
- inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
46381
- }
46382
-
46383
- export declare type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = "CREATOR" | "INTERNAL" | "EXTERNAL";
46384
-
46385
- export declare type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = "HIDDEN" | "INTERNAL_ONLY" | "ALL";
46386
-
46387
- export declare type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = "DISABLED" | "ENABLED";
46388
-
46389
46345
  export declare interface JsonApiNotificationChannelPostOptionalIdDocument {
46390
46346
  data: JsonApiNotificationChannelPostOptionalId;
46391
46347
  }
@@ -46478,11 +46434,19 @@ export declare interface JsonApiOrganizationOutMeta {
46478
46434
  export declare type JsonApiOrganizationOutMetaPermissionsEnum = "MANAGE" | "SELF_CREATE_TOKEN";
46479
46435
 
46480
46436
  export declare interface JsonApiOrganizationOutRelationships {
46481
- bootstrapUser?: JsonApiFilterViewOutRelationshipsUser;
46482
- bootstrapUserGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
46437
+ bootstrapUser?: JsonApiOrganizationOutRelationshipsBootstrapUser;
46438
+ bootstrapUserGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
46483
46439
  identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
46484
46440
  }
46485
46441
 
46442
+ export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
46443
+ data: JsonApiUserLinkage | null;
46444
+ }
46445
+
46446
+ export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
46447
+ data: JsonApiUserGroupLinkage | null;
46448
+ }
46449
+
46486
46450
  export declare type JsonApiOrganizationOutTypeEnum = "organization";
46487
46451
 
46488
46452
  /**
@@ -46542,7 +46506,7 @@ export declare interface JsonApiOrganizationSettingIn {
46542
46506
  * API identifier of an object
46543
46507
  */
46544
46508
  id: string;
46545
- attributes?: JsonApiUserSettingInAttributes;
46509
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
46546
46510
  }
46547
46511
 
46548
46512
  export declare interface JsonApiOrganizationSettingInDocument {
@@ -46563,7 +46527,7 @@ export declare interface JsonApiOrganizationSettingOut {
46563
46527
  * API identifier of an object
46564
46528
  */
46565
46529
  id: string;
46566
- attributes?: JsonApiUserSettingInAttributes;
46530
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
46567
46531
  }
46568
46532
 
46569
46533
  export declare interface JsonApiOrganizationSettingOutDocument {
@@ -46577,7 +46541,7 @@ export declare interface JsonApiOrganizationSettingOutDocument {
46577
46541
  export declare interface JsonApiOrganizationSettingOutList {
46578
46542
  data: Array<JsonApiOrganizationSettingOutWithLinks>;
46579
46543
  links?: ListLinks;
46580
- meta?: JsonApiAggregatedFactOutListMeta;
46544
+ meta?: JsonApiColorPaletteOutListMeta;
46581
46545
  }
46582
46546
 
46583
46547
  export declare type JsonApiOrganizationSettingOutTypeEnum = "organizationSetting";
@@ -46591,7 +46555,7 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
46591
46555
  * API identifier of an object
46592
46556
  */
46593
46557
  id: string;
46594
- attributes?: JsonApiUserSettingInAttributes;
46558
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
46595
46559
  links?: ObjectLinks;
46596
46560
  }
46597
46561
 
@@ -46609,7 +46573,7 @@ export declare interface JsonApiOrganizationSettingPatch {
46609
46573
  * API identifier of an object
46610
46574
  */
46611
46575
  id: string;
46612
- attributes?: JsonApiUserSettingInAttributes;
46576
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
46613
46577
  }
46614
46578
 
46615
46579
  export declare interface JsonApiOrganizationSettingPatchDocument {
@@ -46630,7 +46594,7 @@ export declare interface JsonApiThemeIn {
46630
46594
  * API identifier of an object
46631
46595
  */
46632
46596
  id: string;
46633
- attributes: JsonApiColorPaletteInAttributes;
46597
+ attributes: JsonApiColorPaletteOutAttributes;
46634
46598
  }
46635
46599
 
46636
46600
  export declare interface JsonApiThemeInDocument {
@@ -46651,7 +46615,7 @@ export declare interface JsonApiThemeOut {
46651
46615
  * API identifier of an object
46652
46616
  */
46653
46617
  id: string;
46654
- attributes: JsonApiColorPaletteInAttributes;
46618
+ attributes: JsonApiColorPaletteOutAttributes;
46655
46619
  }
46656
46620
 
46657
46621
  export declare interface JsonApiThemeOutDocument {
@@ -46665,7 +46629,7 @@ export declare interface JsonApiThemeOutDocument {
46665
46629
  export declare interface JsonApiThemeOutList {
46666
46630
  data: Array<JsonApiThemeOutWithLinks>;
46667
46631
  links?: ListLinks;
46668
- meta?: JsonApiAggregatedFactOutListMeta;
46632
+ meta?: JsonApiColorPaletteOutListMeta;
46669
46633
  }
46670
46634
 
46671
46635
  export declare type JsonApiThemeOutTypeEnum = "theme";
@@ -46679,7 +46643,7 @@ export declare interface JsonApiThemeOutWithLinks {
46679
46643
  * API identifier of an object
46680
46644
  */
46681
46645
  id: string;
46682
- attributes: JsonApiColorPaletteInAttributes;
46646
+ attributes: JsonApiColorPaletteOutAttributes;
46683
46647
  links?: ObjectLinks;
46684
46648
  }
46685
46649
 
@@ -46718,19 +46682,14 @@ export declare interface JsonApiUserDataFilterIn {
46718
46682
  * API identifier of an object
46719
46683
  */
46720
46684
  id: string;
46721
- attributes: JsonApiUserDataFilterOutAttributes;
46722
- relationships?: JsonApiUserDataFilterInRelationships;
46685
+ attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
46686
+ relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
46723
46687
  }
46724
46688
 
46725
46689
  export declare interface JsonApiUserDataFilterInDocument {
46726
46690
  data: JsonApiUserDataFilterIn;
46727
46691
  }
46728
46692
 
46729
- export declare interface JsonApiUserDataFilterInRelationships {
46730
- user?: JsonApiFilterViewOutRelationshipsUser;
46731
- userGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
46732
- }
46733
-
46734
46693
  export declare type JsonApiUserDataFilterInTypeEnum = "userDataFilter";
46735
46694
 
46736
46695
  /**
@@ -46745,19 +46704,11 @@ export declare interface JsonApiUserDataFilterOut {
46745
46704
  * API identifier of an object
46746
46705
  */
46747
46706
  id: string;
46748
- meta?: JsonApiDatasetOutMeta;
46749
- attributes: JsonApiUserDataFilterOutAttributes;
46707
+ meta?: JsonApiVisualizationObjectOutMeta;
46708
+ attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
46750
46709
  relationships?: JsonApiUserDataFilterOutRelationships;
46751
46710
  }
46752
46711
 
46753
- export declare interface JsonApiUserDataFilterOutAttributes {
46754
- title?: string;
46755
- description?: string;
46756
- tags?: Array<string>;
46757
- areRelationsValid?: boolean;
46758
- maql: string;
46759
- }
46760
-
46761
46712
  export declare interface JsonApiUserDataFilterOutDocument {
46762
46713
  data: JsonApiUserDataFilterOut;
46763
46714
  links?: ObjectLinks;
@@ -46778,7 +46729,7 @@ export declare type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLi
46778
46729
  export declare interface JsonApiUserDataFilterOutList {
46779
46730
  data: Array<JsonApiUserDataFilterOutWithLinks>;
46780
46731
  links?: ListLinks;
46781
- meta?: JsonApiAggregatedFactOutListMeta;
46732
+ meta?: JsonApiColorPaletteOutListMeta;
46782
46733
  /**
46783
46734
  * Included resources
46784
46735
  */
@@ -46786,17 +46737,13 @@ export declare interface JsonApiUserDataFilterOutList {
46786
46737
  }
46787
46738
 
46788
46739
  export declare interface JsonApiUserDataFilterOutRelationships {
46789
- user?: JsonApiFilterViewOutRelationshipsUser;
46790
- userGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
46791
- facts?: JsonApiDatasetOutRelationshipsFacts;
46792
- attributes?: JsonApiDatasetOutRelationshipsAttributes;
46740
+ user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
46741
+ userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
46742
+ facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
46743
+ attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
46793
46744
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
46794
46745
  metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
46795
- datasets?: JsonApiDatasetOutRelationshipsReferences;
46796
- }
46797
-
46798
- export declare interface JsonApiUserDataFilterOutRelationshipsUserGroup {
46799
- data: JsonApiUserGroupLinkage | null;
46746
+ datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
46800
46747
  }
46801
46748
 
46802
46749
  export declare type JsonApiUserDataFilterOutTypeEnum = "userDataFilter";
@@ -46810,8 +46757,8 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
46810
46757
  * API identifier of an object
46811
46758
  */
46812
46759
  id: string;
46813
- meta?: JsonApiDatasetOutMeta;
46814
- attributes: JsonApiUserDataFilterOutAttributes;
46760
+ meta?: JsonApiVisualizationObjectOutMeta;
46761
+ attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
46815
46762
  relationships?: JsonApiUserDataFilterOutRelationships;
46816
46763
  links?: ObjectLinks;
46817
46764
  }
@@ -46831,7 +46778,7 @@ export declare interface JsonApiUserDataFilterPatch {
46831
46778
  */
46832
46779
  id: string;
46833
46780
  attributes: JsonApiUserDataFilterPatchAttributes;
46834
- relationships?: JsonApiUserDataFilterInRelationships;
46781
+ relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
46835
46782
  }
46836
46783
 
46837
46784
  export declare interface JsonApiUserDataFilterPatchAttributes {
@@ -46860,14 +46807,27 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
46860
46807
  * API identifier of an object
46861
46808
  */
46862
46809
  id?: string;
46863
- attributes: JsonApiUserDataFilterOutAttributes;
46864
- relationships?: JsonApiUserDataFilterInRelationships;
46810
+ attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
46811
+ relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
46812
+ }
46813
+
46814
+ export declare interface JsonApiUserDataFilterPostOptionalIdAttributes {
46815
+ title?: string;
46816
+ description?: string;
46817
+ tags?: Array<string>;
46818
+ areRelationsValid?: boolean;
46819
+ maql: string;
46865
46820
  }
46866
46821
 
46867
46822
  export declare interface JsonApiUserDataFilterPostOptionalIdDocument {
46868
46823
  data: JsonApiUserDataFilterPostOptionalId;
46869
46824
  }
46870
46825
 
46826
+ export declare interface JsonApiUserDataFilterPostOptionalIdRelationships {
46827
+ user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
46828
+ userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
46829
+ }
46830
+
46871
46831
  export declare type JsonApiUserDataFilterPostOptionalIdTypeEnum = "userDataFilter";
46872
46832
 
46873
46833
  /**
@@ -46937,7 +46897,7 @@ export declare interface JsonApiUserGroupOutDocument {
46937
46897
  export declare interface JsonApiUserGroupOutList {
46938
46898
  data: Array<JsonApiUserGroupOutWithLinks>;
46939
46899
  links?: ListLinks;
46940
- meta?: JsonApiAggregatedFactOutListMeta;
46900
+ meta?: JsonApiColorPaletteOutListMeta;
46941
46901
  /**
46942
46902
  * Included resources
46943
46903
  */
@@ -47030,7 +46990,7 @@ export declare interface JsonApiUserIdentifierOutDocument {
47030
46990
  export declare interface JsonApiUserIdentifierOutList {
47031
46991
  data: Array<JsonApiUserIdentifierOutWithLinks>;
47032
46992
  links?: ListLinks;
47033
- meta?: JsonApiAggregatedFactOutListMeta;
46993
+ meta?: JsonApiColorPaletteOutListMeta;
47034
46994
  }
47035
46995
 
47036
46996
  export declare type JsonApiUserIdentifierOutTypeEnum = "userIdentifier";
@@ -47120,7 +47080,7 @@ export declare interface JsonApiUserOutDocument {
47120
47080
  export declare interface JsonApiUserOutList {
47121
47081
  data: Array<JsonApiUserOutWithLinks>;
47122
47082
  links?: ListLinks;
47123
- meta?: JsonApiAggregatedFactOutListMeta;
47083
+ meta?: JsonApiColorPaletteOutListMeta;
47124
47084
  /**
47125
47085
  * Included resources
47126
47086
  */
@@ -47190,19 +47150,9 @@ export declare interface JsonApiUserSettingIn {
47190
47150
  * API identifier of an object
47191
47151
  */
47192
47152
  id: string;
47193
- attributes?: JsonApiUserSettingInAttributes;
47194
- }
47195
-
47196
- export declare interface JsonApiUserSettingInAttributes {
47197
- /**
47198
- * Free-form JSON content. Maximum supported length is 15000 characters.
47199
- */
47200
- content?: object;
47201
- type?: JsonApiUserSettingInAttributesTypeEnum;
47153
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
47202
47154
  }
47203
47155
 
47204
- export declare type JsonApiUserSettingInAttributesTypeEnum = "TIMEZONE" | "ACTIVE_THEME" | "ACTIVE_COLOR_PALETTE" | "ACTIVE_LLM_ENDPOINT" | "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";
47205
-
47206
47156
  export declare interface JsonApiUserSettingInDocument {
47207
47157
  data: JsonApiUserSettingIn;
47208
47158
  }
@@ -47221,7 +47171,7 @@ export declare interface JsonApiUserSettingOut {
47221
47171
  * API identifier of an object
47222
47172
  */
47223
47173
  id: string;
47224
- attributes?: JsonApiUserSettingInAttributes;
47174
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
47225
47175
  }
47226
47176
 
47227
47177
  export declare interface JsonApiUserSettingOutDocument {
@@ -47235,7 +47185,7 @@ export declare interface JsonApiUserSettingOutDocument {
47235
47185
  export declare interface JsonApiUserSettingOutList {
47236
47186
  data: Array<JsonApiUserSettingOutWithLinks>;
47237
47187
  links?: ListLinks;
47238
- meta?: JsonApiAggregatedFactOutListMeta;
47188
+ meta?: JsonApiColorPaletteOutListMeta;
47239
47189
  }
47240
47190
 
47241
47191
  export declare type JsonApiUserSettingOutTypeEnum = "userSetting";
@@ -47249,7 +47199,7 @@ export declare interface JsonApiUserSettingOutWithLinks {
47249
47199
  * API identifier of an object
47250
47200
  */
47251
47201
  id: string;
47252
- attributes?: JsonApiUserSettingInAttributes;
47202
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
47253
47203
  links?: ObjectLinks;
47254
47204
  }
47255
47205
 
@@ -47267,19 +47217,7 @@ export declare interface JsonApiVisualizationObjectIn {
47267
47217
  * API identifier of an object
47268
47218
  */
47269
47219
  id: string;
47270
- attributes: JsonApiVisualizationObjectInAttributes;
47271
- }
47272
-
47273
- export declare interface JsonApiVisualizationObjectInAttributes {
47274
- title?: string;
47275
- description?: string;
47276
- tags?: Array<string>;
47277
- areRelationsValid?: boolean;
47278
- /**
47279
- * Free-form JSON content. Maximum supported length is 250000 characters.
47280
- */
47281
- content: object;
47282
- isHidden?: boolean;
47220
+ attributes: JsonApiVisualizationObjectPostOptionalIdAttributes;
47283
47221
  }
47284
47222
 
47285
47223
  export declare interface JsonApiVisualizationObjectInDocument {
@@ -47310,7 +47248,7 @@ export declare interface JsonApiVisualizationObjectOut {
47310
47248
  * API identifier of an object
47311
47249
  */
47312
47250
  id: string;
47313
- meta?: JsonApiDatasetOutMeta;
47251
+ meta?: JsonApiVisualizationObjectOutMeta;
47314
47252
  attributes: JsonApiVisualizationObjectOutAttributes;
47315
47253
  relationships?: JsonApiVisualizationObjectOutRelationships;
47316
47254
  }
@@ -47344,27 +47282,65 @@ export declare interface JsonApiVisualizationObjectOutDocument {
47344
47282
  export declare interface JsonApiVisualizationObjectOutList {
47345
47283
  data: Array<JsonApiVisualizationObjectOutWithLinks>;
47346
47284
  links?: ListLinks;
47347
- meta?: JsonApiAggregatedFactOutListMeta;
47285
+ meta?: JsonApiColorPaletteOutListMeta;
47348
47286
  /**
47349
47287
  * Included resources
47350
47288
  */
47351
47289
  included?: Array<JsonApiMetricOutIncludes>;
47352
47290
  }
47353
47291
 
47292
+ export declare interface JsonApiVisualizationObjectOutMeta {
47293
+ origin?: JsonApiVisualizationObjectOutMetaOrigin;
47294
+ }
47295
+
47296
+ export declare interface JsonApiVisualizationObjectOutMetaOrigin {
47297
+ /**
47298
+ * defines type of the origin of the entity
47299
+ */
47300
+ originType: JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum;
47301
+ /**
47302
+ * defines id of the workspace where the entity comes from
47303
+ */
47304
+ originId: string;
47305
+ }
47306
+
47307
+ export declare type JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum = "NATIVE" | "PARENT";
47308
+
47354
47309
  export declare interface JsonApiVisualizationObjectOutRelationships {
47355
47310
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
47356
47311
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
47357
- facts?: JsonApiDatasetOutRelationshipsFacts;
47358
- attributes?: JsonApiDatasetOutRelationshipsAttributes;
47312
+ facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
47313
+ attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
47359
47314
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
47360
47315
  metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
47361
- datasets?: JsonApiDatasetOutRelationshipsReferences;
47316
+ datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
47317
+ }
47318
+
47319
+ export declare interface JsonApiVisualizationObjectOutRelationshipsAttributes {
47320
+ /**
47321
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
47322
+ */
47323
+ data: Array<JsonApiAttributeLinkage>;
47362
47324
  }
47363
47325
 
47364
47326
  export declare interface JsonApiVisualizationObjectOutRelationshipsCreatedBy {
47365
47327
  data: JsonApiUserIdentifierLinkage | null;
47366
47328
  }
47367
47329
 
47330
+ export declare interface JsonApiVisualizationObjectOutRelationshipsDatasets {
47331
+ /**
47332
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
47333
+ */
47334
+ data: Array<JsonApiDatasetLinkage>;
47335
+ }
47336
+
47337
+ export declare interface JsonApiVisualizationObjectOutRelationshipsFacts {
47338
+ /**
47339
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
47340
+ */
47341
+ data: Array<JsonApiFactLinkage>;
47342
+ }
47343
+
47368
47344
  export declare interface JsonApiVisualizationObjectOutRelationshipsLabels {
47369
47345
  /**
47370
47346
  * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
@@ -47390,7 +47366,7 @@ export declare interface JsonApiVisualizationObjectOutWithLinks {
47390
47366
  * API identifier of an object
47391
47367
  */
47392
47368
  id: string;
47393
- meta?: JsonApiDatasetOutMeta;
47369
+ meta?: JsonApiVisualizationObjectOutMeta;
47394
47370
  attributes: JsonApiVisualizationObjectOutAttributes;
47395
47371
  relationships?: JsonApiVisualizationObjectOutRelationships;
47396
47372
  links?: ObjectLinks;
@@ -47443,7 +47419,19 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
47443
47419
  * API identifier of an object
47444
47420
  */
47445
47421
  id?: string;
47446
- attributes: JsonApiVisualizationObjectInAttributes;
47422
+ attributes: JsonApiVisualizationObjectPostOptionalIdAttributes;
47423
+ }
47424
+
47425
+ export declare interface JsonApiVisualizationObjectPostOptionalIdAttributes {
47426
+ title?: string;
47427
+ description?: string;
47428
+ tags?: Array<string>;
47429
+ areRelationsValid?: boolean;
47430
+ /**
47431
+ * Free-form JSON content. Maximum supported length is 250000 characters.
47432
+ */
47433
+ content: object;
47434
+ isHidden?: boolean;
47447
47435
  }
47448
47436
 
47449
47437
  export declare interface JsonApiVisualizationObjectPostOptionalIdDocument {
@@ -47479,7 +47467,7 @@ export declare type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDas
47479
47467
  export declare interface JsonApiWorkspaceAutomationOutList {
47480
47468
  data: Array<JsonApiWorkspaceAutomationOutWithLinks>;
47481
47469
  links?: ListLinks;
47482
- meta?: JsonApiAggregatedFactOutListMeta;
47470
+ meta?: JsonApiColorPaletteOutListMeta;
47483
47471
  /**
47484
47472
  * Included resources
47485
47473
  */
@@ -47487,13 +47475,13 @@ export declare interface JsonApiWorkspaceAutomationOutList {
47487
47475
  }
47488
47476
 
47489
47477
  export declare interface JsonApiWorkspaceAutomationOutRelationships {
47490
- workspace?: JsonApiWorkspaceInRelationshipsParent;
47491
- notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
47492
- analyticalDashboard?: JsonApiAutomationOutRelationshipsAnalyticalDashboard;
47478
+ workspace?: JsonApiWorkspaceOutRelationshipsParent;
47479
+ notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
47480
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
47493
47481
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
47494
47482
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
47495
- exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
47496
- recipients?: JsonApiAutomationOutRelationshipsRecipients;
47483
+ exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
47484
+ recipients?: JsonApiAutomationInRelationshipsRecipients;
47497
47485
  automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
47498
47486
  }
47499
47487
 
@@ -47559,7 +47547,7 @@ export declare interface JsonApiWorkspaceDataFilterOut {
47559
47547
  * API identifier of an object
47560
47548
  */
47561
47549
  id: string;
47562
- meta?: JsonApiDatasetOutMeta;
47550
+ meta?: JsonApiVisualizationObjectOutMeta;
47563
47551
  attributes?: JsonApiWorkspaceDataFilterOutAttributes;
47564
47552
  relationships?: JsonApiWorkspaceDataFilterOutRelationships;
47565
47553
  }
@@ -47585,7 +47573,7 @@ export declare interface JsonApiWorkspaceDataFilterOutDocument {
47585
47573
  export declare interface JsonApiWorkspaceDataFilterOutList {
47586
47574
  data: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
47587
47575
  links?: ListLinks;
47588
- meta?: JsonApiAggregatedFactOutListMeta;
47576
+ meta?: JsonApiColorPaletteOutListMeta;
47589
47577
  /**
47590
47578
  * Included resources
47591
47579
  */
@@ -47614,7 +47602,7 @@ export declare interface JsonApiWorkspaceDataFilterOutWithLinks {
47614
47602
  * API identifier of an object
47615
47603
  */
47616
47604
  id: string;
47617
- meta?: JsonApiDatasetOutMeta;
47605
+ meta?: JsonApiVisualizationObjectOutMeta;
47618
47606
  attributes?: JsonApiWorkspaceDataFilterOutAttributes;
47619
47607
  relationships?: JsonApiWorkspaceDataFilterOutRelationships;
47620
47608
  links?: ObjectLinks;
@@ -47656,14 +47644,28 @@ export declare interface JsonApiWorkspaceDataFilterSettingIn {
47656
47644
  * API identifier of an object
47657
47645
  */
47658
47646
  id: string;
47659
- attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
47660
- relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
47647
+ attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
47648
+ relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
47649
+ }
47650
+
47651
+ export declare interface JsonApiWorkspaceDataFilterSettingInAttributes {
47652
+ title?: string;
47653
+ description?: string;
47654
+ filterValues?: Array<string>;
47661
47655
  }
47662
47656
 
47663
47657
  export declare interface JsonApiWorkspaceDataFilterSettingInDocument {
47664
47658
  data: JsonApiWorkspaceDataFilterSettingIn;
47665
47659
  }
47666
47660
 
47661
+ export declare interface JsonApiWorkspaceDataFilterSettingInRelationships {
47662
+ workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
47663
+ }
47664
+
47665
+ export declare interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
47666
+ data: JsonApiWorkspaceDataFilterLinkage | null;
47667
+ }
47668
+
47667
47669
  export declare type JsonApiWorkspaceDataFilterSettingInTypeEnum = "workspaceDataFilterSetting";
47668
47670
 
47669
47671
  /**
@@ -47688,15 +47690,9 @@ export declare interface JsonApiWorkspaceDataFilterSettingOut {
47688
47690
  * API identifier of an object
47689
47691
  */
47690
47692
  id: string;
47691
- meta?: JsonApiDatasetOutMeta;
47692
- attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
47693
- relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
47694
- }
47695
-
47696
- export declare interface JsonApiWorkspaceDataFilterSettingOutAttributes {
47697
- title?: string;
47698
- description?: string;
47699
- filterValues?: Array<string>;
47693
+ meta?: JsonApiVisualizationObjectOutMeta;
47694
+ attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
47695
+ relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
47700
47696
  }
47701
47697
 
47702
47698
  export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
@@ -47714,21 +47710,13 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
47714
47710
  export declare interface JsonApiWorkspaceDataFilterSettingOutList {
47715
47711
  data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
47716
47712
  links?: ListLinks;
47717
- meta?: JsonApiAggregatedFactOutListMeta;
47713
+ meta?: JsonApiColorPaletteOutListMeta;
47718
47714
  /**
47719
47715
  * Included resources
47720
47716
  */
47721
47717
  included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
47722
47718
  }
47723
47719
 
47724
- export declare interface JsonApiWorkspaceDataFilterSettingOutRelationships {
47725
- workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
47726
- }
47727
-
47728
- export declare interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
47729
- data: JsonApiWorkspaceDataFilterLinkage | null;
47730
- }
47731
-
47732
47720
  export declare type JsonApiWorkspaceDataFilterSettingOutTypeEnum = "workspaceDataFilterSetting";
47733
47721
 
47734
47722
  export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
@@ -47740,9 +47728,9 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
47740
47728
  * API identifier of an object
47741
47729
  */
47742
47730
  id: string;
47743
- meta?: JsonApiDatasetOutMeta;
47744
- attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
47745
- relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
47731
+ meta?: JsonApiVisualizationObjectOutMeta;
47732
+ attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
47733
+ relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
47746
47734
  links?: ObjectLinks;
47747
47735
  }
47748
47736
 
@@ -47760,8 +47748,8 @@ export declare interface JsonApiWorkspaceDataFilterSettingPatch {
47760
47748
  * API identifier of an object
47761
47749
  */
47762
47750
  id: string;
47763
- attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
47764
- relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
47751
+ attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
47752
+ relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
47765
47753
  }
47766
47754
 
47767
47755
  export declare interface JsonApiWorkspaceDataFilterSettingPatchDocument {
@@ -47782,56 +47770,14 @@ export declare interface JsonApiWorkspaceIn {
47782
47770
  * API identifier of an object
47783
47771
  */
47784
47772
  id: string;
47785
- attributes?: JsonApiWorkspaceInAttributes;
47786
- relationships?: JsonApiWorkspaceInRelationships;
47787
- }
47788
-
47789
- export declare interface JsonApiWorkspaceInAttributes {
47790
- name?: string | null;
47791
- /**
47792
- * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
47793
- * @deprecated
47794
- */
47795
- earlyAccess?: string | null;
47796
- /**
47797
- * The early access feature identifiers. They are used to enable experimental features.
47798
- */
47799
- earlyAccessValues?: Array<string> | null;
47800
- description?: string | null;
47801
- /**
47802
- * Custom prefix of entity identifiers in workspace
47803
- */
47804
- prefix?: string | null;
47805
- cacheExtraLimit?: number;
47806
- dataSource?: JsonApiWorkspaceInAttributesDataSource;
47807
- }
47808
-
47809
- /**
47810
- * The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
47811
- */
47812
- export declare interface JsonApiWorkspaceInAttributesDataSource {
47813
- /**
47814
- * The ID of the used data source.
47815
- */
47816
- id: string;
47817
- /**
47818
- * The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
47819
- */
47820
- schemaPath?: Array<string>;
47773
+ attributes?: JsonApiWorkspaceOutAttributes;
47774
+ relationships?: JsonApiWorkspaceOutRelationships;
47821
47775
  }
47822
47776
 
47823
47777
  export declare interface JsonApiWorkspaceInDocument {
47824
47778
  data: JsonApiWorkspaceIn;
47825
47779
  }
47826
47780
 
47827
- export declare interface JsonApiWorkspaceInRelationships {
47828
- parent?: JsonApiWorkspaceInRelationshipsParent;
47829
- }
47830
-
47831
- export declare interface JsonApiWorkspaceInRelationshipsParent {
47832
- data: JsonApiWorkspaceLinkage | null;
47833
- }
47834
-
47835
47781
  export declare type JsonApiWorkspaceInTypeEnum = "workspace";
47836
47782
 
47837
47783
  /**
@@ -47857,8 +47803,42 @@ export declare interface JsonApiWorkspaceOut {
47857
47803
  */
47858
47804
  id: string;
47859
47805
  meta?: JsonApiWorkspaceOutMeta;
47860
- attributes?: JsonApiWorkspaceInAttributes;
47861
- relationships?: JsonApiWorkspaceInRelationships;
47806
+ attributes?: JsonApiWorkspaceOutAttributes;
47807
+ relationships?: JsonApiWorkspaceOutRelationships;
47808
+ }
47809
+
47810
+ export declare interface JsonApiWorkspaceOutAttributes {
47811
+ name?: string | null;
47812
+ /**
47813
+ * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
47814
+ * @deprecated
47815
+ */
47816
+ earlyAccess?: string | null;
47817
+ /**
47818
+ * The early access feature identifiers. They are used to enable experimental features.
47819
+ */
47820
+ earlyAccessValues?: Array<string> | null;
47821
+ description?: string | null;
47822
+ /**
47823
+ * Custom prefix of entity identifiers in workspace
47824
+ */
47825
+ prefix?: string | null;
47826
+ cacheExtraLimit?: number;
47827
+ dataSource?: JsonApiWorkspaceOutAttributesDataSource;
47828
+ }
47829
+
47830
+ /**
47831
+ * The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
47832
+ */
47833
+ export declare interface JsonApiWorkspaceOutAttributesDataSource {
47834
+ /**
47835
+ * The ID of the used data source.
47836
+ */
47837
+ id: string;
47838
+ /**
47839
+ * The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
47840
+ */
47841
+ schemaPath?: Array<string>;
47862
47842
  }
47863
47843
 
47864
47844
  export declare interface JsonApiWorkspaceOutDocument {
@@ -47876,7 +47856,7 @@ export declare interface JsonApiWorkspaceOutDocument {
47876
47856
  export declare interface JsonApiWorkspaceOutList {
47877
47857
  data: Array<JsonApiWorkspaceOutWithLinks>;
47878
47858
  links?: ListLinks;
47879
- meta?: JsonApiAggregatedFactOutListMeta;
47859
+ meta?: JsonApiColorPaletteOutListMeta;
47880
47860
  /**
47881
47861
  * Included resources
47882
47862
  */
@@ -47924,6 +47904,14 @@ export declare interface JsonApiWorkspaceOutMetaHierarchy {
47924
47904
 
47925
47905
  export declare type JsonApiWorkspaceOutMetaPermissionsEnum = "MANAGE" | "ANALYZE" | "EXPORT" | "EXPORT_TABULAR" | "EXPORT_PDF" | "CREATE_AUTOMATION" | "USE_AI_ASSISTANT" | "CREATE_FILTER_VIEW" | "VIEW";
47926
47906
 
47907
+ export declare interface JsonApiWorkspaceOutRelationships {
47908
+ parent?: JsonApiWorkspaceOutRelationshipsParent;
47909
+ }
47910
+
47911
+ export declare interface JsonApiWorkspaceOutRelationshipsParent {
47912
+ data: JsonApiWorkspaceLinkage | null;
47913
+ }
47914
+
47927
47915
  export declare type JsonApiWorkspaceOutTypeEnum = "workspace";
47928
47916
 
47929
47917
  export declare interface JsonApiWorkspaceOutWithLinks {
@@ -47936,8 +47924,8 @@ export declare interface JsonApiWorkspaceOutWithLinks {
47936
47924
  */
47937
47925
  id: string;
47938
47926
  meta?: JsonApiWorkspaceOutMeta;
47939
- attributes?: JsonApiWorkspaceInAttributes;
47940
- relationships?: JsonApiWorkspaceInRelationships;
47927
+ attributes?: JsonApiWorkspaceOutAttributes;
47928
+ relationships?: JsonApiWorkspaceOutRelationships;
47941
47929
  links?: ObjectLinks;
47942
47930
  }
47943
47931
 
@@ -47955,8 +47943,8 @@ export declare interface JsonApiWorkspacePatch {
47955
47943
  * API identifier of an object
47956
47944
  */
47957
47945
  id: string;
47958
- attributes?: JsonApiWorkspaceInAttributes;
47959
- relationships?: JsonApiWorkspaceInRelationships;
47946
+ attributes?: JsonApiWorkspaceOutAttributes;
47947
+ relationships?: JsonApiWorkspaceOutRelationships;
47960
47948
  }
47961
47949
 
47962
47950
  export declare interface JsonApiWorkspacePatchDocument {
@@ -47977,7 +47965,7 @@ export declare interface JsonApiWorkspaceSettingIn {
47977
47965
  * API identifier of an object
47978
47966
  */
47979
47967
  id: string;
47980
- attributes?: JsonApiUserSettingInAttributes;
47968
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
47981
47969
  }
47982
47970
 
47983
47971
  export declare interface JsonApiWorkspaceSettingInDocument {
@@ -47998,8 +47986,8 @@ export declare interface JsonApiWorkspaceSettingOut {
47998
47986
  * API identifier of an object
47999
47987
  */
48000
47988
  id: string;
48001
- meta?: JsonApiDatasetOutMeta;
48002
- attributes?: JsonApiUserSettingInAttributes;
47989
+ meta?: JsonApiVisualizationObjectOutMeta;
47990
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
48003
47991
  }
48004
47992
 
48005
47993
  export declare interface JsonApiWorkspaceSettingOutDocument {
@@ -48013,7 +48001,7 @@ export declare interface JsonApiWorkspaceSettingOutDocument {
48013
48001
  export declare interface JsonApiWorkspaceSettingOutList {
48014
48002
  data: Array<JsonApiWorkspaceSettingOutWithLinks>;
48015
48003
  links?: ListLinks;
48016
- meta?: JsonApiAggregatedFactOutListMeta;
48004
+ meta?: JsonApiColorPaletteOutListMeta;
48017
48005
  }
48018
48006
 
48019
48007
  export declare type JsonApiWorkspaceSettingOutTypeEnum = "workspaceSetting";
@@ -48027,8 +48015,8 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
48027
48015
  * API identifier of an object
48028
48016
  */
48029
48017
  id: string;
48030
- meta?: JsonApiDatasetOutMeta;
48031
- attributes?: JsonApiUserSettingInAttributes;
48018
+ meta?: JsonApiVisualizationObjectOutMeta;
48019
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
48032
48020
  links?: ObjectLinks;
48033
48021
  }
48034
48022
 
@@ -48046,7 +48034,7 @@ export declare interface JsonApiWorkspaceSettingPatch {
48046
48034
  * API identifier of an object
48047
48035
  */
48048
48036
  id: string;
48049
- attributes?: JsonApiUserSettingInAttributes;
48037
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
48050
48038
  }
48051
48039
 
48052
48040
  export declare interface JsonApiWorkspaceSettingPatchDocument {
@@ -48067,9 +48055,19 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
48067
48055
  * API identifier of an object
48068
48056
  */
48069
48057
  id?: string;
48070
- attributes?: JsonApiUserSettingInAttributes;
48058
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
48071
48059
  }
48072
48060
 
48061
+ export declare interface JsonApiWorkspaceSettingPostOptionalIdAttributes {
48062
+ /**
48063
+ * Free-form JSON content. Maximum supported length is 15000 characters.
48064
+ */
48065
+ content?: object;
48066
+ type?: JsonApiWorkspaceSettingPostOptionalIdAttributesTypeEnum;
48067
+ }
48068
+
48069
+ export declare type JsonApiWorkspaceSettingPostOptionalIdAttributesTypeEnum = "TIMEZONE" | "ACTIVE_THEME" | "ACTIVE_COLOR_PALETTE" | "ACTIVE_LLM_ENDPOINT" | "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";
48070
+
48073
48071
  export declare interface JsonApiWorkspaceSettingPostOptionalIdDocument {
48074
48072
  data: JsonApiWorkspaceSettingPostOptionalId;
48075
48073
  }