@gooddata/api-client-tiger 11.3.0-alpha.1 → 11.3.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.
@@ -997,6 +997,46 @@ export declare interface ActionsApiCancelExecutionsRequest {
997
997
  readonly afmCancelTokens: AfmCancelTokens;
998
998
  }
999
999
 
1000
+ /**
1001
+ * Request parameters for changeAnalysis operation in ActionsApi.
1002
+ * @export
1003
+ * @interface ActionsApiChangeAnalysisRequest
1004
+ */
1005
+ declare interface ActionsApiChangeAnalysisRequest {
1006
+ /**
1007
+ * Workspace identifier
1008
+ * @type {string}
1009
+ * @memberof ActionsApiChangeAnalysis
1010
+ */
1011
+ readonly workspaceId: string;
1012
+ /**
1013
+ *
1014
+ * @type {ChangeAnalysisRequest}
1015
+ * @memberof ActionsApiChangeAnalysis
1016
+ */
1017
+ readonly changeAnalysisRequest: ChangeAnalysisRequest;
1018
+ }
1019
+
1020
+ /**
1021
+ * Request parameters for changeAnalysisResult operation in ActionsApi.
1022
+ * @export
1023
+ * @interface ActionsApiChangeAnalysisResultRequest
1024
+ */
1025
+ declare interface ActionsApiChangeAnalysisResultRequest {
1026
+ /**
1027
+ * Workspace identifier
1028
+ * @type {string}
1029
+ * @memberof ActionsApiChangeAnalysisResult
1030
+ */
1031
+ readonly workspaceId: string;
1032
+ /**
1033
+ * Result ID
1034
+ * @type {string}
1035
+ * @memberof ActionsApiChangeAnalysisResult
1036
+ */
1037
+ readonly resultId: string;
1038
+ }
1039
+
1000
1040
  /**
1001
1041
  * Request parameters for checkEntityOverrides operation in ActionsApi.
1002
1042
  * @export
@@ -5099,6 +5139,24 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
5099
5139
  * @memberof ActionsApi
5100
5140
  */
5101
5141
  cancelExecutions(requestParameters: ActionsApiCancelExecutionsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<AfmCancelTokens, any, {}>>;
5142
+ /**
5143
+ * Computes change analysis for the provided execution definition.
5144
+ * @summary Compute change analysis
5145
+ * @param {ActionsApiChangeAnalysisRequest} requestParameters Request parameters.
5146
+ * @param {*} [options] Override http request option.
5147
+ * @throws {RequiredError}
5148
+ * @memberof ActionsApi
5149
+ */
5150
+ changeAnalysis(requestParameters: ActionsApiChangeAnalysisRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<ChangeAnalysisResponse, any, {}>>;
5151
+ /**
5152
+ * Gets change analysis result.
5153
+ * @summary Get change analysis result
5154
+ * @param {ActionsApiChangeAnalysisResultRequest} requestParameters Request parameters.
5155
+ * @param {*} [options] Override http request option.
5156
+ * @throws {RequiredError}
5157
+ * @memberof ActionsApi
5158
+ */
5159
+ changeAnalysisResult(requestParameters: ActionsApiChangeAnalysisResultRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<ChangeAnalysisResult, any, {}>>;
5102
5160
  /**
5103
5161
  * (EXPERIMENTAL) Computes clusters for data points from the provided execution result and parameters.
5104
5162
  * @summary (EXPERIMENTAL) Smart functions - Clustering
@@ -5397,6 +5455,24 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
5397
5455
  * @throws {RequiredError}
5398
5456
  */
5399
5457
  cancelExecutions: (workspaceId: string, afmCancelTokens: AfmCancelTokens, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
5458
+ /**
5459
+ * Computes change analysis for the provided execution definition.
5460
+ * @summary Compute change analysis
5461
+ * @param {string} workspaceId Workspace identifier
5462
+ * @param {ChangeAnalysisRequest} changeAnalysisRequest
5463
+ * @param {*} [options] Override http request option.
5464
+ * @throws {RequiredError}
5465
+ */
5466
+ changeAnalysis: (workspaceId: string, changeAnalysisRequest: ChangeAnalysisRequest, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
5467
+ /**
5468
+ * Gets change analysis result.
5469
+ * @summary Get change analysis result
5470
+ * @param {string} workspaceId Workspace identifier
5471
+ * @param {string} resultId Result ID
5472
+ * @param {*} [options] Override http request option.
5473
+ * @throws {RequiredError}
5474
+ */
5475
+ changeAnalysisResult: (workspaceId: string, resultId: string, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
5400
5476
  /**
5401
5477
  * (EXPERIMENTAL) Computes clusters for data points from the provided execution result and parameters.
5402
5478
  * @summary (EXPERIMENTAL) Smart functions - Clustering
@@ -5700,6 +5776,22 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
5700
5776
  * @throws {RequiredError}
5701
5777
  */
5702
5778
  cancelExecutions(requestParameters: ActionsApiCancelExecutionsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmCancelTokens>;
5779
+ /**
5780
+ * Computes change analysis for the provided execution definition.
5781
+ * @summary Compute change analysis
5782
+ * @param {ActionsApiChangeAnalysisRequest} requestParameters Request parameters.
5783
+ * @param {*} [options] Override http request option.
5784
+ * @throws {RequiredError}
5785
+ */
5786
+ changeAnalysis(requestParameters: ActionsApiChangeAnalysisRequest, options?: AxiosRequestConfig): AxiosPromise<ChangeAnalysisResponse>;
5787
+ /**
5788
+ * Gets change analysis result.
5789
+ * @summary Get change analysis result
5790
+ * @param {ActionsApiChangeAnalysisResultRequest} requestParameters Request parameters.
5791
+ * @param {*} [options] Override http request option.
5792
+ * @throws {RequiredError}
5793
+ */
5794
+ changeAnalysisResult(requestParameters: ActionsApiChangeAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<ChangeAnalysisResult>;
5703
5795
  /**
5704
5796
  * (EXPERIMENTAL) Computes clusters for data points from the provided execution result and parameters.
5705
5797
  * @summary (EXPERIMENTAL) Smart functions - Clustering
@@ -5974,6 +6066,24 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
5974
6066
  * @throws {RequiredError}
5975
6067
  */
5976
6068
  cancelExecutions(workspaceId: string, afmCancelTokens: AfmCancelTokens, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AfmCancelTokens>>;
6069
+ /**
6070
+ * Computes change analysis for the provided execution definition.
6071
+ * @summary Compute change analysis
6072
+ * @param {string} workspaceId Workspace identifier
6073
+ * @param {ChangeAnalysisRequest} changeAnalysisRequest
6074
+ * @param {*} [options] Override http request option.
6075
+ * @throws {RequiredError}
6076
+ */
6077
+ changeAnalysis(workspaceId: string, changeAnalysisRequest: ChangeAnalysisRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ChangeAnalysisResponse>>;
6078
+ /**
6079
+ * Gets change analysis result.
6080
+ * @summary Get change analysis result
6081
+ * @param {string} workspaceId Workspace identifier
6082
+ * @param {string} resultId Result ID
6083
+ * @param {*} [options] Override http request option.
6084
+ * @throws {RequiredError}
6085
+ */
6086
+ changeAnalysisResult(workspaceId: string, resultId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ChangeAnalysisResult>>;
5977
6087
  /**
5978
6088
  * (EXPERIMENTAL) Computes clusters for data points from the provided execution result and parameters.
5979
6089
  * @summary (EXPERIMENTAL) Smart functions - Clustering
@@ -6286,6 +6396,24 @@ export declare interface AfmActionsApiInterface {
6286
6396
  * @memberof ActionsApiInterface
6287
6397
  */
6288
6398
  cancelExecutions(requestParameters: ActionsApiCancelExecutionsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmCancelTokens>;
6399
+ /**
6400
+ * Computes change analysis for the provided execution definition.
6401
+ * @summary Compute change analysis
6402
+ * @param {ActionsApiChangeAnalysisRequest} requestParameters Request parameters.
6403
+ * @param {*} [options] Override http request option.
6404
+ * @throws {RequiredError}
6405
+ * @memberof ActionsApiInterface
6406
+ */
6407
+ changeAnalysis(requestParameters: ActionsApiChangeAnalysisRequest, options?: AxiosRequestConfig): AxiosPromise<ChangeAnalysisResponse>;
6408
+ /**
6409
+ * Gets change analysis result.
6410
+ * @summary Get change analysis result
6411
+ * @param {ActionsApiChangeAnalysisResultRequest} requestParameters Request parameters.
6412
+ * @param {*} [options] Override http request option.
6413
+ * @throws {RequiredError}
6414
+ * @memberof ActionsApiInterface
6415
+ */
6416
+ changeAnalysisResult(requestParameters: ActionsApiChangeAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<ChangeAnalysisResult>;
6289
6417
  /**
6290
6418
  * (EXPERIMENTAL) Computes clusters for data points from the provided execution result and parameters.
6291
6419
  * @summary (EXPERIMENTAL) Smart functions - Clustering
@@ -13972,6 +14100,49 @@ export declare interface CacheUsageData {
13972
14100
  };
13973
14101
  }
13974
14102
 
14103
+ /**
14104
+ * Request for change analysis computation
14105
+ */
14106
+ declare interface ChangeAnalysisRequest {
14107
+ metricIdentifier: ObjectIdentifier;
14108
+ dateAttributeIdentifier: ObjectIdentifier;
14109
+ /**
14110
+ * The reference time period (e.g., \'2025-01\')
14111
+ */
14112
+ referencePeriod: string;
14113
+ /**
14114
+ * The analyzed time period (e.g., \'2025-02\')
14115
+ */
14116
+ analyzedPeriod: string;
14117
+ /**
14118
+ * The attributes to analyze for significant changes. If empty, valid attributes will be automatically discovered.
14119
+ */
14120
+ attributeIdentifiers: Array<ObjectIdentifier>;
14121
+ /**
14122
+ * The significance threshold for changes (default: 2.0 standard deviations)
14123
+ */
14124
+ significanceThreshold?: number;
14125
+ }
14126
+
14127
+ /**
14128
+ * Response for change analysis computation
14129
+ */
14130
+ declare interface ChangeAnalysisResponse {
14131
+ links: ExecutionLinks;
14132
+ }
14133
+
14134
+ /**
14135
+ * Result of a change analysis execution.
14136
+ */
14137
+ declare interface ChangeAnalysisResult {
14138
+ /**
14139
+ * The change analysis result data containing significant changes.
14140
+ */
14141
+ data: {
14142
+ [key: string]: object;
14143
+ };
14144
+ }
14145
+
13975
14146
  /**
13976
14147
  * List of chat history interactions.
13977
14148
  */
@@ -45477,15 +45648,7 @@ export declare interface JsonApiColorPaletteIn {
45477
45648
  * API identifier of an object
45478
45649
  */
45479
45650
  id: string;
45480
- attributes: JsonApiColorPaletteInAttributes;
45481
- }
45482
-
45483
- export declare interface JsonApiColorPaletteInAttributes {
45484
- name: string;
45485
- /**
45486
- * Free-form JSON content. Maximum supported length is 15000 characters.
45487
- */
45488
- content: object;
45651
+ attributes: JsonApiColorPaletteOutAttributes;
45489
45652
  }
45490
45653
 
45491
45654
  export declare interface JsonApiColorPaletteInDocument {
@@ -45510,7 +45673,15 @@ export declare interface JsonApiColorPaletteOut {
45510
45673
  * API identifier of an object
45511
45674
  */
45512
45675
  id: string;
45513
- attributes: JsonApiColorPaletteInAttributes;
45676
+ attributes: JsonApiColorPaletteOutAttributes;
45677
+ }
45678
+
45679
+ export declare interface JsonApiColorPaletteOutAttributes {
45680
+ name: string;
45681
+ /**
45682
+ * Free-form JSON content. Maximum supported length is 15000 characters.
45683
+ */
45684
+ content: object;
45514
45685
  }
45515
45686
 
45516
45687
  export declare interface JsonApiColorPaletteOutDocument {
@@ -45542,7 +45713,7 @@ export declare interface JsonApiColorPaletteOutWithLinks {
45542
45713
  * API identifier of an object
45543
45714
  */
45544
45715
  id: string;
45545
- attributes: JsonApiColorPaletteInAttributes;
45716
+ attributes: JsonApiColorPaletteOutAttributes;
45546
45717
  links?: ObjectLinks;
45547
45718
  }
45548
45719
 
@@ -45597,15 +45768,7 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
45597
45768
  * API identifier of an object
45598
45769
  */
45599
45770
  id: string;
45600
- attributes?: JsonApiCookieSecurityConfigurationInAttributes;
45601
- }
45602
-
45603
- export declare interface JsonApiCookieSecurityConfigurationInAttributes {
45604
- lastRotation?: string;
45605
- /**
45606
- * Length of interval between automatic rotations expressed in format of ISO 8601 duration
45607
- */
45608
- rotationInterval?: string;
45771
+ attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
45609
45772
  }
45610
45773
 
45611
45774
  export declare interface JsonApiCookieSecurityConfigurationInDocument {
@@ -45630,7 +45793,15 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
45630
45793
  * API identifier of an object
45631
45794
  */
45632
45795
  id: string;
45633
- attributes?: JsonApiCookieSecurityConfigurationInAttributes;
45796
+ attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
45797
+ }
45798
+
45799
+ export declare interface JsonApiCookieSecurityConfigurationOutAttributes {
45800
+ lastRotation?: string;
45801
+ /**
45802
+ * Length of interval between automatic rotations expressed in format of ISO 8601 duration
45803
+ */
45804
+ rotationInterval?: string;
45634
45805
  }
45635
45806
 
45636
45807
  export declare interface JsonApiCookieSecurityConfigurationOutDocument {
@@ -45656,7 +45827,7 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
45656
45827
  * API identifier of an object
45657
45828
  */
45658
45829
  id: string;
45659
- attributes?: JsonApiCookieSecurityConfigurationInAttributes;
45830
+ attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
45660
45831
  }
45661
45832
 
45662
45833
  export declare interface JsonApiCookieSecurityConfigurationPatchDocument {
@@ -45681,11 +45852,7 @@ export declare interface JsonApiCspDirectiveIn {
45681
45852
  * API identifier of an object
45682
45853
  */
45683
45854
  id: string;
45684
- attributes: JsonApiCspDirectiveInAttributes;
45685
- }
45686
-
45687
- export declare interface JsonApiCspDirectiveInAttributes {
45688
- sources: Array<string>;
45855
+ attributes: JsonApiCspDirectiveOutAttributes;
45689
45856
  }
45690
45857
 
45691
45858
  export declare interface JsonApiCspDirectiveInDocument {
@@ -45710,7 +45877,11 @@ export declare interface JsonApiCspDirectiveOut {
45710
45877
  * API identifier of an object
45711
45878
  */
45712
45879
  id: string;
45713
- attributes: JsonApiCspDirectiveInAttributes;
45880
+ attributes: JsonApiCspDirectiveOutAttributes;
45881
+ }
45882
+
45883
+ export declare interface JsonApiCspDirectiveOutAttributes {
45884
+ sources: Array<string>;
45714
45885
  }
45715
45886
 
45716
45887
  export declare interface JsonApiCspDirectiveOutDocument {
@@ -45742,7 +45913,7 @@ export declare interface JsonApiCspDirectiveOutWithLinks {
45742
45913
  * API identifier of an object
45743
45914
  */
45744
45915
  id: string;
45745
- attributes: JsonApiCspDirectiveInAttributes;
45916
+ attributes: JsonApiCspDirectiveOutAttributes;
45746
45917
  links?: ObjectLinks;
45747
45918
  }
45748
45919
 
@@ -46519,7 +46690,7 @@ export declare interface JsonApiDataSourceInAttributes {
46519
46690
  /**
46520
46691
  * Additional parameters to be used when connecting to the database providing the data for the data source.
46521
46692
  */
46522
- parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
46693
+ parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
46523
46694
  /**
46524
46695
  * Determines how the results coming from a particular datasource should be cached.
46525
46696
  */
@@ -46533,11 +46704,6 @@ export declare const JsonApiDataSourceInAttributesCacheStrategyEnum: {
46533
46704
 
46534
46705
  export declare type JsonApiDataSourceInAttributesCacheStrategyEnum = (typeof JsonApiDataSourceInAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourceInAttributesCacheStrategyEnum];
46535
46706
 
46536
- export declare interface JsonApiDataSourceInAttributesParametersInner {
46537
- name: string;
46538
- value: string;
46539
- }
46540
-
46541
46707
  export declare const JsonApiDataSourceInAttributesTypeEnum: {
46542
46708
  readonly POSTGRESQL: "POSTGRESQL";
46543
46709
  readonly REDSHIFT: "REDSHIFT";
@@ -46623,11 +46789,11 @@ export declare interface JsonApiDataSourceOutAttributes {
46623
46789
  /**
46624
46790
  * Additional parameters to be used when connecting to the database providing the data for the data source.
46625
46791
  */
46626
- parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
46792
+ parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
46627
46793
  /**
46628
46794
  * Decoded parameters to be used when connecting to the database providing the data for the data source.
46629
46795
  */
46630
- decodedParameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
46796
+ decodedParameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
46631
46797
  /**
46632
46798
  * Determines how the results coming from a particular datasource should be cached.
46633
46799
  */
@@ -46803,7 +46969,7 @@ export declare interface JsonApiDataSourcePatchAttributes {
46803
46969
  /**
46804
46970
  * Additional parameters to be used when connecting to the database providing the data for the data source.
46805
46971
  */
46806
- parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
46972
+ parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
46807
46973
  /**
46808
46974
  * Determines how the results coming from a particular datasource should be cached.
46809
46975
  */
@@ -46817,6 +46983,11 @@ export declare const JsonApiDataSourcePatchAttributesCacheStrategyEnum: {
46817
46983
 
46818
46984
  export declare type JsonApiDataSourcePatchAttributesCacheStrategyEnum = (typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum];
46819
46985
 
46986
+ export declare interface JsonApiDataSourcePatchAttributesParametersInner {
46987
+ name: string;
46988
+ value: string;
46989
+ }
46990
+
46820
46991
  export declare const JsonApiDataSourcePatchAttributesTypeEnum: {
46821
46992
  readonly POSTGRESQL: "POSTGRESQL";
46822
46993
  readonly REDSHIFT: "REDSHIFT";
@@ -47141,7 +47312,7 @@ export declare interface JsonApiExportTemplateIn {
47141
47312
  * API identifier of an object
47142
47313
  */
47143
47314
  id: string;
47144
- attributes: JsonApiExportTemplatePostOptionalIdAttributes;
47315
+ attributes: JsonApiExportTemplateOutAttributes;
47145
47316
  }
47146
47317
 
47147
47318
  export declare interface JsonApiExportTemplateInDocument {
@@ -47166,7 +47337,16 @@ export declare interface JsonApiExportTemplateOut {
47166
47337
  * API identifier of an object
47167
47338
  */
47168
47339
  id: string;
47169
- attributes: JsonApiExportTemplatePostOptionalIdAttributes;
47340
+ attributes: JsonApiExportTemplateOutAttributes;
47341
+ }
47342
+
47343
+ export declare interface JsonApiExportTemplateOutAttributes {
47344
+ /**
47345
+ * User-facing name of the Slides template.
47346
+ */
47347
+ name: string;
47348
+ dashboardSlidesTemplate?: JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate | null;
47349
+ widgetSlidesTemplate?: JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate | null;
47170
47350
  }
47171
47351
 
47172
47352
  export declare interface JsonApiExportTemplateOutDocument {
@@ -47198,7 +47378,7 @@ export declare interface JsonApiExportTemplateOutWithLinks {
47198
47378
  * API identifier of an object
47199
47379
  */
47200
47380
  id: string;
47201
- attributes: JsonApiExportTemplatePostOptionalIdAttributes;
47381
+ attributes: JsonApiExportTemplateOutAttributes;
47202
47382
  links?: ObjectLinks;
47203
47383
  }
47204
47384
 
@@ -47228,82 +47408,73 @@ export declare interface JsonApiExportTemplatePatchAttributes {
47228
47408
  * User-facing name of the Slides template.
47229
47409
  */
47230
47410
  name?: string;
47231
- dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
47232
- widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
47233
- }
47234
-
47235
- export declare interface JsonApiExportTemplatePatchDocument {
47236
- data: JsonApiExportTemplatePatch;
47237
- }
47238
-
47239
- export declare const JsonApiExportTemplatePatchTypeEnum: {
47240
- readonly EXPORT_TEMPLATE: "exportTemplate";
47241
- };
47242
-
47243
- export declare type JsonApiExportTemplatePatchTypeEnum = (typeof JsonApiExportTemplatePatchTypeEnum)[keyof typeof JsonApiExportTemplatePatchTypeEnum];
47244
-
47245
- /**
47246
- * JSON:API representation of exportTemplate entity.
47247
- */
47248
- export declare interface JsonApiExportTemplatePostOptionalId {
47249
- /**
47250
- * Object type
47251
- */
47252
- type: JsonApiExportTemplatePostOptionalIdTypeEnum;
47253
- /**
47254
- * API identifier of an object
47255
- */
47256
- id?: string;
47257
- attributes: JsonApiExportTemplatePostOptionalIdAttributes;
47258
- }
47259
-
47260
- export declare interface JsonApiExportTemplatePostOptionalIdAttributes {
47261
- /**
47262
- * User-facing name of the Slides template.
47263
- */
47264
- name: string;
47265
- dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
47266
- widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
47411
+ dashboardSlidesTemplate?: JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate | null;
47412
+ widgetSlidesTemplate?: JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate | null;
47267
47413
  }
47268
47414
 
47269
47415
  /**
47270
47416
  * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
47271
47417
  */
47272
- export declare interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
47418
+ export declare interface JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate {
47273
47419
  /**
47274
47420
  * Export types this template applies to.
47275
47421
  */
47276
- appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
47422
+ appliedOn: Array<JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum>;
47277
47423
  coverSlide?: CoverSlideTemplate | null;
47278
47424
  introSlide?: IntroSlideTemplate | null;
47279
47425
  sectionSlide?: SectionSlideTemplate | null;
47280
47426
  contentSlide?: ContentSlideTemplate | null;
47281
47427
  }
47282
47428
 
47283
- export declare const JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum: {
47429
+ export declare const JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum: {
47284
47430
  readonly PDF: "PDF";
47285
47431
  readonly PPTX: "PPTX";
47286
47432
  };
47287
47433
 
47288
- export declare type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum];
47434
+ export declare type JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum];
47289
47435
 
47290
47436
  /**
47291
47437
  * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
47292
47438
  */
47293
- export declare interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
47439
+ export declare interface JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate {
47294
47440
  /**
47295
47441
  * Export types this template applies to.
47296
47442
  */
47297
- appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
47443
+ appliedOn: Array<JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum>;
47298
47444
  contentSlide?: ContentSlideTemplate | null;
47299
47445
  }
47300
47446
 
47301
- export declare const JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum: {
47447
+ export declare const JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum: {
47302
47448
  readonly PDF: "PDF";
47303
47449
  readonly PPTX: "PPTX";
47304
47450
  };
47305
47451
 
47306
- export declare type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum];
47452
+ export declare type JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum];
47453
+
47454
+ export declare interface JsonApiExportTemplatePatchDocument {
47455
+ data: JsonApiExportTemplatePatch;
47456
+ }
47457
+
47458
+ export declare const JsonApiExportTemplatePatchTypeEnum: {
47459
+ readonly EXPORT_TEMPLATE: "exportTemplate";
47460
+ };
47461
+
47462
+ export declare type JsonApiExportTemplatePatchTypeEnum = (typeof JsonApiExportTemplatePatchTypeEnum)[keyof typeof JsonApiExportTemplatePatchTypeEnum];
47463
+
47464
+ /**
47465
+ * JSON:API representation of exportTemplate entity.
47466
+ */
47467
+ export declare interface JsonApiExportTemplatePostOptionalId {
47468
+ /**
47469
+ * Object type
47470
+ */
47471
+ type: JsonApiExportTemplatePostOptionalIdTypeEnum;
47472
+ /**
47473
+ * API identifier of an object
47474
+ */
47475
+ id?: string;
47476
+ attributes: JsonApiExportTemplateOutAttributes;
47477
+ }
47307
47478
 
47308
47479
  export declare interface JsonApiExportTemplatePostOptionalIdDocument {
47309
47480
  data: JsonApiExportTemplatePostOptionalId;
@@ -47688,11 +47859,7 @@ export declare interface JsonApiFilterViewOutList {
47688
47859
 
47689
47860
  export declare interface JsonApiFilterViewOutRelationships {
47690
47861
  analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
47691
- user?: JsonApiFilterViewOutRelationshipsUser;
47692
- }
47693
-
47694
- export declare interface JsonApiFilterViewOutRelationshipsUser {
47695
- data: JsonApiUserLinkage | null;
47862
+ user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
47696
47863
  }
47697
47864
 
47698
47865
  export declare const JsonApiFilterViewOutTypeEnum: {
@@ -47779,69 +47946,9 @@ export declare interface JsonApiIdentityProviderIn {
47779
47946
  * API identifier of an object
47780
47947
  */
47781
47948
  id: string;
47782
- attributes?: JsonApiIdentityProviderInAttributes;
47783
- }
47784
-
47785
- export declare interface JsonApiIdentityProviderInAttributes {
47786
- /**
47787
- * List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
47788
- */
47789
- identifiers?: Array<string>;
47790
- /**
47791
- * Map of custom claim overrides. To be used when your Idp does not provide default claims (sub, email, name, given_name, family_name). Define the key pair for the claim you wish to override, where the key is the default name of the attribute and the value is your custom name for the given attribute.
47792
- */
47793
- customClaimMapping?: {
47794
- [key: string]: string;
47795
- };
47796
- /**
47797
- * Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
47798
- */
47799
- samlMetadata?: string;
47800
- /**
47801
- * The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
47802
- */
47803
- oauthClientId?: string;
47804
- /**
47805
- * The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
47806
- */
47807
- oauthClientSecret?: string;
47808
- /**
47809
- * The location of your OIDC provider. This field is mandatory for OIDC IdP.
47810
- */
47811
- oauthIssuerLocation?: string;
47812
- /**
47813
- * Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
47814
- */
47815
- oauthIssuerId?: string;
47816
- /**
47817
- * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
47818
- */
47819
- oauthSubjectIdClaim?: string;
47820
- /**
47821
- * Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
47822
- */
47823
- oauthCustomAuthAttributes?: {
47824
- [key: string]: string;
47825
- };
47826
- /**
47827
- * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
47828
- */
47829
- oauthCustomScopes?: Array<string> | null;
47830
- /**
47831
- * Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
47832
- */
47833
- idpType?: JsonApiIdentityProviderInAttributesIdpTypeEnum;
47949
+ attributes?: JsonApiIdentityProviderPatchAttributes;
47834
47950
  }
47835
47951
 
47836
- export declare const JsonApiIdentityProviderInAttributesIdpTypeEnum: {
47837
- readonly MANAGED_IDP: "MANAGED_IDP";
47838
- readonly FIM_IDP: "FIM_IDP";
47839
- readonly DEX_IDP: "DEX_IDP";
47840
- readonly CUSTOM_IDP: "CUSTOM_IDP";
47841
- };
47842
-
47843
- export declare type JsonApiIdentityProviderInAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderInAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderInAttributesIdpTypeEnum];
47844
-
47845
47952
  export declare interface JsonApiIdentityProviderInDocument {
47846
47953
  data: JsonApiIdentityProviderIn;
47847
47954
  }
@@ -47984,9 +48091,69 @@ export declare interface JsonApiIdentityProviderPatch {
47984
48091
  * API identifier of an object
47985
48092
  */
47986
48093
  id: string;
47987
- attributes?: JsonApiIdentityProviderInAttributes;
48094
+ attributes?: JsonApiIdentityProviderPatchAttributes;
47988
48095
  }
47989
48096
 
48097
+ export declare interface JsonApiIdentityProviderPatchAttributes {
48098
+ /**
48099
+ * List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
48100
+ */
48101
+ identifiers?: Array<string>;
48102
+ /**
48103
+ * Map of custom claim overrides. To be used when your Idp does not provide default claims (sub, email, name, given_name, family_name). Define the key pair for the claim you wish to override, where the key is the default name of the attribute and the value is your custom name for the given attribute.
48104
+ */
48105
+ customClaimMapping?: {
48106
+ [key: string]: string;
48107
+ };
48108
+ /**
48109
+ * Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
48110
+ */
48111
+ samlMetadata?: string;
48112
+ /**
48113
+ * The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
48114
+ */
48115
+ oauthClientId?: string;
48116
+ /**
48117
+ * The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
48118
+ */
48119
+ oauthClientSecret?: string;
48120
+ /**
48121
+ * The location of your OIDC provider. This field is mandatory for OIDC IdP.
48122
+ */
48123
+ oauthIssuerLocation?: string;
48124
+ /**
48125
+ * Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
48126
+ */
48127
+ oauthIssuerId?: string;
48128
+ /**
48129
+ * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
48130
+ */
48131
+ oauthSubjectIdClaim?: string;
48132
+ /**
48133
+ * Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
48134
+ */
48135
+ oauthCustomAuthAttributes?: {
48136
+ [key: string]: string;
48137
+ };
48138
+ /**
48139
+ * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
48140
+ */
48141
+ oauthCustomScopes?: Array<string> | null;
48142
+ /**
48143
+ * Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
48144
+ */
48145
+ idpType?: JsonApiIdentityProviderPatchAttributesIdpTypeEnum;
48146
+ }
48147
+
48148
+ export declare const JsonApiIdentityProviderPatchAttributesIdpTypeEnum: {
48149
+ readonly MANAGED_IDP: "MANAGED_IDP";
48150
+ readonly FIM_IDP: "FIM_IDP";
48151
+ readonly DEX_IDP: "DEX_IDP";
48152
+ readonly CUSTOM_IDP: "CUSTOM_IDP";
48153
+ };
48154
+
48155
+ export declare type JsonApiIdentityProviderPatchAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum];
48156
+
47990
48157
  export declare interface JsonApiIdentityProviderPatchDocument {
47991
48158
  data: JsonApiIdentityProviderPatch;
47992
48159
  }
@@ -48009,11 +48176,7 @@ export declare interface JsonApiJwkIn {
48009
48176
  * API identifier of an object
48010
48177
  */
48011
48178
  id: string;
48012
- attributes?: JsonApiJwkInAttributes;
48013
- }
48014
-
48015
- export declare interface JsonApiJwkInAttributes {
48016
- content?: RsaSpecification;
48179
+ attributes?: JsonApiJwkPatchAttributes;
48017
48180
  }
48018
48181
 
48019
48182
  export declare interface JsonApiJwkInDocument {
@@ -48038,7 +48201,7 @@ export declare interface JsonApiJwkOut {
48038
48201
  * API identifier of an object
48039
48202
  */
48040
48203
  id: string;
48041
- attributes?: JsonApiJwkInAttributes;
48204
+ attributes?: JsonApiJwkPatchAttributes;
48042
48205
  }
48043
48206
 
48044
48207
  export declare interface JsonApiJwkOutDocument {
@@ -48070,7 +48233,7 @@ export declare interface JsonApiJwkOutWithLinks {
48070
48233
  * API identifier of an object
48071
48234
  */
48072
48235
  id: string;
48073
- attributes?: JsonApiJwkInAttributes;
48236
+ attributes?: JsonApiJwkPatchAttributes;
48074
48237
  links?: ObjectLinks;
48075
48238
  }
48076
48239
 
@@ -48092,7 +48255,11 @@ export declare interface JsonApiJwkPatch {
48092
48255
  * API identifier of an object
48093
48256
  */
48094
48257
  id: string;
48095
- attributes?: JsonApiJwkInAttributes;
48258
+ attributes?: JsonApiJwkPatchAttributes;
48259
+ }
48260
+
48261
+ export declare interface JsonApiJwkPatchAttributes {
48262
+ content?: RsaSpecification;
48096
48263
  }
48097
48264
 
48098
48265
  export declare interface JsonApiJwkPatchDocument {
@@ -48717,7 +48884,7 @@ export declare interface JsonApiNotificationChannelIn {
48717
48884
  * API identifier of an object
48718
48885
  */
48719
48886
  id: string;
48720
- attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
48887
+ attributes?: JsonApiNotificationChannelPatchAttributes;
48721
48888
  }
48722
48889
 
48723
48890
  export declare interface JsonApiNotificationChannelInDocument {
@@ -48762,7 +48929,7 @@ export declare interface JsonApiNotificationChannelOut {
48762
48929
  export declare interface JsonApiNotificationChannelOutAttributes {
48763
48930
  name?: string | null;
48764
48931
  description?: string | null;
48765
- destination?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
48932
+ destination?: JsonApiNotificationChannelOutAttributesDestination;
48766
48933
  destinationType?: JsonApiNotificationChannelOutAttributesDestinationTypeEnum | null;
48767
48934
  /**
48768
48935
  * 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}
@@ -48802,6 +48969,12 @@ export declare const JsonApiNotificationChannelOutAttributesDashboardLinkVisibil
48802
48969
 
48803
48970
  export declare type JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum];
48804
48971
 
48972
+ /**
48973
+ * @type JsonApiNotificationChannelOutAttributesDestination
48974
+ * The destination where the notifications are to be sent.
48975
+ */
48976
+ export declare type JsonApiNotificationChannelOutAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
48977
+
48805
48978
  export declare const JsonApiNotificationChannelOutAttributesDestinationTypeEnum: {
48806
48979
  readonly WEBHOOK: "WEBHOOK";
48807
48980
  readonly SMTP: "SMTP";
@@ -48869,38 +49042,13 @@ export declare interface JsonApiNotificationChannelPatch {
48869
49042
  * API identifier of an object
48870
49043
  */
48871
49044
  id: string;
48872
- attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
48873
- }
48874
-
48875
- export declare interface JsonApiNotificationChannelPatchDocument {
48876
- data: JsonApiNotificationChannelPatch;
49045
+ attributes?: JsonApiNotificationChannelPatchAttributes;
48877
49046
  }
48878
49047
 
48879
- export declare const JsonApiNotificationChannelPatchTypeEnum: {
48880
- readonly NOTIFICATION_CHANNEL: "notificationChannel";
48881
- };
48882
-
48883
- export declare type JsonApiNotificationChannelPatchTypeEnum = (typeof JsonApiNotificationChannelPatchTypeEnum)[keyof typeof JsonApiNotificationChannelPatchTypeEnum];
48884
-
48885
- /**
48886
- * JSON:API representation of notificationChannel entity.
48887
- */
48888
- export declare interface JsonApiNotificationChannelPostOptionalId {
48889
- /**
48890
- * Object type
48891
- */
48892
- type: JsonApiNotificationChannelPostOptionalIdTypeEnum;
48893
- /**
48894
- * API identifier of an object
48895
- */
48896
- id?: string;
48897
- attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
48898
- }
48899
-
48900
- export declare interface JsonApiNotificationChannelPostOptionalIdAttributes {
49048
+ export declare interface JsonApiNotificationChannelPatchAttributes {
48901
49049
  name?: string | null;
48902
49050
  description?: string | null;
48903
- destination?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
49051
+ destination?: JsonApiNotificationChannelOutAttributesDestination;
48904
49052
  /**
48905
49053
  * 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}
48906
49054
  */
@@ -48908,7 +49056,7 @@ export declare interface JsonApiNotificationChannelPostOptionalIdAttributes {
48908
49056
  /**
48909
49057
  * 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
48910
49058
  */
48911
- dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
49059
+ dashboardLinkVisibility?: JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum;
48912
49060
  /**
48913
49061
  * 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}}
48914
49062
  */
@@ -48916,41 +49064,60 @@ export declare interface JsonApiNotificationChannelPostOptionalIdAttributes {
48916
49064
  /**
48917
49065
  * 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
48918
49066
  */
48919
- allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
49067
+ allowedRecipients?: JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum;
48920
49068
  /**
48921
49069
  * 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
48922
49070
  */
48923
- inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
49071
+ inPlatformNotification?: JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum;
48924
49072
  }
48925
49073
 
48926
- export declare const JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum: {
49074
+ export declare const JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum: {
48927
49075
  readonly CREATOR: "CREATOR";
48928
49076
  readonly INTERNAL: "INTERNAL";
48929
49077
  readonly EXTERNAL: "EXTERNAL";
48930
49078
  };
48931
49079
 
48932
- export declare type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum];
49080
+ export declare type JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum];
48933
49081
 
48934
- export declare const JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum: {
49082
+ export declare const JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum: {
48935
49083
  readonly HIDDEN: "HIDDEN";
48936
49084
  readonly INTERNAL_ONLY: "INTERNAL_ONLY";
48937
49085
  readonly ALL: "ALL";
48938
49086
  };
48939
49087
 
48940
- export declare type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum];
48941
-
48942
- /**
48943
- * @type JsonApiNotificationChannelPostOptionalIdAttributesDestination
48944
- * The destination where the notifications are to be sent.
48945
- */
48946
- export declare type JsonApiNotificationChannelPostOptionalIdAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
49088
+ export declare type JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum];
48947
49089
 
48948
- export declare const JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum: {
49090
+ export declare const JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum: {
48949
49091
  readonly DISABLED: "DISABLED";
48950
49092
  readonly ENABLED: "ENABLED";
48951
49093
  };
48952
49094
 
48953
- export declare type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum];
49095
+ export declare type JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum];
49096
+
49097
+ export declare interface JsonApiNotificationChannelPatchDocument {
49098
+ data: JsonApiNotificationChannelPatch;
49099
+ }
49100
+
49101
+ export declare const JsonApiNotificationChannelPatchTypeEnum: {
49102
+ readonly NOTIFICATION_CHANNEL: "notificationChannel";
49103
+ };
49104
+
49105
+ export declare type JsonApiNotificationChannelPatchTypeEnum = (typeof JsonApiNotificationChannelPatchTypeEnum)[keyof typeof JsonApiNotificationChannelPatchTypeEnum];
49106
+
49107
+ /**
49108
+ * JSON:API representation of notificationChannel entity.
49109
+ */
49110
+ export declare interface JsonApiNotificationChannelPostOptionalId {
49111
+ /**
49112
+ * Object type
49113
+ */
49114
+ type: JsonApiNotificationChannelPostOptionalIdTypeEnum;
49115
+ /**
49116
+ * API identifier of an object
49117
+ */
49118
+ id?: string;
49119
+ attributes?: JsonApiNotificationChannelPatchAttributes;
49120
+ }
48954
49121
 
48955
49122
  export declare interface JsonApiNotificationChannelPostOptionalIdDocument {
48956
49123
  data: JsonApiNotificationChannelPostOptionalId;
@@ -49019,11 +49186,7 @@ export declare interface JsonApiOrganizationInDocument {
49019
49186
  }
49020
49187
 
49021
49188
  export declare interface JsonApiOrganizationInRelationships {
49022
- identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
49023
- }
49024
-
49025
- export declare interface JsonApiOrganizationInRelationshipsIdentityProvider {
49026
- data: JsonApiIdentityProviderLinkage | null;
49189
+ identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
49027
49190
  }
49028
49191
 
49029
49192
  export declare const JsonApiOrganizationInTypeEnum: {
@@ -49126,9 +49289,21 @@ export declare const JsonApiOrganizationOutMetaPermissionsEnum: {
49126
49289
  export declare type JsonApiOrganizationOutMetaPermissionsEnum = (typeof JsonApiOrganizationOutMetaPermissionsEnum)[keyof typeof JsonApiOrganizationOutMetaPermissionsEnum];
49127
49290
 
49128
49291
  export declare interface JsonApiOrganizationOutRelationships {
49129
- bootstrapUser?: JsonApiFilterViewOutRelationshipsUser;
49130
- bootstrapUserGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
49131
- identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
49292
+ bootstrapUser?: JsonApiOrganizationOutRelationshipsBootstrapUser;
49293
+ bootstrapUserGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
49294
+ identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
49295
+ }
49296
+
49297
+ export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
49298
+ data: JsonApiUserLinkage | null;
49299
+ }
49300
+
49301
+ export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
49302
+ data: JsonApiUserGroupLinkage | null;
49303
+ }
49304
+
49305
+ export declare interface JsonApiOrganizationOutRelationshipsIdentityProvider {
49306
+ data: JsonApiIdentityProviderLinkage | null;
49132
49307
  }
49133
49308
 
49134
49309
  export declare const JsonApiOrganizationOutTypeEnum: {
@@ -49175,54 +49350,9 @@ export declare interface JsonApiOrganizationSettingIn {
49175
49350
  * API identifier of an object
49176
49351
  */
49177
49352
  id: string;
49178
- attributes?: JsonApiOrganizationSettingInAttributes;
49179
- }
49180
-
49181
- export declare interface JsonApiOrganizationSettingInAttributes {
49182
- /**
49183
- * Free-form JSON content. Maximum supported length is 15000 characters.
49184
- */
49185
- content?: object;
49186
- type?: JsonApiOrganizationSettingInAttributesTypeEnum;
49353
+ attributes?: JsonApiUserSettingOutAttributes;
49187
49354
  }
49188
49355
 
49189
- export declare const JsonApiOrganizationSettingInAttributesTypeEnum: {
49190
- readonly TIMEZONE: "TIMEZONE";
49191
- readonly ACTIVE_THEME: "ACTIVE_THEME";
49192
- readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
49193
- readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
49194
- readonly WHITE_LABELING: "WHITE_LABELING";
49195
- readonly LOCALE: "LOCALE";
49196
- readonly METADATA_LOCALE: "METADATA_LOCALE";
49197
- readonly FORMAT_LOCALE: "FORMAT_LOCALE";
49198
- readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
49199
- readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
49200
- readonly WEEK_START: "WEEK_START";
49201
- readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
49202
- readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
49203
- readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
49204
- readonly OPENAI_CONFIG: "OPENAI_CONFIG";
49205
- readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
49206
- readonly ALERT: "ALERT";
49207
- readonly SEPARATORS: "SEPARATORS";
49208
- readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
49209
- readonly JIT_PROVISIONING: "JIT_PROVISIONING";
49210
- readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
49211
- readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
49212
- readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
49213
- readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
49214
- readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
49215
- readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
49216
- readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
49217
- readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
49218
- readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
49219
- readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
49220
- readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
49221
- readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
49222
- };
49223
-
49224
- export declare type JsonApiOrganizationSettingInAttributesTypeEnum = (typeof JsonApiOrganizationSettingInAttributesTypeEnum)[keyof typeof JsonApiOrganizationSettingInAttributesTypeEnum];
49225
-
49226
49356
  export declare interface JsonApiOrganizationSettingInDocument {
49227
49357
  data: JsonApiOrganizationSettingIn;
49228
49358
  }
@@ -49245,7 +49375,7 @@ export declare interface JsonApiOrganizationSettingOut {
49245
49375
  * API identifier of an object
49246
49376
  */
49247
49377
  id: string;
49248
- attributes?: JsonApiOrganizationSettingInAttributes;
49378
+ attributes?: JsonApiUserSettingOutAttributes;
49249
49379
  }
49250
49380
 
49251
49381
  export declare interface JsonApiOrganizationSettingOutDocument {
@@ -49277,7 +49407,7 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
49277
49407
  * API identifier of an object
49278
49408
  */
49279
49409
  id: string;
49280
- attributes?: JsonApiOrganizationSettingInAttributes;
49410
+ attributes?: JsonApiUserSettingOutAttributes;
49281
49411
  links?: ObjectLinks;
49282
49412
  }
49283
49413
 
@@ -49299,7 +49429,7 @@ export declare interface JsonApiOrganizationSettingPatch {
49299
49429
  * API identifier of an object
49300
49430
  */
49301
49431
  id: string;
49302
- attributes?: JsonApiOrganizationSettingInAttributes;
49432
+ attributes?: JsonApiUserSettingOutAttributes;
49303
49433
  }
49304
49434
 
49305
49435
  export declare interface JsonApiOrganizationSettingPatchDocument {
@@ -49324,7 +49454,7 @@ export declare interface JsonApiThemeIn {
49324
49454
  * API identifier of an object
49325
49455
  */
49326
49456
  id: string;
49327
- attributes: JsonApiColorPaletteInAttributes;
49457
+ attributes: JsonApiColorPaletteOutAttributes;
49328
49458
  }
49329
49459
 
49330
49460
  export declare interface JsonApiThemeInDocument {
@@ -49349,7 +49479,7 @@ export declare interface JsonApiThemeOut {
49349
49479
  * API identifier of an object
49350
49480
  */
49351
49481
  id: string;
49352
- attributes: JsonApiColorPaletteInAttributes;
49482
+ attributes: JsonApiColorPaletteOutAttributes;
49353
49483
  }
49354
49484
 
49355
49485
  export declare interface JsonApiThemeOutDocument {
@@ -49381,7 +49511,7 @@ export declare interface JsonApiThemeOutWithLinks {
49381
49511
  * API identifier of an object
49382
49512
  */
49383
49513
  id: string;
49384
- attributes: JsonApiColorPaletteInAttributes;
49514
+ attributes: JsonApiColorPaletteOutAttributes;
49385
49515
  links?: ObjectLinks;
49386
49516
  }
49387
49517
 
@@ -49495,8 +49625,8 @@ export declare interface JsonApiUserDataFilterOutList {
49495
49625
  }
49496
49626
 
49497
49627
  export declare interface JsonApiUserDataFilterOutRelationships {
49498
- user?: JsonApiFilterViewOutRelationshipsUser;
49499
- userGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
49628
+ user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
49629
+ userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
49500
49630
  facts?: JsonApiDatasetOutRelationshipsFacts;
49501
49631
  attributes?: JsonApiDatasetOutRelationshipsAttributes;
49502
49632
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
@@ -49504,10 +49634,6 @@ export declare interface JsonApiUserDataFilterOutRelationships {
49504
49634
  datasets?: JsonApiDatasetOutRelationshipsReferences;
49505
49635
  }
49506
49636
 
49507
- export declare interface JsonApiUserDataFilterOutRelationshipsUserGroup {
49508
- data: JsonApiUserGroupLinkage | null;
49509
- }
49510
-
49511
49637
  export declare const JsonApiUserDataFilterOutTypeEnum: {
49512
49638
  readonly USER_DATA_FILTER: "userDataFilter";
49513
49639
  };
@@ -49564,8 +49690,8 @@ export declare interface JsonApiUserDataFilterPatchDocument {
49564
49690
  }
49565
49691
 
49566
49692
  export declare interface JsonApiUserDataFilterPatchRelationships {
49567
- user?: JsonApiFilterViewOutRelationshipsUser;
49568
- userGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
49693
+ user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
49694
+ userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
49569
49695
  }
49570
49696
 
49571
49697
  export declare const JsonApiUserDataFilterPatchTypeEnum: {
@@ -49612,29 +49738,14 @@ export declare interface JsonApiUserGroupIn {
49612
49738
  * API identifier of an object
49613
49739
  */
49614
49740
  id: string;
49615
- attributes?: JsonApiUserGroupInAttributes;
49616
- relationships?: JsonApiUserGroupInRelationships;
49617
- }
49618
-
49619
- export declare interface JsonApiUserGroupInAttributes {
49620
- name?: string;
49741
+ attributes?: JsonApiUserGroupOutAttributes;
49742
+ relationships?: JsonApiUserGroupOutRelationships;
49621
49743
  }
49622
49744
 
49623
49745
  export declare interface JsonApiUserGroupInDocument {
49624
49746
  data: JsonApiUserGroupIn;
49625
49747
  }
49626
49748
 
49627
- export declare interface JsonApiUserGroupInRelationships {
49628
- parents?: JsonApiUserGroupInRelationshipsParents;
49629
- }
49630
-
49631
- export declare interface JsonApiUserGroupInRelationshipsParents {
49632
- /**
49633
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
49634
- */
49635
- data: Array<JsonApiUserGroupLinkage>;
49636
- }
49637
-
49638
49749
  export declare const JsonApiUserGroupInTypeEnum: {
49639
49750
  readonly USER_GROUP: "userGroup";
49640
49751
  };
@@ -49667,8 +49778,12 @@ export declare interface JsonApiUserGroupOut {
49667
49778
  * API identifier of an object
49668
49779
  */
49669
49780
  id: string;
49670
- attributes?: JsonApiUserGroupInAttributes;
49671
- relationships?: JsonApiUserGroupInRelationships;
49781
+ attributes?: JsonApiUserGroupOutAttributes;
49782
+ relationships?: JsonApiUserGroupOutRelationships;
49783
+ }
49784
+
49785
+ export declare interface JsonApiUserGroupOutAttributes {
49786
+ name?: string;
49672
49787
  }
49673
49788
 
49674
49789
  export declare interface JsonApiUserGroupOutDocument {
@@ -49693,6 +49808,10 @@ export declare interface JsonApiUserGroupOutList {
49693
49808
  included?: Array<JsonApiUserGroupOutWithLinks>;
49694
49809
  }
49695
49810
 
49811
+ export declare interface JsonApiUserGroupOutRelationships {
49812
+ parents?: JsonApiUserOutRelationshipsUserGroups;
49813
+ }
49814
+
49696
49815
  export declare const JsonApiUserGroupOutTypeEnum: {
49697
49816
  readonly USER_GROUP: "userGroup";
49698
49817
  };
@@ -49708,8 +49827,8 @@ export declare interface JsonApiUserGroupOutWithLinks {
49708
49827
  * API identifier of an object
49709
49828
  */
49710
49829
  id: string;
49711
- attributes?: JsonApiUserGroupInAttributes;
49712
- relationships?: JsonApiUserGroupInRelationships;
49830
+ attributes?: JsonApiUserGroupOutAttributes;
49831
+ relationships?: JsonApiUserGroupOutRelationships;
49713
49832
  links?: ObjectLinks;
49714
49833
  }
49715
49834
 
@@ -49731,8 +49850,8 @@ export declare interface JsonApiUserGroupPatch {
49731
49850
  * API identifier of an object
49732
49851
  */
49733
49852
  id: string;
49734
- attributes?: JsonApiUserGroupInAttributes;
49735
- relationships?: JsonApiUserGroupInRelationships;
49853
+ attributes?: JsonApiUserGroupOutAttributes;
49854
+ relationships?: JsonApiUserGroupOutRelationships;
49736
49855
  }
49737
49856
 
49738
49857
  export declare interface JsonApiUserGroupPatchDocument {
@@ -49831,25 +49950,14 @@ export declare interface JsonApiUserIn {
49831
49950
  * API identifier of an object
49832
49951
  */
49833
49952
  id: string;
49834
- attributes?: JsonApiUserInAttributes;
49835
- relationships?: JsonApiUserInRelationships;
49836
- }
49837
-
49838
- export declare interface JsonApiUserInAttributes {
49839
- authenticationId?: string;
49840
- firstname?: string;
49841
- lastname?: string;
49842
- email?: string;
49953
+ attributes?: JsonApiUserOutAttributes;
49954
+ relationships?: JsonApiUserOutRelationships;
49843
49955
  }
49844
49956
 
49845
49957
  export declare interface JsonApiUserInDocument {
49846
49958
  data: JsonApiUserIn;
49847
49959
  }
49848
49960
 
49849
- export declare interface JsonApiUserInRelationships {
49850
- userGroups?: JsonApiUserGroupInRelationshipsParents;
49851
- }
49852
-
49853
49961
  export declare const JsonApiUserInTypeEnum: {
49854
49962
  readonly USER: "user";
49855
49963
  };
@@ -49882,8 +49990,15 @@ export declare interface JsonApiUserOut {
49882
49990
  * API identifier of an object
49883
49991
  */
49884
49992
  id: string;
49885
- attributes?: JsonApiUserInAttributes;
49886
- relationships?: JsonApiUserInRelationships;
49993
+ attributes?: JsonApiUserOutAttributes;
49994
+ relationships?: JsonApiUserOutRelationships;
49995
+ }
49996
+
49997
+ export declare interface JsonApiUserOutAttributes {
49998
+ authenticationId?: string;
49999
+ firstname?: string;
50000
+ lastname?: string;
50001
+ email?: string;
49887
50002
  }
49888
50003
 
49889
50004
  export declare interface JsonApiUserOutDocument {
@@ -49908,6 +50023,17 @@ export declare interface JsonApiUserOutList {
49908
50023
  included?: Array<JsonApiUserGroupOutWithLinks>;
49909
50024
  }
49910
50025
 
50026
+ export declare interface JsonApiUserOutRelationships {
50027
+ userGroups?: JsonApiUserOutRelationshipsUserGroups;
50028
+ }
50029
+
50030
+ export declare interface JsonApiUserOutRelationshipsUserGroups {
50031
+ /**
50032
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
50033
+ */
50034
+ data: Array<JsonApiUserGroupLinkage>;
50035
+ }
50036
+
49911
50037
  export declare const JsonApiUserOutTypeEnum: {
49912
50038
  readonly USER: "user";
49913
50039
  };
@@ -49923,8 +50049,8 @@ export declare interface JsonApiUserOutWithLinks {
49923
50049
  * API identifier of an object
49924
50050
  */
49925
50051
  id: string;
49926
- attributes?: JsonApiUserInAttributes;
49927
- relationships?: JsonApiUserInRelationships;
50052
+ attributes?: JsonApiUserOutAttributes;
50053
+ relationships?: JsonApiUserOutRelationships;
49928
50054
  links?: ObjectLinks;
49929
50055
  }
49930
50056
 
@@ -49946,8 +50072,8 @@ export declare interface JsonApiUserPatch {
49946
50072
  * API identifier of an object
49947
50073
  */
49948
50074
  id: string;
49949
- attributes?: JsonApiUserInAttributes;
49950
- relationships?: JsonApiUserInRelationships;
50075
+ attributes?: JsonApiUserOutAttributes;
50076
+ relationships?: JsonApiUserOutRelationships;
49951
50077
  }
49952
50078
 
49953
50079
  export declare interface JsonApiUserPatchDocument {
@@ -49972,7 +50098,7 @@ export declare interface JsonApiUserSettingIn {
49972
50098
  * API identifier of an object
49973
50099
  */
49974
50100
  id: string;
49975
- attributes?: JsonApiOrganizationSettingInAttributes;
50101
+ attributes?: JsonApiUserSettingOutAttributes;
49976
50102
  }
49977
50103
 
49978
50104
  export declare interface JsonApiUserSettingInDocument {
@@ -49997,9 +50123,54 @@ export declare interface JsonApiUserSettingOut {
49997
50123
  * API identifier of an object
49998
50124
  */
49999
50125
  id: string;
50000
- attributes?: JsonApiOrganizationSettingInAttributes;
50126
+ attributes?: JsonApiUserSettingOutAttributes;
50001
50127
  }
50002
50128
 
50129
+ export declare interface JsonApiUserSettingOutAttributes {
50130
+ /**
50131
+ * Free-form JSON content. Maximum supported length is 15000 characters.
50132
+ */
50133
+ content?: object;
50134
+ type?: JsonApiUserSettingOutAttributesTypeEnum;
50135
+ }
50136
+
50137
+ export declare const JsonApiUserSettingOutAttributesTypeEnum: {
50138
+ readonly TIMEZONE: "TIMEZONE";
50139
+ readonly ACTIVE_THEME: "ACTIVE_THEME";
50140
+ readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
50141
+ readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
50142
+ readonly WHITE_LABELING: "WHITE_LABELING";
50143
+ readonly LOCALE: "LOCALE";
50144
+ readonly METADATA_LOCALE: "METADATA_LOCALE";
50145
+ readonly FORMAT_LOCALE: "FORMAT_LOCALE";
50146
+ readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
50147
+ readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
50148
+ readonly WEEK_START: "WEEK_START";
50149
+ readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
50150
+ readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
50151
+ readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
50152
+ readonly OPENAI_CONFIG: "OPENAI_CONFIG";
50153
+ readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
50154
+ readonly ALERT: "ALERT";
50155
+ readonly SEPARATORS: "SEPARATORS";
50156
+ readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
50157
+ readonly JIT_PROVISIONING: "JIT_PROVISIONING";
50158
+ readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
50159
+ readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
50160
+ readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
50161
+ readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
50162
+ readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
50163
+ readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
50164
+ readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
50165
+ readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
50166
+ readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
50167
+ readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
50168
+ readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
50169
+ readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
50170
+ };
50171
+
50172
+ export declare type JsonApiUserSettingOutAttributesTypeEnum = (typeof JsonApiUserSettingOutAttributesTypeEnum)[keyof typeof JsonApiUserSettingOutAttributesTypeEnum];
50173
+
50003
50174
  export declare interface JsonApiUserSettingOutDocument {
50004
50175
  data: JsonApiUserSettingOut;
50005
50176
  links?: ObjectLinks;
@@ -50029,7 +50200,7 @@ export declare interface JsonApiUserSettingOutWithLinks {
50029
50200
  * API identifier of an object
50030
50201
  */
50031
50202
  id: string;
50032
- attributes?: JsonApiOrganizationSettingInAttributes;
50203
+ attributes?: JsonApiUserSettingOutAttributes;
50033
50204
  links?: ObjectLinks;
50034
50205
  }
50035
50206
 
@@ -50295,7 +50466,7 @@ export declare interface JsonApiWorkspaceAutomationOutList {
50295
50466
  }
50296
50467
 
50297
50468
  export declare interface JsonApiWorkspaceAutomationOutRelationships {
50298
- workspace?: JsonApiWorkspaceInRelationshipsParent;
50469
+ workspace?: JsonApiWorkspacePatchRelationshipsParent;
50299
50470
  notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
50300
50471
  analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
50301
50472
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
@@ -50638,56 +50809,14 @@ export declare interface JsonApiWorkspaceIn {
50638
50809
  * API identifier of an object
50639
50810
  */
50640
50811
  id: string;
50641
- attributes?: JsonApiWorkspaceInAttributes;
50642
- relationships?: JsonApiWorkspaceInRelationships;
50643
- }
50644
-
50645
- export declare interface JsonApiWorkspaceInAttributes {
50646
- name?: string | null;
50647
- /**
50648
- * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
50649
- * @deprecated
50650
- */
50651
- earlyAccess?: string | null;
50652
- /**
50653
- * The early access feature identifiers. They are used to enable experimental features.
50654
- */
50655
- earlyAccessValues?: Array<string> | null;
50656
- description?: string | null;
50657
- /**
50658
- * Custom prefix of entity identifiers in workspace
50659
- */
50660
- prefix?: string | null;
50661
- cacheExtraLimit?: number;
50662
- dataSource?: JsonApiWorkspaceInAttributesDataSource;
50663
- }
50664
-
50665
- /**
50666
- * The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
50667
- */
50668
- export declare interface JsonApiWorkspaceInAttributesDataSource {
50669
- /**
50670
- * The ID of the used data source.
50671
- */
50672
- id: string;
50673
- /**
50674
- * The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
50675
- */
50676
- schemaPath?: Array<string>;
50812
+ attributes?: JsonApiWorkspacePatchAttributes;
50813
+ relationships?: JsonApiWorkspacePatchRelationships;
50677
50814
  }
50678
50815
 
50679
50816
  export declare interface JsonApiWorkspaceInDocument {
50680
50817
  data: JsonApiWorkspaceIn;
50681
50818
  }
50682
50819
 
50683
- export declare interface JsonApiWorkspaceInRelationships {
50684
- parent?: JsonApiWorkspaceInRelationshipsParent;
50685
- }
50686
-
50687
- export declare interface JsonApiWorkspaceInRelationshipsParent {
50688
- data: JsonApiWorkspaceLinkage | null;
50689
- }
50690
-
50691
50820
  export declare const JsonApiWorkspaceInTypeEnum: {
50692
50821
  readonly WORKSPACE: "workspace";
50693
50822
  };
@@ -50721,8 +50850,8 @@ export declare interface JsonApiWorkspaceOut {
50721
50850
  */
50722
50851
  id: string;
50723
50852
  meta?: JsonApiWorkspaceOutMeta;
50724
- attributes?: JsonApiWorkspaceInAttributes;
50725
- relationships?: JsonApiWorkspaceInRelationships;
50853
+ attributes?: JsonApiWorkspacePatchAttributes;
50854
+ relationships?: JsonApiWorkspacePatchRelationships;
50726
50855
  }
50727
50856
 
50728
50857
  export declare interface JsonApiWorkspaceOutDocument {
@@ -50816,8 +50945,8 @@ export declare interface JsonApiWorkspaceOutWithLinks {
50816
50945
  */
50817
50946
  id: string;
50818
50947
  meta?: JsonApiWorkspaceOutMeta;
50819
- attributes?: JsonApiWorkspaceInAttributes;
50820
- relationships?: JsonApiWorkspaceInRelationships;
50948
+ attributes?: JsonApiWorkspacePatchAttributes;
50949
+ relationships?: JsonApiWorkspacePatchRelationships;
50821
50950
  links?: ObjectLinks;
50822
50951
  }
50823
50952
 
@@ -50839,14 +50968,56 @@ export declare interface JsonApiWorkspacePatch {
50839
50968
  * API identifier of an object
50840
50969
  */
50841
50970
  id: string;
50842
- attributes?: JsonApiWorkspaceInAttributes;
50843
- relationships?: JsonApiWorkspaceInRelationships;
50971
+ attributes?: JsonApiWorkspacePatchAttributes;
50972
+ relationships?: JsonApiWorkspacePatchRelationships;
50973
+ }
50974
+
50975
+ export declare interface JsonApiWorkspacePatchAttributes {
50976
+ name?: string | null;
50977
+ /**
50978
+ * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
50979
+ * @deprecated
50980
+ */
50981
+ earlyAccess?: string | null;
50982
+ /**
50983
+ * The early access feature identifiers. They are used to enable experimental features.
50984
+ */
50985
+ earlyAccessValues?: Array<string> | null;
50986
+ description?: string | null;
50987
+ /**
50988
+ * Custom prefix of entity identifiers in workspace
50989
+ */
50990
+ prefix?: string | null;
50991
+ cacheExtraLimit?: number;
50992
+ dataSource?: JsonApiWorkspacePatchAttributesDataSource;
50993
+ }
50994
+
50995
+ /**
50996
+ * The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
50997
+ */
50998
+ export declare interface JsonApiWorkspacePatchAttributesDataSource {
50999
+ /**
51000
+ * The ID of the used data source.
51001
+ */
51002
+ id: string;
51003
+ /**
51004
+ * The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
51005
+ */
51006
+ schemaPath?: Array<string>;
50844
51007
  }
50845
51008
 
50846
51009
  export declare interface JsonApiWorkspacePatchDocument {
50847
51010
  data: JsonApiWorkspacePatch;
50848
51011
  }
50849
51012
 
51013
+ export declare interface JsonApiWorkspacePatchRelationships {
51014
+ parent?: JsonApiWorkspacePatchRelationshipsParent;
51015
+ }
51016
+
51017
+ export declare interface JsonApiWorkspacePatchRelationshipsParent {
51018
+ data: JsonApiWorkspaceLinkage | null;
51019
+ }
51020
+
50850
51021
  export declare const JsonApiWorkspacePatchTypeEnum: {
50851
51022
  readonly WORKSPACE: "workspace";
50852
51023
  };
@@ -50865,7 +51036,7 @@ export declare interface JsonApiWorkspaceSettingIn {
50865
51036
  * API identifier of an object
50866
51037
  */
50867
51038
  id: string;
50868
- attributes?: JsonApiOrganizationSettingInAttributes;
51039
+ attributes?: JsonApiUserSettingOutAttributes;
50869
51040
  }
50870
51041
 
50871
51042
  export declare interface JsonApiWorkspaceSettingInDocument {
@@ -50891,7 +51062,7 @@ export declare interface JsonApiWorkspaceSettingOut {
50891
51062
  */
50892
51063
  id: string;
50893
51064
  meta?: JsonApiDatasetOutMeta;
50894
- attributes?: JsonApiOrganizationSettingInAttributes;
51065
+ attributes?: JsonApiUserSettingOutAttributes;
50895
51066
  }
50896
51067
 
50897
51068
  export declare interface JsonApiWorkspaceSettingOutDocument {
@@ -50924,7 +51095,7 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
50924
51095
  */
50925
51096
  id: string;
50926
51097
  meta?: JsonApiDatasetOutMeta;
50927
- attributes?: JsonApiOrganizationSettingInAttributes;
51098
+ attributes?: JsonApiUserSettingOutAttributes;
50928
51099
  links?: ObjectLinks;
50929
51100
  }
50930
51101
 
@@ -50946,7 +51117,7 @@ export declare interface JsonApiWorkspaceSettingPatch {
50946
51117
  * API identifier of an object
50947
51118
  */
50948
51119
  id: string;
50949
- attributes?: JsonApiOrganizationSettingInAttributes;
51120
+ attributes?: JsonApiUserSettingOutAttributes;
50950
51121
  }
50951
51122
 
50952
51123
  export declare interface JsonApiWorkspaceSettingPatchDocument {
@@ -50971,7 +51142,7 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
50971
51142
  * API identifier of an object
50972
51143
  */
50973
51144
  id?: string;
50974
- attributes?: JsonApiOrganizationSettingInAttributes;
51145
+ attributes?: JsonApiUserSettingOutAttributes;
50975
51146
  }
50976
51147
 
50977
51148
  export declare interface JsonApiWorkspaceSettingPostOptionalIdDocument {
@@ -57430,6 +57601,41 @@ export declare interface NotificationChannelsAutomationTestNotificationChannelRe
57430
57601
  readonly automationTestDestinationRequest: AutomationTestDestinationRequest;
57431
57602
  }
57432
57603
 
57604
+ /**
57605
+ * The attributes to analyze for significant changes. If empty, valid attributes will be automatically discovered.
57606
+ */
57607
+ declare interface ObjectIdentifier {
57608
+ type: ObjectIdentifierTypeEnum;
57609
+ space: string;
57610
+ id: string;
57611
+ }
57612
+
57613
+ declare const ObjectIdentifierTypeEnum: {
57614
+ readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
57615
+ readonly ATTRIBUTE: "attribute";
57616
+ readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
57617
+ readonly DASHBOARD_PLUGIN: "dashboardPlugin";
57618
+ readonly DATASET: "dataset";
57619
+ readonly FACT: "fact";
57620
+ readonly AGGREGATED_FACT: "aggregatedFact";
57621
+ readonly LABEL: "label";
57622
+ readonly METRIC: "metric";
57623
+ readonly USER_DATA_FILTER: "userDataFilter";
57624
+ readonly EXPORT_DEFINITION: "exportDefinition";
57625
+ readonly AUTOMATION: "automation";
57626
+ readonly AUTOMATION_RESULT: "automationResult";
57627
+ readonly PROMPT: "prompt";
57628
+ readonly VISUALIZATION_OBJECT: "visualizationObject";
57629
+ readonly FILTER_CONTEXT: "filterContext";
57630
+ readonly WORKSPACE_SETTINGS: "workspaceSettings";
57631
+ readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
57632
+ readonly WORKSPACE_DATA_FILTER: "workspaceDataFilter";
57633
+ readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
57634
+ readonly FILTER_VIEW: "filterView";
57635
+ };
57636
+
57637
+ declare type ObjectIdentifierTypeEnum = (typeof ObjectIdentifierTypeEnum)[keyof typeof ObjectIdentifierTypeEnum];
57638
+
57433
57639
  export declare interface ObjectLinks {
57434
57640
  /**
57435
57641
  * A string containing the link\'s URL.