@gooddata/api-client-tiger 10.35.0-alpha.51 → 10.35.0-alpha.53

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/esm/__version.d.ts +1 -1
  2. package/esm/__version.js +1 -1
  3. package/esm/api-client-tiger.d.ts +874 -881
  4. package/esm/generated/afm-rest-api/api.d.ts +13 -12
  5. package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
  6. package/esm/generated/afm-rest-api/api.js +11 -4
  7. package/esm/generated/afm-rest-api/api.js.map +1 -1
  8. package/esm/generated/afm-rest-api/configuration.d.ts.map +1 -1
  9. package/esm/generated/afm-rest-api/configuration.js +2 -14
  10. package/esm/generated/afm-rest-api/configuration.js.map +1 -1
  11. package/esm/generated/afm-rest-api/openapi-spec.json +8 -5
  12. package/esm/generated/auth-json-api/api.d.ts +561 -0
  13. package/esm/generated/auth-json-api/api.d.ts.map +1 -1
  14. package/esm/generated/auth-json-api/api.js +696 -0
  15. package/esm/generated/auth-json-api/api.js.map +1 -1
  16. package/esm/generated/auth-json-api/configuration.d.ts.map +1 -1
  17. package/esm/generated/auth-json-api/configuration.js +2 -14
  18. package/esm/generated/auth-json-api/configuration.js.map +1 -1
  19. package/esm/generated/auth-json-api/openapi-spec.json +166 -0
  20. package/esm/generated/automation-json-api/api.d.ts +2 -6
  21. package/esm/generated/automation-json-api/api.d.ts.map +1 -1
  22. package/esm/generated/automation-json-api/api.js +2 -0
  23. package/esm/generated/automation-json-api/api.js.map +1 -1
  24. package/esm/generated/automation-json-api/configuration.js +1 -1
  25. package/esm/generated/automation-json-api/configuration.js.map +1 -1
  26. package/esm/generated/automation-json-api/openapi-spec.json +3 -4
  27. package/esm/generated/export-json-api/api.d.ts +2 -6
  28. package/esm/generated/export-json-api/api.d.ts.map +1 -1
  29. package/esm/generated/export-json-api/api.js +2 -0
  30. package/esm/generated/export-json-api/api.js.map +1 -1
  31. package/esm/generated/export-json-api/configuration.d.ts.map +1 -1
  32. package/esm/generated/export-json-api/configuration.js +2 -14
  33. package/esm/generated/export-json-api/configuration.js.map +1 -1
  34. package/esm/generated/export-json-api/openapi-spec.json +3 -4
  35. package/esm/generated/metadata-json-api/api.d.ts +837 -836
  36. package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
  37. package/esm/generated/metadata-json-api/api.js +32 -25
  38. package/esm/generated/metadata-json-api/api.js.map +1 -1
  39. package/esm/generated/metadata-json-api/configuration.d.ts.map +1 -1
  40. package/esm/generated/metadata-json-api/configuration.js +2 -14
  41. package/esm/generated/metadata-json-api/configuration.js.map +1 -1
  42. package/esm/generated/metadata-json-api/openapi-spec.json +4152 -4148
  43. package/esm/generated/result-json-api/base.d.ts.map +1 -1
  44. package/esm/generated/result-json-api/base.js +1 -1
  45. package/esm/generated/result-json-api/base.js.map +1 -1
  46. package/esm/generated/result-json-api/configuration.d.ts.map +1 -1
  47. package/esm/generated/result-json-api/configuration.js +2 -14
  48. package/esm/generated/result-json-api/configuration.js.map +1 -1
  49. package/esm/generated/result-json-api/openapi-spec.json +1 -1
  50. package/package.json +3 -3
@@ -1187,7 +1187,7 @@ export declare interface ActionsApiExplainAFMRequest {
1187
1187
  */
1188
1188
  readonly afmExecution: AfmExecution;
1189
1189
  /**
1190
- * Requested explain type. If not specified all types are bundled in a ZIP archive. `MAQL` - MAQL Abstract Syntax Tree, execution dimensions and related info `GRPC_MODEL` - Datasets used in execution `GRPC_MODEL_SVG` - Generated SVG image of the datasets `WDF` - Workspace data filters in execution workspace context `QT` - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL `QT_SVG` - Generated SVG image of the Query Tree `OPT_QT` - Optimized Query Tree `OPT_QT_SVG` - Generated SVG image of the Optimized Query Tree `SQL` - Final SQL to be executed `SETTINGS` - Settings used to execute explain request
1190
+ * Requested explain type. If not specified all types are bundled in a ZIP archive. `MAQL` - MAQL Abstract Syntax Tree, execution dimensions and related info `GRPC_MODEL` - Datasets used in execution `GRPC_MODEL_SVG` - Generated SVG image of the datasets `COMPRESSED_GRPC_MODEL_SVG` - Generated SVG image of the model fragment used in the query `WDF` - Workspace data filters in execution workspace context `QT` - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL `QT_SVG` - Generated SVG image of the Query Tree `OPT_QT` - Optimized Query Tree `OPT_QT_SVG` - Generated SVG image of the Optimized Query Tree `SQL` - Final SQL to be executed `COMPRESSED_SQL` - Final SQL to be executed with rolled SQL datasets `SETTINGS` - Settings used to execute explain request
1191
1191
  * @type {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS' | 'COMPRESSED_SQL'}
1192
1192
  * @memberof ActionsApiExplainAFM
1193
1193
  */
@@ -4818,7 +4818,7 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
4818
4818
  * @summary AFM explain resource.
4819
4819
  * @param {string} workspaceId Workspace identifier
4820
4820
  * @param {AfmExecution} afmExecution
4821
- * @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS' | 'COMPRESSED_SQL'} [explainType] Requested explain type. If not specified all types are bundled in a ZIP archive. `MAQL` - MAQL Abstract Syntax Tree, execution dimensions and related info `GRPC_MODEL` - Datasets used in execution `GRPC_MODEL_SVG` - Generated SVG image of the datasets `WDF` - Workspace data filters in execution workspace context `QT` - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL `QT_SVG` - Generated SVG image of the Query Tree `OPT_QT` - Optimized Query Tree `OPT_QT_SVG` - Generated SVG image of the Optimized Query Tree `SQL` - Final SQL to be executed `SETTINGS` - Settings used to execute explain request
4821
+ * @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS' | 'COMPRESSED_SQL'} [explainType] Requested explain type. If not specified all types are bundled in a ZIP archive. `MAQL` - MAQL Abstract Syntax Tree, execution dimensions and related info `GRPC_MODEL` - Datasets used in execution `GRPC_MODEL_SVG` - Generated SVG image of the datasets `COMPRESSED_GRPC_MODEL_SVG` - Generated SVG image of the model fragment used in the query `WDF` - Workspace data filters in execution workspace context `QT` - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL `QT_SVG` - Generated SVG image of the Query Tree `OPT_QT` - Optimized Query Tree `OPT_QT_SVG` - Generated SVG image of the Optimized Query Tree `SQL` - Final SQL to be executed `COMPRESSED_SQL` - Final SQL to be executed with rolled SQL datasets `SETTINGS` - Settings used to execute explain request
4822
4822
  * @param {*} [options] Override http request option.
4823
4823
  * @throws {RequiredError}
4824
4824
  */
@@ -5245,7 +5245,7 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
5245
5245
  * @summary AFM explain resource.
5246
5246
  * @param {string} workspaceId Workspace identifier
5247
5247
  * @param {AfmExecution} afmExecution
5248
- * @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS' | 'COMPRESSED_SQL'} [explainType] Requested explain type. If not specified all types are bundled in a ZIP archive. `MAQL` - MAQL Abstract Syntax Tree, execution dimensions and related info `GRPC_MODEL` - Datasets used in execution `GRPC_MODEL_SVG` - Generated SVG image of the datasets `WDF` - Workspace data filters in execution workspace context `QT` - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL `QT_SVG` - Generated SVG image of the Query Tree `OPT_QT` - Optimized Query Tree `OPT_QT_SVG` - Generated SVG image of the Optimized Query Tree `SQL` - Final SQL to be executed `SETTINGS` - Settings used to execute explain request
5248
+ * @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS' | 'COMPRESSED_SQL'} [explainType] Requested explain type. If not specified all types are bundled in a ZIP archive. `MAQL` - MAQL Abstract Syntax Tree, execution dimensions and related info `GRPC_MODEL` - Datasets used in execution `GRPC_MODEL_SVG` - Generated SVG image of the datasets `COMPRESSED_GRPC_MODEL_SVG` - Generated SVG image of the model fragment used in the query `WDF` - Workspace data filters in execution workspace context `QT` - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL `QT_SVG` - Generated SVG image of the Query Tree `OPT_QT` - Optimized Query Tree `OPT_QT_SVG` - Generated SVG image of the Optimized Query Tree `SQL` - Final SQL to be executed `COMPRESSED_SQL` - Final SQL to be executed with rolled SQL datasets `SETTINGS` - Settings used to execute explain request
5249
5249
  * @param {*} [options] Override http request option.
5250
5250
  * @throws {RequiredError}
5251
5251
  */
@@ -5645,12 +5645,6 @@ export declare interface AfmAttributeItem {
5645
5645
  * @interface BoundedFilter
5646
5646
  */
5647
5647
  export declare interface AfmBoundedFilter {
5648
- /**
5649
- *
5650
- * @type {AfmObjectIdentifierDataset}
5651
- * @memberof BoundedFilter
5652
- */
5653
- dataset: AfmModelObjectIdentifierDataset;
5654
5648
  /**
5655
5649
  * Date granularity specifying particular date attribute in given dimension.
5656
5650
  * @type {string}
@@ -5683,6 +5677,7 @@ export declare const AfmBoundedFilterGranularityEnum: {
5683
5677
  readonly HOUR_OF_DAY: "HOUR_OF_DAY";
5684
5678
  readonly DAY_OF_WEEK: "DAY_OF_WEEK";
5685
5679
  readonly DAY_OF_MONTH: "DAY_OF_MONTH";
5680
+ readonly DAY_OF_QUARTER: "DAY_OF_QUARTER";
5686
5681
  readonly DAY_OF_YEAR: "DAY_OF_YEAR";
5687
5682
  readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
5688
5683
  readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
@@ -6880,6 +6875,7 @@ export declare const AfmRelativeDateFilterRelativeDateFilterGranularityEnum: {
6880
6875
  readonly HOUR_OF_DAY: "HOUR_OF_DAY";
6881
6876
  readonly DAY_OF_WEEK: "DAY_OF_WEEK";
6882
6877
  readonly DAY_OF_MONTH: "DAY_OF_MONTH";
6878
+ readonly DAY_OF_QUARTER: "DAY_OF_QUARTER";
6883
6879
  readonly DAY_OF_YEAR: "DAY_OF_YEAR";
6884
6880
  readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
6885
6881
  readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
@@ -9188,6 +9184,7 @@ export declare const AttributeHeaderAttributeHeaderGranularityEnum: {
9188
9184
  readonly HOUR_OF_DAY: "HOUR_OF_DAY";
9189
9185
  readonly DAY_OF_WEEK: "DAY_OF_WEEK";
9190
9186
  readonly DAY_OF_MONTH: "DAY_OF_MONTH";
9187
+ readonly DAY_OF_QUARTER: "DAY_OF_QUARTER";
9191
9188
  readonly DAY_OF_YEAR: "DAY_OF_YEAR";
9192
9189
  readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
9193
9190
  readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
@@ -11203,12 +11200,6 @@ export declare class AutomationBaseAPI {
11203
11200
  * @interface AutomationBoundedFilter
11204
11201
  */
11205
11202
  export declare interface AutomationBoundedFilter {
11206
- /**
11207
- *
11208
- * @type {AutomationAfmObjectIdentifierDataset}
11209
- * @memberof AutomationBoundedFilter
11210
- */
11211
- dataset: AutomationAfmObjectIdentifierDataset;
11212
11203
  /**
11213
11204
  * Date granularity specifying particular date attribute in given dimension.
11214
11205
  * @type {string}
@@ -11241,6 +11232,7 @@ export declare const AutomationBoundedFilterGranularityEnum: {
11241
11232
  readonly HOUR_OF_DAY: "HOUR_OF_DAY";
11242
11233
  readonly DAY_OF_WEEK: "DAY_OF_WEEK";
11243
11234
  readonly DAY_OF_MONTH: "DAY_OF_MONTH";
11235
+ readonly DAY_OF_QUARTER: "DAY_OF_QUARTER";
11244
11236
  readonly DAY_OF_YEAR: "DAY_OF_YEAR";
11245
11237
  readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
11246
11238
  readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
@@ -13158,6 +13150,7 @@ export declare const AutomationRelativeDateFilterRelativeDateFilterGranularityEn
13158
13150
  readonly HOUR_OF_DAY: "HOUR_OF_DAY";
13159
13151
  readonly DAY_OF_WEEK: "DAY_OF_WEEK";
13160
13152
  readonly DAY_OF_MONTH: "DAY_OF_MONTH";
13153
+ readonly DAY_OF_QUARTER: "DAY_OF_QUARTER";
13161
13154
  readonly DAY_OF_YEAR: "DAY_OF_YEAR";
13162
13155
  readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
13163
13156
  readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
@@ -15081,12 +15074,6 @@ export declare interface AvailableDriversApiInterface {
15081
15074
  * @interface BoundedFilter
15082
15075
  */
15083
15076
  export declare interface BoundedFilter {
15084
- /**
15085
- *
15086
- * @type {AfmObjectIdentifierDataset}
15087
- * @memberof BoundedFilter
15088
- */
15089
- dataset: AfmObjectIdentifierDataset;
15090
15077
  /**
15091
15078
  * Date granularity specifying particular date attribute in given dimension.
15092
15079
  * @type {string}
@@ -15119,6 +15106,7 @@ export declare const BoundedFilterGranularityEnum: {
15119
15106
  readonly HOUR_OF_DAY: "HOUR_OF_DAY";
15120
15107
  readonly DAY_OF_WEEK: "DAY_OF_WEEK";
15121
15108
  readonly DAY_OF_MONTH: "DAY_OF_MONTH";
15109
+ readonly DAY_OF_QUARTER: "DAY_OF_QUARTER";
15122
15110
  readonly DAY_OF_YEAR: "DAY_OF_YEAR";
15123
15111
  readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
15124
15112
  readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
@@ -21695,6 +21683,7 @@ export declare const DateRelativeFilterGranularityEnum: {
21695
21683
  readonly HOUR_OF_DAY: "HOUR_OF_DAY";
21696
21684
  readonly DAY_OF_WEEK: "DAY_OF_WEEK";
21697
21685
  readonly DAY_OF_MONTH: "DAY_OF_MONTH";
21686
+ readonly DAY_OF_QUARTER: "DAY_OF_QUARTER";
21698
21687
  readonly DAY_OF_YEAR: "DAY_OF_YEAR";
21699
21688
  readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
21700
21689
  readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
@@ -22957,6 +22946,7 @@ export declare const DeclarativeDateDatasetGranularitiesEnum: {
22957
22946
  readonly HOUR_OF_DAY: "HOUR_OF_DAY";
22958
22947
  readonly DAY_OF_WEEK: "DAY_OF_WEEK";
22959
22948
  readonly DAY_OF_MONTH: "DAY_OF_MONTH";
22949
+ readonly DAY_OF_QUARTER: "DAY_OF_QUARTER";
22960
22950
  readonly DAY_OF_YEAR: "DAY_OF_YEAR";
22961
22951
  readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
22962
22952
  readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
@@ -23362,6 +23352,7 @@ export declare type DeclarativeIdentityProviderIdentifierTypeEnum = (typeof Decl
23362
23352
  export declare const DeclarativeIdentityProviderIdpTypeEnum: {
23363
23353
  readonly MANAGED_IDP: "MANAGED_IDP";
23364
23354
  readonly FIM_IDP: "FIM_IDP";
23355
+ readonly DEX_IDP: "DEX_IDP";
23365
23356
  readonly CUSTOM_IDP: "CUSTOM_IDP";
23366
23357
  };
23367
23358
 
@@ -25644,6 +25635,7 @@ export declare const ElementsResponseGranularityEnum: {
25644
25635
  readonly HOUR_OF_DAY: "HOUR_OF_DAY";
25645
25636
  readonly DAY_OF_WEEK: "DAY_OF_WEEK";
25646
25637
  readonly DAY_OF_MONTH: "DAY_OF_MONTH";
25638
+ readonly DAY_OF_QUARTER: "DAY_OF_QUARTER";
25647
25639
  readonly DAY_OF_YEAR: "DAY_OF_YEAR";
25648
25640
  readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
25649
25641
  readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
@@ -42785,12 +42777,6 @@ export declare class ExportBaseAPI {
42785
42777
  * @interface ExportBoundedFilter
42786
42778
  */
42787
42779
  export declare interface ExportBoundedFilter {
42788
- /**
42789
- *
42790
- * @type {ExportAfmObjectIdentifierDataset}
42791
- * @memberof ExportBoundedFilter
42792
- */
42793
- dataset: ExportAfmObjectIdentifierDataset;
42794
42780
  /**
42795
42781
  * Date granularity specifying particular date attribute in given dimension.
42796
42782
  * @type {string}
@@ -42823,6 +42809,7 @@ export declare const ExportBoundedFilterGranularityEnum: {
42823
42809
  readonly HOUR_OF_DAY: "HOUR_OF_DAY";
42824
42810
  readonly DAY_OF_WEEK: "DAY_OF_WEEK";
42825
42811
  readonly DAY_OF_MONTH: "DAY_OF_MONTH";
42812
+ readonly DAY_OF_QUARTER: "DAY_OF_QUARTER";
42826
42813
  readonly DAY_OF_YEAR: "DAY_OF_YEAR";
42827
42814
  readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
42828
42815
  readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
@@ -44789,6 +44776,7 @@ export declare const ExportRelativeDateFilterRelativeDateFilterGranularityEnum:
44789
44776
  readonly HOUR_OF_DAY: "HOUR_OF_DAY";
44790
44777
  readonly DAY_OF_WEEK: "DAY_OF_WEEK";
44791
44778
  readonly DAY_OF_MONTH: "DAY_OF_MONTH";
44779
+ readonly DAY_OF_QUARTER: "DAY_OF_QUARTER";
44792
44780
  readonly DAY_OF_YEAR: "DAY_OF_YEAR";
44793
44781
  readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
44794
44782
  readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
@@ -49209,10 +49197,10 @@ export declare interface JsonApiAggregatedFactOutList {
49209
49197
  links?: ListLinks;
49210
49198
  /**
49211
49199
  *
49212
- * @type {JsonApiColorPaletteOutListMeta}
49200
+ * @type {JsonApiAggregatedFactOutListMeta}
49213
49201
  * @memberof JsonApiAggregatedFactOutList
49214
49202
  */
49215
- meta?: JsonApiColorPaletteOutListMeta;
49203
+ meta?: JsonApiAggregatedFactOutListMeta;
49216
49204
  /**
49217
49205
  * Included resources
49218
49206
  * @type {Array<JsonApiAggregatedFactOutIncludes>}
@@ -49221,6 +49209,20 @@ export declare interface JsonApiAggregatedFactOutList {
49221
49209
  included?: Array<JsonApiAggregatedFactOutIncludes>;
49222
49210
  }
49223
49211
 
49212
+ /**
49213
+ *
49214
+ * @export
49215
+ * @interface JsonApiAggregatedFactOutListMeta
49216
+ */
49217
+ export declare interface JsonApiAggregatedFactOutListMeta {
49218
+ /**
49219
+ *
49220
+ * @type {PageMetadata}
49221
+ * @memberof JsonApiAggregatedFactOutListMeta
49222
+ */
49223
+ page?: PageMetadata;
49224
+ }
49225
+
49224
49226
  /**
49225
49227
  *
49226
49228
  * @export
@@ -49331,48 +49333,10 @@ export declare interface JsonApiAnalyticalDashboardIn {
49331
49333
  id: string;
49332
49334
  /**
49333
49335
  *
49334
- * @type {JsonApiAnalyticalDashboardInAttributes}
49336
+ * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
49335
49337
  * @memberof JsonApiAnalyticalDashboardIn
49336
49338
  */
49337
- attributes: JsonApiAnalyticalDashboardInAttributes;
49338
- }
49339
-
49340
- /**
49341
- *
49342
- * @export
49343
- * @interface JsonApiAnalyticalDashboardInAttributes
49344
- */
49345
- export declare interface JsonApiAnalyticalDashboardInAttributes {
49346
- /**
49347
- *
49348
- * @type {string}
49349
- * @memberof JsonApiAnalyticalDashboardInAttributes
49350
- */
49351
- title?: string;
49352
- /**
49353
- *
49354
- * @type {string}
49355
- * @memberof JsonApiAnalyticalDashboardInAttributes
49356
- */
49357
- description?: string;
49358
- /**
49359
- *
49360
- * @type {Array<string>}
49361
- * @memberof JsonApiAnalyticalDashboardInAttributes
49362
- */
49363
- tags?: Array<string>;
49364
- /**
49365
- *
49366
- * @type {boolean}
49367
- * @memberof JsonApiAnalyticalDashboardInAttributes
49368
- */
49369
- areRelationsValid?: boolean;
49370
- /**
49371
- * Free-form JSON content. Maximum supported length is 250000 characters.
49372
- * @type {object}
49373
- * @memberof JsonApiAnalyticalDashboardInAttributes
49374
- */
49375
- content: object;
49339
+ attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
49376
49340
  }
49377
49341
 
49378
49342
  /**
@@ -49511,10 +49475,10 @@ export declare interface JsonApiAnalyticalDashboardOutList {
49511
49475
  links?: ListLinks;
49512
49476
  /**
49513
49477
  *
49514
- * @type {JsonApiColorPaletteOutListMeta}
49478
+ * @type {JsonApiAggregatedFactOutListMeta}
49515
49479
  * @memberof JsonApiAnalyticalDashboardOutList
49516
49480
  */
49517
- meta?: JsonApiColorPaletteOutListMeta;
49481
+ meta?: JsonApiAggregatedFactOutListMeta;
49518
49482
  /**
49519
49483
  * Included resources
49520
49484
  * @type {Array<JsonApiAnalyticalDashboardOutIncludes>}
@@ -49849,10 +49813,48 @@ export declare interface JsonApiAnalyticalDashboardPostOptionalId {
49849
49813
  id?: string;
49850
49814
  /**
49851
49815
  *
49852
- * @type {JsonApiAnalyticalDashboardInAttributes}
49816
+ * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
49853
49817
  * @memberof JsonApiAnalyticalDashboardPostOptionalId
49854
49818
  */
49855
- attributes: JsonApiAnalyticalDashboardInAttributes;
49819
+ attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
49820
+ }
49821
+
49822
+ /**
49823
+ *
49824
+ * @export
49825
+ * @interface JsonApiAnalyticalDashboardPostOptionalIdAttributes
49826
+ */
49827
+ export declare interface JsonApiAnalyticalDashboardPostOptionalIdAttributes {
49828
+ /**
49829
+ *
49830
+ * @type {string}
49831
+ * @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
49832
+ */
49833
+ title?: string;
49834
+ /**
49835
+ *
49836
+ * @type {string}
49837
+ * @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
49838
+ */
49839
+ description?: string;
49840
+ /**
49841
+ *
49842
+ * @type {Array<string>}
49843
+ * @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
49844
+ */
49845
+ tags?: Array<string>;
49846
+ /**
49847
+ *
49848
+ * @type {boolean}
49849
+ * @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
49850
+ */
49851
+ areRelationsValid?: boolean;
49852
+ /**
49853
+ * Free-form JSON content. Maximum supported length is 250000 characters.
49854
+ * @type {object}
49855
+ * @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
49856
+ */
49857
+ content: object;
49856
49858
  }
49857
49859
 
49858
49860
  /**
@@ -50002,10 +50004,10 @@ export declare interface JsonApiApiTokenOutList {
50002
50004
  links?: ListLinks;
50003
50005
  /**
50004
50006
  *
50005
- * @type {JsonApiColorPaletteOutListMeta}
50007
+ * @type {JsonApiAggregatedFactOutListMeta}
50006
50008
  * @memberof JsonApiApiTokenOutList
50007
50009
  */
50008
- meta?: JsonApiColorPaletteOutListMeta;
50010
+ meta?: JsonApiAggregatedFactOutListMeta;
50009
50011
  }
50010
50012
 
50011
50013
  export declare const JsonApiApiTokenOutTypeEnum: {
@@ -50302,10 +50304,10 @@ export declare interface JsonApiAttributeHierarchyOutList {
50302
50304
  links?: ListLinks;
50303
50305
  /**
50304
50306
  *
50305
- * @type {JsonApiColorPaletteOutListMeta}
50307
+ * @type {JsonApiAggregatedFactOutListMeta}
50306
50308
  * @memberof JsonApiAttributeHierarchyOutList
50307
50309
  */
50308
- meta?: JsonApiColorPaletteOutListMeta;
50310
+ meta?: JsonApiAggregatedFactOutListMeta;
50309
50311
  /**
50310
50312
  * Included resources
50311
50313
  * @type {Array<JsonApiAttributeHierarchyOutIncludes>}
@@ -50580,6 +50582,7 @@ export declare const JsonApiAttributeOutAttributesGranularityEnum: {
50580
50582
  readonly HOUR_OF_DAY: "HOUR_OF_DAY";
50581
50583
  readonly DAY_OF_WEEK: "DAY_OF_WEEK";
50582
50584
  readonly DAY_OF_MONTH: "DAY_OF_MONTH";
50585
+ readonly DAY_OF_QUARTER: "DAY_OF_QUARTER";
50583
50586
  readonly DAY_OF_YEAR: "DAY_OF_YEAR";
50584
50587
  readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
50585
50588
  readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
@@ -50659,10 +50662,10 @@ export declare interface JsonApiAttributeOutList {
50659
50662
  links?: ListLinks;
50660
50663
  /**
50661
50664
  *
50662
- * @type {JsonApiColorPaletteOutListMeta}
50665
+ * @type {JsonApiAggregatedFactOutListMeta}
50663
50666
  * @memberof JsonApiAttributeOutList
50664
50667
  */
50665
- meta?: JsonApiColorPaletteOutListMeta;
50668
+ meta?: JsonApiAggregatedFactOutListMeta;
50666
50669
  /**
50667
50670
  * Included resources
50668
50671
  * @type {Array<JsonApiAttributeOutIncludes>}
@@ -50872,10 +50875,10 @@ export declare interface JsonApiAutomationInAttributes {
50872
50875
  areRelationsValid?: boolean;
50873
50876
  /**
50874
50877
  * Additional details to be included in the automated message.
50875
- * @type {any}
50878
+ * @type {object}
50876
50879
  * @memberof JsonApiAutomationInAttributes
50877
50880
  */
50878
- details?: any;
50881
+ details?: object;
50879
50882
  /**
50880
50883
  *
50881
50884
  * @type {JsonApiAutomationInAttributesMetadata}
@@ -51338,10 +51341,10 @@ export declare interface JsonApiAutomationOutAttributes {
51338
51341
  areRelationsValid?: boolean;
51339
51342
  /**
51340
51343
  * Additional details to be included in the automated message.
51341
- * @type {any}
51344
+ * @type {object}
51342
51345
  * @memberof JsonApiAutomationOutAttributes
51343
51346
  */
51344
- details?: any;
51347
+ details?: object;
51345
51348
  /**
51346
51349
  *
51347
51350
  * @type {JsonApiAutomationInAttributesMetadata}
@@ -51481,10 +51484,10 @@ export declare interface JsonApiAutomationOutList {
51481
51484
  links?: ListLinks;
51482
51485
  /**
51483
51486
  *
51484
- * @type {JsonApiColorPaletteOutListMeta}
51487
+ * @type {JsonApiAggregatedFactOutListMeta}
51485
51488
  * @memberof JsonApiAutomationOutList
51486
51489
  */
51487
- meta?: JsonApiColorPaletteOutListMeta;
51490
+ meta?: JsonApiAggregatedFactOutListMeta;
51488
51491
  /**
51489
51492
  * Included resources
51490
51493
  * @type {Array<JsonApiAutomationOutIncludes>}
@@ -51672,10 +51675,30 @@ export declare interface JsonApiColorPaletteIn {
51672
51675
  id: string;
51673
51676
  /**
51674
51677
  *
51675
- * @type {JsonApiColorPaletteOutAttributes}
51678
+ * @type {JsonApiColorPaletteInAttributes}
51676
51679
  * @memberof JsonApiColorPaletteIn
51677
51680
  */
51678
- attributes: JsonApiColorPaletteOutAttributes;
51681
+ attributes: JsonApiColorPaletteInAttributes;
51682
+ }
51683
+
51684
+ /**
51685
+ *
51686
+ * @export
51687
+ * @interface JsonApiColorPaletteInAttributes
51688
+ */
51689
+ export declare interface JsonApiColorPaletteInAttributes {
51690
+ /**
51691
+ *
51692
+ * @type {string}
51693
+ * @memberof JsonApiColorPaletteInAttributes
51694
+ */
51695
+ name: string;
51696
+ /**
51697
+ * Free-form JSON content. Maximum supported length is 15000 characters.
51698
+ * @type {object}
51699
+ * @memberof JsonApiColorPaletteInAttributes
51700
+ */
51701
+ content: object;
51679
51702
  }
51680
51703
 
51681
51704
  /**
@@ -51718,30 +51741,10 @@ export declare interface JsonApiColorPaletteOut {
51718
51741
  id: string;
51719
51742
  /**
51720
51743
  *
51721
- * @type {JsonApiColorPaletteOutAttributes}
51744
+ * @type {JsonApiColorPaletteInAttributes}
51722
51745
  * @memberof JsonApiColorPaletteOut
51723
51746
  */
51724
- attributes: JsonApiColorPaletteOutAttributes;
51725
- }
51726
-
51727
- /**
51728
- *
51729
- * @export
51730
- * @interface JsonApiColorPaletteOutAttributes
51731
- */
51732
- export declare interface JsonApiColorPaletteOutAttributes {
51733
- /**
51734
- *
51735
- * @type {string}
51736
- * @memberof JsonApiColorPaletteOutAttributes
51737
- */
51738
- name: string;
51739
- /**
51740
- * Free-form JSON content. Maximum supported length is 15000 characters.
51741
- * @type {object}
51742
- * @memberof JsonApiColorPaletteOutAttributes
51743
- */
51744
- content: object;
51747
+ attributes: JsonApiColorPaletteInAttributes;
51745
51748
  }
51746
51749
 
51747
51750
  /**
@@ -51784,24 +51787,10 @@ export declare interface JsonApiColorPaletteOutList {
51784
51787
  links?: ListLinks;
51785
51788
  /**
51786
51789
  *
51787
- * @type {JsonApiColorPaletteOutListMeta}
51790
+ * @type {JsonApiAggregatedFactOutListMeta}
51788
51791
  * @memberof JsonApiColorPaletteOutList
51789
51792
  */
51790
- meta?: JsonApiColorPaletteOutListMeta;
51791
- }
51792
-
51793
- /**
51794
- *
51795
- * @export
51796
- * @interface JsonApiColorPaletteOutListMeta
51797
- */
51798
- export declare interface JsonApiColorPaletteOutListMeta {
51799
- /**
51800
- *
51801
- * @type {PageMetadata}
51802
- * @memberof JsonApiColorPaletteOutListMeta
51803
- */
51804
- page?: PageMetadata;
51793
+ meta?: JsonApiAggregatedFactOutListMeta;
51805
51794
  }
51806
51795
 
51807
51796
  export declare const JsonApiColorPaletteOutTypeEnum: {
@@ -51830,10 +51819,10 @@ export declare interface JsonApiColorPaletteOutWithLinks {
51830
51819
  id: string;
51831
51820
  /**
51832
51821
  *
51833
- * @type {JsonApiColorPaletteOutAttributes}
51822
+ * @type {JsonApiColorPaletteInAttributes}
51834
51823
  * @memberof JsonApiColorPaletteOutWithLinks
51835
51824
  */
51836
- attributes: JsonApiColorPaletteOutAttributes;
51825
+ attributes: JsonApiColorPaletteInAttributes;
51837
51826
  /**
51838
51827
  *
51839
51828
  * @type {ObjectLinks}
@@ -52098,10 +52087,24 @@ export declare interface JsonApiCspDirectiveIn {
52098
52087
  id: string;
52099
52088
  /**
52100
52089
  *
52101
- * @type {JsonApiCspDirectiveOutAttributes}
52090
+ * @type {JsonApiCspDirectiveInAttributes}
52102
52091
  * @memberof JsonApiCspDirectiveIn
52103
52092
  */
52104
- attributes: JsonApiCspDirectiveOutAttributes;
52093
+ attributes: JsonApiCspDirectiveInAttributes;
52094
+ }
52095
+
52096
+ /**
52097
+ *
52098
+ * @export
52099
+ * @interface JsonApiCspDirectiveInAttributes
52100
+ */
52101
+ export declare interface JsonApiCspDirectiveInAttributes {
52102
+ /**
52103
+ *
52104
+ * @type {Array<string>}
52105
+ * @memberof JsonApiCspDirectiveInAttributes
52106
+ */
52107
+ sources: Array<string>;
52105
52108
  }
52106
52109
 
52107
52110
  /**
@@ -52144,24 +52147,10 @@ export declare interface JsonApiCspDirectiveOut {
52144
52147
  id: string;
52145
52148
  /**
52146
52149
  *
52147
- * @type {JsonApiCspDirectiveOutAttributes}
52150
+ * @type {JsonApiCspDirectiveInAttributes}
52148
52151
  * @memberof JsonApiCspDirectiveOut
52149
52152
  */
52150
- attributes: JsonApiCspDirectiveOutAttributes;
52151
- }
52152
-
52153
- /**
52154
- *
52155
- * @export
52156
- * @interface JsonApiCspDirectiveOutAttributes
52157
- */
52158
- export declare interface JsonApiCspDirectiveOutAttributes {
52159
- /**
52160
- *
52161
- * @type {Array<string>}
52162
- * @memberof JsonApiCspDirectiveOutAttributes
52163
- */
52164
- sources: Array<string>;
52153
+ attributes: JsonApiCspDirectiveInAttributes;
52165
52154
  }
52166
52155
 
52167
52156
  /**
@@ -52204,10 +52193,10 @@ export declare interface JsonApiCspDirectiveOutList {
52204
52193
  links?: ListLinks;
52205
52194
  /**
52206
52195
  *
52207
- * @type {JsonApiColorPaletteOutListMeta}
52196
+ * @type {JsonApiAggregatedFactOutListMeta}
52208
52197
  * @memberof JsonApiCspDirectiveOutList
52209
52198
  */
52210
- meta?: JsonApiColorPaletteOutListMeta;
52199
+ meta?: JsonApiAggregatedFactOutListMeta;
52211
52200
  }
52212
52201
 
52213
52202
  export declare const JsonApiCspDirectiveOutTypeEnum: {
@@ -52236,10 +52225,10 @@ export declare interface JsonApiCspDirectiveOutWithLinks {
52236
52225
  id: string;
52237
52226
  /**
52238
52227
  *
52239
- * @type {JsonApiCspDirectiveOutAttributes}
52228
+ * @type {JsonApiCspDirectiveInAttributes}
52240
52229
  * @memberof JsonApiCspDirectiveOutWithLinks
52241
52230
  */
52242
- attributes: JsonApiCspDirectiveOutAttributes;
52231
+ attributes: JsonApiCspDirectiveInAttributes;
52243
52232
  /**
52244
52233
  *
52245
52234
  * @type {ObjectLinks}
@@ -52334,30 +52323,10 @@ export declare interface JsonApiCustomApplicationSettingIn {
52334
52323
  id: string;
52335
52324
  /**
52336
52325
  *
52337
- * @type {JsonApiCustomApplicationSettingInAttributes}
52326
+ * @type {JsonApiCustomApplicationSettingPostOptionalIdAttributes}
52338
52327
  * @memberof JsonApiCustomApplicationSettingIn
52339
52328
  */
52340
- attributes: JsonApiCustomApplicationSettingInAttributes;
52341
- }
52342
-
52343
- /**
52344
- *
52345
- * @export
52346
- * @interface JsonApiCustomApplicationSettingInAttributes
52347
- */
52348
- export declare interface JsonApiCustomApplicationSettingInAttributes {
52349
- /**
52350
- *
52351
- * @type {string}
52352
- * @memberof JsonApiCustomApplicationSettingInAttributes
52353
- */
52354
- applicationName: string;
52355
- /**
52356
- * Free-form JSON content. Maximum supported length is 15000 characters.
52357
- * @type {object}
52358
- * @memberof JsonApiCustomApplicationSettingInAttributes
52359
- */
52360
- content: object;
52329
+ attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
52361
52330
  }
52362
52331
 
52363
52332
  /**
@@ -52406,10 +52375,10 @@ export declare interface JsonApiCustomApplicationSettingOut {
52406
52375
  meta?: JsonApiVisualizationObjectOutMeta;
52407
52376
  /**
52408
52377
  *
52409
- * @type {JsonApiCustomApplicationSettingInAttributes}
52378
+ * @type {JsonApiCustomApplicationSettingPostOptionalIdAttributes}
52410
52379
  * @memberof JsonApiCustomApplicationSettingOut
52411
52380
  */
52412
- attributes: JsonApiCustomApplicationSettingInAttributes;
52381
+ attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
52413
52382
  }
52414
52383
 
52415
52384
  /**
@@ -52452,10 +52421,10 @@ export declare interface JsonApiCustomApplicationSettingOutList {
52452
52421
  links?: ListLinks;
52453
52422
  /**
52454
52423
  *
52455
- * @type {JsonApiColorPaletteOutListMeta}
52424
+ * @type {JsonApiAggregatedFactOutListMeta}
52456
52425
  * @memberof JsonApiCustomApplicationSettingOutList
52457
52426
  */
52458
- meta?: JsonApiColorPaletteOutListMeta;
52427
+ meta?: JsonApiAggregatedFactOutListMeta;
52459
52428
  }
52460
52429
 
52461
52430
  export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
@@ -52490,10 +52459,10 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
52490
52459
  meta?: JsonApiVisualizationObjectOutMeta;
52491
52460
  /**
52492
52461
  *
52493
- * @type {JsonApiCustomApplicationSettingInAttributes}
52462
+ * @type {JsonApiCustomApplicationSettingPostOptionalIdAttributes}
52494
52463
  * @memberof JsonApiCustomApplicationSettingOutWithLinks
52495
52464
  */
52496
- attributes: JsonApiCustomApplicationSettingInAttributes;
52465
+ attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
52497
52466
  /**
52498
52467
  *
52499
52468
  * @type {ObjectLinks}
@@ -52594,10 +52563,30 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
52594
52563
  id?: string;
52595
52564
  /**
52596
52565
  *
52597
- * @type {JsonApiCustomApplicationSettingInAttributes}
52566
+ * @type {JsonApiCustomApplicationSettingPostOptionalIdAttributes}
52598
52567
  * @memberof JsonApiCustomApplicationSettingPostOptionalId
52599
52568
  */
52600
- attributes: JsonApiCustomApplicationSettingInAttributes;
52569
+ attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
52570
+ }
52571
+
52572
+ /**
52573
+ *
52574
+ * @export
52575
+ * @interface JsonApiCustomApplicationSettingPostOptionalIdAttributes
52576
+ */
52577
+ export declare interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
52578
+ /**
52579
+ *
52580
+ * @type {string}
52581
+ * @memberof JsonApiCustomApplicationSettingPostOptionalIdAttributes
52582
+ */
52583
+ applicationName: string;
52584
+ /**
52585
+ * Free-form JSON content. Maximum supported length is 15000 characters.
52586
+ * @type {object}
52587
+ * @memberof JsonApiCustomApplicationSettingPostOptionalIdAttributes
52588
+ */
52589
+ content: object;
52601
52590
  }
52602
52591
 
52603
52592
  /**
@@ -52640,48 +52629,10 @@ export declare interface JsonApiDashboardPluginIn {
52640
52629
  id: string;
52641
52630
  /**
52642
52631
  *
52643
- * @type {JsonApiDashboardPluginInAttributes}
52632
+ * @type {JsonApiDashboardPluginPostOptionalIdAttributes}
52644
52633
  * @memberof JsonApiDashboardPluginIn
52645
52634
  */
52646
- attributes?: JsonApiDashboardPluginInAttributes;
52647
- }
52648
-
52649
- /**
52650
- *
52651
- * @export
52652
- * @interface JsonApiDashboardPluginInAttributes
52653
- */
52654
- export declare interface JsonApiDashboardPluginInAttributes {
52655
- /**
52656
- *
52657
- * @type {string}
52658
- * @memberof JsonApiDashboardPluginInAttributes
52659
- */
52660
- title?: string;
52661
- /**
52662
- *
52663
- * @type {string}
52664
- * @memberof JsonApiDashboardPluginInAttributes
52665
- */
52666
- description?: string;
52667
- /**
52668
- *
52669
- * @type {Array<string>}
52670
- * @memberof JsonApiDashboardPluginInAttributes
52671
- */
52672
- tags?: Array<string>;
52673
- /**
52674
- *
52675
- * @type {boolean}
52676
- * @memberof JsonApiDashboardPluginInAttributes
52677
- */
52678
- areRelationsValid?: boolean;
52679
- /**
52680
- * Free-form JSON content. Maximum supported length is 250000 characters.
52681
- * @type {object}
52682
- * @memberof JsonApiDashboardPluginInAttributes
52683
- */
52684
- content?: object;
52635
+ attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
52685
52636
  }
52686
52637
 
52687
52638
  /**
@@ -52864,10 +52815,10 @@ export declare interface JsonApiDashboardPluginOutList {
52864
52815
  links?: ListLinks;
52865
52816
  /**
52866
52817
  *
52867
- * @type {JsonApiColorPaletteOutListMeta}
52818
+ * @type {JsonApiAggregatedFactOutListMeta}
52868
52819
  * @memberof JsonApiDashboardPluginOutList
52869
52820
  */
52870
- meta?: JsonApiColorPaletteOutListMeta;
52821
+ meta?: JsonApiAggregatedFactOutListMeta;
52871
52822
  /**
52872
52823
  * Included resources
52873
52824
  * @type {Array<JsonApiUserIdentifierOutWithLinks>}
@@ -52972,10 +52923,10 @@ export declare interface JsonApiDashboardPluginPatch {
52972
52923
  id: string;
52973
52924
  /**
52974
52925
  *
52975
- * @type {JsonApiDashboardPluginInAttributes}
52926
+ * @type {JsonApiDashboardPluginPostOptionalIdAttributes}
52976
52927
  * @memberof JsonApiDashboardPluginPatch
52977
52928
  */
52978
- attributes?: JsonApiDashboardPluginInAttributes;
52929
+ attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
52979
52930
  }
52980
52931
 
52981
52932
  /**
@@ -53018,10 +52969,48 @@ export declare interface JsonApiDashboardPluginPostOptionalId {
53018
52969
  id?: string;
53019
52970
  /**
53020
52971
  *
53021
- * @type {JsonApiDashboardPluginInAttributes}
52972
+ * @type {JsonApiDashboardPluginPostOptionalIdAttributes}
53022
52973
  * @memberof JsonApiDashboardPluginPostOptionalId
53023
52974
  */
53024
- attributes?: JsonApiDashboardPluginInAttributes;
52975
+ attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
52976
+ }
52977
+
52978
+ /**
52979
+ *
52980
+ * @export
52981
+ * @interface JsonApiDashboardPluginPostOptionalIdAttributes
52982
+ */
52983
+ export declare interface JsonApiDashboardPluginPostOptionalIdAttributes {
52984
+ /**
52985
+ *
52986
+ * @type {string}
52987
+ * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
52988
+ */
52989
+ title?: string;
52990
+ /**
52991
+ *
52992
+ * @type {string}
52993
+ * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
52994
+ */
52995
+ description?: string;
52996
+ /**
52997
+ *
52998
+ * @type {Array<string>}
52999
+ * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
53000
+ */
53001
+ tags?: Array<string>;
53002
+ /**
53003
+ *
53004
+ * @type {boolean}
53005
+ * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
53006
+ */
53007
+ areRelationsValid?: boolean;
53008
+ /**
53009
+ * Free-form JSON content. Maximum supported length is 250000 characters.
53010
+ * @type {object}
53011
+ * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
53012
+ */
53013
+ content?: object;
53025
53014
  }
53026
53015
 
53027
53016
  /**
@@ -53420,10 +53409,10 @@ export declare interface JsonApiDatasetOutList {
53420
53409
  links?: ListLinks;
53421
53410
  /**
53422
53411
  *
53423
- * @type {JsonApiColorPaletteOutListMeta}
53412
+ * @type {JsonApiAggregatedFactOutListMeta}
53424
53413
  * @memberof JsonApiDatasetOutList
53425
53414
  */
53426
- meta?: JsonApiColorPaletteOutListMeta;
53415
+ meta?: JsonApiAggregatedFactOutListMeta;
53427
53416
  /**
53428
53417
  * Included resources
53429
53418
  * @type {Array<JsonApiDatasetOutIncludes>}
@@ -53581,10 +53570,10 @@ export declare interface JsonApiDataSourceIdentifierOut {
53581
53570
  id: string;
53582
53571
  /**
53583
53572
  *
53584
- * @type {JsonApiDataSourceIdentifierOutMeta}
53573
+ * @type {JsonApiDataSourceOutMeta}
53585
53574
  * @memberof JsonApiDataSourceIdentifierOut
53586
53575
  */
53587
- meta?: JsonApiDataSourceIdentifierOutMeta;
53576
+ meta?: JsonApiDataSourceOutMeta;
53588
53577
  /**
53589
53578
  *
53590
53579
  * @type {JsonApiDataSourceIdentifierOutAttributes}
@@ -53689,33 +53678,12 @@ export declare interface JsonApiDataSourceIdentifierOutList {
53689
53678
  links?: ListLinks;
53690
53679
  /**
53691
53680
  *
53692
- * @type {JsonApiColorPaletteOutListMeta}
53681
+ * @type {JsonApiAggregatedFactOutListMeta}
53693
53682
  * @memberof JsonApiDataSourceIdentifierOutList
53694
53683
  */
53695
- meta?: JsonApiColorPaletteOutListMeta;
53684
+ meta?: JsonApiAggregatedFactOutListMeta;
53696
53685
  }
53697
53686
 
53698
- /**
53699
- *
53700
- * @export
53701
- * @interface JsonApiDataSourceIdentifierOutMeta
53702
- */
53703
- export declare interface JsonApiDataSourceIdentifierOutMeta {
53704
- /**
53705
- * List of valid permissions for a logged-in user.
53706
- * @type {Array<string>}
53707
- * @memberof JsonApiDataSourceIdentifierOutMeta
53708
- */
53709
- permissions?: Array<JsonApiDataSourceIdentifierOutMetaPermissionsEnum>;
53710
- }
53711
-
53712
- export declare const JsonApiDataSourceIdentifierOutMetaPermissionsEnum: {
53713
- readonly MANAGE: "MANAGE";
53714
- readonly USE: "USE";
53715
- };
53716
-
53717
- export declare type JsonApiDataSourceIdentifierOutMetaPermissionsEnum = (typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum];
53718
-
53719
53687
  export declare const JsonApiDataSourceIdentifierOutTypeEnum: {
53720
53688
  readonly DATA_SOURCE_IDENTIFIER: "dataSourceIdentifier";
53721
53689
  };
@@ -53742,10 +53710,10 @@ export declare interface JsonApiDataSourceIdentifierOutWithLinks {
53742
53710
  id: string;
53743
53711
  /**
53744
53712
  *
53745
- * @type {JsonApiDataSourceIdentifierOutMeta}
53713
+ * @type {JsonApiDataSourceOutMeta}
53746
53714
  * @memberof JsonApiDataSourceIdentifierOutWithLinks
53747
53715
  */
53748
- meta?: JsonApiDataSourceIdentifierOutMeta;
53716
+ meta?: JsonApiDataSourceOutMeta;
53749
53717
  /**
53750
53718
  *
53751
53719
  * @type {JsonApiDataSourceIdentifierOutAttributes}
@@ -53866,10 +53834,10 @@ export declare interface JsonApiDataSourceInAttributes {
53866
53834
  clientSecret?: string | null;
53867
53835
  /**
53868
53836
  * Additional parameters to be used when connecting to the database providing the data for the data source.
53869
- * @type {Array<JsonApiDataSourceOutAttributesParameters>}
53837
+ * @type {Array<JsonApiDataSourceInAttributesParameters>}
53870
53838
  * @memberof JsonApiDataSourceInAttributes
53871
53839
  */
53872
- parameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
53840
+ parameters?: Array<JsonApiDataSourceInAttributesParameters> | null;
53873
53841
  /**
53874
53842
  * Determines how the results coming from a particular datasource should be cached.
53875
53843
  * @type {string}
@@ -53885,6 +53853,26 @@ export declare const JsonApiDataSourceInAttributesCacheStrategyEnum: {
53885
53853
 
53886
53854
  export declare type JsonApiDataSourceInAttributesCacheStrategyEnum = (typeof JsonApiDataSourceInAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourceInAttributesCacheStrategyEnum];
53887
53855
 
53856
+ /**
53857
+ *
53858
+ * @export
53859
+ * @interface JsonApiDataSourceInAttributesParameters
53860
+ */
53861
+ export declare interface JsonApiDataSourceInAttributesParameters {
53862
+ /**
53863
+ *
53864
+ * @type {string}
53865
+ * @memberof JsonApiDataSourceInAttributesParameters
53866
+ */
53867
+ name: string;
53868
+ /**
53869
+ *
53870
+ * @type {string}
53871
+ * @memberof JsonApiDataSourceInAttributesParameters
53872
+ */
53873
+ value: string;
53874
+ }
53875
+
53888
53876
  export declare const JsonApiDataSourceInAttributesTypeEnum: {
53889
53877
  readonly POSTGRESQL: "POSTGRESQL";
53890
53878
  readonly REDSHIFT: "REDSHIFT";
@@ -53955,10 +53943,10 @@ export declare interface JsonApiDataSourceOut {
53955
53943
  id: string;
53956
53944
  /**
53957
53945
  *
53958
- * @type {JsonApiDataSourceIdentifierOutMeta}
53946
+ * @type {JsonApiDataSourceOutMeta}
53959
53947
  * @memberof JsonApiDataSourceOut
53960
53948
  */
53961
- meta?: JsonApiDataSourceIdentifierOutMeta;
53949
+ meta?: JsonApiDataSourceOutMeta;
53962
53950
  /**
53963
53951
  *
53964
53952
  * @type {JsonApiDataSourceOutAttributes}
@@ -54011,16 +53999,16 @@ export declare interface JsonApiDataSourceOutAttributes {
54011
53999
  clientId?: string | null;
54012
54000
  /**
54013
54001
  * Additional parameters to be used when connecting to the database providing the data for the data source.
54014
- * @type {Array<JsonApiDataSourceOutAttributesParameters>}
54002
+ * @type {Array<JsonApiDataSourceInAttributesParameters>}
54015
54003
  * @memberof JsonApiDataSourceOutAttributes
54016
54004
  */
54017
- parameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
54005
+ parameters?: Array<JsonApiDataSourceInAttributesParameters> | null;
54018
54006
  /**
54019
54007
  * Decoded parameters to be used when connecting to the database providing the data for the data source.
54020
- * @type {Array<JsonApiDataSourceOutAttributesParameters>}
54008
+ * @type {Array<JsonApiDataSourceInAttributesParameters>}
54021
54009
  * @memberof JsonApiDataSourceOutAttributes
54022
54010
  */
54023
- decodedParameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
54011
+ decodedParameters?: Array<JsonApiDataSourceInAttributesParameters> | null;
54024
54012
  /**
54025
54013
  * Determines how the results coming from a particular datasource should be cached.
54026
54014
  * @type {string}
@@ -54052,26 +54040,6 @@ export declare const JsonApiDataSourceOutAttributesCacheStrategyEnum: {
54052
54040
 
54053
54041
  export declare type JsonApiDataSourceOutAttributesCacheStrategyEnum = (typeof JsonApiDataSourceOutAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourceOutAttributesCacheStrategyEnum];
54054
54042
 
54055
- /**
54056
- *
54057
- * @export
54058
- * @interface JsonApiDataSourceOutAttributesParameters
54059
- */
54060
- export declare interface JsonApiDataSourceOutAttributesParameters {
54061
- /**
54062
- *
54063
- * @type {string}
54064
- * @memberof JsonApiDataSourceOutAttributesParameters
54065
- */
54066
- name: string;
54067
- /**
54068
- *
54069
- * @type {string}
54070
- * @memberof JsonApiDataSourceOutAttributesParameters
54071
- */
54072
- value: string;
54073
- }
54074
-
54075
54043
  export declare const JsonApiDataSourceOutAttributesTypeEnum: {
54076
54044
  readonly POSTGRESQL: "POSTGRESQL";
54077
54045
  readonly REDSHIFT: "REDSHIFT";
@@ -54142,12 +54110,33 @@ export declare interface JsonApiDataSourceOutList {
54142
54110
  links?: ListLinks;
54143
54111
  /**
54144
54112
  *
54145
- * @type {JsonApiColorPaletteOutListMeta}
54113
+ * @type {JsonApiAggregatedFactOutListMeta}
54146
54114
  * @memberof JsonApiDataSourceOutList
54147
54115
  */
54148
- meta?: JsonApiColorPaletteOutListMeta;
54116
+ meta?: JsonApiAggregatedFactOutListMeta;
54149
54117
  }
54150
54118
 
54119
+ /**
54120
+ *
54121
+ * @export
54122
+ * @interface JsonApiDataSourceOutMeta
54123
+ */
54124
+ export declare interface JsonApiDataSourceOutMeta {
54125
+ /**
54126
+ * List of valid permissions for a logged-in user.
54127
+ * @type {Array<string>}
54128
+ * @memberof JsonApiDataSourceOutMeta
54129
+ */
54130
+ permissions?: Array<JsonApiDataSourceOutMetaPermissionsEnum>;
54131
+ }
54132
+
54133
+ export declare const JsonApiDataSourceOutMetaPermissionsEnum: {
54134
+ readonly MANAGE: "MANAGE";
54135
+ readonly USE: "USE";
54136
+ };
54137
+
54138
+ export declare type JsonApiDataSourceOutMetaPermissionsEnum = (typeof JsonApiDataSourceOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceOutMetaPermissionsEnum];
54139
+
54151
54140
  export declare const JsonApiDataSourceOutTypeEnum: {
54152
54141
  readonly DATA_SOURCE: "dataSource";
54153
54142
  };
@@ -54174,10 +54163,10 @@ export declare interface JsonApiDataSourceOutWithLinks {
54174
54163
  id: string;
54175
54164
  /**
54176
54165
  *
54177
- * @type {JsonApiDataSourceIdentifierOutMeta}
54166
+ * @type {JsonApiDataSourceOutMeta}
54178
54167
  * @memberof JsonApiDataSourceOutWithLinks
54179
54168
  */
54180
- meta?: JsonApiDataSourceIdentifierOutMeta;
54169
+ meta?: JsonApiDataSourceOutMeta;
54181
54170
  /**
54182
54171
  *
54183
54172
  * @type {JsonApiDataSourceOutAttributes}
@@ -54298,10 +54287,10 @@ export declare interface JsonApiDataSourcePatchAttributes {
54298
54287
  clientSecret?: string | null;
54299
54288
  /**
54300
54289
  * Additional parameters to be used when connecting to the database providing the data for the data source.
54301
- * @type {Array<JsonApiDataSourceOutAttributesParameters>}
54290
+ * @type {Array<JsonApiDataSourceInAttributesParameters>}
54302
54291
  * @memberof JsonApiDataSourcePatchAttributes
54303
54292
  */
54304
- parameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
54293
+ parameters?: Array<JsonApiDataSourceInAttributesParameters> | null;
54305
54294
  /**
54306
54295
  * Determines how the results coming from a particular datasource should be cached.
54307
54296
  * @type {string}
@@ -54453,10 +54442,10 @@ export declare interface JsonApiEntitlementOutList {
54453
54442
  links?: ListLinks;
54454
54443
  /**
54455
54444
  *
54456
- * @type {JsonApiColorPaletteOutListMeta}
54445
+ * @type {JsonApiAggregatedFactOutListMeta}
54457
54446
  * @memberof JsonApiEntitlementOutList
54458
54447
  */
54459
- meta?: JsonApiColorPaletteOutListMeta;
54448
+ meta?: JsonApiAggregatedFactOutListMeta;
54460
54449
  }
54461
54450
 
54462
54451
  export declare const JsonApiEntitlementOutTypeEnum: {
@@ -54523,54 +54512,16 @@ export declare interface JsonApiExportDefinitionIn {
54523
54512
  id: string;
54524
54513
  /**
54525
54514
  *
54526
- * @type {JsonApiExportDefinitionInAttributes}
54515
+ * @type {JsonApiExportDefinitionPostOptionalIdAttributes}
54527
54516
  * @memberof JsonApiExportDefinitionIn
54528
54517
  */
54529
- attributes?: JsonApiExportDefinitionInAttributes;
54518
+ attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
54530
54519
  /**
54531
54520
  *
54532
- * @type {JsonApiExportDefinitionInRelationships}
54521
+ * @type {JsonApiExportDefinitionPostOptionalIdRelationships}
54533
54522
  * @memberof JsonApiExportDefinitionIn
54534
54523
  */
54535
- relationships?: JsonApiExportDefinitionInRelationships;
54536
- }
54537
-
54538
- /**
54539
- *
54540
- * @export
54541
- * @interface JsonApiExportDefinitionInAttributes
54542
- */
54543
- export declare interface JsonApiExportDefinitionInAttributes {
54544
- /**
54545
- *
54546
- * @type {string}
54547
- * @memberof JsonApiExportDefinitionInAttributes
54548
- */
54549
- title?: string;
54550
- /**
54551
- *
54552
- * @type {string}
54553
- * @memberof JsonApiExportDefinitionInAttributes
54554
- */
54555
- description?: string;
54556
- /**
54557
- *
54558
- * @type {Array<string>}
54559
- * @memberof JsonApiExportDefinitionInAttributes
54560
- */
54561
- tags?: Array<string>;
54562
- /**
54563
- * JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
54564
- * @type {VisualExportRequest | TabularExportRequest}
54565
- * @memberof JsonApiExportDefinitionInAttributes
54566
- */
54567
- requestPayload?: VisualExportRequest | TabularExportRequest;
54568
- /**
54569
- *
54570
- * @type {boolean}
54571
- * @memberof JsonApiExportDefinitionInAttributes
54572
- */
54573
- areRelationsValid?: boolean;
54524
+ relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
54574
54525
  }
54575
54526
 
54576
54527
  /**
@@ -54587,26 +54538,6 @@ export declare interface JsonApiExportDefinitionInDocument {
54587
54538
  data: JsonApiExportDefinitionIn;
54588
54539
  }
54589
54540
 
54590
- /**
54591
- *
54592
- * @export
54593
- * @interface JsonApiExportDefinitionInRelationships
54594
- */
54595
- export declare interface JsonApiExportDefinitionInRelationships {
54596
- /**
54597
- *
54598
- * @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
54599
- * @memberof JsonApiExportDefinitionInRelationships
54600
- */
54601
- visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
54602
- /**
54603
- *
54604
- * @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
54605
- * @memberof JsonApiExportDefinitionInRelationships
54606
- */
54607
- analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
54608
- }
54609
-
54610
54541
  export declare const JsonApiExportDefinitionInTypeEnum: {
54611
54542
  readonly EXPORT_DEFINITION: "exportDefinition";
54612
54543
  };
@@ -54779,10 +54710,10 @@ export declare interface JsonApiExportDefinitionOutList {
54779
54710
  links?: ListLinks;
54780
54711
  /**
54781
54712
  *
54782
- * @type {JsonApiColorPaletteOutListMeta}
54713
+ * @type {JsonApiAggregatedFactOutListMeta}
54783
54714
  * @memberof JsonApiExportDefinitionOutList
54784
54715
  */
54785
- meta?: JsonApiColorPaletteOutListMeta;
54716
+ meta?: JsonApiAggregatedFactOutListMeta;
54786
54717
  /**
54787
54718
  * Included resources
54788
54719
  * @type {Array<JsonApiExportDefinitionOutIncludes>}
@@ -54933,16 +54864,16 @@ export declare interface JsonApiExportDefinitionPatch {
54933
54864
  id: string;
54934
54865
  /**
54935
54866
  *
54936
- * @type {JsonApiExportDefinitionInAttributes}
54867
+ * @type {JsonApiExportDefinitionPostOptionalIdAttributes}
54937
54868
  * @memberof JsonApiExportDefinitionPatch
54938
54869
  */
54939
- attributes?: JsonApiExportDefinitionInAttributes;
54870
+ attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
54940
54871
  /**
54941
54872
  *
54942
- * @type {JsonApiExportDefinitionInRelationships}
54873
+ * @type {JsonApiExportDefinitionPostOptionalIdRelationships}
54943
54874
  * @memberof JsonApiExportDefinitionPatch
54944
54875
  */
54945
- relationships?: JsonApiExportDefinitionInRelationships;
54876
+ relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
54946
54877
  }
54947
54878
 
54948
54879
  /**
@@ -54985,16 +54916,54 @@ export declare interface JsonApiExportDefinitionPostOptionalId {
54985
54916
  id?: string;
54986
54917
  /**
54987
54918
  *
54988
- * @type {JsonApiExportDefinitionInAttributes}
54919
+ * @type {JsonApiExportDefinitionPostOptionalIdAttributes}
54989
54920
  * @memberof JsonApiExportDefinitionPostOptionalId
54990
54921
  */
54991
- attributes?: JsonApiExportDefinitionInAttributes;
54922
+ attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
54992
54923
  /**
54993
54924
  *
54994
- * @type {JsonApiExportDefinitionInRelationships}
54925
+ * @type {JsonApiExportDefinitionPostOptionalIdRelationships}
54995
54926
  * @memberof JsonApiExportDefinitionPostOptionalId
54996
54927
  */
54997
- relationships?: JsonApiExportDefinitionInRelationships;
54928
+ relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
54929
+ }
54930
+
54931
+ /**
54932
+ *
54933
+ * @export
54934
+ * @interface JsonApiExportDefinitionPostOptionalIdAttributes
54935
+ */
54936
+ export declare interface JsonApiExportDefinitionPostOptionalIdAttributes {
54937
+ /**
54938
+ *
54939
+ * @type {string}
54940
+ * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
54941
+ */
54942
+ title?: string;
54943
+ /**
54944
+ *
54945
+ * @type {string}
54946
+ * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
54947
+ */
54948
+ description?: string;
54949
+ /**
54950
+ *
54951
+ * @type {Array<string>}
54952
+ * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
54953
+ */
54954
+ tags?: Array<string>;
54955
+ /**
54956
+ * JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
54957
+ * @type {VisualExportRequest | TabularExportRequest}
54958
+ * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
54959
+ */
54960
+ requestPayload?: VisualExportRequest | TabularExportRequest;
54961
+ /**
54962
+ *
54963
+ * @type {boolean}
54964
+ * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
54965
+ */
54966
+ areRelationsValid?: boolean;
54998
54967
  }
54999
54968
 
55000
54969
  /**
@@ -55011,6 +54980,26 @@ export declare interface JsonApiExportDefinitionPostOptionalIdDocument {
55011
54980
  data: JsonApiExportDefinitionPostOptionalId;
55012
54981
  }
55013
54982
 
54983
+ /**
54984
+ *
54985
+ * @export
54986
+ * @interface JsonApiExportDefinitionPostOptionalIdRelationships
54987
+ */
54988
+ export declare interface JsonApiExportDefinitionPostOptionalIdRelationships {
54989
+ /**
54990
+ *
54991
+ * @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
54992
+ * @memberof JsonApiExportDefinitionPostOptionalIdRelationships
54993
+ */
54994
+ visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
54995
+ /**
54996
+ *
54997
+ * @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
54998
+ * @memberof JsonApiExportDefinitionPostOptionalIdRelationships
54999
+ */
55000
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
55001
+ }
55002
+
55014
55003
  export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
55015
55004
  readonly EXPORT_DEFINITION: "exportDefinition";
55016
55005
  };
@@ -55037,10 +55026,10 @@ export declare interface JsonApiExportTemplateIn {
55037
55026
  id: string;
55038
55027
  /**
55039
55028
  *
55040
- * @type {JsonApiExportTemplateOutAttributes}
55029
+ * @type {JsonApiExportTemplatePostOptionalIdAttributes}
55041
55030
  * @memberof JsonApiExportTemplateIn
55042
55031
  */
55043
- attributes: JsonApiExportTemplateOutAttributes;
55032
+ attributes: JsonApiExportTemplatePostOptionalIdAttributes;
55044
55033
  }
55045
55034
 
55046
55035
  /**
@@ -55083,110 +55072,12 @@ export declare interface JsonApiExportTemplateOut {
55083
55072
  id: string;
55084
55073
  /**
55085
55074
  *
55086
- * @type {JsonApiExportTemplateOutAttributes}
55075
+ * @type {JsonApiExportTemplatePostOptionalIdAttributes}
55087
55076
  * @memberof JsonApiExportTemplateOut
55088
55077
  */
55089
- attributes: JsonApiExportTemplateOutAttributes;
55090
- }
55091
-
55092
- /**
55093
- *
55094
- * @export
55095
- * @interface JsonApiExportTemplateOutAttributes
55096
- */
55097
- export declare interface JsonApiExportTemplateOutAttributes {
55098
- /**
55099
- * User-facing name of the Slides template.
55100
- * @type {string}
55101
- * @memberof JsonApiExportTemplateOutAttributes
55102
- */
55103
- name: string;
55104
- /**
55105
- *
55106
- * @type {JsonApiExportTemplateOutAttributesDashboardSlidesTemplate}
55107
- * @memberof JsonApiExportTemplateOutAttributes
55108
- */
55109
- dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
55110
- /**
55111
- *
55112
- * @type {JsonApiExportTemplateOutAttributesWidgetSlidesTemplate}
55113
- * @memberof JsonApiExportTemplateOutAttributes
55114
- */
55115
- widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
55116
- }
55117
-
55118
- /**
55119
- * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
55120
- * @export
55121
- * @interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
55122
- */
55123
- export declare interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
55124
- /**
55125
- * Export types this template applies to.
55126
- * @type {Array<string>}
55127
- * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
55128
- */
55129
- appliedOn: Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
55130
- /**
55131
- *
55132
- * @type {CoverSlideTemplate}
55133
- * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
55134
- */
55135
- coverSlide?: CoverSlideTemplate | null;
55136
- /**
55137
- *
55138
- * @type {IntroSlideTemplate}
55139
- * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
55140
- */
55141
- introSlide?: IntroSlideTemplate | null;
55142
- /**
55143
- *
55144
- * @type {SectionSlideTemplate}
55145
- * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
55146
- */
55147
- sectionSlide?: SectionSlideTemplate | null;
55148
- /**
55149
- *
55150
- * @type {ContentSlideTemplate}
55151
- * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
55152
- */
55153
- contentSlide?: ContentSlideTemplate | null;
55154
- }
55155
-
55156
- export declare const JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum: {
55157
- readonly PDF: "PDF";
55158
- readonly PPTX: "PPTX";
55159
- };
55160
-
55161
- export declare type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum];
55162
-
55163
- /**
55164
- * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
55165
- * @export
55166
- * @interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate
55167
- */
55168
- export declare interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
55169
- /**
55170
- * Export types this template applies to.
55171
- * @type {Array<string>}
55172
- * @memberof JsonApiExportTemplateOutAttributesWidgetSlidesTemplate
55173
- */
55174
- appliedOn: Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
55175
- /**
55176
- *
55177
- * @type {ContentSlideTemplate}
55178
- * @memberof JsonApiExportTemplateOutAttributesWidgetSlidesTemplate
55179
- */
55180
- contentSlide?: ContentSlideTemplate | null;
55078
+ attributes: JsonApiExportTemplatePostOptionalIdAttributes;
55181
55079
  }
55182
55080
 
55183
- export declare const JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum: {
55184
- readonly PDF: "PDF";
55185
- readonly PPTX: "PPTX";
55186
- };
55187
-
55188
- export declare type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum];
55189
-
55190
55081
  /**
55191
55082
  *
55192
55083
  * @export
@@ -55227,10 +55118,10 @@ export declare interface JsonApiExportTemplateOutList {
55227
55118
  links?: ListLinks;
55228
55119
  /**
55229
55120
  *
55230
- * @type {JsonApiColorPaletteOutListMeta}
55121
+ * @type {JsonApiAggregatedFactOutListMeta}
55231
55122
  * @memberof JsonApiExportTemplateOutList
55232
55123
  */
55233
- meta?: JsonApiColorPaletteOutListMeta;
55124
+ meta?: JsonApiAggregatedFactOutListMeta;
55234
55125
  }
55235
55126
 
55236
55127
  export declare const JsonApiExportTemplateOutTypeEnum: {
@@ -55259,10 +55150,10 @@ export declare interface JsonApiExportTemplateOutWithLinks {
55259
55150
  id: string;
55260
55151
  /**
55261
55152
  *
55262
- * @type {JsonApiExportTemplateOutAttributes}
55153
+ * @type {JsonApiExportTemplatePostOptionalIdAttributes}
55263
55154
  * @memberof JsonApiExportTemplateOutWithLinks
55264
55155
  */
55265
- attributes: JsonApiExportTemplateOutAttributes;
55156
+ attributes: JsonApiExportTemplatePostOptionalIdAttributes;
55266
55157
  /**
55267
55158
  *
55268
55159
  * @type {ObjectLinks}
@@ -55317,16 +55208,16 @@ export declare interface JsonApiExportTemplatePatchAttributes {
55317
55208
  name?: string;
55318
55209
  /**
55319
55210
  *
55320
- * @type {JsonApiExportTemplateOutAttributesDashboardSlidesTemplate}
55211
+ * @type {JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate}
55321
55212
  * @memberof JsonApiExportTemplatePatchAttributes
55322
55213
  */
55323
- dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
55214
+ dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
55324
55215
  /**
55325
55216
  *
55326
- * @type {JsonApiExportTemplateOutAttributesWidgetSlidesTemplate}
55217
+ * @type {JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate}
55327
55218
  * @memberof JsonApiExportTemplatePatchAttributes
55328
55219
  */
55329
- widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
55220
+ widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
55330
55221
  }
55331
55222
 
55332
55223
  /**
@@ -55369,12 +55260,110 @@ export declare interface JsonApiExportTemplatePostOptionalId {
55369
55260
  id?: string;
55370
55261
  /**
55371
55262
  *
55372
- * @type {JsonApiExportTemplateOutAttributes}
55263
+ * @type {JsonApiExportTemplatePostOptionalIdAttributes}
55373
55264
  * @memberof JsonApiExportTemplatePostOptionalId
55374
55265
  */
55375
- attributes: JsonApiExportTemplateOutAttributes;
55266
+ attributes: JsonApiExportTemplatePostOptionalIdAttributes;
55376
55267
  }
55377
55268
 
55269
+ /**
55270
+ *
55271
+ * @export
55272
+ * @interface JsonApiExportTemplatePostOptionalIdAttributes
55273
+ */
55274
+ export declare interface JsonApiExportTemplatePostOptionalIdAttributes {
55275
+ /**
55276
+ * User-facing name of the Slides template.
55277
+ * @type {string}
55278
+ * @memberof JsonApiExportTemplatePostOptionalIdAttributes
55279
+ */
55280
+ name: string;
55281
+ /**
55282
+ *
55283
+ * @type {JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate}
55284
+ * @memberof JsonApiExportTemplatePostOptionalIdAttributes
55285
+ */
55286
+ dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
55287
+ /**
55288
+ *
55289
+ * @type {JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate}
55290
+ * @memberof JsonApiExportTemplatePostOptionalIdAttributes
55291
+ */
55292
+ widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
55293
+ }
55294
+
55295
+ /**
55296
+ * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
55297
+ * @export
55298
+ * @interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate
55299
+ */
55300
+ export declare interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
55301
+ /**
55302
+ * Export types this template applies to.
55303
+ * @type {Array<string>}
55304
+ * @memberof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate
55305
+ */
55306
+ appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
55307
+ /**
55308
+ *
55309
+ * @type {CoverSlideTemplate}
55310
+ * @memberof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate
55311
+ */
55312
+ coverSlide?: CoverSlideTemplate | null;
55313
+ /**
55314
+ *
55315
+ * @type {IntroSlideTemplate}
55316
+ * @memberof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate
55317
+ */
55318
+ introSlide?: IntroSlideTemplate | null;
55319
+ /**
55320
+ *
55321
+ * @type {SectionSlideTemplate}
55322
+ * @memberof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate
55323
+ */
55324
+ sectionSlide?: SectionSlideTemplate | null;
55325
+ /**
55326
+ *
55327
+ * @type {ContentSlideTemplate}
55328
+ * @memberof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate
55329
+ */
55330
+ contentSlide?: ContentSlideTemplate | null;
55331
+ }
55332
+
55333
+ export declare const JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum: {
55334
+ readonly PDF: "PDF";
55335
+ readonly PPTX: "PPTX";
55336
+ };
55337
+
55338
+ export declare type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum];
55339
+
55340
+ /**
55341
+ * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
55342
+ * @export
55343
+ * @interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate
55344
+ */
55345
+ export declare interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
55346
+ /**
55347
+ * Export types this template applies to.
55348
+ * @type {Array<string>}
55349
+ * @memberof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate
55350
+ */
55351
+ appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
55352
+ /**
55353
+ *
55354
+ * @type {ContentSlideTemplate}
55355
+ * @memberof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate
55356
+ */
55357
+ contentSlide?: ContentSlideTemplate | null;
55358
+ }
55359
+
55360
+ export declare const JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum: {
55361
+ readonly PDF: "PDF";
55362
+ readonly PPTX: "PPTX";
55363
+ };
55364
+
55365
+ export declare type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum];
55366
+
55378
55367
  /**
55379
55368
  *
55380
55369
  * @export
@@ -55561,10 +55550,10 @@ export declare interface JsonApiFactOutList {
55561
55550
  links?: ListLinks;
55562
55551
  /**
55563
55552
  *
55564
- * @type {JsonApiColorPaletteOutListMeta}
55553
+ * @type {JsonApiAggregatedFactOutListMeta}
55565
55554
  * @memberof JsonApiFactOutList
55566
55555
  */
55567
- meta?: JsonApiColorPaletteOutListMeta;
55556
+ meta?: JsonApiAggregatedFactOutListMeta;
55568
55557
  /**
55569
55558
  * Included resources
55570
55559
  * @type {Array<JsonApiDatasetOutWithLinks>}
@@ -55670,10 +55659,10 @@ export declare interface JsonApiFilterContextIn {
55670
55659
  id: string;
55671
55660
  /**
55672
55661
  *
55673
- * @type {JsonApiAnalyticalDashboardInAttributes}
55662
+ * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
55674
55663
  * @memberof JsonApiFilterContextIn
55675
55664
  */
55676
- attributes: JsonApiAnalyticalDashboardInAttributes;
55665
+ attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
55677
55666
  }
55678
55667
 
55679
55668
  /**
@@ -55748,10 +55737,10 @@ export declare interface JsonApiFilterContextOut {
55748
55737
  meta?: JsonApiVisualizationObjectOutMeta;
55749
55738
  /**
55750
55739
  *
55751
- * @type {JsonApiAnalyticalDashboardInAttributes}
55740
+ * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
55752
55741
  * @memberof JsonApiFilterContextOut
55753
55742
  */
55754
- attributes: JsonApiAnalyticalDashboardInAttributes;
55743
+ attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
55755
55744
  /**
55756
55745
  *
55757
55746
  * @type {JsonApiFilterContextOutRelationships}
@@ -55812,10 +55801,10 @@ export declare interface JsonApiFilterContextOutList {
55812
55801
  links?: ListLinks;
55813
55802
  /**
55814
55803
  *
55815
- * @type {JsonApiColorPaletteOutListMeta}
55804
+ * @type {JsonApiAggregatedFactOutListMeta}
55816
55805
  * @memberof JsonApiFilterContextOutList
55817
55806
  */
55818
- meta?: JsonApiColorPaletteOutListMeta;
55807
+ meta?: JsonApiAggregatedFactOutListMeta;
55819
55808
  /**
55820
55809
  * Included resources
55821
55810
  * @type {Array<JsonApiFilterContextOutIncludes>}
@@ -55882,10 +55871,10 @@ export declare interface JsonApiFilterContextOutWithLinks {
55882
55871
  meta?: JsonApiVisualizationObjectOutMeta;
55883
55872
  /**
55884
55873
  *
55885
- * @type {JsonApiAnalyticalDashboardInAttributes}
55874
+ * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
55886
55875
  * @memberof JsonApiFilterContextOutWithLinks
55887
55876
  */
55888
- attributes: JsonApiAnalyticalDashboardInAttributes;
55877
+ attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
55889
55878
  /**
55890
55879
  *
55891
55880
  * @type {JsonApiFilterContextOutRelationships}
@@ -55972,10 +55961,10 @@ export declare interface JsonApiFilterContextPostOptionalId {
55972
55961
  id?: string;
55973
55962
  /**
55974
55963
  *
55975
- * @type {JsonApiAnalyticalDashboardInAttributes}
55964
+ * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
55976
55965
  * @memberof JsonApiFilterContextPostOptionalId
55977
55966
  */
55978
- attributes: JsonApiAnalyticalDashboardInAttributes;
55967
+ attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
55979
55968
  }
55980
55969
 
55981
55970
  /**
@@ -56212,10 +56201,10 @@ export declare interface JsonApiFilterViewOutList {
56212
56201
  links?: ListLinks;
56213
56202
  /**
56214
56203
  *
56215
- * @type {JsonApiColorPaletteOutListMeta}
56204
+ * @type {JsonApiAggregatedFactOutListMeta}
56216
56205
  * @memberof JsonApiFilterViewOutList
56217
56206
  */
56218
- meta?: JsonApiColorPaletteOutListMeta;
56207
+ meta?: JsonApiAggregatedFactOutListMeta;
56219
56208
  /**
56220
56209
  * Included resources
56221
56210
  * @type {Array<JsonApiFilterViewOutIncludes>}
@@ -56472,7 +56461,7 @@ export declare interface JsonApiIdentityProviderInAttributes {
56472
56461
  */
56473
56462
  oauthCustomScopes?: Array<string> | null;
56474
56463
  /**
56475
- * Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
56464
+ * Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
56476
56465
  * @type {string}
56477
56466
  * @memberof JsonApiIdentityProviderInAttributes
56478
56467
  */
@@ -56482,6 +56471,7 @@ export declare interface JsonApiIdentityProviderInAttributes {
56482
56471
  export declare const JsonApiIdentityProviderInAttributesIdpTypeEnum: {
56483
56472
  readonly MANAGED_IDP: "MANAGED_IDP";
56484
56473
  readonly FIM_IDP: "FIM_IDP";
56474
+ readonly DEX_IDP: "DEX_IDP";
56485
56475
  readonly CUSTOM_IDP: "CUSTOM_IDP";
56486
56476
  };
56487
56477
 
@@ -56618,7 +56608,7 @@ export declare interface JsonApiIdentityProviderOutAttributes {
56618
56608
  */
56619
56609
  oauthCustomScopes?: Array<string> | null;
56620
56610
  /**
56621
- * Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
56611
+ * Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
56622
56612
  * @type {string}
56623
56613
  * @memberof JsonApiIdentityProviderOutAttributes
56624
56614
  */
@@ -56628,6 +56618,7 @@ export declare interface JsonApiIdentityProviderOutAttributes {
56628
56618
  export declare const JsonApiIdentityProviderOutAttributesIdpTypeEnum: {
56629
56619
  readonly MANAGED_IDP: "MANAGED_IDP";
56630
56620
  readonly FIM_IDP: "FIM_IDP";
56621
+ readonly DEX_IDP: "DEX_IDP";
56631
56622
  readonly CUSTOM_IDP: "CUSTOM_IDP";
56632
56623
  };
56633
56624
 
@@ -56673,10 +56664,10 @@ export declare interface JsonApiIdentityProviderOutList {
56673
56664
  links?: ListLinks;
56674
56665
  /**
56675
56666
  *
56676
- * @type {JsonApiColorPaletteOutListMeta}
56667
+ * @type {JsonApiAggregatedFactOutListMeta}
56677
56668
  * @memberof JsonApiIdentityProviderOutList
56678
56669
  */
56679
- meta?: JsonApiColorPaletteOutListMeta;
56670
+ meta?: JsonApiAggregatedFactOutListMeta;
56680
56671
  }
56681
56672
 
56682
56673
  export declare const JsonApiIdentityProviderOutTypeEnum: {
@@ -56796,10 +56787,24 @@ export declare interface JsonApiJwkIn {
56796
56787
  id: string;
56797
56788
  /**
56798
56789
  *
56799
- * @type {JsonApiJwkOutAttributes}
56790
+ * @type {JsonApiJwkInAttributes}
56800
56791
  * @memberof JsonApiJwkIn
56801
56792
  */
56802
- attributes?: JsonApiJwkOutAttributes;
56793
+ attributes?: JsonApiJwkInAttributes;
56794
+ }
56795
+
56796
+ /**
56797
+ *
56798
+ * @export
56799
+ * @interface JsonApiJwkInAttributes
56800
+ */
56801
+ export declare interface JsonApiJwkInAttributes {
56802
+ /**
56803
+ * Specification of the cryptographic key
56804
+ * @type {RsaSpecification}
56805
+ * @memberof JsonApiJwkInAttributes
56806
+ */
56807
+ content?: RsaSpecification;
56803
56808
  }
56804
56809
 
56805
56810
  /**
@@ -56842,24 +56847,10 @@ export declare interface JsonApiJwkOut {
56842
56847
  id: string;
56843
56848
  /**
56844
56849
  *
56845
- * @type {JsonApiJwkOutAttributes}
56850
+ * @type {JsonApiJwkInAttributes}
56846
56851
  * @memberof JsonApiJwkOut
56847
56852
  */
56848
- attributes?: JsonApiJwkOutAttributes;
56849
- }
56850
-
56851
- /**
56852
- *
56853
- * @export
56854
- * @interface JsonApiJwkOutAttributes
56855
- */
56856
- export declare interface JsonApiJwkOutAttributes {
56857
- /**
56858
- * Specification of the cryptographic key
56859
- * @type {RsaSpecification}
56860
- * @memberof JsonApiJwkOutAttributes
56861
- */
56862
- content?: RsaSpecification;
56853
+ attributes?: JsonApiJwkInAttributes;
56863
56854
  }
56864
56855
 
56865
56856
  /**
@@ -56902,10 +56893,10 @@ export declare interface JsonApiJwkOutList {
56902
56893
  links?: ListLinks;
56903
56894
  /**
56904
56895
  *
56905
- * @type {JsonApiColorPaletteOutListMeta}
56896
+ * @type {JsonApiAggregatedFactOutListMeta}
56906
56897
  * @memberof JsonApiJwkOutList
56907
56898
  */
56908
- meta?: JsonApiColorPaletteOutListMeta;
56899
+ meta?: JsonApiAggregatedFactOutListMeta;
56909
56900
  }
56910
56901
 
56911
56902
  export declare const JsonApiJwkOutTypeEnum: {
@@ -56934,10 +56925,10 @@ export declare interface JsonApiJwkOutWithLinks {
56934
56925
  id: string;
56935
56926
  /**
56936
56927
  *
56937
- * @type {JsonApiJwkOutAttributes}
56928
+ * @type {JsonApiJwkInAttributes}
56938
56929
  * @memberof JsonApiJwkOutWithLinks
56939
56930
  */
56940
- attributes?: JsonApiJwkOutAttributes;
56931
+ attributes?: JsonApiJwkInAttributes;
56941
56932
  /**
56942
56933
  *
56943
56934
  * @type {ObjectLinks}
@@ -56972,10 +56963,10 @@ export declare interface JsonApiJwkPatch {
56972
56963
  id: string;
56973
56964
  /**
56974
56965
  *
56975
- * @type {JsonApiJwkOutAttributes}
56966
+ * @type {JsonApiJwkInAttributes}
56976
56967
  * @memberof JsonApiJwkPatch
56977
56968
  */
56978
- attributes?: JsonApiJwkOutAttributes;
56969
+ attributes?: JsonApiJwkInAttributes;
56979
56970
  }
56980
56971
 
56981
56972
  /**
@@ -57187,10 +57178,10 @@ export declare interface JsonApiLabelOutList {
57187
57178
  links?: ListLinks;
57188
57179
  /**
57189
57180
  *
57190
- * @type {JsonApiColorPaletteOutListMeta}
57181
+ * @type {JsonApiAggregatedFactOutListMeta}
57191
57182
  * @memberof JsonApiLabelOutList
57192
57183
  */
57193
- meta?: JsonApiColorPaletteOutListMeta;
57184
+ meta?: JsonApiAggregatedFactOutListMeta;
57194
57185
  /**
57195
57186
  * Included resources
57196
57187
  * @type {Array<JsonApiAttributeOutWithLinks>}
@@ -57498,10 +57489,10 @@ export declare interface JsonApiLlmEndpointOutList {
57498
57489
  links?: ListLinks;
57499
57490
  /**
57500
57491
  *
57501
- * @type {JsonApiColorPaletteOutListMeta}
57492
+ * @type {JsonApiAggregatedFactOutListMeta}
57502
57493
  * @memberof JsonApiLlmEndpointOutList
57503
57494
  */
57504
- meta?: JsonApiColorPaletteOutListMeta;
57495
+ meta?: JsonApiAggregatedFactOutListMeta;
57505
57496
  }
57506
57497
 
57507
57498
  export declare const JsonApiLlmEndpointOutTypeEnum: {
@@ -57665,48 +57656,10 @@ export declare interface JsonApiMetricIn {
57665
57656
  id: string;
57666
57657
  /**
57667
57658
  *
57668
- * @type {JsonApiMetricInAttributes}
57659
+ * @type {JsonApiMetricPostOptionalIdAttributes}
57669
57660
  * @memberof JsonApiMetricIn
57670
57661
  */
57671
- attributes: JsonApiMetricInAttributes;
57672
- }
57673
-
57674
- /**
57675
- *
57676
- * @export
57677
- * @interface JsonApiMetricInAttributes
57678
- */
57679
- export declare interface JsonApiMetricInAttributes {
57680
- /**
57681
- *
57682
- * @type {string}
57683
- * @memberof JsonApiMetricInAttributes
57684
- */
57685
- title?: string;
57686
- /**
57687
- *
57688
- * @type {string}
57689
- * @memberof JsonApiMetricInAttributes
57690
- */
57691
- description?: string;
57692
- /**
57693
- *
57694
- * @type {Array<string>}
57695
- * @memberof JsonApiMetricInAttributes
57696
- */
57697
- tags?: Array<string>;
57698
- /**
57699
- *
57700
- * @type {boolean}
57701
- * @memberof JsonApiMetricInAttributes
57702
- */
57703
- areRelationsValid?: boolean;
57704
- /**
57705
- *
57706
- * @type {JsonApiMetricOutAttributesContent}
57707
- * @memberof JsonApiMetricInAttributes
57708
- */
57709
- content: JsonApiMetricOutAttributesContent;
57662
+ attributes: JsonApiMetricPostOptionalIdAttributes;
57710
57663
  }
57711
57664
 
57712
57665
  /**
@@ -57915,10 +57868,10 @@ export declare interface JsonApiMetricOutList {
57915
57868
  links?: ListLinks;
57916
57869
  /**
57917
57870
  *
57918
- * @type {JsonApiColorPaletteOutListMeta}
57871
+ * @type {JsonApiAggregatedFactOutListMeta}
57919
57872
  * @memberof JsonApiMetricOutList
57920
57873
  */
57921
- meta?: JsonApiColorPaletteOutListMeta;
57874
+ meta?: JsonApiAggregatedFactOutListMeta;
57922
57875
  /**
57923
57876
  * Included resources
57924
57877
  * @type {Array<JsonApiMetricOutIncludes>}
@@ -58087,10 +58040,48 @@ export declare interface JsonApiMetricPostOptionalId {
58087
58040
  id?: string;
58088
58041
  /**
58089
58042
  *
58090
- * @type {JsonApiMetricInAttributes}
58043
+ * @type {JsonApiMetricPostOptionalIdAttributes}
58091
58044
  * @memberof JsonApiMetricPostOptionalId
58092
58045
  */
58093
- attributes: JsonApiMetricInAttributes;
58046
+ attributes: JsonApiMetricPostOptionalIdAttributes;
58047
+ }
58048
+
58049
+ /**
58050
+ *
58051
+ * @export
58052
+ * @interface JsonApiMetricPostOptionalIdAttributes
58053
+ */
58054
+ export declare interface JsonApiMetricPostOptionalIdAttributes {
58055
+ /**
58056
+ *
58057
+ * @type {string}
58058
+ * @memberof JsonApiMetricPostOptionalIdAttributes
58059
+ */
58060
+ title?: string;
58061
+ /**
58062
+ *
58063
+ * @type {string}
58064
+ * @memberof JsonApiMetricPostOptionalIdAttributes
58065
+ */
58066
+ description?: string;
58067
+ /**
58068
+ *
58069
+ * @type {Array<string>}
58070
+ * @memberof JsonApiMetricPostOptionalIdAttributes
58071
+ */
58072
+ tags?: Array<string>;
58073
+ /**
58074
+ *
58075
+ * @type {boolean}
58076
+ * @memberof JsonApiMetricPostOptionalIdAttributes
58077
+ */
58078
+ areRelationsValid?: boolean;
58079
+ /**
58080
+ *
58081
+ * @type {JsonApiMetricOutAttributesContent}
58082
+ * @memberof JsonApiMetricPostOptionalIdAttributes
58083
+ */
58084
+ content: JsonApiMetricOutAttributesContent;
58094
58085
  }
58095
58086
 
58096
58087
  /**
@@ -58228,10 +58219,10 @@ export declare interface JsonApiNotificationChannelIdentifierOutList {
58228
58219
  links?: ListLinks;
58229
58220
  /**
58230
58221
  *
58231
- * @type {JsonApiColorPaletteOutListMeta}
58222
+ * @type {JsonApiAggregatedFactOutListMeta}
58232
58223
  * @memberof JsonApiNotificationChannelIdentifierOutList
58233
58224
  */
58234
- meta?: JsonApiColorPaletteOutListMeta;
58225
+ meta?: JsonApiAggregatedFactOutListMeta;
58235
58226
  }
58236
58227
 
58237
58228
  export declare const JsonApiNotificationChannelIdentifierOutTypeEnum: {
@@ -58510,10 +58501,10 @@ export declare interface JsonApiNotificationChannelOutList {
58510
58501
  links?: ListLinks;
58511
58502
  /**
58512
58503
  *
58513
- * @type {JsonApiColorPaletteOutListMeta}
58504
+ * @type {JsonApiAggregatedFactOutListMeta}
58514
58505
  * @memberof JsonApiNotificationChannelOutList
58515
58506
  */
58516
- meta?: JsonApiColorPaletteOutListMeta;
58507
+ meta?: JsonApiAggregatedFactOutListMeta;
58517
58508
  }
58518
58509
 
58519
58510
  export declare const JsonApiNotificationChannelOutTypeEnum: {
@@ -59005,10 +58996,10 @@ export declare interface JsonApiOrganizationOutRelationships {
59005
58996
  bootstrapUser?: JsonApiFilterViewInRelationshipsUser;
59006
58997
  /**
59007
58998
  *
59008
- * @type {JsonApiUserDataFilterInRelationshipsUserGroup}
58999
+ * @type {JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup}
59009
59000
  * @memberof JsonApiOrganizationOutRelationships
59010
59001
  */
59011
- bootstrapUserGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
59002
+ bootstrapUserGroup?: JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup;
59012
59003
  /**
59013
59004
  *
59014
59005
  * @type {JsonApiOrganizationPatchRelationshipsIdentityProvider}
@@ -59206,10 +59197,10 @@ export declare interface JsonApiOrganizationSettingIn {
59206
59197
  id: string;
59207
59198
  /**
59208
59199
  *
59209
- * @type {JsonApiWorkspaceSettingInAttributes}
59200
+ * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
59210
59201
  * @memberof JsonApiOrganizationSettingIn
59211
59202
  */
59212
- attributes?: JsonApiWorkspaceSettingInAttributes;
59203
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
59213
59204
  }
59214
59205
 
59215
59206
  /**
@@ -59252,10 +59243,10 @@ export declare interface JsonApiOrganizationSettingOut {
59252
59243
  id: string;
59253
59244
  /**
59254
59245
  *
59255
- * @type {JsonApiWorkspaceSettingInAttributes}
59246
+ * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
59256
59247
  * @memberof JsonApiOrganizationSettingOut
59257
59248
  */
59258
- attributes?: JsonApiWorkspaceSettingInAttributes;
59249
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
59259
59250
  }
59260
59251
 
59261
59252
  /**
@@ -59298,10 +59289,10 @@ export declare interface JsonApiOrganizationSettingOutList {
59298
59289
  links?: ListLinks;
59299
59290
  /**
59300
59291
  *
59301
- * @type {JsonApiColorPaletteOutListMeta}
59292
+ * @type {JsonApiAggregatedFactOutListMeta}
59302
59293
  * @memberof JsonApiOrganizationSettingOutList
59303
59294
  */
59304
- meta?: JsonApiColorPaletteOutListMeta;
59295
+ meta?: JsonApiAggregatedFactOutListMeta;
59305
59296
  }
59306
59297
 
59307
59298
  export declare const JsonApiOrganizationSettingOutTypeEnum: {
@@ -59330,10 +59321,10 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
59330
59321
  id: string;
59331
59322
  /**
59332
59323
  *
59333
- * @type {JsonApiWorkspaceSettingInAttributes}
59324
+ * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
59334
59325
  * @memberof JsonApiOrganizationSettingOutWithLinks
59335
59326
  */
59336
- attributes?: JsonApiWorkspaceSettingInAttributes;
59327
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
59337
59328
  /**
59338
59329
  *
59339
59330
  * @type {ObjectLinks}
@@ -59368,10 +59359,10 @@ export declare interface JsonApiOrganizationSettingPatch {
59368
59359
  id: string;
59369
59360
  /**
59370
59361
  *
59371
- * @type {JsonApiWorkspaceSettingInAttributes}
59362
+ * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
59372
59363
  * @memberof JsonApiOrganizationSettingPatch
59373
59364
  */
59374
- attributes?: JsonApiWorkspaceSettingInAttributes;
59365
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
59375
59366
  }
59376
59367
 
59377
59368
  /**
@@ -59414,10 +59405,10 @@ export declare interface JsonApiThemeIn {
59414
59405
  id: string;
59415
59406
  /**
59416
59407
  *
59417
- * @type {JsonApiColorPaletteOutAttributes}
59408
+ * @type {JsonApiColorPaletteInAttributes}
59418
59409
  * @memberof JsonApiThemeIn
59419
59410
  */
59420
- attributes: JsonApiColorPaletteOutAttributes;
59411
+ attributes: JsonApiColorPaletteInAttributes;
59421
59412
  }
59422
59413
 
59423
59414
  /**
@@ -59460,10 +59451,10 @@ export declare interface JsonApiThemeOut {
59460
59451
  id: string;
59461
59452
  /**
59462
59453
  *
59463
- * @type {JsonApiColorPaletteOutAttributes}
59454
+ * @type {JsonApiColorPaletteInAttributes}
59464
59455
  * @memberof JsonApiThemeOut
59465
59456
  */
59466
- attributes: JsonApiColorPaletteOutAttributes;
59457
+ attributes: JsonApiColorPaletteInAttributes;
59467
59458
  }
59468
59459
 
59469
59460
  /**
@@ -59506,10 +59497,10 @@ export declare interface JsonApiThemeOutList {
59506
59497
  links?: ListLinks;
59507
59498
  /**
59508
59499
  *
59509
- * @type {JsonApiColorPaletteOutListMeta}
59500
+ * @type {JsonApiAggregatedFactOutListMeta}
59510
59501
  * @memberof JsonApiThemeOutList
59511
59502
  */
59512
- meta?: JsonApiColorPaletteOutListMeta;
59503
+ meta?: JsonApiAggregatedFactOutListMeta;
59513
59504
  }
59514
59505
 
59515
59506
  export declare const JsonApiThemeOutTypeEnum: {
@@ -59538,10 +59529,10 @@ export declare interface JsonApiThemeOutWithLinks {
59538
59529
  id: string;
59539
59530
  /**
59540
59531
  *
59541
- * @type {JsonApiColorPaletteOutAttributes}
59532
+ * @type {JsonApiColorPaletteInAttributes}
59542
59533
  * @memberof JsonApiThemeOutWithLinks
59543
59534
  */
59544
- attributes: JsonApiColorPaletteOutAttributes;
59535
+ attributes: JsonApiColorPaletteInAttributes;
59545
59536
  /**
59546
59537
  *
59547
59538
  * @type {ObjectLinks}
@@ -59622,54 +59613,16 @@ export declare interface JsonApiUserDataFilterIn {
59622
59613
  id: string;
59623
59614
  /**
59624
59615
  *
59625
- * @type {JsonApiUserDataFilterInAttributes}
59616
+ * @type {JsonApiUserDataFilterPostOptionalIdAttributes}
59626
59617
  * @memberof JsonApiUserDataFilterIn
59627
59618
  */
59628
- attributes: JsonApiUserDataFilterInAttributes;
59619
+ attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
59629
59620
  /**
59630
59621
  *
59631
- * @type {JsonApiUserDataFilterInRelationships}
59622
+ * @type {JsonApiUserDataFilterPostOptionalIdRelationships}
59632
59623
  * @memberof JsonApiUserDataFilterIn
59633
59624
  */
59634
- relationships?: JsonApiUserDataFilterInRelationships;
59635
- }
59636
-
59637
- /**
59638
- *
59639
- * @export
59640
- * @interface JsonApiUserDataFilterInAttributes
59641
- */
59642
- export declare interface JsonApiUserDataFilterInAttributes {
59643
- /**
59644
- *
59645
- * @type {string}
59646
- * @memberof JsonApiUserDataFilterInAttributes
59647
- */
59648
- title?: string;
59649
- /**
59650
- *
59651
- * @type {string}
59652
- * @memberof JsonApiUserDataFilterInAttributes
59653
- */
59654
- description?: string;
59655
- /**
59656
- *
59657
- * @type {Array<string>}
59658
- * @memberof JsonApiUserDataFilterInAttributes
59659
- */
59660
- tags?: Array<string>;
59661
- /**
59662
- *
59663
- * @type {boolean}
59664
- * @memberof JsonApiUserDataFilterInAttributes
59665
- */
59666
- areRelationsValid?: boolean;
59667
- /**
59668
- *
59669
- * @type {string}
59670
- * @memberof JsonApiUserDataFilterInAttributes
59671
- */
59672
- maql: string;
59625
+ relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
59673
59626
  }
59674
59627
 
59675
59628
  /**
@@ -59686,40 +59639,6 @@ export declare interface JsonApiUserDataFilterInDocument {
59686
59639
  data: JsonApiUserDataFilterIn;
59687
59640
  }
59688
59641
 
59689
- /**
59690
- *
59691
- * @export
59692
- * @interface JsonApiUserDataFilterInRelationships
59693
- */
59694
- export declare interface JsonApiUserDataFilterInRelationships {
59695
- /**
59696
- *
59697
- * @type {JsonApiFilterViewInRelationshipsUser}
59698
- * @memberof JsonApiUserDataFilterInRelationships
59699
- */
59700
- user?: JsonApiFilterViewInRelationshipsUser;
59701
- /**
59702
- *
59703
- * @type {JsonApiUserDataFilterInRelationshipsUserGroup}
59704
- * @memberof JsonApiUserDataFilterInRelationships
59705
- */
59706
- userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
59707
- }
59708
-
59709
- /**
59710
- *
59711
- * @export
59712
- * @interface JsonApiUserDataFilterInRelationshipsUserGroup
59713
- */
59714
- export declare interface JsonApiUserDataFilterInRelationshipsUserGroup {
59715
- /**
59716
- *
59717
- * @type {JsonApiUserGroupToOneLinkage}
59718
- * @memberof JsonApiUserDataFilterInRelationshipsUserGroup
59719
- */
59720
- data: JsonApiUserGroupToOneLinkage | null;
59721
- }
59722
-
59723
59642
  export declare const JsonApiUserDataFilterInTypeEnum: {
59724
59643
  readonly USER_DATA_FILTER: "userDataFilter";
59725
59644
  };
@@ -59752,10 +59671,10 @@ export declare interface JsonApiUserDataFilterOut {
59752
59671
  meta?: JsonApiVisualizationObjectOutMeta;
59753
59672
  /**
59754
59673
  *
59755
- * @type {JsonApiUserDataFilterInAttributes}
59674
+ * @type {JsonApiUserDataFilterPostOptionalIdAttributes}
59756
59675
  * @memberof JsonApiUserDataFilterOut
59757
59676
  */
59758
- attributes: JsonApiUserDataFilterInAttributes;
59677
+ attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
59759
59678
  /**
59760
59679
  *
59761
59680
  * @type {JsonApiUserDataFilterOutRelationships}
@@ -59816,10 +59735,10 @@ export declare interface JsonApiUserDataFilterOutList {
59816
59735
  links?: ListLinks;
59817
59736
  /**
59818
59737
  *
59819
- * @type {JsonApiColorPaletteOutListMeta}
59738
+ * @type {JsonApiAggregatedFactOutListMeta}
59820
59739
  * @memberof JsonApiUserDataFilterOutList
59821
59740
  */
59822
- meta?: JsonApiColorPaletteOutListMeta;
59741
+ meta?: JsonApiAggregatedFactOutListMeta;
59823
59742
  /**
59824
59743
  * Included resources
59825
59744
  * @type {Array<JsonApiUserDataFilterOutIncludes>}
@@ -59842,10 +59761,10 @@ export declare interface JsonApiUserDataFilterOutRelationships {
59842
59761
  user?: JsonApiFilterViewInRelationshipsUser;
59843
59762
  /**
59844
59763
  *
59845
- * @type {JsonApiUserDataFilterInRelationshipsUserGroup}
59764
+ * @type {JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup}
59846
59765
  * @memberof JsonApiUserDataFilterOutRelationships
59847
59766
  */
59848
- userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
59767
+ userGroup?: JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup;
59849
59768
  /**
59850
59769
  *
59851
59770
  * @type {JsonApiVisualizationObjectOutRelationshipsFacts}
@@ -59910,10 +59829,10 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
59910
59829
  meta?: JsonApiVisualizationObjectOutMeta;
59911
59830
  /**
59912
59831
  *
59913
- * @type {JsonApiUserDataFilterInAttributes}
59832
+ * @type {JsonApiUserDataFilterPostOptionalIdAttributes}
59914
59833
  * @memberof JsonApiUserDataFilterOutWithLinks
59915
59834
  */
59916
- attributes: JsonApiUserDataFilterInAttributes;
59835
+ attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
59917
59836
  /**
59918
59837
  *
59919
59838
  * @type {JsonApiUserDataFilterOutRelationships}
@@ -59960,10 +59879,10 @@ export declare interface JsonApiUserDataFilterPatch {
59960
59879
  attributes: JsonApiUserDataFilterPatchAttributes;
59961
59880
  /**
59962
59881
  *
59963
- * @type {JsonApiUserDataFilterInRelationships}
59882
+ * @type {JsonApiUserDataFilterPostOptionalIdRelationships}
59964
59883
  * @memberof JsonApiUserDataFilterPatch
59965
59884
  */
59966
- relationships?: JsonApiUserDataFilterInRelationships;
59885
+ relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
59967
59886
  }
59968
59887
 
59969
59888
  /**
@@ -60044,16 +59963,54 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
60044
59963
  id?: string;
60045
59964
  /**
60046
59965
  *
60047
- * @type {JsonApiUserDataFilterInAttributes}
59966
+ * @type {JsonApiUserDataFilterPostOptionalIdAttributes}
60048
59967
  * @memberof JsonApiUserDataFilterPostOptionalId
60049
59968
  */
60050
- attributes: JsonApiUserDataFilterInAttributes;
59969
+ attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
60051
59970
  /**
60052
59971
  *
60053
- * @type {JsonApiUserDataFilterInRelationships}
59972
+ * @type {JsonApiUserDataFilterPostOptionalIdRelationships}
60054
59973
  * @memberof JsonApiUserDataFilterPostOptionalId
60055
59974
  */
60056
- relationships?: JsonApiUserDataFilterInRelationships;
59975
+ relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
59976
+ }
59977
+
59978
+ /**
59979
+ *
59980
+ * @export
59981
+ * @interface JsonApiUserDataFilterPostOptionalIdAttributes
59982
+ */
59983
+ export declare interface JsonApiUserDataFilterPostOptionalIdAttributes {
59984
+ /**
59985
+ *
59986
+ * @type {string}
59987
+ * @memberof JsonApiUserDataFilterPostOptionalIdAttributes
59988
+ */
59989
+ title?: string;
59990
+ /**
59991
+ *
59992
+ * @type {string}
59993
+ * @memberof JsonApiUserDataFilterPostOptionalIdAttributes
59994
+ */
59995
+ description?: string;
59996
+ /**
59997
+ *
59998
+ * @type {Array<string>}
59999
+ * @memberof JsonApiUserDataFilterPostOptionalIdAttributes
60000
+ */
60001
+ tags?: Array<string>;
60002
+ /**
60003
+ *
60004
+ * @type {boolean}
60005
+ * @memberof JsonApiUserDataFilterPostOptionalIdAttributes
60006
+ */
60007
+ areRelationsValid?: boolean;
60008
+ /**
60009
+ *
60010
+ * @type {string}
60011
+ * @memberof JsonApiUserDataFilterPostOptionalIdAttributes
60012
+ */
60013
+ maql: string;
60057
60014
  }
60058
60015
 
60059
60016
  /**
@@ -60070,6 +60027,40 @@ export declare interface JsonApiUserDataFilterPostOptionalIdDocument {
60070
60027
  data: JsonApiUserDataFilterPostOptionalId;
60071
60028
  }
60072
60029
 
60030
+ /**
60031
+ *
60032
+ * @export
60033
+ * @interface JsonApiUserDataFilterPostOptionalIdRelationships
60034
+ */
60035
+ export declare interface JsonApiUserDataFilterPostOptionalIdRelationships {
60036
+ /**
60037
+ *
60038
+ * @type {JsonApiFilterViewInRelationshipsUser}
60039
+ * @memberof JsonApiUserDataFilterPostOptionalIdRelationships
60040
+ */
60041
+ user?: JsonApiFilterViewInRelationshipsUser;
60042
+ /**
60043
+ *
60044
+ * @type {JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup}
60045
+ * @memberof JsonApiUserDataFilterPostOptionalIdRelationships
60046
+ */
60047
+ userGroup?: JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup;
60048
+ }
60049
+
60050
+ /**
60051
+ *
60052
+ * @export
60053
+ * @interface JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup
60054
+ */
60055
+ export declare interface JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup {
60056
+ /**
60057
+ *
60058
+ * @type {JsonApiUserGroupToOneLinkage}
60059
+ * @memberof JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup
60060
+ */
60061
+ data: JsonApiUserGroupToOneLinkage | null;
60062
+ }
60063
+
60073
60064
  export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
60074
60065
  readonly USER_DATA_FILTER: "userDataFilter";
60075
60066
  };
@@ -60246,10 +60237,10 @@ export declare interface JsonApiUserGroupOutList {
60246
60237
  links?: ListLinks;
60247
60238
  /**
60248
60239
  *
60249
- * @type {JsonApiColorPaletteOutListMeta}
60240
+ * @type {JsonApiAggregatedFactOutListMeta}
60250
60241
  * @memberof JsonApiUserGroupOutList
60251
60242
  */
60252
- meta?: JsonApiColorPaletteOutListMeta;
60243
+ meta?: JsonApiAggregatedFactOutListMeta;
60253
60244
  /**
60254
60245
  * Included resources
60255
60246
  * @type {Array<JsonApiUserGroupOutWithLinks>}
@@ -60499,10 +60490,10 @@ export declare interface JsonApiUserIdentifierOutList {
60499
60490
  links?: ListLinks;
60500
60491
  /**
60501
60492
  *
60502
- * @type {JsonApiColorPaletteOutListMeta}
60493
+ * @type {JsonApiAggregatedFactOutListMeta}
60503
60494
  * @memberof JsonApiUserIdentifierOutList
60504
60495
  */
60505
- meta?: JsonApiColorPaletteOutListMeta;
60496
+ meta?: JsonApiAggregatedFactOutListMeta;
60506
60497
  }
60507
60498
 
60508
60499
  export declare const JsonApiUserIdentifierOutTypeEnum: {
@@ -60744,10 +60735,10 @@ export declare interface JsonApiUserOutList {
60744
60735
  links?: ListLinks;
60745
60736
  /**
60746
60737
  *
60747
- * @type {JsonApiColorPaletteOutListMeta}
60738
+ * @type {JsonApiAggregatedFactOutListMeta}
60748
60739
  * @memberof JsonApiUserOutList
60749
60740
  */
60750
- meta?: JsonApiColorPaletteOutListMeta;
60741
+ meta?: JsonApiAggregatedFactOutListMeta;
60751
60742
  /**
60752
60743
  * Included resources
60753
60744
  * @type {Array<JsonApiUserGroupOutWithLinks>}
@@ -60906,10 +60897,10 @@ export declare interface JsonApiUserSettingIn {
60906
60897
  id: string;
60907
60898
  /**
60908
60899
  *
60909
- * @type {JsonApiWorkspaceSettingInAttributes}
60900
+ * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
60910
60901
  * @memberof JsonApiUserSettingIn
60911
60902
  */
60912
- attributes?: JsonApiWorkspaceSettingInAttributes;
60903
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
60913
60904
  }
60914
60905
 
60915
60906
  /**
@@ -60952,10 +60943,10 @@ export declare interface JsonApiUserSettingOut {
60952
60943
  id: string;
60953
60944
  /**
60954
60945
  *
60955
- * @type {JsonApiWorkspaceSettingInAttributes}
60946
+ * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
60956
60947
  * @memberof JsonApiUserSettingOut
60957
60948
  */
60958
- attributes?: JsonApiWorkspaceSettingInAttributes;
60949
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
60959
60950
  }
60960
60951
 
60961
60952
  /**
@@ -60998,10 +60989,10 @@ export declare interface JsonApiUserSettingOutList {
60998
60989
  links?: ListLinks;
60999
60990
  /**
61000
60991
  *
61001
- * @type {JsonApiColorPaletteOutListMeta}
60992
+ * @type {JsonApiAggregatedFactOutListMeta}
61002
60993
  * @memberof JsonApiUserSettingOutList
61003
60994
  */
61004
- meta?: JsonApiColorPaletteOutListMeta;
60995
+ meta?: JsonApiAggregatedFactOutListMeta;
61005
60996
  }
61006
60997
 
61007
60998
  export declare const JsonApiUserSettingOutTypeEnum: {
@@ -61030,10 +61021,10 @@ export declare interface JsonApiUserSettingOutWithLinks {
61030
61021
  id: string;
61031
61022
  /**
61032
61023
  *
61033
- * @type {JsonApiWorkspaceSettingInAttributes}
61024
+ * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
61034
61025
  * @memberof JsonApiUserSettingOutWithLinks
61035
61026
  */
61036
- attributes?: JsonApiWorkspaceSettingInAttributes;
61027
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
61037
61028
  /**
61038
61029
  *
61039
61030
  * @type {ObjectLinks}
@@ -61075,10 +61066,10 @@ export declare interface JsonApiVisualizationObjectIn {
61075
61066
  id: string;
61076
61067
  /**
61077
61068
  *
61078
- * @type {JsonApiAnalyticalDashboardInAttributes}
61069
+ * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
61079
61070
  * @memberof JsonApiVisualizationObjectIn
61080
61071
  */
61081
- attributes: JsonApiAnalyticalDashboardInAttributes;
61072
+ attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
61082
61073
  }
61083
61074
 
61084
61075
  /**
@@ -61261,10 +61252,10 @@ export declare interface JsonApiVisualizationObjectOutList {
61261
61252
  links?: ListLinks;
61262
61253
  /**
61263
61254
  *
61264
- * @type {JsonApiColorPaletteOutListMeta}
61255
+ * @type {JsonApiAggregatedFactOutListMeta}
61265
61256
  * @memberof JsonApiVisualizationObjectOutList
61266
61257
  */
61267
- meta?: JsonApiColorPaletteOutListMeta;
61258
+ meta?: JsonApiAggregatedFactOutListMeta;
61268
61259
  /**
61269
61260
  * Included resources
61270
61261
  * @type {Array<JsonApiMetricOutIncludes>}
@@ -61570,10 +61561,10 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
61570
61561
  id?: string;
61571
61562
  /**
61572
61563
  *
61573
- * @type {JsonApiAnalyticalDashboardInAttributes}
61564
+ * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
61574
61565
  * @memberof JsonApiVisualizationObjectPostOptionalId
61575
61566
  */
61576
- attributes: JsonApiAnalyticalDashboardInAttributes;
61567
+ attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
61577
61568
  }
61578
61569
 
61579
61570
  /**
@@ -61791,10 +61782,10 @@ export declare interface JsonApiWorkspaceDataFilterOutList {
61791
61782
  links?: ListLinks;
61792
61783
  /**
61793
61784
  *
61794
- * @type {JsonApiColorPaletteOutListMeta}
61785
+ * @type {JsonApiAggregatedFactOutListMeta}
61795
61786
  * @memberof JsonApiWorkspaceDataFilterOutList
61796
61787
  */
61797
- meta?: JsonApiColorPaletteOutListMeta;
61788
+ meta?: JsonApiAggregatedFactOutListMeta;
61798
61789
  /**
61799
61790
  * Included resources
61800
61791
  * @type {Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>}
@@ -62155,10 +62146,10 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutList {
62155
62146
  links?: ListLinks;
62156
62147
  /**
62157
62148
  *
62158
- * @type {JsonApiColorPaletteOutListMeta}
62149
+ * @type {JsonApiAggregatedFactOutListMeta}
62159
62150
  * @memberof JsonApiWorkspaceDataFilterSettingOutList
62160
62151
  */
62161
- meta?: JsonApiColorPaletteOutListMeta;
62152
+ meta?: JsonApiAggregatedFactOutListMeta;
62162
62153
  /**
62163
62154
  * Included resources
62164
62155
  * @type {Array<JsonApiWorkspaceDataFilterOutWithLinks>}
@@ -62302,16 +62293,87 @@ export declare interface JsonApiWorkspaceIn {
62302
62293
  id: string;
62303
62294
  /**
62304
62295
  *
62305
- * @type {JsonApiWorkspaceOutAttributes}
62296
+ * @type {JsonApiWorkspaceInAttributes}
62306
62297
  * @memberof JsonApiWorkspaceIn
62307
62298
  */
62308
- attributes?: JsonApiWorkspaceOutAttributes;
62299
+ attributes?: JsonApiWorkspaceInAttributes;
62309
62300
  /**
62310
62301
  *
62311
- * @type {JsonApiWorkspaceOutRelationships}
62302
+ * @type {JsonApiWorkspaceInRelationships}
62312
62303
  * @memberof JsonApiWorkspaceIn
62313
62304
  */
62314
- relationships?: JsonApiWorkspaceOutRelationships;
62305
+ relationships?: JsonApiWorkspaceInRelationships;
62306
+ }
62307
+
62308
+ /**
62309
+ *
62310
+ * @export
62311
+ * @interface JsonApiWorkspaceInAttributes
62312
+ */
62313
+ export declare interface JsonApiWorkspaceInAttributes {
62314
+ /**
62315
+ *
62316
+ * @type {string}
62317
+ * @memberof JsonApiWorkspaceInAttributes
62318
+ */
62319
+ name?: string | null;
62320
+ /**
62321
+ * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
62322
+ * @type {string}
62323
+ * @memberof JsonApiWorkspaceInAttributes
62324
+ * @deprecated
62325
+ */
62326
+ earlyAccess?: string | null;
62327
+ /**
62328
+ * The early access feature identifiers. They are used to enable experimental features.
62329
+ * @type {Array<string>}
62330
+ * @memberof JsonApiWorkspaceInAttributes
62331
+ */
62332
+ earlyAccessValues?: Array<string> | null;
62333
+ /**
62334
+ *
62335
+ * @type {string}
62336
+ * @memberof JsonApiWorkspaceInAttributes
62337
+ */
62338
+ description?: string | null;
62339
+ /**
62340
+ * Custom prefix of entity identifiers in workspace
62341
+ * @type {string}
62342
+ * @memberof JsonApiWorkspaceInAttributes
62343
+ */
62344
+ prefix?: string | null;
62345
+ /**
62346
+ *
62347
+ * @type {number}
62348
+ * @memberof JsonApiWorkspaceInAttributes
62349
+ */
62350
+ cacheExtraLimit?: number;
62351
+ /**
62352
+ *
62353
+ * @type {JsonApiWorkspaceInAttributesDataSource}
62354
+ * @memberof JsonApiWorkspaceInAttributes
62355
+ */
62356
+ dataSource?: JsonApiWorkspaceInAttributesDataSource;
62357
+ }
62358
+
62359
+ /**
62360
+ * 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.
62361
+ * @export
62362
+ * @interface JsonApiWorkspaceInAttributesDataSource
62363
+ */
62364
+ export declare interface JsonApiWorkspaceInAttributesDataSource {
62365
+ /**
62366
+ * The ID of the used data source.
62367
+ * @type {string}
62368
+ * @memberof JsonApiWorkspaceInAttributesDataSource
62369
+ */
62370
+ id: string;
62371
+ /**
62372
+ * The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
62373
+ * @type {Array<string>}
62374
+ * @memberof JsonApiWorkspaceInAttributesDataSource
62375
+ */
62376
+ schemaPath?: Array<string>;
62315
62377
  }
62316
62378
 
62317
62379
  /**
@@ -62328,6 +62390,34 @@ export declare interface JsonApiWorkspaceInDocument {
62328
62390
  data: JsonApiWorkspaceIn;
62329
62391
  }
62330
62392
 
62393
+ /**
62394
+ *
62395
+ * @export
62396
+ * @interface JsonApiWorkspaceInRelationships
62397
+ */
62398
+ export declare interface JsonApiWorkspaceInRelationships {
62399
+ /**
62400
+ *
62401
+ * @type {JsonApiWorkspaceInRelationshipsParent}
62402
+ * @memberof JsonApiWorkspaceInRelationships
62403
+ */
62404
+ parent?: JsonApiWorkspaceInRelationshipsParent;
62405
+ }
62406
+
62407
+ /**
62408
+ *
62409
+ * @export
62410
+ * @interface JsonApiWorkspaceInRelationshipsParent
62411
+ */
62412
+ export declare interface JsonApiWorkspaceInRelationshipsParent {
62413
+ /**
62414
+ *
62415
+ * @type {JsonApiWorkspaceToOneLinkage}
62416
+ * @memberof JsonApiWorkspaceInRelationshipsParent
62417
+ */
62418
+ data: JsonApiWorkspaceToOneLinkage | null;
62419
+ }
62420
+
62331
62421
  export declare const JsonApiWorkspaceInTypeEnum: {
62332
62422
  readonly WORKSPACE: "workspace";
62333
62423
  };
@@ -62386,87 +62476,16 @@ export declare interface JsonApiWorkspaceOut {
62386
62476
  meta?: JsonApiWorkspaceOutMeta;
62387
62477
  /**
62388
62478
  *
62389
- * @type {JsonApiWorkspaceOutAttributes}
62479
+ * @type {JsonApiWorkspaceInAttributes}
62390
62480
  * @memberof JsonApiWorkspaceOut
62391
62481
  */
62392
- attributes?: JsonApiWorkspaceOutAttributes;
62482
+ attributes?: JsonApiWorkspaceInAttributes;
62393
62483
  /**
62394
62484
  *
62395
- * @type {JsonApiWorkspaceOutRelationships}
62485
+ * @type {JsonApiWorkspaceInRelationships}
62396
62486
  * @memberof JsonApiWorkspaceOut
62397
62487
  */
62398
- relationships?: JsonApiWorkspaceOutRelationships;
62399
- }
62400
-
62401
- /**
62402
- *
62403
- * @export
62404
- * @interface JsonApiWorkspaceOutAttributes
62405
- */
62406
- export declare interface JsonApiWorkspaceOutAttributes {
62407
- /**
62408
- *
62409
- * @type {string}
62410
- * @memberof JsonApiWorkspaceOutAttributes
62411
- */
62412
- name?: string | null;
62413
- /**
62414
- * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
62415
- * @type {string}
62416
- * @memberof JsonApiWorkspaceOutAttributes
62417
- * @deprecated
62418
- */
62419
- earlyAccess?: string | null;
62420
- /**
62421
- * The early access feature identifiers. They are used to enable experimental features.
62422
- * @type {Array<string>}
62423
- * @memberof JsonApiWorkspaceOutAttributes
62424
- */
62425
- earlyAccessValues?: Array<string> | null;
62426
- /**
62427
- *
62428
- * @type {string}
62429
- * @memberof JsonApiWorkspaceOutAttributes
62430
- */
62431
- description?: string | null;
62432
- /**
62433
- * Custom prefix of entity identifiers in workspace
62434
- * @type {string}
62435
- * @memberof JsonApiWorkspaceOutAttributes
62436
- */
62437
- prefix?: string | null;
62438
- /**
62439
- *
62440
- * @type {number}
62441
- * @memberof JsonApiWorkspaceOutAttributes
62442
- */
62443
- cacheExtraLimit?: number;
62444
- /**
62445
- *
62446
- * @type {JsonApiWorkspaceOutAttributesDataSource}
62447
- * @memberof JsonApiWorkspaceOutAttributes
62448
- */
62449
- dataSource?: JsonApiWorkspaceOutAttributesDataSource;
62450
- }
62451
-
62452
- /**
62453
- * 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.
62454
- * @export
62455
- * @interface JsonApiWorkspaceOutAttributesDataSource
62456
- */
62457
- export declare interface JsonApiWorkspaceOutAttributesDataSource {
62458
- /**
62459
- * The ID of the used data source.
62460
- * @type {string}
62461
- * @memberof JsonApiWorkspaceOutAttributesDataSource
62462
- */
62463
- id: string;
62464
- /**
62465
- * The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
62466
- * @type {Array<string>}
62467
- * @memberof JsonApiWorkspaceOutAttributesDataSource
62468
- */
62469
- schemaPath?: Array<string>;
62488
+ relationships?: JsonApiWorkspaceInRelationships;
62470
62489
  }
62471
62490
 
62472
62491
  /**
@@ -62515,10 +62534,10 @@ export declare interface JsonApiWorkspaceOutList {
62515
62534
  links?: ListLinks;
62516
62535
  /**
62517
62536
  *
62518
- * @type {JsonApiColorPaletteOutListMeta}
62537
+ * @type {JsonApiAggregatedFactOutListMeta}
62519
62538
  * @memberof JsonApiWorkspaceOutList
62520
62539
  */
62521
- meta?: JsonApiColorPaletteOutListMeta;
62540
+ meta?: JsonApiAggregatedFactOutListMeta;
62522
62541
  /**
62523
62542
  * Included resources
62524
62543
  * @type {Array<JsonApiWorkspaceOutWithLinks>}
@@ -62627,34 +62646,6 @@ export declare const JsonApiWorkspaceOutMetaPermissionsEnum: {
62627
62646
 
62628
62647
  export declare type JsonApiWorkspaceOutMetaPermissionsEnum = (typeof JsonApiWorkspaceOutMetaPermissionsEnum)[keyof typeof JsonApiWorkspaceOutMetaPermissionsEnum];
62629
62648
 
62630
- /**
62631
- *
62632
- * @export
62633
- * @interface JsonApiWorkspaceOutRelationships
62634
- */
62635
- export declare interface JsonApiWorkspaceOutRelationships {
62636
- /**
62637
- *
62638
- * @type {JsonApiWorkspaceOutRelationshipsParent}
62639
- * @memberof JsonApiWorkspaceOutRelationships
62640
- */
62641
- parent?: JsonApiWorkspaceOutRelationshipsParent;
62642
- }
62643
-
62644
- /**
62645
- *
62646
- * @export
62647
- * @interface JsonApiWorkspaceOutRelationshipsParent
62648
- */
62649
- export declare interface JsonApiWorkspaceOutRelationshipsParent {
62650
- /**
62651
- *
62652
- * @type {JsonApiWorkspaceToOneLinkage}
62653
- * @memberof JsonApiWorkspaceOutRelationshipsParent
62654
- */
62655
- data: JsonApiWorkspaceToOneLinkage | null;
62656
- }
62657
-
62658
62649
  export declare const JsonApiWorkspaceOutTypeEnum: {
62659
62650
  readonly WORKSPACE: "workspace";
62660
62651
  };
@@ -62687,16 +62678,16 @@ export declare interface JsonApiWorkspaceOutWithLinks {
62687
62678
  meta?: JsonApiWorkspaceOutMeta;
62688
62679
  /**
62689
62680
  *
62690
- * @type {JsonApiWorkspaceOutAttributes}
62681
+ * @type {JsonApiWorkspaceInAttributes}
62691
62682
  * @memberof JsonApiWorkspaceOutWithLinks
62692
62683
  */
62693
- attributes?: JsonApiWorkspaceOutAttributes;
62684
+ attributes?: JsonApiWorkspaceInAttributes;
62694
62685
  /**
62695
62686
  *
62696
- * @type {JsonApiWorkspaceOutRelationships}
62687
+ * @type {JsonApiWorkspaceInRelationships}
62697
62688
  * @memberof JsonApiWorkspaceOutWithLinks
62698
62689
  */
62699
- relationships?: JsonApiWorkspaceOutRelationships;
62690
+ relationships?: JsonApiWorkspaceInRelationships;
62700
62691
  /**
62701
62692
  *
62702
62693
  * @type {ObjectLinks}
@@ -62731,16 +62722,16 @@ export declare interface JsonApiWorkspacePatch {
62731
62722
  id: string;
62732
62723
  /**
62733
62724
  *
62734
- * @type {JsonApiWorkspaceOutAttributes}
62725
+ * @type {JsonApiWorkspaceInAttributes}
62735
62726
  * @memberof JsonApiWorkspacePatch
62736
62727
  */
62737
- attributes?: JsonApiWorkspaceOutAttributes;
62728
+ attributes?: JsonApiWorkspaceInAttributes;
62738
62729
  /**
62739
62730
  *
62740
- * @type {JsonApiWorkspaceOutRelationships}
62731
+ * @type {JsonApiWorkspaceInRelationships}
62741
62732
  * @memberof JsonApiWorkspacePatch
62742
62733
  */
62743
- relationships?: JsonApiWorkspaceOutRelationships;
62734
+ relationships?: JsonApiWorkspaceInRelationships;
62744
62735
  }
62745
62736
 
62746
62737
  /**
@@ -62783,62 +62774,12 @@ export declare interface JsonApiWorkspaceSettingIn {
62783
62774
  id: string;
62784
62775
  /**
62785
62776
  *
62786
- * @type {JsonApiWorkspaceSettingInAttributes}
62777
+ * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
62787
62778
  * @memberof JsonApiWorkspaceSettingIn
62788
62779
  */
62789
- attributes?: JsonApiWorkspaceSettingInAttributes;
62780
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
62790
62781
  }
62791
62782
 
62792
- /**
62793
- *
62794
- * @export
62795
- * @interface JsonApiWorkspaceSettingInAttributes
62796
- */
62797
- export declare interface JsonApiWorkspaceSettingInAttributes {
62798
- /**
62799
- * Free-form JSON content. Maximum supported length is 15000 characters.
62800
- * @type {object}
62801
- * @memberof JsonApiWorkspaceSettingInAttributes
62802
- */
62803
- content?: object;
62804
- /**
62805
- *
62806
- * @type {string}
62807
- * @memberof JsonApiWorkspaceSettingInAttributes
62808
- */
62809
- type?: JsonApiWorkspaceSettingInAttributesTypeEnum;
62810
- }
62811
-
62812
- export declare const JsonApiWorkspaceSettingInAttributesTypeEnum: {
62813
- readonly TIMEZONE: "TIMEZONE";
62814
- readonly ACTIVE_THEME: "ACTIVE_THEME";
62815
- readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
62816
- readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
62817
- readonly WHITE_LABELING: "WHITE_LABELING";
62818
- readonly LOCALE: "LOCALE";
62819
- readonly METADATA_LOCALE: "METADATA_LOCALE";
62820
- readonly FORMAT_LOCALE: "FORMAT_LOCALE";
62821
- readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
62822
- readonly WEEK_START: "WEEK_START";
62823
- readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
62824
- readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
62825
- readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
62826
- readonly OPENAI_CONFIG: "OPENAI_CONFIG";
62827
- readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
62828
- readonly ALERT: "ALERT";
62829
- readonly SEPARATORS: "SEPARATORS";
62830
- readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
62831
- readonly JIT_PROVISIONING: "JIT_PROVISIONING";
62832
- readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
62833
- readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
62834
- readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
62835
- readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
62836
- readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
62837
- readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
62838
- };
62839
-
62840
- export declare type JsonApiWorkspaceSettingInAttributesTypeEnum = (typeof JsonApiWorkspaceSettingInAttributesTypeEnum)[keyof typeof JsonApiWorkspaceSettingInAttributesTypeEnum];
62841
-
62842
62783
  /**
62843
62784
  *
62844
62785
  * @export
@@ -62885,10 +62826,10 @@ export declare interface JsonApiWorkspaceSettingOut {
62885
62826
  meta?: JsonApiVisualizationObjectOutMeta;
62886
62827
  /**
62887
62828
  *
62888
- * @type {JsonApiWorkspaceSettingInAttributes}
62829
+ * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
62889
62830
  * @memberof JsonApiWorkspaceSettingOut
62890
62831
  */
62891
- attributes?: JsonApiWorkspaceSettingInAttributes;
62832
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
62892
62833
  }
62893
62834
 
62894
62835
  /**
@@ -62931,10 +62872,10 @@ export declare interface JsonApiWorkspaceSettingOutList {
62931
62872
  links?: ListLinks;
62932
62873
  /**
62933
62874
  *
62934
- * @type {JsonApiColorPaletteOutListMeta}
62875
+ * @type {JsonApiAggregatedFactOutListMeta}
62935
62876
  * @memberof JsonApiWorkspaceSettingOutList
62936
62877
  */
62937
- meta?: JsonApiColorPaletteOutListMeta;
62878
+ meta?: JsonApiAggregatedFactOutListMeta;
62938
62879
  }
62939
62880
 
62940
62881
  export declare const JsonApiWorkspaceSettingOutTypeEnum: {
@@ -62969,10 +62910,10 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
62969
62910
  meta?: JsonApiVisualizationObjectOutMeta;
62970
62911
  /**
62971
62912
  *
62972
- * @type {JsonApiWorkspaceSettingInAttributes}
62913
+ * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
62973
62914
  * @memberof JsonApiWorkspaceSettingOutWithLinks
62974
62915
  */
62975
- attributes?: JsonApiWorkspaceSettingInAttributes;
62916
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
62976
62917
  /**
62977
62918
  *
62978
62919
  * @type {ObjectLinks}
@@ -63007,10 +62948,10 @@ export declare interface JsonApiWorkspaceSettingPatch {
63007
62948
  id: string;
63008
62949
  /**
63009
62950
  *
63010
- * @type {JsonApiWorkspaceSettingInAttributes}
62951
+ * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
63011
62952
  * @memberof JsonApiWorkspaceSettingPatch
63012
62953
  */
63013
- attributes?: JsonApiWorkspaceSettingInAttributes;
62954
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
63014
62955
  }
63015
62956
 
63016
62957
  /**
@@ -63053,12 +62994,62 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
63053
62994
  id?: string;
63054
62995
  /**
63055
62996
  *
63056
- * @type {JsonApiWorkspaceSettingInAttributes}
62997
+ * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
63057
62998
  * @memberof JsonApiWorkspaceSettingPostOptionalId
63058
62999
  */
63059
- attributes?: JsonApiWorkspaceSettingInAttributes;
63000
+ attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
63060
63001
  }
63061
63002
 
63003
+ /**
63004
+ *
63005
+ * @export
63006
+ * @interface JsonApiWorkspaceSettingPostOptionalIdAttributes
63007
+ */
63008
+ export declare interface JsonApiWorkspaceSettingPostOptionalIdAttributes {
63009
+ /**
63010
+ * Free-form JSON content. Maximum supported length is 15000 characters.
63011
+ * @type {object}
63012
+ * @memberof JsonApiWorkspaceSettingPostOptionalIdAttributes
63013
+ */
63014
+ content?: object;
63015
+ /**
63016
+ *
63017
+ * @type {string}
63018
+ * @memberof JsonApiWorkspaceSettingPostOptionalIdAttributes
63019
+ */
63020
+ type?: JsonApiWorkspaceSettingPostOptionalIdAttributesTypeEnum;
63021
+ }
63022
+
63023
+ export declare const JsonApiWorkspaceSettingPostOptionalIdAttributesTypeEnum: {
63024
+ readonly TIMEZONE: "TIMEZONE";
63025
+ readonly ACTIVE_THEME: "ACTIVE_THEME";
63026
+ readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
63027
+ readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
63028
+ readonly WHITE_LABELING: "WHITE_LABELING";
63029
+ readonly LOCALE: "LOCALE";
63030
+ readonly METADATA_LOCALE: "METADATA_LOCALE";
63031
+ readonly FORMAT_LOCALE: "FORMAT_LOCALE";
63032
+ readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
63033
+ readonly WEEK_START: "WEEK_START";
63034
+ readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
63035
+ readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
63036
+ readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
63037
+ readonly OPENAI_CONFIG: "OPENAI_CONFIG";
63038
+ readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
63039
+ readonly ALERT: "ALERT";
63040
+ readonly SEPARATORS: "SEPARATORS";
63041
+ readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
63042
+ readonly JIT_PROVISIONING: "JIT_PROVISIONING";
63043
+ readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
63044
+ readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
63045
+ readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
63046
+ readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
63047
+ readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
63048
+ readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
63049
+ };
63050
+
63051
+ export declare type JsonApiWorkspaceSettingPostOptionalIdAttributesTypeEnum = (typeof JsonApiWorkspaceSettingPostOptionalIdAttributesTypeEnum)[keyof typeof JsonApiWorkspaceSettingPostOptionalIdAttributesTypeEnum];
63052
+
63062
63053
  /**
63063
63054
  *
63064
63055
  * @export
@@ -63602,6 +63593,7 @@ export declare const KeyDriversDimensionGranularityEnum: {
63602
63593
  readonly HOUR_OF_DAY: "HOUR_OF_DAY";
63603
63594
  readonly DAY_OF_WEEK: "DAY_OF_WEEK";
63604
63595
  readonly DAY_OF_MONTH: "DAY_OF_MONTH";
63596
+ readonly DAY_OF_QUARTER: "DAY_OF_QUARTER";
63605
63597
  readonly DAY_OF_YEAR: "DAY_OF_YEAR";
63606
63598
  readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
63607
63599
  readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
@@ -80411,6 +80403,7 @@ export declare const RelativeDateFilterRelativeDateFilterGranularityEnum: {
80411
80403
  readonly HOUR_OF_DAY: "HOUR_OF_DAY";
80412
80404
  readonly DAY_OF_WEEK: "DAY_OF_WEEK";
80413
80405
  readonly DAY_OF_MONTH: "DAY_OF_MONTH";
80406
+ readonly DAY_OF_QUARTER: "DAY_OF_QUARTER";
80414
80407
  readonly DAY_OF_YEAR: "DAY_OF_YEAR";
80415
80408
  readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
80416
80409
  readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";