@gooddata/api-client-tiger 11.47.0-alpha.2 → 11.47.0-alpha.3

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.
@@ -21649,6 +21649,20 @@ export declare interface CertificationApiSetCertificationRequest {
21649
21649
  readonly setCertificationRequest: SetCertificationRequest;
21650
21650
  }
21651
21651
 
21652
+ /**
21653
+ * Certification state of the object. Who certified and when are never exposed here.
21654
+ */
21655
+ export declare interface CertificationInfo {
21656
+ /**
21657
+ * Certification status, e.g. CERTIFIED.
21658
+ */
21659
+ 'status': string;
21660
+ /**
21661
+ * Optional message describing the certification.
21662
+ */
21663
+ 'certificationMessage'?: string;
21664
+ }
21665
+
21652
21666
  /**
21653
21667
  * Change analysis specification.
21654
21668
  */
@@ -32780,7 +32794,7 @@ export declare interface DeclarativeSetting {
32780
32794
  'type'?: DeclarativeSettingTypeEnum;
32781
32795
  }
32782
32796
 
32783
- export declare type DeclarativeSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
32797
+ export declare type DeclarativeSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
32784
32798
 
32785
32799
  export declare interface DeclarativeSingleWorkspacePermission {
32786
32800
  /**
@@ -65692,8 +65706,8 @@ export declare interface ITigerDashboardMeasureValueFilterConfig {
65692
65706
  */
65693
65707
  export declare interface ITigerDashboardParameter {
65694
65708
  ref: ObjRef;
65695
- parameterType: "NUMBER";
65696
- value?: number;
65709
+ parameterType: "NUMBER" | "STRING";
65710
+ value?: number | string;
65697
65711
  label?: string;
65698
65712
  mode?: "active" | "readonly" | "hidden";
65699
65713
  }
@@ -67104,7 +67118,7 @@ export declare interface JsonApiAutomationInRelationships {
67104
67118
  'notificationChannel'?: JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel;
67105
67119
  'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
67106
67120
  'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
67107
- 'recipients'?: JsonApiIpAllowlistPolicyInRelationshipsUsers;
67121
+ 'recipients'?: JsonApiIpAllowlistPolicyOutRelationshipsUsers;
67108
67122
  }
67109
67123
 
67110
67124
  export declare type JsonApiAutomationInTypeEnum = 'automation';
@@ -67213,7 +67227,7 @@ export declare interface JsonApiAutomationOutRelationships {
67213
67227
  'createdBy'?: JsonApiAgentOutRelationshipsCreatedBy;
67214
67228
  'modifiedBy'?: JsonApiAgentOutRelationshipsCreatedBy;
67215
67229
  'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
67216
- 'recipients'?: JsonApiIpAllowlistPolicyInRelationshipsUsers;
67230
+ 'recipients'?: JsonApiIpAllowlistPolicyOutRelationshipsUsers;
67217
67231
  'automationResults'?: JsonApiWorkspaceAutomationOutRelationshipsAutomationResults;
67218
67232
  }
67219
67233
 
@@ -67454,7 +67468,7 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
67454
67468
  * API identifier of an object
67455
67469
  */
67456
67470
  'id': string;
67457
- 'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
67471
+ 'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
67458
67472
  }
67459
67473
 
67460
67474
  export declare interface JsonApiCookieSecurityConfigurationInDocument {
@@ -67475,15 +67489,7 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
67475
67489
  * API identifier of an object
67476
67490
  */
67477
67491
  'id': string;
67478
- 'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
67479
- }
67480
-
67481
- export declare interface JsonApiCookieSecurityConfigurationOutAttributes {
67482
- 'lastRotation'?: string;
67483
- /**
67484
- * Length of interval between automatic rotations expressed in format of ISO 8601 duration
67485
- */
67486
- 'rotationInterval'?: string;
67492
+ 'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
67487
67493
  }
67488
67494
 
67489
67495
  export declare interface JsonApiCookieSecurityConfigurationOutDocument {
@@ -67505,7 +67511,15 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
67505
67511
  * API identifier of an object
67506
67512
  */
67507
67513
  'id': string;
67508
- 'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
67514
+ 'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
67515
+ }
67516
+
67517
+ export declare interface JsonApiCookieSecurityConfigurationPatchAttributes {
67518
+ 'lastRotation'?: string;
67519
+ /**
67520
+ * Length of interval between automatic rotations expressed in format of ISO 8601 duration
67521
+ */
67522
+ 'rotationInterval'?: string;
67509
67523
  }
67510
67524
 
67511
67525
  export declare interface JsonApiCookieSecurityConfigurationPatchDocument {
@@ -67842,7 +67856,7 @@ export declare interface JsonApiCustomUserApplicationSettingIn {
67842
67856
  * API identifier of an object
67843
67857
  */
67844
67858
  'id': string;
67845
- 'attributes': JsonApiCustomUserApplicationSettingOutAttributes;
67859
+ 'attributes': JsonApiCustomUserApplicationSettingPostOptionalIdAttributes;
67846
67860
  }
67847
67861
 
67848
67862
  export declare interface JsonApiCustomUserApplicationSettingInDocument {
@@ -67863,19 +67877,7 @@ export declare interface JsonApiCustomUserApplicationSettingOut {
67863
67877
  * API identifier of an object
67864
67878
  */
67865
67879
  'id': string;
67866
- 'attributes': JsonApiCustomUserApplicationSettingOutAttributes;
67867
- }
67868
-
67869
- export declare interface JsonApiCustomUserApplicationSettingOutAttributes {
67870
- 'applicationName': string;
67871
- /**
67872
- * Free-form JSON content. Maximum supported length is 250000 characters.
67873
- */
67874
- 'content': object;
67875
- /**
67876
- * Workspace scope for this setting. Must reference an existing workspace the caller has at least VIEW access to. Null means user-level (no workspace scope).
67877
- */
67878
- 'workspaceId'?: string | null;
67880
+ 'attributes': JsonApiCustomUserApplicationSettingPostOptionalIdAttributes;
67879
67881
  }
67880
67882
 
67881
67883
  export declare interface JsonApiCustomUserApplicationSettingOutDocument {
@@ -67903,7 +67905,7 @@ export declare interface JsonApiCustomUserApplicationSettingOutWithLinks {
67903
67905
  * API identifier of an object
67904
67906
  */
67905
67907
  'id': string;
67906
- 'attributes': JsonApiCustomUserApplicationSettingOutAttributes;
67908
+ 'attributes': JsonApiCustomUserApplicationSettingPostOptionalIdAttributes;
67907
67909
  'links'?: ObjectLinks;
67908
67910
  }
67909
67911
 
@@ -67921,7 +67923,19 @@ export declare interface JsonApiCustomUserApplicationSettingPostOptionalId {
67921
67923
  * API identifier of an object
67922
67924
  */
67923
67925
  'id'?: string;
67924
- 'attributes': JsonApiCustomUserApplicationSettingOutAttributes;
67926
+ 'attributes': JsonApiCustomUserApplicationSettingPostOptionalIdAttributes;
67927
+ }
67928
+
67929
+ export declare interface JsonApiCustomUserApplicationSettingPostOptionalIdAttributes {
67930
+ 'applicationName': string;
67931
+ /**
67932
+ * Free-form JSON content. Maximum supported length is 250000 characters.
67933
+ */
67934
+ 'content': object;
67935
+ /**
67936
+ * Workspace scope for this setting. Must reference an existing workspace the caller has at least VIEW access to. Null means user-level (no workspace scope).
67937
+ */
67938
+ 'workspaceId'?: string | null;
67925
67939
  }
67926
67940
 
67927
67941
  export declare interface JsonApiCustomUserApplicationSettingPostOptionalIdDocument {
@@ -68410,7 +68424,7 @@ export declare interface JsonApiDataSourceInAttributes {
68410
68424
  /**
68411
68425
  * Additional parameters to be used when connecting to the database providing the data for the data source.
68412
68426
  */
68413
- 'parameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
68427
+ 'parameters'?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
68414
68428
  /**
68415
68429
  * Determines how the results coming from a particular datasource should be cached.
68416
68430
  */
@@ -68435,11 +68449,6 @@ export declare type JsonApiDataSourceInAttributesCacheStrategyEnum = 'ALWAYS' |
68435
68449
 
68436
68450
  export declare type JsonApiDataSourceInAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
68437
68451
 
68438
- export declare interface JsonApiDataSourceInAttributesParametersInner {
68439
- 'name': string;
68440
- 'value': string;
68441
- }
68442
-
68443
68452
  export declare type JsonApiDataSourceInAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
68444
68453
 
68445
68454
  export declare interface JsonApiDataSourceInDocument {
@@ -68492,11 +68501,11 @@ export declare interface JsonApiDataSourceOutAttributes {
68492
68501
  /**
68493
68502
  * Additional parameters to be used when connecting to the database providing the data for the data source.
68494
68503
  */
68495
- 'parameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
68504
+ 'parameters'?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
68496
68505
  /**
68497
68506
  * Decoded parameters to be used when connecting to the database providing the data for the data source.
68498
68507
  */
68499
- 'decodedParameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
68508
+ 'decodedParameters'?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
68500
68509
  /**
68501
68510
  * Determines how the results coming from a particular datasource should be cached.
68502
68511
  */
@@ -68525,6 +68534,11 @@ export declare type JsonApiDataSourceOutAttributesCacheStrategyEnum = 'ALWAYS' |
68525
68534
 
68526
68535
  export declare type JsonApiDataSourceOutAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
68527
68536
 
68537
+ export declare interface JsonApiDataSourceOutAttributesParametersInner {
68538
+ 'name': string;
68539
+ 'value': string;
68540
+ }
68541
+
68528
68542
  export declare type JsonApiDataSourceOutAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
68529
68543
 
68530
68544
  export declare interface JsonApiDataSourceOutDocument {
@@ -68622,7 +68636,7 @@ export declare interface JsonApiDataSourcePatchAttributes {
68622
68636
  /**
68623
68637
  * Additional parameters to be used when connecting to the database providing the data for the data source.
68624
68638
  */
68625
- 'parameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
68639
+ 'parameters'?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
68626
68640
  /**
68627
68641
  * Determines how the results coming from a particular datasource should be cached.
68628
68642
  */
@@ -68912,7 +68926,7 @@ export declare interface JsonApiExportTemplateIn {
68912
68926
  * API identifier of an object
68913
68927
  */
68914
68928
  'id': string;
68915
- 'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
68929
+ 'attributes': JsonApiExportTemplateOutAttributes;
68916
68930
  }
68917
68931
 
68918
68932
  export declare interface JsonApiExportTemplateInDocument {
@@ -68933,9 +68947,47 @@ export declare interface JsonApiExportTemplateOut {
68933
68947
  * API identifier of an object
68934
68948
  */
68935
68949
  'id': string;
68936
- 'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
68950
+ 'attributes': JsonApiExportTemplateOutAttributes;
68937
68951
  }
68938
68952
 
68953
+ export declare interface JsonApiExportTemplateOutAttributes {
68954
+ /**
68955
+ * User-facing name of the Slides template.
68956
+ */
68957
+ 'name': string;
68958
+ 'dashboardSlidesTemplate'?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
68959
+ 'widgetSlidesTemplate'?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
68960
+ }
68961
+
68962
+ /**
68963
+ * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
68964
+ */
68965
+ export declare interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
68966
+ /**
68967
+ * Export types this template applies to.
68968
+ */
68969
+ 'appliedOn': Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
68970
+ 'coverSlide'?: CoverSlideTemplate | null;
68971
+ 'introSlide'?: IntroSlideTemplate | null;
68972
+ 'sectionSlide'?: SectionSlideTemplate | null;
68973
+ 'contentSlide'?: ContentSlideTemplate | null;
68974
+ }
68975
+
68976
+ export declare type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
68977
+
68978
+ /**
68979
+ * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
68980
+ */
68981
+ export declare interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
68982
+ /**
68983
+ * Export types this template applies to.
68984
+ */
68985
+ 'appliedOn': Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
68986
+ 'contentSlide'?: ContentSlideTemplate | null;
68987
+ }
68988
+
68989
+ export declare type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
68990
+
68939
68991
  export declare interface JsonApiExportTemplateOutDocument {
68940
68992
  'data': JsonApiExportTemplateOut;
68941
68993
  'links'?: ObjectLinks;
@@ -68961,7 +69013,7 @@ export declare interface JsonApiExportTemplateOutWithLinks {
68961
69013
  * API identifier of an object
68962
69014
  */
68963
69015
  'id': string;
68964
- 'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
69016
+ 'attributes': JsonApiExportTemplateOutAttributes;
68965
69017
  'links'?: ObjectLinks;
68966
69018
  }
68967
69019
 
@@ -68987,8 +69039,8 @@ export declare interface JsonApiExportTemplatePatchAttributes {
68987
69039
  * User-facing name of the Slides template.
68988
69040
  */
68989
69041
  'name'?: string;
68990
- 'dashboardSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
68991
- 'widgetSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
69042
+ 'dashboardSlidesTemplate'?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
69043
+ 'widgetSlidesTemplate'?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
68992
69044
  }
68993
69045
 
68994
69046
  export declare interface JsonApiExportTemplatePatchDocument {
@@ -69009,47 +69061,9 @@ export declare interface JsonApiExportTemplatePostOptionalId {
69009
69061
  * API identifier of an object
69010
69062
  */
69011
69063
  'id'?: string;
69012
- 'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
69013
- }
69014
-
69015
- export declare interface JsonApiExportTemplatePostOptionalIdAttributes {
69016
- /**
69017
- * User-facing name of the Slides template.
69018
- */
69019
- 'name': string;
69020
- 'dashboardSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
69021
- 'widgetSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
69064
+ 'attributes': JsonApiExportTemplateOutAttributes;
69022
69065
  }
69023
69066
 
69024
- /**
69025
- * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
69026
- */
69027
- export declare interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
69028
- /**
69029
- * Export types this template applies to.
69030
- */
69031
- 'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
69032
- 'coverSlide'?: CoverSlideTemplate | null;
69033
- 'introSlide'?: IntroSlideTemplate | null;
69034
- 'sectionSlide'?: SectionSlideTemplate | null;
69035
- 'contentSlide'?: ContentSlideTemplate | null;
69036
- }
69037
-
69038
- export declare type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
69039
-
69040
- /**
69041
- * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
69042
- */
69043
- export declare interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
69044
- /**
69045
- * Export types this template applies to.
69046
- */
69047
- 'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
69048
- 'contentSlide'?: ContentSlideTemplate | null;
69049
- }
69050
-
69051
- export declare type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
69052
-
69053
69067
  export declare interface JsonApiExportTemplatePostOptionalIdDocument {
69054
69068
  'data': JsonApiExportTemplatePostOptionalId;
69055
69069
  }
@@ -69339,34 +69353,14 @@ export declare interface JsonApiFilterViewIn {
69339
69353
  * API identifier of an object
69340
69354
  */
69341
69355
  'id': string;
69342
- 'attributes': JsonApiFilterViewInAttributes;
69343
- 'relationships'?: JsonApiFilterViewInRelationships;
69344
- }
69345
-
69346
- export declare interface JsonApiFilterViewInAttributes {
69347
- 'title': string;
69348
- 'description'?: string;
69349
- 'tags'?: Array<string>;
69350
- 'areRelationsValid'?: boolean;
69351
- /**
69352
- * Indicator whether the filter view should by applied by default.
69353
- */
69354
- 'isDefault'?: boolean;
69355
- /**
69356
- * The respective filter context.
69357
- */
69358
- 'content': object;
69356
+ 'attributes': JsonApiFilterViewOutAttributes;
69357
+ 'relationships'?: JsonApiFilterViewOutRelationships;
69359
69358
  }
69360
69359
 
69361
69360
  export declare interface JsonApiFilterViewInDocument {
69362
69361
  'data': JsonApiFilterViewIn;
69363
69362
  }
69364
69363
 
69365
- export declare interface JsonApiFilterViewInRelationships {
69366
- 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
69367
- 'user'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
69368
- }
69369
-
69370
69364
  export declare type JsonApiFilterViewInTypeEnum = 'filterView';
69371
69365
 
69372
69366
  /**
@@ -69381,8 +69375,23 @@ export declare interface JsonApiFilterViewOut {
69381
69375
  * API identifier of an object
69382
69376
  */
69383
69377
  'id': string;
69384
- 'attributes': JsonApiFilterViewInAttributes;
69385
- 'relationships'?: JsonApiFilterViewInRelationships;
69378
+ 'attributes': JsonApiFilterViewOutAttributes;
69379
+ 'relationships'?: JsonApiFilterViewOutRelationships;
69380
+ }
69381
+
69382
+ export declare interface JsonApiFilterViewOutAttributes {
69383
+ 'title': string;
69384
+ 'description'?: string;
69385
+ 'tags'?: Array<string>;
69386
+ 'areRelationsValid'?: boolean;
69387
+ /**
69388
+ * Indicator whether the filter view should by applied by default.
69389
+ */
69390
+ 'isDefault'?: boolean;
69391
+ /**
69392
+ * The respective filter context.
69393
+ */
69394
+ 'content': object;
69386
69395
  }
69387
69396
 
69388
69397
  export declare interface JsonApiFilterViewOutDocument {
@@ -69412,6 +69421,11 @@ export declare interface JsonApiFilterViewOutList {
69412
69421
  'included'?: Array<JsonApiFilterViewOutIncludes>;
69413
69422
  }
69414
69423
 
69424
+ export declare interface JsonApiFilterViewOutRelationships {
69425
+ 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
69426
+ 'user'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
69427
+ }
69428
+
69415
69429
  export declare type JsonApiFilterViewOutTypeEnum = 'filterView';
69416
69430
 
69417
69431
  export declare interface JsonApiFilterViewOutWithLinks {
@@ -69423,8 +69437,8 @@ export declare interface JsonApiFilterViewOutWithLinks {
69423
69437
  * API identifier of an object
69424
69438
  */
69425
69439
  'id': string;
69426
- 'attributes': JsonApiFilterViewInAttributes;
69427
- 'relationships'?: JsonApiFilterViewInRelationships;
69440
+ 'attributes': JsonApiFilterViewOutAttributes;
69441
+ 'relationships'?: JsonApiFilterViewOutRelationships;
69428
69442
  'links'?: ObjectLinks;
69429
69443
  }
69430
69444
 
@@ -69443,7 +69457,7 @@ export declare interface JsonApiFilterViewPatch {
69443
69457
  */
69444
69458
  'id': string;
69445
69459
  'attributes': JsonApiFilterViewPatchAttributes;
69446
- 'relationships'?: JsonApiFilterViewInRelationships;
69460
+ 'relationships'?: JsonApiFilterViewOutRelationships;
69447
69461
  }
69448
69462
 
69449
69463
  export declare interface JsonApiFilterViewPatchAttributes {
@@ -69684,33 +69698,14 @@ export declare interface JsonApiIpAllowlistPolicyIn {
69684
69698
  * API identifier of an object
69685
69699
  */
69686
69700
  'id': string;
69687
- 'attributes': JsonApiIpAllowlistPolicyInAttributes;
69688
- 'relationships'?: JsonApiIpAllowlistPolicyInRelationships;
69689
- }
69690
-
69691
- export declare interface JsonApiIpAllowlistPolicyInAttributes {
69692
- /**
69693
- * Allowed source IPv4 or IPv6 addresses or CIDR ranges. The /0 and ::/0 prefixes are not allowed.
69694
- */
69695
- 'allowedSources': Array<string> | null;
69701
+ 'attributes': JsonApiIpAllowlistPolicyOutAttributes;
69702
+ 'relationships'?: JsonApiIpAllowlistPolicyOutRelationships;
69696
69703
  }
69697
69704
 
69698
69705
  export declare interface JsonApiIpAllowlistPolicyInDocument {
69699
69706
  'data': JsonApiIpAllowlistPolicyIn;
69700
69707
  }
69701
69708
 
69702
- export declare interface JsonApiIpAllowlistPolicyInRelationships {
69703
- 'users'?: JsonApiIpAllowlistPolicyInRelationshipsUsers;
69704
- 'userGroups'?: JsonApiUserOutRelationshipsUserGroups;
69705
- }
69706
-
69707
- export declare interface JsonApiIpAllowlistPolicyInRelationshipsUsers {
69708
- /**
69709
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
69710
- */
69711
- 'data': Array<JsonApiUserLinkage>;
69712
- }
69713
-
69714
69709
  export declare type JsonApiIpAllowlistPolicyInTypeEnum = 'ipAllowlistPolicy';
69715
69710
 
69716
69711
  /**
@@ -69725,8 +69720,15 @@ export declare interface JsonApiIpAllowlistPolicyOut {
69725
69720
  * API identifier of an object
69726
69721
  */
69727
69722
  'id': string;
69728
- 'attributes': JsonApiIpAllowlistPolicyInAttributes;
69729
- 'relationships'?: JsonApiIpAllowlistPolicyInRelationships;
69723
+ 'attributes': JsonApiIpAllowlistPolicyOutAttributes;
69724
+ 'relationships'?: JsonApiIpAllowlistPolicyOutRelationships;
69725
+ }
69726
+
69727
+ export declare interface JsonApiIpAllowlistPolicyOutAttributes {
69728
+ /**
69729
+ * Allowed source IPv4 or IPv6 addresses or CIDR ranges. The /0 and ::/0 prefixes are not allowed.
69730
+ */
69731
+ 'allowedSources': Array<string> | null;
69730
69732
  }
69731
69733
 
69732
69734
  export declare interface JsonApiIpAllowlistPolicyOutDocument {
@@ -69756,6 +69758,18 @@ export declare interface JsonApiIpAllowlistPolicyOutList {
69756
69758
  'included'?: Array<JsonApiIpAllowlistPolicyOutIncludes>;
69757
69759
  }
69758
69760
 
69761
+ export declare interface JsonApiIpAllowlistPolicyOutRelationships {
69762
+ 'users'?: JsonApiIpAllowlistPolicyOutRelationshipsUsers;
69763
+ 'userGroups'?: JsonApiUserOutRelationshipsUserGroups;
69764
+ }
69765
+
69766
+ export declare interface JsonApiIpAllowlistPolicyOutRelationshipsUsers {
69767
+ /**
69768
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
69769
+ */
69770
+ 'data': Array<JsonApiUserLinkage>;
69771
+ }
69772
+
69759
69773
  export declare type JsonApiIpAllowlistPolicyOutTypeEnum = 'ipAllowlistPolicy';
69760
69774
 
69761
69775
  export declare interface JsonApiIpAllowlistPolicyOutWithLinks {
@@ -69767,8 +69781,8 @@ export declare interface JsonApiIpAllowlistPolicyOutWithLinks {
69767
69781
  * API identifier of an object
69768
69782
  */
69769
69783
  'id': string;
69770
- 'attributes': JsonApiIpAllowlistPolicyInAttributes;
69771
- 'relationships'?: JsonApiIpAllowlistPolicyInRelationships;
69784
+ 'attributes': JsonApiIpAllowlistPolicyOutAttributes;
69785
+ 'relationships'?: JsonApiIpAllowlistPolicyOutRelationships;
69772
69786
  'links'?: ObjectLinks;
69773
69787
  }
69774
69788
 
@@ -69786,11 +69800,7 @@ export declare interface JsonApiJwkIn {
69786
69800
  * API identifier of an object
69787
69801
  */
69788
69802
  'id': string;
69789
- 'attributes'?: JsonApiJwkInAttributes;
69790
- }
69791
-
69792
- export declare interface JsonApiJwkInAttributes {
69793
- 'content'?: RsaSpecification;
69803
+ 'attributes'?: JsonApiJwkOutAttributes;
69794
69804
  }
69795
69805
 
69796
69806
  export declare interface JsonApiJwkInDocument {
@@ -69811,7 +69821,11 @@ export declare interface JsonApiJwkOut {
69811
69821
  * API identifier of an object
69812
69822
  */
69813
69823
  'id': string;
69814
- 'attributes'?: JsonApiJwkInAttributes;
69824
+ 'attributes'?: JsonApiJwkOutAttributes;
69825
+ }
69826
+
69827
+ export declare interface JsonApiJwkOutAttributes {
69828
+ 'content'?: RsaSpecification;
69815
69829
  }
69816
69830
 
69817
69831
  export declare interface JsonApiJwkOutDocument {
@@ -69839,7 +69853,7 @@ export declare interface JsonApiJwkOutWithLinks {
69839
69853
  * API identifier of an object
69840
69854
  */
69841
69855
  'id': string;
69842
- 'attributes'?: JsonApiJwkInAttributes;
69856
+ 'attributes'?: JsonApiJwkOutAttributes;
69843
69857
  'links'?: ObjectLinks;
69844
69858
  }
69845
69859
 
@@ -69857,7 +69871,7 @@ export declare interface JsonApiJwkPatch {
69857
69871
  * API identifier of an object
69858
69872
  */
69859
69873
  'id': string;
69860
- 'attributes'?: JsonApiJwkInAttributes;
69874
+ 'attributes'?: JsonApiJwkOutAttributes;
69861
69875
  }
69862
69876
 
69863
69877
  export declare interface JsonApiJwkPatchDocument {
@@ -70997,7 +71011,7 @@ export declare interface JsonApiNotificationChannelOut {
70997
71011
  export declare interface JsonApiNotificationChannelOutAttributes {
70998
71012
  'name'?: string | null;
70999
71013
  'description'?: string | null;
71000
- 'destination'?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
71014
+ 'destination'?: JsonApiNotificationChannelOutAttributesDestination;
71001
71015
  'destinationType'?: JsonApiNotificationChannelOutAttributesDestinationTypeEnum | null;
71002
71016
  /**
71003
71017
  * 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}
@@ -71025,6 +71039,12 @@ export declare type JsonApiNotificationChannelOutAttributesAllowedRecipientsEnum
71025
71039
 
71026
71040
  export declare type JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum = 'HIDDEN' | 'INTERNAL_ONLY' | 'ALL';
71027
71041
 
71042
+ /**
71043
+ * @type JsonApiNotificationChannelOutAttributesDestination
71044
+ * The destination where the notifications are to be sent.
71045
+ */
71046
+ export declare type JsonApiNotificationChannelOutAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
71047
+
71028
71048
  export declare type JsonApiNotificationChannelOutAttributesDestinationTypeEnum = 'WEBHOOK' | 'SMTP' | 'DEFAULT_SMTP' | 'IN_PLATFORM';
71029
71049
 
71030
71050
  export declare type JsonApiNotificationChannelOutAttributesInPlatformNotificationEnum = 'DISABLED' | 'ENABLED';
@@ -71099,7 +71119,7 @@ export declare interface JsonApiNotificationChannelPostOptionalId {
71099
71119
  export declare interface JsonApiNotificationChannelPostOptionalIdAttributes {
71100
71120
  'name'?: string | null;
71101
71121
  'description'?: string | null;
71102
- 'destination'?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
71122
+ 'destination'?: JsonApiNotificationChannelOutAttributesDestination;
71103
71123
  /**
71104
71124
  * 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}
71105
71125
  */
@@ -71126,12 +71146,6 @@ export declare type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRec
71126
71146
 
71127
71147
  export declare type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = 'HIDDEN' | 'INTERNAL_ONLY' | 'ALL';
71128
71148
 
71129
- /**
71130
- * @type JsonApiNotificationChannelPostOptionalIdAttributesDestination
71131
- * The destination where the notifications are to be sent.
71132
- */
71133
- export declare type JsonApiNotificationChannelPostOptionalIdAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
71134
-
71135
71149
  export declare type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = 'DISABLED' | 'ENABLED';
71136
71150
 
71137
71151
  export declare interface JsonApiNotificationChannelPostOptionalIdDocument {
@@ -71152,37 +71166,14 @@ export declare interface JsonApiOrganizationIn {
71152
71166
  * API identifier of an object
71153
71167
  */
71154
71168
  'id': string;
71155
- 'attributes'?: JsonApiOrganizationInAttributes;
71156
- 'relationships'?: JsonApiOrganizationInRelationships;
71157
- }
71158
-
71159
- export declare interface JsonApiOrganizationInAttributes {
71160
- 'name'?: string | null;
71161
- 'hostname'?: string;
71162
- 'allowedOrigins'?: Array<string>;
71163
- /**
71164
- * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
71165
- * @deprecated
71166
- */
71167
- 'earlyAccess'?: string | null;
71168
- /**
71169
- * The early access feature identifiers. They are used to enable experimental features.
71170
- */
71171
- 'earlyAccessValues'?: Array<string> | null;
71169
+ 'attributes'?: JsonApiOrganizationPatchAttributes;
71170
+ 'relationships'?: JsonApiOrganizationPatchRelationships;
71172
71171
  }
71173
71172
 
71174
71173
  export declare interface JsonApiOrganizationInDocument {
71175
71174
  'data': JsonApiOrganizationIn;
71176
71175
  }
71177
71176
 
71178
- export declare interface JsonApiOrganizationInRelationships {
71179
- 'identityProvider'?: JsonApiOrganizationInRelationshipsIdentityProvider;
71180
- }
71181
-
71182
- export declare interface JsonApiOrganizationInRelationshipsIdentityProvider {
71183
- 'data': JsonApiIdentityProviderLinkage | null;
71184
- }
71185
-
71186
71177
  export declare type JsonApiOrganizationInTypeEnum = 'organization';
71187
71178
 
71188
71179
  /**
@@ -71259,7 +71250,7 @@ export declare type JsonApiOrganizationOutMetaPermissionsEnum = 'MANAGE' | 'SELF
71259
71250
  export declare interface JsonApiOrganizationOutRelationships {
71260
71251
  'bootstrapUser'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
71261
71252
  'bootstrapUserGroup'?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
71262
- 'identityProvider'?: JsonApiOrganizationInRelationshipsIdentityProvider;
71253
+ 'identityProvider'?: JsonApiOrganizationOutRelationshipsIdentityProvider;
71263
71254
  }
71264
71255
 
71265
71256
  export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
@@ -71270,6 +71261,10 @@ export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
71270
71261
  'data': JsonApiUserGroupLinkage | null;
71271
71262
  }
71272
71263
 
71264
+ export declare interface JsonApiOrganizationOutRelationshipsIdentityProvider {
71265
+ 'data': JsonApiIdentityProviderLinkage | null;
71266
+ }
71267
+
71273
71268
  export declare type JsonApiOrganizationOutTypeEnum = 'organization';
71274
71269
 
71275
71270
  /**
@@ -71284,14 +71279,33 @@ export declare interface JsonApiOrganizationPatch {
71284
71279
  * API identifier of an object
71285
71280
  */
71286
71281
  'id': string;
71287
- 'attributes'?: JsonApiOrganizationInAttributes;
71288
- 'relationships'?: JsonApiOrganizationInRelationships;
71282
+ 'attributes'?: JsonApiOrganizationPatchAttributes;
71283
+ 'relationships'?: JsonApiOrganizationPatchRelationships;
71284
+ }
71285
+
71286
+ export declare interface JsonApiOrganizationPatchAttributes {
71287
+ 'name'?: string | null;
71288
+ 'hostname'?: string;
71289
+ 'allowedOrigins'?: Array<string>;
71290
+ /**
71291
+ * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
71292
+ * @deprecated
71293
+ */
71294
+ 'earlyAccess'?: string | null;
71295
+ /**
71296
+ * The early access feature identifiers. They are used to enable experimental features.
71297
+ */
71298
+ 'earlyAccessValues'?: Array<string> | null;
71289
71299
  }
71290
71300
 
71291
71301
  export declare interface JsonApiOrganizationPatchDocument {
71292
71302
  'data': JsonApiOrganizationPatch;
71293
71303
  }
71294
71304
 
71305
+ export declare interface JsonApiOrganizationPatchRelationships {
71306
+ 'identityProvider'?: JsonApiOrganizationOutRelationshipsIdentityProvider;
71307
+ }
71308
+
71295
71309
  export declare type JsonApiOrganizationPatchTypeEnum = 'organization';
71296
71310
 
71297
71311
  /**
@@ -71306,19 +71320,9 @@ export declare interface JsonApiOrganizationSettingIn {
71306
71320
  * API identifier of an object
71307
71321
  */
71308
71322
  'id': string;
71309
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
71310
- }
71311
-
71312
- export declare interface JsonApiOrganizationSettingInAttributes {
71313
- /**
71314
- * Free-form JSON content. Maximum supported length is 15000 characters.
71315
- */
71316
- 'content'?: object;
71317
- 'type'?: JsonApiOrganizationSettingInAttributesTypeEnum;
71323
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
71318
71324
  }
71319
71325
 
71320
- export declare type JsonApiOrganizationSettingInAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
71321
-
71322
71326
  export declare interface JsonApiOrganizationSettingInDocument {
71323
71327
  'data': JsonApiOrganizationSettingIn;
71324
71328
  }
@@ -71337,9 +71341,19 @@ export declare interface JsonApiOrganizationSettingOut {
71337
71341
  * API identifier of an object
71338
71342
  */
71339
71343
  'id': string;
71340
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
71344
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
71345
+ }
71346
+
71347
+ export declare interface JsonApiOrganizationSettingOutAttributes {
71348
+ /**
71349
+ * Free-form JSON content. Maximum supported length is 15000 characters.
71350
+ */
71351
+ 'content'?: object;
71352
+ 'type'?: JsonApiOrganizationSettingOutAttributesTypeEnum;
71341
71353
  }
71342
71354
 
71355
+ export declare type JsonApiOrganizationSettingOutAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
71356
+
71343
71357
  export declare interface JsonApiOrganizationSettingOutDocument {
71344
71358
  'data': JsonApiOrganizationSettingOut;
71345
71359
  'links'?: ObjectLinks;
@@ -71365,7 +71379,7 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
71365
71379
  * API identifier of an object
71366
71380
  */
71367
71381
  'id': string;
71368
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
71382
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
71369
71383
  'links'?: ObjectLinks;
71370
71384
  }
71371
71385
 
@@ -71383,7 +71397,7 @@ export declare interface JsonApiOrganizationSettingPatch {
71383
71397
  * API identifier of an object
71384
71398
  */
71385
71399
  'id': string;
71386
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
71400
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
71387
71401
  }
71388
71402
 
71389
71403
  export declare interface JsonApiOrganizationSettingPatchDocument {
@@ -71844,7 +71858,7 @@ export declare interface JsonApiUserDataFilterIn {
71844
71858
  * API identifier of an object
71845
71859
  */
71846
71860
  'id': string;
71847
- 'attributes': JsonApiUserDataFilterPostOptionalIdAttributes;
71861
+ 'attributes': JsonApiUserDataFilterOutAttributes;
71848
71862
  'relationships'?: JsonApiUserDataFilterPostOptionalIdRelationships;
71849
71863
  }
71850
71864
 
@@ -71867,10 +71881,18 @@ export declare interface JsonApiUserDataFilterOut {
71867
71881
  */
71868
71882
  'id': string;
71869
71883
  'meta'?: JsonApiExportDefinitionOutMeta;
71870
- 'attributes': JsonApiUserDataFilterPostOptionalIdAttributes;
71884
+ 'attributes': JsonApiUserDataFilterOutAttributes;
71871
71885
  'relationships'?: JsonApiUserDataFilterOutRelationships;
71872
71886
  }
71873
71887
 
71888
+ export declare interface JsonApiUserDataFilterOutAttributes {
71889
+ 'title'?: string;
71890
+ 'description'?: string;
71891
+ 'tags'?: Array<string>;
71892
+ 'areRelationsValid'?: boolean;
71893
+ 'maql': string;
71894
+ }
71895
+
71874
71896
  export declare interface JsonApiUserDataFilterOutDocument {
71875
71897
  'data': JsonApiUserDataFilterOut;
71876
71898
  'links'?: ObjectLinks;
@@ -71921,7 +71943,7 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
71921
71943
  */
71922
71944
  'id': string;
71923
71945
  'meta'?: JsonApiExportDefinitionOutMeta;
71924
- 'attributes': JsonApiUserDataFilterPostOptionalIdAttributes;
71946
+ 'attributes': JsonApiUserDataFilterOutAttributes;
71925
71947
  'relationships'?: JsonApiUserDataFilterOutRelationships;
71926
71948
  'links'?: ObjectLinks;
71927
71949
  }
@@ -71970,18 +71992,10 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
71970
71992
  * API identifier of an object
71971
71993
  */
71972
71994
  'id'?: string;
71973
- 'attributes': JsonApiUserDataFilterPostOptionalIdAttributes;
71995
+ 'attributes': JsonApiUserDataFilterOutAttributes;
71974
71996
  'relationships'?: JsonApiUserDataFilterPostOptionalIdRelationships;
71975
71997
  }
71976
71998
 
71977
- export declare interface JsonApiUserDataFilterPostOptionalIdAttributes {
71978
- 'title'?: string;
71979
- 'description'?: string;
71980
- 'tags'?: Array<string>;
71981
- 'areRelationsValid'?: boolean;
71982
- 'maql': string;
71983
- }
71984
-
71985
71999
  export declare interface JsonApiUserDataFilterPostOptionalIdDocument {
71986
72000
  'data': JsonApiUserDataFilterPostOptionalId;
71987
72001
  }
@@ -72317,7 +72331,7 @@ export declare interface JsonApiUserSettingIn {
72317
72331
  * API identifier of an object
72318
72332
  */
72319
72333
  'id': string;
72320
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
72334
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
72321
72335
  }
72322
72336
 
72323
72337
  export declare interface JsonApiUserSettingInDocument {
@@ -72338,7 +72352,7 @@ export declare interface JsonApiUserSettingOut {
72338
72352
  * API identifier of an object
72339
72353
  */
72340
72354
  'id': string;
72341
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
72355
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
72342
72356
  }
72343
72357
 
72344
72358
  export declare interface JsonApiUserSettingOutDocument {
@@ -72366,7 +72380,7 @@ export declare interface JsonApiUserSettingOutWithLinks {
72366
72380
  * API identifier of an object
72367
72381
  */
72368
72382
  'id': string;
72369
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
72383
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
72370
72384
  'links'?: ObjectLinks;
72371
72385
  }
72372
72386
 
@@ -72728,7 +72742,7 @@ export declare interface JsonApiWorkspaceAutomationOutRelationships {
72728
72742
  'createdBy'?: JsonApiAgentOutRelationshipsCreatedBy;
72729
72743
  'modifiedBy'?: JsonApiAgentOutRelationshipsCreatedBy;
72730
72744
  'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
72731
- 'recipients'?: JsonApiIpAllowlistPolicyInRelationshipsUsers;
72745
+ 'recipients'?: JsonApiIpAllowlistPolicyOutRelationshipsUsers;
72732
72746
  'automationResults'?: JsonApiWorkspaceAutomationOutRelationshipsAutomationResults;
72733
72747
  }
72734
72748
 
@@ -72909,28 +72923,14 @@ export declare interface JsonApiWorkspaceDataFilterSettingIn {
72909
72923
  * API identifier of an object
72910
72924
  */
72911
72925
  'id': string;
72912
- 'attributes'?: JsonApiWorkspaceDataFilterSettingInAttributes;
72913
- 'relationships'?: JsonApiWorkspaceDataFilterSettingInRelationships;
72914
- }
72915
-
72916
- export declare interface JsonApiWorkspaceDataFilterSettingInAttributes {
72917
- 'title'?: string;
72918
- 'description'?: string;
72919
- 'filterValues'?: Array<string>;
72926
+ 'attributes'?: JsonApiWorkspaceDataFilterSettingOutAttributes;
72927
+ 'relationships'?: JsonApiWorkspaceDataFilterSettingOutRelationships;
72920
72928
  }
72921
72929
 
72922
72930
  export declare interface JsonApiWorkspaceDataFilterSettingInDocument {
72923
72931
  'data': JsonApiWorkspaceDataFilterSettingIn;
72924
72932
  }
72925
72933
 
72926
- export declare interface JsonApiWorkspaceDataFilterSettingInRelationships {
72927
- 'workspaceDataFilter'?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
72928
- }
72929
-
72930
- export declare interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
72931
- 'data': JsonApiWorkspaceDataFilterLinkage | null;
72932
- }
72933
-
72934
72934
  export declare type JsonApiWorkspaceDataFilterSettingInTypeEnum = 'workspaceDataFilterSetting';
72935
72935
 
72936
72936
  /**
@@ -72956,8 +72956,14 @@ export declare interface JsonApiWorkspaceDataFilterSettingOut {
72956
72956
  */
72957
72957
  'id': string;
72958
72958
  'meta'?: JsonApiExportDefinitionOutMeta;
72959
- 'attributes'?: JsonApiWorkspaceDataFilterSettingInAttributes;
72960
- 'relationships'?: JsonApiWorkspaceDataFilterSettingInRelationships;
72959
+ 'attributes'?: JsonApiWorkspaceDataFilterSettingOutAttributes;
72960
+ 'relationships'?: JsonApiWorkspaceDataFilterSettingOutRelationships;
72961
+ }
72962
+
72963
+ export declare interface JsonApiWorkspaceDataFilterSettingOutAttributes {
72964
+ 'title'?: string;
72965
+ 'description'?: string;
72966
+ 'filterValues'?: Array<string>;
72961
72967
  }
72962
72968
 
72963
72969
  export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
@@ -72982,6 +72988,14 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutList {
72982
72988
  'included'?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
72983
72989
  }
72984
72990
 
72991
+ export declare interface JsonApiWorkspaceDataFilterSettingOutRelationships {
72992
+ 'workspaceDataFilter'?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
72993
+ }
72994
+
72995
+ export declare interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
72996
+ 'data': JsonApiWorkspaceDataFilterLinkage | null;
72997
+ }
72998
+
72985
72999
  export declare type JsonApiWorkspaceDataFilterSettingOutTypeEnum = 'workspaceDataFilterSetting';
72986
73000
 
72987
73001
  export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
@@ -72994,8 +73008,8 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
72994
73008
  */
72995
73009
  'id': string;
72996
73010
  'meta'?: JsonApiExportDefinitionOutMeta;
72997
- 'attributes'?: JsonApiWorkspaceDataFilterSettingInAttributes;
72998
- 'relationships'?: JsonApiWorkspaceDataFilterSettingInRelationships;
73011
+ 'attributes'?: JsonApiWorkspaceDataFilterSettingOutAttributes;
73012
+ 'relationships'?: JsonApiWorkspaceDataFilterSettingOutRelationships;
72999
73013
  'links'?: ObjectLinks;
73000
73014
  }
73001
73015
 
@@ -73013,8 +73027,8 @@ export declare interface JsonApiWorkspaceDataFilterSettingPatch {
73013
73027
  * API identifier of an object
73014
73028
  */
73015
73029
  'id': string;
73016
- 'attributes'?: JsonApiWorkspaceDataFilterSettingInAttributes;
73017
- 'relationships'?: JsonApiWorkspaceDataFilterSettingInRelationships;
73030
+ 'attributes'?: JsonApiWorkspaceDataFilterSettingOutAttributes;
73031
+ 'relationships'?: JsonApiWorkspaceDataFilterSettingOutRelationships;
73018
73032
  }
73019
73033
 
73020
73034
  export declare interface JsonApiWorkspaceDataFilterSettingPatchDocument {
@@ -73412,7 +73426,7 @@ export declare interface JsonApiWorkspaceSettingIn {
73412
73426
  * API identifier of an object
73413
73427
  */
73414
73428
  'id': string;
73415
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
73429
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
73416
73430
  }
73417
73431
 
73418
73432
  export declare interface JsonApiWorkspaceSettingInDocument {
@@ -73434,7 +73448,7 @@ export declare interface JsonApiWorkspaceSettingOut {
73434
73448
  */
73435
73449
  'id': string;
73436
73450
  'meta'?: JsonApiExportDefinitionOutMeta;
73437
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
73451
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
73438
73452
  }
73439
73453
 
73440
73454
  export declare interface JsonApiWorkspaceSettingOutDocument {
@@ -73463,7 +73477,7 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
73463
73477
  */
73464
73478
  'id': string;
73465
73479
  'meta'?: JsonApiExportDefinitionOutMeta;
73466
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
73480
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
73467
73481
  'links'?: ObjectLinks;
73468
73482
  }
73469
73483
 
@@ -73481,7 +73495,7 @@ export declare interface JsonApiWorkspaceSettingPatch {
73481
73495
  * API identifier of an object
73482
73496
  */
73483
73497
  'id': string;
73484
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
73498
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
73485
73499
  }
73486
73500
 
73487
73501
  export declare interface JsonApiWorkspaceSettingPatchDocument {
@@ -73502,7 +73516,7 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
73502
73516
  * API identifier of an object
73503
73517
  */
73504
73518
  'id'?: string;
73505
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
73519
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
73506
73520
  }
73507
73521
 
73508
73522
  export declare interface JsonApiWorkspaceSettingPostOptionalIdDocument {
@@ -90956,7 +90970,7 @@ export declare interface ResolvedSetting {
90956
90970
  'type'?: ResolvedSettingTypeEnum;
90957
90971
  }
90958
90972
 
90959
- export declare type ResolvedSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
90973
+ export declare type ResolvedSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
90960
90974
 
90961
90975
  /**
90962
90976
  * A request containing setting IDs to resolve.
@@ -91937,6 +91951,7 @@ export declare interface SearchResultObject {
91937
91951
  * If true, this object is hidden from AI search results by default.
91938
91952
  */
91939
91953
  'isHidden'?: boolean;
91954
+ 'certification'?: CertificationInfo;
91940
91955
  }
91941
91956
 
91942
91957
  /**