@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.
@@ -372,6 +372,7 @@ export declare const ApiEntitlementNameEnum: {
372
372
  readonly UNLIMITED_DAILY_ALERT_ACTIONS: "UnlimitedDailyAlertActions";
373
373
  readonly SCHEDULED_ACTION_MINIMUM_RECURRENCE_MINUTES: "ScheduledActionMinimumRecurrenceMinutes";
374
374
  readonly FEDERATED_IDENTITY_MANAGEMENT: "FederatedIdentityManagement";
375
+ readonly AUDIT_LOGGING: "AuditLogging";
375
376
  };
376
377
  export type ApiEntitlementNameEnum = typeof ApiEntitlementNameEnum[keyof typeof ApiEntitlementNameEnum];
377
378
  /**
@@ -614,7 +615,7 @@ export interface AutomationSchedule {
614
615
  * @type {string}
615
616
  * @memberof AutomationSchedule
616
617
  */
617
- timezone?: string;
618
+ timezone: string;
618
619
  /**
619
620
  * Timestamp of the first scheduled action. If not provided default to the next scheduled time.
620
621
  * @type {string}
@@ -985,6 +986,48 @@ export declare const DashboardPermissionsAssignmentPermissionsEnum: {
985
986
  readonly VIEW: "VIEW";
986
987
  };
987
988
  export type DashboardPermissionsAssignmentPermissionsEnum = typeof DashboardPermissionsAssignmentPermissionsEnum[keyof typeof DashboardPermissionsAssignmentPermissionsEnum];
989
+ /**
990
+ * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
991
+ * @export
992
+ * @interface DashboardSlidesTemplate
993
+ */
994
+ export interface DashboardSlidesTemplate {
995
+ /**
996
+ * Export types this template applies to.
997
+ * @type {Array<string>}
998
+ * @memberof DashboardSlidesTemplate
999
+ */
1000
+ appliedOn: Array<DashboardSlidesTemplateAppliedOnEnum>;
1001
+ /**
1002
+ *
1003
+ * @type {CoverSlideTemplate}
1004
+ * @memberof DashboardSlidesTemplate
1005
+ */
1006
+ coverSlide?: CoverSlideTemplate | null;
1007
+ /**
1008
+ *
1009
+ * @type {IntroSlideTemplate}
1010
+ * @memberof DashboardSlidesTemplate
1011
+ */
1012
+ introSlide?: IntroSlideTemplate | null;
1013
+ /**
1014
+ *
1015
+ * @type {SectionSlideTemplate}
1016
+ * @memberof DashboardSlidesTemplate
1017
+ */
1018
+ sectionSlide?: SectionSlideTemplate | null;
1019
+ /**
1020
+ *
1021
+ * @type {ContentSlideTemplate}
1022
+ * @memberof DashboardSlidesTemplate
1023
+ */
1024
+ contentSlide?: ContentSlideTemplate | null;
1025
+ }
1026
+ export declare const DashboardSlidesTemplateAppliedOnEnum: {
1027
+ readonly PDF: "PDF";
1028
+ readonly PPTX: "PPTX";
1029
+ };
1030
+ export type DashboardSlidesTemplateAppliedOnEnum = typeof DashboardSlidesTemplateAppliedOnEnum[keyof typeof DashboardSlidesTemplateAppliedOnEnum];
988
1031
  /**
989
1032
  * Data source permission assignments
990
1033
  * @export
@@ -2292,6 +2335,50 @@ export declare const DeclarativeExportDefinitionIdentifierTypeEnum: {
2292
2335
  readonly EXPORT_DEFINITION: "exportDefinition";
2293
2336
  };
2294
2337
  export type DeclarativeExportDefinitionIdentifierTypeEnum = typeof DeclarativeExportDefinitionIdentifierTypeEnum[keyof typeof DeclarativeExportDefinitionIdentifierTypeEnum];
2338
+ /**
2339
+ * A declarative form of a particular export template.
2340
+ * @export
2341
+ * @interface DeclarativeExportTemplate
2342
+ */
2343
+ export interface DeclarativeExportTemplate {
2344
+ /**
2345
+ * Identifier of an export template
2346
+ * @type {string}
2347
+ * @memberof DeclarativeExportTemplate
2348
+ */
2349
+ id: string;
2350
+ /**
2351
+ * Name of an export template.
2352
+ * @type {string}
2353
+ * @memberof DeclarativeExportTemplate
2354
+ */
2355
+ name: string;
2356
+ /**
2357
+ *
2358
+ * @type {DashboardSlidesTemplate}
2359
+ * @memberof DeclarativeExportTemplate
2360
+ */
2361
+ dashboardSlidesTemplate?: DashboardSlidesTemplate | null;
2362
+ /**
2363
+ *
2364
+ * @type {WidgetSlidesTemplate}
2365
+ * @memberof DeclarativeExportTemplate
2366
+ */
2367
+ widgetSlidesTemplate?: WidgetSlidesTemplate | null;
2368
+ }
2369
+ /**
2370
+ * Export templates.
2371
+ * @export
2372
+ * @interface DeclarativeExportTemplates
2373
+ */
2374
+ export interface DeclarativeExportTemplates {
2375
+ /**
2376
+ *
2377
+ * @type {Array<DeclarativeExportTemplate>}
2378
+ * @memberof DeclarativeExportTemplates
2379
+ */
2380
+ exportTemplates: Array<DeclarativeExportTemplate>;
2381
+ }
2295
2382
  /**
2296
2383
  * A dataset fact.
2297
2384
  * @export
@@ -2861,6 +2948,12 @@ export interface DeclarativeOrganization {
2861
2948
  * @memberof DeclarativeOrganization
2862
2949
  */
2863
2950
  notificationChannels?: Array<DeclarativeNotificationChannel>;
2951
+ /**
2952
+ *
2953
+ * @type {Array<DeclarativeExportTemplate>}
2954
+ * @memberof DeclarativeOrganization
2955
+ */
2956
+ exportTemplates?: Array<DeclarativeExportTemplate>;
2864
2957
  }
2865
2958
  /**
2866
2959
  * Information available about an organization.
@@ -2949,6 +3042,12 @@ export interface DeclarativeOrganizationInfo {
2949
3042
  oauthCustomAuthAttributes?: {
2950
3043
  [key: string]: string;
2951
3044
  };
3045
+ /**
3046
+ * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
3047
+ * @type {Array<string>}
3048
+ * @memberof DeclarativeOrganizationInfo
3049
+ */
3050
+ oauthCustomScopes?: Array<string> | null;
2952
3051
  /**
2953
3052
  * A list of organization settings.
2954
3053
  * @type {Array<DeclarativeSetting>}
@@ -3196,6 +3295,7 @@ export declare const DeclarativeSettingTypeEnum: {
3196
3295
  readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
3197
3296
  readonly JIT_PROVISIONING: "JIT_PROVISIONING";
3198
3297
  readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
3298
+ readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
3199
3299
  };
3200
3300
  export type DeclarativeSettingTypeEnum = typeof DeclarativeSettingTypeEnum[keyof typeof DeclarativeSettingTypeEnum];
3201
3301
  /**
@@ -4199,6 +4299,7 @@ export declare const EntitlementsRequestEntitlementsNameEnum: {
4199
4299
  readonly UNLIMITED_DAILY_ALERT_ACTIONS: "UnlimitedDailyAlertActions";
4200
4300
  readonly SCHEDULED_ACTION_MINIMUM_RECURRENCE_MINUTES: "ScheduledActionMinimumRecurrenceMinutes";
4201
4301
  readonly FEDERATED_IDENTITY_MANAGEMENT: "FederatedIdentityManagement";
4302
+ readonly AUDIT_LOGGING: "AuditLogging";
4202
4303
  };
4203
4304
  export type EntitlementsRequestEntitlementsNameEnum = typeof EntitlementsRequestEntitlementsNameEnum[keyof typeof EntitlementsRequestEntitlementsNameEnum];
4204
4305
  /**
@@ -4622,7 +4723,7 @@ export interface IntroSlideTemplate {
4622
4723
  * @type {string}
4623
4724
  * @memberof IntroSlideTemplate
4624
4725
  */
4625
- titleField?: string;
4726
+ titleField?: string | null;
4626
4727
  /**
4627
4728
  *
4628
4729
  * @type {string}
@@ -4792,10 +4893,10 @@ export interface JsonApiAnalyticalDashboardOutList {
4792
4893
  links?: ListLinks;
4793
4894
  /**
4794
4895
  *
4795
- * @type {JsonApiAnalyticalDashboardOutListMeta}
4896
+ * @type {JsonApiColorPaletteOutListMeta}
4796
4897
  * @memberof JsonApiAnalyticalDashboardOutList
4797
4898
  */
4798
- meta?: JsonApiAnalyticalDashboardOutListMeta;
4899
+ meta?: JsonApiColorPaletteOutListMeta;
4799
4900
  /**
4800
4901
  * Included resources
4801
4902
  * @type {Array<JsonApiAnalyticalDashboardOutIncludes>}
@@ -4803,19 +4904,6 @@ export interface JsonApiAnalyticalDashboardOutList {
4803
4904
  */
4804
4905
  included?: Array<JsonApiAnalyticalDashboardOutIncludes>;
4805
4906
  }
4806
- /**
4807
- *
4808
- * @export
4809
- * @interface JsonApiAnalyticalDashboardOutListMeta
4810
- */
4811
- export interface JsonApiAnalyticalDashboardOutListMeta {
4812
- /**
4813
- *
4814
- * @type {PageMetadata}
4815
- * @memberof JsonApiAnalyticalDashboardOutListMeta
4816
- */
4817
- page?: PageMetadata;
4818
- }
4819
4907
  /**
4820
4908
  *
4821
4909
  * @export
@@ -5264,10 +5352,10 @@ export interface JsonApiApiTokenOutList {
5264
5352
  links?: ListLinks;
5265
5353
  /**
5266
5354
  *
5267
- * @type {JsonApiAnalyticalDashboardOutListMeta}
5355
+ * @type {JsonApiColorPaletteOutListMeta}
5268
5356
  * @memberof JsonApiApiTokenOutList
5269
5357
  */
5270
- meta?: JsonApiAnalyticalDashboardOutListMeta;
5358
+ meta?: JsonApiColorPaletteOutListMeta;
5271
5359
  }
5272
5360
  /**
5273
5361
  *
@@ -5509,10 +5597,10 @@ export interface JsonApiAttributeHierarchyOutList {
5509
5597
  links?: ListLinks;
5510
5598
  /**
5511
5599
  *
5512
- * @type {JsonApiAnalyticalDashboardOutListMeta}
5600
+ * @type {JsonApiColorPaletteOutListMeta}
5513
5601
  * @memberof JsonApiAttributeHierarchyOutList
5514
5602
  */
5515
- meta?: JsonApiAnalyticalDashboardOutListMeta;
5603
+ meta?: JsonApiColorPaletteOutListMeta;
5516
5604
  /**
5517
5605
  * Included resources
5518
5606
  * @type {Array<JsonApiAttributeHierarchyOutIncludes>}
@@ -5879,10 +5967,10 @@ export interface JsonApiAttributeOutList {
5879
5967
  links?: ListLinks;
5880
5968
  /**
5881
5969
  *
5882
- * @type {JsonApiAnalyticalDashboardOutListMeta}
5970
+ * @type {JsonApiColorPaletteOutListMeta}
5883
5971
  * @memberof JsonApiAttributeOutList
5884
5972
  */
5885
- meta?: JsonApiAnalyticalDashboardOutListMeta;
5973
+ meta?: JsonApiColorPaletteOutListMeta;
5886
5974
  /**
5887
5975
  * Included resources
5888
5976
  * @type {Array<JsonApiAttributeOutIncludes>}
@@ -6306,7 +6394,7 @@ export interface JsonApiAutomationOutAttributesSchedule {
6306
6394
  * @type {string}
6307
6395
  * @memberof JsonApiAutomationOutAttributesSchedule
6308
6396
  */
6309
- timezone?: string;
6397
+ timezone: string;
6310
6398
  /**
6311
6399
  * Timestamp of the first scheduled action. If not provided default to the next scheduled time.
6312
6400
  * @type {string}
@@ -6390,10 +6478,10 @@ export interface JsonApiAutomationOutList {
6390
6478
  links?: ListLinks;
6391
6479
  /**
6392
6480
  *
6393
- * @type {JsonApiAnalyticalDashboardOutListMeta}
6481
+ * @type {JsonApiColorPaletteOutListMeta}
6394
6482
  * @memberof JsonApiAutomationOutList
6395
6483
  */
6396
- meta?: JsonApiAnalyticalDashboardOutListMeta;
6484
+ meta?: JsonApiColorPaletteOutListMeta;
6397
6485
  /**
6398
6486
  * Included resources
6399
6487
  * @type {Array<JsonApiAutomationOutIncludes>}
@@ -6828,10 +6916,23 @@ export interface JsonApiColorPaletteOutList {
6828
6916
  links?: ListLinks;
6829
6917
  /**
6830
6918
  *
6831
- * @type {JsonApiAnalyticalDashboardOutListMeta}
6919
+ * @type {JsonApiColorPaletteOutListMeta}
6832
6920
  * @memberof JsonApiColorPaletteOutList
6833
6921
  */
6834
- meta?: JsonApiAnalyticalDashboardOutListMeta;
6922
+ meta?: JsonApiColorPaletteOutListMeta;
6923
+ }
6924
+ /**
6925
+ *
6926
+ * @export
6927
+ * @interface JsonApiColorPaletteOutListMeta
6928
+ */
6929
+ export interface JsonApiColorPaletteOutListMeta {
6930
+ /**
6931
+ *
6932
+ * @type {PageMetadata}
6933
+ * @memberof JsonApiColorPaletteOutListMeta
6934
+ */
6935
+ page?: PageMetadata;
6835
6936
  }
6836
6937
  /**
6837
6938
  *
@@ -6949,34 +7050,15 @@ export interface JsonApiCookieSecurityConfigurationIn {
6949
7050
  id: string;
6950
7051
  /**
6951
7052
  *
6952
- * @type {JsonApiCookieSecurityConfigurationInAttributes}
7053
+ * @type {JsonApiCookieSecurityConfigurationOutAttributes}
6953
7054
  * @memberof JsonApiCookieSecurityConfigurationIn
6954
7055
  */
6955
- attributes?: JsonApiCookieSecurityConfigurationInAttributes;
7056
+ attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
6956
7057
  }
6957
7058
  export declare const JsonApiCookieSecurityConfigurationInTypeEnum: {
6958
7059
  readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
6959
7060
  };
6960
7061
  export type JsonApiCookieSecurityConfigurationInTypeEnum = typeof JsonApiCookieSecurityConfigurationInTypeEnum[keyof typeof JsonApiCookieSecurityConfigurationInTypeEnum];
6961
- /**
6962
- *
6963
- * @export
6964
- * @interface JsonApiCookieSecurityConfigurationInAttributes
6965
- */
6966
- export interface JsonApiCookieSecurityConfigurationInAttributes {
6967
- /**
6968
- *
6969
- * @type {string}
6970
- * @memberof JsonApiCookieSecurityConfigurationInAttributes
6971
- */
6972
- lastRotation?: string;
6973
- /**
6974
- * Length of interval between automatic rotations expressed in format of ISO 8601 duration
6975
- * @type {string}
6976
- * @memberof JsonApiCookieSecurityConfigurationInAttributes
6977
- */
6978
- rotationInterval?: string;
6979
- }
6980
7062
  /**
6981
7063
  *
6982
7064
  * @export
@@ -7010,15 +7092,34 @@ export interface JsonApiCookieSecurityConfigurationOut {
7010
7092
  id: string;
7011
7093
  /**
7012
7094
  *
7013
- * @type {JsonApiCookieSecurityConfigurationInAttributes}
7095
+ * @type {JsonApiCookieSecurityConfigurationOutAttributes}
7014
7096
  * @memberof JsonApiCookieSecurityConfigurationOut
7015
7097
  */
7016
- attributes?: JsonApiCookieSecurityConfigurationInAttributes;
7098
+ attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
7017
7099
  }
7018
7100
  export declare const JsonApiCookieSecurityConfigurationOutTypeEnum: {
7019
7101
  readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
7020
7102
  };
7021
7103
  export type JsonApiCookieSecurityConfigurationOutTypeEnum = typeof JsonApiCookieSecurityConfigurationOutTypeEnum[keyof typeof JsonApiCookieSecurityConfigurationOutTypeEnum];
7104
+ /**
7105
+ *
7106
+ * @export
7107
+ * @interface JsonApiCookieSecurityConfigurationOutAttributes
7108
+ */
7109
+ export interface JsonApiCookieSecurityConfigurationOutAttributes {
7110
+ /**
7111
+ *
7112
+ * @type {string}
7113
+ * @memberof JsonApiCookieSecurityConfigurationOutAttributes
7114
+ */
7115
+ lastRotation?: string;
7116
+ /**
7117
+ * Length of interval between automatic rotations expressed in format of ISO 8601 duration
7118
+ * @type {string}
7119
+ * @memberof JsonApiCookieSecurityConfigurationOutAttributes
7120
+ */
7121
+ rotationInterval?: string;
7122
+ }
7022
7123
  /**
7023
7124
  *
7024
7125
  * @export
@@ -7058,10 +7159,10 @@ export interface JsonApiCookieSecurityConfigurationPatch {
7058
7159
  id: string;
7059
7160
  /**
7060
7161
  *
7061
- * @type {JsonApiCookieSecurityConfigurationInAttributes}
7162
+ * @type {JsonApiCookieSecurityConfigurationOutAttributes}
7062
7163
  * @memberof JsonApiCookieSecurityConfigurationPatch
7063
7164
  */
7064
- attributes?: JsonApiCookieSecurityConfigurationInAttributes;
7165
+ attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
7065
7166
  }
7066
7167
  export declare const JsonApiCookieSecurityConfigurationPatchTypeEnum: {
7067
7168
  readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
@@ -7203,10 +7304,10 @@ export interface JsonApiCspDirectiveOutList {
7203
7304
  links?: ListLinks;
7204
7305
  /**
7205
7306
  *
7206
- * @type {JsonApiAnalyticalDashboardOutListMeta}
7307
+ * @type {JsonApiColorPaletteOutListMeta}
7207
7308
  * @memberof JsonApiCspDirectiveOutList
7208
7309
  */
7209
- meta?: JsonApiAnalyticalDashboardOutListMeta;
7310
+ meta?: JsonApiColorPaletteOutListMeta;
7210
7311
  }
7211
7312
  /**
7212
7313
  *
@@ -7433,10 +7534,10 @@ export interface JsonApiCustomApplicationSettingOutList {
7433
7534
  links?: ListLinks;
7434
7535
  /**
7435
7536
  *
7436
- * @type {JsonApiAnalyticalDashboardOutListMeta}
7537
+ * @type {JsonApiColorPaletteOutListMeta}
7437
7538
  * @memberof JsonApiCustomApplicationSettingOutList
7438
7539
  */
7439
- meta?: JsonApiAnalyticalDashboardOutListMeta;
7540
+ meta?: JsonApiColorPaletteOutListMeta;
7440
7541
  }
7441
7542
  /**
7442
7543
  *
@@ -7782,10 +7883,10 @@ export interface JsonApiDashboardPluginOutList {
7782
7883
  links?: ListLinks;
7783
7884
  /**
7784
7885
  *
7785
- * @type {JsonApiAnalyticalDashboardOutListMeta}
7886
+ * @type {JsonApiColorPaletteOutListMeta}
7786
7887
  * @memberof JsonApiDashboardPluginOutList
7787
7888
  */
7788
- meta?: JsonApiAnalyticalDashboardOutListMeta;
7889
+ meta?: JsonApiColorPaletteOutListMeta;
7789
7890
  /**
7790
7891
  * Included resources
7791
7892
  * @type {Array<JsonApiUserIdentifierOutWithLinks>}
@@ -8000,10 +8101,10 @@ export interface JsonApiDataSourceIdentifierOut {
8000
8101
  id: string;
8001
8102
  /**
8002
8103
  *
8003
- * @type {JsonApiDataSourceIdentifierOutMeta}
8104
+ * @type {JsonApiDataSourceOutMeta}
8004
8105
  * @memberof JsonApiDataSourceIdentifierOut
8005
8106
  */
8006
- meta?: JsonApiDataSourceIdentifierOutMeta;
8107
+ meta?: JsonApiDataSourceOutMeta;
8007
8108
  /**
8008
8109
  *
8009
8110
  * @type {JsonApiDataSourceIdentifierOutAttributes}
@@ -8105,29 +8206,11 @@ export interface JsonApiDataSourceIdentifierOutList {
8105
8206
  links?: ListLinks;
8106
8207
  /**
8107
8208
  *
8108
- * @type {JsonApiAnalyticalDashboardOutListMeta}
8209
+ * @type {JsonApiColorPaletteOutListMeta}
8109
8210
  * @memberof JsonApiDataSourceIdentifierOutList
8110
8211
  */
8111
- meta?: JsonApiAnalyticalDashboardOutListMeta;
8112
- }
8113
- /**
8114
- *
8115
- * @export
8116
- * @interface JsonApiDataSourceIdentifierOutMeta
8117
- */
8118
- export interface JsonApiDataSourceIdentifierOutMeta {
8119
- /**
8120
- * List of valid permissions for a logged-in user.
8121
- * @type {Array<string>}
8122
- * @memberof JsonApiDataSourceIdentifierOutMeta
8123
- */
8124
- permissions?: Array<JsonApiDataSourceIdentifierOutMetaPermissionsEnum>;
8212
+ meta?: JsonApiColorPaletteOutListMeta;
8125
8213
  }
8126
- export declare const JsonApiDataSourceIdentifierOutMetaPermissionsEnum: {
8127
- readonly MANAGE: "MANAGE";
8128
- readonly USE: "USE";
8129
- };
8130
- export type JsonApiDataSourceIdentifierOutMetaPermissionsEnum = typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum[keyof typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum];
8131
8214
  /**
8132
8215
  *
8133
8216
  * @export
@@ -8148,10 +8231,10 @@ export interface JsonApiDataSourceIdentifierOutWithLinks {
8148
8231
  id: string;
8149
8232
  /**
8150
8233
  *
8151
- * @type {JsonApiDataSourceIdentifierOutMeta}
8234
+ * @type {JsonApiDataSourceOutMeta}
8152
8235
  * @memberof JsonApiDataSourceIdentifierOutWithLinks
8153
8236
  */
8154
- meta?: JsonApiDataSourceIdentifierOutMeta;
8237
+ meta?: JsonApiDataSourceOutMeta;
8155
8238
  /**
8156
8239
  *
8157
8240
  * @type {JsonApiDataSourceIdentifierOutAttributes}
@@ -8272,10 +8355,10 @@ export interface JsonApiDataSourceInAttributes {
8272
8355
  clientSecret?: string | null;
8273
8356
  /**
8274
8357
  * Additional parameters to be used when connecting to the database providing the data for the data source.
8275
- * @type {Array<JsonApiDataSourceOutAttributesParameters>}
8358
+ * @type {Array<JsonApiDataSourcePatchAttributesParameters>}
8276
8359
  * @memberof JsonApiDataSourceInAttributes
8277
8360
  */
8278
- parameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
8361
+ parameters?: Array<JsonApiDataSourcePatchAttributesParameters> | null;
8279
8362
  /**
8280
8363
  * Determines how the results coming from a particular datasource should be cached.
8281
8364
  * @type {string}
@@ -8347,10 +8430,10 @@ export interface JsonApiDataSourceOut {
8347
8430
  id: string;
8348
8431
  /**
8349
8432
  *
8350
- * @type {JsonApiDataSourceIdentifierOutMeta}
8433
+ * @type {JsonApiDataSourceOutMeta}
8351
8434
  * @memberof JsonApiDataSourceOut
8352
8435
  */
8353
- meta?: JsonApiDataSourceIdentifierOutMeta;
8436
+ meta?: JsonApiDataSourceOutMeta;
8354
8437
  /**
8355
8438
  *
8356
8439
  * @type {JsonApiDataSourceOutAttributes}
@@ -8406,16 +8489,16 @@ export interface JsonApiDataSourceOutAttributes {
8406
8489
  clientId?: string | null;
8407
8490
  /**
8408
8491
  * Additional parameters to be used when connecting to the database providing the data for the data source.
8409
- * @type {Array<JsonApiDataSourceOutAttributesParameters>}
8492
+ * @type {Array<JsonApiDataSourcePatchAttributesParameters>}
8410
8493
  * @memberof JsonApiDataSourceOutAttributes
8411
8494
  */
8412
- parameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
8495
+ parameters?: Array<JsonApiDataSourcePatchAttributesParameters> | null;
8413
8496
  /**
8414
8497
  * Decoded parameters to be used when connecting to the database providing the data for the data source.
8415
- * @type {Array<JsonApiDataSourceOutAttributesParameters>}
8498
+ * @type {Array<JsonApiDataSourcePatchAttributesParameters>}
8416
8499
  * @memberof JsonApiDataSourceOutAttributes
8417
8500
  */
8418
- decodedParameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
8501
+ decodedParameters?: Array<JsonApiDataSourcePatchAttributesParameters> | null;
8419
8502
  /**
8420
8503
  * Determines how the results coming from a particular datasource should be cached.
8421
8504
  * @type {string}
@@ -8465,27 +8548,9 @@ export declare const JsonApiDataSourceOutAttributesAuthenticationTypeEnum: {
8465
8548
  readonly TOKEN: "TOKEN";
8466
8549
  readonly KEY_PAIR: "KEY_PAIR";
8467
8550
  readonly CLIENT_SECRET: "CLIENT_SECRET";
8551
+ readonly ACCESS_TOKEN: "ACCESS_TOKEN";
8468
8552
  };
8469
8553
  export type JsonApiDataSourceOutAttributesAuthenticationTypeEnum = typeof JsonApiDataSourceOutAttributesAuthenticationTypeEnum[keyof typeof JsonApiDataSourceOutAttributesAuthenticationTypeEnum];
8470
- /**
8471
- *
8472
- * @export
8473
- * @interface JsonApiDataSourceOutAttributesParameters
8474
- */
8475
- export interface JsonApiDataSourceOutAttributesParameters {
8476
- /**
8477
- *
8478
- * @type {string}
8479
- * @memberof JsonApiDataSourceOutAttributesParameters
8480
- */
8481
- name: string;
8482
- /**
8483
- *
8484
- * @type {string}
8485
- * @memberof JsonApiDataSourceOutAttributesParameters
8486
- */
8487
- value: string;
8488
- }
8489
8554
  /**
8490
8555
  *
8491
8556
  * @export
@@ -8525,11 +8590,29 @@ export interface JsonApiDataSourceOutList {
8525
8590
  links?: ListLinks;
8526
8591
  /**
8527
8592
  *
8528
- * @type {JsonApiAnalyticalDashboardOutListMeta}
8593
+ * @type {JsonApiColorPaletteOutListMeta}
8529
8594
  * @memberof JsonApiDataSourceOutList
8530
8595
  */
8531
- meta?: JsonApiAnalyticalDashboardOutListMeta;
8596
+ meta?: JsonApiColorPaletteOutListMeta;
8532
8597
  }
8598
+ /**
8599
+ *
8600
+ * @export
8601
+ * @interface JsonApiDataSourceOutMeta
8602
+ */
8603
+ export interface JsonApiDataSourceOutMeta {
8604
+ /**
8605
+ * List of valid permissions for a logged-in user.
8606
+ * @type {Array<string>}
8607
+ * @memberof JsonApiDataSourceOutMeta
8608
+ */
8609
+ permissions?: Array<JsonApiDataSourceOutMetaPermissionsEnum>;
8610
+ }
8611
+ export declare const JsonApiDataSourceOutMetaPermissionsEnum: {
8612
+ readonly MANAGE: "MANAGE";
8613
+ readonly USE: "USE";
8614
+ };
8615
+ export type JsonApiDataSourceOutMetaPermissionsEnum = typeof JsonApiDataSourceOutMetaPermissionsEnum[keyof typeof JsonApiDataSourceOutMetaPermissionsEnum];
8533
8616
  /**
8534
8617
  *
8535
8618
  * @export
@@ -8550,10 +8633,10 @@ export interface JsonApiDataSourceOutWithLinks {
8550
8633
  id: string;
8551
8634
  /**
8552
8635
  *
8553
- * @type {JsonApiDataSourceIdentifierOutMeta}
8636
+ * @type {JsonApiDataSourceOutMeta}
8554
8637
  * @memberof JsonApiDataSourceOutWithLinks
8555
8638
  */
8556
- meta?: JsonApiDataSourceIdentifierOutMeta;
8639
+ meta?: JsonApiDataSourceOutMeta;
8557
8640
  /**
8558
8641
  *
8559
8642
  * @type {JsonApiDataSourceOutAttributes}
@@ -8674,10 +8757,10 @@ export interface JsonApiDataSourcePatchAttributes {
8674
8757
  clientSecret?: string | null;
8675
8758
  /**
8676
8759
  * Additional parameters to be used when connecting to the database providing the data for the data source.
8677
- * @type {Array<JsonApiDataSourceOutAttributesParameters>}
8760
+ * @type {Array<JsonApiDataSourcePatchAttributesParameters>}
8678
8761
  * @memberof JsonApiDataSourcePatchAttributes
8679
8762
  */
8680
- parameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
8763
+ parameters?: Array<JsonApiDataSourcePatchAttributesParameters> | null;
8681
8764
  /**
8682
8765
  * Determines how the results coming from a particular datasource should be cached.
8683
8766
  * @type {string}
@@ -8716,6 +8799,25 @@ export declare const JsonApiDataSourcePatchAttributesCacheStrategyEnum: {
8716
8799
  readonly NEVER: "NEVER";
8717
8800
  };
8718
8801
  export type JsonApiDataSourcePatchAttributesCacheStrategyEnum = typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum[keyof typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum];
8802
+ /**
8803
+ *
8804
+ * @export
8805
+ * @interface JsonApiDataSourcePatchAttributesParameters
8806
+ */
8807
+ export interface JsonApiDataSourcePatchAttributesParameters {
8808
+ /**
8809
+ *
8810
+ * @type {string}
8811
+ * @memberof JsonApiDataSourcePatchAttributesParameters
8812
+ */
8813
+ name: string;
8814
+ /**
8815
+ *
8816
+ * @type {string}
8817
+ * @memberof JsonApiDataSourcePatchAttributesParameters
8818
+ */
8819
+ value: string;
8820
+ }
8719
8821
  /**
8720
8822
  *
8721
8823
  * @export
@@ -9081,10 +9183,10 @@ export interface JsonApiDatasetOutList {
9081
9183
  links?: ListLinks;
9082
9184
  /**
9083
9185
  *
9084
- * @type {JsonApiAnalyticalDashboardOutListMeta}
9186
+ * @type {JsonApiColorPaletteOutListMeta}
9085
9187
  * @memberof JsonApiDatasetOutList
9086
9188
  */
9087
- meta?: JsonApiAnalyticalDashboardOutListMeta;
9189
+ meta?: JsonApiColorPaletteOutListMeta;
9088
9190
  /**
9089
9191
  * Included resources
9090
9192
  * @type {Array<JsonApiDatasetOutIncludes>}
@@ -9276,10 +9378,10 @@ export interface JsonApiEntitlementOutList {
9276
9378
  links?: ListLinks;
9277
9379
  /**
9278
9380
  *
9279
- * @type {JsonApiAnalyticalDashboardOutListMeta}
9381
+ * @type {JsonApiColorPaletteOutListMeta}
9280
9382
  * @memberof JsonApiEntitlementOutList
9281
9383
  */
9282
- meta?: JsonApiAnalyticalDashboardOutListMeta;
9384
+ meta?: JsonApiColorPaletteOutListMeta;
9283
9385
  }
9284
9386
  /**
9285
9387
  *
@@ -9527,10 +9629,10 @@ export interface JsonApiExportDefinitionOutList {
9527
9629
  links?: ListLinks;
9528
9630
  /**
9529
9631
  *
9530
- * @type {JsonApiAnalyticalDashboardOutListMeta}
9632
+ * @type {JsonApiColorPaletteOutListMeta}
9531
9633
  * @memberof JsonApiExportDefinitionOutList
9532
9634
  */
9533
- meta?: JsonApiAnalyticalDashboardOutListMeta;
9635
+ meta?: JsonApiColorPaletteOutListMeta;
9534
9636
  /**
9535
9637
  * Included resources
9536
9638
  * @type {Array<JsonApiExportDefinitionOutIncludes>}
@@ -9898,83 +10000,17 @@ export interface JsonApiExportTemplateOutAttributes {
9898
10000
  name: string;
9899
10001
  /**
9900
10002
  *
9901
- * @type {JsonApiExportTemplateOutAttributesDashboardSlidesTemplate}
10003
+ * @type {JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate}
9902
10004
  * @memberof JsonApiExportTemplateOutAttributes
9903
10005
  */
9904
- dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
10006
+ dashboardSlidesTemplate?: JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate | null;
9905
10007
  /**
9906
10008
  *
9907
- * @type {JsonApiExportTemplateOutAttributesWidgetSlidesTemplate}
10009
+ * @type {JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate}
9908
10010
  * @memberof JsonApiExportTemplateOutAttributes
9909
10011
  */
9910
- widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
10012
+ widgetSlidesTemplate?: JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate | null;
9911
10013
  }
9912
- /**
9913
- * Settings for exporting dashboards.
9914
- * @export
9915
- * @interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
9916
- */
9917
- export interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
9918
- /**
9919
- * Export types this template applies to.
9920
- * @type {Array<string>}
9921
- * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
9922
- */
9923
- appliedOn: Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
9924
- /**
9925
- *
9926
- * @type {CoverSlideTemplate}
9927
- * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
9928
- */
9929
- coverSlide?: CoverSlideTemplate | null;
9930
- /**
9931
- *
9932
- * @type {IntroSlideTemplate}
9933
- * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
9934
- */
9935
- introSlide?: IntroSlideTemplate | null;
9936
- /**
9937
- *
9938
- * @type {SectionSlideTemplate}
9939
- * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
9940
- */
9941
- sectionSlide?: SectionSlideTemplate | null;
9942
- /**
9943
- *
9944
- * @type {ContentSlideTemplate}
9945
- * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
9946
- */
9947
- contentSlide?: ContentSlideTemplate | null;
9948
- }
9949
- export declare const JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum: {
9950
- readonly PDF: "PDF";
9951
- readonly PPTX: "PPTX";
9952
- };
9953
- export type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum[keyof typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum];
9954
- /**
9955
- * Settings for exporting widgets.
9956
- * @export
9957
- * @interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate
9958
- */
9959
- export interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
9960
- /**
9961
- * Export types this template applies to.
9962
- * @type {Array<string>}
9963
- * @memberof JsonApiExportTemplateOutAttributesWidgetSlidesTemplate
9964
- */
9965
- appliedOn: Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
9966
- /**
9967
- *
9968
- * @type {ContentSlideTemplate}
9969
- * @memberof JsonApiExportTemplateOutAttributesWidgetSlidesTemplate
9970
- */
9971
- contentSlide?: ContentSlideTemplate | null;
9972
- }
9973
- export declare const JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum: {
9974
- readonly PDF: "PDF";
9975
- readonly PPTX: "PPTX";
9976
- };
9977
- export type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum[keyof typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum];
9978
10014
  /**
9979
10015
  *
9980
10016
  * @export
@@ -10014,10 +10050,10 @@ export interface JsonApiExportTemplateOutList {
10014
10050
  links?: ListLinks;
10015
10051
  /**
10016
10052
  *
10017
- * @type {JsonApiAnalyticalDashboardOutListMeta}
10053
+ * @type {JsonApiColorPaletteOutListMeta}
10018
10054
  * @memberof JsonApiExportTemplateOutList
10019
10055
  */
10020
- meta?: JsonApiAnalyticalDashboardOutListMeta;
10056
+ meta?: JsonApiColorPaletteOutListMeta;
10021
10057
  }
10022
10058
  /**
10023
10059
  *
@@ -10097,17 +10133,83 @@ export interface JsonApiExportTemplatePatchAttributes {
10097
10133
  name?: string;
10098
10134
  /**
10099
10135
  *
10100
- * @type {JsonApiExportTemplateOutAttributesDashboardSlidesTemplate}
10136
+ * @type {JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate}
10101
10137
  * @memberof JsonApiExportTemplatePatchAttributes
10102
10138
  */
10103
- dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
10139
+ dashboardSlidesTemplate?: JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate | null;
10104
10140
  /**
10105
10141
  *
10106
- * @type {JsonApiExportTemplateOutAttributesWidgetSlidesTemplate}
10142
+ * @type {JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate}
10107
10143
  * @memberof JsonApiExportTemplatePatchAttributes
10108
10144
  */
10109
- widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
10145
+ widgetSlidesTemplate?: JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate | null;
10110
10146
  }
10147
+ /**
10148
+ * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
10149
+ * @export
10150
+ * @interface JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
10151
+ */
10152
+ export interface JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate {
10153
+ /**
10154
+ * Export types this template applies to.
10155
+ * @type {Array<string>}
10156
+ * @memberof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
10157
+ */
10158
+ appliedOn: Array<JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum>;
10159
+ /**
10160
+ *
10161
+ * @type {CoverSlideTemplate}
10162
+ * @memberof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
10163
+ */
10164
+ coverSlide?: CoverSlideTemplate | null;
10165
+ /**
10166
+ *
10167
+ * @type {IntroSlideTemplate}
10168
+ * @memberof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
10169
+ */
10170
+ introSlide?: IntroSlideTemplate | null;
10171
+ /**
10172
+ *
10173
+ * @type {SectionSlideTemplate}
10174
+ * @memberof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
10175
+ */
10176
+ sectionSlide?: SectionSlideTemplate | null;
10177
+ /**
10178
+ *
10179
+ * @type {ContentSlideTemplate}
10180
+ * @memberof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
10181
+ */
10182
+ contentSlide?: ContentSlideTemplate | null;
10183
+ }
10184
+ export declare const JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum: {
10185
+ readonly PDF: "PDF";
10186
+ readonly PPTX: "PPTX";
10187
+ };
10188
+ export type JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum = typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum[keyof typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum];
10189
+ /**
10190
+ * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
10191
+ * @export
10192
+ * @interface JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate
10193
+ */
10194
+ export interface JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate {
10195
+ /**
10196
+ * Export types this template applies to.
10197
+ * @type {Array<string>}
10198
+ * @memberof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate
10199
+ */
10200
+ appliedOn: Array<JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum>;
10201
+ /**
10202
+ *
10203
+ * @type {ContentSlideTemplate}
10204
+ * @memberof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate
10205
+ */
10206
+ contentSlide?: ContentSlideTemplate | null;
10207
+ }
10208
+ export declare const JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum: {
10209
+ readonly PDF: "PDF";
10210
+ readonly PPTX: "PPTX";
10211
+ };
10212
+ export type JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum = typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum[keyof typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum];
10111
10213
  /**
10112
10214
  *
10113
10215
  * @export
@@ -10325,10 +10427,10 @@ export interface JsonApiFactOutList {
10325
10427
  links?: ListLinks;
10326
10428
  /**
10327
10429
  *
10328
- * @type {JsonApiAnalyticalDashboardOutListMeta}
10430
+ * @type {JsonApiColorPaletteOutListMeta}
10329
10431
  * @memberof JsonApiFactOutList
10330
10432
  */
10331
- meta?: JsonApiAnalyticalDashboardOutListMeta;
10433
+ meta?: JsonApiColorPaletteOutListMeta;
10332
10434
  /**
10333
10435
  * Included resources
10334
10436
  * @type {Array<JsonApiDatasetOutWithLinks>}
@@ -10589,10 +10691,10 @@ export interface JsonApiFilterContextOutList {
10589
10691
  links?: ListLinks;
10590
10692
  /**
10591
10693
  *
10592
- * @type {JsonApiAnalyticalDashboardOutListMeta}
10694
+ * @type {JsonApiColorPaletteOutListMeta}
10593
10695
  * @memberof JsonApiFilterContextOutList
10594
10696
  */
10595
- meta?: JsonApiAnalyticalDashboardOutListMeta;
10697
+ meta?: JsonApiColorPaletteOutListMeta;
10596
10698
  /**
10597
10699
  * Included resources
10598
10700
  * @type {Array<JsonApiFilterContextOutIncludes>}
@@ -10932,10 +11034,10 @@ export interface JsonApiFilterViewOutList {
10932
11034
  links?: ListLinks;
10933
11035
  /**
10934
11036
  *
10935
- * @type {JsonApiAnalyticalDashboardOutListMeta}
11037
+ * @type {JsonApiColorPaletteOutListMeta}
10936
11038
  * @memberof JsonApiFilterViewOutList
10937
11039
  */
10938
- meta?: JsonApiAnalyticalDashboardOutListMeta;
11040
+ meta?: JsonApiColorPaletteOutListMeta;
10939
11041
  /**
10940
11042
  * Included resources
10941
11043
  * @type {Array<JsonApiFilterViewOutIncludes>}
@@ -11295,10 +11397,10 @@ export interface JsonApiIdentityProviderOutList {
11295
11397
  links?: ListLinks;
11296
11398
  /**
11297
11399
  *
11298
- * @type {JsonApiAnalyticalDashboardOutListMeta}
11400
+ * @type {JsonApiColorPaletteOutListMeta}
11299
11401
  * @memberof JsonApiIdentityProviderOutList
11300
11402
  */
11301
- meta?: JsonApiAnalyticalDashboardOutListMeta;
11403
+ meta?: JsonApiColorPaletteOutListMeta;
11302
11404
  }
11303
11405
  /**
11304
11406
  *
@@ -11442,10 +11544,10 @@ export interface JsonApiJwkIn {
11442
11544
  id: string;
11443
11545
  /**
11444
11546
  *
11445
- * @type {JsonApiJwkOutAttributes}
11547
+ * @type {JsonApiJwkPatchAttributes}
11446
11548
  * @memberof JsonApiJwkIn
11447
11549
  */
11448
- attributes?: JsonApiJwkOutAttributes;
11550
+ attributes?: JsonApiJwkPatchAttributes;
11449
11551
  }
11450
11552
  export declare const JsonApiJwkInTypeEnum: {
11451
11553
  readonly JWK: "jwk";
@@ -11484,28 +11586,15 @@ export interface JsonApiJwkOut {
11484
11586
  id: string;
11485
11587
  /**
11486
11588
  *
11487
- * @type {JsonApiJwkOutAttributes}
11589
+ * @type {JsonApiJwkPatchAttributes}
11488
11590
  * @memberof JsonApiJwkOut
11489
11591
  */
11490
- attributes?: JsonApiJwkOutAttributes;
11592
+ attributes?: JsonApiJwkPatchAttributes;
11491
11593
  }
11492
11594
  export declare const JsonApiJwkOutTypeEnum: {
11493
11595
  readonly JWK: "jwk";
11494
11596
  };
11495
11597
  export type JsonApiJwkOutTypeEnum = typeof JsonApiJwkOutTypeEnum[keyof typeof JsonApiJwkOutTypeEnum];
11496
- /**
11497
- *
11498
- * @export
11499
- * @interface JsonApiJwkOutAttributes
11500
- */
11501
- export interface JsonApiJwkOutAttributes {
11502
- /**
11503
- * Specification of the cryptographic key
11504
- * @type {RsaSpecification}
11505
- * @memberof JsonApiJwkOutAttributes
11506
- */
11507
- content?: RsaSpecification;
11508
- }
11509
11598
  /**
11510
11599
  *
11511
11600
  * @export
@@ -11545,10 +11634,10 @@ export interface JsonApiJwkOutList {
11545
11634
  links?: ListLinks;
11546
11635
  /**
11547
11636
  *
11548
- * @type {JsonApiAnalyticalDashboardOutListMeta}
11637
+ * @type {JsonApiColorPaletteOutListMeta}
11549
11638
  * @memberof JsonApiJwkOutList
11550
11639
  */
11551
- meta?: JsonApiAnalyticalDashboardOutListMeta;
11640
+ meta?: JsonApiColorPaletteOutListMeta;
11552
11641
  }
11553
11642
  /**
11554
11643
  *
@@ -11570,10 +11659,10 @@ export interface JsonApiJwkOutWithLinks {
11570
11659
  id: string;
11571
11660
  /**
11572
11661
  *
11573
- * @type {JsonApiJwkOutAttributes}
11662
+ * @type {JsonApiJwkPatchAttributes}
11574
11663
  * @memberof JsonApiJwkOutWithLinks
11575
11664
  */
11576
- attributes?: JsonApiJwkOutAttributes;
11665
+ attributes?: JsonApiJwkPatchAttributes;
11577
11666
  /**
11578
11667
  *
11579
11668
  * @type {ObjectLinks}
@@ -11605,15 +11694,28 @@ export interface JsonApiJwkPatch {
11605
11694
  id: string;
11606
11695
  /**
11607
11696
  *
11608
- * @type {JsonApiJwkOutAttributes}
11697
+ * @type {JsonApiJwkPatchAttributes}
11609
11698
  * @memberof JsonApiJwkPatch
11610
11699
  */
11611
- attributes?: JsonApiJwkOutAttributes;
11700
+ attributes?: JsonApiJwkPatchAttributes;
11612
11701
  }
11613
11702
  export declare const JsonApiJwkPatchTypeEnum: {
11614
11703
  readonly JWK: "jwk";
11615
11704
  };
11616
11705
  export type JsonApiJwkPatchTypeEnum = typeof JsonApiJwkPatchTypeEnum[keyof typeof JsonApiJwkPatchTypeEnum];
11706
+ /**
11707
+ *
11708
+ * @export
11709
+ * @interface JsonApiJwkPatchAttributes
11710
+ */
11711
+ export interface JsonApiJwkPatchAttributes {
11712
+ /**
11713
+ * Specification of the cryptographic key
11714
+ * @type {RsaSpecification}
11715
+ * @memberof JsonApiJwkPatchAttributes
11716
+ */
11717
+ content?: RsaSpecification;
11718
+ }
11617
11719
  /**
11618
11720
  *
11619
11721
  * @export
@@ -11810,10 +11912,10 @@ export interface JsonApiLabelOutList {
11810
11912
  links?: ListLinks;
11811
11913
  /**
11812
11914
  *
11813
- * @type {JsonApiAnalyticalDashboardOutListMeta}
11915
+ * @type {JsonApiColorPaletteOutListMeta}
11814
11916
  * @memberof JsonApiLabelOutList
11815
11917
  */
11816
- meta?: JsonApiAnalyticalDashboardOutListMeta;
11918
+ meta?: JsonApiColorPaletteOutListMeta;
11817
11919
  /**
11818
11920
  * Included resources
11819
11921
  * @type {Array<JsonApiAttributeOutWithLinks>}
@@ -12122,10 +12224,10 @@ export interface JsonApiLlmEndpointOutList {
12122
12224
  links?: ListLinks;
12123
12225
  /**
12124
12226
  *
12125
- * @type {JsonApiAnalyticalDashboardOutListMeta}
12227
+ * @type {JsonApiColorPaletteOutListMeta}
12126
12228
  * @memberof JsonApiLlmEndpointOutList
12127
12229
  */
12128
- meta?: JsonApiAnalyticalDashboardOutListMeta;
12230
+ meta?: JsonApiColorPaletteOutListMeta;
12129
12231
  }
12130
12232
  /**
12131
12233
  *
@@ -12283,15 +12385,52 @@ export interface JsonApiMetricIn {
12283
12385
  id: string;
12284
12386
  /**
12285
12387
  *
12286
- * @type {JsonApiMetricPostOptionalIdAttributes}
12388
+ * @type {JsonApiMetricInAttributes}
12287
12389
  * @memberof JsonApiMetricIn
12288
12390
  */
12289
- attributes: JsonApiMetricPostOptionalIdAttributes;
12391
+ attributes: JsonApiMetricInAttributes;
12290
12392
  }
12291
12393
  export declare const JsonApiMetricInTypeEnum: {
12292
12394
  readonly METRIC: "metric";
12293
12395
  };
12294
12396
  export type JsonApiMetricInTypeEnum = typeof JsonApiMetricInTypeEnum[keyof typeof JsonApiMetricInTypeEnum];
12397
+ /**
12398
+ *
12399
+ * @export
12400
+ * @interface JsonApiMetricInAttributes
12401
+ */
12402
+ export interface JsonApiMetricInAttributes {
12403
+ /**
12404
+ *
12405
+ * @type {string}
12406
+ * @memberof JsonApiMetricInAttributes
12407
+ */
12408
+ title?: string;
12409
+ /**
12410
+ *
12411
+ * @type {string}
12412
+ * @memberof JsonApiMetricInAttributes
12413
+ */
12414
+ description?: string;
12415
+ /**
12416
+ *
12417
+ * @type {Array<string>}
12418
+ * @memberof JsonApiMetricInAttributes
12419
+ */
12420
+ tags?: Array<string>;
12421
+ /**
12422
+ *
12423
+ * @type {boolean}
12424
+ * @memberof JsonApiMetricInAttributes
12425
+ */
12426
+ areRelationsValid?: boolean;
12427
+ /**
12428
+ *
12429
+ * @type {JsonApiMetricOutAttributesContent}
12430
+ * @memberof JsonApiMetricInAttributes
12431
+ */
12432
+ content: JsonApiMetricOutAttributesContent;
12433
+ }
12295
12434
  /**
12296
12435
  *
12297
12436
  * @export
@@ -12487,10 +12626,10 @@ export interface JsonApiMetricOutList {
12487
12626
  links?: ListLinks;
12488
12627
  /**
12489
12628
  *
12490
- * @type {JsonApiAnalyticalDashboardOutListMeta}
12629
+ * @type {JsonApiColorPaletteOutListMeta}
12491
12630
  * @memberof JsonApiMetricOutList
12492
12631
  */
12493
- meta?: JsonApiAnalyticalDashboardOutListMeta;
12632
+ meta?: JsonApiColorPaletteOutListMeta;
12494
12633
  /**
12495
12634
  * Included resources
12496
12635
  * @type {Array<JsonApiMetricOutIncludes>}
@@ -12644,52 +12783,15 @@ export interface JsonApiMetricPostOptionalId {
12644
12783
  id?: string;
12645
12784
  /**
12646
12785
  *
12647
- * @type {JsonApiMetricPostOptionalIdAttributes}
12786
+ * @type {JsonApiMetricInAttributes}
12648
12787
  * @memberof JsonApiMetricPostOptionalId
12649
12788
  */
12650
- attributes: JsonApiMetricPostOptionalIdAttributes;
12789
+ attributes: JsonApiMetricInAttributes;
12651
12790
  }
12652
12791
  export declare const JsonApiMetricPostOptionalIdTypeEnum: {
12653
12792
  readonly METRIC: "metric";
12654
12793
  };
12655
12794
  export type JsonApiMetricPostOptionalIdTypeEnum = typeof JsonApiMetricPostOptionalIdTypeEnum[keyof typeof JsonApiMetricPostOptionalIdTypeEnum];
12656
- /**
12657
- *
12658
- * @export
12659
- * @interface JsonApiMetricPostOptionalIdAttributes
12660
- */
12661
- export interface JsonApiMetricPostOptionalIdAttributes {
12662
- /**
12663
- *
12664
- * @type {string}
12665
- * @memberof JsonApiMetricPostOptionalIdAttributes
12666
- */
12667
- title?: string;
12668
- /**
12669
- *
12670
- * @type {string}
12671
- * @memberof JsonApiMetricPostOptionalIdAttributes
12672
- */
12673
- description?: string;
12674
- /**
12675
- *
12676
- * @type {Array<string>}
12677
- * @memberof JsonApiMetricPostOptionalIdAttributes
12678
- */
12679
- tags?: Array<string>;
12680
- /**
12681
- *
12682
- * @type {boolean}
12683
- * @memberof JsonApiMetricPostOptionalIdAttributes
12684
- */
12685
- areRelationsValid?: boolean;
12686
- /**
12687
- *
12688
- * @type {JsonApiMetricOutAttributesContent}
12689
- * @memberof JsonApiMetricPostOptionalIdAttributes
12690
- */
12691
- content: JsonApiMetricOutAttributesContent;
12692
- }
12693
12795
  /**
12694
12796
  *
12695
12797
  * @export
@@ -12915,10 +13017,10 @@ export interface JsonApiNotificationChannelOutList {
12915
13017
  links?: ListLinks;
12916
13018
  /**
12917
13019
  *
12918
- * @type {JsonApiAnalyticalDashboardOutListMeta}
13020
+ * @type {JsonApiColorPaletteOutListMeta}
12919
13021
  * @memberof JsonApiNotificationChannelOutList
12920
13022
  */
12921
- meta?: JsonApiAnalyticalDashboardOutListMeta;
13023
+ meta?: JsonApiColorPaletteOutListMeta;
12922
13024
  }
12923
13025
  /**
12924
13026
  *
@@ -13131,91 +13233,15 @@ export interface JsonApiOrganizationIn {
13131
13233
  id: string;
13132
13234
  /**
13133
13235
  *
13134
- * @type {JsonApiOrganizationInAttributes}
13236
+ * @type {JsonApiOrganizationPatchAttributes}
13135
13237
  * @memberof JsonApiOrganizationIn
13136
13238
  */
13137
- attributes?: JsonApiOrganizationInAttributes;
13239
+ attributes?: JsonApiOrganizationPatchAttributes;
13138
13240
  }
13139
13241
  export declare const JsonApiOrganizationInTypeEnum: {
13140
13242
  readonly ORGANIZATION: "organization";
13141
13243
  };
13142
13244
  export type JsonApiOrganizationInTypeEnum = typeof JsonApiOrganizationInTypeEnum[keyof typeof JsonApiOrganizationInTypeEnum];
13143
- /**
13144
- *
13145
- * @export
13146
- * @interface JsonApiOrganizationInAttributes
13147
- */
13148
- export interface JsonApiOrganizationInAttributes {
13149
- /**
13150
- *
13151
- * @type {string}
13152
- * @memberof JsonApiOrganizationInAttributes
13153
- */
13154
- name?: string | null;
13155
- /**
13156
- *
13157
- * @type {string}
13158
- * @memberof JsonApiOrganizationInAttributes
13159
- */
13160
- hostname?: string;
13161
- /**
13162
- *
13163
- * @type {Array<string>}
13164
- * @memberof JsonApiOrganizationInAttributes
13165
- */
13166
- allowedOrigins?: Array<string>;
13167
- /**
13168
- *
13169
- * @type {string}
13170
- * @memberof JsonApiOrganizationInAttributes
13171
- */
13172
- oauthIssuerLocation?: string;
13173
- /**
13174
- *
13175
- * @type {string}
13176
- * @memberof JsonApiOrganizationInAttributes
13177
- */
13178
- oauthClientId?: string;
13179
- /**
13180
- *
13181
- * @type {string}
13182
- * @memberof JsonApiOrganizationInAttributes
13183
- */
13184
- oauthClientSecret?: string;
13185
- /**
13186
- * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
13187
- * @type {string}
13188
- * @memberof JsonApiOrganizationInAttributes
13189
- * @deprecated
13190
- */
13191
- earlyAccess?: string | null;
13192
- /**
13193
- * The early access feature identifiers. They are used to enable experimental features.
13194
- * @type {Array<string>}
13195
- * @memberof JsonApiOrganizationInAttributes
13196
- */
13197
- earlyAccessValues?: Array<string> | null;
13198
- /**
13199
- * 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.
13200
- * @type {string}
13201
- * @memberof JsonApiOrganizationInAttributes
13202
- */
13203
- oauthIssuerId?: string;
13204
- /**
13205
- * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
13206
- * @type {string}
13207
- * @memberof JsonApiOrganizationInAttributes
13208
- */
13209
- oauthSubjectIdClaim?: string;
13210
- /**
13211
- * 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.
13212
- * @type {{ [key: string]: string; }}
13213
- * @memberof JsonApiOrganizationInAttributes
13214
- */
13215
- oauthCustomAuthAttributes?: {
13216
- [key: string]: string;
13217
- };
13218
- }
13219
13245
  /**
13220
13246
  *
13221
13247
  * @export
@@ -13345,6 +13371,12 @@ export interface JsonApiOrganizationOutAttributes {
13345
13371
  oauthCustomAuthAttributes?: {
13346
13372
  [key: string]: string;
13347
13373
  };
13374
+ /**
13375
+ * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
13376
+ * @type {Array<string>}
13377
+ * @memberof JsonApiOrganizationOutAttributes
13378
+ */
13379
+ oauthCustomScopes?: Array<string> | null;
13348
13380
  }
13349
13381
  /**
13350
13382
  *
@@ -13457,15 +13489,97 @@ export interface JsonApiOrganizationPatch {
13457
13489
  id: string;
13458
13490
  /**
13459
13491
  *
13460
- * @type {JsonApiOrganizationInAttributes}
13492
+ * @type {JsonApiOrganizationPatchAttributes}
13461
13493
  * @memberof JsonApiOrganizationPatch
13462
13494
  */
13463
- attributes?: JsonApiOrganizationInAttributes;
13495
+ attributes?: JsonApiOrganizationPatchAttributes;
13464
13496
  }
13465
13497
  export declare const JsonApiOrganizationPatchTypeEnum: {
13466
13498
  readonly ORGANIZATION: "organization";
13467
13499
  };
13468
13500
  export type JsonApiOrganizationPatchTypeEnum = typeof JsonApiOrganizationPatchTypeEnum[keyof typeof JsonApiOrganizationPatchTypeEnum];
13501
+ /**
13502
+ *
13503
+ * @export
13504
+ * @interface JsonApiOrganizationPatchAttributes
13505
+ */
13506
+ export interface JsonApiOrganizationPatchAttributes {
13507
+ /**
13508
+ *
13509
+ * @type {string}
13510
+ * @memberof JsonApiOrganizationPatchAttributes
13511
+ */
13512
+ name?: string | null;
13513
+ /**
13514
+ *
13515
+ * @type {string}
13516
+ * @memberof JsonApiOrganizationPatchAttributes
13517
+ */
13518
+ hostname?: string;
13519
+ /**
13520
+ *
13521
+ * @type {Array<string>}
13522
+ * @memberof JsonApiOrganizationPatchAttributes
13523
+ */
13524
+ allowedOrigins?: Array<string>;
13525
+ /**
13526
+ *
13527
+ * @type {string}
13528
+ * @memberof JsonApiOrganizationPatchAttributes
13529
+ */
13530
+ oauthIssuerLocation?: string;
13531
+ /**
13532
+ *
13533
+ * @type {string}
13534
+ * @memberof JsonApiOrganizationPatchAttributes
13535
+ */
13536
+ oauthClientId?: string;
13537
+ /**
13538
+ *
13539
+ * @type {string}
13540
+ * @memberof JsonApiOrganizationPatchAttributes
13541
+ */
13542
+ oauthClientSecret?: string;
13543
+ /**
13544
+ * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
13545
+ * @type {string}
13546
+ * @memberof JsonApiOrganizationPatchAttributes
13547
+ * @deprecated
13548
+ */
13549
+ earlyAccess?: string | null;
13550
+ /**
13551
+ * The early access feature identifiers. They are used to enable experimental features.
13552
+ * @type {Array<string>}
13553
+ * @memberof JsonApiOrganizationPatchAttributes
13554
+ */
13555
+ earlyAccessValues?: Array<string> | null;
13556
+ /**
13557
+ * 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.
13558
+ * @type {string}
13559
+ * @memberof JsonApiOrganizationPatchAttributes
13560
+ */
13561
+ oauthIssuerId?: string;
13562
+ /**
13563
+ * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
13564
+ * @type {string}
13565
+ * @memberof JsonApiOrganizationPatchAttributes
13566
+ */
13567
+ oauthSubjectIdClaim?: string;
13568
+ /**
13569
+ * 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.
13570
+ * @type {{ [key: string]: string; }}
13571
+ * @memberof JsonApiOrganizationPatchAttributes
13572
+ */
13573
+ oauthCustomAuthAttributes?: {
13574
+ [key: string]: string;
13575
+ };
13576
+ /**
13577
+ * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
13578
+ * @type {Array<string>}
13579
+ * @memberof JsonApiOrganizationPatchAttributes
13580
+ */
13581
+ oauthCustomScopes?: Array<string> | null;
13582
+ }
13469
13583
  /**
13470
13584
  *
13471
13585
  * @export
@@ -13499,10 +13613,10 @@ export interface JsonApiOrganizationSettingIn {
13499
13613
  id: string;
13500
13614
  /**
13501
13615
  *
13502
- * @type {JsonApiWorkspaceSettingOutAttributes}
13616
+ * @type {JsonApiOrganizationSettingPatchAttributes}
13503
13617
  * @memberof JsonApiOrganizationSettingIn
13504
13618
  */
13505
- attributes?: JsonApiWorkspaceSettingOutAttributes;
13619
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
13506
13620
  }
13507
13621
  export declare const JsonApiOrganizationSettingInTypeEnum: {
13508
13622
  readonly ORGANIZATION_SETTING: "organizationSetting";
@@ -13541,10 +13655,10 @@ export interface JsonApiOrganizationSettingOut {
13541
13655
  id: string;
13542
13656
  /**
13543
13657
  *
13544
- * @type {JsonApiWorkspaceSettingOutAttributes}
13658
+ * @type {JsonApiOrganizationSettingPatchAttributes}
13545
13659
  * @memberof JsonApiOrganizationSettingOut
13546
13660
  */
13547
- attributes?: JsonApiWorkspaceSettingOutAttributes;
13661
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
13548
13662
  }
13549
13663
  export declare const JsonApiOrganizationSettingOutTypeEnum: {
13550
13664
  readonly ORGANIZATION_SETTING: "organizationSetting";
@@ -13589,10 +13703,10 @@ export interface JsonApiOrganizationSettingOutList {
13589
13703
  links?: ListLinks;
13590
13704
  /**
13591
13705
  *
13592
- * @type {JsonApiAnalyticalDashboardOutListMeta}
13706
+ * @type {JsonApiColorPaletteOutListMeta}
13593
13707
  * @memberof JsonApiOrganizationSettingOutList
13594
13708
  */
13595
- meta?: JsonApiAnalyticalDashboardOutListMeta;
13709
+ meta?: JsonApiColorPaletteOutListMeta;
13596
13710
  }
13597
13711
  /**
13598
13712
  *
@@ -13614,10 +13728,10 @@ export interface JsonApiOrganizationSettingOutWithLinks {
13614
13728
  id: string;
13615
13729
  /**
13616
13730
  *
13617
- * @type {JsonApiWorkspaceSettingOutAttributes}
13731
+ * @type {JsonApiOrganizationSettingPatchAttributes}
13618
13732
  * @memberof JsonApiOrganizationSettingOutWithLinks
13619
13733
  */
13620
- attributes?: JsonApiWorkspaceSettingOutAttributes;
13734
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
13621
13735
  /**
13622
13736
  *
13623
13737
  * @type {ObjectLinks}
@@ -13649,15 +13763,57 @@ export interface JsonApiOrganizationSettingPatch {
13649
13763
  id: string;
13650
13764
  /**
13651
13765
  *
13652
- * @type {JsonApiWorkspaceSettingOutAttributes}
13766
+ * @type {JsonApiOrganizationSettingPatchAttributes}
13653
13767
  * @memberof JsonApiOrganizationSettingPatch
13654
13768
  */
13655
- attributes?: JsonApiWorkspaceSettingOutAttributes;
13769
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
13656
13770
  }
13657
13771
  export declare const JsonApiOrganizationSettingPatchTypeEnum: {
13658
13772
  readonly ORGANIZATION_SETTING: "organizationSetting";
13659
13773
  };
13660
13774
  export type JsonApiOrganizationSettingPatchTypeEnum = typeof JsonApiOrganizationSettingPatchTypeEnum[keyof typeof JsonApiOrganizationSettingPatchTypeEnum];
13775
+ /**
13776
+ *
13777
+ * @export
13778
+ * @interface JsonApiOrganizationSettingPatchAttributes
13779
+ */
13780
+ export interface JsonApiOrganizationSettingPatchAttributes {
13781
+ /**
13782
+ * Free-form JSON content. Maximum supported length is 15000 characters.
13783
+ * @type {object}
13784
+ * @memberof JsonApiOrganizationSettingPatchAttributes
13785
+ */
13786
+ content?: object;
13787
+ /**
13788
+ *
13789
+ * @type {string}
13790
+ * @memberof JsonApiOrganizationSettingPatchAttributes
13791
+ */
13792
+ type?: JsonApiOrganizationSettingPatchAttributesTypeEnum;
13793
+ }
13794
+ export declare const JsonApiOrganizationSettingPatchAttributesTypeEnum: {
13795
+ readonly TIMEZONE: "TIMEZONE";
13796
+ readonly ACTIVE_THEME: "ACTIVE_THEME";
13797
+ readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
13798
+ readonly WHITE_LABELING: "WHITE_LABELING";
13799
+ readonly LOCALE: "LOCALE";
13800
+ readonly METADATA_LOCALE: "METADATA_LOCALE";
13801
+ readonly FORMAT_LOCALE: "FORMAT_LOCALE";
13802
+ readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
13803
+ readonly WEEK_START: "WEEK_START";
13804
+ readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
13805
+ readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
13806
+ readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
13807
+ readonly OPENAI_CONFIG: "OPENAI_CONFIG";
13808
+ readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
13809
+ readonly ALERT: "ALERT";
13810
+ readonly SEPARATORS: "SEPARATORS";
13811
+ readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
13812
+ readonly JIT_PROVISIONING: "JIT_PROVISIONING";
13813
+ readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
13814
+ readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
13815
+ };
13816
+ export type JsonApiOrganizationSettingPatchAttributesTypeEnum = typeof JsonApiOrganizationSettingPatchAttributesTypeEnum[keyof typeof JsonApiOrganizationSettingPatchAttributesTypeEnum];
13661
13817
  /**
13662
13818
  *
13663
13819
  * @export
@@ -13781,10 +13937,10 @@ export interface JsonApiThemeOutList {
13781
13937
  links?: ListLinks;
13782
13938
  /**
13783
13939
  *
13784
- * @type {JsonApiAnalyticalDashboardOutListMeta}
13940
+ * @type {JsonApiColorPaletteOutListMeta}
13785
13941
  * @memberof JsonApiThemeOutList
13786
13942
  */
13787
- meta?: JsonApiAnalyticalDashboardOutListMeta;
13943
+ meta?: JsonApiColorPaletteOutListMeta;
13788
13944
  }
13789
13945
  /**
13790
13946
  *
@@ -14039,10 +14195,10 @@ export interface JsonApiUserDataFilterOutList {
14039
14195
  links?: ListLinks;
14040
14196
  /**
14041
14197
  *
14042
- * @type {JsonApiAnalyticalDashboardOutListMeta}
14198
+ * @type {JsonApiColorPaletteOutListMeta}
14043
14199
  * @memberof JsonApiUserDataFilterOutList
14044
14200
  */
14045
- meta?: JsonApiAnalyticalDashboardOutListMeta;
14201
+ meta?: JsonApiColorPaletteOutListMeta;
14046
14202
  /**
14047
14203
  * Included resources
14048
14204
  * @type {Array<JsonApiUserDataFilterOutIncludes>}
@@ -14331,16 +14487,16 @@ export interface JsonApiUserGroupIn {
14331
14487
  id: string;
14332
14488
  /**
14333
14489
  *
14334
- * @type {JsonApiUserGroupOutAttributes}
14490
+ * @type {JsonApiUserGroupPatchAttributes}
14335
14491
  * @memberof JsonApiUserGroupIn
14336
14492
  */
14337
- attributes?: JsonApiUserGroupOutAttributes;
14493
+ attributes?: JsonApiUserGroupPatchAttributes;
14338
14494
  /**
14339
14495
  *
14340
- * @type {JsonApiUserGroupOutRelationships}
14496
+ * @type {JsonApiUserGroupPatchRelationships}
14341
14497
  * @memberof JsonApiUserGroupIn
14342
14498
  */
14343
- relationships?: JsonApiUserGroupOutRelationships;
14499
+ relationships?: JsonApiUserGroupPatchRelationships;
14344
14500
  }
14345
14501
  export declare const JsonApiUserGroupInTypeEnum: {
14346
14502
  readonly USER_GROUP: "userGroup";
@@ -14402,34 +14558,21 @@ export interface JsonApiUserGroupOut {
14402
14558
  id: string;
14403
14559
  /**
14404
14560
  *
14405
- * @type {JsonApiUserGroupOutAttributes}
14561
+ * @type {JsonApiUserGroupPatchAttributes}
14406
14562
  * @memberof JsonApiUserGroupOut
14407
14563
  */
14408
- attributes?: JsonApiUserGroupOutAttributes;
14564
+ attributes?: JsonApiUserGroupPatchAttributes;
14409
14565
  /**
14410
14566
  *
14411
- * @type {JsonApiUserGroupOutRelationships}
14567
+ * @type {JsonApiUserGroupPatchRelationships}
14412
14568
  * @memberof JsonApiUserGroupOut
14413
14569
  */
14414
- relationships?: JsonApiUserGroupOutRelationships;
14570
+ relationships?: JsonApiUserGroupPatchRelationships;
14415
14571
  }
14416
14572
  export declare const JsonApiUserGroupOutTypeEnum: {
14417
14573
  readonly USER_GROUP: "userGroup";
14418
14574
  };
14419
14575
  export type JsonApiUserGroupOutTypeEnum = typeof JsonApiUserGroupOutTypeEnum[keyof typeof JsonApiUserGroupOutTypeEnum];
14420
- /**
14421
- *
14422
- * @export
14423
- * @interface JsonApiUserGroupOutAttributes
14424
- */
14425
- export interface JsonApiUserGroupOutAttributes {
14426
- /**
14427
- *
14428
- * @type {string}
14429
- * @memberof JsonApiUserGroupOutAttributes
14430
- */
14431
- name?: string;
14432
- }
14433
14576
  /**
14434
14577
  *
14435
14578
  * @export
@@ -14475,10 +14618,10 @@ export interface JsonApiUserGroupOutList {
14475
14618
  links?: ListLinks;
14476
14619
  /**
14477
14620
  *
14478
- * @type {JsonApiAnalyticalDashboardOutListMeta}
14621
+ * @type {JsonApiColorPaletteOutListMeta}
14479
14622
  * @memberof JsonApiUserGroupOutList
14480
14623
  */
14481
- meta?: JsonApiAnalyticalDashboardOutListMeta;
14624
+ meta?: JsonApiColorPaletteOutListMeta;
14482
14625
  /**
14483
14626
  * Included resources
14484
14627
  * @type {Array<JsonApiUserGroupOutWithLinks>}
@@ -14486,19 +14629,6 @@ export interface JsonApiUserGroupOutList {
14486
14629
  */
14487
14630
  included?: Array<JsonApiUserGroupOutWithLinks>;
14488
14631
  }
14489
- /**
14490
- *
14491
- * @export
14492
- * @interface JsonApiUserGroupOutRelationships
14493
- */
14494
- export interface JsonApiUserGroupOutRelationships {
14495
- /**
14496
- *
14497
- * @type {JsonApiUserOutRelationshipsUserGroups}
14498
- * @memberof JsonApiUserGroupOutRelationships
14499
- */
14500
- parents?: JsonApiUserOutRelationshipsUserGroups;
14501
- }
14502
14632
  /**
14503
14633
  *
14504
14634
  * @export
@@ -14519,16 +14649,16 @@ export interface JsonApiUserGroupOutWithLinks {
14519
14649
  id: string;
14520
14650
  /**
14521
14651
  *
14522
- * @type {JsonApiUserGroupOutAttributes}
14652
+ * @type {JsonApiUserGroupPatchAttributes}
14523
14653
  * @memberof JsonApiUserGroupOutWithLinks
14524
14654
  */
14525
- attributes?: JsonApiUserGroupOutAttributes;
14655
+ attributes?: JsonApiUserGroupPatchAttributes;
14526
14656
  /**
14527
14657
  *
14528
- * @type {JsonApiUserGroupOutRelationships}
14658
+ * @type {JsonApiUserGroupPatchRelationships}
14529
14659
  * @memberof JsonApiUserGroupOutWithLinks
14530
14660
  */
14531
- relationships?: JsonApiUserGroupOutRelationships;
14661
+ relationships?: JsonApiUserGroupPatchRelationships;
14532
14662
  /**
14533
14663
  *
14534
14664
  * @type {ObjectLinks}
@@ -14560,21 +14690,34 @@ export interface JsonApiUserGroupPatch {
14560
14690
  id: string;
14561
14691
  /**
14562
14692
  *
14563
- * @type {JsonApiUserGroupOutAttributes}
14693
+ * @type {JsonApiUserGroupPatchAttributes}
14564
14694
  * @memberof JsonApiUserGroupPatch
14565
14695
  */
14566
- attributes?: JsonApiUserGroupOutAttributes;
14696
+ attributes?: JsonApiUserGroupPatchAttributes;
14567
14697
  /**
14568
14698
  *
14569
- * @type {JsonApiUserGroupOutRelationships}
14699
+ * @type {JsonApiUserGroupPatchRelationships}
14570
14700
  * @memberof JsonApiUserGroupPatch
14571
14701
  */
14572
- relationships?: JsonApiUserGroupOutRelationships;
14702
+ relationships?: JsonApiUserGroupPatchRelationships;
14573
14703
  }
14574
14704
  export declare const JsonApiUserGroupPatchTypeEnum: {
14575
14705
  readonly USER_GROUP: "userGroup";
14576
14706
  };
14577
14707
  export type JsonApiUserGroupPatchTypeEnum = typeof JsonApiUserGroupPatchTypeEnum[keyof typeof JsonApiUserGroupPatchTypeEnum];
14708
+ /**
14709
+ *
14710
+ * @export
14711
+ * @interface JsonApiUserGroupPatchAttributes
14712
+ */
14713
+ export interface JsonApiUserGroupPatchAttributes {
14714
+ /**
14715
+ *
14716
+ * @type {string}
14717
+ * @memberof JsonApiUserGroupPatchAttributes
14718
+ */
14719
+ name?: string;
14720
+ }
14578
14721
  /**
14579
14722
  *
14580
14723
  * @export
@@ -14588,6 +14731,32 @@ export interface JsonApiUserGroupPatchDocument {
14588
14731
  */
14589
14732
  data: JsonApiUserGroupPatch;
14590
14733
  }
14734
+ /**
14735
+ *
14736
+ * @export
14737
+ * @interface JsonApiUserGroupPatchRelationships
14738
+ */
14739
+ export interface JsonApiUserGroupPatchRelationships {
14740
+ /**
14741
+ *
14742
+ * @type {JsonApiUserGroupPatchRelationshipsParents}
14743
+ * @memberof JsonApiUserGroupPatchRelationships
14744
+ */
14745
+ parents?: JsonApiUserGroupPatchRelationshipsParents;
14746
+ }
14747
+ /**
14748
+ *
14749
+ * @export
14750
+ * @interface JsonApiUserGroupPatchRelationshipsParents
14751
+ */
14752
+ export interface JsonApiUserGroupPatchRelationshipsParents {
14753
+ /**
14754
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
14755
+ * @type {Array<JsonApiUserGroupLinkage>}
14756
+ * @memberof JsonApiUserGroupPatchRelationshipsParents
14757
+ */
14758
+ data: Array<JsonApiUserGroupLinkage>;
14759
+ }
14591
14760
  /**
14592
14761
  * @type JsonApiUserGroupToOneLinkage
14593
14762
  * References to other resource objects in a to-one (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
@@ -14710,10 +14879,10 @@ export interface JsonApiUserIdentifierOutList {
14710
14879
  links?: ListLinks;
14711
14880
  /**
14712
14881
  *
14713
- * @type {JsonApiAnalyticalDashboardOutListMeta}
14882
+ * @type {JsonApiColorPaletteOutListMeta}
14714
14883
  * @memberof JsonApiUserIdentifierOutList
14715
14884
  */
14716
- meta?: JsonApiAnalyticalDashboardOutListMeta;
14885
+ meta?: JsonApiColorPaletteOutListMeta;
14717
14886
  }
14718
14887
  /**
14719
14888
  *
@@ -14776,16 +14945,16 @@ export interface JsonApiUserIn {
14776
14945
  id: string;
14777
14946
  /**
14778
14947
  *
14779
- * @type {JsonApiUserOutAttributes}
14948
+ * @type {JsonApiUserPatchAttributes}
14780
14949
  * @memberof JsonApiUserIn
14781
14950
  */
14782
- attributes?: JsonApiUserOutAttributes;
14951
+ attributes?: JsonApiUserPatchAttributes;
14783
14952
  /**
14784
14953
  *
14785
- * @type {JsonApiUserOutRelationships}
14954
+ * @type {JsonApiUserPatchRelationships}
14786
14955
  * @memberof JsonApiUserIn
14787
14956
  */
14788
- relationships?: JsonApiUserOutRelationships;
14957
+ relationships?: JsonApiUserPatchRelationships;
14789
14958
  }
14790
14959
  export declare const JsonApiUserInTypeEnum: {
14791
14960
  readonly USER: "user";
@@ -14847,52 +15016,21 @@ export interface JsonApiUserOut {
14847
15016
  id: string;
14848
15017
  /**
14849
15018
  *
14850
- * @type {JsonApiUserOutAttributes}
15019
+ * @type {JsonApiUserPatchAttributes}
14851
15020
  * @memberof JsonApiUserOut
14852
15021
  */
14853
- attributes?: JsonApiUserOutAttributes;
15022
+ attributes?: JsonApiUserPatchAttributes;
14854
15023
  /**
14855
15024
  *
14856
- * @type {JsonApiUserOutRelationships}
15025
+ * @type {JsonApiUserPatchRelationships}
14857
15026
  * @memberof JsonApiUserOut
14858
15027
  */
14859
- relationships?: JsonApiUserOutRelationships;
15028
+ relationships?: JsonApiUserPatchRelationships;
14860
15029
  }
14861
15030
  export declare const JsonApiUserOutTypeEnum: {
14862
15031
  readonly USER: "user";
14863
15032
  };
14864
15033
  export type JsonApiUserOutTypeEnum = typeof JsonApiUserOutTypeEnum[keyof typeof JsonApiUserOutTypeEnum];
14865
- /**
14866
- *
14867
- * @export
14868
- * @interface JsonApiUserOutAttributes
14869
- */
14870
- export interface JsonApiUserOutAttributes {
14871
- /**
14872
- *
14873
- * @type {string}
14874
- * @memberof JsonApiUserOutAttributes
14875
- */
14876
- authenticationId?: string;
14877
- /**
14878
- *
14879
- * @type {string}
14880
- * @memberof JsonApiUserOutAttributes
14881
- */
14882
- firstname?: string;
14883
- /**
14884
- *
14885
- * @type {string}
14886
- * @memberof JsonApiUserOutAttributes
14887
- */
14888
- lastname?: string;
14889
- /**
14890
- *
14891
- * @type {string}
14892
- * @memberof JsonApiUserOutAttributes
14893
- */
14894
- email?: string;
14895
- }
14896
15034
  /**
14897
15035
  *
14898
15036
  * @export
@@ -14938,10 +15076,10 @@ export interface JsonApiUserOutList {
14938
15076
  links?: ListLinks;
14939
15077
  /**
14940
15078
  *
14941
- * @type {JsonApiAnalyticalDashboardOutListMeta}
15079
+ * @type {JsonApiColorPaletteOutListMeta}
14942
15080
  * @memberof JsonApiUserOutList
14943
15081
  */
14944
- meta?: JsonApiAnalyticalDashboardOutListMeta;
15082
+ meta?: JsonApiColorPaletteOutListMeta;
14945
15083
  /**
14946
15084
  * Included resources
14947
15085
  * @type {Array<JsonApiUserGroupOutWithLinks>}
@@ -14949,32 +15087,6 @@ export interface JsonApiUserOutList {
14949
15087
  */
14950
15088
  included?: Array<JsonApiUserGroupOutWithLinks>;
14951
15089
  }
14952
- /**
14953
- *
14954
- * @export
14955
- * @interface JsonApiUserOutRelationships
14956
- */
14957
- export interface JsonApiUserOutRelationships {
14958
- /**
14959
- *
14960
- * @type {JsonApiUserOutRelationshipsUserGroups}
14961
- * @memberof JsonApiUserOutRelationships
14962
- */
14963
- userGroups?: JsonApiUserOutRelationshipsUserGroups;
14964
- }
14965
- /**
14966
- *
14967
- * @export
14968
- * @interface JsonApiUserOutRelationshipsUserGroups
14969
- */
14970
- export interface JsonApiUserOutRelationshipsUserGroups {
14971
- /**
14972
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
14973
- * @type {Array<JsonApiUserGroupLinkage>}
14974
- * @memberof JsonApiUserOutRelationshipsUserGroups
14975
- */
14976
- data: Array<JsonApiUserGroupLinkage>;
14977
- }
14978
15090
  /**
14979
15091
  *
14980
15092
  * @export
@@ -14995,16 +15107,16 @@ export interface JsonApiUserOutWithLinks {
14995
15107
  id: string;
14996
15108
  /**
14997
15109
  *
14998
- * @type {JsonApiUserOutAttributes}
15110
+ * @type {JsonApiUserPatchAttributes}
14999
15111
  * @memberof JsonApiUserOutWithLinks
15000
15112
  */
15001
- attributes?: JsonApiUserOutAttributes;
15113
+ attributes?: JsonApiUserPatchAttributes;
15002
15114
  /**
15003
15115
  *
15004
- * @type {JsonApiUserOutRelationships}
15116
+ * @type {JsonApiUserPatchRelationships}
15005
15117
  * @memberof JsonApiUserOutWithLinks
15006
15118
  */
15007
- relationships?: JsonApiUserOutRelationships;
15119
+ relationships?: JsonApiUserPatchRelationships;
15008
15120
  /**
15009
15121
  *
15010
15122
  * @type {ObjectLinks}
@@ -15036,21 +15148,52 @@ export interface JsonApiUserPatch {
15036
15148
  id: string;
15037
15149
  /**
15038
15150
  *
15039
- * @type {JsonApiUserOutAttributes}
15151
+ * @type {JsonApiUserPatchAttributes}
15040
15152
  * @memberof JsonApiUserPatch
15041
15153
  */
15042
- attributes?: JsonApiUserOutAttributes;
15154
+ attributes?: JsonApiUserPatchAttributes;
15043
15155
  /**
15044
15156
  *
15045
- * @type {JsonApiUserOutRelationships}
15157
+ * @type {JsonApiUserPatchRelationships}
15046
15158
  * @memberof JsonApiUserPatch
15047
15159
  */
15048
- relationships?: JsonApiUserOutRelationships;
15160
+ relationships?: JsonApiUserPatchRelationships;
15049
15161
  }
15050
15162
  export declare const JsonApiUserPatchTypeEnum: {
15051
15163
  readonly USER: "user";
15052
15164
  };
15053
15165
  export type JsonApiUserPatchTypeEnum = typeof JsonApiUserPatchTypeEnum[keyof typeof JsonApiUserPatchTypeEnum];
15166
+ /**
15167
+ *
15168
+ * @export
15169
+ * @interface JsonApiUserPatchAttributes
15170
+ */
15171
+ export interface JsonApiUserPatchAttributes {
15172
+ /**
15173
+ *
15174
+ * @type {string}
15175
+ * @memberof JsonApiUserPatchAttributes
15176
+ */
15177
+ authenticationId?: string;
15178
+ /**
15179
+ *
15180
+ * @type {string}
15181
+ * @memberof JsonApiUserPatchAttributes
15182
+ */
15183
+ firstname?: string;
15184
+ /**
15185
+ *
15186
+ * @type {string}
15187
+ * @memberof JsonApiUserPatchAttributes
15188
+ */
15189
+ lastname?: string;
15190
+ /**
15191
+ *
15192
+ * @type {string}
15193
+ * @memberof JsonApiUserPatchAttributes
15194
+ */
15195
+ email?: string;
15196
+ }
15054
15197
  /**
15055
15198
  *
15056
15199
  * @export
@@ -15064,6 +15207,19 @@ export interface JsonApiUserPatchDocument {
15064
15207
  */
15065
15208
  data: JsonApiUserPatch;
15066
15209
  }
15210
+ /**
15211
+ *
15212
+ * @export
15213
+ * @interface JsonApiUserPatchRelationships
15214
+ */
15215
+ export interface JsonApiUserPatchRelationships {
15216
+ /**
15217
+ *
15218
+ * @type {JsonApiUserGroupPatchRelationshipsParents}
15219
+ * @memberof JsonApiUserPatchRelationships
15220
+ */
15221
+ userGroups?: JsonApiUserGroupPatchRelationshipsParents;
15222
+ }
15067
15223
  /**
15068
15224
  * JSON:API representation of userSetting entity.
15069
15225
  * @export
@@ -15084,10 +15240,10 @@ export interface JsonApiUserSettingIn {
15084
15240
  id: string;
15085
15241
  /**
15086
15242
  *
15087
- * @type {JsonApiWorkspaceSettingOutAttributes}
15243
+ * @type {JsonApiOrganizationSettingPatchAttributes}
15088
15244
  * @memberof JsonApiUserSettingIn
15089
15245
  */
15090
- attributes?: JsonApiWorkspaceSettingOutAttributes;
15246
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
15091
15247
  }
15092
15248
  export declare const JsonApiUserSettingInTypeEnum: {
15093
15249
  readonly USER_SETTING: "userSetting";
@@ -15126,10 +15282,10 @@ export interface JsonApiUserSettingOut {
15126
15282
  id: string;
15127
15283
  /**
15128
15284
  *
15129
- * @type {JsonApiWorkspaceSettingOutAttributes}
15285
+ * @type {JsonApiOrganizationSettingPatchAttributes}
15130
15286
  * @memberof JsonApiUserSettingOut
15131
15287
  */
15132
- attributes?: JsonApiWorkspaceSettingOutAttributes;
15288
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
15133
15289
  }
15134
15290
  export declare const JsonApiUserSettingOutTypeEnum: {
15135
15291
  readonly USER_SETTING: "userSetting";
@@ -15174,10 +15330,10 @@ export interface JsonApiUserSettingOutList {
15174
15330
  links?: ListLinks;
15175
15331
  /**
15176
15332
  *
15177
- * @type {JsonApiAnalyticalDashboardOutListMeta}
15333
+ * @type {JsonApiColorPaletteOutListMeta}
15178
15334
  * @memberof JsonApiUserSettingOutList
15179
15335
  */
15180
- meta?: JsonApiAnalyticalDashboardOutListMeta;
15336
+ meta?: JsonApiColorPaletteOutListMeta;
15181
15337
  }
15182
15338
  /**
15183
15339
  *
@@ -15199,10 +15355,10 @@ export interface JsonApiUserSettingOutWithLinks {
15199
15355
  id: string;
15200
15356
  /**
15201
15357
  *
15202
- * @type {JsonApiWorkspaceSettingOutAttributes}
15358
+ * @type {JsonApiOrganizationSettingPatchAttributes}
15203
15359
  * @memberof JsonApiUserSettingOutWithLinks
15204
15360
  */
15205
- attributes?: JsonApiWorkspaceSettingOutAttributes;
15361
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
15206
15362
  /**
15207
15363
  *
15208
15364
  * @type {ObjectLinks}
@@ -15420,10 +15576,10 @@ export interface JsonApiVisualizationObjectOutList {
15420
15576
  links?: ListLinks;
15421
15577
  /**
15422
15578
  *
15423
- * @type {JsonApiAnalyticalDashboardOutListMeta}
15579
+ * @type {JsonApiColorPaletteOutListMeta}
15424
15580
  * @memberof JsonApiVisualizationObjectOutList
15425
15581
  */
15426
- meta?: JsonApiAnalyticalDashboardOutListMeta;
15582
+ meta?: JsonApiColorPaletteOutListMeta;
15427
15583
  /**
15428
15584
  * Included resources
15429
15585
  * @type {Array<JsonApiMetricOutIncludes>}
@@ -15914,10 +16070,10 @@ export interface JsonApiWorkspaceDataFilterOutList {
15914
16070
  links?: ListLinks;
15915
16071
  /**
15916
16072
  *
15917
- * @type {JsonApiAnalyticalDashboardOutListMeta}
16073
+ * @type {JsonApiColorPaletteOutListMeta}
15918
16074
  * @memberof JsonApiWorkspaceDataFilterOutList
15919
16075
  */
15920
- meta?: JsonApiAnalyticalDashboardOutListMeta;
16076
+ meta?: JsonApiColorPaletteOutListMeta;
15921
16077
  /**
15922
16078
  * Included resources
15923
16079
  * @type {Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>}
@@ -16228,10 +16384,10 @@ export interface JsonApiWorkspaceDataFilterSettingOutList {
16228
16384
  links?: ListLinks;
16229
16385
  /**
16230
16386
  *
16231
- * @type {JsonApiAnalyticalDashboardOutListMeta}
16387
+ * @type {JsonApiColorPaletteOutListMeta}
16232
16388
  * @memberof JsonApiWorkspaceDataFilterSettingOutList
16233
16389
  */
16234
- meta?: JsonApiAnalyticalDashboardOutListMeta;
16390
+ meta?: JsonApiColorPaletteOutListMeta;
16235
16391
  /**
16236
16392
  * Included resources
16237
16393
  * @type {Array<JsonApiWorkspaceDataFilterOutWithLinks>}
@@ -16386,16 +16542,16 @@ export interface JsonApiWorkspaceIn {
16386
16542
  id: string;
16387
16543
  /**
16388
16544
  *
16389
- * @type {JsonApiWorkspaceOutAttributes}
16545
+ * @type {JsonApiWorkspacePatchAttributes}
16390
16546
  * @memberof JsonApiWorkspaceIn
16391
16547
  */
16392
- attributes?: JsonApiWorkspaceOutAttributes;
16548
+ attributes?: JsonApiWorkspacePatchAttributes;
16393
16549
  /**
16394
16550
  *
16395
- * @type {JsonApiWorkspaceOutRelationships}
16551
+ * @type {JsonApiWorkspacePatchRelationships}
16396
16552
  * @memberof JsonApiWorkspaceIn
16397
16553
  */
16398
- relationships?: JsonApiWorkspaceOutRelationships;
16554
+ relationships?: JsonApiWorkspacePatchRelationships;
16399
16555
  }
16400
16556
  export declare const JsonApiWorkspaceInTypeEnum: {
16401
16557
  readonly WORKSPACE: "workspace";
@@ -16463,90 +16619,21 @@ export interface JsonApiWorkspaceOut {
16463
16619
  meta?: JsonApiWorkspaceOutMeta;
16464
16620
  /**
16465
16621
  *
16466
- * @type {JsonApiWorkspaceOutAttributes}
16622
+ * @type {JsonApiWorkspacePatchAttributes}
16467
16623
  * @memberof JsonApiWorkspaceOut
16468
16624
  */
16469
- attributes?: JsonApiWorkspaceOutAttributes;
16625
+ attributes?: JsonApiWorkspacePatchAttributes;
16470
16626
  /**
16471
16627
  *
16472
- * @type {JsonApiWorkspaceOutRelationships}
16628
+ * @type {JsonApiWorkspacePatchRelationships}
16473
16629
  * @memberof JsonApiWorkspaceOut
16474
16630
  */
16475
- relationships?: JsonApiWorkspaceOutRelationships;
16631
+ relationships?: JsonApiWorkspacePatchRelationships;
16476
16632
  }
16477
16633
  export declare const JsonApiWorkspaceOutTypeEnum: {
16478
16634
  readonly WORKSPACE: "workspace";
16479
16635
  };
16480
16636
  export type JsonApiWorkspaceOutTypeEnum = typeof JsonApiWorkspaceOutTypeEnum[keyof typeof JsonApiWorkspaceOutTypeEnum];
16481
- /**
16482
- *
16483
- * @export
16484
- * @interface JsonApiWorkspaceOutAttributes
16485
- */
16486
- export interface JsonApiWorkspaceOutAttributes {
16487
- /**
16488
- *
16489
- * @type {string}
16490
- * @memberof JsonApiWorkspaceOutAttributes
16491
- */
16492
- name?: string | null;
16493
- /**
16494
- * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
16495
- * @type {string}
16496
- * @memberof JsonApiWorkspaceOutAttributes
16497
- * @deprecated
16498
- */
16499
- earlyAccess?: string | null;
16500
- /**
16501
- * The early access feature identifiers. They are used to enable experimental features.
16502
- * @type {Array<string>}
16503
- * @memberof JsonApiWorkspaceOutAttributes
16504
- */
16505
- earlyAccessValues?: Array<string> | null;
16506
- /**
16507
- *
16508
- * @type {string}
16509
- * @memberof JsonApiWorkspaceOutAttributes
16510
- */
16511
- description?: string | null;
16512
- /**
16513
- * Custom prefix of entity identifiers in workspace
16514
- * @type {string}
16515
- * @memberof JsonApiWorkspaceOutAttributes
16516
- */
16517
- prefix?: string | null;
16518
- /**
16519
- *
16520
- * @type {number}
16521
- * @memberof JsonApiWorkspaceOutAttributes
16522
- */
16523
- cacheExtraLimit?: number;
16524
- /**
16525
- *
16526
- * @type {JsonApiWorkspaceOutAttributesDataSource}
16527
- * @memberof JsonApiWorkspaceOutAttributes
16528
- */
16529
- dataSource?: JsonApiWorkspaceOutAttributesDataSource;
16530
- }
16531
- /**
16532
- * 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.
16533
- * @export
16534
- * @interface JsonApiWorkspaceOutAttributesDataSource
16535
- */
16536
- export interface JsonApiWorkspaceOutAttributesDataSource {
16537
- /**
16538
- * The ID of the used data source.
16539
- * @type {string}
16540
- * @memberof JsonApiWorkspaceOutAttributesDataSource
16541
- */
16542
- id: string;
16543
- /**
16544
- * The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
16545
- * @type {Array<string>}
16546
- * @memberof JsonApiWorkspaceOutAttributesDataSource
16547
- */
16548
- schemaPath?: Array<string>;
16549
- }
16550
16637
  /**
16551
16638
  *
16552
16639
  * @export
@@ -16592,10 +16679,10 @@ export interface JsonApiWorkspaceOutList {
16592
16679
  links?: ListLinks;
16593
16680
  /**
16594
16681
  *
16595
- * @type {JsonApiAnalyticalDashboardOutListMeta}
16682
+ * @type {JsonApiColorPaletteOutListMeta}
16596
16683
  * @memberof JsonApiWorkspaceOutList
16597
16684
  */
16598
- meta?: JsonApiAnalyticalDashboardOutListMeta;
16685
+ meta?: JsonApiColorPaletteOutListMeta;
16599
16686
  /**
16600
16687
  * Included resources
16601
16688
  * @type {Array<JsonApiWorkspaceOutWithLinks>}
@@ -16696,32 +16783,6 @@ export interface JsonApiWorkspaceOutMetaHierarchy {
16696
16783
  */
16697
16784
  childrenCount: number;
16698
16785
  }
16699
- /**
16700
- *
16701
- * @export
16702
- * @interface JsonApiWorkspaceOutRelationships
16703
- */
16704
- export interface JsonApiWorkspaceOutRelationships {
16705
- /**
16706
- *
16707
- * @type {JsonApiWorkspaceOutRelationshipsParent}
16708
- * @memberof JsonApiWorkspaceOutRelationships
16709
- */
16710
- parent?: JsonApiWorkspaceOutRelationshipsParent;
16711
- }
16712
- /**
16713
- *
16714
- * @export
16715
- * @interface JsonApiWorkspaceOutRelationshipsParent
16716
- */
16717
- export interface JsonApiWorkspaceOutRelationshipsParent {
16718
- /**
16719
- *
16720
- * @type {JsonApiWorkspaceToOneLinkage}
16721
- * @memberof JsonApiWorkspaceOutRelationshipsParent
16722
- */
16723
- data: JsonApiWorkspaceToOneLinkage | null;
16724
- }
16725
16786
  /**
16726
16787
  *
16727
16788
  * @export
@@ -16748,16 +16809,16 @@ export interface JsonApiWorkspaceOutWithLinks {
16748
16809
  meta?: JsonApiWorkspaceOutMeta;
16749
16810
  /**
16750
16811
  *
16751
- * @type {JsonApiWorkspaceOutAttributes}
16812
+ * @type {JsonApiWorkspacePatchAttributes}
16752
16813
  * @memberof JsonApiWorkspaceOutWithLinks
16753
16814
  */
16754
- attributes?: JsonApiWorkspaceOutAttributes;
16815
+ attributes?: JsonApiWorkspacePatchAttributes;
16755
16816
  /**
16756
16817
  *
16757
- * @type {JsonApiWorkspaceOutRelationships}
16818
+ * @type {JsonApiWorkspacePatchRelationships}
16758
16819
  * @memberof JsonApiWorkspaceOutWithLinks
16759
16820
  */
16760
- relationships?: JsonApiWorkspaceOutRelationships;
16821
+ relationships?: JsonApiWorkspacePatchRelationships;
16761
16822
  /**
16762
16823
  *
16763
16824
  * @type {ObjectLinks}
@@ -16789,21 +16850,90 @@ export interface JsonApiWorkspacePatch {
16789
16850
  id: string;
16790
16851
  /**
16791
16852
  *
16792
- * @type {JsonApiWorkspaceOutAttributes}
16853
+ * @type {JsonApiWorkspacePatchAttributes}
16793
16854
  * @memberof JsonApiWorkspacePatch
16794
16855
  */
16795
- attributes?: JsonApiWorkspaceOutAttributes;
16856
+ attributes?: JsonApiWorkspacePatchAttributes;
16796
16857
  /**
16797
16858
  *
16798
- * @type {JsonApiWorkspaceOutRelationships}
16859
+ * @type {JsonApiWorkspacePatchRelationships}
16799
16860
  * @memberof JsonApiWorkspacePatch
16800
16861
  */
16801
- relationships?: JsonApiWorkspaceOutRelationships;
16862
+ relationships?: JsonApiWorkspacePatchRelationships;
16802
16863
  }
16803
16864
  export declare const JsonApiWorkspacePatchTypeEnum: {
16804
16865
  readonly WORKSPACE: "workspace";
16805
16866
  };
16806
16867
  export type JsonApiWorkspacePatchTypeEnum = typeof JsonApiWorkspacePatchTypeEnum[keyof typeof JsonApiWorkspacePatchTypeEnum];
16868
+ /**
16869
+ *
16870
+ * @export
16871
+ * @interface JsonApiWorkspacePatchAttributes
16872
+ */
16873
+ export interface JsonApiWorkspacePatchAttributes {
16874
+ /**
16875
+ *
16876
+ * @type {string}
16877
+ * @memberof JsonApiWorkspacePatchAttributes
16878
+ */
16879
+ name?: string | null;
16880
+ /**
16881
+ * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
16882
+ * @type {string}
16883
+ * @memberof JsonApiWorkspacePatchAttributes
16884
+ * @deprecated
16885
+ */
16886
+ earlyAccess?: string | null;
16887
+ /**
16888
+ * The early access feature identifiers. They are used to enable experimental features.
16889
+ * @type {Array<string>}
16890
+ * @memberof JsonApiWorkspacePatchAttributes
16891
+ */
16892
+ earlyAccessValues?: Array<string> | null;
16893
+ /**
16894
+ *
16895
+ * @type {string}
16896
+ * @memberof JsonApiWorkspacePatchAttributes
16897
+ */
16898
+ description?: string | null;
16899
+ /**
16900
+ * Custom prefix of entity identifiers in workspace
16901
+ * @type {string}
16902
+ * @memberof JsonApiWorkspacePatchAttributes
16903
+ */
16904
+ prefix?: string | null;
16905
+ /**
16906
+ *
16907
+ * @type {number}
16908
+ * @memberof JsonApiWorkspacePatchAttributes
16909
+ */
16910
+ cacheExtraLimit?: number;
16911
+ /**
16912
+ *
16913
+ * @type {JsonApiWorkspacePatchAttributesDataSource}
16914
+ * @memberof JsonApiWorkspacePatchAttributes
16915
+ */
16916
+ dataSource?: JsonApiWorkspacePatchAttributesDataSource;
16917
+ }
16918
+ /**
16919
+ * 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.
16920
+ * @export
16921
+ * @interface JsonApiWorkspacePatchAttributesDataSource
16922
+ */
16923
+ export interface JsonApiWorkspacePatchAttributesDataSource {
16924
+ /**
16925
+ * The ID of the used data source.
16926
+ * @type {string}
16927
+ * @memberof JsonApiWorkspacePatchAttributesDataSource
16928
+ */
16929
+ id: string;
16930
+ /**
16931
+ * The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
16932
+ * @type {Array<string>}
16933
+ * @memberof JsonApiWorkspacePatchAttributesDataSource
16934
+ */
16935
+ schemaPath?: Array<string>;
16936
+ }
16807
16937
  /**
16808
16938
  *
16809
16939
  * @export
@@ -16817,6 +16947,32 @@ export interface JsonApiWorkspacePatchDocument {
16817
16947
  */
16818
16948
  data: JsonApiWorkspacePatch;
16819
16949
  }
16950
+ /**
16951
+ *
16952
+ * @export
16953
+ * @interface JsonApiWorkspacePatchRelationships
16954
+ */
16955
+ export interface JsonApiWorkspacePatchRelationships {
16956
+ /**
16957
+ *
16958
+ * @type {JsonApiWorkspacePatchRelationshipsParent}
16959
+ * @memberof JsonApiWorkspacePatchRelationships
16960
+ */
16961
+ parent?: JsonApiWorkspacePatchRelationshipsParent;
16962
+ }
16963
+ /**
16964
+ *
16965
+ * @export
16966
+ * @interface JsonApiWorkspacePatchRelationshipsParent
16967
+ */
16968
+ export interface JsonApiWorkspacePatchRelationshipsParent {
16969
+ /**
16970
+ *
16971
+ * @type {JsonApiWorkspaceToOneLinkage}
16972
+ * @memberof JsonApiWorkspacePatchRelationshipsParent
16973
+ */
16974
+ data: JsonApiWorkspaceToOneLinkage | null;
16975
+ }
16820
16976
  /**
16821
16977
  * JSON:API representation of workspaceSetting entity.
16822
16978
  * @export
@@ -16837,10 +16993,10 @@ export interface JsonApiWorkspaceSettingIn {
16837
16993
  id: string;
16838
16994
  /**
16839
16995
  *
16840
- * @type {JsonApiWorkspaceSettingOutAttributes}
16996
+ * @type {JsonApiOrganizationSettingPatchAttributes}
16841
16997
  * @memberof JsonApiWorkspaceSettingIn
16842
16998
  */
16843
- attributes?: JsonApiWorkspaceSettingOutAttributes;
16999
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
16844
17000
  }
16845
17001
  export declare const JsonApiWorkspaceSettingInTypeEnum: {
16846
17002
  readonly WORKSPACE_SETTING: "workspaceSetting";
@@ -16885,56 +17041,15 @@ export interface JsonApiWorkspaceSettingOut {
16885
17041
  meta?: JsonApiVisualizationObjectOutMeta;
16886
17042
  /**
16887
17043
  *
16888
- * @type {JsonApiWorkspaceSettingOutAttributes}
17044
+ * @type {JsonApiOrganizationSettingPatchAttributes}
16889
17045
  * @memberof JsonApiWorkspaceSettingOut
16890
17046
  */
16891
- attributes?: JsonApiWorkspaceSettingOutAttributes;
17047
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
16892
17048
  }
16893
17049
  export declare const JsonApiWorkspaceSettingOutTypeEnum: {
16894
17050
  readonly WORKSPACE_SETTING: "workspaceSetting";
16895
17051
  };
16896
17052
  export type JsonApiWorkspaceSettingOutTypeEnum = typeof JsonApiWorkspaceSettingOutTypeEnum[keyof typeof JsonApiWorkspaceSettingOutTypeEnum];
16897
- /**
16898
- *
16899
- * @export
16900
- * @interface JsonApiWorkspaceSettingOutAttributes
16901
- */
16902
- export interface JsonApiWorkspaceSettingOutAttributes {
16903
- /**
16904
- * Free-form JSON content. Maximum supported length is 15000 characters.
16905
- * @type {object}
16906
- * @memberof JsonApiWorkspaceSettingOutAttributes
16907
- */
16908
- content?: object;
16909
- /**
16910
- *
16911
- * @type {string}
16912
- * @memberof JsonApiWorkspaceSettingOutAttributes
16913
- */
16914
- type?: JsonApiWorkspaceSettingOutAttributesTypeEnum;
16915
- }
16916
- export declare const JsonApiWorkspaceSettingOutAttributesTypeEnum: {
16917
- readonly TIMEZONE: "TIMEZONE";
16918
- readonly ACTIVE_THEME: "ACTIVE_THEME";
16919
- readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
16920
- readonly WHITE_LABELING: "WHITE_LABELING";
16921
- readonly LOCALE: "LOCALE";
16922
- readonly METADATA_LOCALE: "METADATA_LOCALE";
16923
- readonly FORMAT_LOCALE: "FORMAT_LOCALE";
16924
- readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
16925
- readonly WEEK_START: "WEEK_START";
16926
- readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
16927
- readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
16928
- readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
16929
- readonly OPENAI_CONFIG: "OPENAI_CONFIG";
16930
- readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
16931
- readonly ALERT: "ALERT";
16932
- readonly SEPARATORS: "SEPARATORS";
16933
- readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
16934
- readonly JIT_PROVISIONING: "JIT_PROVISIONING";
16935
- readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
16936
- };
16937
- export type JsonApiWorkspaceSettingOutAttributesTypeEnum = typeof JsonApiWorkspaceSettingOutAttributesTypeEnum[keyof typeof JsonApiWorkspaceSettingOutAttributesTypeEnum];
16938
17053
  /**
16939
17054
  *
16940
17055
  * @export
@@ -16974,10 +17089,10 @@ export interface JsonApiWorkspaceSettingOutList {
16974
17089
  links?: ListLinks;
16975
17090
  /**
16976
17091
  *
16977
- * @type {JsonApiAnalyticalDashboardOutListMeta}
17092
+ * @type {JsonApiColorPaletteOutListMeta}
16978
17093
  * @memberof JsonApiWorkspaceSettingOutList
16979
17094
  */
16980
- meta?: JsonApiAnalyticalDashboardOutListMeta;
17095
+ meta?: JsonApiColorPaletteOutListMeta;
16981
17096
  }
16982
17097
  /**
16983
17098
  *
@@ -17005,10 +17120,10 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
17005
17120
  meta?: JsonApiVisualizationObjectOutMeta;
17006
17121
  /**
17007
17122
  *
17008
- * @type {JsonApiWorkspaceSettingOutAttributes}
17123
+ * @type {JsonApiOrganizationSettingPatchAttributes}
17009
17124
  * @memberof JsonApiWorkspaceSettingOutWithLinks
17010
17125
  */
17011
- attributes?: JsonApiWorkspaceSettingOutAttributes;
17126
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
17012
17127
  /**
17013
17128
  *
17014
17129
  * @type {ObjectLinks}
@@ -17040,10 +17155,10 @@ export interface JsonApiWorkspaceSettingPatch {
17040
17155
  id: string;
17041
17156
  /**
17042
17157
  *
17043
- * @type {JsonApiWorkspaceSettingOutAttributes}
17158
+ * @type {JsonApiOrganizationSettingPatchAttributes}
17044
17159
  * @memberof JsonApiWorkspaceSettingPatch
17045
17160
  */
17046
- attributes?: JsonApiWorkspaceSettingOutAttributes;
17161
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
17047
17162
  }
17048
17163
  export declare const JsonApiWorkspaceSettingPatchTypeEnum: {
17049
17164
  readonly WORKSPACE_SETTING: "workspaceSetting";
@@ -17082,10 +17197,10 @@ export interface JsonApiWorkspaceSettingPostOptionalId {
17082
17197
  id?: string;
17083
17198
  /**
17084
17199
  *
17085
- * @type {JsonApiWorkspaceSettingOutAttributes}
17200
+ * @type {JsonApiOrganizationSettingPatchAttributes}
17086
17201
  * @memberof JsonApiWorkspaceSettingPostOptionalId
17087
17202
  */
17088
- attributes?: JsonApiWorkspaceSettingOutAttributes;
17203
+ attributes?: JsonApiOrganizationSettingPatchAttributes;
17089
17204
  }
17090
17205
  export declare const JsonApiWorkspaceSettingPostOptionalIdTypeEnum: {
17091
17206
  readonly WORKSPACE_SETTING: "workspaceSetting";
@@ -18336,6 +18451,7 @@ export declare const ResolvedSettingTypeEnum: {
18336
18451
  readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
18337
18452
  readonly JIT_PROVISIONING: "JIT_PROVISIONING";
18338
18453
  readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
18454
+ readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
18339
18455
  };
18340
18456
  export type ResolvedSettingTypeEnum = typeof ResolvedSettingTypeEnum[keyof typeof ResolvedSettingTypeEnum];
18341
18457
  /**
@@ -18433,13 +18549,13 @@ export interface RulePermission {
18433
18549
  */
18434
18550
  export interface RunningSection {
18435
18551
  /**
18436
- *
18552
+ * Either {{logo}} variable or custom text with combination of other variables.
18437
18553
  * @type {string}
18438
18554
  * @memberof RunningSection
18439
18555
  */
18440
18556
  left?: string | null;
18441
18557
  /**
18442
- *
18558
+ * Either {{logo}} variable or custom text with combination of other variables.
18443
18559
  * @type {string}
18444
18560
  * @memberof RunningSection
18445
18561
  */
@@ -19333,6 +19449,30 @@ export declare const WebhookAllOfTypeEnum: {
19333
19449
  readonly WEBHOOK: "WEBHOOK";
19334
19450
  };
19335
19451
  export type WebhookAllOfTypeEnum = typeof WebhookAllOfTypeEnum[keyof typeof WebhookAllOfTypeEnum];
19452
+ /**
19453
+ * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
19454
+ * @export
19455
+ * @interface WidgetSlidesTemplate
19456
+ */
19457
+ export interface WidgetSlidesTemplate {
19458
+ /**
19459
+ * Export types this template applies to.
19460
+ * @type {Array<string>}
19461
+ * @memberof WidgetSlidesTemplate
19462
+ */
19463
+ appliedOn: Array<WidgetSlidesTemplateAppliedOnEnum>;
19464
+ /**
19465
+ *
19466
+ * @type {ContentSlideTemplate}
19467
+ * @memberof WidgetSlidesTemplate
19468
+ */
19469
+ contentSlide?: ContentSlideTemplate | null;
19470
+ }
19471
+ export declare const WidgetSlidesTemplateAppliedOnEnum: {
19472
+ readonly PDF: "PDF";
19473
+ readonly PPTX: "PPTX";
19474
+ };
19475
+ export type WidgetSlidesTemplateAppliedOnEnum = typeof WidgetSlidesTemplateAppliedOnEnum[keyof typeof WidgetSlidesTemplateAppliedOnEnum];
19336
19476
  /**
19337
19477
  * 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.
19338
19478
  * @export
@@ -48819,6 +48959,13 @@ export declare const LayoutApiAxiosParamCreator: (configuration?: Configuration)
48819
48959
  * @throws {RequiredError}
48820
48960
  */
48821
48961
  getDataSourcesLayout: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
48962
+ /**
48963
+ * Gets complete layout of export templates.
48964
+ * @summary Get all export templates layout
48965
+ * @param {*} [options] Override http request option.
48966
+ * @throws {RequiredError}
48967
+ */
48968
+ getExportTemplatesLayout: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
48822
48969
  /**
48823
48970
  * Retrieve filter views for the specific workspace
48824
48971
  * @summary Get filter views
@@ -49011,6 +49158,14 @@ export declare const LayoutApiAxiosParamCreator: (configuration?: Configuration)
49011
49158
  * @throws {RequiredError}
49012
49159
  */
49013
49160
  setDataSourcePermissions: (dataSourceId: string, declarativeDataSourcePermissions: DeclarativeDataSourcePermissions, options?: AxiosRequestConfig) => Promise<RequestArgs>;
49161
+ /**
49162
+ * Sets export templates in organization.
49163
+ * @summary Set all export templates
49164
+ * @param {DeclarativeExportTemplates} declarativeExportTemplates
49165
+ * @param {*} [options] Override http request option.
49166
+ * @throws {RequiredError}
49167
+ */
49168
+ setExportTemplates: (declarativeExportTemplates: DeclarativeExportTemplates, options?: AxiosRequestConfig) => Promise<RequestArgs>;
49014
49169
  /**
49015
49170
  * Set filter views for the specific workspace.
49016
49171
  * @summary Set filter views
@@ -49152,6 +49307,13 @@ export declare const LayoutApiFp: (configuration?: Configuration) => {
49152
49307
  * @throws {RequiredError}
49153
49308
  */
49154
49309
  getDataSourcesLayout(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeclarativeDataSources>>;
49310
+ /**
49311
+ * Gets complete layout of export templates.
49312
+ * @summary Get all export templates layout
49313
+ * @param {*} [options] Override http request option.
49314
+ * @throws {RequiredError}
49315
+ */
49316
+ getExportTemplatesLayout(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeclarativeExportTemplates>>;
49155
49317
  /**
49156
49318
  * Retrieve filter views for the specific workspace
49157
49319
  * @summary Get filter views
@@ -49344,6 +49506,14 @@ export declare const LayoutApiFp: (configuration?: Configuration) => {
49344
49506
  * @throws {RequiredError}
49345
49507
  */
49346
49508
  setDataSourcePermissions(dataSourceId: string, declarativeDataSourcePermissions: DeclarativeDataSourcePermissions, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
49509
+ /**
49510
+ * Sets export templates in organization.
49511
+ * @summary Set all export templates
49512
+ * @param {DeclarativeExportTemplates} declarativeExportTemplates
49513
+ * @param {*} [options] Override http request option.
49514
+ * @throws {RequiredError}
49515
+ */
49516
+ setExportTemplates(declarativeExportTemplates: DeclarativeExportTemplates, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
49347
49517
  /**
49348
49518
  * Set filter views for the specific workspace.
49349
49519
  * @summary Set filter views
@@ -49483,6 +49653,13 @@ export declare const LayoutApiFactory: (configuration?: Configuration, basePath?
49483
49653
  * @throws {RequiredError}
49484
49654
  */
49485
49655
  getDataSourcesLayout(options?: AxiosRequestConfig): AxiosPromise<DeclarativeDataSources>;
49656
+ /**
49657
+ * Gets complete layout of export templates.
49658
+ * @summary Get all export templates layout
49659
+ * @param {*} [options] Override http request option.
49660
+ * @throws {RequiredError}
49661
+ */
49662
+ getExportTemplatesLayout(options?: AxiosRequestConfig): AxiosPromise<DeclarativeExportTemplates>;
49486
49663
  /**
49487
49664
  * Retrieve filter views for the specific workspace
49488
49665
  * @summary Get filter views
@@ -49668,6 +49845,14 @@ export declare const LayoutApiFactory: (configuration?: Configuration, basePath?
49668
49845
  * @throws {RequiredError}
49669
49846
  */
49670
49847
  setDataSourcePermissions(requestParameters: LayoutApiSetDataSourcePermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
49848
+ /**
49849
+ * Sets export templates in organization.
49850
+ * @summary Set all export templates
49851
+ * @param {LayoutApiSetExportTemplatesRequest} requestParameters Request parameters.
49852
+ * @param {*} [options] Override http request option.
49853
+ * @throws {RequiredError}
49854
+ */
49855
+ setExportTemplates(requestParameters: LayoutApiSetExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
49671
49856
  /**
49672
49857
  * Set filter views for the specific workspace.
49673
49858
  * @summary Set filter views
@@ -49806,6 +49991,14 @@ export interface LayoutApiInterface {
49806
49991
  * @memberof LayoutApiInterface
49807
49992
  */
49808
49993
  getDataSourcesLayout(options?: AxiosRequestConfig): AxiosPromise<DeclarativeDataSources>;
49994
+ /**
49995
+ * Gets complete layout of export templates.
49996
+ * @summary Get all export templates layout
49997
+ * @param {*} [options] Override http request option.
49998
+ * @throws {RequiredError}
49999
+ * @memberof LayoutApiInterface
50000
+ */
50001
+ getExportTemplatesLayout(options?: AxiosRequestConfig): AxiosPromise<DeclarativeExportTemplates>;
49809
50002
  /**
49810
50003
  * Retrieve filter views for the specific workspace
49811
50004
  * @summary Get filter views
@@ -50015,6 +50208,15 @@ export interface LayoutApiInterface {
50015
50208
  * @memberof LayoutApiInterface
50016
50209
  */
50017
50210
  setDataSourcePermissions(requestParameters: LayoutApiSetDataSourcePermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
50211
+ /**
50212
+ * Sets export templates in organization.
50213
+ * @summary Set all export templates
50214
+ * @param {LayoutApiSetExportTemplatesRequest} requestParameters Request parameters.
50215
+ * @param {*} [options] Override http request option.
50216
+ * @throws {RequiredError}
50217
+ * @memberof LayoutApiInterface
50218
+ */
50219
+ setExportTemplates(requestParameters: LayoutApiSetExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
50018
50220
  /**
50019
50221
  * Set filter views for the specific workspace.
50020
50222
  * @summary Set filter views
@@ -50438,6 +50640,19 @@ export interface LayoutApiSetDataSourcePermissionsRequest {
50438
50640
  */
50439
50641
  readonly declarativeDataSourcePermissions: DeclarativeDataSourcePermissions;
50440
50642
  }
50643
+ /**
50644
+ * Request parameters for setExportTemplates operation in LayoutApi.
50645
+ * @export
50646
+ * @interface LayoutApiSetExportTemplatesRequest
50647
+ */
50648
+ export interface LayoutApiSetExportTemplatesRequest {
50649
+ /**
50650
+ *
50651
+ * @type {DeclarativeExportTemplates}
50652
+ * @memberof LayoutApiSetExportTemplates
50653
+ */
50654
+ readonly declarativeExportTemplates: DeclarativeExportTemplates;
50655
+ }
50441
50656
  /**
50442
50657
  * Request parameters for setFilterViews operation in LayoutApi.
50443
50658
  * @export
@@ -50672,6 +50887,14 @@ export declare class LayoutApi extends BaseAPI implements LayoutApiInterface {
50672
50887
  * @memberof LayoutApi
50673
50888
  */
50674
50889
  getDataSourcesLayout(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeclarativeDataSources, any>>;
50890
+ /**
50891
+ * Gets complete layout of export templates.
50892
+ * @summary Get all export templates layout
50893
+ * @param {*} [options] Override http request option.
50894
+ * @throws {RequiredError}
50895
+ * @memberof LayoutApi
50896
+ */
50897
+ getExportTemplatesLayout(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeclarativeExportTemplates, any>>;
50675
50898
  /**
50676
50899
  * Retrieve filter views for the specific workspace
50677
50900
  * @summary Get filter views
@@ -50881,6 +51104,15 @@ export declare class LayoutApi extends BaseAPI implements LayoutApiInterface {
50881
51104
  * @memberof LayoutApi
50882
51105
  */
50883
51106
  setDataSourcePermissions(requestParameters: LayoutApiSetDataSourcePermissionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
51107
+ /**
51108
+ * Sets export templates in organization.
51109
+ * @summary Set all export templates
51110
+ * @param {LayoutApiSetExportTemplatesRequest} requestParameters Request parameters.
51111
+ * @param {*} [options] Override http request option.
51112
+ * @throws {RequiredError}
51113
+ * @memberof LayoutApi
51114
+ */
51115
+ setExportTemplates(requestParameters: LayoutApiSetExportTemplatesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
50884
51116
  /**
50885
51117
  * Set filter views for the specific workspace.
50886
51118
  * @summary Set filter views
@@ -51943,6 +52175,13 @@ export declare const NotificationChannelsApiAxiosParamCreator: (configuration?:
51943
52175
  * @throws {RequiredError}
51944
52176
  */
51945
52177
  getEntityNotificationChannels: (id: string, filter?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
52178
+ /**
52179
+ * Gets complete layout of export templates.
52180
+ * @summary Get all export templates layout
52181
+ * @param {*} [options] Override http request option.
52182
+ * @throws {RequiredError}
52183
+ */
52184
+ getExportTemplatesLayout: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
51946
52185
  /**
51947
52186
  * Gets complete layout of notification channels.
51948
52187
  * @summary Get all notification channels layout
@@ -51960,6 +52199,14 @@ export declare const NotificationChannelsApiAxiosParamCreator: (configuration?:
51960
52199
  * @throws {RequiredError}
51961
52200
  */
51962
52201
  patchEntityNotificationChannels: (id: string, jsonApiNotificationChannelPatchDocument: JsonApiNotificationChannelPatchDocument, filter?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
52202
+ /**
52203
+ * Sets export templates in organization.
52204
+ * @summary Set all export templates
52205
+ * @param {DeclarativeExportTemplates} declarativeExportTemplates
52206
+ * @param {*} [options] Override http request option.
52207
+ * @throws {RequiredError}
52208
+ */
52209
+ setExportTemplates: (declarativeExportTemplates: DeclarativeExportTemplates, options?: AxiosRequestConfig) => Promise<RequestArgs>;
51963
52210
  /**
51964
52211
  * Sets notification channels in organization.
51965
52212
  * @summary Set all notification channels
@@ -52022,6 +52269,13 @@ export declare const NotificationChannelsApiFp: (configuration?: Configuration)
52022
52269
  * @throws {RequiredError}
52023
52270
  */
52024
52271
  getEntityNotificationChannels(id: string, filter?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiNotificationChannelOutDocument>>;
52272
+ /**
52273
+ * Gets complete layout of export templates.
52274
+ * @summary Get all export templates layout
52275
+ * @param {*} [options] Override http request option.
52276
+ * @throws {RequiredError}
52277
+ */
52278
+ getExportTemplatesLayout(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeclarativeExportTemplates>>;
52025
52279
  /**
52026
52280
  * Gets complete layout of notification channels.
52027
52281
  * @summary Get all notification channels layout
@@ -52039,6 +52293,14 @@ export declare const NotificationChannelsApiFp: (configuration?: Configuration)
52039
52293
  * @throws {RequiredError}
52040
52294
  */
52041
52295
  patchEntityNotificationChannels(id: string, jsonApiNotificationChannelPatchDocument: JsonApiNotificationChannelPatchDocument, filter?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiNotificationChannelOutDocument>>;
52296
+ /**
52297
+ * Sets export templates in organization.
52298
+ * @summary Set all export templates
52299
+ * @param {DeclarativeExportTemplates} declarativeExportTemplates
52300
+ * @param {*} [options] Override http request option.
52301
+ * @throws {RequiredError}
52302
+ */
52303
+ setExportTemplates(declarativeExportTemplates: DeclarativeExportTemplates, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
52042
52304
  /**
52043
52305
  * Sets notification channels in organization.
52044
52306
  * @summary Set all notification channels
@@ -52095,6 +52357,13 @@ export declare const NotificationChannelsApiFactory: (configuration?: Configurat
52095
52357
  * @throws {RequiredError}
52096
52358
  */
52097
52359
  getEntityNotificationChannels(requestParameters: NotificationChannelsApiGetEntityNotificationChannelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelOutDocument>;
52360
+ /**
52361
+ * Gets complete layout of export templates.
52362
+ * @summary Get all export templates layout
52363
+ * @param {*} [options] Override http request option.
52364
+ * @throws {RequiredError}
52365
+ */
52366
+ getExportTemplatesLayout(options?: AxiosRequestConfig): AxiosPromise<DeclarativeExportTemplates>;
52098
52367
  /**
52099
52368
  * Gets complete layout of notification channels.
52100
52369
  * @summary Get all notification channels layout
@@ -52110,6 +52379,14 @@ export declare const NotificationChannelsApiFactory: (configuration?: Configurat
52110
52379
  * @throws {RequiredError}
52111
52380
  */
52112
52381
  patchEntityNotificationChannels(requestParameters: NotificationChannelsApiPatchEntityNotificationChannelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelOutDocument>;
52382
+ /**
52383
+ * Sets export templates in organization.
52384
+ * @summary Set all export templates
52385
+ * @param {NotificationChannelsApiSetExportTemplatesRequest} requestParameters Request parameters.
52386
+ * @param {*} [options] Override http request option.
52387
+ * @throws {RequiredError}
52388
+ */
52389
+ setExportTemplates(requestParameters: NotificationChannelsApiSetExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
52113
52390
  /**
52114
52391
  * Sets notification channels in organization.
52115
52392
  * @summary Set all notification channels
@@ -52169,6 +52446,14 @@ export interface NotificationChannelsApiInterface {
52169
52446
  * @memberof NotificationChannelsApiInterface
52170
52447
  */
52171
52448
  getEntityNotificationChannels(requestParameters: NotificationChannelsApiGetEntityNotificationChannelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelOutDocument>;
52449
+ /**
52450
+ * Gets complete layout of export templates.
52451
+ * @summary Get all export templates layout
52452
+ * @param {*} [options] Override http request option.
52453
+ * @throws {RequiredError}
52454
+ * @memberof NotificationChannelsApiInterface
52455
+ */
52456
+ getExportTemplatesLayout(options?: AxiosRequestConfig): AxiosPromise<DeclarativeExportTemplates>;
52172
52457
  /**
52173
52458
  * Gets complete layout of notification channels.
52174
52459
  * @summary Get all notification channels layout
@@ -52186,6 +52471,15 @@ export interface NotificationChannelsApiInterface {
52186
52471
  * @memberof NotificationChannelsApiInterface
52187
52472
  */
52188
52473
  patchEntityNotificationChannels(requestParameters: NotificationChannelsApiPatchEntityNotificationChannelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelOutDocument>;
52474
+ /**
52475
+ * Sets export templates in organization.
52476
+ * @summary Set all export templates
52477
+ * @param {NotificationChannelsApiSetExportTemplatesRequest} requestParameters Request parameters.
52478
+ * @param {*} [options] Override http request option.
52479
+ * @throws {RequiredError}
52480
+ * @memberof NotificationChannelsApiInterface
52481
+ */
52482
+ setExportTemplates(requestParameters: NotificationChannelsApiSetExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
52189
52483
  /**
52190
52484
  * Sets notification channels in organization.
52191
52485
  * @summary Set all notification channels
@@ -52318,6 +52612,19 @@ export interface NotificationChannelsApiPatchEntityNotificationChannelsRequest {
52318
52612
  */
52319
52613
  readonly filter?: string;
52320
52614
  }
52615
+ /**
52616
+ * Request parameters for setExportTemplates operation in NotificationChannelsApi.
52617
+ * @export
52618
+ * @interface NotificationChannelsApiSetExportTemplatesRequest
52619
+ */
52620
+ export interface NotificationChannelsApiSetExportTemplatesRequest {
52621
+ /**
52622
+ *
52623
+ * @type {DeclarativeExportTemplates}
52624
+ * @memberof NotificationChannelsApiSetExportTemplates
52625
+ */
52626
+ readonly declarativeExportTemplates: DeclarativeExportTemplates;
52627
+ }
52321
52628
  /**
52322
52629
  * Request parameters for setNotificationChannels operation in NotificationChannelsApi.
52323
52630
  * @export
@@ -52399,6 +52706,14 @@ export declare class NotificationChannelsApi extends BaseAPI implements Notifica
52399
52706
  * @memberof NotificationChannelsApi
52400
52707
  */
52401
52708
  getEntityNotificationChannels(requestParameters: NotificationChannelsApiGetEntityNotificationChannelsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonApiNotificationChannelOutDocument, any>>;
52709
+ /**
52710
+ * Gets complete layout of export templates.
52711
+ * @summary Get all export templates layout
52712
+ * @param {*} [options] Override http request option.
52713
+ * @throws {RequiredError}
52714
+ * @memberof NotificationChannelsApi
52715
+ */
52716
+ getExportTemplatesLayout(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeclarativeExportTemplates, any>>;
52402
52717
  /**
52403
52718
  * Gets complete layout of notification channels.
52404
52719
  * @summary Get all notification channels layout
@@ -52416,6 +52731,15 @@ export declare class NotificationChannelsApi extends BaseAPI implements Notifica
52416
52731
  * @memberof NotificationChannelsApi
52417
52732
  */
52418
52733
  patchEntityNotificationChannels(requestParameters: NotificationChannelsApiPatchEntityNotificationChannelsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonApiNotificationChannelOutDocument, any>>;
52734
+ /**
52735
+ * Sets export templates in organization.
52736
+ * @summary Set all export templates
52737
+ * @param {NotificationChannelsApiSetExportTemplatesRequest} requestParameters Request parameters.
52738
+ * @param {*} [options] Override http request option.
52739
+ * @throws {RequiredError}
52740
+ * @memberof NotificationChannelsApi
52741
+ */
52742
+ setExportTemplates(requestParameters: NotificationChannelsApiSetExportTemplatesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
52419
52743
  /**
52420
52744
  * Sets notification channels in organization.
52421
52745
  * @summary Set all notification channels