@gooddata/api-client-tiger 10.26.0-alpha.8 → 10.26.0

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.
@@ -842,6 +842,26 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: MetadataConfi
842
842
  workspaceResolveSettings: (workspaceId: string, resolveSettingsRequest: ResolveSettingsRequest, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
843
843
  };
844
844
 
845
+ /**
846
+ * Request parameters for cancelExecutions operation in ActionsApi.
847
+ * @export
848
+ * @interface ActionsApiCancelExecutionsRequest
849
+ */
850
+ export declare interface ActionsApiCancelExecutionsRequest {
851
+ /**
852
+ * Workspace identifier
853
+ * @type {string}
854
+ * @memberof ActionsApiCancelExecutions
855
+ */
856
+ readonly workspaceId: string;
857
+ /**
858
+ *
859
+ * @type {AfmCancelTokens}
860
+ * @memberof ActionsApiCancelExecutions
861
+ */
862
+ readonly afmCancelTokens: AfmCancelTokens;
863
+ }
864
+
845
865
  /**
846
866
  * Request parameters for checkEntityOverrides operation in ActionsApi.
847
867
  * @export
@@ -2792,6 +2812,12 @@ export declare interface ActionsApiRetrieveResultRequest {
2792
2812
  * @memberof ActionsApiRetrieveResult
2793
2813
  */
2794
2814
  readonly excludedTotalDimensions?: Array<string>;
2815
+ /**
2816
+ *
2817
+ * @type {string}
2818
+ * @memberof ActionsApiRetrieveResult
2819
+ */
2820
+ readonly xGDCCANCELTOKEN?: string;
2795
2821
  }
2796
2822
 
2797
2823
  /**
@@ -3182,6 +3208,15 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
3182
3208
  * @memberof ActionsApi
3183
3209
  */
3184
3210
  anomalyDetectionResult(requestParameters: ActionsApiAnomalyDetectionResultRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<AnomalyDetectionResult, any>>;
3211
+ /**
3212
+ * Each cancel token corresponds to one unique execution request for the same result id. If all cancel tokens for the same result id are applied, the execution for this result id is canceled.
3213
+ * @summary Applies all the given cancel tokens.
3214
+ * @param {ActionsApiCancelExecutionsRequest} requestParameters Request parameters.
3215
+ * @param {*} [options] Override http request option.
3216
+ * @throws {RequiredError}
3217
+ * @memberof ActionsApi
3218
+ */
3219
+ cancelExecutions(requestParameters: ActionsApiCancelExecutionsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<AfmCancelTokens, any>>;
3185
3220
  /**
3186
3221
  * (EXPERIMENTAL) Computes clusters for data points from the provided execution result and parameters.
3187
3222
  * @summary (EXPERIMENTAL) Smart functions - Clustering
@@ -3364,6 +3399,15 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
3364
3399
  * @throws {RequiredError}
3365
3400
  */
3366
3401
  anomalyDetectionResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
3402
+ /**
3403
+ * Each cancel token corresponds to one unique execution request for the same result id. If all cancel tokens for the same result id are applied, the execution for this result id is canceled.
3404
+ * @summary Applies all the given cancel tokens.
3405
+ * @param {string} workspaceId Workspace identifier
3406
+ * @param {AfmCancelTokens} afmCancelTokens
3407
+ * @param {*} [options] Override http request option.
3408
+ * @throws {RequiredError}
3409
+ */
3410
+ cancelExecutions: (workspaceId: string, afmCancelTokens: AfmCancelTokens, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
3367
3411
  /**
3368
3412
  * (EXPERIMENTAL) Computes clusters for data points from the provided execution result and parameters.
3369
3413
  * @summary (EXPERIMENTAL) Smart functions - Clustering
@@ -3497,10 +3541,11 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
3497
3541
  * @param {Array<number>} [offset] Request page with these offsets. Format is offset&#x3D;1,2,3,... - one offset for each dimensions in ResultSpec from originating AFM.
3498
3542
  * @param {Array<number>} [limit] Return only this number of items. Format is limit&#x3D;1,2,3,... - one limit for each dimensions in ResultSpec from originating AFM.
3499
3543
  * @param {Array<string>} [excludedTotalDimensions] Identifiers of the dimensions where grand total data should not be returned for this request. A grand total will not be returned if all of its totalDimensions are in excludedTotalDimensions.
3544
+ * @param {string} [xGDCCANCELTOKEN]
3500
3545
  * @param {*} [options] Override http request option.
3501
3546
  * @throws {RequiredError}
3502
3547
  */
3503
- retrieveResult: (workspaceId: string, resultId: string, offset?: Array<number>, limit?: Array<number>, excludedTotalDimensions?: Array<string>, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
3548
+ retrieveResult: (workspaceId: string, resultId: string, offset?: Array<number>, limit?: Array<number>, excludedTotalDimensions?: Array<string>, xGDCCANCELTOKEN?: string, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
3504
3549
  };
3505
3550
 
3506
3551
  /**
@@ -3556,6 +3601,14 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
3556
3601
  * @throws {RequiredError}
3557
3602
  */
3558
3603
  anomalyDetectionResult(requestParameters: ActionsApiAnomalyDetectionResultRequest, options?: AxiosRequestConfig): AxiosPromise<AnomalyDetectionResult>;
3604
+ /**
3605
+ * Each cancel token corresponds to one unique execution request for the same result id. If all cancel tokens for the same result id are applied, the execution for this result id is canceled.
3606
+ * @summary Applies all the given cancel tokens.
3607
+ * @param {ActionsApiCancelExecutionsRequest} requestParameters Request parameters.
3608
+ * @param {*} [options] Override http request option.
3609
+ * @throws {RequiredError}
3610
+ */
3611
+ cancelExecutions(requestParameters: ActionsApiCancelExecutionsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmCancelTokens>;
3559
3612
  /**
3560
3613
  * (EXPERIMENTAL) Computes clusters for data points from the provided execution result and parameters.
3561
3614
  * @summary (EXPERIMENTAL) Smart functions - Clustering
@@ -3725,6 +3778,15 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
3725
3778
  * @throws {RequiredError}
3726
3779
  */
3727
3780
  anomalyDetectionResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnomalyDetectionResult>>;
3781
+ /**
3782
+ * Each cancel token corresponds to one unique execution request for the same result id. If all cancel tokens for the same result id are applied, the execution for this result id is canceled.
3783
+ * @summary Applies all the given cancel tokens.
3784
+ * @param {string} workspaceId Workspace identifier
3785
+ * @param {AfmCancelTokens} afmCancelTokens
3786
+ * @param {*} [options] Override http request option.
3787
+ * @throws {RequiredError}
3788
+ */
3789
+ cancelExecutions(workspaceId: string, afmCancelTokens: AfmCancelTokens, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AfmCancelTokens>>;
3728
3790
  /**
3729
3791
  * (EXPERIMENTAL) Computes clusters for data points from the provided execution result and parameters.
3730
3792
  * @summary (EXPERIMENTAL) Smart functions - Clustering
@@ -3858,10 +3920,11 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
3858
3920
  * @param {Array<number>} [offset] Request page with these offsets. Format is offset&#x3D;1,2,3,... - one offset for each dimensions in ResultSpec from originating AFM.
3859
3921
  * @param {Array<number>} [limit] Return only this number of items. Format is limit&#x3D;1,2,3,... - one limit for each dimensions in ResultSpec from originating AFM.
3860
3922
  * @param {Array<string>} [excludedTotalDimensions] Identifiers of the dimensions where grand total data should not be returned for this request. A grand total will not be returned if all of its totalDimensions are in excludedTotalDimensions.
3923
+ * @param {string} [xGDCCANCELTOKEN]
3861
3924
  * @param {*} [options] Override http request option.
3862
3925
  * @throws {RequiredError}
3863
3926
  */
3864
- retrieveResult(workspaceId: string, resultId: string, offset?: Array<number>, limit?: Array<number>, excludedTotalDimensions?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecutionResult>>;
3927
+ retrieveResult(workspaceId: string, resultId: string, offset?: Array<number>, limit?: Array<number>, excludedTotalDimensions?: Array<string>, xGDCCANCELTOKEN?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecutionResult>>;
3865
3928
  };
3866
3929
 
3867
3930
  /**
@@ -3924,6 +3987,15 @@ export declare interface AfmActionsApiInterface {
3924
3987
  * @memberof ActionsApiInterface
3925
3988
  */
3926
3989
  anomalyDetectionResult(requestParameters: ActionsApiAnomalyDetectionResultRequest, options?: AxiosRequestConfig): AxiosPromise<AnomalyDetectionResult>;
3990
+ /**
3991
+ * Each cancel token corresponds to one unique execution request for the same result id. If all cancel tokens for the same result id are applied, the execution for this result id is canceled.
3992
+ * @summary Applies all the given cancel tokens.
3993
+ * @param {ActionsApiCancelExecutionsRequest} requestParameters Request parameters.
3994
+ * @param {*} [options] Override http request option.
3995
+ * @throws {RequiredError}
3996
+ * @memberof ActionsApiInterface
3997
+ */
3998
+ cancelExecutions(requestParameters: ActionsApiCancelExecutionsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmCancelTokens>;
3927
3999
  /**
3928
4000
  * (EXPERIMENTAL) Computes clusters for data points from the provided execution result and parameters.
3929
4001
  * @summary (EXPERIMENTAL) Smart functions - Clustering
@@ -4134,6 +4206,20 @@ export declare interface AfmAttributeItem {
4134
4206
  showAllValues?: boolean;
4135
4207
  }
4136
4208
 
4209
+ /**
4210
+ * Any information related to cancellation.
4211
+ * @export
4212
+ * @interface AfmCancelTokens
4213
+ */
4214
+ export declare interface AfmCancelTokens {
4215
+ /**
4216
+ * Token ids to be used in the cancellation.
4217
+ * @type {Array<string>}
4218
+ * @memberof AfmCancelTokens
4219
+ */
4220
+ tokenIds: Array<string>;
4221
+ }
4222
+
4137
4223
  /**
4138
4224
  * Filter the result by comparing specified metric to given constant value, using given comparison operator.
4139
4225
  * @export
@@ -7102,6 +7188,7 @@ export declare const ApiEntitlementNameEnum: {
7102
7188
  readonly UNLIMITED_DAILY_ALERT_ACTIONS: "UnlimitedDailyAlertActions";
7103
7189
  readonly SCHEDULED_ACTION_MINIMUM_RECURRENCE_MINUTES: "ScheduledActionMinimumRecurrenceMinutes";
7104
7190
  readonly FEDERATED_IDENTITY_MANAGEMENT: "FederatedIdentityManagement";
7191
+ readonly AUDIT_LOGGING: "AuditLogging";
7105
7192
  };
7106
7193
 
7107
7194
  export declare type ApiEntitlementNameEnum = typeof ApiEntitlementNameEnum[keyof typeof ApiEntitlementNameEnum];
@@ -9906,19 +9993,19 @@ export declare interface AutomationAlertDescription {
9906
9993
  * @type {number}
9907
9994
  * @memberof AlertDescription
9908
9995
  */
9909
- filterCount?: number;
9996
+ totalValueCount?: number;
9910
9997
  /**
9911
9998
  *
9912
9999
  * @type {number}
9913
10000
  * @memberof AlertDescription
9914
10001
  */
9915
- totalValueCount?: number;
10002
+ triggeredCount?: number;
9916
10003
  /**
9917
10004
  *
9918
- * @type {number}
10005
+ * @type {string}
9919
10006
  * @memberof AlertDescription
9920
10007
  */
9921
- triggeredCount?: number;
10008
+ triggeredAt?: string;
9922
10009
  /**
9923
10010
  *
9924
10011
  * @type {number}
@@ -10303,6 +10390,12 @@ export declare interface AutomationExportResult {
10303
10390
  * @memberof ExportResult
10304
10391
  */
10305
10392
  traceId?: string;
10393
+ /**
10394
+ *
10395
+ * @type {string}
10396
+ * @memberof ExportResult
10397
+ */
10398
+ triggeredAt?: string;
10306
10399
  }
10307
10400
 
10308
10401
  export declare const AutomationExportResultStatusEnum: {
@@ -10446,6 +10539,26 @@ export declare interface AutomationNotificationContent {
10446
10539
  type: string;
10447
10540
  }
10448
10541
 
10542
+ /**
10543
+ *
10544
+ * @export
10545
+ * @interface NotificationFilter
10546
+ */
10547
+ export declare interface AutomationNotificationFilter {
10548
+ /**
10549
+ *
10550
+ * @type {string}
10551
+ * @memberof NotificationFilter
10552
+ */
10553
+ title: string;
10554
+ /**
10555
+ *
10556
+ * @type {string}
10557
+ * @memberof NotificationFilter
10558
+ */
10559
+ filter: string;
10560
+ }
10561
+
10449
10562
  /**
10450
10563
  *
10451
10564
  * @export
@@ -11273,7 +11386,7 @@ export declare interface AutomationSchedule {
11273
11386
  * @type {string}
11274
11387
  * @memberof AutomationSchedule
11275
11388
  */
11276
- timezone?: string;
11389
+ timezone: string;
11277
11390
  /**
11278
11391
  * Timestamp of the first scheduled action. If not provided default to the next scheduled time.
11279
11392
  * @type {string}
@@ -11738,6 +11851,12 @@ export declare interface AutomationWebhookMessageData {
11738
11851
  * @memberof WebhookMessageData
11739
11852
  */
11740
11853
  alert?: AutomationAlertDescription;
11854
+ /**
11855
+ *
11856
+ * @type {Array<NotificationFilter>}
11857
+ * @memberof WebhookMessageData
11858
+ */
11859
+ filters?: Array<AutomationNotificationFilter>;
11741
11860
  }
11742
11861
 
11743
11862
  export declare const AutomationWebhookMessageTypeEnum: {
@@ -15038,6 +15157,51 @@ export declare interface DashboardsApiUpdateEntityAnalyticalDashboardsRequest {
15038
15157
  readonly include?: Array<"userIdentifiers" | "visualizationObjects" | "analyticalDashboards" | "labels" | "metrics" | "datasets" | "filterContexts" | "dashboardPlugins" | "createdBy" | "modifiedBy" | "ALL">;
15039
15158
  }
15040
15159
 
15160
+ /**
15161
+ * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
15162
+ * @export
15163
+ * @interface DashboardSlidesTemplate
15164
+ */
15165
+ export declare interface DashboardSlidesTemplate {
15166
+ /**
15167
+ * Export types this template applies to.
15168
+ * @type {Array<string>}
15169
+ * @memberof DashboardSlidesTemplate
15170
+ */
15171
+ appliedOn: Array<DashboardSlidesTemplateAppliedOnEnum>;
15172
+ /**
15173
+ *
15174
+ * @type {CoverSlideTemplate}
15175
+ * @memberof DashboardSlidesTemplate
15176
+ */
15177
+ coverSlide?: CoverSlideTemplate | null;
15178
+ /**
15179
+ *
15180
+ * @type {IntroSlideTemplate}
15181
+ * @memberof DashboardSlidesTemplate
15182
+ */
15183
+ introSlide?: IntroSlideTemplate | null;
15184
+ /**
15185
+ *
15186
+ * @type {SectionSlideTemplate}
15187
+ * @memberof DashboardSlidesTemplate
15188
+ */
15189
+ sectionSlide?: SectionSlideTemplate | null;
15190
+ /**
15191
+ *
15192
+ * @type {ContentSlideTemplate}
15193
+ * @memberof DashboardSlidesTemplate
15194
+ */
15195
+ contentSlide?: ContentSlideTemplate | null;
15196
+ }
15197
+
15198
+ export declare const DashboardSlidesTemplateAppliedOnEnum: {
15199
+ readonly PDF: "PDF";
15200
+ readonly PPTX: "PPTX";
15201
+ };
15202
+
15203
+ export declare type DashboardSlidesTemplateAppliedOnEnum = typeof DashboardSlidesTemplateAppliedOnEnum[keyof typeof DashboardSlidesTemplateAppliedOnEnum];
15204
+
15041
15205
  /**
15042
15206
  * Mapping from dimension items (either \'localIdentifier\' from \'AttributeItem\', or \"measureGroup\") to their respective values. This effectively specifies the path (location) of the data column used for sorting. Therefore values for all dimension items must be specified.
15043
15207
  * @export
@@ -19337,6 +19501,52 @@ export declare const DeclarativeExportDefinitionIdentifierTypeEnum: {
19337
19501
 
19338
19502
  export declare type DeclarativeExportDefinitionIdentifierTypeEnum = typeof DeclarativeExportDefinitionIdentifierTypeEnum[keyof typeof DeclarativeExportDefinitionIdentifierTypeEnum];
19339
19503
 
19504
+ /**
19505
+ * A declarative form of a particular export template.
19506
+ * @export
19507
+ * @interface DeclarativeExportTemplate
19508
+ */
19509
+ export declare interface DeclarativeExportTemplate {
19510
+ /**
19511
+ * Identifier of an export template
19512
+ * @type {string}
19513
+ * @memberof DeclarativeExportTemplate
19514
+ */
19515
+ id: string;
19516
+ /**
19517
+ * Name of an export template.
19518
+ * @type {string}
19519
+ * @memberof DeclarativeExportTemplate
19520
+ */
19521
+ name: string;
19522
+ /**
19523
+ *
19524
+ * @type {DashboardSlidesTemplate}
19525
+ * @memberof DeclarativeExportTemplate
19526
+ */
19527
+ dashboardSlidesTemplate?: DashboardSlidesTemplate | null;
19528
+ /**
19529
+ *
19530
+ * @type {WidgetSlidesTemplate}
19531
+ * @memberof DeclarativeExportTemplate
19532
+ */
19533
+ widgetSlidesTemplate?: WidgetSlidesTemplate | null;
19534
+ }
19535
+
19536
+ /**
19537
+ * Export templates.
19538
+ * @export
19539
+ * @interface DeclarativeExportTemplates
19540
+ */
19541
+ export declare interface DeclarativeExportTemplates {
19542
+ /**
19543
+ *
19544
+ * @type {Array<DeclarativeExportTemplate>}
19545
+ * @memberof DeclarativeExportTemplates
19546
+ */
19547
+ exportTemplates: Array<DeclarativeExportTemplate>;
19548
+ }
19549
+
19340
19550
  /**
19341
19551
  * A dataset fact.
19342
19552
  * @export
@@ -19935,6 +20145,12 @@ export declare interface DeclarativeOrganization {
19935
20145
  * @memberof DeclarativeOrganization
19936
20146
  */
19937
20147
  notificationChannels?: Array<DeclarativeNotificationChannel>;
20148
+ /**
20149
+ *
20150
+ * @type {Array<DeclarativeExportTemplate>}
20151
+ * @memberof DeclarativeOrganization
20152
+ */
20153
+ exportTemplates?: Array<DeclarativeExportTemplate>;
19938
20154
  }
19939
20155
 
19940
20156
  /**
@@ -20024,6 +20240,12 @@ export declare interface DeclarativeOrganizationInfo {
20024
20240
  oauthCustomAuthAttributes?: {
20025
20241
  [key: string]: string;
20026
20242
  };
20243
+ /**
20244
+ * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
20245
+ * @type {Array<string>}
20246
+ * @memberof DeclarativeOrganizationInfo
20247
+ */
20248
+ oauthCustomScopes?: Array<string> | null;
20027
20249
  /**
20028
20250
  * A list of organization settings.
20029
20251
  * @type {Array<DeclarativeSetting>}
@@ -20289,6 +20511,7 @@ export declare const DeclarativeSettingTypeEnum: {
20289
20511
  readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
20290
20512
  readonly JIT_PROVISIONING: "JIT_PROVISIONING";
20291
20513
  readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
20514
+ readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
20292
20515
  };
20293
20516
 
20294
20517
  export declare type DeclarativeSettingTypeEnum = typeof DeclarativeSettingTypeEnum[keyof typeof DeclarativeSettingTypeEnum];
@@ -37802,6 +38025,7 @@ export declare const EntitlementsRequestEntitlementsNameEnum: {
37802
38025
  readonly UNLIMITED_DAILY_ALERT_ACTIONS: "UnlimitedDailyAlertActions";
37803
38026
  readonly SCHEDULED_ACTION_MINIMUM_RECURRENCE_MINUTES: "ScheduledActionMinimumRecurrenceMinutes";
37804
38027
  readonly FEDERATED_IDENTITY_MANAGEMENT: "FederatedIdentityManagement";
38028
+ readonly AUDIT_LOGGING: "AuditLogging";
37805
38029
  };
37806
38030
 
37807
38031
  export declare type EntitlementsRequestEntitlementsNameEnum = typeof EntitlementsRequestEntitlementsNameEnum[keyof typeof EntitlementsRequestEntitlementsNameEnum];
@@ -41612,7 +41836,7 @@ export declare interface IntroSlideTemplate {
41612
41836
  * @type {string}
41613
41837
  * @memberof IntroSlideTemplate
41614
41838
  */
41615
- titleField?: string;
41839
+ titleField?: string | null;
41616
41840
  /**
41617
41841
  *
41618
41842
  * @type {string}
@@ -42141,10 +42365,10 @@ export declare interface JsonApiAnalyticalDashboardOutList {
42141
42365
  links?: ListLinks;
42142
42366
  /**
42143
42367
  *
42144
- * @type {JsonApiAnalyticalDashboardOutListMeta}
42368
+ * @type {JsonApiColorPaletteOutListMeta}
42145
42369
  * @memberof JsonApiAnalyticalDashboardOutList
42146
42370
  */
42147
- meta?: JsonApiAnalyticalDashboardOutListMeta;
42371
+ meta?: JsonApiColorPaletteOutListMeta;
42148
42372
  /**
42149
42373
  * Included resources
42150
42374
  * @type {Array<JsonApiAnalyticalDashboardOutIncludes>}
@@ -42153,20 +42377,6 @@ export declare interface JsonApiAnalyticalDashboardOutList {
42153
42377
  included?: Array<JsonApiAnalyticalDashboardOutIncludes>;
42154
42378
  }
42155
42379
 
42156
- /**
42157
- *
42158
- * @export
42159
- * @interface JsonApiAnalyticalDashboardOutListMeta
42160
- */
42161
- export declare interface JsonApiAnalyticalDashboardOutListMeta {
42162
- /**
42163
- *
42164
- * @type {PageMetadata}
42165
- * @memberof JsonApiAnalyticalDashboardOutListMeta
42166
- */
42167
- page?: PageMetadata;
42168
- }
42169
-
42170
42380
  /**
42171
42381
  *
42172
42382
  * @export
@@ -42646,10 +42856,10 @@ export declare interface JsonApiApiTokenOutList {
42646
42856
  links?: ListLinks;
42647
42857
  /**
42648
42858
  *
42649
- * @type {JsonApiAnalyticalDashboardOutListMeta}
42859
+ * @type {JsonApiColorPaletteOutListMeta}
42650
42860
  * @memberof JsonApiApiTokenOutList
42651
42861
  */
42652
- meta?: JsonApiAnalyticalDashboardOutListMeta;
42862
+ meta?: JsonApiColorPaletteOutListMeta;
42653
42863
  }
42654
42864
 
42655
42865
  export declare const JsonApiApiTokenOutTypeEnum: {
@@ -42908,10 +43118,10 @@ export declare interface JsonApiAttributeHierarchyOutList {
42908
43118
  links?: ListLinks;
42909
43119
  /**
42910
43120
  *
42911
- * @type {JsonApiAnalyticalDashboardOutListMeta}
43121
+ * @type {JsonApiColorPaletteOutListMeta}
42912
43122
  * @memberof JsonApiAttributeHierarchyOutList
42913
43123
  */
42914
- meta?: JsonApiAnalyticalDashboardOutListMeta;
43124
+ meta?: JsonApiColorPaletteOutListMeta;
42915
43125
  /**
42916
43126
  * Included resources
42917
43127
  * @type {Array<JsonApiAttributeHierarchyOutIncludes>}
@@ -43303,10 +43513,10 @@ export declare interface JsonApiAttributeOutList {
43303
43513
  links?: ListLinks;
43304
43514
  /**
43305
43515
  *
43306
- * @type {JsonApiAnalyticalDashboardOutListMeta}
43516
+ * @type {JsonApiColorPaletteOutListMeta}
43307
43517
  * @memberof JsonApiAttributeOutList
43308
43518
  */
43309
- meta?: JsonApiAnalyticalDashboardOutListMeta;
43519
+ meta?: JsonApiColorPaletteOutListMeta;
43310
43520
  /**
43311
43521
  * Included resources
43312
43522
  * @type {Array<JsonApiAttributeOutIncludes>}
@@ -43750,7 +43960,7 @@ export declare interface JsonApiAutomationOutAttributesSchedule {
43750
43960
  * @type {string}
43751
43961
  * @memberof JsonApiAutomationOutAttributesSchedule
43752
43962
  */
43753
- timezone?: string;
43963
+ timezone: string;
43754
43964
  /**
43755
43965
  * Timestamp of the first scheduled action. If not provided default to the next scheduled time.
43756
43966
  * @type {string}
@@ -43846,10 +44056,10 @@ export declare interface JsonApiAutomationOutList {
43846
44056
  links?: ListLinks;
43847
44057
  /**
43848
44058
  *
43849
- * @type {JsonApiAnalyticalDashboardOutListMeta}
44059
+ * @type {JsonApiColorPaletteOutListMeta}
43850
44060
  * @memberof JsonApiAutomationOutList
43851
44061
  */
43852
- meta?: JsonApiAnalyticalDashboardOutListMeta;
44062
+ meta?: JsonApiColorPaletteOutListMeta;
43853
44063
  /**
43854
44064
  * Included resources
43855
44065
  * @type {Array<JsonApiAutomationOutIncludes>}
@@ -44310,10 +44520,24 @@ export declare interface JsonApiColorPaletteOutList {
44310
44520
  links?: ListLinks;
44311
44521
  /**
44312
44522
  *
44313
- * @type {JsonApiAnalyticalDashboardOutListMeta}
44523
+ * @type {JsonApiColorPaletteOutListMeta}
44314
44524
  * @memberof JsonApiColorPaletteOutList
44315
44525
  */
44316
- meta?: JsonApiAnalyticalDashboardOutListMeta;
44526
+ meta?: JsonApiColorPaletteOutListMeta;
44527
+ }
44528
+
44529
+ /**
44530
+ *
44531
+ * @export
44532
+ * @interface JsonApiColorPaletteOutListMeta
44533
+ */
44534
+ export declare interface JsonApiColorPaletteOutListMeta {
44535
+ /**
44536
+ *
44537
+ * @type {PageMetadata}
44538
+ * @memberof JsonApiColorPaletteOutListMeta
44539
+ */
44540
+ page?: PageMetadata;
44317
44541
  }
44318
44542
 
44319
44543
  export declare const JsonApiColorPaletteOutTypeEnum: {
@@ -44446,30 +44670,10 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
44446
44670
  id: string;
44447
44671
  /**
44448
44672
  *
44449
- * @type {JsonApiCookieSecurityConfigurationInAttributes}
44673
+ * @type {JsonApiCookieSecurityConfigurationOutAttributes}
44450
44674
  * @memberof JsonApiCookieSecurityConfigurationIn
44451
44675
  */
44452
- attributes?: JsonApiCookieSecurityConfigurationInAttributes;
44453
- }
44454
-
44455
- /**
44456
- *
44457
- * @export
44458
- * @interface JsonApiCookieSecurityConfigurationInAttributes
44459
- */
44460
- export declare interface JsonApiCookieSecurityConfigurationInAttributes {
44461
- /**
44462
- *
44463
- * @type {string}
44464
- * @memberof JsonApiCookieSecurityConfigurationInAttributes
44465
- */
44466
- lastRotation?: string;
44467
- /**
44468
- * Length of interval between automatic rotations expressed in format of ISO 8601 duration
44469
- * @type {string}
44470
- * @memberof JsonApiCookieSecurityConfigurationInAttributes
44471
- */
44472
- rotationInterval?: string;
44676
+ attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
44473
44677
  }
44474
44678
 
44475
44679
  /**
@@ -44512,10 +44716,30 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
44512
44716
  id: string;
44513
44717
  /**
44514
44718
  *
44515
- * @type {JsonApiCookieSecurityConfigurationInAttributes}
44719
+ * @type {JsonApiCookieSecurityConfigurationOutAttributes}
44516
44720
  * @memberof JsonApiCookieSecurityConfigurationOut
44517
44721
  */
44518
- attributes?: JsonApiCookieSecurityConfigurationInAttributes;
44722
+ attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
44723
+ }
44724
+
44725
+ /**
44726
+ *
44727
+ * @export
44728
+ * @interface JsonApiCookieSecurityConfigurationOutAttributes
44729
+ */
44730
+ export declare interface JsonApiCookieSecurityConfigurationOutAttributes {
44731
+ /**
44732
+ *
44733
+ * @type {string}
44734
+ * @memberof JsonApiCookieSecurityConfigurationOutAttributes
44735
+ */
44736
+ lastRotation?: string;
44737
+ /**
44738
+ * Length of interval between automatic rotations expressed in format of ISO 8601 duration
44739
+ * @type {string}
44740
+ * @memberof JsonApiCookieSecurityConfigurationOutAttributes
44741
+ */
44742
+ rotationInterval?: string;
44519
44743
  }
44520
44744
 
44521
44745
  /**
@@ -44564,10 +44788,10 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
44564
44788
  id: string;
44565
44789
  /**
44566
44790
  *
44567
- * @type {JsonApiCookieSecurityConfigurationInAttributes}
44791
+ * @type {JsonApiCookieSecurityConfigurationOutAttributes}
44568
44792
  * @memberof JsonApiCookieSecurityConfigurationPatch
44569
44793
  */
44570
- attributes?: JsonApiCookieSecurityConfigurationInAttributes;
44794
+ attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
44571
44795
  }
44572
44796
 
44573
44797
  /**
@@ -44716,10 +44940,10 @@ export declare interface JsonApiCspDirectiveOutList {
44716
44940
  links?: ListLinks;
44717
44941
  /**
44718
44942
  *
44719
- * @type {JsonApiAnalyticalDashboardOutListMeta}
44943
+ * @type {JsonApiColorPaletteOutListMeta}
44720
44944
  * @memberof JsonApiCspDirectiveOutList
44721
44945
  */
44722
- meta?: JsonApiAnalyticalDashboardOutListMeta;
44946
+ meta?: JsonApiColorPaletteOutListMeta;
44723
44947
  }
44724
44948
 
44725
44949
  export declare const JsonApiCspDirectiveOutTypeEnum: {
@@ -44964,10 +45188,10 @@ export declare interface JsonApiCustomApplicationSettingOutList {
44964
45188
  links?: ListLinks;
44965
45189
  /**
44966
45190
  *
44967
- * @type {JsonApiAnalyticalDashboardOutListMeta}
45191
+ * @type {JsonApiColorPaletteOutListMeta}
44968
45192
  * @memberof JsonApiCustomApplicationSettingOutList
44969
45193
  */
44970
- meta?: JsonApiAnalyticalDashboardOutListMeta;
45194
+ meta?: JsonApiColorPaletteOutListMeta;
44971
45195
  }
44972
45196
 
44973
45197
  export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
@@ -45338,10 +45562,10 @@ export declare interface JsonApiDashboardPluginOutList {
45338
45562
  links?: ListLinks;
45339
45563
  /**
45340
45564
  *
45341
- * @type {JsonApiAnalyticalDashboardOutListMeta}
45565
+ * @type {JsonApiColorPaletteOutListMeta}
45342
45566
  * @memberof JsonApiDashboardPluginOutList
45343
45567
  */
45344
- meta?: JsonApiAnalyticalDashboardOutListMeta;
45568
+ meta?: JsonApiColorPaletteOutListMeta;
45345
45569
  /**
45346
45570
  * Included resources
45347
45571
  * @type {Array<JsonApiUserIdentifierOutWithLinks>}
@@ -45926,10 +46150,10 @@ export declare interface JsonApiDatasetOutList {
45926
46150
  links?: ListLinks;
45927
46151
  /**
45928
46152
  *
45929
- * @type {JsonApiAnalyticalDashboardOutListMeta}
46153
+ * @type {JsonApiColorPaletteOutListMeta}
45930
46154
  * @memberof JsonApiDatasetOutList
45931
46155
  */
45932
- meta?: JsonApiAnalyticalDashboardOutListMeta;
46156
+ meta?: JsonApiColorPaletteOutListMeta;
45933
46157
  /**
45934
46158
  * Included resources
45935
46159
  * @type {Array<JsonApiDatasetOutIncludes>}
@@ -46067,10 +46291,10 @@ export declare interface JsonApiDataSourceIdentifierOut {
46067
46291
  id: string;
46068
46292
  /**
46069
46293
  *
46070
- * @type {JsonApiDataSourceIdentifierOutMeta}
46294
+ * @type {JsonApiDataSourceOutMeta}
46071
46295
  * @memberof JsonApiDataSourceIdentifierOut
46072
46296
  */
46073
- meta?: JsonApiDataSourceIdentifierOutMeta;
46297
+ meta?: JsonApiDataSourceOutMeta;
46074
46298
  /**
46075
46299
  *
46076
46300
  * @type {JsonApiDataSourceIdentifierOutAttributes}
@@ -46173,33 +46397,12 @@ export declare interface JsonApiDataSourceIdentifierOutList {
46173
46397
  links?: ListLinks;
46174
46398
  /**
46175
46399
  *
46176
- * @type {JsonApiAnalyticalDashboardOutListMeta}
46400
+ * @type {JsonApiColorPaletteOutListMeta}
46177
46401
  * @memberof JsonApiDataSourceIdentifierOutList
46178
46402
  */
46179
- meta?: JsonApiAnalyticalDashboardOutListMeta;
46403
+ meta?: JsonApiColorPaletteOutListMeta;
46180
46404
  }
46181
46405
 
46182
- /**
46183
- *
46184
- * @export
46185
- * @interface JsonApiDataSourceIdentifierOutMeta
46186
- */
46187
- export declare interface JsonApiDataSourceIdentifierOutMeta {
46188
- /**
46189
- * List of valid permissions for a logged-in user.
46190
- * @type {Array<string>}
46191
- * @memberof JsonApiDataSourceIdentifierOutMeta
46192
- */
46193
- permissions?: Array<JsonApiDataSourceIdentifierOutMetaPermissionsEnum>;
46194
- }
46195
-
46196
- export declare const JsonApiDataSourceIdentifierOutMetaPermissionsEnum: {
46197
- readonly MANAGE: "MANAGE";
46198
- readonly USE: "USE";
46199
- };
46200
-
46201
- export declare type JsonApiDataSourceIdentifierOutMetaPermissionsEnum = typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum[keyof typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum];
46202
-
46203
46406
  export declare const JsonApiDataSourceIdentifierOutTypeEnum: {
46204
46407
  readonly DATA_SOURCE_IDENTIFIER: "dataSourceIdentifier";
46205
46408
  };
@@ -46226,10 +46429,10 @@ export declare interface JsonApiDataSourceIdentifierOutWithLinks {
46226
46429
  id: string;
46227
46430
  /**
46228
46431
  *
46229
- * @type {JsonApiDataSourceIdentifierOutMeta}
46432
+ * @type {JsonApiDataSourceOutMeta}
46230
46433
  * @memberof JsonApiDataSourceIdentifierOutWithLinks
46231
46434
  */
46232
- meta?: JsonApiDataSourceIdentifierOutMeta;
46435
+ meta?: JsonApiDataSourceOutMeta;
46233
46436
  /**
46234
46437
  *
46235
46438
  * @type {JsonApiDataSourceIdentifierOutAttributes}
@@ -46350,10 +46553,10 @@ export declare interface JsonApiDataSourceInAttributes {
46350
46553
  clientSecret?: string | null;
46351
46554
  /**
46352
46555
  * Additional parameters to be used when connecting to the database providing the data for the data source.
46353
- * @type {Array<JsonApiDataSourceOutAttributesParameters>}
46556
+ * @type {Array<JsonApiDataSourcePatchAttributesParameters>}
46354
46557
  * @memberof JsonApiDataSourceInAttributes
46355
46558
  */
46356
- parameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
46559
+ parameters?: Array<JsonApiDataSourcePatchAttributesParameters> | null;
46357
46560
  /**
46358
46561
  * Determines how the results coming from a particular datasource should be cached.
46359
46562
  * @type {string}
@@ -46437,10 +46640,10 @@ export declare interface JsonApiDataSourceOut {
46437
46640
  id: string;
46438
46641
  /**
46439
46642
  *
46440
- * @type {JsonApiDataSourceIdentifierOutMeta}
46643
+ * @type {JsonApiDataSourceOutMeta}
46441
46644
  * @memberof JsonApiDataSourceOut
46442
46645
  */
46443
- meta?: JsonApiDataSourceIdentifierOutMeta;
46646
+ meta?: JsonApiDataSourceOutMeta;
46444
46647
  /**
46445
46648
  *
46446
46649
  * @type {JsonApiDataSourceOutAttributes}
@@ -46493,16 +46696,16 @@ export declare interface JsonApiDataSourceOutAttributes {
46493
46696
  clientId?: string | null;
46494
46697
  /**
46495
46698
  * Additional parameters to be used when connecting to the database providing the data for the data source.
46496
- * @type {Array<JsonApiDataSourceOutAttributesParameters>}
46699
+ * @type {Array<JsonApiDataSourcePatchAttributesParameters>}
46497
46700
  * @memberof JsonApiDataSourceOutAttributes
46498
46701
  */
46499
- parameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
46702
+ parameters?: Array<JsonApiDataSourcePatchAttributesParameters> | null;
46500
46703
  /**
46501
46704
  * Decoded parameters to be used when connecting to the database providing the data for the data source.
46502
- * @type {Array<JsonApiDataSourceOutAttributesParameters>}
46705
+ * @type {Array<JsonApiDataSourcePatchAttributesParameters>}
46503
46706
  * @memberof JsonApiDataSourceOutAttributes
46504
46707
  */
46505
- decodedParameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
46708
+ decodedParameters?: Array<JsonApiDataSourcePatchAttributesParameters> | null;
46506
46709
  /**
46507
46710
  * Determines how the results coming from a particular datasource should be cached.
46508
46711
  * @type {string}
@@ -46522,6 +46725,7 @@ export declare const JsonApiDataSourceOutAttributesAuthenticationTypeEnum: {
46522
46725
  readonly TOKEN: "TOKEN";
46523
46726
  readonly KEY_PAIR: "KEY_PAIR";
46524
46727
  readonly CLIENT_SECRET: "CLIENT_SECRET";
46728
+ readonly ACCESS_TOKEN: "ACCESS_TOKEN";
46525
46729
  };
46526
46730
 
46527
46731
  export declare type JsonApiDataSourceOutAttributesAuthenticationTypeEnum = typeof JsonApiDataSourceOutAttributesAuthenticationTypeEnum[keyof typeof JsonApiDataSourceOutAttributesAuthenticationTypeEnum];
@@ -46533,26 +46737,6 @@ export declare const JsonApiDataSourceOutAttributesCacheStrategyEnum: {
46533
46737
 
46534
46738
  export declare type JsonApiDataSourceOutAttributesCacheStrategyEnum = typeof JsonApiDataSourceOutAttributesCacheStrategyEnum[keyof typeof JsonApiDataSourceOutAttributesCacheStrategyEnum];
46535
46739
 
46536
- /**
46537
- *
46538
- * @export
46539
- * @interface JsonApiDataSourceOutAttributesParameters
46540
- */
46541
- export declare interface JsonApiDataSourceOutAttributesParameters {
46542
- /**
46543
- *
46544
- * @type {string}
46545
- * @memberof JsonApiDataSourceOutAttributesParameters
46546
- */
46547
- name: string;
46548
- /**
46549
- *
46550
- * @type {string}
46551
- * @memberof JsonApiDataSourceOutAttributesParameters
46552
- */
46553
- value: string;
46554
- }
46555
-
46556
46740
  export declare const JsonApiDataSourceOutAttributesTypeEnum: {
46557
46741
  readonly POSTGRESQL: "POSTGRESQL";
46558
46742
  readonly REDSHIFT: "REDSHIFT";
@@ -46621,12 +46805,33 @@ export declare interface JsonApiDataSourceOutList {
46621
46805
  links?: ListLinks;
46622
46806
  /**
46623
46807
  *
46624
- * @type {JsonApiAnalyticalDashboardOutListMeta}
46808
+ * @type {JsonApiColorPaletteOutListMeta}
46625
46809
  * @memberof JsonApiDataSourceOutList
46626
46810
  */
46627
- meta?: JsonApiAnalyticalDashboardOutListMeta;
46811
+ meta?: JsonApiColorPaletteOutListMeta;
46628
46812
  }
46629
46813
 
46814
+ /**
46815
+ *
46816
+ * @export
46817
+ * @interface JsonApiDataSourceOutMeta
46818
+ */
46819
+ export declare interface JsonApiDataSourceOutMeta {
46820
+ /**
46821
+ * List of valid permissions for a logged-in user.
46822
+ * @type {Array<string>}
46823
+ * @memberof JsonApiDataSourceOutMeta
46824
+ */
46825
+ permissions?: Array<JsonApiDataSourceOutMetaPermissionsEnum>;
46826
+ }
46827
+
46828
+ export declare const JsonApiDataSourceOutMetaPermissionsEnum: {
46829
+ readonly MANAGE: "MANAGE";
46830
+ readonly USE: "USE";
46831
+ };
46832
+
46833
+ export declare type JsonApiDataSourceOutMetaPermissionsEnum = typeof JsonApiDataSourceOutMetaPermissionsEnum[keyof typeof JsonApiDataSourceOutMetaPermissionsEnum];
46834
+
46630
46835
  export declare const JsonApiDataSourceOutTypeEnum: {
46631
46836
  readonly DATA_SOURCE: "dataSource";
46632
46837
  };
@@ -46653,10 +46858,10 @@ export declare interface JsonApiDataSourceOutWithLinks {
46653
46858
  id: string;
46654
46859
  /**
46655
46860
  *
46656
- * @type {JsonApiDataSourceIdentifierOutMeta}
46861
+ * @type {JsonApiDataSourceOutMeta}
46657
46862
  * @memberof JsonApiDataSourceOutWithLinks
46658
46863
  */
46659
- meta?: JsonApiDataSourceIdentifierOutMeta;
46864
+ meta?: JsonApiDataSourceOutMeta;
46660
46865
  /**
46661
46866
  *
46662
46867
  * @type {JsonApiDataSourceOutAttributes}
@@ -46777,10 +46982,10 @@ export declare interface JsonApiDataSourcePatchAttributes {
46777
46982
  clientSecret?: string | null;
46778
46983
  /**
46779
46984
  * Additional parameters to be used when connecting to the database providing the data for the data source.
46780
- * @type {Array<JsonApiDataSourceOutAttributesParameters>}
46985
+ * @type {Array<JsonApiDataSourcePatchAttributesParameters>}
46781
46986
  * @memberof JsonApiDataSourcePatchAttributes
46782
46987
  */
46783
- parameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
46988
+ parameters?: Array<JsonApiDataSourcePatchAttributesParameters> | null;
46784
46989
  /**
46785
46990
  * Determines how the results coming from a particular datasource should be cached.
46786
46991
  * @type {string}
@@ -46796,6 +47001,26 @@ export declare const JsonApiDataSourcePatchAttributesCacheStrategyEnum: {
46796
47001
 
46797
47002
  export declare type JsonApiDataSourcePatchAttributesCacheStrategyEnum = typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum[keyof typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum];
46798
47003
 
47004
+ /**
47005
+ *
47006
+ * @export
47007
+ * @interface JsonApiDataSourcePatchAttributesParameters
47008
+ */
47009
+ export declare interface JsonApiDataSourcePatchAttributesParameters {
47010
+ /**
47011
+ *
47012
+ * @type {string}
47013
+ * @memberof JsonApiDataSourcePatchAttributesParameters
47014
+ */
47015
+ name: string;
47016
+ /**
47017
+ *
47018
+ * @type {string}
47019
+ * @memberof JsonApiDataSourcePatchAttributesParameters
47020
+ */
47021
+ value: string;
47022
+ }
47023
+
46799
47024
  export declare const JsonApiDataSourcePatchAttributesTypeEnum: {
46800
47025
  readonly POSTGRESQL: "POSTGRESQL";
46801
47026
  readonly REDSHIFT: "REDSHIFT";
@@ -46930,10 +47155,10 @@ export declare interface JsonApiEntitlementOutList {
46930
47155
  links?: ListLinks;
46931
47156
  /**
46932
47157
  *
46933
- * @type {JsonApiAnalyticalDashboardOutListMeta}
47158
+ * @type {JsonApiColorPaletteOutListMeta}
46934
47159
  * @memberof JsonApiEntitlementOutList
46935
47160
  */
46936
- meta?: JsonApiAnalyticalDashboardOutListMeta;
47161
+ meta?: JsonApiColorPaletteOutListMeta;
46937
47162
  }
46938
47163
 
46939
47164
  export declare const JsonApiEntitlementOutTypeEnum: {
@@ -47198,10 +47423,10 @@ export declare interface JsonApiExportDefinitionOutList {
47198
47423
  links?: ListLinks;
47199
47424
  /**
47200
47425
  *
47201
- * @type {JsonApiAnalyticalDashboardOutListMeta}
47426
+ * @type {JsonApiColorPaletteOutListMeta}
47202
47427
  * @memberof JsonApiExportDefinitionOutList
47203
47428
  */
47204
- meta?: JsonApiAnalyticalDashboardOutListMeta;
47429
+ meta?: JsonApiColorPaletteOutListMeta;
47205
47430
  /**
47206
47431
  * Included resources
47207
47432
  * @type {Array<JsonApiExportDefinitionOutIncludes>}
@@ -47594,90 +47819,18 @@ export declare interface JsonApiExportTemplateOutAttributes {
47594
47819
  name: string;
47595
47820
  /**
47596
47821
  *
47597
- * @type {JsonApiExportTemplateOutAttributesDashboardSlidesTemplate}
47822
+ * @type {JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate}
47598
47823
  * @memberof JsonApiExportTemplateOutAttributes
47599
47824
  */
47600
- dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
47825
+ dashboardSlidesTemplate?: JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate | null;
47601
47826
  /**
47602
47827
  *
47603
- * @type {JsonApiExportTemplateOutAttributesWidgetSlidesTemplate}
47828
+ * @type {JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate}
47604
47829
  * @memberof JsonApiExportTemplateOutAttributes
47605
47830
  */
47606
- widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
47831
+ widgetSlidesTemplate?: JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate | null;
47607
47832
  }
47608
47833
 
47609
- /**
47610
- * Settings for exporting dashboards.
47611
- * @export
47612
- * @interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
47613
- */
47614
- export declare interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
47615
- /**
47616
- * Export types this template applies to.
47617
- * @type {Array<string>}
47618
- * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
47619
- */
47620
- appliedOn: Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
47621
- /**
47622
- *
47623
- * @type {CoverSlideTemplate}
47624
- * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
47625
- */
47626
- coverSlide?: CoverSlideTemplate | null;
47627
- /**
47628
- *
47629
- * @type {IntroSlideTemplate}
47630
- * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
47631
- */
47632
- introSlide?: IntroSlideTemplate | null;
47633
- /**
47634
- *
47635
- * @type {SectionSlideTemplate}
47636
- * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
47637
- */
47638
- sectionSlide?: SectionSlideTemplate | null;
47639
- /**
47640
- *
47641
- * @type {ContentSlideTemplate}
47642
- * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
47643
- */
47644
- contentSlide?: ContentSlideTemplate | null;
47645
- }
47646
-
47647
- export declare const JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum: {
47648
- readonly PDF: "PDF";
47649
- readonly PPTX: "PPTX";
47650
- };
47651
-
47652
- export declare type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum[keyof typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum];
47653
-
47654
- /**
47655
- * Settings for exporting widgets.
47656
- * @export
47657
- * @interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate
47658
- */
47659
- export declare interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
47660
- /**
47661
- * Export types this template applies to.
47662
- * @type {Array<string>}
47663
- * @memberof JsonApiExportTemplateOutAttributesWidgetSlidesTemplate
47664
- */
47665
- appliedOn: Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
47666
- /**
47667
- *
47668
- * @type {ContentSlideTemplate}
47669
- * @memberof JsonApiExportTemplateOutAttributesWidgetSlidesTemplate
47670
- */
47671
- contentSlide?: ContentSlideTemplate | null;
47672
- }
47673
-
47674
- export declare const JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum: {
47675
- readonly PDF: "PDF";
47676
- readonly PPTX: "PPTX";
47677
- };
47678
-
47679
- export declare type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum[keyof typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum];
47680
-
47681
47834
  /**
47682
47835
  *
47683
47836
  * @export
@@ -47718,10 +47871,10 @@ export declare interface JsonApiExportTemplateOutList {
47718
47871
  links?: ListLinks;
47719
47872
  /**
47720
47873
  *
47721
- * @type {JsonApiAnalyticalDashboardOutListMeta}
47874
+ * @type {JsonApiColorPaletteOutListMeta}
47722
47875
  * @memberof JsonApiExportTemplateOutList
47723
47876
  */
47724
- meta?: JsonApiAnalyticalDashboardOutListMeta;
47877
+ meta?: JsonApiColorPaletteOutListMeta;
47725
47878
  }
47726
47879
 
47727
47880
  export declare const JsonApiExportTemplateOutTypeEnum: {
@@ -47808,18 +47961,90 @@ export declare interface JsonApiExportTemplatePatchAttributes {
47808
47961
  name?: string;
47809
47962
  /**
47810
47963
  *
47811
- * @type {JsonApiExportTemplateOutAttributesDashboardSlidesTemplate}
47964
+ * @type {JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate}
47812
47965
  * @memberof JsonApiExportTemplatePatchAttributes
47813
47966
  */
47814
- dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
47967
+ dashboardSlidesTemplate?: JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate | null;
47815
47968
  /**
47816
47969
  *
47817
- * @type {JsonApiExportTemplateOutAttributesWidgetSlidesTemplate}
47970
+ * @type {JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate}
47818
47971
  * @memberof JsonApiExportTemplatePatchAttributes
47819
47972
  */
47820
- widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
47973
+ widgetSlidesTemplate?: JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate | null;
47821
47974
  }
47822
47975
 
47976
+ /**
47977
+ * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
47978
+ * @export
47979
+ * @interface JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
47980
+ */
47981
+ export declare interface JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate {
47982
+ /**
47983
+ * Export types this template applies to.
47984
+ * @type {Array<string>}
47985
+ * @memberof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
47986
+ */
47987
+ appliedOn: Array<JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum>;
47988
+ /**
47989
+ *
47990
+ * @type {CoverSlideTemplate}
47991
+ * @memberof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
47992
+ */
47993
+ coverSlide?: CoverSlideTemplate | null;
47994
+ /**
47995
+ *
47996
+ * @type {IntroSlideTemplate}
47997
+ * @memberof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
47998
+ */
47999
+ introSlide?: IntroSlideTemplate | null;
48000
+ /**
48001
+ *
48002
+ * @type {SectionSlideTemplate}
48003
+ * @memberof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
48004
+ */
48005
+ sectionSlide?: SectionSlideTemplate | null;
48006
+ /**
48007
+ *
48008
+ * @type {ContentSlideTemplate}
48009
+ * @memberof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
48010
+ */
48011
+ contentSlide?: ContentSlideTemplate | null;
48012
+ }
48013
+
48014
+ export declare const JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum: {
48015
+ readonly PDF: "PDF";
48016
+ readonly PPTX: "PPTX";
48017
+ };
48018
+
48019
+ export declare type JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum = typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum[keyof typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum];
48020
+
48021
+ /**
48022
+ * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
48023
+ * @export
48024
+ * @interface JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate
48025
+ */
48026
+ export declare interface JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate {
48027
+ /**
48028
+ * Export types this template applies to.
48029
+ * @type {Array<string>}
48030
+ * @memberof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate
48031
+ */
48032
+ appliedOn: Array<JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum>;
48033
+ /**
48034
+ *
48035
+ * @type {ContentSlideTemplate}
48036
+ * @memberof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate
48037
+ */
48038
+ contentSlide?: ContentSlideTemplate | null;
48039
+ }
48040
+
48041
+ export declare const JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum: {
48042
+ readonly PDF: "PDF";
48043
+ readonly PPTX: "PPTX";
48044
+ };
48045
+
48046
+ export declare type JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum = typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum[keyof typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum];
48047
+
47823
48048
  /**
47824
48049
  *
47825
48050
  * @export
@@ -48052,10 +48277,10 @@ export declare interface JsonApiFactOutList {
48052
48277
  links?: ListLinks;
48053
48278
  /**
48054
48279
  *
48055
- * @type {JsonApiAnalyticalDashboardOutListMeta}
48280
+ * @type {JsonApiColorPaletteOutListMeta}
48056
48281
  * @memberof JsonApiFactOutList
48057
48282
  */
48058
- meta?: JsonApiAnalyticalDashboardOutListMeta;
48283
+ meta?: JsonApiColorPaletteOutListMeta;
48059
48284
  /**
48060
48285
  * Included resources
48061
48286
  * @type {Array<JsonApiDatasetOutWithLinks>}
@@ -48334,10 +48559,10 @@ export declare interface JsonApiFilterContextOutList {
48334
48559
  links?: ListLinks;
48335
48560
  /**
48336
48561
  *
48337
- * @type {JsonApiAnalyticalDashboardOutListMeta}
48562
+ * @type {JsonApiColorPaletteOutListMeta}
48338
48563
  * @memberof JsonApiFilterContextOutList
48339
48564
  */
48340
- meta?: JsonApiAnalyticalDashboardOutListMeta;
48565
+ meta?: JsonApiColorPaletteOutListMeta;
48341
48566
  /**
48342
48567
  * Included resources
48343
48568
  * @type {Array<JsonApiFilterContextOutIncludes>}
@@ -48700,10 +48925,10 @@ export declare interface JsonApiFilterViewOutList {
48700
48925
  links?: ListLinks;
48701
48926
  /**
48702
48927
  *
48703
- * @type {JsonApiAnalyticalDashboardOutListMeta}
48928
+ * @type {JsonApiColorPaletteOutListMeta}
48704
48929
  * @memberof JsonApiFilterViewOutList
48705
48930
  */
48706
- meta?: JsonApiAnalyticalDashboardOutListMeta;
48931
+ meta?: JsonApiColorPaletteOutListMeta;
48707
48932
  /**
48708
48933
  * Included resources
48709
48934
  * @type {Array<JsonApiFilterViewOutIncludes>}
@@ -49089,10 +49314,10 @@ export declare interface JsonApiIdentityProviderOutList {
49089
49314
  links?: ListLinks;
49090
49315
  /**
49091
49316
  *
49092
- * @type {JsonApiAnalyticalDashboardOutListMeta}
49317
+ * @type {JsonApiColorPaletteOutListMeta}
49093
49318
  * @memberof JsonApiIdentityProviderOutList
49094
49319
  */
49095
- meta?: JsonApiAnalyticalDashboardOutListMeta;
49320
+ meta?: JsonApiColorPaletteOutListMeta;
49096
49321
  }
49097
49322
 
49098
49323
  export declare const JsonApiIdentityProviderOutTypeEnum: {
@@ -49251,10 +49476,10 @@ export declare interface JsonApiJwkIn {
49251
49476
  id: string;
49252
49477
  /**
49253
49478
  *
49254
- * @type {JsonApiJwkOutAttributes}
49479
+ * @type {JsonApiJwkPatchAttributes}
49255
49480
  * @memberof JsonApiJwkIn
49256
49481
  */
49257
- attributes?: JsonApiJwkOutAttributes;
49482
+ attributes?: JsonApiJwkPatchAttributes;
49258
49483
  }
49259
49484
 
49260
49485
  /**
@@ -49297,24 +49522,10 @@ export declare interface JsonApiJwkOut {
49297
49522
  id: string;
49298
49523
  /**
49299
49524
  *
49300
- * @type {JsonApiJwkOutAttributes}
49525
+ * @type {JsonApiJwkPatchAttributes}
49301
49526
  * @memberof JsonApiJwkOut
49302
49527
  */
49303
- attributes?: JsonApiJwkOutAttributes;
49304
- }
49305
-
49306
- /**
49307
- *
49308
- * @export
49309
- * @interface JsonApiJwkOutAttributes
49310
- */
49311
- export declare interface JsonApiJwkOutAttributes {
49312
- /**
49313
- * Specification of the cryptographic key
49314
- * @type {RsaSpecification}
49315
- * @memberof JsonApiJwkOutAttributes
49316
- */
49317
- content?: RsaSpecification;
49528
+ attributes?: JsonApiJwkPatchAttributes;
49318
49529
  }
49319
49530
 
49320
49531
  /**
@@ -49357,10 +49568,10 @@ export declare interface JsonApiJwkOutList {
49357
49568
  links?: ListLinks;
49358
49569
  /**
49359
49570
  *
49360
- * @type {JsonApiAnalyticalDashboardOutListMeta}
49571
+ * @type {JsonApiColorPaletteOutListMeta}
49361
49572
  * @memberof JsonApiJwkOutList
49362
49573
  */
49363
- meta?: JsonApiAnalyticalDashboardOutListMeta;
49574
+ meta?: JsonApiColorPaletteOutListMeta;
49364
49575
  }
49365
49576
 
49366
49577
  export declare const JsonApiJwkOutTypeEnum: {
@@ -49389,10 +49600,10 @@ export declare interface JsonApiJwkOutWithLinks {
49389
49600
  id: string;
49390
49601
  /**
49391
49602
  *
49392
- * @type {JsonApiJwkOutAttributes}
49603
+ * @type {JsonApiJwkPatchAttributes}
49393
49604
  * @memberof JsonApiJwkOutWithLinks
49394
49605
  */
49395
- attributes?: JsonApiJwkOutAttributes;
49606
+ attributes?: JsonApiJwkPatchAttributes;
49396
49607
  /**
49397
49608
  *
49398
49609
  * @type {ObjectLinks}
@@ -49427,10 +49638,24 @@ export declare interface JsonApiJwkPatch {
49427
49638
  id: string;
49428
49639
  /**
49429
49640
  *
49430
- * @type {JsonApiJwkOutAttributes}
49641
+ * @type {JsonApiJwkPatchAttributes}
49431
49642
  * @memberof JsonApiJwkPatch
49432
49643
  */
49433
- attributes?: JsonApiJwkOutAttributes;
49644
+ attributes?: JsonApiJwkPatchAttributes;
49645
+ }
49646
+
49647
+ /**
49648
+ *
49649
+ * @export
49650
+ * @interface JsonApiJwkPatchAttributes
49651
+ */
49652
+ export declare interface JsonApiJwkPatchAttributes {
49653
+ /**
49654
+ * Specification of the cryptographic key
49655
+ * @type {RsaSpecification}
49656
+ * @memberof JsonApiJwkPatchAttributes
49657
+ */
49658
+ content?: RsaSpecification;
49434
49659
  }
49435
49660
 
49436
49661
  /**
@@ -49642,10 +49867,10 @@ export declare interface JsonApiLabelOutList {
49642
49867
  links?: ListLinks;
49643
49868
  /**
49644
49869
  *
49645
- * @type {JsonApiAnalyticalDashboardOutListMeta}
49870
+ * @type {JsonApiColorPaletteOutListMeta}
49646
49871
  * @memberof JsonApiLabelOutList
49647
49872
  */
49648
- meta?: JsonApiAnalyticalDashboardOutListMeta;
49873
+ meta?: JsonApiColorPaletteOutListMeta;
49649
49874
  /**
49650
49875
  * Included resources
49651
49876
  * @type {Array<JsonApiAttributeOutWithLinks>}
@@ -49975,10 +50200,10 @@ export declare interface JsonApiLlmEndpointOutList {
49975
50200
  links?: ListLinks;
49976
50201
  /**
49977
50202
  *
49978
- * @type {JsonApiAnalyticalDashboardOutListMeta}
50203
+ * @type {JsonApiColorPaletteOutListMeta}
49979
50204
  * @memberof JsonApiLlmEndpointOutList
49980
50205
  */
49981
- meta?: JsonApiAnalyticalDashboardOutListMeta;
50206
+ meta?: JsonApiColorPaletteOutListMeta;
49982
50207
  }
49983
50208
 
49984
50209
  export declare const JsonApiLlmEndpointOutTypeEnum: {
@@ -50153,10 +50378,48 @@ export declare interface JsonApiMetricIn {
50153
50378
  id: string;
50154
50379
  /**
50155
50380
  *
50156
- * @type {JsonApiMetricPostOptionalIdAttributes}
50381
+ * @type {JsonApiMetricInAttributes}
50157
50382
  * @memberof JsonApiMetricIn
50158
50383
  */
50159
- attributes: JsonApiMetricPostOptionalIdAttributes;
50384
+ attributes: JsonApiMetricInAttributes;
50385
+ }
50386
+
50387
+ /**
50388
+ *
50389
+ * @export
50390
+ * @interface JsonApiMetricInAttributes
50391
+ */
50392
+ export declare interface JsonApiMetricInAttributes {
50393
+ /**
50394
+ *
50395
+ * @type {string}
50396
+ * @memberof JsonApiMetricInAttributes
50397
+ */
50398
+ title?: string;
50399
+ /**
50400
+ *
50401
+ * @type {string}
50402
+ * @memberof JsonApiMetricInAttributes
50403
+ */
50404
+ description?: string;
50405
+ /**
50406
+ *
50407
+ * @type {Array<string>}
50408
+ * @memberof JsonApiMetricInAttributes
50409
+ */
50410
+ tags?: Array<string>;
50411
+ /**
50412
+ *
50413
+ * @type {boolean}
50414
+ * @memberof JsonApiMetricInAttributes
50415
+ */
50416
+ areRelationsValid?: boolean;
50417
+ /**
50418
+ *
50419
+ * @type {JsonApiMetricOutAttributesContent}
50420
+ * @memberof JsonApiMetricInAttributes
50421
+ */
50422
+ content: JsonApiMetricOutAttributesContent;
50160
50423
  }
50161
50424
 
50162
50425
  /**
@@ -50365,10 +50628,10 @@ export declare interface JsonApiMetricOutList {
50365
50628
  links?: ListLinks;
50366
50629
  /**
50367
50630
  *
50368
- * @type {JsonApiAnalyticalDashboardOutListMeta}
50631
+ * @type {JsonApiColorPaletteOutListMeta}
50369
50632
  * @memberof JsonApiMetricOutList
50370
50633
  */
50371
- meta?: JsonApiAnalyticalDashboardOutListMeta;
50634
+ meta?: JsonApiColorPaletteOutListMeta;
50372
50635
  /**
50373
50636
  * Included resources
50374
50637
  * @type {Array<JsonApiMetricOutIncludes>}
@@ -50537,48 +50800,10 @@ export declare interface JsonApiMetricPostOptionalId {
50537
50800
  id?: string;
50538
50801
  /**
50539
50802
  *
50540
- * @type {JsonApiMetricPostOptionalIdAttributes}
50803
+ * @type {JsonApiMetricInAttributes}
50541
50804
  * @memberof JsonApiMetricPostOptionalId
50542
50805
  */
50543
- attributes: JsonApiMetricPostOptionalIdAttributes;
50544
- }
50545
-
50546
- /**
50547
- *
50548
- * @export
50549
- * @interface JsonApiMetricPostOptionalIdAttributes
50550
- */
50551
- export declare interface JsonApiMetricPostOptionalIdAttributes {
50552
- /**
50553
- *
50554
- * @type {string}
50555
- * @memberof JsonApiMetricPostOptionalIdAttributes
50556
- */
50557
- title?: string;
50558
- /**
50559
- *
50560
- * @type {string}
50561
- * @memberof JsonApiMetricPostOptionalIdAttributes
50562
- */
50563
- description?: string;
50564
- /**
50565
- *
50566
- * @type {Array<string>}
50567
- * @memberof JsonApiMetricPostOptionalIdAttributes
50568
- */
50569
- tags?: Array<string>;
50570
- /**
50571
- *
50572
- * @type {boolean}
50573
- * @memberof JsonApiMetricPostOptionalIdAttributes
50574
- */
50575
- areRelationsValid?: boolean;
50576
- /**
50577
- *
50578
- * @type {JsonApiMetricOutAttributesContent}
50579
- * @memberof JsonApiMetricPostOptionalIdAttributes
50580
- */
50581
- content: JsonApiMetricOutAttributesContent;
50806
+ attributes: JsonApiMetricInAttributes;
50582
50807
  }
50583
50808
 
50584
50809
  /**
@@ -50827,10 +51052,10 @@ export declare interface JsonApiNotificationChannelOutList {
50827
51052
  links?: ListLinks;
50828
51053
  /**
50829
51054
  *
50830
- * @type {JsonApiAnalyticalDashboardOutListMeta}
51055
+ * @type {JsonApiColorPaletteOutListMeta}
50831
51056
  * @memberof JsonApiNotificationChannelOutList
50832
51057
  */
50833
- meta?: JsonApiAnalyticalDashboardOutListMeta;
51058
+ meta?: JsonApiColorPaletteOutListMeta;
50834
51059
  }
50835
51060
 
50836
51061
  export declare const JsonApiNotificationChannelOutTypeEnum: {
@@ -51069,87 +51294,10 @@ export declare interface JsonApiOrganizationIn {
51069
51294
  id: string;
51070
51295
  /**
51071
51296
  *
51072
- * @type {JsonApiOrganizationInAttributes}
51297
+ * @type {JsonApiOrganizationPatchAttributes}
51073
51298
  * @memberof JsonApiOrganizationIn
51074
51299
  */
51075
- attributes?: JsonApiOrganizationInAttributes;
51076
- }
51077
-
51078
- /**
51079
- *
51080
- * @export
51081
- * @interface JsonApiOrganizationInAttributes
51082
- */
51083
- export declare interface JsonApiOrganizationInAttributes {
51084
- /**
51085
- *
51086
- * @type {string}
51087
- * @memberof JsonApiOrganizationInAttributes
51088
- */
51089
- name?: string | null;
51090
- /**
51091
- *
51092
- * @type {string}
51093
- * @memberof JsonApiOrganizationInAttributes
51094
- */
51095
- hostname?: string;
51096
- /**
51097
- *
51098
- * @type {Array<string>}
51099
- * @memberof JsonApiOrganizationInAttributes
51100
- */
51101
- allowedOrigins?: Array<string>;
51102
- /**
51103
- *
51104
- * @type {string}
51105
- * @memberof JsonApiOrganizationInAttributes
51106
- */
51107
- oauthIssuerLocation?: string;
51108
- /**
51109
- *
51110
- * @type {string}
51111
- * @memberof JsonApiOrganizationInAttributes
51112
- */
51113
- oauthClientId?: string;
51114
- /**
51115
- *
51116
- * @type {string}
51117
- * @memberof JsonApiOrganizationInAttributes
51118
- */
51119
- oauthClientSecret?: string;
51120
- /**
51121
- * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
51122
- * @type {string}
51123
- * @memberof JsonApiOrganizationInAttributes
51124
- * @deprecated
51125
- */
51126
- earlyAccess?: string | null;
51127
- /**
51128
- * The early access feature identifiers. They are used to enable experimental features.
51129
- * @type {Array<string>}
51130
- * @memberof JsonApiOrganizationInAttributes
51131
- */
51132
- earlyAccessValues?: Array<string> | null;
51133
- /**
51134
- * 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.
51135
- * @type {string}
51136
- * @memberof JsonApiOrganizationInAttributes
51137
- */
51138
- oauthIssuerId?: string;
51139
- /**
51140
- * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
51141
- * @type {string}
51142
- * @memberof JsonApiOrganizationInAttributes
51143
- */
51144
- oauthSubjectIdClaim?: string;
51145
- /**
51146
- * 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.
51147
- * @type {{ [key: string]: string; }}
51148
- * @memberof JsonApiOrganizationInAttributes
51149
- */
51150
- oauthCustomAuthAttributes?: {
51151
- [key: string]: string;
51152
- };
51300
+ attributes?: JsonApiOrganizationPatchAttributes;
51153
51301
  }
51154
51302
 
51155
51303
  /**
@@ -51285,6 +51433,12 @@ export declare interface JsonApiOrganizationOutAttributes {
51285
51433
  oauthCustomAuthAttributes?: {
51286
51434
  [key: string]: string;
51287
51435
  };
51436
+ /**
51437
+ * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
51438
+ * @type {Array<string>}
51439
+ * @memberof JsonApiOrganizationOutAttributes
51440
+ */
51441
+ oauthCustomScopes?: Array<string> | null;
51288
51442
  }
51289
51443
 
51290
51444
  /**
@@ -51413,10 +51567,93 @@ export declare interface JsonApiOrganizationPatch {
51413
51567
  id: string;
51414
51568
  /**
51415
51569
  *
51416
- * @type {JsonApiOrganizationInAttributes}
51570
+ * @type {JsonApiOrganizationPatchAttributes}
51417
51571
  * @memberof JsonApiOrganizationPatch
51418
51572
  */
51419
- attributes?: JsonApiOrganizationInAttributes;
51573
+ attributes?: JsonApiOrganizationPatchAttributes;
51574
+ }
51575
+
51576
+ /**
51577
+ *
51578
+ * @export
51579
+ * @interface JsonApiOrganizationPatchAttributes
51580
+ */
51581
+ export declare interface JsonApiOrganizationPatchAttributes {
51582
+ /**
51583
+ *
51584
+ * @type {string}
51585
+ * @memberof JsonApiOrganizationPatchAttributes
51586
+ */
51587
+ name?: string | null;
51588
+ /**
51589
+ *
51590
+ * @type {string}
51591
+ * @memberof JsonApiOrganizationPatchAttributes
51592
+ */
51593
+ hostname?: string;
51594
+ /**
51595
+ *
51596
+ * @type {Array<string>}
51597
+ * @memberof JsonApiOrganizationPatchAttributes
51598
+ */
51599
+ allowedOrigins?: Array<string>;
51600
+ /**
51601
+ *
51602
+ * @type {string}
51603
+ * @memberof JsonApiOrganizationPatchAttributes
51604
+ */
51605
+ oauthIssuerLocation?: string;
51606
+ /**
51607
+ *
51608
+ * @type {string}
51609
+ * @memberof JsonApiOrganizationPatchAttributes
51610
+ */
51611
+ oauthClientId?: string;
51612
+ /**
51613
+ *
51614
+ * @type {string}
51615
+ * @memberof JsonApiOrganizationPatchAttributes
51616
+ */
51617
+ oauthClientSecret?: string;
51618
+ /**
51619
+ * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
51620
+ * @type {string}
51621
+ * @memberof JsonApiOrganizationPatchAttributes
51622
+ * @deprecated
51623
+ */
51624
+ earlyAccess?: string | null;
51625
+ /**
51626
+ * The early access feature identifiers. They are used to enable experimental features.
51627
+ * @type {Array<string>}
51628
+ * @memberof JsonApiOrganizationPatchAttributes
51629
+ */
51630
+ earlyAccessValues?: Array<string> | null;
51631
+ /**
51632
+ * 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.
51633
+ * @type {string}
51634
+ * @memberof JsonApiOrganizationPatchAttributes
51635
+ */
51636
+ oauthIssuerId?: string;
51637
+ /**
51638
+ * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
51639
+ * @type {string}
51640
+ * @memberof JsonApiOrganizationPatchAttributes
51641
+ */
51642
+ oauthSubjectIdClaim?: string;
51643
+ /**
51644
+ * 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.
51645
+ * @type {{ [key: string]: string; }}
51646
+ * @memberof JsonApiOrganizationPatchAttributes
51647
+ */
51648
+ oauthCustomAuthAttributes?: {
51649
+ [key: string]: string;
51650
+ };
51651
+ /**
51652
+ * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
51653
+ * @type {Array<string>}
51654
+ * @memberof JsonApiOrganizationPatchAttributes
51655
+ */
51656
+ oauthCustomScopes?: Array<string> | null;
51420
51657
  }
51421
51658
 
51422
51659
  /**
@@ -51459,10 +51696,10 @@ export declare interface JsonApiOrganizationSettingIn {
51459
51696
  id: string;
51460
51697
  /**
51461
51698
  *
51462
- * @type {JsonApiWorkspaceSettingOutAttributes}
51699
+ * @type {JsonApiOrganizationSettingPatchAttributes}
51463
51700
  * @memberof JsonApiOrganizationSettingIn
51464
51701
  */
51465
- attributes?: JsonApiWorkspaceSettingOutAttributes;
51702
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
51466
51703
  }
51467
51704
 
51468
51705
  /**
@@ -51505,10 +51742,10 @@ export declare interface JsonApiOrganizationSettingOut {
51505
51742
  id: string;
51506
51743
  /**
51507
51744
  *
51508
- * @type {JsonApiWorkspaceSettingOutAttributes}
51745
+ * @type {JsonApiOrganizationSettingPatchAttributes}
51509
51746
  * @memberof JsonApiOrganizationSettingOut
51510
51747
  */
51511
- attributes?: JsonApiWorkspaceSettingOutAttributes;
51748
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
51512
51749
  }
51513
51750
 
51514
51751
  /**
@@ -51551,10 +51788,10 @@ export declare interface JsonApiOrganizationSettingOutList {
51551
51788
  links?: ListLinks;
51552
51789
  /**
51553
51790
  *
51554
- * @type {JsonApiAnalyticalDashboardOutListMeta}
51791
+ * @type {JsonApiColorPaletteOutListMeta}
51555
51792
  * @memberof JsonApiOrganizationSettingOutList
51556
51793
  */
51557
- meta?: JsonApiAnalyticalDashboardOutListMeta;
51794
+ meta?: JsonApiColorPaletteOutListMeta;
51558
51795
  }
51559
51796
 
51560
51797
  export declare const JsonApiOrganizationSettingOutTypeEnum: {
@@ -51583,10 +51820,10 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
51583
51820
  id: string;
51584
51821
  /**
51585
51822
  *
51586
- * @type {JsonApiWorkspaceSettingOutAttributes}
51823
+ * @type {JsonApiOrganizationSettingPatchAttributes}
51587
51824
  * @memberof JsonApiOrganizationSettingOutWithLinks
51588
51825
  */
51589
- attributes?: JsonApiWorkspaceSettingOutAttributes;
51826
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
51590
51827
  /**
51591
51828
  *
51592
51829
  * @type {ObjectLinks}
@@ -51621,12 +51858,57 @@ export declare interface JsonApiOrganizationSettingPatch {
51621
51858
  id: string;
51622
51859
  /**
51623
51860
  *
51624
- * @type {JsonApiWorkspaceSettingOutAttributes}
51861
+ * @type {JsonApiOrganizationSettingPatchAttributes}
51625
51862
  * @memberof JsonApiOrganizationSettingPatch
51626
51863
  */
51627
- attributes?: JsonApiWorkspaceSettingOutAttributes;
51864
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
51865
+ }
51866
+
51867
+ /**
51868
+ *
51869
+ * @export
51870
+ * @interface JsonApiOrganizationSettingPatchAttributes
51871
+ */
51872
+ export declare interface JsonApiOrganizationSettingPatchAttributes {
51873
+ /**
51874
+ * Free-form JSON content. Maximum supported length is 15000 characters.
51875
+ * @type {object}
51876
+ * @memberof JsonApiOrganizationSettingPatchAttributes
51877
+ */
51878
+ content?: object;
51879
+ /**
51880
+ *
51881
+ * @type {string}
51882
+ * @memberof JsonApiOrganizationSettingPatchAttributes
51883
+ */
51884
+ type?: JsonApiOrganizationSettingPatchAttributesTypeEnum;
51628
51885
  }
51629
51886
 
51887
+ export declare const JsonApiOrganizationSettingPatchAttributesTypeEnum: {
51888
+ readonly TIMEZONE: "TIMEZONE";
51889
+ readonly ACTIVE_THEME: "ACTIVE_THEME";
51890
+ readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
51891
+ readonly WHITE_LABELING: "WHITE_LABELING";
51892
+ readonly LOCALE: "LOCALE";
51893
+ readonly METADATA_LOCALE: "METADATA_LOCALE";
51894
+ readonly FORMAT_LOCALE: "FORMAT_LOCALE";
51895
+ readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
51896
+ readonly WEEK_START: "WEEK_START";
51897
+ readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
51898
+ readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
51899
+ readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
51900
+ readonly OPENAI_CONFIG: "OPENAI_CONFIG";
51901
+ readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
51902
+ readonly ALERT: "ALERT";
51903
+ readonly SEPARATORS: "SEPARATORS";
51904
+ readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
51905
+ readonly JIT_PROVISIONING: "JIT_PROVISIONING";
51906
+ readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
51907
+ readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
51908
+ };
51909
+
51910
+ export declare type JsonApiOrganizationSettingPatchAttributesTypeEnum = typeof JsonApiOrganizationSettingPatchAttributesTypeEnum[keyof typeof JsonApiOrganizationSettingPatchAttributesTypeEnum];
51911
+
51630
51912
  /**
51631
51913
  *
51632
51914
  * @export
@@ -51759,10 +52041,10 @@ export declare interface JsonApiThemeOutList {
51759
52041
  links?: ListLinks;
51760
52042
  /**
51761
52043
  *
51762
- * @type {JsonApiAnalyticalDashboardOutListMeta}
52044
+ * @type {JsonApiColorPaletteOutListMeta}
51763
52045
  * @memberof JsonApiThemeOutList
51764
52046
  */
51765
- meta?: JsonApiAnalyticalDashboardOutListMeta;
52047
+ meta?: JsonApiColorPaletteOutListMeta;
51766
52048
  }
51767
52049
 
51768
52050
  export declare const JsonApiThemeOutTypeEnum: {
@@ -52035,10 +52317,10 @@ export declare interface JsonApiUserDataFilterOutList {
52035
52317
  links?: ListLinks;
52036
52318
  /**
52037
52319
  *
52038
- * @type {JsonApiAnalyticalDashboardOutListMeta}
52320
+ * @type {JsonApiColorPaletteOutListMeta}
52039
52321
  * @memberof JsonApiUserDataFilterOutList
52040
52322
  */
52041
- meta?: JsonApiAnalyticalDashboardOutListMeta;
52323
+ meta?: JsonApiColorPaletteOutListMeta;
52042
52324
  /**
52043
52325
  * Included resources
52044
52326
  * @type {Array<JsonApiUserDataFilterOutIncludes>}
@@ -52349,16 +52631,16 @@ export declare interface JsonApiUserGroupIn {
52349
52631
  id: string;
52350
52632
  /**
52351
52633
  *
52352
- * @type {JsonApiUserGroupOutAttributes}
52634
+ * @type {JsonApiUserGroupPatchAttributes}
52353
52635
  * @memberof JsonApiUserGroupIn
52354
52636
  */
52355
- attributes?: JsonApiUserGroupOutAttributes;
52637
+ attributes?: JsonApiUserGroupPatchAttributes;
52356
52638
  /**
52357
52639
  *
52358
- * @type {JsonApiUserGroupOutRelationships}
52640
+ * @type {JsonApiUserGroupPatchRelationships}
52359
52641
  * @memberof JsonApiUserGroupIn
52360
52642
  */
52361
- relationships?: JsonApiUserGroupOutRelationships;
52643
+ relationships?: JsonApiUserGroupPatchRelationships;
52362
52644
  }
52363
52645
 
52364
52646
  /**
@@ -52427,30 +52709,16 @@ export declare interface JsonApiUserGroupOut {
52427
52709
  id: string;
52428
52710
  /**
52429
52711
  *
52430
- * @type {JsonApiUserGroupOutAttributes}
52712
+ * @type {JsonApiUserGroupPatchAttributes}
52431
52713
  * @memberof JsonApiUserGroupOut
52432
52714
  */
52433
- attributes?: JsonApiUserGroupOutAttributes;
52715
+ attributes?: JsonApiUserGroupPatchAttributes;
52434
52716
  /**
52435
52717
  *
52436
- * @type {JsonApiUserGroupOutRelationships}
52718
+ * @type {JsonApiUserGroupPatchRelationships}
52437
52719
  * @memberof JsonApiUserGroupOut
52438
52720
  */
52439
- relationships?: JsonApiUserGroupOutRelationships;
52440
- }
52441
-
52442
- /**
52443
- *
52444
- * @export
52445
- * @interface JsonApiUserGroupOutAttributes
52446
- */
52447
- export declare interface JsonApiUserGroupOutAttributes {
52448
- /**
52449
- *
52450
- * @type {string}
52451
- * @memberof JsonApiUserGroupOutAttributes
52452
- */
52453
- name?: string;
52721
+ relationships?: JsonApiUserGroupPatchRelationships;
52454
52722
  }
52455
52723
 
52456
52724
  /**
@@ -52499,10 +52767,10 @@ export declare interface JsonApiUserGroupOutList {
52499
52767
  links?: ListLinks;
52500
52768
  /**
52501
52769
  *
52502
- * @type {JsonApiAnalyticalDashboardOutListMeta}
52770
+ * @type {JsonApiColorPaletteOutListMeta}
52503
52771
  * @memberof JsonApiUserGroupOutList
52504
52772
  */
52505
- meta?: JsonApiAnalyticalDashboardOutListMeta;
52773
+ meta?: JsonApiColorPaletteOutListMeta;
52506
52774
  /**
52507
52775
  * Included resources
52508
52776
  * @type {Array<JsonApiUserGroupOutWithLinks>}
@@ -52511,20 +52779,6 @@ export declare interface JsonApiUserGroupOutList {
52511
52779
  included?: Array<JsonApiUserGroupOutWithLinks>;
52512
52780
  }
52513
52781
 
52514
- /**
52515
- *
52516
- * @export
52517
- * @interface JsonApiUserGroupOutRelationships
52518
- */
52519
- export declare interface JsonApiUserGroupOutRelationships {
52520
- /**
52521
- *
52522
- * @type {JsonApiUserOutRelationshipsUserGroups}
52523
- * @memberof JsonApiUserGroupOutRelationships
52524
- */
52525
- parents?: JsonApiUserOutRelationshipsUserGroups;
52526
- }
52527
-
52528
52782
  export declare const JsonApiUserGroupOutTypeEnum: {
52529
52783
  readonly USER_GROUP: "userGroup";
52530
52784
  };
@@ -52551,16 +52805,16 @@ export declare interface JsonApiUserGroupOutWithLinks {
52551
52805
  id: string;
52552
52806
  /**
52553
52807
  *
52554
- * @type {JsonApiUserGroupOutAttributes}
52808
+ * @type {JsonApiUserGroupPatchAttributes}
52555
52809
  * @memberof JsonApiUserGroupOutWithLinks
52556
52810
  */
52557
- attributes?: JsonApiUserGroupOutAttributes;
52811
+ attributes?: JsonApiUserGroupPatchAttributes;
52558
52812
  /**
52559
52813
  *
52560
- * @type {JsonApiUserGroupOutRelationships}
52814
+ * @type {JsonApiUserGroupPatchRelationships}
52561
52815
  * @memberof JsonApiUserGroupOutWithLinks
52562
52816
  */
52563
- relationships?: JsonApiUserGroupOutRelationships;
52817
+ relationships?: JsonApiUserGroupPatchRelationships;
52564
52818
  /**
52565
52819
  *
52566
52820
  * @type {ObjectLinks}
@@ -52595,16 +52849,30 @@ export declare interface JsonApiUserGroupPatch {
52595
52849
  id: string;
52596
52850
  /**
52597
52851
  *
52598
- * @type {JsonApiUserGroupOutAttributes}
52852
+ * @type {JsonApiUserGroupPatchAttributes}
52599
52853
  * @memberof JsonApiUserGroupPatch
52600
52854
  */
52601
- attributes?: JsonApiUserGroupOutAttributes;
52855
+ attributes?: JsonApiUserGroupPatchAttributes;
52602
52856
  /**
52603
52857
  *
52604
- * @type {JsonApiUserGroupOutRelationships}
52858
+ * @type {JsonApiUserGroupPatchRelationships}
52605
52859
  * @memberof JsonApiUserGroupPatch
52606
52860
  */
52607
- relationships?: JsonApiUserGroupOutRelationships;
52861
+ relationships?: JsonApiUserGroupPatchRelationships;
52862
+ }
52863
+
52864
+ /**
52865
+ *
52866
+ * @export
52867
+ * @interface JsonApiUserGroupPatchAttributes
52868
+ */
52869
+ export declare interface JsonApiUserGroupPatchAttributes {
52870
+ /**
52871
+ *
52872
+ * @type {string}
52873
+ * @memberof JsonApiUserGroupPatchAttributes
52874
+ */
52875
+ name?: string;
52608
52876
  }
52609
52877
 
52610
52878
  /**
@@ -52621,6 +52889,34 @@ export declare interface JsonApiUserGroupPatchDocument {
52621
52889
  data: JsonApiUserGroupPatch;
52622
52890
  }
52623
52891
 
52892
+ /**
52893
+ *
52894
+ * @export
52895
+ * @interface JsonApiUserGroupPatchRelationships
52896
+ */
52897
+ export declare interface JsonApiUserGroupPatchRelationships {
52898
+ /**
52899
+ *
52900
+ * @type {JsonApiUserGroupPatchRelationshipsParents}
52901
+ * @memberof JsonApiUserGroupPatchRelationships
52902
+ */
52903
+ parents?: JsonApiUserGroupPatchRelationshipsParents;
52904
+ }
52905
+
52906
+ /**
52907
+ *
52908
+ * @export
52909
+ * @interface JsonApiUserGroupPatchRelationshipsParents
52910
+ */
52911
+ export declare interface JsonApiUserGroupPatchRelationshipsParents {
52912
+ /**
52913
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
52914
+ * @type {Array<JsonApiUserGroupLinkage>}
52915
+ * @memberof JsonApiUserGroupPatchRelationshipsParents
52916
+ */
52917
+ data: Array<JsonApiUserGroupLinkage>;
52918
+ }
52919
+
52624
52920
  export declare const JsonApiUserGroupPatchTypeEnum: {
52625
52921
  readonly USER_GROUP: "userGroup";
52626
52922
  };
@@ -52752,10 +53048,10 @@ export declare interface JsonApiUserIdentifierOutList {
52752
53048
  links?: ListLinks;
52753
53049
  /**
52754
53050
  *
52755
- * @type {JsonApiAnalyticalDashboardOutListMeta}
53051
+ * @type {JsonApiColorPaletteOutListMeta}
52756
53052
  * @memberof JsonApiUserIdentifierOutList
52757
53053
  */
52758
- meta?: JsonApiAnalyticalDashboardOutListMeta;
53054
+ meta?: JsonApiColorPaletteOutListMeta;
52759
53055
  }
52760
53056
 
52761
53057
  export declare const JsonApiUserIdentifierOutTypeEnum: {
@@ -52829,16 +53125,16 @@ export declare interface JsonApiUserIn {
52829
53125
  id: string;
52830
53126
  /**
52831
53127
  *
52832
- * @type {JsonApiUserOutAttributes}
53128
+ * @type {JsonApiUserPatchAttributes}
52833
53129
  * @memberof JsonApiUserIn
52834
53130
  */
52835
- attributes?: JsonApiUserOutAttributes;
53131
+ attributes?: JsonApiUserPatchAttributes;
52836
53132
  /**
52837
53133
  *
52838
- * @type {JsonApiUserOutRelationships}
53134
+ * @type {JsonApiUserPatchRelationships}
52839
53135
  * @memberof JsonApiUserIn
52840
53136
  */
52841
- relationships?: JsonApiUserOutRelationships;
53137
+ relationships?: JsonApiUserPatchRelationships;
52842
53138
  }
52843
53139
 
52844
53140
  /**
@@ -52907,48 +53203,16 @@ export declare interface JsonApiUserOut {
52907
53203
  id: string;
52908
53204
  /**
52909
53205
  *
52910
- * @type {JsonApiUserOutAttributes}
53206
+ * @type {JsonApiUserPatchAttributes}
52911
53207
  * @memberof JsonApiUserOut
52912
53208
  */
52913
- attributes?: JsonApiUserOutAttributes;
53209
+ attributes?: JsonApiUserPatchAttributes;
52914
53210
  /**
52915
53211
  *
52916
- * @type {JsonApiUserOutRelationships}
53212
+ * @type {JsonApiUserPatchRelationships}
52917
53213
  * @memberof JsonApiUserOut
52918
53214
  */
52919
- relationships?: JsonApiUserOutRelationships;
52920
- }
52921
-
52922
- /**
52923
- *
52924
- * @export
52925
- * @interface JsonApiUserOutAttributes
52926
- */
52927
- export declare interface JsonApiUserOutAttributes {
52928
- /**
52929
- *
52930
- * @type {string}
52931
- * @memberof JsonApiUserOutAttributes
52932
- */
52933
- authenticationId?: string;
52934
- /**
52935
- *
52936
- * @type {string}
52937
- * @memberof JsonApiUserOutAttributes
52938
- */
52939
- firstname?: string;
52940
- /**
52941
- *
52942
- * @type {string}
52943
- * @memberof JsonApiUserOutAttributes
52944
- */
52945
- lastname?: string;
52946
- /**
52947
- *
52948
- * @type {string}
52949
- * @memberof JsonApiUserOutAttributes
52950
- */
52951
- email?: string;
53215
+ relationships?: JsonApiUserPatchRelationships;
52952
53216
  }
52953
53217
 
52954
53218
  /**
@@ -52997,10 +53261,10 @@ export declare interface JsonApiUserOutList {
52997
53261
  links?: ListLinks;
52998
53262
  /**
52999
53263
  *
53000
- * @type {JsonApiAnalyticalDashboardOutListMeta}
53264
+ * @type {JsonApiColorPaletteOutListMeta}
53001
53265
  * @memberof JsonApiUserOutList
53002
53266
  */
53003
- meta?: JsonApiAnalyticalDashboardOutListMeta;
53267
+ meta?: JsonApiColorPaletteOutListMeta;
53004
53268
  /**
53005
53269
  * Included resources
53006
53270
  * @type {Array<JsonApiUserGroupOutWithLinks>}
@@ -53009,34 +53273,6 @@ export declare interface JsonApiUserOutList {
53009
53273
  included?: Array<JsonApiUserGroupOutWithLinks>;
53010
53274
  }
53011
53275
 
53012
- /**
53013
- *
53014
- * @export
53015
- * @interface JsonApiUserOutRelationships
53016
- */
53017
- export declare interface JsonApiUserOutRelationships {
53018
- /**
53019
- *
53020
- * @type {JsonApiUserOutRelationshipsUserGroups}
53021
- * @memberof JsonApiUserOutRelationships
53022
- */
53023
- userGroups?: JsonApiUserOutRelationshipsUserGroups;
53024
- }
53025
-
53026
- /**
53027
- *
53028
- * @export
53029
- * @interface JsonApiUserOutRelationshipsUserGroups
53030
- */
53031
- export declare interface JsonApiUserOutRelationshipsUserGroups {
53032
- /**
53033
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
53034
- * @type {Array<JsonApiUserGroupLinkage>}
53035
- * @memberof JsonApiUserOutRelationshipsUserGroups
53036
- */
53037
- data: Array<JsonApiUserGroupLinkage>;
53038
- }
53039
-
53040
53276
  export declare const JsonApiUserOutTypeEnum: {
53041
53277
  readonly USER: "user";
53042
53278
  };
@@ -53063,16 +53299,16 @@ export declare interface JsonApiUserOutWithLinks {
53063
53299
  id: string;
53064
53300
  /**
53065
53301
  *
53066
- * @type {JsonApiUserOutAttributes}
53302
+ * @type {JsonApiUserPatchAttributes}
53067
53303
  * @memberof JsonApiUserOutWithLinks
53068
53304
  */
53069
- attributes?: JsonApiUserOutAttributes;
53305
+ attributes?: JsonApiUserPatchAttributes;
53070
53306
  /**
53071
53307
  *
53072
- * @type {JsonApiUserOutRelationships}
53308
+ * @type {JsonApiUserPatchRelationships}
53073
53309
  * @memberof JsonApiUserOutWithLinks
53074
53310
  */
53075
- relationships?: JsonApiUserOutRelationships;
53311
+ relationships?: JsonApiUserPatchRelationships;
53076
53312
  /**
53077
53313
  *
53078
53314
  * @type {ObjectLinks}
@@ -53107,16 +53343,48 @@ export declare interface JsonApiUserPatch {
53107
53343
  id: string;
53108
53344
  /**
53109
53345
  *
53110
- * @type {JsonApiUserOutAttributes}
53346
+ * @type {JsonApiUserPatchAttributes}
53111
53347
  * @memberof JsonApiUserPatch
53112
53348
  */
53113
- attributes?: JsonApiUserOutAttributes;
53349
+ attributes?: JsonApiUserPatchAttributes;
53114
53350
  /**
53115
53351
  *
53116
- * @type {JsonApiUserOutRelationships}
53352
+ * @type {JsonApiUserPatchRelationships}
53117
53353
  * @memberof JsonApiUserPatch
53118
53354
  */
53119
- relationships?: JsonApiUserOutRelationships;
53355
+ relationships?: JsonApiUserPatchRelationships;
53356
+ }
53357
+
53358
+ /**
53359
+ *
53360
+ * @export
53361
+ * @interface JsonApiUserPatchAttributes
53362
+ */
53363
+ export declare interface JsonApiUserPatchAttributes {
53364
+ /**
53365
+ *
53366
+ * @type {string}
53367
+ * @memberof JsonApiUserPatchAttributes
53368
+ */
53369
+ authenticationId?: string;
53370
+ /**
53371
+ *
53372
+ * @type {string}
53373
+ * @memberof JsonApiUserPatchAttributes
53374
+ */
53375
+ firstname?: string;
53376
+ /**
53377
+ *
53378
+ * @type {string}
53379
+ * @memberof JsonApiUserPatchAttributes
53380
+ */
53381
+ lastname?: string;
53382
+ /**
53383
+ *
53384
+ * @type {string}
53385
+ * @memberof JsonApiUserPatchAttributes
53386
+ */
53387
+ email?: string;
53120
53388
  }
53121
53389
 
53122
53390
  /**
@@ -53133,6 +53401,20 @@ export declare interface JsonApiUserPatchDocument {
53133
53401
  data: JsonApiUserPatch;
53134
53402
  }
53135
53403
 
53404
+ /**
53405
+ *
53406
+ * @export
53407
+ * @interface JsonApiUserPatchRelationships
53408
+ */
53409
+ export declare interface JsonApiUserPatchRelationships {
53410
+ /**
53411
+ *
53412
+ * @type {JsonApiUserGroupPatchRelationshipsParents}
53413
+ * @memberof JsonApiUserPatchRelationships
53414
+ */
53415
+ userGroups?: JsonApiUserGroupPatchRelationshipsParents;
53416
+ }
53417
+
53136
53418
  export declare const JsonApiUserPatchTypeEnum: {
53137
53419
  readonly USER: "user";
53138
53420
  };
@@ -53159,10 +53441,10 @@ export declare interface JsonApiUserSettingIn {
53159
53441
  id: string;
53160
53442
  /**
53161
53443
  *
53162
- * @type {JsonApiWorkspaceSettingOutAttributes}
53444
+ * @type {JsonApiOrganizationSettingPatchAttributes}
53163
53445
  * @memberof JsonApiUserSettingIn
53164
53446
  */
53165
- attributes?: JsonApiWorkspaceSettingOutAttributes;
53447
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
53166
53448
  }
53167
53449
 
53168
53450
  /**
@@ -53205,10 +53487,10 @@ export declare interface JsonApiUserSettingOut {
53205
53487
  id: string;
53206
53488
  /**
53207
53489
  *
53208
- * @type {JsonApiWorkspaceSettingOutAttributes}
53490
+ * @type {JsonApiOrganizationSettingPatchAttributes}
53209
53491
  * @memberof JsonApiUserSettingOut
53210
53492
  */
53211
- attributes?: JsonApiWorkspaceSettingOutAttributes;
53493
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
53212
53494
  }
53213
53495
 
53214
53496
  /**
@@ -53251,10 +53533,10 @@ export declare interface JsonApiUserSettingOutList {
53251
53533
  links?: ListLinks;
53252
53534
  /**
53253
53535
  *
53254
- * @type {JsonApiAnalyticalDashboardOutListMeta}
53536
+ * @type {JsonApiColorPaletteOutListMeta}
53255
53537
  * @memberof JsonApiUserSettingOutList
53256
53538
  */
53257
- meta?: JsonApiAnalyticalDashboardOutListMeta;
53539
+ meta?: JsonApiColorPaletteOutListMeta;
53258
53540
  }
53259
53541
 
53260
53542
  export declare const JsonApiUserSettingOutTypeEnum: {
@@ -53283,10 +53565,10 @@ export declare interface JsonApiUserSettingOutWithLinks {
53283
53565
  id: string;
53284
53566
  /**
53285
53567
  *
53286
- * @type {JsonApiWorkspaceSettingOutAttributes}
53568
+ * @type {JsonApiOrganizationSettingPatchAttributes}
53287
53569
  * @memberof JsonApiUserSettingOutWithLinks
53288
53570
  */
53289
- attributes?: JsonApiWorkspaceSettingOutAttributes;
53571
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
53290
53572
  /**
53291
53573
  *
53292
53574
  * @type {ObjectLinks}
@@ -53514,10 +53796,10 @@ export declare interface JsonApiVisualizationObjectOutList {
53514
53796
  links?: ListLinks;
53515
53797
  /**
53516
53798
  *
53517
- * @type {JsonApiAnalyticalDashboardOutListMeta}
53799
+ * @type {JsonApiColorPaletteOutListMeta}
53518
53800
  * @memberof JsonApiVisualizationObjectOutList
53519
53801
  */
53520
- meta?: JsonApiAnalyticalDashboardOutListMeta;
53802
+ meta?: JsonApiColorPaletteOutListMeta;
53521
53803
  /**
53522
53804
  * Included resources
53523
53805
  * @type {Array<JsonApiMetricOutIncludes>}
@@ -54044,10 +54326,10 @@ export declare interface JsonApiWorkspaceDataFilterOutList {
54044
54326
  links?: ListLinks;
54045
54327
  /**
54046
54328
  *
54047
- * @type {JsonApiAnalyticalDashboardOutListMeta}
54329
+ * @type {JsonApiColorPaletteOutListMeta}
54048
54330
  * @memberof JsonApiWorkspaceDataFilterOutList
54049
54331
  */
54050
- meta?: JsonApiAnalyticalDashboardOutListMeta;
54332
+ meta?: JsonApiColorPaletteOutListMeta;
54051
54333
  /**
54052
54334
  * Included resources
54053
54335
  * @type {Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>}
@@ -54380,10 +54662,10 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutList {
54380
54662
  links?: ListLinks;
54381
54663
  /**
54382
54664
  *
54383
- * @type {JsonApiAnalyticalDashboardOutListMeta}
54665
+ * @type {JsonApiColorPaletteOutListMeta}
54384
54666
  * @memberof JsonApiWorkspaceDataFilterSettingOutList
54385
54667
  */
54386
- meta?: JsonApiAnalyticalDashboardOutListMeta;
54668
+ meta?: JsonApiColorPaletteOutListMeta;
54387
54669
  /**
54388
54670
  * Included resources
54389
54671
  * @type {Array<JsonApiWorkspaceDataFilterOutWithLinks>}
@@ -54555,16 +54837,16 @@ export declare interface JsonApiWorkspaceIn {
54555
54837
  id: string;
54556
54838
  /**
54557
54839
  *
54558
- * @type {JsonApiWorkspaceOutAttributes}
54840
+ * @type {JsonApiWorkspacePatchAttributes}
54559
54841
  * @memberof JsonApiWorkspaceIn
54560
54842
  */
54561
- attributes?: JsonApiWorkspaceOutAttributes;
54843
+ attributes?: JsonApiWorkspacePatchAttributes;
54562
54844
  /**
54563
54845
  *
54564
- * @type {JsonApiWorkspaceOutRelationships}
54846
+ * @type {JsonApiWorkspacePatchRelationships}
54565
54847
  * @memberof JsonApiWorkspaceIn
54566
54848
  */
54567
- relationships?: JsonApiWorkspaceOutRelationships;
54849
+ relationships?: JsonApiWorkspacePatchRelationships;
54568
54850
  }
54569
54851
 
54570
54852
  /**
@@ -54639,87 +54921,16 @@ export declare interface JsonApiWorkspaceOut {
54639
54921
  meta?: JsonApiWorkspaceOutMeta;
54640
54922
  /**
54641
54923
  *
54642
- * @type {JsonApiWorkspaceOutAttributes}
54924
+ * @type {JsonApiWorkspacePatchAttributes}
54643
54925
  * @memberof JsonApiWorkspaceOut
54644
54926
  */
54645
- attributes?: JsonApiWorkspaceOutAttributes;
54927
+ attributes?: JsonApiWorkspacePatchAttributes;
54646
54928
  /**
54647
54929
  *
54648
- * @type {JsonApiWorkspaceOutRelationships}
54930
+ * @type {JsonApiWorkspacePatchRelationships}
54649
54931
  * @memberof JsonApiWorkspaceOut
54650
54932
  */
54651
- relationships?: JsonApiWorkspaceOutRelationships;
54652
- }
54653
-
54654
- /**
54655
- *
54656
- * @export
54657
- * @interface JsonApiWorkspaceOutAttributes
54658
- */
54659
- export declare interface JsonApiWorkspaceOutAttributes {
54660
- /**
54661
- *
54662
- * @type {string}
54663
- * @memberof JsonApiWorkspaceOutAttributes
54664
- */
54665
- name?: string | null;
54666
- /**
54667
- * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
54668
- * @type {string}
54669
- * @memberof JsonApiWorkspaceOutAttributes
54670
- * @deprecated
54671
- */
54672
- earlyAccess?: string | null;
54673
- /**
54674
- * The early access feature identifiers. They are used to enable experimental features.
54675
- * @type {Array<string>}
54676
- * @memberof JsonApiWorkspaceOutAttributes
54677
- */
54678
- earlyAccessValues?: Array<string> | null;
54679
- /**
54680
- *
54681
- * @type {string}
54682
- * @memberof JsonApiWorkspaceOutAttributes
54683
- */
54684
- description?: string | null;
54685
- /**
54686
- * Custom prefix of entity identifiers in workspace
54687
- * @type {string}
54688
- * @memberof JsonApiWorkspaceOutAttributes
54689
- */
54690
- prefix?: string | null;
54691
- /**
54692
- *
54693
- * @type {number}
54694
- * @memberof JsonApiWorkspaceOutAttributes
54695
- */
54696
- cacheExtraLimit?: number;
54697
- /**
54698
- *
54699
- * @type {JsonApiWorkspaceOutAttributesDataSource}
54700
- * @memberof JsonApiWorkspaceOutAttributes
54701
- */
54702
- dataSource?: JsonApiWorkspaceOutAttributesDataSource;
54703
- }
54704
-
54705
- /**
54706
- * 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.
54707
- * @export
54708
- * @interface JsonApiWorkspaceOutAttributesDataSource
54709
- */
54710
- export declare interface JsonApiWorkspaceOutAttributesDataSource {
54711
- /**
54712
- * The ID of the used data source.
54713
- * @type {string}
54714
- * @memberof JsonApiWorkspaceOutAttributesDataSource
54715
- */
54716
- id: string;
54717
- /**
54718
- * The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
54719
- * @type {Array<string>}
54720
- * @memberof JsonApiWorkspaceOutAttributesDataSource
54721
- */
54722
- schemaPath?: Array<string>;
54933
+ relationships?: JsonApiWorkspacePatchRelationships;
54723
54934
  }
54724
54935
 
54725
54936
  /**
@@ -54768,10 +54979,10 @@ export declare interface JsonApiWorkspaceOutList {
54768
54979
  links?: ListLinks;
54769
54980
  /**
54770
54981
  *
54771
- * @type {JsonApiAnalyticalDashboardOutListMeta}
54982
+ * @type {JsonApiColorPaletteOutListMeta}
54772
54983
  * @memberof JsonApiWorkspaceOutList
54773
54984
  */
54774
- meta?: JsonApiAnalyticalDashboardOutListMeta;
54985
+ meta?: JsonApiColorPaletteOutListMeta;
54775
54986
  /**
54776
54987
  * Included resources
54777
54988
  * @type {Array<JsonApiWorkspaceOutWithLinks>}
@@ -54879,34 +55090,6 @@ export declare const JsonApiWorkspaceOutMetaPermissionsEnum: {
54879
55090
 
54880
55091
  export declare type JsonApiWorkspaceOutMetaPermissionsEnum = typeof JsonApiWorkspaceOutMetaPermissionsEnum[keyof typeof JsonApiWorkspaceOutMetaPermissionsEnum];
54881
55092
 
54882
- /**
54883
- *
54884
- * @export
54885
- * @interface JsonApiWorkspaceOutRelationships
54886
- */
54887
- export declare interface JsonApiWorkspaceOutRelationships {
54888
- /**
54889
- *
54890
- * @type {JsonApiWorkspaceOutRelationshipsParent}
54891
- * @memberof JsonApiWorkspaceOutRelationships
54892
- */
54893
- parent?: JsonApiWorkspaceOutRelationshipsParent;
54894
- }
54895
-
54896
- /**
54897
- *
54898
- * @export
54899
- * @interface JsonApiWorkspaceOutRelationshipsParent
54900
- */
54901
- export declare interface JsonApiWorkspaceOutRelationshipsParent {
54902
- /**
54903
- *
54904
- * @type {JsonApiWorkspaceToOneLinkage}
54905
- * @memberof JsonApiWorkspaceOutRelationshipsParent
54906
- */
54907
- data: JsonApiWorkspaceToOneLinkage | null;
54908
- }
54909
-
54910
55093
  export declare const JsonApiWorkspaceOutTypeEnum: {
54911
55094
  readonly WORKSPACE: "workspace";
54912
55095
  };
@@ -54939,16 +55122,16 @@ export declare interface JsonApiWorkspaceOutWithLinks {
54939
55122
  meta?: JsonApiWorkspaceOutMeta;
54940
55123
  /**
54941
55124
  *
54942
- * @type {JsonApiWorkspaceOutAttributes}
55125
+ * @type {JsonApiWorkspacePatchAttributes}
54943
55126
  * @memberof JsonApiWorkspaceOutWithLinks
54944
55127
  */
54945
- attributes?: JsonApiWorkspaceOutAttributes;
55128
+ attributes?: JsonApiWorkspacePatchAttributes;
54946
55129
  /**
54947
55130
  *
54948
- * @type {JsonApiWorkspaceOutRelationships}
55131
+ * @type {JsonApiWorkspacePatchRelationships}
54949
55132
  * @memberof JsonApiWorkspaceOutWithLinks
54950
55133
  */
54951
- relationships?: JsonApiWorkspaceOutRelationships;
55134
+ relationships?: JsonApiWorkspacePatchRelationships;
54952
55135
  /**
54953
55136
  *
54954
55137
  * @type {ObjectLinks}
@@ -54983,16 +55166,87 @@ export declare interface JsonApiWorkspacePatch {
54983
55166
  id: string;
54984
55167
  /**
54985
55168
  *
54986
- * @type {JsonApiWorkspaceOutAttributes}
55169
+ * @type {JsonApiWorkspacePatchAttributes}
54987
55170
  * @memberof JsonApiWorkspacePatch
54988
55171
  */
54989
- attributes?: JsonApiWorkspaceOutAttributes;
55172
+ attributes?: JsonApiWorkspacePatchAttributes;
54990
55173
  /**
54991
55174
  *
54992
- * @type {JsonApiWorkspaceOutRelationships}
55175
+ * @type {JsonApiWorkspacePatchRelationships}
54993
55176
  * @memberof JsonApiWorkspacePatch
54994
55177
  */
54995
- relationships?: JsonApiWorkspaceOutRelationships;
55178
+ relationships?: JsonApiWorkspacePatchRelationships;
55179
+ }
55180
+
55181
+ /**
55182
+ *
55183
+ * @export
55184
+ * @interface JsonApiWorkspacePatchAttributes
55185
+ */
55186
+ export declare interface JsonApiWorkspacePatchAttributes {
55187
+ /**
55188
+ *
55189
+ * @type {string}
55190
+ * @memberof JsonApiWorkspacePatchAttributes
55191
+ */
55192
+ name?: string | null;
55193
+ /**
55194
+ * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
55195
+ * @type {string}
55196
+ * @memberof JsonApiWorkspacePatchAttributes
55197
+ * @deprecated
55198
+ */
55199
+ earlyAccess?: string | null;
55200
+ /**
55201
+ * The early access feature identifiers. They are used to enable experimental features.
55202
+ * @type {Array<string>}
55203
+ * @memberof JsonApiWorkspacePatchAttributes
55204
+ */
55205
+ earlyAccessValues?: Array<string> | null;
55206
+ /**
55207
+ *
55208
+ * @type {string}
55209
+ * @memberof JsonApiWorkspacePatchAttributes
55210
+ */
55211
+ description?: string | null;
55212
+ /**
55213
+ * Custom prefix of entity identifiers in workspace
55214
+ * @type {string}
55215
+ * @memberof JsonApiWorkspacePatchAttributes
55216
+ */
55217
+ prefix?: string | null;
55218
+ /**
55219
+ *
55220
+ * @type {number}
55221
+ * @memberof JsonApiWorkspacePatchAttributes
55222
+ */
55223
+ cacheExtraLimit?: number;
55224
+ /**
55225
+ *
55226
+ * @type {JsonApiWorkspacePatchAttributesDataSource}
55227
+ * @memberof JsonApiWorkspacePatchAttributes
55228
+ */
55229
+ dataSource?: JsonApiWorkspacePatchAttributesDataSource;
55230
+ }
55231
+
55232
+ /**
55233
+ * 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.
55234
+ * @export
55235
+ * @interface JsonApiWorkspacePatchAttributesDataSource
55236
+ */
55237
+ export declare interface JsonApiWorkspacePatchAttributesDataSource {
55238
+ /**
55239
+ * The ID of the used data source.
55240
+ * @type {string}
55241
+ * @memberof JsonApiWorkspacePatchAttributesDataSource
55242
+ */
55243
+ id: string;
55244
+ /**
55245
+ * The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
55246
+ * @type {Array<string>}
55247
+ * @memberof JsonApiWorkspacePatchAttributesDataSource
55248
+ */
55249
+ schemaPath?: Array<string>;
54996
55250
  }
54997
55251
 
54998
55252
  /**
@@ -55009,6 +55263,34 @@ export declare interface JsonApiWorkspacePatchDocument {
55009
55263
  data: JsonApiWorkspacePatch;
55010
55264
  }
55011
55265
 
55266
+ /**
55267
+ *
55268
+ * @export
55269
+ * @interface JsonApiWorkspacePatchRelationships
55270
+ */
55271
+ export declare interface JsonApiWorkspacePatchRelationships {
55272
+ /**
55273
+ *
55274
+ * @type {JsonApiWorkspacePatchRelationshipsParent}
55275
+ * @memberof JsonApiWorkspacePatchRelationships
55276
+ */
55277
+ parent?: JsonApiWorkspacePatchRelationshipsParent;
55278
+ }
55279
+
55280
+ /**
55281
+ *
55282
+ * @export
55283
+ * @interface JsonApiWorkspacePatchRelationshipsParent
55284
+ */
55285
+ export declare interface JsonApiWorkspacePatchRelationshipsParent {
55286
+ /**
55287
+ *
55288
+ * @type {JsonApiWorkspaceToOneLinkage}
55289
+ * @memberof JsonApiWorkspacePatchRelationshipsParent
55290
+ */
55291
+ data: JsonApiWorkspaceToOneLinkage | null;
55292
+ }
55293
+
55012
55294
  export declare const JsonApiWorkspacePatchTypeEnum: {
55013
55295
  readonly WORKSPACE: "workspace";
55014
55296
  };
@@ -55035,10 +55317,10 @@ export declare interface JsonApiWorkspaceSettingIn {
55035
55317
  id: string;
55036
55318
  /**
55037
55319
  *
55038
- * @type {JsonApiWorkspaceSettingOutAttributes}
55320
+ * @type {JsonApiOrganizationSettingPatchAttributes}
55039
55321
  * @memberof JsonApiWorkspaceSettingIn
55040
55322
  */
55041
- attributes?: JsonApiWorkspaceSettingOutAttributes;
55323
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
55042
55324
  }
55043
55325
 
55044
55326
  /**
@@ -55087,56 +55369,12 @@ export declare interface JsonApiWorkspaceSettingOut {
55087
55369
  meta?: JsonApiVisualizationObjectOutMeta;
55088
55370
  /**
55089
55371
  *
55090
- * @type {JsonApiWorkspaceSettingOutAttributes}
55372
+ * @type {JsonApiOrganizationSettingPatchAttributes}
55091
55373
  * @memberof JsonApiWorkspaceSettingOut
55092
55374
  */
55093
- attributes?: JsonApiWorkspaceSettingOutAttributes;
55094
- }
55095
-
55096
- /**
55097
- *
55098
- * @export
55099
- * @interface JsonApiWorkspaceSettingOutAttributes
55100
- */
55101
- export declare interface JsonApiWorkspaceSettingOutAttributes {
55102
- /**
55103
- * Free-form JSON content. Maximum supported length is 15000 characters.
55104
- * @type {object}
55105
- * @memberof JsonApiWorkspaceSettingOutAttributes
55106
- */
55107
- content?: object;
55108
- /**
55109
- *
55110
- * @type {string}
55111
- * @memberof JsonApiWorkspaceSettingOutAttributes
55112
- */
55113
- type?: JsonApiWorkspaceSettingOutAttributesTypeEnum;
55375
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
55114
55376
  }
55115
55377
 
55116
- export declare const JsonApiWorkspaceSettingOutAttributesTypeEnum: {
55117
- readonly TIMEZONE: "TIMEZONE";
55118
- readonly ACTIVE_THEME: "ACTIVE_THEME";
55119
- readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
55120
- readonly WHITE_LABELING: "WHITE_LABELING";
55121
- readonly LOCALE: "LOCALE";
55122
- readonly METADATA_LOCALE: "METADATA_LOCALE";
55123
- readonly FORMAT_LOCALE: "FORMAT_LOCALE";
55124
- readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
55125
- readonly WEEK_START: "WEEK_START";
55126
- readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
55127
- readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
55128
- readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
55129
- readonly OPENAI_CONFIG: "OPENAI_CONFIG";
55130
- readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
55131
- readonly ALERT: "ALERT";
55132
- readonly SEPARATORS: "SEPARATORS";
55133
- readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
55134
- readonly JIT_PROVISIONING: "JIT_PROVISIONING";
55135
- readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
55136
- };
55137
-
55138
- export declare type JsonApiWorkspaceSettingOutAttributesTypeEnum = typeof JsonApiWorkspaceSettingOutAttributesTypeEnum[keyof typeof JsonApiWorkspaceSettingOutAttributesTypeEnum];
55139
-
55140
55378
  /**
55141
55379
  *
55142
55380
  * @export
@@ -55177,10 +55415,10 @@ export declare interface JsonApiWorkspaceSettingOutList {
55177
55415
  links?: ListLinks;
55178
55416
  /**
55179
55417
  *
55180
- * @type {JsonApiAnalyticalDashboardOutListMeta}
55418
+ * @type {JsonApiColorPaletteOutListMeta}
55181
55419
  * @memberof JsonApiWorkspaceSettingOutList
55182
55420
  */
55183
- meta?: JsonApiAnalyticalDashboardOutListMeta;
55421
+ meta?: JsonApiColorPaletteOutListMeta;
55184
55422
  }
55185
55423
 
55186
55424
  export declare const JsonApiWorkspaceSettingOutTypeEnum: {
@@ -55215,10 +55453,10 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
55215
55453
  meta?: JsonApiVisualizationObjectOutMeta;
55216
55454
  /**
55217
55455
  *
55218
- * @type {JsonApiWorkspaceSettingOutAttributes}
55456
+ * @type {JsonApiOrganizationSettingPatchAttributes}
55219
55457
  * @memberof JsonApiWorkspaceSettingOutWithLinks
55220
55458
  */
55221
- attributes?: JsonApiWorkspaceSettingOutAttributes;
55459
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
55222
55460
  /**
55223
55461
  *
55224
55462
  * @type {ObjectLinks}
@@ -55253,10 +55491,10 @@ export declare interface JsonApiWorkspaceSettingPatch {
55253
55491
  id: string;
55254
55492
  /**
55255
55493
  *
55256
- * @type {JsonApiWorkspaceSettingOutAttributes}
55494
+ * @type {JsonApiOrganizationSettingPatchAttributes}
55257
55495
  * @memberof JsonApiWorkspaceSettingPatch
55258
55496
  */
55259
- attributes?: JsonApiWorkspaceSettingOutAttributes;
55497
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
55260
55498
  }
55261
55499
 
55262
55500
  /**
@@ -55299,10 +55537,10 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
55299
55537
  id?: string;
55300
55538
  /**
55301
55539
  *
55302
- * @type {JsonApiWorkspaceSettingOutAttributes}
55540
+ * @type {JsonApiOrganizationSettingPatchAttributes}
55303
55541
  * @memberof JsonApiWorkspaceSettingPostOptionalId
55304
55542
  */
55305
- attributes?: JsonApiWorkspaceSettingOutAttributes;
55543
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
55306
55544
  }
55307
55545
 
55308
55546
  /**
@@ -56363,6 +56601,14 @@ export declare class LayoutApi extends MetadataBaseApi implements LayoutApiInter
56363
56601
  * @memberof LayoutApi
56364
56602
  */
56365
56603
  getDataSourcesLayout(options?: AxiosRequestConfig): Promise<AxiosResponse<DeclarativeDataSources, any>>;
56604
+ /**
56605
+ * Gets complete layout of export templates.
56606
+ * @summary Get all export templates layout
56607
+ * @param {*} [options] Override http request option.
56608
+ * @throws {RequiredError}
56609
+ * @memberof LayoutApi
56610
+ */
56611
+ getExportTemplatesLayout(options?: AxiosRequestConfig): Promise<AxiosResponse<DeclarativeExportTemplates, any>>;
56366
56612
  /**
56367
56613
  * Retrieve filter views for the specific workspace
56368
56614
  * @summary Get filter views
@@ -56572,6 +56818,15 @@ export declare class LayoutApi extends MetadataBaseApi implements LayoutApiInter
56572
56818
  * @memberof LayoutApi
56573
56819
  */
56574
56820
  setDataSourcePermissions(requestParameters: LayoutApiSetDataSourcePermissionsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<void, any>>;
56821
+ /**
56822
+ * Sets export templates in organization.
56823
+ * @summary Set all export templates
56824
+ * @param {LayoutApiSetExportTemplatesRequest} requestParameters Request parameters.
56825
+ * @param {*} [options] Override http request option.
56826
+ * @throws {RequiredError}
56827
+ * @memberof LayoutApi
56828
+ */
56829
+ setExportTemplates(requestParameters: LayoutApiSetExportTemplatesRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<void, any>>;
56575
56830
  /**
56576
56831
  * Set filter views for the specific workspace.
56577
56832
  * @summary Set filter views
@@ -56720,6 +56975,13 @@ export declare const LayoutApiAxiosParamCreator: (configuration?: MetadataConfig
56720
56975
  * @throws {RequiredError}
56721
56976
  */
56722
56977
  getDataSourcesLayout: (options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
56978
+ /**
56979
+ * Gets complete layout of export templates.
56980
+ * @summary Get all export templates layout
56981
+ * @param {*} [options] Override http request option.
56982
+ * @throws {RequiredError}
56983
+ */
56984
+ getExportTemplatesLayout: (options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
56723
56985
  /**
56724
56986
  * Retrieve filter views for the specific workspace
56725
56987
  * @summary Get filter views
@@ -56912,6 +57174,14 @@ export declare const LayoutApiAxiosParamCreator: (configuration?: MetadataConfig
56912
57174
  * @throws {RequiredError}
56913
57175
  */
56914
57176
  setDataSourcePermissions: (dataSourceId: string, declarativeDataSourcePermissions: DeclarativeDataSourcePermissions, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
57177
+ /**
57178
+ * Sets export templates in organization.
57179
+ * @summary Set all export templates
57180
+ * @param {DeclarativeExportTemplates} declarativeExportTemplates
57181
+ * @param {*} [options] Override http request option.
57182
+ * @throws {RequiredError}
57183
+ */
57184
+ setExportTemplates: (declarativeExportTemplates: DeclarativeExportTemplates, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
56915
57185
  /**
56916
57186
  * Set filter views for the specific workspace.
56917
57187
  * @summary Set filter views
@@ -57052,6 +57322,13 @@ export declare const LayoutApiFactory: (configuration?: MetadataConfiguration, b
57052
57322
  * @throws {RequiredError}
57053
57323
  */
57054
57324
  getDataSourcesLayout(options?: AxiosRequestConfig): AxiosPromise<DeclarativeDataSources>;
57325
+ /**
57326
+ * Gets complete layout of export templates.
57327
+ * @summary Get all export templates layout
57328
+ * @param {*} [options] Override http request option.
57329
+ * @throws {RequiredError}
57330
+ */
57331
+ getExportTemplatesLayout(options?: AxiosRequestConfig): AxiosPromise<DeclarativeExportTemplates>;
57055
57332
  /**
57056
57333
  * Retrieve filter views for the specific workspace
57057
57334
  * @summary Get filter views
@@ -57237,6 +57514,14 @@ export declare const LayoutApiFactory: (configuration?: MetadataConfiguration, b
57237
57514
  * @throws {RequiredError}
57238
57515
  */
57239
57516
  setDataSourcePermissions(requestParameters: LayoutApiSetDataSourcePermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
57517
+ /**
57518
+ * Sets export templates in organization.
57519
+ * @summary Set all export templates
57520
+ * @param {LayoutApiSetExportTemplatesRequest} requestParameters Request parameters.
57521
+ * @param {*} [options] Override http request option.
57522
+ * @throws {RequiredError}
57523
+ */
57524
+ setExportTemplates(requestParameters: LayoutApiSetExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
57240
57525
  /**
57241
57526
  * Set filter views for the specific workspace.
57242
57527
  * @summary Set filter views
@@ -57373,6 +57658,13 @@ export declare const LayoutApiFp: (configuration?: MetadataConfiguration) => {
57373
57658
  * @throws {RequiredError}
57374
57659
  */
57375
57660
  getDataSourcesLayout(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeclarativeDataSources>>;
57661
+ /**
57662
+ * Gets complete layout of export templates.
57663
+ * @summary Get all export templates layout
57664
+ * @param {*} [options] Override http request option.
57665
+ * @throws {RequiredError}
57666
+ */
57667
+ getExportTemplatesLayout(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeclarativeExportTemplates>>;
57376
57668
  /**
57377
57669
  * Retrieve filter views for the specific workspace
57378
57670
  * @summary Get filter views
@@ -57565,6 +57857,14 @@ export declare const LayoutApiFp: (configuration?: MetadataConfiguration) => {
57565
57857
  * @throws {RequiredError}
57566
57858
  */
57567
57859
  setDataSourcePermissions(dataSourceId: string, declarativeDataSourcePermissions: DeclarativeDataSourcePermissions, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
57860
+ /**
57861
+ * Sets export templates in organization.
57862
+ * @summary Set all export templates
57863
+ * @param {DeclarativeExportTemplates} declarativeExportTemplates
57864
+ * @param {*} [options] Override http request option.
57865
+ * @throws {RequiredError}
57866
+ */
57867
+ setExportTemplates(declarativeExportTemplates: DeclarativeExportTemplates, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
57568
57868
  /**
57569
57869
  * Set filter views for the specific workspace.
57570
57870
  * @summary Set filter views
@@ -57908,6 +58208,14 @@ export declare interface LayoutApiInterface {
57908
58208
  * @memberof LayoutApiInterface
57909
58209
  */
57910
58210
  getDataSourcesLayout(options?: AxiosRequestConfig): AxiosPromise<DeclarativeDataSources>;
58211
+ /**
58212
+ * Gets complete layout of export templates.
58213
+ * @summary Get all export templates layout
58214
+ * @param {*} [options] Override http request option.
58215
+ * @throws {RequiredError}
58216
+ * @memberof LayoutApiInterface
58217
+ */
58218
+ getExportTemplatesLayout(options?: AxiosRequestConfig): AxiosPromise<DeclarativeExportTemplates>;
57911
58219
  /**
57912
58220
  * Retrieve filter views for the specific workspace
57913
58221
  * @summary Get filter views
@@ -58117,6 +58425,15 @@ export declare interface LayoutApiInterface {
58117
58425
  * @memberof LayoutApiInterface
58118
58426
  */
58119
58427
  setDataSourcePermissions(requestParameters: LayoutApiSetDataSourcePermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
58428
+ /**
58429
+ * Sets export templates in organization.
58430
+ * @summary Set all export templates
58431
+ * @param {LayoutApiSetExportTemplatesRequest} requestParameters Request parameters.
58432
+ * @param {*} [options] Override http request option.
58433
+ * @throws {RequiredError}
58434
+ * @memberof LayoutApiInterface
58435
+ */
58436
+ setExportTemplates(requestParameters: LayoutApiSetExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
58120
58437
  /**
58121
58438
  * Set filter views for the specific workspace.
58122
58439
  * @summary Set filter views
@@ -58363,6 +58680,20 @@ export declare interface LayoutApiSetDataSourcePermissionsRequest {
58363
58680
  readonly declarativeDataSourcePermissions: DeclarativeDataSourcePermissions;
58364
58681
  }
58365
58682
 
58683
+ /**
58684
+ * Request parameters for setExportTemplates operation in LayoutApi.
58685
+ * @export
58686
+ * @interface LayoutApiSetExportTemplatesRequest
58687
+ */
58688
+ export declare interface LayoutApiSetExportTemplatesRequest {
58689
+ /**
58690
+ *
58691
+ * @type {DeclarativeExportTemplates}
58692
+ * @memberof LayoutApiSetExportTemplates
58693
+ */
58694
+ readonly declarativeExportTemplates: DeclarativeExportTemplates;
58695
+ }
58696
+
58366
58697
  /**
58367
58698
  * Request parameters for setFilterViews operation in LayoutApi.
58368
58699
  * @export
@@ -60875,6 +61206,14 @@ export declare class NotificationChannelsApi extends MetadataBaseApi implements
60875
61206
  * @memberof NotificationChannelsApi
60876
61207
  */
60877
61208
  getEntityNotificationChannels(requestParameters: NotificationChannelsApiGetEntityNotificationChannelsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<JsonApiNotificationChannelOutDocument, any>>;
61209
+ /**
61210
+ * Gets complete layout of export templates.
61211
+ * @summary Get all export templates layout
61212
+ * @param {*} [options] Override http request option.
61213
+ * @throws {RequiredError}
61214
+ * @memberof NotificationChannelsApi
61215
+ */
61216
+ getExportTemplatesLayout(options?: AxiosRequestConfig): Promise<AxiosResponse<DeclarativeExportTemplates, any>>;
60878
61217
  /**
60879
61218
  * Gets complete layout of notification channels.
60880
61219
  * @summary Get all notification channels layout
@@ -60892,6 +61231,15 @@ export declare class NotificationChannelsApi extends MetadataBaseApi implements
60892
61231
  * @memberof NotificationChannelsApi
60893
61232
  */
60894
61233
  patchEntityNotificationChannels(requestParameters: NotificationChannelsApiPatchEntityNotificationChannelsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<JsonApiNotificationChannelOutDocument, any>>;
61234
+ /**
61235
+ * Sets export templates in organization.
61236
+ * @summary Set all export templates
61237
+ * @param {NotificationChannelsApiSetExportTemplatesRequest} requestParameters Request parameters.
61238
+ * @param {*} [options] Override http request option.
61239
+ * @throws {RequiredError}
61240
+ * @memberof NotificationChannelsApi
61241
+ */
61242
+ setExportTemplates(requestParameters: NotificationChannelsApiSetExportTemplatesRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<void, any>>;
60895
61243
  /**
60896
61244
  * Sets notification channels in organization.
60897
61245
  * @summary Set all notification channels
@@ -60955,6 +61303,13 @@ export declare const NotificationChannelsApiAxiosParamCreator: (configuration?:
60955
61303
  * @throws {RequiredError}
60956
61304
  */
60957
61305
  getEntityNotificationChannels: (id: string, filter?: string, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
61306
+ /**
61307
+ * Gets complete layout of export templates.
61308
+ * @summary Get all export templates layout
61309
+ * @param {*} [options] Override http request option.
61310
+ * @throws {RequiredError}
61311
+ */
61312
+ getExportTemplatesLayout: (options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
60958
61313
  /**
60959
61314
  * Gets complete layout of notification channels.
60960
61315
  * @summary Get all notification channels layout
@@ -60972,6 +61327,14 @@ export declare const NotificationChannelsApiAxiosParamCreator: (configuration?:
60972
61327
  * @throws {RequiredError}
60973
61328
  */
60974
61329
  patchEntityNotificationChannels: (id: string, jsonApiNotificationChannelPatchDocument: JsonApiNotificationChannelPatchDocument, filter?: string, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
61330
+ /**
61331
+ * Sets export templates in organization.
61332
+ * @summary Set all export templates
61333
+ * @param {DeclarativeExportTemplates} declarativeExportTemplates
61334
+ * @param {*} [options] Override http request option.
61335
+ * @throws {RequiredError}
61336
+ */
61337
+ setExportTemplates: (declarativeExportTemplates: DeclarativeExportTemplates, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
60975
61338
  /**
60976
61339
  * Sets notification channels in organization.
60977
61340
  * @summary Set all notification channels
@@ -61063,6 +61426,13 @@ export declare const NotificationChannelsApiFactory: (configuration?: MetadataCo
61063
61426
  * @throws {RequiredError}
61064
61427
  */
61065
61428
  getEntityNotificationChannels(requestParameters: NotificationChannelsApiGetEntityNotificationChannelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelOutDocument>;
61429
+ /**
61430
+ * Gets complete layout of export templates.
61431
+ * @summary Get all export templates layout
61432
+ * @param {*} [options] Override http request option.
61433
+ * @throws {RequiredError}
61434
+ */
61435
+ getExportTemplatesLayout(options?: AxiosRequestConfig): AxiosPromise<DeclarativeExportTemplates>;
61066
61436
  /**
61067
61437
  * Gets complete layout of notification channels.
61068
61438
  * @summary Get all notification channels layout
@@ -61078,6 +61448,14 @@ export declare const NotificationChannelsApiFactory: (configuration?: MetadataCo
61078
61448
  * @throws {RequiredError}
61079
61449
  */
61080
61450
  patchEntityNotificationChannels(requestParameters: NotificationChannelsApiPatchEntityNotificationChannelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelOutDocument>;
61451
+ /**
61452
+ * Sets export templates in organization.
61453
+ * @summary Set all export templates
61454
+ * @param {NotificationChannelsApiSetExportTemplatesRequest} requestParameters Request parameters.
61455
+ * @param {*} [options] Override http request option.
61456
+ * @throws {RequiredError}
61457
+ */
61458
+ setExportTemplates(requestParameters: NotificationChannelsApiSetExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
61081
61459
  /**
61082
61460
  * Sets notification channels in organization.
61083
61461
  * @summary Set all notification channels
@@ -61139,6 +61517,13 @@ export declare const NotificationChannelsApiFp: (configuration?: MetadataConfigu
61139
61517
  * @throws {RequiredError}
61140
61518
  */
61141
61519
  getEntityNotificationChannels(id: string, filter?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiNotificationChannelOutDocument>>;
61520
+ /**
61521
+ * Gets complete layout of export templates.
61522
+ * @summary Get all export templates layout
61523
+ * @param {*} [options] Override http request option.
61524
+ * @throws {RequiredError}
61525
+ */
61526
+ getExportTemplatesLayout(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeclarativeExportTemplates>>;
61142
61527
  /**
61143
61528
  * Gets complete layout of notification channels.
61144
61529
  * @summary Get all notification channels layout
@@ -61156,6 +61541,14 @@ export declare const NotificationChannelsApiFp: (configuration?: MetadataConfigu
61156
61541
  * @throws {RequiredError}
61157
61542
  */
61158
61543
  patchEntityNotificationChannels(id: string, jsonApiNotificationChannelPatchDocument: JsonApiNotificationChannelPatchDocument, filter?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiNotificationChannelOutDocument>>;
61544
+ /**
61545
+ * Sets export templates in organization.
61546
+ * @summary Set all export templates
61547
+ * @param {DeclarativeExportTemplates} declarativeExportTemplates
61548
+ * @param {*} [options] Override http request option.
61549
+ * @throws {RequiredError}
61550
+ */
61551
+ setExportTemplates(declarativeExportTemplates: DeclarativeExportTemplates, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
61159
61552
  /**
61160
61553
  * Sets notification channels in organization.
61161
61554
  * @summary Set all notification channels
@@ -61276,6 +61669,14 @@ export declare interface NotificationChannelsApiInterface {
61276
61669
  * @memberof NotificationChannelsApiInterface
61277
61670
  */
61278
61671
  getEntityNotificationChannels(requestParameters: NotificationChannelsApiGetEntityNotificationChannelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelOutDocument>;
61672
+ /**
61673
+ * Gets complete layout of export templates.
61674
+ * @summary Get all export templates layout
61675
+ * @param {*} [options] Override http request option.
61676
+ * @throws {RequiredError}
61677
+ * @memberof NotificationChannelsApiInterface
61678
+ */
61679
+ getExportTemplatesLayout(options?: AxiosRequestConfig): AxiosPromise<DeclarativeExportTemplates>;
61279
61680
  /**
61280
61681
  * Gets complete layout of notification channels.
61281
61682
  * @summary Get all notification channels layout
@@ -61293,6 +61694,15 @@ export declare interface NotificationChannelsApiInterface {
61293
61694
  * @memberof NotificationChannelsApiInterface
61294
61695
  */
61295
61696
  patchEntityNotificationChannels(requestParameters: NotificationChannelsApiPatchEntityNotificationChannelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelOutDocument>;
61697
+ /**
61698
+ * Sets export templates in organization.
61699
+ * @summary Set all export templates
61700
+ * @param {NotificationChannelsApiSetExportTemplatesRequest} requestParameters Request parameters.
61701
+ * @param {*} [options] Override http request option.
61702
+ * @throws {RequiredError}
61703
+ * @memberof NotificationChannelsApiInterface
61704
+ */
61705
+ setExportTemplates(requestParameters: NotificationChannelsApiSetExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
61296
61706
  /**
61297
61707
  * Sets notification channels in organization.
61298
61708
  * @summary Set all notification channels
@@ -61339,6 +61749,20 @@ export declare interface NotificationChannelsApiPatchEntityNotificationChannelsR
61339
61749
  readonly filter?: string;
61340
61750
  }
61341
61751
 
61752
+ /**
61753
+ * Request parameters for setExportTemplates operation in NotificationChannelsApi.
61754
+ * @export
61755
+ * @interface NotificationChannelsApiSetExportTemplatesRequest
61756
+ */
61757
+ export declare interface NotificationChannelsApiSetExportTemplatesRequest {
61758
+ /**
61759
+ *
61760
+ * @type {DeclarativeExportTemplates}
61761
+ * @memberof NotificationChannelsApiSetExportTemplates
61762
+ */
61763
+ readonly declarativeExportTemplates: DeclarativeExportTemplates;
61764
+ }
61765
+
61342
61766
  /**
61343
61767
  * Request parameters for setNotificationChannels operation in NotificationChannelsApi.
61344
61768
  * @export
@@ -71750,6 +72174,7 @@ export declare const ResolvedSettingTypeEnum: {
71750
72174
  readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
71751
72175
  readonly JIT_PROVISIONING: "JIT_PROVISIONING";
71752
72176
  readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
72177
+ readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
71753
72178
  };
71754
72179
 
71755
72180
  export declare type ResolvedSettingTypeEnum = typeof ResolvedSettingTypeEnum[keyof typeof ResolvedSettingTypeEnum];
@@ -72071,13 +72496,13 @@ export declare interface RulePermission {
72071
72496
  */
72072
72497
  export declare interface RunningSection {
72073
72498
  /**
72074
- *
72499
+ * Either {{logo}} variable or custom text with combination of other variables.
72075
72500
  * @type {string}
72076
72501
  * @memberof RunningSection
72077
72502
  */
72078
72503
  left?: string | null;
72079
72504
  /**
72080
- *
72505
+ * Either {{logo}} variable or custom text with combination of other variables.
72081
72506
  * @type {string}
72082
72507
  * @memberof RunningSection
72083
72508
  */
@@ -79288,6 +79713,33 @@ export declare const WebhookTypeEnum: {
79288
79713
 
79289
79714
  export declare type WebhookTypeEnum = typeof WebhookTypeEnum[keyof typeof WebhookTypeEnum];
79290
79715
 
79716
+ /**
79717
+ * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
79718
+ * @export
79719
+ * @interface WidgetSlidesTemplate
79720
+ */
79721
+ export declare interface WidgetSlidesTemplate {
79722
+ /**
79723
+ * Export types this template applies to.
79724
+ * @type {Array<string>}
79725
+ * @memberof WidgetSlidesTemplate
79726
+ */
79727
+ appliedOn: Array<WidgetSlidesTemplateAppliedOnEnum>;
79728
+ /**
79729
+ *
79730
+ * @type {ContentSlideTemplate}
79731
+ * @memberof WidgetSlidesTemplate
79732
+ */
79733
+ contentSlide?: ContentSlideTemplate | null;
79734
+ }
79735
+
79736
+ export declare const WidgetSlidesTemplateAppliedOnEnum: {
79737
+ readonly PDF: "PDF";
79738
+ readonly PPTX: "PPTX";
79739
+ };
79740
+
79741
+ export declare type WidgetSlidesTemplateAppliedOnEnum = typeof WidgetSlidesTemplateAppliedOnEnum[keyof typeof WidgetSlidesTemplateAppliedOnEnum];
79742
+
79291
79743
  /**
79292
79744
  * Cache settings for the workspace.
79293
79745
  * @export