@gooddata/api-client-tiger 11.9.0-alpha.4 → 11.9.0-alpha.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/esm/__version.d.ts +1 -1
  2. package/esm/__version.js +1 -1
  3. package/esm/api-client-tiger.d.ts +718 -643
  4. package/esm/generated/afm-rest-api/api.d.ts +19 -0
  5. package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
  6. package/esm/generated/afm-rest-api/api.js +10 -0
  7. package/esm/generated/afm-rest-api/api.js.map +1 -1
  8. package/esm/generated/afm-rest-api/openapi-spec.json +23 -0
  9. package/esm/generated/automation-json-api/api.d.ts +6 -0
  10. package/esm/generated/automation-json-api/api.d.ts.map +1 -1
  11. package/esm/generated/automation-json-api/api.js.map +1 -1
  12. package/esm/generated/automation-json-api/index.d.ts.map +1 -1
  13. package/esm/generated/automation-json-api/index.js.map +1 -1
  14. package/esm/generated/automation-json-api/openapi-spec.json +10 -0
  15. package/esm/generated/export-json-api/api.d.ts +6 -0
  16. package/esm/generated/export-json-api/api.d.ts.map +1 -1
  17. package/esm/generated/export-json-api/api.js.map +1 -1
  18. package/esm/generated/export-json-api/openapi-spec.json +22 -0
  19. package/esm/generated/metadata-json-api/api.d.ts +631 -591
  20. package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
  21. package/esm/generated/metadata-json-api/api.js +72 -69
  22. package/esm/generated/metadata-json-api/api.js.map +1 -1
  23. package/esm/generated/metadata-json-api/openapi-spec.json +9548 -9475
  24. package/esm/generated/result-json-api/api.d.ts +154 -0
  25. package/esm/generated/result-json-api/api.d.ts.map +1 -1
  26. package/esm/generated/result-json-api/api.js +127 -0
  27. package/esm/generated/result-json-api/api.js.map +1 -1
  28. package/esm/generated/result-json-api/openapi-spec.json +164 -0
  29. package/package.json +4 -4
@@ -11095,6 +11095,12 @@ export declare interface AutomationDashboardTabularExportRequestV2 {
11095
11095
  * List of filters that will be used instead of the default dashboard filters.
11096
11096
  */
11097
11097
  dashboardFiltersOverride?: Array<AutomationDashboardFilter>;
11098
+ /**
11099
+ * Map of tab-specific filter overrides. Key is tabId, value is list of filters for that tab.
11100
+ */
11101
+ dashboardTabsFiltersOverrides?: {
11102
+ [key: string]: Array<AutomationDashboardFilter>;
11103
+ };
11098
11104
  /**
11099
11105
  * Dashboard identifier
11100
11106
  */
@@ -14177,6 +14183,10 @@ export declare interface CacheUsageData {
14177
14183
  */
14178
14184
  declare interface ChangeAnalysisParams {
14179
14185
  measure: AfmMeasureItem;
14186
+ /**
14187
+ * The title of the measure being analyzed
14188
+ */
14189
+ measureTitle: string;
14180
14190
  dateAttribute: AfmAttributeItem;
14181
14191
  /**
14182
14192
  * The reference time period
@@ -14365,8 +14375,25 @@ export declare interface ChatRequest {
14365
14375
  * If true, includes hidden objects in search and visualization building. If false (default), excludes objects where isHidden=true.
14366
14376
  */
14367
14377
  includeHidden?: boolean;
14378
+ /**
14379
+ * List of object types to filter the search and visualization building. If empty or null, all object types are considered.
14380
+ */
14381
+ objectTypes?: Array<ChatRequestObjectTypesEnum>;
14368
14382
  }
14369
14383
 
14384
+ declare const ChatRequestObjectTypesEnum: {
14385
+ readonly ATTRIBUTE: "attribute";
14386
+ readonly METRIC: "metric";
14387
+ readonly FACT: "fact";
14388
+ readonly LABEL: "label";
14389
+ readonly DATE: "date";
14390
+ readonly DATASET: "dataset";
14391
+ readonly VISUALIZATION: "visualization";
14392
+ readonly DASHBOARD: "dashboard";
14393
+ };
14394
+
14395
+ declare type ChatRequestObjectTypesEnum = (typeof ChatRequestObjectTypesEnum)[keyof typeof ChatRequestObjectTypesEnum];
14396
+
14370
14397
  export declare interface ChatResult {
14371
14398
  routing?: RouteResult;
14372
14399
  /**
@@ -17034,6 +17061,12 @@ export declare interface DashboardTabularExportRequestV2 {
17034
17061
  * List of filters that will be used instead of the default dashboard filters.
17035
17062
  */
17036
17063
  dashboardFiltersOverride?: Array<DashboardFilter>;
17064
+ /**
17065
+ * Map of tab-specific filter overrides. Key is tabId, value is list of filters for that tab.
17066
+ */
17067
+ dashboardTabsFiltersOverrides?: {
17068
+ [key: string]: Array<DashboardFilter>;
17069
+ };
17037
17070
  /**
17038
17071
  * Dashboard identifier
17039
17072
  */
@@ -21062,6 +21095,14 @@ export declare interface DeclarativeLabel {
21062
21095
  */
21063
21096
  isHidden?: boolean;
21064
21097
  geoAreaConfig?: GeoAreaConfig;
21098
+ /**
21099
+ * Default label locale.
21100
+ */
21101
+ locale?: string;
21102
+ /**
21103
+ * Other translations.
21104
+ */
21105
+ translations?: Array<DeclarativeLabelTranslation>;
21065
21106
  }
21066
21107
 
21067
21108
  export declare const DeclarativeLabelSourceColumnDataTypeEnum: {
@@ -21076,6 +21117,20 @@ export declare const DeclarativeLabelSourceColumnDataTypeEnum: {
21076
21117
 
21077
21118
  export declare type DeclarativeLabelSourceColumnDataTypeEnum = (typeof DeclarativeLabelSourceColumnDataTypeEnum)[keyof typeof DeclarativeLabelSourceColumnDataTypeEnum];
21078
21119
 
21120
+ /**
21121
+ * A label translation.
21122
+ */
21123
+ export declare interface DeclarativeLabelTranslation {
21124
+ /**
21125
+ * Translation locale.
21126
+ */
21127
+ locale: string;
21128
+ /**
21129
+ * Translation source column.
21130
+ */
21131
+ sourceColumn: string;
21132
+ }
21133
+
21079
21134
  export declare const DeclarativeLabelValueTypeEnum: {
21080
21135
  readonly TEXT: "TEXT";
21081
21136
  readonly HYPERLINK: "HYPERLINK";
@@ -21508,6 +21563,7 @@ export declare const DeclarativeSettingTypeEnum: {
21508
21563
  readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
21509
21564
  readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
21510
21565
  readonly DATA_LOCALE: "DATA_LOCALE";
21566
+ readonly LDM_DEFAULT_LOCALE: "LDM_DEFAULT_LOCALE";
21511
21567
  };
21512
21568
 
21513
21569
  export declare type DeclarativeSettingTypeEnum = (typeof DeclarativeSettingTypeEnum)[keyof typeof DeclarativeSettingTypeEnum];
@@ -40163,6 +40219,12 @@ export declare interface ExportDashboardTabularExportRequest {
40163
40219
  * List of filters that will be used instead of the default dashboard filters.
40164
40220
  */
40165
40221
  dashboardFiltersOverride?: Array<ExportDashboardFilter>;
40222
+ /**
40223
+ * Map of tab-specific filter overrides. Key is tabId, value is list of filters for that tab.
40224
+ */
40225
+ dashboardTabsFiltersOverrides?: {
40226
+ [key: string]: Array<ExportDashboardFilter>;
40227
+ };
40166
40228
  /**
40167
40229
  * List of widget identifiers to be exported. Note that only one widget is currently supported.
40168
40230
  */
@@ -43041,6 +43103,10 @@ export declare interface GenerateLdmRequest {
43041
43103
  * Columns starting with this prefix will be considered as secondary labels. The prefix is then followed by the value of `separator` parameter. Given the secondary label prefix is `ls` and separator is `__`, the columns with name like `ls__country_id__country_name` will be considered as secondary labels.
43042
43104
  */
43043
43105
  secondaryLabelPrefix?: string;
43106
+ /**
43107
+ * Columns starting with this prefix will be considered as secondary label translation. The prefix is then followed by the value of `separator` parameter. Given the translation prefix is `tr` and separator is `__`, the columns with name like `tr__attribute__label__en-US` will be considered as secondary label en-US translation to `label` label in `attribute` attribute.
43108
+ */
43109
+ translationPrefix?: string;
43044
43110
  /**
43045
43111
  * Columns starting with this prefix will be considered as aggregated facts. The prefix is then followed by the value of `separator` parameter. Given the aggregated fact prefix is `aggr` and separator is `__`, the columns with name like `aggr__sum__product__sold` will be considered as aggregated sold fact in the product table with SUM aggregate function.
43046
43112
  */
@@ -45113,7 +45179,7 @@ export declare interface JsonApiAggregatedFactOut {
45113
45179
  * API identifier of an object
45114
45180
  */
45115
45181
  id: string;
45116
- meta?: JsonApiVisualizationObjectOutMeta;
45182
+ meta?: JsonApiDatasetOutMeta;
45117
45183
  attributes: JsonApiAggregatedFactOutAttributes;
45118
45184
  relationships?: JsonApiAggregatedFactOutRelationships;
45119
45185
  }
@@ -45179,7 +45245,7 @@ export declare interface JsonApiAggregatedFactOutListMeta {
45179
45245
  }
45180
45246
 
45181
45247
  export declare interface JsonApiAggregatedFactOutRelationships {
45182
- dataset?: JsonApiAttributeOutRelationshipsDataset;
45248
+ dataset?: JsonApiFactOutRelationshipsDataset;
45183
45249
  sourceFact?: JsonApiAggregatedFactOutRelationshipsSourceFact;
45184
45250
  }
45185
45251
 
@@ -45202,7 +45268,7 @@ export declare interface JsonApiAggregatedFactOutWithLinks {
45202
45268
  * API identifier of an object
45203
45269
  */
45204
45270
  id: string;
45205
- meta?: JsonApiVisualizationObjectOutMeta;
45271
+ meta?: JsonApiDatasetOutMeta;
45206
45272
  attributes: JsonApiAggregatedFactOutAttributes;
45207
45273
  relationships?: JsonApiAggregatedFactOutRelationships;
45208
45274
  links?: ObjectLinks;
@@ -45226,18 +45292,7 @@ export declare interface JsonApiAnalyticalDashboardIn {
45226
45292
  * API identifier of an object
45227
45293
  */
45228
45294
  id: string;
45229
- attributes: JsonApiAnalyticalDashboardInAttributes;
45230
- }
45231
-
45232
- export declare interface JsonApiAnalyticalDashboardInAttributes {
45233
- title?: string;
45234
- description?: string;
45235
- tags?: Array<string>;
45236
- areRelationsValid?: boolean;
45237
- /**
45238
- * Free-form JSON content. Maximum supported length is 250000 characters.
45239
- */
45240
- content: object;
45295
+ attributes: JsonApiFilterContextOutAttributes;
45241
45296
  }
45242
45297
 
45243
45298
  export declare interface JsonApiAnalyticalDashboardInDocument {
@@ -45326,7 +45381,7 @@ export declare interface JsonApiAnalyticalDashboardOutMeta {
45326
45381
  * List of valid permissions for a logged-in user.
45327
45382
  */
45328
45383
  permissions?: Array<JsonApiAnalyticalDashboardOutMetaPermissionsEnum>;
45329
- origin?: JsonApiVisualizationObjectOutMetaOrigin;
45384
+ origin?: JsonApiDatasetOutMetaOrigin;
45330
45385
  accessInfo?: JsonApiAnalyticalDashboardOutMetaAccessInfo;
45331
45386
  }
45332
45387
 
@@ -45352,7 +45407,7 @@ export declare interface JsonApiAnalyticalDashboardOutRelationships {
45352
45407
  analyticalDashboards?: JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards;
45353
45408
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
45354
45409
  metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
45355
- datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
45410
+ datasets?: JsonApiDatasetOutRelationshipsReferences;
45356
45411
  filterContexts?: JsonApiAnalyticalDashboardOutRelationshipsFilterContexts;
45357
45412
  dashboardPlugins?: JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins;
45358
45413
  }
@@ -45460,7 +45515,7 @@ export declare interface JsonApiAnalyticalDashboardPostOptionalId {
45460
45515
  * API identifier of an object
45461
45516
  */
45462
45517
  id?: string;
45463
- attributes: JsonApiAnalyticalDashboardInAttributes;
45518
+ attributes: JsonApiFilterContextOutAttributes;
45464
45519
  }
45465
45520
 
45466
45521
  export declare interface JsonApiAnalyticalDashboardPostOptionalIdDocument {
@@ -45620,7 +45675,7 @@ export declare interface JsonApiAttributeHierarchyOut {
45620
45675
  * API identifier of an object
45621
45676
  */
45622
45677
  id: string;
45623
- meta?: JsonApiVisualizationObjectOutMeta;
45678
+ meta?: JsonApiDatasetOutMeta;
45624
45679
  attributes?: JsonApiAttributeHierarchyOutAttributes;
45625
45680
  relationships?: JsonApiAttributeHierarchyOutRelationships;
45626
45681
  }
@@ -45668,7 +45723,7 @@ export declare interface JsonApiAttributeHierarchyOutList {
45668
45723
  export declare interface JsonApiAttributeHierarchyOutRelationships {
45669
45724
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
45670
45725
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
45671
- attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
45726
+ attributes?: JsonApiDatasetOutRelationshipsAttributes;
45672
45727
  }
45673
45728
 
45674
45729
  export declare const JsonApiAttributeHierarchyOutTypeEnum: {
@@ -45686,7 +45741,7 @@ export declare interface JsonApiAttributeHierarchyOutWithLinks {
45686
45741
  * API identifier of an object
45687
45742
  */
45688
45743
  id: string;
45689
- meta?: JsonApiVisualizationObjectOutMeta;
45744
+ meta?: JsonApiDatasetOutMeta;
45690
45745
  attributes?: JsonApiAttributeHierarchyOutAttributes;
45691
45746
  relationships?: JsonApiAttributeHierarchyOutRelationships;
45692
45747
  links?: ObjectLinks;
@@ -45749,7 +45804,7 @@ export declare interface JsonApiAttributeOut {
45749
45804
  * API identifier of an object
45750
45805
  */
45751
45806
  id: string;
45752
- meta?: JsonApiVisualizationObjectOutMeta;
45807
+ meta?: JsonApiDatasetOutMeta;
45753
45808
  attributes?: JsonApiAttributeOutAttributes;
45754
45809
  relationships?: JsonApiAttributeOutRelationships;
45755
45810
  }
@@ -45835,7 +45890,7 @@ export declare interface JsonApiAttributeOutList {
45835
45890
  }
45836
45891
 
45837
45892
  export declare interface JsonApiAttributeOutRelationships {
45838
- dataset?: JsonApiAttributeOutRelationshipsDataset;
45893
+ dataset?: JsonApiFactOutRelationshipsDataset;
45839
45894
  defaultView?: JsonApiAttributeOutRelationshipsDefaultView;
45840
45895
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
45841
45896
  attributeHierarchies?: JsonApiAttributeOutRelationshipsAttributeHierarchies;
@@ -45848,10 +45903,6 @@ export declare interface JsonApiAttributeOutRelationshipsAttributeHierarchies {
45848
45903
  data: Array<JsonApiAttributeHierarchyLinkage>;
45849
45904
  }
45850
45905
 
45851
- export declare interface JsonApiAttributeOutRelationshipsDataset {
45852
- data: JsonApiDatasetLinkage | null;
45853
- }
45854
-
45855
45906
  export declare interface JsonApiAttributeOutRelationshipsDefaultView {
45856
45907
  data: JsonApiLabelLinkage | null;
45857
45908
  }
@@ -45871,7 +45922,7 @@ export declare interface JsonApiAttributeOutWithLinks {
45871
45922
  * API identifier of an object
45872
45923
  */
45873
45924
  id: string;
45874
- meta?: JsonApiVisualizationObjectOutMeta;
45925
+ meta?: JsonApiDatasetOutMeta;
45875
45926
  attributes?: JsonApiAttributeOutAttributes;
45876
45927
  relationships?: JsonApiAttributeOutRelationships;
45877
45928
  links?: ObjectLinks;
@@ -45908,7 +45959,7 @@ export declare interface JsonApiAutomationInAttributes {
45908
45959
  * Additional details to be included in the automated message.
45909
45960
  */
45910
45961
  details?: object;
45911
- metadata?: JsonApiAutomationInAttributesMetadata | null;
45962
+ metadata?: JsonApiAutomationOutAttributesMetadata | null;
45912
45963
  /**
45913
45964
  * Current state of the automation.
45914
45965
  */
@@ -45917,38 +45968,18 @@ export declare interface JsonApiAutomationInAttributes {
45917
45968
  * Specify automation evaluation mode.
45918
45969
  */
45919
45970
  evaluationMode?: JsonApiAutomationInAttributesEvaluationModeEnum;
45920
- schedule?: JsonApiAutomationInAttributesSchedule;
45921
- alert?: JsonApiAutomationInAttributesAlert;
45922
- tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
45923
- visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
45924
- imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
45925
- rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
45926
- slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
45927
- dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
45971
+ schedule?: JsonApiAutomationOutAttributesSchedule;
45972
+ alert?: JsonApiAutomationOutAttributesAlert;
45973
+ tabularExports?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
45974
+ visualExports?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
45975
+ imageExports?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
45976
+ rawExports?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
45977
+ slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
45978
+ dashboardTabularExports?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
45928
45979
  /**
45929
45980
  * External recipients of the automation action results.
45930
45981
  */
45931
- externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
45932
- }
45933
-
45934
- export declare interface JsonApiAutomationInAttributesAlert {
45935
- execution: AlertAfm;
45936
- condition: AlertCondition;
45937
- /**
45938
- * 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.
45939
- */
45940
- trigger?: JsonApiAutomationInAttributesAlertTriggerEnum;
45941
- }
45942
-
45943
- export declare const JsonApiAutomationInAttributesAlertTriggerEnum: {
45944
- readonly ALWAYS: "ALWAYS";
45945
- readonly ONCE: "ONCE";
45946
- };
45947
-
45948
- export declare type JsonApiAutomationInAttributesAlertTriggerEnum = (typeof JsonApiAutomationInAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationInAttributesAlertTriggerEnum];
45949
-
45950
- export declare interface JsonApiAutomationInAttributesDashboardTabularExportsInner {
45951
- requestPayload: DashboardTabularExportRequestV2;
45982
+ externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
45952
45983
  }
45953
45984
 
45954
45985
  export declare const JsonApiAutomationInAttributesEvaluationModeEnum: {
@@ -45958,53 +45989,6 @@ export declare const JsonApiAutomationInAttributesEvaluationModeEnum: {
45958
45989
 
45959
45990
  export declare type JsonApiAutomationInAttributesEvaluationModeEnum = (typeof JsonApiAutomationInAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationInAttributesEvaluationModeEnum];
45960
45991
 
45961
- export declare interface JsonApiAutomationInAttributesExternalRecipientsInner {
45962
- /**
45963
- * E-mail address to send notifications from.
45964
- */
45965
- email: string;
45966
- }
45967
-
45968
- export declare interface JsonApiAutomationInAttributesImageExportsInner {
45969
- requestPayload: ImageExportRequest;
45970
- }
45971
-
45972
- /**
45973
- * Additional information for the automation.
45974
- */
45975
- export declare interface JsonApiAutomationInAttributesMetadata {
45976
- [key: string]: any;
45977
- widget?: string;
45978
- visibleFilters?: Array<VisibleFilter>;
45979
- }
45980
-
45981
- export declare interface JsonApiAutomationInAttributesRawExportsInner {
45982
- requestPayload: RawExportAutomationRequest;
45983
- }
45984
-
45985
- export declare interface JsonApiAutomationInAttributesSchedule {
45986
- /**
45987
- * 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.
45988
- */
45989
- cron: string;
45990
- /**
45991
- * Human-readable description of the cron expression.
45992
- */
45993
- cronDescription?: string;
45994
- /**
45995
- * Timezone in which the schedule is defined.
45996
- */
45997
- timezone: string;
45998
- /**
45999
- * Timestamp of the first scheduled action. If not provided default to the next scheduled time.
46000
- */
46001
- firstRun?: string;
46002
- }
46003
-
46004
- export declare interface JsonApiAutomationInAttributesSlidesExportsInner {
46005
- requestPayload: SlidesExportRequest;
46006
- }
46007
-
46008
45992
  export declare const JsonApiAutomationInAttributesStateEnum: {
46009
45993
  readonly ACTIVE: "ACTIVE";
46010
45994
  readonly PAUSED: "PAUSED";
@@ -46012,45 +45996,15 @@ export declare const JsonApiAutomationInAttributesStateEnum: {
46012
45996
 
46013
45997
  export declare type JsonApiAutomationInAttributesStateEnum = (typeof JsonApiAutomationInAttributesStateEnum)[keyof typeof JsonApiAutomationInAttributesStateEnum];
46014
45998
 
46015
- export declare interface JsonApiAutomationInAttributesTabularExportsInner {
46016
- requestPayload: TabularExportRequest;
46017
- }
46018
-
46019
- export declare interface JsonApiAutomationInAttributesVisualExportsInner {
46020
- requestPayload: VisualExportRequest;
46021
- }
46022
-
46023
45999
  export declare interface JsonApiAutomationInDocument {
46024
46000
  data: JsonApiAutomationIn;
46025
46001
  }
46026
46002
 
46027
46003
  export declare interface JsonApiAutomationInRelationships {
46028
- notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
46029
- analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
46030
- exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
46031
- recipients?: JsonApiAutomationInRelationshipsRecipients;
46032
- }
46033
-
46034
- export declare interface JsonApiAutomationInRelationshipsAnalyticalDashboard {
46035
- data: JsonApiAnalyticalDashboardLinkage | null;
46036
- }
46037
-
46038
- export declare interface JsonApiAutomationInRelationshipsExportDefinitions {
46039
- /**
46040
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
46041
- */
46042
- data: Array<JsonApiExportDefinitionLinkage>;
46043
- }
46044
-
46045
- export declare interface JsonApiAutomationInRelationshipsNotificationChannel {
46046
- data: JsonApiNotificationChannelLinkage | null;
46047
- }
46048
-
46049
- export declare interface JsonApiAutomationInRelationshipsRecipients {
46050
- /**
46051
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
46052
- */
46053
- data: Array<JsonApiUserLinkage>;
46004
+ notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
46005
+ analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
46006
+ exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
46007
+ recipients?: JsonApiAutomationOutRelationshipsRecipients;
46054
46008
  }
46055
46009
 
46056
46010
  export declare const JsonApiAutomationInTypeEnum: {
@@ -46085,7 +46039,7 @@ export declare interface JsonApiAutomationOut {
46085
46039
  * API identifier of an object
46086
46040
  */
46087
46041
  id: string;
46088
- meta?: JsonApiVisualizationObjectOutMeta;
46042
+ meta?: JsonApiDatasetOutMeta;
46089
46043
  attributes?: JsonApiAutomationOutAttributes;
46090
46044
  relationships?: JsonApiAutomationOutRelationships;
46091
46045
  }
@@ -46099,7 +46053,7 @@ export declare interface JsonApiAutomationOutAttributes {
46099
46053
  * Additional details to be included in the automated message.
46100
46054
  */
46101
46055
  details?: object;
46102
- metadata?: JsonApiAutomationInAttributesMetadata | null;
46056
+ metadata?: JsonApiAutomationOutAttributesMetadata | null;
46103
46057
  /**
46104
46058
  * Current state of the automation.
46105
46059
  */
@@ -46108,22 +46062,42 @@ export declare interface JsonApiAutomationOutAttributes {
46108
46062
  * Specify automation evaluation mode.
46109
46063
  */
46110
46064
  evaluationMode?: JsonApiAutomationOutAttributesEvaluationModeEnum;
46111
- schedule?: JsonApiAutomationInAttributesSchedule;
46112
- alert?: JsonApiAutomationInAttributesAlert;
46113
- tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
46114
- visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
46115
- imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
46116
- rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
46117
- slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
46118
- dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
46065
+ schedule?: JsonApiAutomationOutAttributesSchedule;
46066
+ alert?: JsonApiAutomationOutAttributesAlert;
46067
+ tabularExports?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
46068
+ visualExports?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
46069
+ imageExports?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
46070
+ rawExports?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
46071
+ slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
46072
+ dashboardTabularExports?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
46119
46073
  /**
46120
46074
  * External recipients of the automation action results.
46121
46075
  */
46122
- externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
46076
+ externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
46123
46077
  createdAt?: string;
46124
46078
  modifiedAt?: string;
46125
46079
  }
46126
46080
 
46081
+ export declare interface JsonApiAutomationOutAttributesAlert {
46082
+ execution: AlertAfm;
46083
+ condition: AlertCondition;
46084
+ /**
46085
+ * 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.
46086
+ */
46087
+ trigger?: JsonApiAutomationOutAttributesAlertTriggerEnum;
46088
+ }
46089
+
46090
+ export declare const JsonApiAutomationOutAttributesAlertTriggerEnum: {
46091
+ readonly ALWAYS: "ALWAYS";
46092
+ readonly ONCE: "ONCE";
46093
+ };
46094
+
46095
+ export declare type JsonApiAutomationOutAttributesAlertTriggerEnum = (typeof JsonApiAutomationOutAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationOutAttributesAlertTriggerEnum];
46096
+
46097
+ export declare interface JsonApiAutomationOutAttributesDashboardTabularExportsInner {
46098
+ requestPayload: DashboardTabularExportRequestV2;
46099
+ }
46100
+
46127
46101
  export declare const JsonApiAutomationOutAttributesEvaluationModeEnum: {
46128
46102
  readonly SHARED: "SHARED";
46129
46103
  readonly PER_RECIPIENT: "PER_RECIPIENT";
@@ -46131,6 +46105,53 @@ export declare const JsonApiAutomationOutAttributesEvaluationModeEnum: {
46131
46105
 
46132
46106
  export declare type JsonApiAutomationOutAttributesEvaluationModeEnum = (typeof JsonApiAutomationOutAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationOutAttributesEvaluationModeEnum];
46133
46107
 
46108
+ export declare interface JsonApiAutomationOutAttributesExternalRecipientsInner {
46109
+ /**
46110
+ * E-mail address to send notifications from.
46111
+ */
46112
+ email: string;
46113
+ }
46114
+
46115
+ export declare interface JsonApiAutomationOutAttributesImageExportsInner {
46116
+ requestPayload: ImageExportRequest;
46117
+ }
46118
+
46119
+ /**
46120
+ * Additional information for the automation.
46121
+ */
46122
+ export declare interface JsonApiAutomationOutAttributesMetadata {
46123
+ [key: string]: any;
46124
+ widget?: string;
46125
+ visibleFilters?: Array<VisibleFilter>;
46126
+ }
46127
+
46128
+ export declare interface JsonApiAutomationOutAttributesRawExportsInner {
46129
+ requestPayload: RawExportAutomationRequest;
46130
+ }
46131
+
46132
+ export declare interface JsonApiAutomationOutAttributesSchedule {
46133
+ /**
46134
+ * 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.
46135
+ */
46136
+ cron: string;
46137
+ /**
46138
+ * Human-readable description of the cron expression.
46139
+ */
46140
+ cronDescription?: string;
46141
+ /**
46142
+ * Timezone in which the schedule is defined.
46143
+ */
46144
+ timezone: string;
46145
+ /**
46146
+ * Timestamp of the first scheduled action. If not provided default to the next scheduled time.
46147
+ */
46148
+ firstRun?: string;
46149
+ }
46150
+
46151
+ export declare interface JsonApiAutomationOutAttributesSlidesExportsInner {
46152
+ requestPayload: SlidesExportRequest;
46153
+ }
46154
+
46134
46155
  export declare const JsonApiAutomationOutAttributesStateEnum: {
46135
46156
  readonly ACTIVE: "ACTIVE";
46136
46157
  readonly PAUSED: "PAUSED";
@@ -46138,6 +46159,14 @@ export declare const JsonApiAutomationOutAttributesStateEnum: {
46138
46159
 
46139
46160
  export declare type JsonApiAutomationOutAttributesStateEnum = (typeof JsonApiAutomationOutAttributesStateEnum)[keyof typeof JsonApiAutomationOutAttributesStateEnum];
46140
46161
 
46162
+ export declare interface JsonApiAutomationOutAttributesTabularExportsInner {
46163
+ requestPayload: TabularExportRequest;
46164
+ }
46165
+
46166
+ export declare interface JsonApiAutomationOutAttributesVisualExportsInner {
46167
+ requestPayload: VisualExportRequest;
46168
+ }
46169
+
46141
46170
  export declare interface JsonApiAutomationOutDocument {
46142
46171
  data: JsonApiAutomationOut;
46143
46172
  links?: ObjectLinks;
@@ -46166,12 +46195,12 @@ export declare interface JsonApiAutomationOutList {
46166
46195
  }
46167
46196
 
46168
46197
  export declare interface JsonApiAutomationOutRelationships {
46169
- notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
46170
- analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
46198
+ notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
46199
+ analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
46171
46200
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
46172
46201
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
46173
- exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
46174
- recipients?: JsonApiAutomationInRelationshipsRecipients;
46202
+ exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
46203
+ recipients?: JsonApiAutomationOutRelationshipsRecipients;
46175
46204
  automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
46176
46205
  }
46177
46206
 
@@ -46182,6 +46211,24 @@ export declare interface JsonApiAutomationOutRelationshipsAutomationResults {
46182
46211
  data: Array<JsonApiAutomationResultLinkage>;
46183
46212
  }
46184
46213
 
46214
+ export declare interface JsonApiAutomationOutRelationshipsExportDefinitions {
46215
+ /**
46216
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
46217
+ */
46218
+ data: Array<JsonApiExportDefinitionLinkage>;
46219
+ }
46220
+
46221
+ export declare interface JsonApiAutomationOutRelationshipsNotificationChannel {
46222
+ data: JsonApiNotificationChannelLinkage | null;
46223
+ }
46224
+
46225
+ export declare interface JsonApiAutomationOutRelationshipsRecipients {
46226
+ /**
46227
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
46228
+ */
46229
+ data: Array<JsonApiUserLinkage>;
46230
+ }
46231
+
46185
46232
  export declare const JsonApiAutomationOutTypeEnum: {
46186
46233
  readonly AUTOMATION: "automation";
46187
46234
  };
@@ -46197,7 +46244,7 @@ export declare interface JsonApiAutomationOutWithLinks {
46197
46244
  * API identifier of an object
46198
46245
  */
46199
46246
  id: string;
46200
- meta?: JsonApiVisualizationObjectOutMeta;
46247
+ meta?: JsonApiDatasetOutMeta;
46201
46248
  attributes?: JsonApiAutomationOutAttributes;
46202
46249
  relationships?: JsonApiAutomationOutRelationships;
46203
46250
  links?: ObjectLinks;
@@ -46643,15 +46690,7 @@ export declare interface JsonApiCustomApplicationSettingIn {
46643
46690
  * API identifier of an object
46644
46691
  */
46645
46692
  id: string;
46646
- attributes: JsonApiCustomApplicationSettingInAttributes;
46647
- }
46648
-
46649
- export declare interface JsonApiCustomApplicationSettingInAttributes {
46650
- applicationName: string;
46651
- /**
46652
- * Free-form JSON content. Maximum supported length is 15000 characters.
46653
- */
46654
- content: object;
46693
+ attributes: JsonApiCustomApplicationSettingOutAttributes;
46655
46694
  }
46656
46695
 
46657
46696
  export declare interface JsonApiCustomApplicationSettingInDocument {
@@ -46676,8 +46715,16 @@ export declare interface JsonApiCustomApplicationSettingOut {
46676
46715
  * API identifier of an object
46677
46716
  */
46678
46717
  id: string;
46679
- meta?: JsonApiVisualizationObjectOutMeta;
46680
- attributes: JsonApiCustomApplicationSettingInAttributes;
46718
+ meta?: JsonApiDatasetOutMeta;
46719
+ attributes: JsonApiCustomApplicationSettingOutAttributes;
46720
+ }
46721
+
46722
+ export declare interface JsonApiCustomApplicationSettingOutAttributes {
46723
+ applicationName: string;
46724
+ /**
46725
+ * Free-form JSON content. Maximum supported length is 15000 characters.
46726
+ */
46727
+ content: object;
46681
46728
  }
46682
46729
 
46683
46730
  export declare interface JsonApiCustomApplicationSettingOutDocument {
@@ -46709,8 +46756,8 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
46709
46756
  * API identifier of an object
46710
46757
  */
46711
46758
  id: string;
46712
- meta?: JsonApiVisualizationObjectOutMeta;
46713
- attributes: JsonApiCustomApplicationSettingInAttributes;
46759
+ meta?: JsonApiDatasetOutMeta;
46760
+ attributes: JsonApiCustomApplicationSettingOutAttributes;
46714
46761
  links?: ObjectLinks;
46715
46762
  }
46716
46763
 
@@ -46765,7 +46812,7 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
46765
46812
  * API identifier of an object
46766
46813
  */
46767
46814
  id?: string;
46768
- attributes: JsonApiCustomApplicationSettingInAttributes;
46815
+ attributes: JsonApiCustomApplicationSettingOutAttributes;
46769
46816
  }
46770
46817
 
46771
46818
  export declare interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
@@ -46790,18 +46837,7 @@ export declare interface JsonApiDashboardPluginIn {
46790
46837
  * API identifier of an object
46791
46838
  */
46792
46839
  id: string;
46793
- attributes?: JsonApiDashboardPluginInAttributes;
46794
- }
46795
-
46796
- export declare interface JsonApiDashboardPluginInAttributes {
46797
- title?: string;
46798
- description?: string;
46799
- tags?: Array<string>;
46800
- areRelationsValid?: boolean;
46801
- /**
46802
- * Free-form JSON content. Maximum supported length is 250000 characters.
46803
- */
46804
- content?: object;
46840
+ attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
46805
46841
  }
46806
46842
 
46807
46843
  export declare interface JsonApiDashboardPluginInDocument {
@@ -46840,7 +46876,7 @@ export declare interface JsonApiDashboardPluginOut {
46840
46876
  * API identifier of an object
46841
46877
  */
46842
46878
  id: string;
46843
- meta?: JsonApiVisualizationObjectOutMeta;
46879
+ meta?: JsonApiDatasetOutMeta;
46844
46880
  attributes?: JsonApiDashboardPluginOutAttributes;
46845
46881
  relationships?: JsonApiDashboardPluginOutRelationships;
46846
46882
  }
@@ -46900,7 +46936,7 @@ export declare interface JsonApiDashboardPluginOutWithLinks {
46900
46936
  * API identifier of an object
46901
46937
  */
46902
46938
  id: string;
46903
- meta?: JsonApiVisualizationObjectOutMeta;
46939
+ meta?: JsonApiDatasetOutMeta;
46904
46940
  attributes?: JsonApiDashboardPluginOutAttributes;
46905
46941
  relationships?: JsonApiDashboardPluginOutRelationships;
46906
46942
  links?: ObjectLinks;
@@ -46924,7 +46960,7 @@ export declare interface JsonApiDashboardPluginPatch {
46924
46960
  * API identifier of an object
46925
46961
  */
46926
46962
  id: string;
46927
- attributes?: JsonApiDashboardPluginInAttributes;
46963
+ attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
46928
46964
  }
46929
46965
 
46930
46966
  export declare interface JsonApiDashboardPluginPatchDocument {
@@ -46949,7 +46985,18 @@ export declare interface JsonApiDashboardPluginPostOptionalId {
46949
46985
  * API identifier of an object
46950
46986
  */
46951
46987
  id?: string;
46952
- attributes?: JsonApiDashboardPluginInAttributes;
46988
+ attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
46989
+ }
46990
+
46991
+ export declare interface JsonApiDashboardPluginPostOptionalIdAttributes {
46992
+ title?: string;
46993
+ description?: string;
46994
+ tags?: Array<string>;
46995
+ areRelationsValid?: boolean;
46996
+ /**
46997
+ * Free-form JSON content. Maximum supported length is 250000 characters.
46998
+ */
46999
+ content?: object;
46953
47000
  }
46954
47001
 
46955
47002
  export declare interface JsonApiDashboardPluginPostOptionalIdDocument {
@@ -46988,7 +47035,7 @@ export declare interface JsonApiDatasetOut {
46988
47035
  * API identifier of an object
46989
47036
  */
46990
47037
  id: string;
46991
- meta?: JsonApiVisualizationObjectOutMeta;
47038
+ meta?: JsonApiDatasetOutMeta;
46992
47039
  attributes: JsonApiDatasetOutAttributes;
46993
47040
  relationships?: JsonApiDatasetOutRelationships;
46994
47041
  }
@@ -47121,11 +47168,33 @@ export declare interface JsonApiDatasetOutList {
47121
47168
  included?: Array<JsonApiDatasetOutIncludes>;
47122
47169
  }
47123
47170
 
47171
+ export declare interface JsonApiDatasetOutMeta {
47172
+ origin?: JsonApiDatasetOutMetaOrigin;
47173
+ }
47174
+
47175
+ export declare interface JsonApiDatasetOutMetaOrigin {
47176
+ /**
47177
+ * defines type of the origin of the entity
47178
+ */
47179
+ originType: JsonApiDatasetOutMetaOriginOriginTypeEnum;
47180
+ /**
47181
+ * defines id of the workspace where the entity comes from
47182
+ */
47183
+ originId: string;
47184
+ }
47185
+
47186
+ export declare const JsonApiDatasetOutMetaOriginOriginTypeEnum: {
47187
+ readonly NATIVE: "NATIVE";
47188
+ readonly PARENT: "PARENT";
47189
+ };
47190
+
47191
+ export declare type JsonApiDatasetOutMetaOriginOriginTypeEnum = (typeof JsonApiDatasetOutMetaOriginOriginTypeEnum)[keyof typeof JsonApiDatasetOutMetaOriginOriginTypeEnum];
47192
+
47124
47193
  export declare interface JsonApiDatasetOutRelationships {
47125
- attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
47126
- facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
47194
+ attributes?: JsonApiDatasetOutRelationshipsAttributes;
47195
+ facts?: JsonApiDatasetOutRelationshipsFacts;
47127
47196
  aggregatedFacts?: JsonApiDatasetOutRelationshipsAggregatedFacts;
47128
- references?: JsonApiVisualizationObjectOutRelationshipsDatasets;
47197
+ references?: JsonApiDatasetOutRelationshipsReferences;
47129
47198
  workspaceDataFilters?: JsonApiDatasetOutRelationshipsWorkspaceDataFilters;
47130
47199
  }
47131
47200
 
@@ -47136,6 +47205,27 @@ export declare interface JsonApiDatasetOutRelationshipsAggregatedFacts {
47136
47205
  data: Array<JsonApiAggregatedFactLinkage>;
47137
47206
  }
47138
47207
 
47208
+ export declare interface JsonApiDatasetOutRelationshipsAttributes {
47209
+ /**
47210
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
47211
+ */
47212
+ data: Array<JsonApiAttributeLinkage>;
47213
+ }
47214
+
47215
+ export declare interface JsonApiDatasetOutRelationshipsFacts {
47216
+ /**
47217
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
47218
+ */
47219
+ data: Array<JsonApiFactLinkage>;
47220
+ }
47221
+
47222
+ export declare interface JsonApiDatasetOutRelationshipsReferences {
47223
+ /**
47224
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
47225
+ */
47226
+ data: Array<JsonApiDatasetLinkage>;
47227
+ }
47228
+
47139
47229
  export declare interface JsonApiDatasetOutRelationshipsWorkspaceDataFilters {
47140
47230
  /**
47141
47231
  * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
@@ -47158,7 +47248,7 @@ export declare interface JsonApiDatasetOutWithLinks {
47158
47248
  * API identifier of an object
47159
47249
  */
47160
47250
  id: string;
47161
- meta?: JsonApiVisualizationObjectOutMeta;
47251
+ meta?: JsonApiDatasetOutMeta;
47162
47252
  attributes: JsonApiDatasetOutAttributes;
47163
47253
  relationships?: JsonApiDatasetOutRelationships;
47164
47254
  links?: ObjectLinks;
@@ -47736,27 +47826,14 @@ export declare interface JsonApiExportDefinitionIn {
47736
47826
  * API identifier of an object
47737
47827
  */
47738
47828
  id: string;
47739
- attributes?: JsonApiExportDefinitionInAttributes;
47740
- relationships?: JsonApiExportDefinitionInRelationships;
47741
- }
47742
-
47743
- export declare interface JsonApiExportDefinitionInAttributes {
47744
- title?: string;
47745
- description?: string;
47746
- tags?: Array<string>;
47747
- requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
47748
- areRelationsValid?: boolean;
47829
+ attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
47830
+ relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
47749
47831
  }
47750
47832
 
47751
47833
  export declare interface JsonApiExportDefinitionInDocument {
47752
47834
  data: JsonApiExportDefinitionIn;
47753
47835
  }
47754
47836
 
47755
- export declare interface JsonApiExportDefinitionInRelationships {
47756
- visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
47757
- analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
47758
- }
47759
-
47760
47837
  export declare const JsonApiExportDefinitionInTypeEnum: {
47761
47838
  readonly EXPORT_DEFINITION: "exportDefinition";
47762
47839
  };
@@ -47789,7 +47866,7 @@ export declare interface JsonApiExportDefinitionOut {
47789
47866
  * API identifier of an object
47790
47867
  */
47791
47868
  id: string;
47792
- meta?: JsonApiVisualizationObjectOutMeta;
47869
+ meta?: JsonApiDatasetOutMeta;
47793
47870
  attributes?: JsonApiExportDefinitionOutAttributes;
47794
47871
  relationships?: JsonApiExportDefinitionOutRelationships;
47795
47872
  }
@@ -47839,12 +47916,16 @@ export declare interface JsonApiExportDefinitionOutList {
47839
47916
 
47840
47917
  export declare interface JsonApiExportDefinitionOutRelationships {
47841
47918
  visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
47842
- analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
47919
+ analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
47843
47920
  automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
47844
47921
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
47845
47922
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
47846
47923
  }
47847
47924
 
47925
+ export declare interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
47926
+ data: JsonApiAnalyticalDashboardLinkage | null;
47927
+ }
47928
+
47848
47929
  export declare interface JsonApiExportDefinitionOutRelationshipsAutomation {
47849
47930
  data: JsonApiAutomationLinkage | null;
47850
47931
  }
@@ -47868,7 +47949,7 @@ export declare interface JsonApiExportDefinitionOutWithLinks {
47868
47949
  * API identifier of an object
47869
47950
  */
47870
47951
  id: string;
47871
- meta?: JsonApiVisualizationObjectOutMeta;
47952
+ meta?: JsonApiDatasetOutMeta;
47872
47953
  attributes?: JsonApiExportDefinitionOutAttributes;
47873
47954
  relationships?: JsonApiExportDefinitionOutRelationships;
47874
47955
  links?: ObjectLinks;
@@ -47892,8 +47973,8 @@ export declare interface JsonApiExportDefinitionPatch {
47892
47973
  * API identifier of an object
47893
47974
  */
47894
47975
  id: string;
47895
- attributes?: JsonApiExportDefinitionInAttributes;
47896
- relationships?: JsonApiExportDefinitionInRelationships;
47976
+ attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
47977
+ relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
47897
47978
  }
47898
47979
 
47899
47980
  export declare interface JsonApiExportDefinitionPatchDocument {
@@ -47918,14 +47999,27 @@ export declare interface JsonApiExportDefinitionPostOptionalId {
47918
47999
  * API identifier of an object
47919
48000
  */
47920
48001
  id?: string;
47921
- attributes?: JsonApiExportDefinitionInAttributes;
47922
- relationships?: JsonApiExportDefinitionInRelationships;
48002
+ attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
48003
+ relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
48004
+ }
48005
+
48006
+ export declare interface JsonApiExportDefinitionPostOptionalIdAttributes {
48007
+ title?: string;
48008
+ description?: string;
48009
+ tags?: Array<string>;
48010
+ requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
48011
+ areRelationsValid?: boolean;
47923
48012
  }
47924
48013
 
47925
48014
  export declare interface JsonApiExportDefinitionPostOptionalIdDocument {
47926
48015
  data: JsonApiExportDefinitionPostOptionalId;
47927
48016
  }
47928
48017
 
48018
+ export declare interface JsonApiExportDefinitionPostOptionalIdRelationships {
48019
+ visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
48020
+ analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
48021
+ }
48022
+
47929
48023
  export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
47930
48024
  readonly EXPORT_DEFINITION: "exportDefinition";
47931
48025
  };
@@ -47944,9 +48038,57 @@ export declare interface JsonApiExportTemplateIn {
47944
48038
  * API identifier of an object
47945
48039
  */
47946
48040
  id: string;
47947
- attributes: JsonApiExportTemplatePostOptionalIdAttributes;
48041
+ attributes: JsonApiExportTemplateInAttributes;
48042
+ }
48043
+
48044
+ export declare interface JsonApiExportTemplateInAttributes {
48045
+ /**
48046
+ * User-facing name of the Slides template.
48047
+ */
48048
+ name: string;
48049
+ dashboardSlidesTemplate?: JsonApiExportTemplateInAttributesDashboardSlidesTemplate | null;
48050
+ widgetSlidesTemplate?: JsonApiExportTemplateInAttributesWidgetSlidesTemplate | null;
48051
+ }
48052
+
48053
+ /**
48054
+ * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
48055
+ */
48056
+ export declare interface JsonApiExportTemplateInAttributesDashboardSlidesTemplate {
48057
+ /**
48058
+ * Export types this template applies to.
48059
+ */
48060
+ appliedOn: Array<JsonApiExportTemplateInAttributesDashboardSlidesTemplateAppliedOnEnum>;
48061
+ coverSlide?: CoverSlideTemplate | null;
48062
+ introSlide?: IntroSlideTemplate | null;
48063
+ sectionSlide?: SectionSlideTemplate | null;
48064
+ contentSlide?: ContentSlideTemplate | null;
47948
48065
  }
47949
48066
 
48067
+ export declare const JsonApiExportTemplateInAttributesDashboardSlidesTemplateAppliedOnEnum: {
48068
+ readonly PDF: "PDF";
48069
+ readonly PPTX: "PPTX";
48070
+ };
48071
+
48072
+ export declare type JsonApiExportTemplateInAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateInAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateInAttributesDashboardSlidesTemplateAppliedOnEnum];
48073
+
48074
+ /**
48075
+ * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
48076
+ */
48077
+ export declare interface JsonApiExportTemplateInAttributesWidgetSlidesTemplate {
48078
+ /**
48079
+ * Export types this template applies to.
48080
+ */
48081
+ appliedOn: Array<JsonApiExportTemplateInAttributesWidgetSlidesTemplateAppliedOnEnum>;
48082
+ contentSlide?: ContentSlideTemplate | null;
48083
+ }
48084
+
48085
+ export declare const JsonApiExportTemplateInAttributesWidgetSlidesTemplateAppliedOnEnum: {
48086
+ readonly PDF: "PDF";
48087
+ readonly PPTX: "PPTX";
48088
+ };
48089
+
48090
+ export declare type JsonApiExportTemplateInAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateInAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateInAttributesWidgetSlidesTemplateAppliedOnEnum];
48091
+
47950
48092
  export declare interface JsonApiExportTemplateInDocument {
47951
48093
  data: JsonApiExportTemplateIn;
47952
48094
  }
@@ -47969,7 +48111,7 @@ export declare interface JsonApiExportTemplateOut {
47969
48111
  * API identifier of an object
47970
48112
  */
47971
48113
  id: string;
47972
- attributes: JsonApiExportTemplatePostOptionalIdAttributes;
48114
+ attributes: JsonApiExportTemplateInAttributes;
47973
48115
  }
47974
48116
 
47975
48117
  export declare interface JsonApiExportTemplateOutDocument {
@@ -48001,7 +48143,7 @@ export declare interface JsonApiExportTemplateOutWithLinks {
48001
48143
  * API identifier of an object
48002
48144
  */
48003
48145
  id: string;
48004
- attributes: JsonApiExportTemplatePostOptionalIdAttributes;
48146
+ attributes: JsonApiExportTemplateInAttributes;
48005
48147
  links?: ObjectLinks;
48006
48148
  }
48007
48149
 
@@ -48031,8 +48173,8 @@ export declare interface JsonApiExportTemplatePatchAttributes {
48031
48173
  * User-facing name of the Slides template.
48032
48174
  */
48033
48175
  name?: string;
48034
- dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
48035
- widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
48176
+ dashboardSlidesTemplate?: JsonApiExportTemplateInAttributesDashboardSlidesTemplate | null;
48177
+ widgetSlidesTemplate?: JsonApiExportTemplateInAttributesWidgetSlidesTemplate | null;
48036
48178
  }
48037
48179
 
48038
48180
  export declare interface JsonApiExportTemplatePatchDocument {
@@ -48057,57 +48199,9 @@ export declare interface JsonApiExportTemplatePostOptionalId {
48057
48199
  * API identifier of an object
48058
48200
  */
48059
48201
  id?: string;
48060
- attributes: JsonApiExportTemplatePostOptionalIdAttributes;
48061
- }
48062
-
48063
- export declare interface JsonApiExportTemplatePostOptionalIdAttributes {
48064
- /**
48065
- * User-facing name of the Slides template.
48066
- */
48067
- name: string;
48068
- dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
48069
- widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
48202
+ attributes: JsonApiExportTemplateInAttributes;
48070
48203
  }
48071
48204
 
48072
- /**
48073
- * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
48074
- */
48075
- export declare interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
48076
- /**
48077
- * Export types this template applies to.
48078
- */
48079
- appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
48080
- coverSlide?: CoverSlideTemplate | null;
48081
- introSlide?: IntroSlideTemplate | null;
48082
- sectionSlide?: SectionSlideTemplate | null;
48083
- contentSlide?: ContentSlideTemplate | null;
48084
- }
48085
-
48086
- export declare const JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum: {
48087
- readonly PDF: "PDF";
48088
- readonly PPTX: "PPTX";
48089
- };
48090
-
48091
- export declare type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum];
48092
-
48093
- /**
48094
- * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
48095
- */
48096
- export declare interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
48097
- /**
48098
- * Export types this template applies to.
48099
- */
48100
- appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
48101
- contentSlide?: ContentSlideTemplate | null;
48102
- }
48103
-
48104
- export declare const JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum: {
48105
- readonly PDF: "PDF";
48106
- readonly PPTX: "PPTX";
48107
- };
48108
-
48109
- export declare type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum];
48110
-
48111
48205
  export declare interface JsonApiExportTemplatePostOptionalIdDocument {
48112
48206
  data: JsonApiExportTemplatePostOptionalId;
48113
48207
  }
@@ -48144,7 +48238,7 @@ export declare interface JsonApiFactOut {
48144
48238
  * API identifier of an object
48145
48239
  */
48146
48240
  id: string;
48147
- meta?: JsonApiVisualizationObjectOutMeta;
48241
+ meta?: JsonApiDatasetOutMeta;
48148
48242
  attributes?: JsonApiFactOutAttributes;
48149
48243
  relationships?: JsonApiFactOutRelationships;
48150
48244
  }
@@ -48194,7 +48288,11 @@ export declare interface JsonApiFactOutList {
48194
48288
  }
48195
48289
 
48196
48290
  export declare interface JsonApiFactOutRelationships {
48197
- dataset?: JsonApiAttributeOutRelationshipsDataset;
48291
+ dataset?: JsonApiFactOutRelationshipsDataset;
48292
+ }
48293
+
48294
+ export declare interface JsonApiFactOutRelationshipsDataset {
48295
+ data: JsonApiDatasetLinkage | null;
48198
48296
  }
48199
48297
 
48200
48298
  export declare const JsonApiFactOutTypeEnum: {
@@ -48212,7 +48310,7 @@ export declare interface JsonApiFactOutWithLinks {
48212
48310
  * API identifier of an object
48213
48311
  */
48214
48312
  id: string;
48215
- meta?: JsonApiVisualizationObjectOutMeta;
48313
+ meta?: JsonApiDatasetOutMeta;
48216
48314
  attributes?: JsonApiFactOutAttributes;
48217
48315
  relationships?: JsonApiFactOutRelationships;
48218
48316
  links?: ObjectLinks;
@@ -48236,7 +48334,7 @@ export declare interface JsonApiFilterContextIn {
48236
48334
  * API identifier of an object
48237
48335
  */
48238
48336
  id: string;
48239
- attributes: JsonApiAnalyticalDashboardInAttributes;
48337
+ attributes: JsonApiFilterContextOutAttributes;
48240
48338
  }
48241
48339
 
48242
48340
  export declare interface JsonApiFilterContextInDocument {
@@ -48275,11 +48373,22 @@ export declare interface JsonApiFilterContextOut {
48275
48373
  * API identifier of an object
48276
48374
  */
48277
48375
  id: string;
48278
- meta?: JsonApiVisualizationObjectOutMeta;
48279
- attributes: JsonApiAnalyticalDashboardInAttributes;
48376
+ meta?: JsonApiDatasetOutMeta;
48377
+ attributes: JsonApiFilterContextOutAttributes;
48280
48378
  relationships?: JsonApiFilterContextOutRelationships;
48281
48379
  }
48282
48380
 
48381
+ export declare interface JsonApiFilterContextOutAttributes {
48382
+ title?: string;
48383
+ description?: string;
48384
+ tags?: Array<string>;
48385
+ areRelationsValid?: boolean;
48386
+ /**
48387
+ * Free-form JSON content. Maximum supported length is 250000 characters.
48388
+ */
48389
+ content: object;
48390
+ }
48391
+
48283
48392
  export declare interface JsonApiFilterContextOutDocument {
48284
48393
  data: JsonApiFilterContextOut;
48285
48394
  links?: ObjectLinks;
@@ -48308,8 +48417,8 @@ export declare interface JsonApiFilterContextOutList {
48308
48417
  }
48309
48418
 
48310
48419
  export declare interface JsonApiFilterContextOutRelationships {
48311
- attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
48312
- datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
48420
+ attributes?: JsonApiDatasetOutRelationshipsAttributes;
48421
+ datasets?: JsonApiDatasetOutRelationshipsReferences;
48313
48422
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
48314
48423
  }
48315
48424
 
@@ -48328,8 +48437,8 @@ export declare interface JsonApiFilterContextOutWithLinks {
48328
48437
  * API identifier of an object
48329
48438
  */
48330
48439
  id: string;
48331
- meta?: JsonApiVisualizationObjectOutMeta;
48332
- attributes: JsonApiAnalyticalDashboardInAttributes;
48440
+ meta?: JsonApiDatasetOutMeta;
48441
+ attributes: JsonApiFilterContextOutAttributes;
48333
48442
  relationships?: JsonApiFilterContextOutRelationships;
48334
48443
  links?: ObjectLinks;
48335
48444
  }
@@ -48377,7 +48486,7 @@ export declare interface JsonApiFilterContextPostOptionalId {
48377
48486
  * API identifier of an object
48378
48487
  */
48379
48488
  id?: string;
48380
- attributes: JsonApiAnalyticalDashboardInAttributes;
48489
+ attributes: JsonApiFilterContextOutAttributes;
48381
48490
  }
48382
48491
 
48383
48492
  export declare interface JsonApiFilterContextPostOptionalIdDocument {
@@ -48402,38 +48511,14 @@ export declare interface JsonApiFilterViewIn {
48402
48511
  * API identifier of an object
48403
48512
  */
48404
48513
  id: string;
48405
- attributes: JsonApiFilterViewInAttributes;
48406
- relationships?: JsonApiFilterViewInRelationships;
48407
- }
48408
-
48409
- export declare interface JsonApiFilterViewInAttributes {
48410
- title: string;
48411
- description?: string;
48412
- tags?: Array<string>;
48413
- areRelationsValid?: boolean;
48414
- /**
48415
- * Indicator whether the filter view should by applied by default.
48416
- */
48417
- isDefault?: boolean;
48418
- /**
48419
- * The respective filter context.
48420
- */
48421
- content: object;
48514
+ attributes: JsonApiFilterViewOutAttributes;
48515
+ relationships?: JsonApiFilterViewOutRelationships;
48422
48516
  }
48423
48517
 
48424
48518
  export declare interface JsonApiFilterViewInDocument {
48425
48519
  data: JsonApiFilterViewIn;
48426
48520
  }
48427
48521
 
48428
- export declare interface JsonApiFilterViewInRelationships {
48429
- analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
48430
- user?: JsonApiFilterViewInRelationshipsUser;
48431
- }
48432
-
48433
- export declare interface JsonApiFilterViewInRelationshipsUser {
48434
- data: JsonApiUserLinkage | null;
48435
- }
48436
-
48437
48522
  export declare const JsonApiFilterViewInTypeEnum: {
48438
48523
  readonly FILTER_VIEW: "filterView";
48439
48524
  };
@@ -48452,8 +48537,23 @@ export declare interface JsonApiFilterViewOut {
48452
48537
  * API identifier of an object
48453
48538
  */
48454
48539
  id: string;
48455
- attributes: JsonApiFilterViewInAttributes;
48456
- relationships?: JsonApiFilterViewInRelationships;
48540
+ attributes: JsonApiFilterViewOutAttributes;
48541
+ relationships?: JsonApiFilterViewOutRelationships;
48542
+ }
48543
+
48544
+ export declare interface JsonApiFilterViewOutAttributes {
48545
+ title: string;
48546
+ description?: string;
48547
+ tags?: Array<string>;
48548
+ areRelationsValid?: boolean;
48549
+ /**
48550
+ * Indicator whether the filter view should by applied by default.
48551
+ */
48552
+ isDefault?: boolean;
48553
+ /**
48554
+ * The respective filter context.
48555
+ */
48556
+ content: object;
48457
48557
  }
48458
48558
 
48459
48559
  export declare interface JsonApiFilterViewOutDocument {
@@ -48483,6 +48583,15 @@ export declare interface JsonApiFilterViewOutList {
48483
48583
  included?: Array<JsonApiFilterViewOutIncludes>;
48484
48584
  }
48485
48585
 
48586
+ export declare interface JsonApiFilterViewOutRelationships {
48587
+ analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
48588
+ user?: JsonApiFilterViewOutRelationshipsUser;
48589
+ }
48590
+
48591
+ export declare interface JsonApiFilterViewOutRelationshipsUser {
48592
+ data: JsonApiUserLinkage | null;
48593
+ }
48594
+
48486
48595
  export declare const JsonApiFilterViewOutTypeEnum: {
48487
48596
  readonly FILTER_VIEW: "filterView";
48488
48597
  };
@@ -48498,8 +48607,8 @@ export declare interface JsonApiFilterViewOutWithLinks {
48498
48607
  * API identifier of an object
48499
48608
  */
48500
48609
  id: string;
48501
- attributes: JsonApiFilterViewInAttributes;
48502
- relationships?: JsonApiFilterViewInRelationships;
48610
+ attributes: JsonApiFilterViewOutAttributes;
48611
+ relationships?: JsonApiFilterViewOutRelationships;
48503
48612
  links?: ObjectLinks;
48504
48613
  }
48505
48614
 
@@ -48522,7 +48631,7 @@ export declare interface JsonApiFilterViewPatch {
48522
48631
  */
48523
48632
  id: string;
48524
48633
  attributes: JsonApiFilterViewPatchAttributes;
48525
- relationships?: JsonApiFilterViewInRelationships;
48634
+ relationships?: JsonApiFilterViewOutRelationships;
48526
48635
  }
48527
48636
 
48528
48637
  export declare interface JsonApiFilterViewPatchAttributes {
@@ -48919,7 +49028,7 @@ export declare interface JsonApiLabelOut {
48919
49028
  * API identifier of an object
48920
49029
  */
48921
49030
  id: string;
48922
- meta?: JsonApiVisualizationObjectOutMeta;
49031
+ meta?: JsonApiDatasetOutMeta;
48923
49032
  attributes?: JsonApiLabelOutAttributes;
48924
49033
  relationships?: JsonApiLabelOutRelationships;
48925
49034
  }
@@ -48935,6 +49044,8 @@ export declare interface JsonApiLabelOutAttributes {
48935
49044
  isHidden?: boolean;
48936
49045
  geoAreaConfig?: JsonApiLabelOutAttributesGeoAreaConfig;
48937
49046
  areRelationsValid?: boolean;
49047
+ locale?: string;
49048
+ translations?: Array<JsonApiLabelOutAttributesTranslationsInner>;
48938
49049
  }
48939
49050
 
48940
49051
  /**
@@ -48956,6 +49067,11 @@ export declare const JsonApiLabelOutAttributesSourceColumnDataTypeEnum: {
48956
49067
 
48957
49068
  export declare type JsonApiLabelOutAttributesSourceColumnDataTypeEnum = (typeof JsonApiLabelOutAttributesSourceColumnDataTypeEnum)[keyof typeof JsonApiLabelOutAttributesSourceColumnDataTypeEnum];
48958
49069
 
49070
+ export declare interface JsonApiLabelOutAttributesTranslationsInner {
49071
+ sourceColumn: string;
49072
+ locale: string;
49073
+ }
49074
+
48959
49075
  export declare const JsonApiLabelOutAttributesValueTypeEnum: {
48960
49076
  readonly TEXT: "TEXT";
48961
49077
  readonly HYPERLINK: "HYPERLINK";
@@ -49013,7 +49129,7 @@ export declare interface JsonApiLabelOutWithLinks {
49013
49129
  * API identifier of an object
49014
49130
  */
49015
49131
  id: string;
49016
- meta?: JsonApiVisualizationObjectOutMeta;
49132
+ meta?: JsonApiDatasetOutMeta;
49017
49133
  attributes?: JsonApiLabelOutAttributes;
49018
49134
  relationships?: JsonApiLabelOutRelationships;
49019
49135
  links?: ObjectLinks;
@@ -49239,39 +49355,9 @@ export declare interface JsonApiMemoryItemIn {
49239
49355
  * API identifier of an object
49240
49356
  */
49241
49357
  id: string;
49242
- attributes: JsonApiMemoryItemInAttributes;
49243
- }
49244
-
49245
- export declare interface JsonApiMemoryItemInAttributes {
49246
- title?: string;
49247
- description?: string;
49248
- tags?: Array<string>;
49249
- areRelationsValid?: boolean;
49250
- /**
49251
- * Strategy defining when the memory item should be applied
49252
- */
49253
- strategy: JsonApiMemoryItemInAttributesStrategyEnum;
49254
- /**
49255
- * The text that will be injected into the system prompt
49256
- */
49257
- instruction: string;
49258
- /**
49259
- * Set of unique strings used for semantic similarity filtering
49260
- */
49261
- keywords?: Array<string>;
49262
- /**
49263
- * Whether memory item is disabled
49264
- */
49265
- isDisabled?: boolean;
49358
+ attributes: JsonApiMemoryItemPostOptionalIdAttributes;
49266
49359
  }
49267
49360
 
49268
- export declare const JsonApiMemoryItemInAttributesStrategyEnum: {
49269
- readonly ALWAYS: "ALWAYS";
49270
- readonly AUTO: "AUTO";
49271
- };
49272
-
49273
- export declare type JsonApiMemoryItemInAttributesStrategyEnum = (typeof JsonApiMemoryItemInAttributesStrategyEnum)[keyof typeof JsonApiMemoryItemInAttributesStrategyEnum];
49274
-
49275
49361
  export declare interface JsonApiMemoryItemInDocument {
49276
49362
  data: JsonApiMemoryItemIn;
49277
49363
  }
@@ -49294,7 +49380,7 @@ export declare interface JsonApiMemoryItemOut {
49294
49380
  * API identifier of an object
49295
49381
  */
49296
49382
  id: string;
49297
- meta?: JsonApiVisualizationObjectOutMeta;
49383
+ meta?: JsonApiDatasetOutMeta;
49298
49384
  attributes: JsonApiMemoryItemOutAttributes;
49299
49385
  relationships?: JsonApiDashboardPluginOutRelationships;
49300
49386
  }
@@ -49368,7 +49454,7 @@ export declare interface JsonApiMemoryItemOutWithLinks {
49368
49454
  * API identifier of an object
49369
49455
  */
49370
49456
  id: string;
49371
- meta?: JsonApiVisualizationObjectOutMeta;
49457
+ meta?: JsonApiDatasetOutMeta;
49372
49458
  attributes: JsonApiMemoryItemOutAttributes;
49373
49459
  relationships?: JsonApiDashboardPluginOutRelationships;
49374
49460
  links?: ObjectLinks;
@@ -49447,9 +49533,39 @@ export declare interface JsonApiMemoryItemPostOptionalId {
49447
49533
  * API identifier of an object
49448
49534
  */
49449
49535
  id?: string;
49450
- attributes: JsonApiMemoryItemInAttributes;
49536
+ attributes: JsonApiMemoryItemPostOptionalIdAttributes;
49451
49537
  }
49452
49538
 
49539
+ export declare interface JsonApiMemoryItemPostOptionalIdAttributes {
49540
+ title?: string;
49541
+ description?: string;
49542
+ tags?: Array<string>;
49543
+ areRelationsValid?: boolean;
49544
+ /**
49545
+ * Strategy defining when the memory item should be applied
49546
+ */
49547
+ strategy: JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum;
49548
+ /**
49549
+ * The text that will be injected into the system prompt
49550
+ */
49551
+ instruction: string;
49552
+ /**
49553
+ * Set of unique strings used for semantic similarity filtering
49554
+ */
49555
+ keywords?: Array<string>;
49556
+ /**
49557
+ * Whether memory item is disabled
49558
+ */
49559
+ isDisabled?: boolean;
49560
+ }
49561
+
49562
+ export declare const JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum: {
49563
+ readonly ALWAYS: "ALWAYS";
49564
+ readonly AUTO: "AUTO";
49565
+ };
49566
+
49567
+ export declare type JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum = (typeof JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum)[keyof typeof JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum];
49568
+
49453
49569
  export declare interface JsonApiMemoryItemPostOptionalIdDocument {
49454
49570
  data: JsonApiMemoryItemPostOptionalId;
49455
49571
  }
@@ -49472,16 +49588,7 @@ export declare interface JsonApiMetricIn {
49472
49588
  * API identifier of an object
49473
49589
  */
49474
49590
  id: string;
49475
- attributes: JsonApiMetricInAttributes;
49476
- }
49477
-
49478
- export declare interface JsonApiMetricInAttributes {
49479
- title?: string;
49480
- description?: string;
49481
- tags?: Array<string>;
49482
- areRelationsValid?: boolean;
49483
- content: JsonApiMetricOutAttributesContent;
49484
- isHidden?: boolean;
49591
+ attributes: JsonApiMetricPostOptionalIdAttributes;
49485
49592
  }
49486
49593
 
49487
49594
  export declare interface JsonApiMetricInDocument {
@@ -49520,7 +49627,7 @@ export declare interface JsonApiMetricOut {
49520
49627
  * API identifier of an object
49521
49628
  */
49522
49629
  id: string;
49523
- meta?: JsonApiVisualizationObjectOutMeta;
49630
+ meta?: JsonApiDatasetOutMeta;
49524
49631
  attributes: JsonApiMetricOutAttributes;
49525
49632
  relationships?: JsonApiVisualizationObjectOutRelationships;
49526
49633
  }
@@ -49583,7 +49690,7 @@ export declare interface JsonApiMetricOutWithLinks {
49583
49690
  * API identifier of an object
49584
49691
  */
49585
49692
  id: string;
49586
- meta?: JsonApiVisualizationObjectOutMeta;
49693
+ meta?: JsonApiDatasetOutMeta;
49587
49694
  attributes: JsonApiMetricOutAttributes;
49588
49695
  relationships?: JsonApiVisualizationObjectOutRelationships;
49589
49696
  links?: ObjectLinks;
@@ -49641,7 +49748,16 @@ export declare interface JsonApiMetricPostOptionalId {
49641
49748
  * API identifier of an object
49642
49749
  */
49643
49750
  id?: string;
49644
- attributes: JsonApiMetricInAttributes;
49751
+ attributes: JsonApiMetricPostOptionalIdAttributes;
49752
+ }
49753
+
49754
+ export declare interface JsonApiMetricPostOptionalIdAttributes {
49755
+ title?: string;
49756
+ description?: string;
49757
+ tags?: Array<string>;
49758
+ areRelationsValid?: boolean;
49759
+ content: JsonApiMetricOutAttributesContent;
49760
+ isHidden?: boolean;
49645
49761
  }
49646
49762
 
49647
49763
  export declare interface JsonApiMetricPostOptionalIdDocument {
@@ -49747,9 +49863,58 @@ export declare interface JsonApiNotificationChannelIn {
49747
49863
  * API identifier of an object
49748
49864
  */
49749
49865
  id: string;
49750
- attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
49866
+ attributes?: JsonApiNotificationChannelInAttributes;
49751
49867
  }
49752
49868
 
49869
+ export declare interface JsonApiNotificationChannelInAttributes {
49870
+ name?: string | null;
49871
+ description?: string | null;
49872
+ destination?: JsonApiNotificationChannelOutAttributesDestination;
49873
+ /**
49874
+ * 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}
49875
+ */
49876
+ customDashboardUrl?: string;
49877
+ /**
49878
+ * 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
49879
+ */
49880
+ dashboardLinkVisibility?: JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum;
49881
+ /**
49882
+ * 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}}
49883
+ */
49884
+ notificationSource?: string;
49885
+ /**
49886
+ * 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
49887
+ */
49888
+ allowedRecipients?: JsonApiNotificationChannelInAttributesAllowedRecipientsEnum;
49889
+ /**
49890
+ * 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
49891
+ */
49892
+ inPlatformNotification?: JsonApiNotificationChannelInAttributesInPlatformNotificationEnum;
49893
+ }
49894
+
49895
+ export declare const JsonApiNotificationChannelInAttributesAllowedRecipientsEnum: {
49896
+ readonly CREATOR: "CREATOR";
49897
+ readonly INTERNAL: "INTERNAL";
49898
+ readonly EXTERNAL: "EXTERNAL";
49899
+ };
49900
+
49901
+ export declare type JsonApiNotificationChannelInAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum];
49902
+
49903
+ export declare const JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum: {
49904
+ readonly HIDDEN: "HIDDEN";
49905
+ readonly INTERNAL_ONLY: "INTERNAL_ONLY";
49906
+ readonly ALL: "ALL";
49907
+ };
49908
+
49909
+ export declare type JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum];
49910
+
49911
+ export declare const JsonApiNotificationChannelInAttributesInPlatformNotificationEnum: {
49912
+ readonly DISABLED: "DISABLED";
49913
+ readonly ENABLED: "ENABLED";
49914
+ };
49915
+
49916
+ export declare type JsonApiNotificationChannelInAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum];
49917
+
49753
49918
  export declare interface JsonApiNotificationChannelInDocument {
49754
49919
  data: JsonApiNotificationChannelIn;
49755
49920
  }
@@ -49792,7 +49957,7 @@ export declare interface JsonApiNotificationChannelOut {
49792
49957
  export declare interface JsonApiNotificationChannelOutAttributes {
49793
49958
  name?: string | null;
49794
49959
  description?: string | null;
49795
- destination?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
49960
+ destination?: JsonApiNotificationChannelOutAttributesDestination;
49796
49961
  destinationType?: JsonApiNotificationChannelOutAttributesDestinationTypeEnum | null;
49797
49962
  /**
49798
49963
  * 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}
@@ -49832,6 +49997,12 @@ export declare const JsonApiNotificationChannelOutAttributesDashboardLinkVisibil
49832
49997
 
49833
49998
  export declare type JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum];
49834
49999
 
50000
+ /**
50001
+ * @type JsonApiNotificationChannelOutAttributesDestination
50002
+ * The destination where the notifications are to be sent.
50003
+ */
50004
+ export declare type JsonApiNotificationChannelOutAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
50005
+
49835
50006
  export declare const JsonApiNotificationChannelOutAttributesDestinationTypeEnum: {
49836
50007
  readonly WEBHOOK: "WEBHOOK";
49837
50008
  readonly SMTP: "SMTP";
@@ -49899,7 +50070,7 @@ export declare interface JsonApiNotificationChannelPatch {
49899
50070
  * API identifier of an object
49900
50071
  */
49901
50072
  id: string;
49902
- attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
50073
+ attributes?: JsonApiNotificationChannelInAttributes;
49903
50074
  }
49904
50075
 
49905
50076
  export declare interface JsonApiNotificationChannelPatchDocument {
@@ -49924,64 +50095,9 @@ export declare interface JsonApiNotificationChannelPostOptionalId {
49924
50095
  * API identifier of an object
49925
50096
  */
49926
50097
  id?: string;
49927
- attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
50098
+ attributes?: JsonApiNotificationChannelInAttributes;
49928
50099
  }
49929
50100
 
49930
- export declare interface JsonApiNotificationChannelPostOptionalIdAttributes {
49931
- name?: string | null;
49932
- description?: string | null;
49933
- destination?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
49934
- /**
49935
- * 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}
49936
- */
49937
- customDashboardUrl?: string;
49938
- /**
49939
- * 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
49940
- */
49941
- dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
49942
- /**
49943
- * 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}}
49944
- */
49945
- notificationSource?: string;
49946
- /**
49947
- * 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
49948
- */
49949
- allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
49950
- /**
49951
- * 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
49952
- */
49953
- inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
49954
- }
49955
-
49956
- export declare const JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum: {
49957
- readonly CREATOR: "CREATOR";
49958
- readonly INTERNAL: "INTERNAL";
49959
- readonly EXTERNAL: "EXTERNAL";
49960
- };
49961
-
49962
- export declare type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum];
49963
-
49964
- export declare const JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum: {
49965
- readonly HIDDEN: "HIDDEN";
49966
- readonly INTERNAL_ONLY: "INTERNAL_ONLY";
49967
- readonly ALL: "ALL";
49968
- };
49969
-
49970
- export declare type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum];
49971
-
49972
- /**
49973
- * @type JsonApiNotificationChannelPostOptionalIdAttributesDestination
49974
- * The destination where the notifications are to be sent.
49975
- */
49976
- export declare type JsonApiNotificationChannelPostOptionalIdAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
49977
-
49978
- export declare const JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum: {
49979
- readonly DISABLED: "DISABLED";
49980
- readonly ENABLED: "ENABLED";
49981
- };
49982
-
49983
- export declare type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum];
49984
-
49985
50101
  export declare interface JsonApiNotificationChannelPostOptionalIdDocument {
49986
50102
  data: JsonApiNotificationChannelPostOptionalId;
49987
50103
  }
@@ -50092,8 +50208,8 @@ export declare const JsonApiOrganizationOutMetaPermissionsEnum: {
50092
50208
  export declare type JsonApiOrganizationOutMetaPermissionsEnum = (typeof JsonApiOrganizationOutMetaPermissionsEnum)[keyof typeof JsonApiOrganizationOutMetaPermissionsEnum];
50093
50209
 
50094
50210
  export declare interface JsonApiOrganizationOutRelationships {
50095
- bootstrapUser?: JsonApiFilterViewInRelationshipsUser;
50096
- bootstrapUserGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
50211
+ bootstrapUser?: JsonApiFilterViewOutRelationshipsUser;
50212
+ bootstrapUserGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
50097
50213
  identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
50098
50214
  }
50099
50215
 
@@ -50164,55 +50280,9 @@ export declare interface JsonApiOrganizationSettingIn {
50164
50280
  * API identifier of an object
50165
50281
  */
50166
50282
  id: string;
50167
- attributes?: JsonApiOrganizationSettingInAttributes;
50283
+ attributes?: JsonApiUserSettingOutAttributes;
50168
50284
  }
50169
50285
 
50170
- export declare interface JsonApiOrganizationSettingInAttributes {
50171
- /**
50172
- * Free-form JSON content. Maximum supported length is 15000 characters.
50173
- */
50174
- content?: object;
50175
- type?: JsonApiOrganizationSettingInAttributesTypeEnum;
50176
- }
50177
-
50178
- export declare const JsonApiOrganizationSettingInAttributesTypeEnum: {
50179
- readonly TIMEZONE: "TIMEZONE";
50180
- readonly ACTIVE_THEME: "ACTIVE_THEME";
50181
- readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
50182
- readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
50183
- readonly WHITE_LABELING: "WHITE_LABELING";
50184
- readonly LOCALE: "LOCALE";
50185
- readonly METADATA_LOCALE: "METADATA_LOCALE";
50186
- readonly FORMAT_LOCALE: "FORMAT_LOCALE";
50187
- readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
50188
- readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
50189
- readonly WEEK_START: "WEEK_START";
50190
- readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
50191
- readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
50192
- readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
50193
- readonly OPENAI_CONFIG: "OPENAI_CONFIG";
50194
- readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
50195
- readonly ALERT: "ALERT";
50196
- readonly SEPARATORS: "SEPARATORS";
50197
- readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
50198
- readonly JIT_PROVISIONING: "JIT_PROVISIONING";
50199
- readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
50200
- readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
50201
- readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
50202
- readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
50203
- readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
50204
- readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
50205
- readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
50206
- readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
50207
- readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
50208
- readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
50209
- readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
50210
- readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
50211
- readonly DATA_LOCALE: "DATA_LOCALE";
50212
- };
50213
-
50214
- export declare type JsonApiOrganizationSettingInAttributesTypeEnum = (typeof JsonApiOrganizationSettingInAttributesTypeEnum)[keyof typeof JsonApiOrganizationSettingInAttributesTypeEnum];
50215
-
50216
50286
  export declare interface JsonApiOrganizationSettingInDocument {
50217
50287
  data: JsonApiOrganizationSettingIn;
50218
50288
  }
@@ -50235,7 +50305,7 @@ export declare interface JsonApiOrganizationSettingOut {
50235
50305
  * API identifier of an object
50236
50306
  */
50237
50307
  id: string;
50238
- attributes?: JsonApiOrganizationSettingInAttributes;
50308
+ attributes?: JsonApiUserSettingOutAttributes;
50239
50309
  }
50240
50310
 
50241
50311
  export declare interface JsonApiOrganizationSettingOutDocument {
@@ -50267,7 +50337,7 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
50267
50337
  * API identifier of an object
50268
50338
  */
50269
50339
  id: string;
50270
- attributes?: JsonApiOrganizationSettingInAttributes;
50340
+ attributes?: JsonApiUserSettingOutAttributes;
50271
50341
  links?: ObjectLinks;
50272
50342
  }
50273
50343
 
@@ -50289,7 +50359,7 @@ export declare interface JsonApiOrganizationSettingPatch {
50289
50359
  * API identifier of an object
50290
50360
  */
50291
50361
  id: string;
50292
- attributes?: JsonApiOrganizationSettingInAttributes;
50362
+ attributes?: JsonApiUserSettingOutAttributes;
50293
50363
  }
50294
50364
 
50295
50365
  export declare interface JsonApiOrganizationSettingPatchDocument {
@@ -50418,31 +50488,14 @@ export declare interface JsonApiUserDataFilterIn {
50418
50488
  * API identifier of an object
50419
50489
  */
50420
50490
  id: string;
50421
- attributes: JsonApiUserDataFilterInAttributes;
50422
- relationships?: JsonApiUserDataFilterInRelationships;
50423
- }
50424
-
50425
- export declare interface JsonApiUserDataFilterInAttributes {
50426
- title?: string;
50427
- description?: string;
50428
- tags?: Array<string>;
50429
- areRelationsValid?: boolean;
50430
- maql: string;
50491
+ attributes: JsonApiUserDataFilterOutAttributes;
50492
+ relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
50431
50493
  }
50432
50494
 
50433
50495
  export declare interface JsonApiUserDataFilterInDocument {
50434
50496
  data: JsonApiUserDataFilterIn;
50435
50497
  }
50436
50498
 
50437
- export declare interface JsonApiUserDataFilterInRelationships {
50438
- user?: JsonApiFilterViewInRelationshipsUser;
50439
- userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
50440
- }
50441
-
50442
- export declare interface JsonApiUserDataFilterInRelationshipsUserGroup {
50443
- data: JsonApiUserGroupLinkage | null;
50444
- }
50445
-
50446
50499
  export declare const JsonApiUserDataFilterInTypeEnum: {
50447
50500
  readonly USER_DATA_FILTER: "userDataFilter";
50448
50501
  };
@@ -50461,11 +50514,19 @@ export declare interface JsonApiUserDataFilterOut {
50461
50514
  * API identifier of an object
50462
50515
  */
50463
50516
  id: string;
50464
- meta?: JsonApiVisualizationObjectOutMeta;
50465
- attributes: JsonApiUserDataFilterInAttributes;
50517
+ meta?: JsonApiDatasetOutMeta;
50518
+ attributes: JsonApiUserDataFilterOutAttributes;
50466
50519
  relationships?: JsonApiUserDataFilterOutRelationships;
50467
50520
  }
50468
50521
 
50522
+ export declare interface JsonApiUserDataFilterOutAttributes {
50523
+ title?: string;
50524
+ description?: string;
50525
+ tags?: Array<string>;
50526
+ areRelationsValid?: boolean;
50527
+ maql: string;
50528
+ }
50529
+
50469
50530
  export declare interface JsonApiUserDataFilterOutDocument {
50470
50531
  data: JsonApiUserDataFilterOut;
50471
50532
  links?: ObjectLinks;
@@ -50494,13 +50555,17 @@ export declare interface JsonApiUserDataFilterOutList {
50494
50555
  }
50495
50556
 
50496
50557
  export declare interface JsonApiUserDataFilterOutRelationships {
50497
- user?: JsonApiFilterViewInRelationshipsUser;
50498
- userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
50499
- facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
50500
- attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
50558
+ user?: JsonApiFilterViewOutRelationshipsUser;
50559
+ userGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
50560
+ facts?: JsonApiDatasetOutRelationshipsFacts;
50561
+ attributes?: JsonApiDatasetOutRelationshipsAttributes;
50501
50562
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
50502
50563
  metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
50503
- datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
50564
+ datasets?: JsonApiDatasetOutRelationshipsReferences;
50565
+ }
50566
+
50567
+ export declare interface JsonApiUserDataFilterOutRelationshipsUserGroup {
50568
+ data: JsonApiUserGroupLinkage | null;
50504
50569
  }
50505
50570
 
50506
50571
  export declare const JsonApiUserDataFilterOutTypeEnum: {
@@ -50518,8 +50583,8 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
50518
50583
  * API identifier of an object
50519
50584
  */
50520
50585
  id: string;
50521
- meta?: JsonApiVisualizationObjectOutMeta;
50522
- attributes: JsonApiUserDataFilterInAttributes;
50586
+ meta?: JsonApiDatasetOutMeta;
50587
+ attributes: JsonApiUserDataFilterOutAttributes;
50523
50588
  relationships?: JsonApiUserDataFilterOutRelationships;
50524
50589
  links?: ObjectLinks;
50525
50590
  }
@@ -50543,7 +50608,7 @@ export declare interface JsonApiUserDataFilterPatch {
50543
50608
  */
50544
50609
  id: string;
50545
50610
  attributes: JsonApiUserDataFilterPatchAttributes;
50546
- relationships?: JsonApiUserDataFilterInRelationships;
50611
+ relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
50547
50612
  }
50548
50613
 
50549
50614
  export declare interface JsonApiUserDataFilterPatchAttributes {
@@ -50576,14 +50641,19 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
50576
50641
  * API identifier of an object
50577
50642
  */
50578
50643
  id?: string;
50579
- attributes: JsonApiUserDataFilterInAttributes;
50580
- relationships?: JsonApiUserDataFilterInRelationships;
50644
+ attributes: JsonApiUserDataFilterOutAttributes;
50645
+ relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
50581
50646
  }
50582
50647
 
50583
50648
  export declare interface JsonApiUserDataFilterPostOptionalIdDocument {
50584
50649
  data: JsonApiUserDataFilterPostOptionalId;
50585
50650
  }
50586
50651
 
50652
+ export declare interface JsonApiUserDataFilterPostOptionalIdRelationships {
50653
+ user?: JsonApiFilterViewOutRelationshipsUser;
50654
+ userGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
50655
+ }
50656
+
50587
50657
  export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
50588
50658
  readonly USER_DATA_FILTER: "userDataFilter";
50589
50659
  };
@@ -50602,29 +50672,14 @@ export declare interface JsonApiUserGroupIn {
50602
50672
  * API identifier of an object
50603
50673
  */
50604
50674
  id: string;
50605
- attributes?: JsonApiUserGroupInAttributes;
50606
- relationships?: JsonApiUserGroupInRelationships;
50607
- }
50608
-
50609
- export declare interface JsonApiUserGroupInAttributes {
50610
- name?: string;
50675
+ attributes?: JsonApiUserGroupOutAttributes;
50676
+ relationships?: JsonApiUserGroupOutRelationships;
50611
50677
  }
50612
50678
 
50613
50679
  export declare interface JsonApiUserGroupInDocument {
50614
50680
  data: JsonApiUserGroupIn;
50615
50681
  }
50616
50682
 
50617
- export declare interface JsonApiUserGroupInRelationships {
50618
- parents?: JsonApiUserGroupInRelationshipsParents;
50619
- }
50620
-
50621
- export declare interface JsonApiUserGroupInRelationshipsParents {
50622
- /**
50623
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
50624
- */
50625
- data: Array<JsonApiUserGroupLinkage>;
50626
- }
50627
-
50628
50683
  export declare const JsonApiUserGroupInTypeEnum: {
50629
50684
  readonly USER_GROUP: "userGroup";
50630
50685
  };
@@ -50657,8 +50712,12 @@ export declare interface JsonApiUserGroupOut {
50657
50712
  * API identifier of an object
50658
50713
  */
50659
50714
  id: string;
50660
- attributes?: JsonApiUserGroupInAttributes;
50661
- relationships?: JsonApiUserGroupInRelationships;
50715
+ attributes?: JsonApiUserGroupOutAttributes;
50716
+ relationships?: JsonApiUserGroupOutRelationships;
50717
+ }
50718
+
50719
+ export declare interface JsonApiUserGroupOutAttributes {
50720
+ name?: string;
50662
50721
  }
50663
50722
 
50664
50723
  export declare interface JsonApiUserGroupOutDocument {
@@ -50683,6 +50742,10 @@ export declare interface JsonApiUserGroupOutList {
50683
50742
  included?: Array<JsonApiUserGroupOutWithLinks>;
50684
50743
  }
50685
50744
 
50745
+ export declare interface JsonApiUserGroupOutRelationships {
50746
+ parents?: JsonApiUserOutRelationshipsUserGroups;
50747
+ }
50748
+
50686
50749
  export declare const JsonApiUserGroupOutTypeEnum: {
50687
50750
  readonly USER_GROUP: "userGroup";
50688
50751
  };
@@ -50698,8 +50761,8 @@ export declare interface JsonApiUserGroupOutWithLinks {
50698
50761
  * API identifier of an object
50699
50762
  */
50700
50763
  id: string;
50701
- attributes?: JsonApiUserGroupInAttributes;
50702
- relationships?: JsonApiUserGroupInRelationships;
50764
+ attributes?: JsonApiUserGroupOutAttributes;
50765
+ relationships?: JsonApiUserGroupOutRelationships;
50703
50766
  links?: ObjectLinks;
50704
50767
  }
50705
50768
 
@@ -50721,8 +50784,8 @@ export declare interface JsonApiUserGroupPatch {
50721
50784
  * API identifier of an object
50722
50785
  */
50723
50786
  id: string;
50724
- attributes?: JsonApiUserGroupInAttributes;
50725
- relationships?: JsonApiUserGroupInRelationships;
50787
+ attributes?: JsonApiUserGroupOutAttributes;
50788
+ relationships?: JsonApiUserGroupOutRelationships;
50726
50789
  }
50727
50790
 
50728
50791
  export declare interface JsonApiUserGroupPatchDocument {
@@ -50821,25 +50884,14 @@ export declare interface JsonApiUserIn {
50821
50884
  * API identifier of an object
50822
50885
  */
50823
50886
  id: string;
50824
- attributes?: JsonApiUserInAttributes;
50825
- relationships?: JsonApiUserInRelationships;
50826
- }
50827
-
50828
- export declare interface JsonApiUserInAttributes {
50829
- authenticationId?: string;
50830
- firstname?: string;
50831
- lastname?: string;
50832
- email?: string;
50887
+ attributes?: JsonApiUserOutAttributes;
50888
+ relationships?: JsonApiUserOutRelationships;
50833
50889
  }
50834
50890
 
50835
50891
  export declare interface JsonApiUserInDocument {
50836
50892
  data: JsonApiUserIn;
50837
50893
  }
50838
50894
 
50839
- export declare interface JsonApiUserInRelationships {
50840
- userGroups?: JsonApiUserGroupInRelationshipsParents;
50841
- }
50842
-
50843
50895
  export declare const JsonApiUserInTypeEnum: {
50844
50896
  readonly USER: "user";
50845
50897
  };
@@ -50872,8 +50924,15 @@ export declare interface JsonApiUserOut {
50872
50924
  * API identifier of an object
50873
50925
  */
50874
50926
  id: string;
50875
- attributes?: JsonApiUserInAttributes;
50876
- relationships?: JsonApiUserInRelationships;
50927
+ attributes?: JsonApiUserOutAttributes;
50928
+ relationships?: JsonApiUserOutRelationships;
50929
+ }
50930
+
50931
+ export declare interface JsonApiUserOutAttributes {
50932
+ authenticationId?: string;
50933
+ firstname?: string;
50934
+ lastname?: string;
50935
+ email?: string;
50877
50936
  }
50878
50937
 
50879
50938
  export declare interface JsonApiUserOutDocument {
@@ -50898,6 +50957,17 @@ export declare interface JsonApiUserOutList {
50898
50957
  included?: Array<JsonApiUserGroupOutWithLinks>;
50899
50958
  }
50900
50959
 
50960
+ export declare interface JsonApiUserOutRelationships {
50961
+ userGroups?: JsonApiUserOutRelationshipsUserGroups;
50962
+ }
50963
+
50964
+ export declare interface JsonApiUserOutRelationshipsUserGroups {
50965
+ /**
50966
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
50967
+ */
50968
+ data: Array<JsonApiUserGroupLinkage>;
50969
+ }
50970
+
50901
50971
  export declare const JsonApiUserOutTypeEnum: {
50902
50972
  readonly USER: "user";
50903
50973
  };
@@ -50913,8 +50983,8 @@ export declare interface JsonApiUserOutWithLinks {
50913
50983
  * API identifier of an object
50914
50984
  */
50915
50985
  id: string;
50916
- attributes?: JsonApiUserInAttributes;
50917
- relationships?: JsonApiUserInRelationships;
50986
+ attributes?: JsonApiUserOutAttributes;
50987
+ relationships?: JsonApiUserOutRelationships;
50918
50988
  links?: ObjectLinks;
50919
50989
  }
50920
50990
 
@@ -50936,8 +51006,8 @@ export declare interface JsonApiUserPatch {
50936
51006
  * API identifier of an object
50937
51007
  */
50938
51008
  id: string;
50939
- attributes?: JsonApiUserInAttributes;
50940
- relationships?: JsonApiUserInRelationships;
51009
+ attributes?: JsonApiUserOutAttributes;
51010
+ relationships?: JsonApiUserOutRelationships;
50941
51011
  }
50942
51012
 
50943
51013
  export declare interface JsonApiUserPatchDocument {
@@ -50962,7 +51032,7 @@ export declare interface JsonApiUserSettingIn {
50962
51032
  * API identifier of an object
50963
51033
  */
50964
51034
  id: string;
50965
- attributes?: JsonApiOrganizationSettingInAttributes;
51035
+ attributes?: JsonApiUserSettingOutAttributes;
50966
51036
  }
50967
51037
 
50968
51038
  export declare interface JsonApiUserSettingInDocument {
@@ -50987,9 +51057,56 @@ export declare interface JsonApiUserSettingOut {
50987
51057
  * API identifier of an object
50988
51058
  */
50989
51059
  id: string;
50990
- attributes?: JsonApiOrganizationSettingInAttributes;
51060
+ attributes?: JsonApiUserSettingOutAttributes;
50991
51061
  }
50992
51062
 
51063
+ export declare interface JsonApiUserSettingOutAttributes {
51064
+ /**
51065
+ * Free-form JSON content. Maximum supported length is 15000 characters.
51066
+ */
51067
+ content?: object;
51068
+ type?: JsonApiUserSettingOutAttributesTypeEnum;
51069
+ }
51070
+
51071
+ export declare const JsonApiUserSettingOutAttributesTypeEnum: {
51072
+ readonly TIMEZONE: "TIMEZONE";
51073
+ readonly ACTIVE_THEME: "ACTIVE_THEME";
51074
+ readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
51075
+ readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
51076
+ readonly WHITE_LABELING: "WHITE_LABELING";
51077
+ readonly LOCALE: "LOCALE";
51078
+ readonly METADATA_LOCALE: "METADATA_LOCALE";
51079
+ readonly FORMAT_LOCALE: "FORMAT_LOCALE";
51080
+ readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
51081
+ readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
51082
+ readonly WEEK_START: "WEEK_START";
51083
+ readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
51084
+ readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
51085
+ readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
51086
+ readonly OPENAI_CONFIG: "OPENAI_CONFIG";
51087
+ readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
51088
+ readonly ALERT: "ALERT";
51089
+ readonly SEPARATORS: "SEPARATORS";
51090
+ readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
51091
+ readonly JIT_PROVISIONING: "JIT_PROVISIONING";
51092
+ readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
51093
+ readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
51094
+ readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
51095
+ readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
51096
+ readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
51097
+ readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
51098
+ readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
51099
+ readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
51100
+ readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
51101
+ readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
51102
+ readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
51103
+ readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
51104
+ readonly DATA_LOCALE: "DATA_LOCALE";
51105
+ readonly LDM_DEFAULT_LOCALE: "LDM_DEFAULT_LOCALE";
51106
+ };
51107
+
51108
+ export declare type JsonApiUserSettingOutAttributesTypeEnum = (typeof JsonApiUserSettingOutAttributesTypeEnum)[keyof typeof JsonApiUserSettingOutAttributesTypeEnum];
51109
+
50993
51110
  export declare interface JsonApiUserSettingOutDocument {
50994
51111
  data: JsonApiUserSettingOut;
50995
51112
  links?: ObjectLinks;
@@ -51019,7 +51136,7 @@ export declare interface JsonApiUserSettingOutWithLinks {
51019
51136
  * API identifier of an object
51020
51137
  */
51021
51138
  id: string;
51022
- attributes?: JsonApiOrganizationSettingInAttributes;
51139
+ attributes?: JsonApiUserSettingOutAttributes;
51023
51140
  links?: ObjectLinks;
51024
51141
  }
51025
51142
 
@@ -51041,19 +51158,7 @@ export declare interface JsonApiVisualizationObjectIn {
51041
51158
  * API identifier of an object
51042
51159
  */
51043
51160
  id: string;
51044
- attributes: JsonApiVisualizationObjectInAttributes;
51045
- }
51046
-
51047
- export declare interface JsonApiVisualizationObjectInAttributes {
51048
- title?: string;
51049
- description?: string;
51050
- tags?: Array<string>;
51051
- areRelationsValid?: boolean;
51052
- /**
51053
- * Free-form JSON content. Maximum supported length is 250000 characters.
51054
- */
51055
- content: object;
51056
- isHidden?: boolean;
51161
+ attributes: JsonApiVisualizationObjectPostOptionalIdAttributes;
51057
51162
  }
51058
51163
 
51059
51164
  export declare interface JsonApiVisualizationObjectInDocument {
@@ -51092,7 +51197,7 @@ export declare interface JsonApiVisualizationObjectOut {
51092
51197
  * API identifier of an object
51093
51198
  */
51094
51199
  id: string;
51095
- meta?: JsonApiVisualizationObjectOutMeta;
51200
+ meta?: JsonApiDatasetOutMeta;
51096
51201
  attributes: JsonApiVisualizationObjectOutAttributes;
51097
51202
  relationships?: JsonApiVisualizationObjectOutRelationships;
51098
51203
  }
@@ -51133,63 +51238,20 @@ export declare interface JsonApiVisualizationObjectOutList {
51133
51238
  included?: Array<JsonApiMetricOutIncludes>;
51134
51239
  }
51135
51240
 
51136
- export declare interface JsonApiVisualizationObjectOutMeta {
51137
- origin?: JsonApiVisualizationObjectOutMetaOrigin;
51138
- }
51139
-
51140
- export declare interface JsonApiVisualizationObjectOutMetaOrigin {
51141
- /**
51142
- * defines type of the origin of the entity
51143
- */
51144
- originType: JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum;
51145
- /**
51146
- * defines id of the workspace where the entity comes from
51147
- */
51148
- originId: string;
51149
- }
51150
-
51151
- export declare const JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum: {
51152
- readonly NATIVE: "NATIVE";
51153
- readonly PARENT: "PARENT";
51154
- };
51155
-
51156
- export declare type JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum = (typeof JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum)[keyof typeof JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum];
51157
-
51158
51241
  export declare interface JsonApiVisualizationObjectOutRelationships {
51159
51242
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
51160
51243
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
51161
- facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
51162
- attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
51244
+ facts?: JsonApiDatasetOutRelationshipsFacts;
51245
+ attributes?: JsonApiDatasetOutRelationshipsAttributes;
51163
51246
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
51164
51247
  metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
51165
- datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
51166
- }
51167
-
51168
- export declare interface JsonApiVisualizationObjectOutRelationshipsAttributes {
51169
- /**
51170
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
51171
- */
51172
- data: Array<JsonApiAttributeLinkage>;
51248
+ datasets?: JsonApiDatasetOutRelationshipsReferences;
51173
51249
  }
51174
51250
 
51175
51251
  export declare interface JsonApiVisualizationObjectOutRelationshipsCreatedBy {
51176
51252
  data: JsonApiUserIdentifierLinkage | null;
51177
51253
  }
51178
51254
 
51179
- export declare interface JsonApiVisualizationObjectOutRelationshipsDatasets {
51180
- /**
51181
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
51182
- */
51183
- data: Array<JsonApiDatasetLinkage>;
51184
- }
51185
-
51186
- export declare interface JsonApiVisualizationObjectOutRelationshipsFacts {
51187
- /**
51188
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
51189
- */
51190
- data: Array<JsonApiFactLinkage>;
51191
- }
51192
-
51193
51255
  export declare interface JsonApiVisualizationObjectOutRelationshipsLabels {
51194
51256
  /**
51195
51257
  * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
@@ -51219,7 +51281,7 @@ export declare interface JsonApiVisualizationObjectOutWithLinks {
51219
51281
  * API identifier of an object
51220
51282
  */
51221
51283
  id: string;
51222
- meta?: JsonApiVisualizationObjectOutMeta;
51284
+ meta?: JsonApiDatasetOutMeta;
51223
51285
  attributes: JsonApiVisualizationObjectOutAttributes;
51224
51286
  relationships?: JsonApiVisualizationObjectOutRelationships;
51225
51287
  links?: ObjectLinks;
@@ -51280,7 +51342,19 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
51280
51342
  * API identifier of an object
51281
51343
  */
51282
51344
  id?: string;
51283
- attributes: JsonApiVisualizationObjectInAttributes;
51345
+ attributes: JsonApiVisualizationObjectPostOptionalIdAttributes;
51346
+ }
51347
+
51348
+ export declare interface JsonApiVisualizationObjectPostOptionalIdAttributes {
51349
+ title?: string;
51350
+ description?: string;
51351
+ tags?: Array<string>;
51352
+ areRelationsValid?: boolean;
51353
+ /**
51354
+ * Free-form JSON content. Maximum supported length is 250000 characters.
51355
+ */
51356
+ content: object;
51357
+ isHidden?: boolean;
51284
51358
  }
51285
51359
 
51286
51360
  export declare interface JsonApiVisualizationObjectPostOptionalIdDocument {
@@ -51329,12 +51403,12 @@ export declare interface JsonApiWorkspaceAutomationOutList {
51329
51403
 
51330
51404
  export declare interface JsonApiWorkspaceAutomationOutRelationships {
51331
51405
  workspace?: JsonApiWorkspaceInRelationshipsParent;
51332
- notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
51333
- analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
51406
+ notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
51407
+ analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
51334
51408
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
51335
51409
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
51336
- exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
51337
- recipients?: JsonApiAutomationInRelationshipsRecipients;
51410
+ exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
51411
+ recipients?: JsonApiAutomationOutRelationshipsRecipients;
51338
51412
  automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
51339
51413
  }
51340
51414
 
@@ -51416,7 +51490,7 @@ export declare interface JsonApiWorkspaceDataFilterOut {
51416
51490
  * API identifier of an object
51417
51491
  */
51418
51492
  id: string;
51419
- meta?: JsonApiVisualizationObjectOutMeta;
51493
+ meta?: JsonApiDatasetOutMeta;
51420
51494
  attributes?: JsonApiWorkspaceDataFilterOutAttributes;
51421
51495
  relationships?: JsonApiWorkspaceDataFilterOutRelationships;
51422
51496
  }
@@ -51475,7 +51549,7 @@ export declare interface JsonApiWorkspaceDataFilterOutWithLinks {
51475
51549
  * API identifier of an object
51476
51550
  */
51477
51551
  id: string;
51478
- meta?: JsonApiVisualizationObjectOutMeta;
51552
+ meta?: JsonApiDatasetOutMeta;
51479
51553
  attributes?: JsonApiWorkspaceDataFilterOutAttributes;
51480
51554
  relationships?: JsonApiWorkspaceDataFilterOutRelationships;
51481
51555
  links?: ObjectLinks;
@@ -51525,28 +51599,14 @@ export declare interface JsonApiWorkspaceDataFilterSettingIn {
51525
51599
  * API identifier of an object
51526
51600
  */
51527
51601
  id: string;
51528
- attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
51529
- relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
51530
- }
51531
-
51532
- export declare interface JsonApiWorkspaceDataFilterSettingInAttributes {
51533
- title?: string;
51534
- description?: string;
51535
- filterValues?: Array<string>;
51602
+ attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
51603
+ relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
51536
51604
  }
51537
51605
 
51538
51606
  export declare interface JsonApiWorkspaceDataFilterSettingInDocument {
51539
51607
  data: JsonApiWorkspaceDataFilterSettingIn;
51540
51608
  }
51541
51609
 
51542
- export declare interface JsonApiWorkspaceDataFilterSettingInRelationships {
51543
- workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
51544
- }
51545
-
51546
- export declare interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
51547
- data: JsonApiWorkspaceDataFilterLinkage | null;
51548
- }
51549
-
51550
51610
  export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
51551
51611
  readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
51552
51612
  };
@@ -51579,9 +51639,15 @@ export declare interface JsonApiWorkspaceDataFilterSettingOut {
51579
51639
  * API identifier of an object
51580
51640
  */
51581
51641
  id: string;
51582
- meta?: JsonApiVisualizationObjectOutMeta;
51583
- attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
51584
- relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
51642
+ meta?: JsonApiDatasetOutMeta;
51643
+ attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
51644
+ relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
51645
+ }
51646
+
51647
+ export declare interface JsonApiWorkspaceDataFilterSettingOutAttributes {
51648
+ title?: string;
51649
+ description?: string;
51650
+ filterValues?: Array<string>;
51585
51651
  }
51586
51652
 
51587
51653
  export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
@@ -51606,6 +51672,14 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutList {
51606
51672
  included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
51607
51673
  }
51608
51674
 
51675
+ export declare interface JsonApiWorkspaceDataFilterSettingOutRelationships {
51676
+ workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
51677
+ }
51678
+
51679
+ export declare interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
51680
+ data: JsonApiWorkspaceDataFilterLinkage | null;
51681
+ }
51682
+
51609
51683
  export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
51610
51684
  readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
51611
51685
  };
@@ -51621,9 +51695,9 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
51621
51695
  * API identifier of an object
51622
51696
  */
51623
51697
  id: string;
51624
- meta?: JsonApiVisualizationObjectOutMeta;
51625
- attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
51626
- relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
51698
+ meta?: JsonApiDatasetOutMeta;
51699
+ attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
51700
+ relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
51627
51701
  links?: ObjectLinks;
51628
51702
  }
51629
51703
 
@@ -51645,8 +51719,8 @@ export declare interface JsonApiWorkspaceDataFilterSettingPatch {
51645
51719
  * API identifier of an object
51646
51720
  */
51647
51721
  id: string;
51648
- attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
51649
- relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
51722
+ attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
51723
+ relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
51650
51724
  }
51651
51725
 
51652
51726
  export declare interface JsonApiWorkspaceDataFilterSettingPatchDocument {
@@ -51898,7 +51972,7 @@ export declare interface JsonApiWorkspaceSettingIn {
51898
51972
  * API identifier of an object
51899
51973
  */
51900
51974
  id: string;
51901
- attributes?: JsonApiOrganizationSettingInAttributes;
51975
+ attributes?: JsonApiUserSettingOutAttributes;
51902
51976
  }
51903
51977
 
51904
51978
  export declare interface JsonApiWorkspaceSettingInDocument {
@@ -51923,8 +51997,8 @@ export declare interface JsonApiWorkspaceSettingOut {
51923
51997
  * API identifier of an object
51924
51998
  */
51925
51999
  id: string;
51926
- meta?: JsonApiVisualizationObjectOutMeta;
51927
- attributes?: JsonApiOrganizationSettingInAttributes;
52000
+ meta?: JsonApiDatasetOutMeta;
52001
+ attributes?: JsonApiUserSettingOutAttributes;
51928
52002
  }
51929
52003
 
51930
52004
  export declare interface JsonApiWorkspaceSettingOutDocument {
@@ -51956,8 +52030,8 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
51956
52030
  * API identifier of an object
51957
52031
  */
51958
52032
  id: string;
51959
- meta?: JsonApiVisualizationObjectOutMeta;
51960
- attributes?: JsonApiOrganizationSettingInAttributes;
52033
+ meta?: JsonApiDatasetOutMeta;
52034
+ attributes?: JsonApiUserSettingOutAttributes;
51961
52035
  links?: ObjectLinks;
51962
52036
  }
51963
52037
 
@@ -51979,7 +52053,7 @@ export declare interface JsonApiWorkspaceSettingPatch {
51979
52053
  * API identifier of an object
51980
52054
  */
51981
52055
  id: string;
51982
- attributes?: JsonApiOrganizationSettingInAttributes;
52056
+ attributes?: JsonApiUserSettingOutAttributes;
51983
52057
  }
51984
52058
 
51985
52059
  export declare interface JsonApiWorkspaceSettingPatchDocument {
@@ -52004,7 +52078,7 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
52004
52078
  * API identifier of an object
52005
52079
  */
52006
52080
  id?: string;
52007
- attributes?: JsonApiOrganizationSettingInAttributes;
52081
+ attributes?: JsonApiUserSettingOutAttributes;
52008
52082
  }
52009
52083
 
52010
52084
  export declare interface JsonApiWorkspaceSettingPostOptionalIdDocument {
@@ -68706,6 +68780,7 @@ export declare const ResolvedSettingTypeEnum: {
68706
68780
  readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
68707
68781
  readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
68708
68782
  readonly DATA_LOCALE: "DATA_LOCALE";
68783
+ readonly LDM_DEFAULT_LOCALE: "LDM_DEFAULT_LOCALE";
68709
68784
  };
68710
68785
 
68711
68786
  export declare type ResolvedSettingTypeEnum = (typeof ResolvedSettingTypeEnum)[keyof typeof ResolvedSettingTypeEnum];