@gooddata/api-client-tiger 10.28.0-alpha.9 → 10.28.0-alpha.91

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 (32) hide show
  1. package/esm/__version.d.ts +1 -1
  2. package/esm/__version.d.ts.map +1 -1
  3. package/esm/__version.js +1 -1
  4. package/esm/__version.js.map +1 -1
  5. package/esm/api-client-tiger.d.ts +1458 -884
  6. package/esm/generated/afm-rest-api/api.d.ts +129 -0
  7. package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
  8. package/esm/generated/afm-rest-api/api.js +136 -0
  9. package/esm/generated/afm-rest-api/api.js.map +1 -1
  10. package/esm/generated/afm-rest-api/openapi-spec.json +48 -0
  11. package/esm/generated/automation-json-api/api.d.ts +84 -0
  12. package/esm/generated/automation-json-api/api.d.ts.map +1 -1
  13. package/esm/generated/automation-json-api/api.js +3 -0
  14. package/esm/generated/automation-json-api/api.js.map +1 -1
  15. package/esm/generated/automation-json-api/openapi-spec.json +69 -0
  16. package/esm/generated/export-json-api/api.d.ts +278 -11
  17. package/esm/generated/export-json-api/api.d.ts.map +1 -1
  18. package/esm/generated/export-json-api/api.js +54 -0
  19. package/esm/generated/export-json-api/api.js.map +1 -1
  20. package/esm/generated/export-json-api/openapi-spec.json +215 -102
  21. package/esm/generated/metadata-json-api/api.d.ts +936 -857
  22. package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
  23. package/esm/generated/metadata-json-api/api.js +31 -22
  24. package/esm/generated/metadata-json-api/api.js.map +1 -1
  25. package/esm/generated/metadata-json-api/openapi-spec.json +8343 -8256
  26. package/esm/index.d.ts +2 -2
  27. package/esm/index.d.ts.map +1 -1
  28. package/esm/index.js.map +1 -1
  29. package/esm/metadataUtilities.d.ts +2 -1
  30. package/esm/metadataUtilities.d.ts.map +1 -1
  31. package/esm/metadataUtilities.js.map +1 -1
  32. package/package.json +4 -3
@@ -12,6 +12,7 @@ import { AxiosInstance } from 'axios';
12
12
  import { AxiosPromise } from 'axios';
13
13
  import { AxiosRequestConfig } from 'axios';
14
14
  import { AxiosResponse } from 'axios';
15
+ import { GenericAbortSignal } from 'axios';
15
16
  import { IAttributeFilterConfigs } from '@gooddata/sdk-model';
16
17
  import { IBucket } from '@gooddata/sdk-model';
17
18
  import { IDashboardAttributeFilterConfig } from '@gooddata/sdk-model';
@@ -440,6 +441,20 @@ export declare interface ActionsApiAiChatStreamRequest {
440
441
  readonly chatRequest: ChatRequest;
441
442
  }
442
443
 
444
+ /**
445
+ * Request parameters for aiChatUsage operation in ActionsApi.
446
+ * @export
447
+ * @interface ActionsApiAiChatUsageRequest
448
+ */
449
+ export declare interface ActionsApiAiChatUsageRequest {
450
+ /**
451
+ * Workspace identifier
452
+ * @type {string}
453
+ * @memberof ActionsApiAiChatUsage
454
+ */
455
+ readonly workspaceId: string;
456
+ }
457
+
443
458
  /**
444
459
  * Request parameters for aiSearch operation in ActionsApi.
445
460
  * @export
@@ -1139,7 +1154,7 @@ export declare interface ActionsApiCreateImageExportRequest {
1139
1154
  * @type {ImageExportRequest}
1140
1155
  * @memberof ActionsApiCreateImageExport
1141
1156
  */
1142
- readonly imageExportRequest: ImageExportRequest;
1157
+ readonly imageExportRequest: AfmExportImageExportRequest;
1143
1158
  }
1144
1159
 
1145
1160
  /**
@@ -3733,6 +3748,15 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
3733
3748
  * @memberof ActionsApi
3734
3749
  */
3735
3750
  aiChatStream(requestParameters: ActionsApiAiChatStreamRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<object[], any>>;
3751
+ /**
3752
+ * Returns usage statistics of chat for a user in a workspace.
3753
+ * @summary Get Chat Usage
3754
+ * @param {ActionsApiAiChatUsageRequest} requestParameters Request parameters.
3755
+ * @param {*} [options] Override http request option.
3756
+ * @throws {RequiredError}
3757
+ * @memberof ActionsApi
3758
+ */
3759
+ aiChatUsage(requestParameters: ActionsApiAiChatUsageRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<ChatUsageResponse, any>>;
3736
3760
  /**
3737
3761
  * (BETA) Uses similarity (e.g. cosine distance) search to find top X most similar metadata objects.
3738
3762
  * @summary (BETA) Semantic Search in Metadata
@@ -3920,6 +3944,14 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
3920
3944
  * @throws {RequiredError}
3921
3945
  */
3922
3946
  aiChatStream: (workspaceId: string, chatRequest: ChatRequest, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
3947
+ /**
3948
+ * Returns usage statistics of chat for a user in a workspace.
3949
+ * @summary Get Chat Usage
3950
+ * @param {string} workspaceId Workspace identifier
3951
+ * @param {*} [options] Override http request option.
3952
+ * @throws {RequiredError}
3953
+ */
3954
+ aiChatUsage: (workspaceId: string, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
3923
3955
  /**
3924
3956
  * (BETA) Uses similarity (e.g. cosine distance) search to find top X most similar metadata objects.
3925
3957
  * @summary (BETA) Semantic Search in Metadata
@@ -4129,6 +4161,14 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
4129
4161
  * @throws {RequiredError}
4130
4162
  */
4131
4163
  aiChatStream(requestParameters: ActionsApiAiChatStreamRequest, options?: AxiosRequestConfig): AxiosPromise<Array<object>>;
4164
+ /**
4165
+ * Returns usage statistics of chat for a user in a workspace.
4166
+ * @summary Get Chat Usage
4167
+ * @param {ActionsApiAiChatUsageRequest} requestParameters Request parameters.
4168
+ * @param {*} [options] Override http request option.
4169
+ * @throws {RequiredError}
4170
+ */
4171
+ aiChatUsage(requestParameters: ActionsApiAiChatUsageRequest, options?: AxiosRequestConfig): AxiosPromise<ChatUsageResponse>;
4132
4172
  /**
4133
4173
  * (BETA) Uses similarity (e.g. cosine distance) search to find top X most similar metadata objects.
4134
4174
  * @summary (BETA) Semantic Search in Metadata
@@ -4299,6 +4339,14 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
4299
4339
  * @throws {RequiredError}
4300
4340
  */
4301
4341
  aiChatStream(workspaceId: string, chatRequest: ChatRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<object>>>;
4342
+ /**
4343
+ * Returns usage statistics of chat for a user in a workspace.
4344
+ * @summary Get Chat Usage
4345
+ * @param {string} workspaceId Workspace identifier
4346
+ * @param {*} [options] Override http request option.
4347
+ * @throws {RequiredError}
4348
+ */
4349
+ aiChatUsage(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ChatUsageResponse>>;
4302
4350
  /**
4303
4351
  * (BETA) Uses similarity (e.g. cosine distance) search to find top X most similar metadata objects.
4304
4352
  * @summary (BETA) Semantic Search in Metadata
@@ -4512,6 +4560,15 @@ export declare interface AfmActionsApiInterface {
4512
4560
  * @memberof ActionsApiInterface
4513
4561
  */
4514
4562
  aiChatStream(requestParameters: ActionsApiAiChatStreamRequest, options?: AxiosRequestConfig): AxiosPromise<Array<object>>;
4563
+ /**
4564
+ * Returns usage statistics of chat for a user in a workspace.
4565
+ * @summary Get Chat Usage
4566
+ * @param {ActionsApiAiChatUsageRequest} requestParameters Request parameters.
4567
+ * @param {*} [options] Override http request option.
4568
+ * @throws {RequiredError}
4569
+ * @memberof ActionsApiInterface
4570
+ */
4571
+ aiChatUsage(requestParameters: ActionsApiAiChatUsageRequest, options?: AxiosRequestConfig): AxiosPromise<ChatUsageResponse>;
4515
4572
  /**
4516
4573
  * (BETA) Uses similarity (e.g. cosine distance) search to find top X most similar metadata objects.
4517
4574
  * @summary (BETA) Semantic Search in Metadata
@@ -5406,6 +5463,50 @@ export declare type AfmExportFilterDefinition = AfmExportAbsoluteDateFilter | Af
5406
5463
  */
5407
5464
  export declare type AfmExportFilterDefinitionForSimpleMeasure = AfmExportAttributeFilter | AfmExportDateFilter;
5408
5465
 
5466
+ /**
5467
+ * Export request object describing the export properties and metadata for image exports.
5468
+ * @export
5469
+ * @interface ImageExportRequest
5470
+ */
5471
+ export declare interface AfmExportImageExportRequest {
5472
+ /**
5473
+ * Requested resulting file type.
5474
+ * @type {string}
5475
+ * @memberof ImageExportRequest
5476
+ */
5477
+ format: AfmExportImageExportRequestFormatEnum;
5478
+ /**
5479
+ * File name to be used for retrieving the image document.
5480
+ * @type {string}
5481
+ * @memberof ImageExportRequest
5482
+ */
5483
+ fileName: string;
5484
+ /**
5485
+ * Dashboard identifier
5486
+ * @type {string}
5487
+ * @memberof ImageExportRequest
5488
+ */
5489
+ dashboardId: string;
5490
+ /**
5491
+ * List of widget identifiers to be exported. Note that only one widget is currently supported.
5492
+ * @type {Array<string>}
5493
+ * @memberof ImageExportRequest
5494
+ */
5495
+ widgetIds?: Array<string>;
5496
+ /**
5497
+ * Metadata definition in free-form JSON format.
5498
+ * @type {object}
5499
+ * @memberof ImageExportRequest
5500
+ */
5501
+ metadata?: object | null;
5502
+ }
5503
+
5504
+ export declare const AfmExportImageExportRequestFormatEnum: {
5505
+ readonly PNG: "PNG";
5506
+ };
5507
+
5508
+ export declare type AfmExportImageExportRequestFormatEnum = typeof AfmExportImageExportRequestFormatEnum[keyof typeof AfmExportImageExportRequestFormatEnum];
5509
+
5409
5510
  /**
5410
5511
  * Filter in form of direct MAQL query.
5411
5512
  * @export
@@ -9083,6 +9184,40 @@ export declare const AssigneeRuleTypeEnum: {
9083
9184
 
9084
9185
  export declare type AssigneeRuleTypeEnum = typeof AssigneeRuleTypeEnum[keyof typeof AssigneeRuleTypeEnum];
9085
9186
 
9187
+ /**
9188
+ * @type AttributeElements
9189
+ * @export
9190
+ */
9191
+ export declare type AttributeElements = AttributeElementsByRef | AttributeElementsByValue;
9192
+
9193
+ /**
9194
+ *
9195
+ * @export
9196
+ * @interface AttributeElementsByRef
9197
+ */
9198
+ export declare interface AttributeElementsByRef {
9199
+ /**
9200
+ * List of attribute elements by reference
9201
+ * @type {Array<string>}
9202
+ * @memberof AttributeElementsByRef
9203
+ */
9204
+ uris: Array<string>;
9205
+ }
9206
+
9207
+ /**
9208
+ *
9209
+ * @export
9210
+ * @interface AttributeElementsByValue
9211
+ */
9212
+ export declare interface AttributeElementsByValue {
9213
+ /**
9214
+ * List of attribute elements by value
9215
+ * @type {Array<string>}
9216
+ * @memberof AttributeElementsByValue
9217
+ */
9218
+ values: Array<string>;
9219
+ }
9220
+
9086
9221
  /**
9087
9222
  *
9088
9223
  * @export
@@ -9104,6 +9239,26 @@ export declare interface AttributeExecutionResultHeader {
9104
9239
  */
9105
9240
  export declare type AttributeFilter = NegativeAttributeFilter | PositiveAttributeFilter;
9106
9241
 
9242
+ /**
9243
+ *
9244
+ * @export
9245
+ * @interface AttributeFilterByDate
9246
+ */
9247
+ export declare interface AttributeFilterByDate {
9248
+ /**
9249
+ *
9250
+ * @type {string}
9251
+ * @memberof AttributeFilterByDate
9252
+ */
9253
+ filterLocalIdentifier: string;
9254
+ /**
9255
+ *
9256
+ * @type {boolean}
9257
+ * @memberof AttributeFilterByDate
9258
+ */
9259
+ isCommonDate: boolean;
9260
+ }
9261
+
9107
9262
  /**
9108
9263
  * Filter on specific set of label values.
9109
9264
  * @export
@@ -9118,6 +9273,26 @@ export declare interface AttributeFilterElements {
9118
9273
  values: Array<string | null>;
9119
9274
  }
9120
9275
 
9276
+ /**
9277
+ *
9278
+ * @export
9279
+ * @interface AttributeFilterParent
9280
+ */
9281
+ export declare interface AttributeFilterParent {
9282
+ /**
9283
+ *
9284
+ * @type {string}
9285
+ * @memberof AttributeFilterParent
9286
+ */
9287
+ filterLocalIdentifier: string;
9288
+ /**
9289
+ *
9290
+ * @type {Over}
9291
+ * @memberof AttributeFilterParent
9292
+ */
9293
+ over: Over;
9294
+ }
9295
+
9121
9296
  /**
9122
9297
  * Attribute format describes formatting information to effectively format attribute values when needed.
9123
9298
  * @export
@@ -10313,6 +10488,12 @@ export declare interface AutomationAdHocAutomation {
10313
10488
  * @memberof AutomationAdHocAutomation
10314
10489
  */
10315
10490
  visualExports?: Array<AutomationAutomationVisualExport>;
10491
+ /**
10492
+ *
10493
+ * @type {Array<AutomationAutomationImageExport>}
10494
+ * @memberof AutomationAdHocAutomation
10495
+ */
10496
+ imageExports?: Array<AutomationAutomationImageExport>;
10316
10497
  /**
10317
10498
  * External recipients of the automation action results.
10318
10499
  * @type {Array<AutomationAutomationExternalRecipient>}
@@ -10961,6 +11142,20 @@ export declare interface AutomationAutomationExternalRecipient {
10961
11142
  email: string;
10962
11143
  }
10963
11144
 
11145
+ /**
11146
+ *
11147
+ * @export
11148
+ * @interface AutomationAutomationImageExport
11149
+ */
11150
+ export declare interface AutomationAutomationImageExport {
11151
+ /**
11152
+ *
11153
+ * @type {AutomationImageExportRequest}
11154
+ * @memberof AutomationAutomationImageExport
11155
+ */
11156
+ requestPayload: AutomationImageExportRequest;
11157
+ }
11158
+
10964
11159
  /**
10965
11160
  * Additional information for the automation.
10966
11161
  * @export
@@ -11465,6 +11660,12 @@ export declare interface AutomationExportResult {
11465
11660
  * @memberof AutomationExportResult
11466
11661
  */
11467
11662
  fileUri?: string;
11663
+ /**
11664
+ *
11665
+ * @type {string}
11666
+ * @memberof AutomationExportResult
11667
+ */
11668
+ expiresAt?: string;
11468
11669
  /**
11469
11670
  *
11470
11671
  * @type {string}
@@ -11522,6 +11723,64 @@ export declare type AutomationFilterDefinition = AutomationAbsoluteDateFilter |
11522
11723
  */
11523
11724
  export declare type AutomationFilterDefinitionForSimpleMeasure = AutomationAttributeFilter | AutomationDateFilter;
11524
11725
 
11726
+ /**
11727
+ *
11728
+ * @export
11729
+ * @interface AutomationImageExport
11730
+ */
11731
+ export declare interface AutomationImageExport {
11732
+ /**
11733
+ *
11734
+ * @type {ImageExportRequest}
11735
+ * @memberof AutomationImageExport
11736
+ */
11737
+ requestPayload: ImageExportRequest;
11738
+ }
11739
+
11740
+ /**
11741
+ * Export request object describing the export properties and metadata for image exports.
11742
+ * @export
11743
+ * @interface AutomationImageExportRequest
11744
+ */
11745
+ export declare interface AutomationImageExportRequest {
11746
+ /**
11747
+ * Requested resulting file type.
11748
+ * @type {string}
11749
+ * @memberof AutomationImageExportRequest
11750
+ */
11751
+ format: AutomationImageExportRequestFormatEnum;
11752
+ /**
11753
+ * File name to be used for retrieving the image document.
11754
+ * @type {string}
11755
+ * @memberof AutomationImageExportRequest
11756
+ */
11757
+ fileName: string;
11758
+ /**
11759
+ * Dashboard identifier
11760
+ * @type {string}
11761
+ * @memberof AutomationImageExportRequest
11762
+ */
11763
+ dashboardId: string;
11764
+ /**
11765
+ * List of widget identifiers to be exported. Note that only one widget is currently supported.
11766
+ * @type {Array<string>}
11767
+ * @memberof AutomationImageExportRequest
11768
+ */
11769
+ widgetIds?: Array<string>;
11770
+ /**
11771
+ * Metadata definition in free-form JSON format.
11772
+ * @type {object}
11773
+ * @memberof AutomationImageExportRequest
11774
+ */
11775
+ metadata?: object | null;
11776
+ }
11777
+
11778
+ export declare const AutomationImageExportRequestFormatEnum: {
11779
+ readonly PNG: "PNG";
11780
+ };
11781
+
11782
+ export declare type AutomationImageExportRequestFormatEnum = typeof AutomationImageExportRequestFormatEnum[keyof typeof AutomationImageExportRequestFormatEnum];
11783
+
11525
11784
  /**
11526
11785
  * Filter in form of direct MAQL query.
11527
11786
  * @export
@@ -13694,6 +13953,12 @@ export declare interface AutomationVisibleFilter {
13694
13953
  * @memberof AutomationVisibleFilter
13695
13954
  */
13696
13955
  title?: string;
13956
+ /**
13957
+ * Indicates if the filter is an all-time date filter. Such a filter is not included in report computation, so there is no filter with the same \'localIdentifier\' to be found. In such cases, this flag is used to inform the server to not search for the filter in the definitions and include it anyways.
13958
+ * @type {boolean}
13959
+ * @memberof AutomationVisibleFilter
13960
+ */
13961
+ isAllTimeDateFilter?: boolean;
13697
13962
  }
13698
13963
 
13699
13964
  /**
@@ -13786,6 +14051,12 @@ export declare interface AutomationWebhookAutomationInfo {
13786
14051
  * @memberof AutomationWebhookAutomationInfo
13787
14052
  */
13788
14053
  title?: string;
14054
+ /**
14055
+ *
14056
+ * @type {string}
14057
+ * @memberof AutomationWebhookAutomationInfo
14058
+ */
14059
+ dashboardTitle?: string;
13789
14060
  /**
13790
14061
  *
13791
14062
  * @type {string}
@@ -13870,6 +14141,12 @@ export declare interface AutomationWebhookMessageData {
13870
14141
  * @memberof AutomationWebhookMessageData
13871
14142
  */
13872
14143
  visualExports?: Array<AutomationExportResult>;
14144
+ /**
14145
+ *
14146
+ * @type {Array<AutomationExportResult>}
14147
+ * @memberof AutomationWebhookMessageData
14148
+ */
14149
+ imageExports?: Array<AutomationExportResult>;
13873
14150
  /**
13874
14151
  *
13875
14152
  * @type {AutomationAlertDescription}
@@ -14336,6 +14613,26 @@ export declare interface ChatSuggestion {
14336
14613
  label: string;
14337
14614
  }
14338
14615
 
14616
+ /**
14617
+ *
14618
+ * @export
14619
+ * @interface ChatUsageResponse
14620
+ */
14621
+ export declare interface ChatUsageResponse {
14622
+ /**
14623
+ * Number of interactions in the time window
14624
+ * @type {number}
14625
+ * @memberof ChatUsageResponse
14626
+ */
14627
+ interactionCount: number;
14628
+ /**
14629
+ * Time window in hours
14630
+ * @type {number}
14631
+ * @memberof ChatUsageResponse
14632
+ */
14633
+ timeWindowHours: number;
14634
+ }
14635
+
14339
14636
  /**
14340
14637
  *
14341
14638
  * @export
@@ -16560,12 +16857,81 @@ export declare interface CustomOverride {
16560
16857
  export declare interface DashboardAttributeFilter {
16561
16858
  /**
16562
16859
  *
16563
- * @type {DashboardFilter & object}
16860
+ * @type {DashboardAttributeFilterAttributeFilter}
16564
16861
  * @memberof DashboardAttributeFilter
16565
16862
  */
16566
- attributeFilter: DashboardFilter & object;
16863
+ attributeFilter: DashboardAttributeFilterAttributeFilter;
16864
+ }
16865
+
16866
+ /**
16867
+ *
16868
+ * @export
16869
+ * @interface DashboardAttributeFilterAttributeFilter
16870
+ */
16871
+ export declare interface DashboardAttributeFilterAttributeFilter {
16872
+ /**
16873
+ *
16874
+ * @type {IdentifierRef}
16875
+ * @memberof DashboardAttributeFilterAttributeFilter
16876
+ */
16877
+ displayForm: IdentifierRef;
16878
+ /**
16879
+ *
16880
+ * @type {boolean}
16881
+ * @memberof DashboardAttributeFilterAttributeFilter
16882
+ */
16883
+ negativeSelection: boolean;
16884
+ /**
16885
+ *
16886
+ * @type {AttributeElements}
16887
+ * @memberof DashboardAttributeFilterAttributeFilter
16888
+ */
16889
+ attributeElements: AttributeElements;
16890
+ /**
16891
+ *
16892
+ * @type {Array<AttributeFilterParent>}
16893
+ * @memberof DashboardAttributeFilterAttributeFilter
16894
+ */
16895
+ filterElementsBy?: Array<AttributeFilterParent>;
16896
+ /**
16897
+ *
16898
+ * @type {Array<AttributeFilterByDate>}
16899
+ * @memberof DashboardAttributeFilterAttributeFilter
16900
+ */
16901
+ filterElementsByDate?: Array<AttributeFilterByDate>;
16902
+ /**
16903
+ *
16904
+ * @type {Array<IdentifierRef>}
16905
+ * @memberof DashboardAttributeFilterAttributeFilter
16906
+ */
16907
+ validateElementsBy?: Array<IdentifierRef>;
16908
+ /**
16909
+ *
16910
+ * @type {string}
16911
+ * @memberof DashboardAttributeFilterAttributeFilter
16912
+ */
16913
+ title?: string;
16914
+ /**
16915
+ *
16916
+ * @type {string}
16917
+ * @memberof DashboardAttributeFilterAttributeFilter
16918
+ */
16919
+ selectionMode?: DashboardAttributeFilterAttributeFilterSelectionModeEnum;
16920
+ /**
16921
+ *
16922
+ * @type {string}
16923
+ * @memberof DashboardAttributeFilterAttributeFilter
16924
+ */
16925
+ localIdentifier?: string;
16567
16926
  }
16568
16927
 
16928
+ export declare const DashboardAttributeFilterAttributeFilterSelectionModeEnum: {
16929
+ readonly SINGLE: "single";
16930
+ readonly MULTI: "multi";
16931
+ };
16932
+
16933
+ export declare type DashboardAttributeFilterAttributeFilterSelectionModeEnum = typeof DashboardAttributeFilterAttributeFilterSelectionModeEnum[keyof typeof DashboardAttributeFilterAttributeFilterSelectionModeEnum];
16934
+
16569
16935
  /**
16570
16936
  *
16571
16937
  * @export
@@ -16574,26 +16940,123 @@ export declare interface DashboardAttributeFilter {
16574
16940
  export declare interface DashboardDateFilter {
16575
16941
  /**
16576
16942
  *
16577
- * @type {DashboardFilter & object}
16943
+ * @type {DashboardDateFilterDateFilter}
16578
16944
  * @memberof DashboardDateFilter
16579
16945
  */
16580
- dateFilter: DashboardFilter & object;
16946
+ dateFilter: DashboardDateFilterDateFilter;
16581
16947
  }
16582
16948
 
16583
16949
  /**
16584
16950
  *
16585
16951
  * @export
16586
- * @interface DashboardFilter
16952
+ * @interface DashboardDateFilterDateFilter
16587
16953
  */
16588
- export declare interface DashboardFilter {
16954
+ export declare interface DashboardDateFilterDateFilter {
16955
+ /**
16956
+ *
16957
+ * @type {string}
16958
+ * @memberof DashboardDateFilterDateFilter
16959
+ */
16960
+ type: DashboardDateFilterDateFilterTypeEnum;
16961
+ /**
16962
+ *
16963
+ * @type {string}
16964
+ * @memberof DashboardDateFilterDateFilter
16965
+ */
16966
+ granularity: DashboardDateFilterDateFilterGranularityEnum;
16967
+ /**
16968
+ *
16969
+ * @type {string | number}
16970
+ * @memberof DashboardDateFilterDateFilter
16971
+ */
16972
+ from?: string | number;
16973
+ /**
16974
+ *
16975
+ * @type {string | number}
16976
+ * @memberof DashboardDateFilterDateFilter
16977
+ */
16978
+ to?: string | number;
16979
+ /**
16980
+ *
16981
+ * @type {IdentifierRef}
16982
+ * @memberof DashboardDateFilterDateFilter
16983
+ */
16984
+ dataSet?: IdentifierRef;
16985
+ /**
16986
+ *
16987
+ * @type {IdentifierRef}
16988
+ * @memberof DashboardDateFilterDateFilter
16989
+ */
16990
+ attribute?: IdentifierRef;
16589
16991
  /**
16590
16992
  *
16591
16993
  * @type {string}
16592
- * @memberof DashboardFilter
16994
+ * @memberof DashboardDateFilterDateFilter
16593
16995
  */
16594
16996
  localIdentifier?: string;
16595
16997
  }
16596
16998
 
16999
+ export declare const DashboardDateFilterDateFilterGranularityEnum: {
17000
+ readonly ALL_TIME_GRANULARITY: "ALL_TIME_GRANULARITY";
17001
+ readonly GDC_TIME_YEAR: "GDC.time.year";
17002
+ readonly GDC_TIME_WEEK_US: "GDC.time.week_us";
17003
+ readonly GDC_TIME_WEEK_IN_YEAR: "GDC.time.week_in_year";
17004
+ readonly GDC_TIME_WEEK_IN_QUARTER: "GDC.time.week_in_quarter";
17005
+ readonly GDC_TIME_WEEK: "GDC.time.week";
17006
+ readonly GDC_TIME_EUWEEK_IN_YEAR: "GDC.time.euweek_in_year";
17007
+ readonly GDC_TIME_EUWEEK_IN_QUARTER: "GDC.time.euweek_in_quarter";
17008
+ readonly GDC_TIME_QUARTER: "GDC.time.quarter";
17009
+ readonly GDC_TIME_QUARTER_IN_YEAR: "GDC.time.quarter_in_year";
17010
+ readonly GDC_TIME_MONTH: "GDC.time.month";
17011
+ readonly GDC_TIME_MONTH_IN_QUARTER: "GDC.time.month_in_quarter";
17012
+ readonly GDC_TIME_MONTH_IN_YEAR: "GDC.time.month_in_year";
17013
+ readonly GDC_TIME_DAY_IN_YEAR: "GDC.time.day_in_year";
17014
+ readonly GDC_TIME_DAY_IN_QUARTER: "GDC.time.day_in_quarter";
17015
+ readonly GDC_TIME_DAY_IN_MONTH: "GDC.time.day_in_month";
17016
+ readonly GDC_TIME_DAY_IN_WEEK: "GDC.time.day_in_week";
17017
+ readonly GDC_TIME_DAY_IN_EUWEEK: "GDC.time.day_in_euweek";
17018
+ readonly GDC_TIME_DATE: "GDC.time.date";
17019
+ readonly GDC_TIME_HOUR: "GDC.time.hour";
17020
+ readonly GDC_TIME_HOUR_IN_DAY: "GDC.time.hour_in_day";
17021
+ readonly GDC_TIME_MINUTE: "GDC.time.minute";
17022
+ readonly GDC_TIME_MINUTE_IN_HOUR: "GDC.time.minute_in_hour";
17023
+ };
17024
+
17025
+ export declare type DashboardDateFilterDateFilterGranularityEnum = typeof DashboardDateFilterDateFilterGranularityEnum[keyof typeof DashboardDateFilterDateFilterGranularityEnum];
17026
+
17027
+ export declare const DashboardDateFilterDateFilterTypeEnum: {
17028
+ readonly RELATIVE: "relative";
17029
+ readonly ABSOLUTE: "absolute";
17030
+ };
17031
+
17032
+ export declare type DashboardDateFilterDateFilterTypeEnum = typeof DashboardDateFilterDateFilterTypeEnum[keyof typeof DashboardDateFilterDateFilterTypeEnum];
17033
+
17034
+ /**
17035
+ * Additional settings.
17036
+ * @export
17037
+ * @interface DashboardExportSettings
17038
+ */
17039
+ export declare interface DashboardExportSettings {
17040
+ /**
17041
+ * If true, the export will contain the information about the exported date and dashboard filters.
17042
+ * @type {boolean}
17043
+ * @memberof DashboardExportSettings
17044
+ */
17045
+ exportInfo?: boolean;
17046
+ /**
17047
+ * Merge equal headers in neighbouring cells. Used for [XLSX] format only.
17048
+ * @type {boolean}
17049
+ * @memberof DashboardExportSettings
17050
+ */
17051
+ mergeHeaders?: boolean;
17052
+ }
17053
+
17054
+ /**
17055
+ * @type DashboardFilter
17056
+ * @export
17057
+ */
17058
+ export declare type DashboardFilter = DashboardAttributeFilter | DashboardDateFilter;
17059
+
16597
17060
  /**
16598
17061
  *
16599
17062
  * @export
@@ -17289,10 +17752,22 @@ export declare interface DashboardTabularExportRequest {
17289
17752
  fileName: string;
17290
17753
  /**
17291
17754
  * List of filters that will be used instead of the default dashboard filters.
17292
- * @type {Array<DashboardAttributeFilter | DashboardDateFilter>}
17755
+ * @type {Array<DashboardFilter>}
17293
17756
  * @memberof DashboardTabularExportRequest
17294
17757
  */
17295
- dashboardFiltersOverride?: Array<DashboardAttributeFilter | DashboardDateFilter>;
17758
+ dashboardFiltersOverride?: Array<DashboardFilter>;
17759
+ /**
17760
+ * List of widget identifiers to be exported. Note that only one widget is currently supported.
17761
+ * @type {Array<string>}
17762
+ * @memberof DashboardTabularExportRequest
17763
+ */
17764
+ widgetIds?: Array<string>;
17765
+ /**
17766
+ *
17767
+ * @type {DashboardExportSettings}
17768
+ * @memberof DashboardTabularExportRequest
17769
+ */
17770
+ settings?: DashboardExportSettings;
17296
17771
  }
17297
17772
 
17298
17773
  export declare const DashboardTabularExportRequestFormatEnum: {
@@ -20887,6 +21362,12 @@ export declare interface DeclarativeAutomation {
20887
21362
  * @memberof DeclarativeAutomation
20888
21363
  */
20889
21364
  visualExports?: Array<AutomationVisualExport>;
21365
+ /**
21366
+ *
21367
+ * @type {Array<AutomationImageExport>}
21368
+ * @memberof DeclarativeAutomation
21369
+ */
21370
+ imageExports?: Array<AutomationImageExport>;
20890
21371
  /**
20891
21372
  * External recipients of the automation action results.
20892
21373
  * @type {Array<AutomationExternalRecipient>}
@@ -22611,6 +23092,7 @@ export declare const DeclarativeSettingTypeEnum: {
22611
23092
  readonly TIMEZONE: "TIMEZONE";
22612
23093
  readonly ACTIVE_THEME: "ACTIVE_THEME";
22613
23094
  readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
23095
+ readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
22614
23096
  readonly WHITE_LABELING: "WHITE_LABELING";
22615
23097
  readonly LOCALE: "LOCALE";
22616
23098
  readonly METADATA_LOCALE: "METADATA_LOCALE";
@@ -22628,6 +23110,7 @@ export declare const DeclarativeSettingTypeEnum: {
22628
23110
  readonly JIT_PROVISIONING: "JIT_PROVISIONING";
22629
23111
  readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
22630
23112
  readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
23113
+ readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
22631
23114
  };
22632
23115
 
22633
23116
  export declare type DeclarativeSettingTypeEnum = typeof DeclarativeSettingTypeEnum[keyof typeof DeclarativeSettingTypeEnum];
@@ -43193,6 +43676,64 @@ export declare const IdentifierDuplicationsTypeEnum: {
43193
43676
 
43194
43677
  export declare type IdentifierDuplicationsTypeEnum = typeof IdentifierDuplicationsTypeEnum[keyof typeof IdentifierDuplicationsTypeEnum];
43195
43678
 
43679
+ /**
43680
+ *
43681
+ * @export
43682
+ * @interface IdentifierRef
43683
+ */
43684
+ export declare interface IdentifierRef {
43685
+ /**
43686
+ *
43687
+ * @type {IdentifierRefIdentifier}
43688
+ * @memberof IdentifierRef
43689
+ */
43690
+ identifier?: IdentifierRefIdentifier;
43691
+ }
43692
+
43693
+ /**
43694
+ *
43695
+ * @export
43696
+ * @interface IdentifierRefIdentifier
43697
+ */
43698
+ export declare interface IdentifierRefIdentifier {
43699
+ /**
43700
+ *
43701
+ * @type {string}
43702
+ * @memberof IdentifierRefIdentifier
43703
+ */
43704
+ id: string;
43705
+ /**
43706
+ *
43707
+ * @type {string}
43708
+ * @memberof IdentifierRefIdentifier
43709
+ */
43710
+ type: IdentifierRefIdentifierTypeEnum;
43711
+ }
43712
+
43713
+ export declare const IdentifierRefIdentifierTypeEnum: {
43714
+ readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
43715
+ readonly ATTRIBUTE: "attribute";
43716
+ readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
43717
+ readonly DASHBOARD_PLUGIN: "dashboardPlugin";
43718
+ readonly DATASET: "dataset";
43719
+ readonly FACT: "fact";
43720
+ readonly LABEL: "label";
43721
+ readonly METRIC: "metric";
43722
+ readonly USER_DATA_FILTER: "userDataFilter";
43723
+ readonly EXPORT_DEFINITION: "exportDefinition";
43724
+ readonly AUTOMATION: "automation";
43725
+ readonly PROMPT: "prompt";
43726
+ readonly VISUALIZATION_OBJECT: "visualizationObject";
43727
+ readonly FILTER_CONTEXT: "filterContext";
43728
+ readonly WORKSPACE_SETTINGS: "workspaceSettings";
43729
+ readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
43730
+ readonly WORKSPACE_DATA_FILTER: "workspaceDataFilter";
43731
+ readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
43732
+ readonly FILTER_VIEW: "filterView";
43733
+ };
43734
+
43735
+ export declare type IdentifierRefIdentifierTypeEnum = typeof IdentifierRefIdentifierTypeEnum[keyof typeof IdentifierRefIdentifierTypeEnum];
43736
+
43196
43737
  /**
43197
43738
  * IdentityProvidersApi - object-oriented interface
43198
43739
  * @export
@@ -43812,7 +44353,7 @@ export declare interface ImageExportRequest {
43812
44353
  */
43813
44354
  widgetIds?: Array<string>;
43814
44355
  /**
43815
- * Metadata definition in free-form JSON format.
44356
+ * Free-form JSON object
43816
44357
  * @type {object}
43817
44358
  * @memberof ImageExportRequest
43818
44359
  */
@@ -45181,10 +45722,48 @@ export declare interface JsonApiAttributeHierarchyIn {
45181
45722
  id: string;
45182
45723
  /**
45183
45724
  *
45184
- * @type {JsonApiAttributeHierarchyPatchAttributes}
45725
+ * @type {JsonApiAttributeHierarchyInAttributes}
45185
45726
  * @memberof JsonApiAttributeHierarchyIn
45186
45727
  */
45187
- attributes?: JsonApiAttributeHierarchyPatchAttributes;
45728
+ attributes?: JsonApiAttributeHierarchyInAttributes;
45729
+ }
45730
+
45731
+ /**
45732
+ *
45733
+ * @export
45734
+ * @interface JsonApiAttributeHierarchyInAttributes
45735
+ */
45736
+ export declare interface JsonApiAttributeHierarchyInAttributes {
45737
+ /**
45738
+ *
45739
+ * @type {string}
45740
+ * @memberof JsonApiAttributeHierarchyInAttributes
45741
+ */
45742
+ title?: string;
45743
+ /**
45744
+ *
45745
+ * @type {string}
45746
+ * @memberof JsonApiAttributeHierarchyInAttributes
45747
+ */
45748
+ description?: string;
45749
+ /**
45750
+ *
45751
+ * @type {Array<string>}
45752
+ * @memberof JsonApiAttributeHierarchyInAttributes
45753
+ */
45754
+ tags?: Array<string>;
45755
+ /**
45756
+ *
45757
+ * @type {boolean}
45758
+ * @memberof JsonApiAttributeHierarchyInAttributes
45759
+ */
45760
+ areRelationsValid?: boolean;
45761
+ /**
45762
+ * Free-form JSON content. Maximum supported length is 15000 characters.
45763
+ * @type {object}
45764
+ * @memberof JsonApiAttributeHierarchyInAttributes
45765
+ */
45766
+ content?: object;
45188
45767
  }
45189
45768
 
45190
45769
  /**
@@ -45487,48 +46066,10 @@ export declare interface JsonApiAttributeHierarchyPatch {
45487
46066
  id: string;
45488
46067
  /**
45489
46068
  *
45490
- * @type {JsonApiAttributeHierarchyPatchAttributes}
46069
+ * @type {JsonApiAttributeHierarchyInAttributes}
45491
46070
  * @memberof JsonApiAttributeHierarchyPatch
45492
46071
  */
45493
- attributes?: JsonApiAttributeHierarchyPatchAttributes;
45494
- }
45495
-
45496
- /**
45497
- *
45498
- * @export
45499
- * @interface JsonApiAttributeHierarchyPatchAttributes
45500
- */
45501
- export declare interface JsonApiAttributeHierarchyPatchAttributes {
45502
- /**
45503
- *
45504
- * @type {string}
45505
- * @memberof JsonApiAttributeHierarchyPatchAttributes
45506
- */
45507
- title?: string;
45508
- /**
45509
- *
45510
- * @type {string}
45511
- * @memberof JsonApiAttributeHierarchyPatchAttributes
45512
- */
45513
- description?: string;
45514
- /**
45515
- *
45516
- * @type {Array<string>}
45517
- * @memberof JsonApiAttributeHierarchyPatchAttributes
45518
- */
45519
- tags?: Array<string>;
45520
- /**
45521
- *
45522
- * @type {boolean}
45523
- * @memberof JsonApiAttributeHierarchyPatchAttributes
45524
- */
45525
- areRelationsValid?: boolean;
45526
- /**
45527
- * Free-form JSON content. Maximum supported length is 15000 characters.
45528
- * @type {object}
45529
- * @memberof JsonApiAttributeHierarchyPatchAttributes
45530
- */
45531
- content?: object;
46072
+ attributes?: JsonApiAttributeHierarchyInAttributes;
45532
46073
  }
45533
46074
 
45534
46075
  /**
@@ -45937,540 +46478,402 @@ export declare interface JsonApiAutomationIn {
45937
46478
  id: string;
45938
46479
  /**
45939
46480
  *
45940
- * @type {JsonApiAutomationPatchAttributes}
46481
+ * @type {JsonApiAutomationInAttributes}
45941
46482
  * @memberof JsonApiAutomationIn
45942
46483
  */
45943
- attributes?: JsonApiAutomationPatchAttributes;
46484
+ attributes?: JsonApiAutomationInAttributes;
45944
46485
  /**
45945
46486
  *
45946
- * @type {JsonApiAutomationPatchRelationships}
46487
+ * @type {JsonApiAutomationInRelationships}
45947
46488
  * @memberof JsonApiAutomationIn
45948
46489
  */
45949
- relationships?: JsonApiAutomationPatchRelationships;
45950
- }
45951
-
45952
- /**
45953
- *
45954
- * @export
45955
- * @interface JsonApiAutomationInDocument
45956
- */
45957
- export declare interface JsonApiAutomationInDocument {
45958
- /**
45959
- *
45960
- * @type {JsonApiAutomationIn}
45961
- * @memberof JsonApiAutomationInDocument
45962
- */
45963
- data: JsonApiAutomationIn;
45964
- }
45965
-
45966
- export declare const JsonApiAutomationInTypeEnum: {
45967
- readonly AUTOMATION: "automation";
45968
- };
45969
-
45970
- export declare type JsonApiAutomationInTypeEnum = typeof JsonApiAutomationInTypeEnum[keyof typeof JsonApiAutomationInTypeEnum];
45971
-
45972
- /**
45973
- * The \\\"type\\\" and \\\"id\\\" to non-empty members.
45974
- * @export
45975
- * @interface JsonApiAutomationLinkage
45976
- */
45977
- export declare interface JsonApiAutomationLinkage {
45978
- /**
45979
- *
45980
- * @type {string}
45981
- * @memberof JsonApiAutomationLinkage
45982
- */
45983
- id: string;
45984
- /**
45985
- *
45986
- * @type {string}
45987
- * @memberof JsonApiAutomationLinkage
45988
- */
45989
- type: JsonApiAutomationLinkageTypeEnum;
45990
- }
45991
-
45992
- export declare const JsonApiAutomationLinkageTypeEnum: {
45993
- readonly AUTOMATION: "automation";
45994
- };
45995
-
45996
- export declare type JsonApiAutomationLinkageTypeEnum = typeof JsonApiAutomationLinkageTypeEnum[keyof typeof JsonApiAutomationLinkageTypeEnum];
45997
-
45998
- /**
45999
- * JSON:API representation of automation entity.
46000
- * @export
46001
- * @interface JsonApiAutomationOut
46002
- */
46003
- export declare interface JsonApiAutomationOut {
46004
- /**
46005
- * Object type
46006
- * @type {string}
46007
- * @memberof JsonApiAutomationOut
46008
- */
46009
- type: JsonApiAutomationOutTypeEnum;
46010
- /**
46011
- * API identifier of an object
46012
- * @type {string}
46013
- * @memberof JsonApiAutomationOut
46014
- */
46015
- id: string;
46016
- /**
46017
- *
46018
- * @type {JsonApiVisualizationObjectOutMeta}
46019
- * @memberof JsonApiAutomationOut
46020
- */
46021
- meta?: JsonApiVisualizationObjectOutMeta;
46022
- /**
46023
- *
46024
- * @type {JsonApiAutomationOutAttributes}
46025
- * @memberof JsonApiAutomationOut
46026
- */
46027
- attributes?: JsonApiAutomationOutAttributes;
46028
- /**
46029
- *
46030
- * @type {JsonApiAutomationOutRelationships}
46031
- * @memberof JsonApiAutomationOut
46032
- */
46033
- relationships?: JsonApiAutomationOutRelationships;
46490
+ relationships?: JsonApiAutomationInRelationships;
46034
46491
  }
46035
46492
 
46036
46493
  /**
46037
46494
  *
46038
46495
  * @export
46039
- * @interface JsonApiAutomationOutAttributes
46496
+ * @interface JsonApiAutomationInAttributes
46040
46497
  */
46041
- export declare interface JsonApiAutomationOutAttributes {
46498
+ export declare interface JsonApiAutomationInAttributes {
46042
46499
  /**
46043
46500
  *
46044
46501
  * @type {string}
46045
- * @memberof JsonApiAutomationOutAttributes
46502
+ * @memberof JsonApiAutomationInAttributes
46046
46503
  */
46047
46504
  title?: string;
46048
46505
  /**
46049
46506
  *
46050
46507
  * @type {string}
46051
- * @memberof JsonApiAutomationOutAttributes
46508
+ * @memberof JsonApiAutomationInAttributes
46052
46509
  */
46053
46510
  description?: string;
46054
46511
  /**
46055
46512
  *
46056
46513
  * @type {Array<string>}
46057
- * @memberof JsonApiAutomationOutAttributes
46514
+ * @memberof JsonApiAutomationInAttributes
46058
46515
  */
46059
46516
  tags?: Array<string>;
46060
46517
  /**
46061
46518
  *
46062
46519
  * @type {boolean}
46063
- * @memberof JsonApiAutomationOutAttributes
46520
+ * @memberof JsonApiAutomationInAttributes
46064
46521
  */
46065
46522
  areRelationsValid?: boolean;
46066
46523
  /**
46067
46524
  * Additional details to be included in the automated message.
46068
46525
  * @type {any}
46069
- * @memberof JsonApiAutomationOutAttributes
46526
+ * @memberof JsonApiAutomationInAttributes
46070
46527
  */
46071
46528
  details?: any;
46072
46529
  /**
46073
46530
  *
46074
- * @type {JsonApiAutomationPatchAttributesMetadata}
46075
- * @memberof JsonApiAutomationOutAttributes
46531
+ * @type {JsonApiAutomationOutAttributesMetadata}
46532
+ * @memberof JsonApiAutomationInAttributes
46076
46533
  */
46077
- metadata?: JsonApiAutomationPatchAttributesMetadata | null;
46534
+ metadata?: JsonApiAutomationOutAttributesMetadata | null;
46078
46535
  /**
46079
46536
  * Current state of the automation.
46080
46537
  * @type {string}
46081
- * @memberof JsonApiAutomationOutAttributes
46538
+ * @memberof JsonApiAutomationInAttributes
46082
46539
  */
46083
- state?: JsonApiAutomationOutAttributesStateEnum;
46540
+ state?: JsonApiAutomationInAttributesStateEnum;
46084
46541
  /**
46085
46542
  *
46086
- * @type {JsonApiAutomationPatchAttributesSchedule}
46087
- * @memberof JsonApiAutomationOutAttributes
46543
+ * @type {JsonApiAutomationOutAttributesSchedule}
46544
+ * @memberof JsonApiAutomationInAttributes
46088
46545
  */
46089
- schedule?: JsonApiAutomationPatchAttributesSchedule;
46546
+ schedule?: JsonApiAutomationOutAttributesSchedule;
46090
46547
  /**
46091
46548
  *
46092
- * @type {JsonApiAutomationPatchAttributesAlert}
46093
- * @memberof JsonApiAutomationOutAttributes
46549
+ * @type {JsonApiAutomationOutAttributesAlert}
46550
+ * @memberof JsonApiAutomationInAttributes
46094
46551
  */
46095
- alert?: JsonApiAutomationPatchAttributesAlert;
46552
+ alert?: JsonApiAutomationOutAttributesAlert;
46096
46553
  /**
46097
46554
  *
46098
- * @type {Array<JsonApiAutomationPatchAttributesTabularExports>}
46099
- * @memberof JsonApiAutomationOutAttributes
46555
+ * @type {Array<JsonApiAutomationOutAttributesTabularExports>}
46556
+ * @memberof JsonApiAutomationInAttributes
46100
46557
  */
46101
- tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExports>;
46558
+ tabularExports?: Array<JsonApiAutomationOutAttributesTabularExports>;
46102
46559
  /**
46103
46560
  *
46104
- * @type {Array<JsonApiAutomationPatchAttributesVisualExports>}
46105
- * @memberof JsonApiAutomationOutAttributes
46561
+ * @type {Array<JsonApiAutomationOutAttributesVisualExports>}
46562
+ * @memberof JsonApiAutomationInAttributes
46106
46563
  */
46107
- visualExports?: Array<JsonApiAutomationPatchAttributesVisualExports>;
46108
- /**
46109
- * External recipients of the automation action results.
46110
- * @type {Array<JsonApiAutomationPatchAttributesExternalRecipients>}
46111
- * @memberof JsonApiAutomationOutAttributes
46112
- */
46113
- externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipients>;
46564
+ visualExports?: Array<JsonApiAutomationOutAttributesVisualExports>;
46114
46565
  /**
46115
46566
  *
46116
- * @type {string}
46117
- * @memberof JsonApiAutomationOutAttributes
46567
+ * @type {Array<JsonApiAutomationOutAttributesImageExports>}
46568
+ * @memberof JsonApiAutomationInAttributes
46118
46569
  */
46119
- createdAt?: string;
46570
+ imageExports?: Array<JsonApiAutomationOutAttributesImageExports>;
46120
46571
  /**
46121
- *
46122
- * @type {string}
46123
- * @memberof JsonApiAutomationOutAttributes
46572
+ * External recipients of the automation action results.
46573
+ * @type {Array<JsonApiAutomationOutAttributesExternalRecipients>}
46574
+ * @memberof JsonApiAutomationInAttributes
46124
46575
  */
46125
- modifiedAt?: string;
46576
+ externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipients>;
46126
46577
  }
46127
46578
 
46128
- export declare const JsonApiAutomationOutAttributesStateEnum: {
46579
+ export declare const JsonApiAutomationInAttributesStateEnum: {
46129
46580
  readonly ACTIVE: "ACTIVE";
46130
46581
  readonly PAUSED: "PAUSED";
46131
46582
  };
46132
46583
 
46133
- export declare type JsonApiAutomationOutAttributesStateEnum = typeof JsonApiAutomationOutAttributesStateEnum[keyof typeof JsonApiAutomationOutAttributesStateEnum];
46584
+ export declare type JsonApiAutomationInAttributesStateEnum = typeof JsonApiAutomationInAttributesStateEnum[keyof typeof JsonApiAutomationInAttributesStateEnum];
46134
46585
 
46135
46586
  /**
46136
46587
  *
46137
46588
  * @export
46138
- * @interface JsonApiAutomationOutDocument
46589
+ * @interface JsonApiAutomationInDocument
46139
46590
  */
46140
- export declare interface JsonApiAutomationOutDocument {
46141
- /**
46142
- *
46143
- * @type {JsonApiAutomationOut}
46144
- * @memberof JsonApiAutomationOutDocument
46145
- */
46146
- data: JsonApiAutomationOut;
46591
+ export declare interface JsonApiAutomationInDocument {
46147
46592
  /**
46148
46593
  *
46149
- * @type {ObjectLinks}
46150
- * @memberof JsonApiAutomationOutDocument
46151
- */
46152
- links?: ObjectLinks;
46153
- /**
46154
- * Included resources
46155
- * @type {Array<JsonApiAutomationOutIncludes>}
46156
- * @memberof JsonApiAutomationOutDocument
46594
+ * @type {JsonApiAutomationIn}
46595
+ * @memberof JsonApiAutomationInDocument
46157
46596
  */
46158
- included?: Array<JsonApiAutomationOutIncludes>;
46597
+ data: JsonApiAutomationIn;
46159
46598
  }
46160
46599
 
46161
46600
  /**
46162
- * @type JsonApiAutomationOutIncludes
46163
- * @export
46164
- */
46165
- export declare type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiExportDefinitionOutWithLinks | JsonApiNotificationChannelOutWithLinks | JsonApiUserIdentifierOutWithLinks | JsonApiUserOutWithLinks;
46166
-
46167
- /**
46168
- * A JSON:API document with a list of resources
46601
+ *
46169
46602
  * @export
46170
- * @interface JsonApiAutomationOutList
46603
+ * @interface JsonApiAutomationInRelationships
46171
46604
  */
46172
- export declare interface JsonApiAutomationOutList {
46605
+ export declare interface JsonApiAutomationInRelationships {
46173
46606
  /**
46174
46607
  *
46175
- * @type {Array<JsonApiAutomationOutWithLinks>}
46176
- * @memberof JsonApiAutomationOutList
46608
+ * @type {JsonApiAutomationOutRelationshipsNotificationChannel}
46609
+ * @memberof JsonApiAutomationInRelationships
46177
46610
  */
46178
- data: Array<JsonApiAutomationOutWithLinks>;
46611
+ notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
46179
46612
  /**
46180
46613
  *
46181
- * @type {ListLinks}
46182
- * @memberof JsonApiAutomationOutList
46614
+ * @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
46615
+ * @memberof JsonApiAutomationInRelationships
46183
46616
  */
46184
- links?: ListLinks;
46617
+ analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
46185
46618
  /**
46186
46619
  *
46187
- * @type {JsonApiApiTokenOutListMeta}
46188
- * @memberof JsonApiAutomationOutList
46620
+ * @type {JsonApiAutomationOutRelationshipsExportDefinitions}
46621
+ * @memberof JsonApiAutomationInRelationships
46189
46622
  */
46190
- meta?: JsonApiApiTokenOutListMeta;
46623
+ exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
46191
46624
  /**
46192
- * Included resources
46193
- * @type {Array<JsonApiAutomationOutIncludes>}
46194
- * @memberof JsonApiAutomationOutList
46625
+ *
46626
+ * @type {JsonApiAutomationOutRelationshipsRecipients}
46627
+ * @memberof JsonApiAutomationInRelationships
46195
46628
  */
46196
- included?: Array<JsonApiAutomationOutIncludes>;
46629
+ recipients?: JsonApiAutomationOutRelationshipsRecipients;
46197
46630
  }
46198
46631
 
46632
+ export declare const JsonApiAutomationInTypeEnum: {
46633
+ readonly AUTOMATION: "automation";
46634
+ };
46635
+
46636
+ export declare type JsonApiAutomationInTypeEnum = typeof JsonApiAutomationInTypeEnum[keyof typeof JsonApiAutomationInTypeEnum];
46637
+
46199
46638
  /**
46200
- *
46639
+ * The \\\"type\\\" and \\\"id\\\" to non-empty members.
46201
46640
  * @export
46202
- * @interface JsonApiAutomationOutRelationships
46641
+ * @interface JsonApiAutomationLinkage
46203
46642
  */
46204
- export declare interface JsonApiAutomationOutRelationships {
46205
- /**
46206
- *
46207
- * @type {JsonApiAutomationPatchRelationshipsNotificationChannel}
46208
- * @memberof JsonApiAutomationOutRelationships
46209
- */
46210
- notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
46211
- /**
46212
- *
46213
- * @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
46214
- * @memberof JsonApiAutomationOutRelationships
46215
- */
46216
- analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
46217
- /**
46218
- *
46219
- * @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
46220
- * @memberof JsonApiAutomationOutRelationships
46221
- */
46222
- createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
46223
- /**
46224
- *
46225
- * @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
46226
- * @memberof JsonApiAutomationOutRelationships
46227
- */
46228
- modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
46643
+ export declare interface JsonApiAutomationLinkage {
46229
46644
  /**
46230
46645
  *
46231
- * @type {JsonApiAutomationPatchRelationshipsExportDefinitions}
46232
- * @memberof JsonApiAutomationOutRelationships
46646
+ * @type {string}
46647
+ * @memberof JsonApiAutomationLinkage
46233
46648
  */
46234
- exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
46649
+ id: string;
46235
46650
  /**
46236
46651
  *
46237
- * @type {JsonApiAutomationPatchRelationshipsRecipients}
46238
- * @memberof JsonApiAutomationOutRelationships
46652
+ * @type {string}
46653
+ * @memberof JsonApiAutomationLinkage
46239
46654
  */
46240
- recipients?: JsonApiAutomationPatchRelationshipsRecipients;
46655
+ type: JsonApiAutomationLinkageTypeEnum;
46241
46656
  }
46242
46657
 
46243
- export declare const JsonApiAutomationOutTypeEnum: {
46658
+ export declare const JsonApiAutomationLinkageTypeEnum: {
46244
46659
  readonly AUTOMATION: "automation";
46245
46660
  };
46246
46661
 
46247
- export declare type JsonApiAutomationOutTypeEnum = typeof JsonApiAutomationOutTypeEnum[keyof typeof JsonApiAutomationOutTypeEnum];
46662
+ export declare type JsonApiAutomationLinkageTypeEnum = typeof JsonApiAutomationLinkageTypeEnum[keyof typeof JsonApiAutomationLinkageTypeEnum];
46248
46663
 
46249
46664
  /**
46250
- *
46665
+ * JSON:API representation of automation entity.
46251
46666
  * @export
46252
- * @interface JsonApiAutomationOutWithLinks
46667
+ * @interface JsonApiAutomationOut
46253
46668
  */
46254
- export declare interface JsonApiAutomationOutWithLinks {
46669
+ export declare interface JsonApiAutomationOut {
46255
46670
  /**
46256
46671
  * Object type
46257
46672
  * @type {string}
46258
- * @memberof JsonApiAutomationOutWithLinks
46673
+ * @memberof JsonApiAutomationOut
46259
46674
  */
46260
- type: JsonApiAutomationOutWithLinksTypeEnum;
46675
+ type: JsonApiAutomationOutTypeEnum;
46261
46676
  /**
46262
46677
  * API identifier of an object
46263
46678
  * @type {string}
46264
- * @memberof JsonApiAutomationOutWithLinks
46679
+ * @memberof JsonApiAutomationOut
46265
46680
  */
46266
46681
  id: string;
46267
46682
  /**
46268
46683
  *
46269
46684
  * @type {JsonApiVisualizationObjectOutMeta}
46270
- * @memberof JsonApiAutomationOutWithLinks
46685
+ * @memberof JsonApiAutomationOut
46271
46686
  */
46272
46687
  meta?: JsonApiVisualizationObjectOutMeta;
46273
46688
  /**
46274
46689
  *
46275
46690
  * @type {JsonApiAutomationOutAttributes}
46276
- * @memberof JsonApiAutomationOutWithLinks
46691
+ * @memberof JsonApiAutomationOut
46277
46692
  */
46278
46693
  attributes?: JsonApiAutomationOutAttributes;
46279
46694
  /**
46280
46695
  *
46281
46696
  * @type {JsonApiAutomationOutRelationships}
46282
- * @memberof JsonApiAutomationOutWithLinks
46697
+ * @memberof JsonApiAutomationOut
46283
46698
  */
46284
46699
  relationships?: JsonApiAutomationOutRelationships;
46285
- /**
46286
- *
46287
- * @type {ObjectLinks}
46288
- * @memberof JsonApiAutomationOutWithLinks
46289
- */
46290
- links?: ObjectLinks;
46291
- }
46292
-
46293
- export declare const JsonApiAutomationOutWithLinksTypeEnum: {
46294
- readonly AUTOMATION: "automation";
46295
- };
46296
-
46297
- export declare type JsonApiAutomationOutWithLinksTypeEnum = typeof JsonApiAutomationOutWithLinksTypeEnum[keyof typeof JsonApiAutomationOutWithLinksTypeEnum];
46298
-
46299
- /**
46300
- * JSON:API representation of patching automation entity.
46301
- * @export
46302
- * @interface JsonApiAutomationPatch
46303
- */
46304
- export declare interface JsonApiAutomationPatch {
46305
- /**
46306
- * Object type
46307
- * @type {string}
46308
- * @memberof JsonApiAutomationPatch
46309
- */
46310
- type: JsonApiAutomationPatchTypeEnum;
46311
- /**
46312
- * API identifier of an object
46313
- * @type {string}
46314
- * @memberof JsonApiAutomationPatch
46315
- */
46316
- id: string;
46317
- /**
46318
- *
46319
- * @type {JsonApiAutomationPatchAttributes}
46320
- * @memberof JsonApiAutomationPatch
46321
- */
46322
- attributes?: JsonApiAutomationPatchAttributes;
46323
- /**
46324
- *
46325
- * @type {JsonApiAutomationPatchRelationships}
46326
- * @memberof JsonApiAutomationPatch
46327
- */
46328
- relationships?: JsonApiAutomationPatchRelationships;
46329
46700
  }
46330
46701
 
46331
46702
  /**
46332
46703
  *
46333
46704
  * @export
46334
- * @interface JsonApiAutomationPatchAttributes
46705
+ * @interface JsonApiAutomationOutAttributes
46335
46706
  */
46336
- export declare interface JsonApiAutomationPatchAttributes {
46707
+ export declare interface JsonApiAutomationOutAttributes {
46337
46708
  /**
46338
46709
  *
46339
46710
  * @type {string}
46340
- * @memberof JsonApiAutomationPatchAttributes
46711
+ * @memberof JsonApiAutomationOutAttributes
46341
46712
  */
46342
46713
  title?: string;
46343
46714
  /**
46344
46715
  *
46345
46716
  * @type {string}
46346
- * @memberof JsonApiAutomationPatchAttributes
46717
+ * @memberof JsonApiAutomationOutAttributes
46347
46718
  */
46348
46719
  description?: string;
46349
46720
  /**
46350
46721
  *
46351
46722
  * @type {Array<string>}
46352
- * @memberof JsonApiAutomationPatchAttributes
46723
+ * @memberof JsonApiAutomationOutAttributes
46353
46724
  */
46354
46725
  tags?: Array<string>;
46355
46726
  /**
46356
46727
  *
46357
46728
  * @type {boolean}
46358
- * @memberof JsonApiAutomationPatchAttributes
46729
+ * @memberof JsonApiAutomationOutAttributes
46359
46730
  */
46360
46731
  areRelationsValid?: boolean;
46361
46732
  /**
46362
46733
  * Additional details to be included in the automated message.
46363
46734
  * @type {any}
46364
- * @memberof JsonApiAutomationPatchAttributes
46735
+ * @memberof JsonApiAutomationOutAttributes
46365
46736
  */
46366
46737
  details?: any;
46367
46738
  /**
46368
46739
  *
46369
- * @type {JsonApiAutomationPatchAttributesMetadata}
46370
- * @memberof JsonApiAutomationPatchAttributes
46740
+ * @type {JsonApiAutomationOutAttributesMetadata}
46741
+ * @memberof JsonApiAutomationOutAttributes
46371
46742
  */
46372
- metadata?: JsonApiAutomationPatchAttributesMetadata | null;
46743
+ metadata?: JsonApiAutomationOutAttributesMetadata | null;
46373
46744
  /**
46374
46745
  * Current state of the automation.
46375
46746
  * @type {string}
46376
- * @memberof JsonApiAutomationPatchAttributes
46747
+ * @memberof JsonApiAutomationOutAttributes
46377
46748
  */
46378
- state?: JsonApiAutomationPatchAttributesStateEnum;
46749
+ state?: JsonApiAutomationOutAttributesStateEnum;
46379
46750
  /**
46380
46751
  *
46381
- * @type {JsonApiAutomationPatchAttributesSchedule}
46382
- * @memberof JsonApiAutomationPatchAttributes
46752
+ * @type {JsonApiAutomationOutAttributesSchedule}
46753
+ * @memberof JsonApiAutomationOutAttributes
46383
46754
  */
46384
- schedule?: JsonApiAutomationPatchAttributesSchedule;
46755
+ schedule?: JsonApiAutomationOutAttributesSchedule;
46385
46756
  /**
46386
46757
  *
46387
- * @type {JsonApiAutomationPatchAttributesAlert}
46388
- * @memberof JsonApiAutomationPatchAttributes
46758
+ * @type {JsonApiAutomationOutAttributesAlert}
46759
+ * @memberof JsonApiAutomationOutAttributes
46389
46760
  */
46390
- alert?: JsonApiAutomationPatchAttributesAlert;
46761
+ alert?: JsonApiAutomationOutAttributesAlert;
46391
46762
  /**
46392
46763
  *
46393
- * @type {Array<JsonApiAutomationPatchAttributesTabularExports>}
46394
- * @memberof JsonApiAutomationPatchAttributes
46764
+ * @type {Array<JsonApiAutomationOutAttributesTabularExports>}
46765
+ * @memberof JsonApiAutomationOutAttributes
46395
46766
  */
46396
- tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExports>;
46767
+ tabularExports?: Array<JsonApiAutomationOutAttributesTabularExports>;
46397
46768
  /**
46398
46769
  *
46399
- * @type {Array<JsonApiAutomationPatchAttributesVisualExports>}
46400
- * @memberof JsonApiAutomationPatchAttributes
46770
+ * @type {Array<JsonApiAutomationOutAttributesVisualExports>}
46771
+ * @memberof JsonApiAutomationOutAttributes
46401
46772
  */
46402
- visualExports?: Array<JsonApiAutomationPatchAttributesVisualExports>;
46773
+ visualExports?: Array<JsonApiAutomationOutAttributesVisualExports>;
46774
+ /**
46775
+ *
46776
+ * @type {Array<JsonApiAutomationOutAttributesImageExports>}
46777
+ * @memberof JsonApiAutomationOutAttributes
46778
+ */
46779
+ imageExports?: Array<JsonApiAutomationOutAttributesImageExports>;
46403
46780
  /**
46404
46781
  * External recipients of the automation action results.
46405
- * @type {Array<JsonApiAutomationPatchAttributesExternalRecipients>}
46406
- * @memberof JsonApiAutomationPatchAttributes
46782
+ * @type {Array<JsonApiAutomationOutAttributesExternalRecipients>}
46783
+ * @memberof JsonApiAutomationOutAttributes
46784
+ */
46785
+ externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipients>;
46786
+ /**
46787
+ *
46788
+ * @type {string}
46789
+ * @memberof JsonApiAutomationOutAttributes
46790
+ */
46791
+ createdAt?: string;
46792
+ /**
46793
+ *
46794
+ * @type {string}
46795
+ * @memberof JsonApiAutomationOutAttributes
46407
46796
  */
46408
- externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipients>;
46797
+ modifiedAt?: string;
46409
46798
  }
46410
46799
 
46411
46800
  /**
46412
46801
  *
46413
46802
  * @export
46414
- * @interface JsonApiAutomationPatchAttributesAlert
46803
+ * @interface JsonApiAutomationOutAttributesAlert
46415
46804
  */
46416
- export declare interface JsonApiAutomationPatchAttributesAlert {
46805
+ export declare interface JsonApiAutomationOutAttributesAlert {
46417
46806
  /**
46418
46807
  *
46419
46808
  * @type {AlertAfm}
46420
- * @memberof JsonApiAutomationPatchAttributesAlert
46809
+ * @memberof JsonApiAutomationOutAttributesAlert
46421
46810
  */
46422
46811
  execution: AlertAfm;
46423
46812
  /**
46424
46813
  *
46425
46814
  * @type {AlertCondition}
46426
- * @memberof JsonApiAutomationPatchAttributesAlert
46815
+ * @memberof JsonApiAutomationOutAttributesAlert
46427
46816
  */
46428
46817
  condition: AlertCondition;
46429
46818
  /**
46430
46819
  * Trigger behavior for the alert. ALWAYS - alert is triggered every time the condition is met. ONCE - alert is triggered only once when the condition is met.
46431
46820
  * @type {string}
46432
- * @memberof JsonApiAutomationPatchAttributesAlert
46821
+ * @memberof JsonApiAutomationOutAttributesAlert
46433
46822
  */
46434
- trigger?: JsonApiAutomationPatchAttributesAlertTriggerEnum;
46823
+ trigger?: JsonApiAutomationOutAttributesAlertTriggerEnum;
46435
46824
  }
46436
46825
 
46437
- export declare const JsonApiAutomationPatchAttributesAlertTriggerEnum: {
46826
+ export declare const JsonApiAutomationOutAttributesAlertTriggerEnum: {
46438
46827
  readonly ALWAYS: "ALWAYS";
46439
46828
  readonly ONCE: "ONCE";
46440
46829
  };
46441
46830
 
46442
- export declare type JsonApiAutomationPatchAttributesAlertTriggerEnum = typeof JsonApiAutomationPatchAttributesAlertTriggerEnum[keyof typeof JsonApiAutomationPatchAttributesAlertTriggerEnum];
46831
+ export declare type JsonApiAutomationOutAttributesAlertTriggerEnum = typeof JsonApiAutomationOutAttributesAlertTriggerEnum[keyof typeof JsonApiAutomationOutAttributesAlertTriggerEnum];
46443
46832
 
46444
46833
  /**
46445
46834
  *
46446
46835
  * @export
46447
- * @interface JsonApiAutomationPatchAttributesExternalRecipients
46836
+ * @interface JsonApiAutomationOutAttributesExternalRecipients
46448
46837
  */
46449
- export declare interface JsonApiAutomationPatchAttributesExternalRecipients {
46838
+ export declare interface JsonApiAutomationOutAttributesExternalRecipients {
46450
46839
  /**
46451
46840
  * E-mail address to send notifications from.
46452
46841
  * @type {string}
46453
- * @memberof JsonApiAutomationPatchAttributesExternalRecipients
46842
+ * @memberof JsonApiAutomationOutAttributesExternalRecipients
46454
46843
  */
46455
46844
  email: string;
46456
46845
  }
46457
46846
 
46847
+ /**
46848
+ *
46849
+ * @export
46850
+ * @interface JsonApiAutomationOutAttributesImageExports
46851
+ */
46852
+ export declare interface JsonApiAutomationOutAttributesImageExports {
46853
+ /**
46854
+ *
46855
+ * @type {ImageExportRequest}
46856
+ * @memberof JsonApiAutomationOutAttributesImageExports
46857
+ */
46858
+ requestPayload: ImageExportRequest;
46859
+ }
46860
+
46458
46861
  /**
46459
46862
  * Additional information for the automation.
46460
46863
  * @export
46461
- * @interface JsonApiAutomationPatchAttributesMetadata
46864
+ * @interface JsonApiAutomationOutAttributesMetadata
46462
46865
  */
46463
- export declare interface JsonApiAutomationPatchAttributesMetadata {
46866
+ export declare interface JsonApiAutomationOutAttributesMetadata {
46464
46867
  /**
46465
46868
  *
46466
46869
  * @type {string}
46467
- * @memberof JsonApiAutomationPatchAttributesMetadata
46870
+ * @memberof JsonApiAutomationOutAttributesMetadata
46468
46871
  */
46469
46872
  widget?: string;
46470
46873
  /**
46471
46874
  *
46472
46875
  * @type {Array<VisibleFilter>}
46473
- * @memberof JsonApiAutomationPatchAttributesMetadata
46876
+ * @memberof JsonApiAutomationOutAttributesMetadata
46474
46877
  */
46475
46878
  visibleFilters?: Array<VisibleFilter>;
46476
46879
  }
@@ -46478,52 +46881,52 @@ export declare interface JsonApiAutomationPatchAttributesMetadata {
46478
46881
  /**
46479
46882
  *
46480
46883
  * @export
46481
- * @interface JsonApiAutomationPatchAttributesSchedule
46884
+ * @interface JsonApiAutomationOutAttributesSchedule
46482
46885
  */
46483
- export declare interface JsonApiAutomationPatchAttributesSchedule {
46886
+ export declare interface JsonApiAutomationOutAttributesSchedule {
46484
46887
  /**
46485
46888
  * Cron expression defining the schedule of the automation. The format is SECOND MINUTE HOUR DAY-OF-MONTH MONTH DAY-OF-WEEK (YEAR). The example expression signifies an action every 30 minutes from 9:00 to 17:00 on workdays.
46486
46889
  * @type {string}
46487
- * @memberof JsonApiAutomationPatchAttributesSchedule
46890
+ * @memberof JsonApiAutomationOutAttributesSchedule
46488
46891
  */
46489
46892
  cron: string;
46490
46893
  /**
46491
46894
  * Human-readable description of the cron expression.
46492
46895
  * @type {string}
46493
- * @memberof JsonApiAutomationPatchAttributesSchedule
46896
+ * @memberof JsonApiAutomationOutAttributesSchedule
46494
46897
  */
46495
46898
  cronDescription?: string;
46496
46899
  /**
46497
46900
  * Timezone in which the schedule is defined.
46498
46901
  * @type {string}
46499
- * @memberof JsonApiAutomationPatchAttributesSchedule
46902
+ * @memberof JsonApiAutomationOutAttributesSchedule
46500
46903
  */
46501
46904
  timezone: string;
46502
46905
  /**
46503
46906
  * Timestamp of the first scheduled action. If not provided default to the next scheduled time.
46504
46907
  * @type {string}
46505
- * @memberof JsonApiAutomationPatchAttributesSchedule
46908
+ * @memberof JsonApiAutomationOutAttributesSchedule
46506
46909
  */
46507
46910
  firstRun?: string;
46508
46911
  }
46509
46912
 
46510
- export declare const JsonApiAutomationPatchAttributesStateEnum: {
46913
+ export declare const JsonApiAutomationOutAttributesStateEnum: {
46511
46914
  readonly ACTIVE: "ACTIVE";
46512
46915
  readonly PAUSED: "PAUSED";
46513
46916
  };
46514
46917
 
46515
- export declare type JsonApiAutomationPatchAttributesStateEnum = typeof JsonApiAutomationPatchAttributesStateEnum[keyof typeof JsonApiAutomationPatchAttributesStateEnum];
46918
+ export declare type JsonApiAutomationOutAttributesStateEnum = typeof JsonApiAutomationOutAttributesStateEnum[keyof typeof JsonApiAutomationOutAttributesStateEnum];
46516
46919
 
46517
46920
  /**
46518
46921
  *
46519
46922
  * @export
46520
- * @interface JsonApiAutomationPatchAttributesTabularExports
46923
+ * @interface JsonApiAutomationOutAttributesTabularExports
46521
46924
  */
46522
- export declare interface JsonApiAutomationPatchAttributesTabularExports {
46925
+ export declare interface JsonApiAutomationOutAttributesTabularExports {
46523
46926
  /**
46524
46927
  *
46525
46928
  * @type {TabularExportRequest}
46526
- * @memberof JsonApiAutomationPatchAttributesTabularExports
46929
+ * @memberof JsonApiAutomationOutAttributesTabularExports
46527
46930
  */
46528
46931
  requestPayload: TabularExportRequest;
46529
46932
  }
@@ -46531,13 +46934,13 @@ export declare interface JsonApiAutomationPatchAttributesTabularExports {
46531
46934
  /**
46532
46935
  *
46533
46936
  * @export
46534
- * @interface JsonApiAutomationPatchAttributesVisualExports
46937
+ * @interface JsonApiAutomationOutAttributesVisualExports
46535
46938
  */
46536
- export declare interface JsonApiAutomationPatchAttributesVisualExports {
46939
+ export declare interface JsonApiAutomationOutAttributesVisualExports {
46537
46940
  /**
46538
46941
  *
46539
46942
  * @type {VisualExportRequest}
46540
- * @memberof JsonApiAutomationPatchAttributesVisualExports
46943
+ * @memberof JsonApiAutomationOutAttributesVisualExports
46541
46944
  */
46542
46945
  requestPayload: VisualExportRequest;
46543
46946
  }
@@ -46545,73 +46948,121 @@ export declare interface JsonApiAutomationPatchAttributesVisualExports {
46545
46948
  /**
46546
46949
  *
46547
46950
  * @export
46548
- * @interface JsonApiAutomationPatchDocument
46951
+ * @interface JsonApiAutomationOutDocument
46549
46952
  */
46550
- export declare interface JsonApiAutomationPatchDocument {
46953
+ export declare interface JsonApiAutomationOutDocument {
46551
46954
  /**
46552
46955
  *
46553
- * @type {JsonApiAutomationPatch}
46554
- * @memberof JsonApiAutomationPatchDocument
46956
+ * @type {JsonApiAutomationOut}
46957
+ * @memberof JsonApiAutomationOutDocument
46555
46958
  */
46556
- data: JsonApiAutomationPatch;
46959
+ data: JsonApiAutomationOut;
46960
+ /**
46961
+ *
46962
+ * @type {ObjectLinks}
46963
+ * @memberof JsonApiAutomationOutDocument
46964
+ */
46965
+ links?: ObjectLinks;
46966
+ /**
46967
+ * Included resources
46968
+ * @type {Array<JsonApiAutomationOutIncludes>}
46969
+ * @memberof JsonApiAutomationOutDocument
46970
+ */
46971
+ included?: Array<JsonApiAutomationOutIncludes>;
46557
46972
  }
46558
46973
 
46559
46974
  /**
46560
- *
46975
+ * @type JsonApiAutomationOutIncludes
46561
46976
  * @export
46562
- * @interface JsonApiAutomationPatchRelationships
46563
46977
  */
46564
- export declare interface JsonApiAutomationPatchRelationships {
46978
+ export declare type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiExportDefinitionOutWithLinks | JsonApiNotificationChannelOutWithLinks | JsonApiUserIdentifierOutWithLinks | JsonApiUserOutWithLinks;
46979
+
46980
+ /**
46981
+ * A JSON:API document with a list of resources
46982
+ * @export
46983
+ * @interface JsonApiAutomationOutList
46984
+ */
46985
+ export declare interface JsonApiAutomationOutList {
46565
46986
  /**
46566
46987
  *
46567
- * @type {JsonApiAutomationPatchRelationshipsNotificationChannel}
46568
- * @memberof JsonApiAutomationPatchRelationships
46988
+ * @type {Array<JsonApiAutomationOutWithLinks>}
46989
+ * @memberof JsonApiAutomationOutList
46569
46990
  */
46570
- notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
46991
+ data: Array<JsonApiAutomationOutWithLinks>;
46571
46992
  /**
46572
46993
  *
46573
- * @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
46574
- * @memberof JsonApiAutomationPatchRelationships
46994
+ * @type {ListLinks}
46995
+ * @memberof JsonApiAutomationOutList
46575
46996
  */
46576
- analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
46997
+ links?: ListLinks;
46577
46998
  /**
46578
46999
  *
46579
- * @type {JsonApiAutomationPatchRelationshipsExportDefinitions}
46580
- * @memberof JsonApiAutomationPatchRelationships
47000
+ * @type {JsonApiApiTokenOutListMeta}
47001
+ * @memberof JsonApiAutomationOutList
46581
47002
  */
46582
- exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
47003
+ meta?: JsonApiApiTokenOutListMeta;
46583
47004
  /**
46584
- *
46585
- * @type {JsonApiAutomationPatchRelationshipsRecipients}
46586
- * @memberof JsonApiAutomationPatchRelationships
47005
+ * Included resources
47006
+ * @type {Array<JsonApiAutomationOutIncludes>}
47007
+ * @memberof JsonApiAutomationOutList
46587
47008
  */
46588
- recipients?: JsonApiAutomationPatchRelationshipsRecipients;
47009
+ included?: Array<JsonApiAutomationOutIncludes>;
46589
47010
  }
46590
47011
 
46591
47012
  /**
46592
47013
  *
46593
47014
  * @export
46594
- * @interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard
47015
+ * @interface JsonApiAutomationOutRelationships
46595
47016
  */
46596
- export declare interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard {
47017
+ export declare interface JsonApiAutomationOutRelationships {
46597
47018
  /**
46598
47019
  *
46599
- * @type {JsonApiAnalyticalDashboardToOneLinkage}
46600
- * @memberof JsonApiAutomationPatchRelationshipsAnalyticalDashboard
47020
+ * @type {JsonApiAutomationOutRelationshipsNotificationChannel}
47021
+ * @memberof JsonApiAutomationOutRelationships
46601
47022
  */
46602
- data: JsonApiAnalyticalDashboardToOneLinkage | null;
47023
+ notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
47024
+ /**
47025
+ *
47026
+ * @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
47027
+ * @memberof JsonApiAutomationOutRelationships
47028
+ */
47029
+ analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
47030
+ /**
47031
+ *
47032
+ * @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
47033
+ * @memberof JsonApiAutomationOutRelationships
47034
+ */
47035
+ createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
47036
+ /**
47037
+ *
47038
+ * @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
47039
+ * @memberof JsonApiAutomationOutRelationships
47040
+ */
47041
+ modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
47042
+ /**
47043
+ *
47044
+ * @type {JsonApiAutomationOutRelationshipsExportDefinitions}
47045
+ * @memberof JsonApiAutomationOutRelationships
47046
+ */
47047
+ exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
47048
+ /**
47049
+ *
47050
+ * @type {JsonApiAutomationOutRelationshipsRecipients}
47051
+ * @memberof JsonApiAutomationOutRelationships
47052
+ */
47053
+ recipients?: JsonApiAutomationOutRelationshipsRecipients;
46603
47054
  }
46604
47055
 
46605
47056
  /**
46606
47057
  *
46607
47058
  * @export
46608
- * @interface JsonApiAutomationPatchRelationshipsExportDefinitions
47059
+ * @interface JsonApiAutomationOutRelationshipsExportDefinitions
46609
47060
  */
46610
- export declare interface JsonApiAutomationPatchRelationshipsExportDefinitions {
47061
+ export declare interface JsonApiAutomationOutRelationshipsExportDefinitions {
46611
47062
  /**
46612
47063
  * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
46613
47064
  * @type {Array<JsonApiExportDefinitionLinkage>}
46614
- * @memberof JsonApiAutomationPatchRelationshipsExportDefinitions
47065
+ * @memberof JsonApiAutomationOutRelationshipsExportDefinitions
46615
47066
  */
46616
47067
  data: Array<JsonApiExportDefinitionLinkage>;
46617
47068
  }
@@ -46619,13 +47070,13 @@ export declare interface JsonApiAutomationPatchRelationshipsExportDefinitions {
46619
47070
  /**
46620
47071
  *
46621
47072
  * @export
46622
- * @interface JsonApiAutomationPatchRelationshipsNotificationChannel
47073
+ * @interface JsonApiAutomationOutRelationshipsNotificationChannel
46623
47074
  */
46624
- export declare interface JsonApiAutomationPatchRelationshipsNotificationChannel {
47075
+ export declare interface JsonApiAutomationOutRelationshipsNotificationChannel {
46625
47076
  /**
46626
47077
  *
46627
47078
  * @type {JsonApiNotificationChannelToOneLinkage}
46628
- * @memberof JsonApiAutomationPatchRelationshipsNotificationChannel
47079
+ * @memberof JsonApiAutomationOutRelationshipsNotificationChannel
46629
47080
  */
46630
47081
  data: JsonApiNotificationChannelToOneLinkage | null;
46631
47082
  }
@@ -46633,17 +47084,119 @@ export declare interface JsonApiAutomationPatchRelationshipsNotificationChannel
46633
47084
  /**
46634
47085
  *
46635
47086
  * @export
46636
- * @interface JsonApiAutomationPatchRelationshipsRecipients
47087
+ * @interface JsonApiAutomationOutRelationshipsRecipients
46637
47088
  */
46638
- export declare interface JsonApiAutomationPatchRelationshipsRecipients {
47089
+ export declare interface JsonApiAutomationOutRelationshipsRecipients {
46639
47090
  /**
46640
47091
  * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
46641
47092
  * @type {Array<JsonApiUserLinkage>}
46642
- * @memberof JsonApiAutomationPatchRelationshipsRecipients
47093
+ * @memberof JsonApiAutomationOutRelationshipsRecipients
46643
47094
  */
46644
47095
  data: Array<JsonApiUserLinkage>;
46645
47096
  }
46646
47097
 
47098
+ export declare const JsonApiAutomationOutTypeEnum: {
47099
+ readonly AUTOMATION: "automation";
47100
+ };
47101
+
47102
+ export declare type JsonApiAutomationOutTypeEnum = typeof JsonApiAutomationOutTypeEnum[keyof typeof JsonApiAutomationOutTypeEnum];
47103
+
47104
+ /**
47105
+ *
47106
+ * @export
47107
+ * @interface JsonApiAutomationOutWithLinks
47108
+ */
47109
+ export declare interface JsonApiAutomationOutWithLinks {
47110
+ /**
47111
+ * Object type
47112
+ * @type {string}
47113
+ * @memberof JsonApiAutomationOutWithLinks
47114
+ */
47115
+ type: JsonApiAutomationOutWithLinksTypeEnum;
47116
+ /**
47117
+ * API identifier of an object
47118
+ * @type {string}
47119
+ * @memberof JsonApiAutomationOutWithLinks
47120
+ */
47121
+ id: string;
47122
+ /**
47123
+ *
47124
+ * @type {JsonApiVisualizationObjectOutMeta}
47125
+ * @memberof JsonApiAutomationOutWithLinks
47126
+ */
47127
+ meta?: JsonApiVisualizationObjectOutMeta;
47128
+ /**
47129
+ *
47130
+ * @type {JsonApiAutomationOutAttributes}
47131
+ * @memberof JsonApiAutomationOutWithLinks
47132
+ */
47133
+ attributes?: JsonApiAutomationOutAttributes;
47134
+ /**
47135
+ *
47136
+ * @type {JsonApiAutomationOutRelationships}
47137
+ * @memberof JsonApiAutomationOutWithLinks
47138
+ */
47139
+ relationships?: JsonApiAutomationOutRelationships;
47140
+ /**
47141
+ *
47142
+ * @type {ObjectLinks}
47143
+ * @memberof JsonApiAutomationOutWithLinks
47144
+ */
47145
+ links?: ObjectLinks;
47146
+ }
47147
+
47148
+ export declare const JsonApiAutomationOutWithLinksTypeEnum: {
47149
+ readonly AUTOMATION: "automation";
47150
+ };
47151
+
47152
+ export declare type JsonApiAutomationOutWithLinksTypeEnum = typeof JsonApiAutomationOutWithLinksTypeEnum[keyof typeof JsonApiAutomationOutWithLinksTypeEnum];
47153
+
47154
+ /**
47155
+ * JSON:API representation of patching automation entity.
47156
+ * @export
47157
+ * @interface JsonApiAutomationPatch
47158
+ */
47159
+ export declare interface JsonApiAutomationPatch {
47160
+ /**
47161
+ * Object type
47162
+ * @type {string}
47163
+ * @memberof JsonApiAutomationPatch
47164
+ */
47165
+ type: JsonApiAutomationPatchTypeEnum;
47166
+ /**
47167
+ * API identifier of an object
47168
+ * @type {string}
47169
+ * @memberof JsonApiAutomationPatch
47170
+ */
47171
+ id: string;
47172
+ /**
47173
+ *
47174
+ * @type {JsonApiAutomationInAttributes}
47175
+ * @memberof JsonApiAutomationPatch
47176
+ */
47177
+ attributes?: JsonApiAutomationInAttributes;
47178
+ /**
47179
+ *
47180
+ * @type {JsonApiAutomationInRelationships}
47181
+ * @memberof JsonApiAutomationPatch
47182
+ */
47183
+ relationships?: JsonApiAutomationInRelationships;
47184
+ }
47185
+
47186
+ /**
47187
+ *
47188
+ * @export
47189
+ * @interface JsonApiAutomationPatchDocument
47190
+ */
47191
+ export declare interface JsonApiAutomationPatchDocument {
47192
+ /**
47193
+ *
47194
+ * @type {JsonApiAutomationPatch}
47195
+ * @memberof JsonApiAutomationPatchDocument
47196
+ */
47197
+ data: JsonApiAutomationPatch;
47198
+ }
47199
+
46647
47200
  export declare const JsonApiAutomationPatchTypeEnum: {
46648
47201
  readonly AUTOMATION: "automation";
46649
47202
  };
@@ -46925,10 +47478,10 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
46925
47478
  id: string;
46926
47479
  /**
46927
47480
  *
46928
- * @type {JsonApiCookieSecurityConfigurationOutAttributes}
47481
+ * @type {JsonApiCookieSecurityConfigurationPatchAttributes}
46929
47482
  * @memberof JsonApiCookieSecurityConfigurationIn
46930
47483
  */
46931
- attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
47484
+ attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
46932
47485
  }
46933
47486
 
46934
47487
  /**
@@ -46971,30 +47524,10 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
46971
47524
  id: string;
46972
47525
  /**
46973
47526
  *
46974
- * @type {JsonApiCookieSecurityConfigurationOutAttributes}
47527
+ * @type {JsonApiCookieSecurityConfigurationPatchAttributes}
46975
47528
  * @memberof JsonApiCookieSecurityConfigurationOut
46976
47529
  */
46977
- attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
46978
- }
46979
-
46980
- /**
46981
- *
46982
- * @export
46983
- * @interface JsonApiCookieSecurityConfigurationOutAttributes
46984
- */
46985
- export declare interface JsonApiCookieSecurityConfigurationOutAttributes {
46986
- /**
46987
- *
46988
- * @type {string}
46989
- * @memberof JsonApiCookieSecurityConfigurationOutAttributes
46990
- */
46991
- lastRotation?: string;
46992
- /**
46993
- * Length of interval between automatic rotations expressed in format of ISO 8601 duration
46994
- * @type {string}
46995
- * @memberof JsonApiCookieSecurityConfigurationOutAttributes
46996
- */
46997
- rotationInterval?: string;
47530
+ attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
46998
47531
  }
46999
47532
 
47000
47533
  /**
@@ -47043,10 +47576,30 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
47043
47576
  id: string;
47044
47577
  /**
47045
47578
  *
47046
- * @type {JsonApiCookieSecurityConfigurationOutAttributes}
47579
+ * @type {JsonApiCookieSecurityConfigurationPatchAttributes}
47047
47580
  * @memberof JsonApiCookieSecurityConfigurationPatch
47048
47581
  */
47049
- attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
47582
+ attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
47583
+ }
47584
+
47585
+ /**
47586
+ *
47587
+ * @export
47588
+ * @interface JsonApiCookieSecurityConfigurationPatchAttributes
47589
+ */
47590
+ export declare interface JsonApiCookieSecurityConfigurationPatchAttributes {
47591
+ /**
47592
+ *
47593
+ * @type {string}
47594
+ * @memberof JsonApiCookieSecurityConfigurationPatchAttributes
47595
+ */
47596
+ lastRotation?: string;
47597
+ /**
47598
+ * Length of interval between automatic rotations expressed in format of ISO 8601 duration
47599
+ * @type {string}
47600
+ * @memberof JsonApiCookieSecurityConfigurationPatchAttributes
47601
+ */
47602
+ rotationInterval?: string;
47050
47603
  }
47051
47604
 
47052
47605
  /**
@@ -47631,10 +48184,10 @@ export declare interface JsonApiDashboardPluginIn {
47631
48184
  id: string;
47632
48185
  /**
47633
48186
  *
47634
- * @type {JsonApiDashboardPluginPatchAttributes}
48187
+ * @type {JsonApiDashboardPluginPostOptionalIdAttributes}
47635
48188
  * @memberof JsonApiDashboardPluginIn
47636
48189
  */
47637
- attributes?: JsonApiDashboardPluginPatchAttributes;
48190
+ attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
47638
48191
  }
47639
48192
 
47640
48193
  /**
@@ -47925,48 +48478,10 @@ export declare interface JsonApiDashboardPluginPatch {
47925
48478
  id: string;
47926
48479
  /**
47927
48480
  *
47928
- * @type {JsonApiDashboardPluginPatchAttributes}
48481
+ * @type {JsonApiDashboardPluginPostOptionalIdAttributes}
47929
48482
  * @memberof JsonApiDashboardPluginPatch
47930
48483
  */
47931
- attributes?: JsonApiDashboardPluginPatchAttributes;
47932
- }
47933
-
47934
- /**
47935
- *
47936
- * @export
47937
- * @interface JsonApiDashboardPluginPatchAttributes
47938
- */
47939
- export declare interface JsonApiDashboardPluginPatchAttributes {
47940
- /**
47941
- *
47942
- * @type {string}
47943
- * @memberof JsonApiDashboardPluginPatchAttributes
47944
- */
47945
- title?: string;
47946
- /**
47947
- *
47948
- * @type {string}
47949
- * @memberof JsonApiDashboardPluginPatchAttributes
47950
- */
47951
- description?: string;
47952
- /**
47953
- *
47954
- * @type {Array<string>}
47955
- * @memberof JsonApiDashboardPluginPatchAttributes
47956
- */
47957
- tags?: Array<string>;
47958
- /**
47959
- *
47960
- * @type {boolean}
47961
- * @memberof JsonApiDashboardPluginPatchAttributes
47962
- */
47963
- areRelationsValid?: boolean;
47964
- /**
47965
- * Free-form JSON content. Maximum supported length is 250000 characters.
47966
- * @type {object}
47967
- * @memberof JsonApiDashboardPluginPatchAttributes
47968
- */
47969
- content?: object;
48484
+ attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
47970
48485
  }
47971
48486
 
47972
48487
  /**
@@ -48009,10 +48524,48 @@ export declare interface JsonApiDashboardPluginPostOptionalId {
48009
48524
  id?: string;
48010
48525
  /**
48011
48526
  *
48012
- * @type {JsonApiDashboardPluginPatchAttributes}
48527
+ * @type {JsonApiDashboardPluginPostOptionalIdAttributes}
48013
48528
  * @memberof JsonApiDashboardPluginPostOptionalId
48014
48529
  */
48015
- attributes?: JsonApiDashboardPluginPatchAttributes;
48530
+ attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
48531
+ }
48532
+
48533
+ /**
48534
+ *
48535
+ * @export
48536
+ * @interface JsonApiDashboardPluginPostOptionalIdAttributes
48537
+ */
48538
+ export declare interface JsonApiDashboardPluginPostOptionalIdAttributes {
48539
+ /**
48540
+ *
48541
+ * @type {string}
48542
+ * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
48543
+ */
48544
+ title?: string;
48545
+ /**
48546
+ *
48547
+ * @type {string}
48548
+ * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
48549
+ */
48550
+ description?: string;
48551
+ /**
48552
+ *
48553
+ * @type {Array<string>}
48554
+ * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
48555
+ */
48556
+ tags?: Array<string>;
48557
+ /**
48558
+ *
48559
+ * @type {boolean}
48560
+ * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
48561
+ */
48562
+ areRelationsValid?: boolean;
48563
+ /**
48564
+ * Free-form JSON content. Maximum supported length is 250000 characters.
48565
+ * @type {object}
48566
+ * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
48567
+ */
48568
+ content?: object;
48016
48569
  }
48017
48570
 
48018
48571
  /**
@@ -49484,16 +50037,16 @@ export declare interface JsonApiExportDefinitionIn {
49484
50037
  id: string;
49485
50038
  /**
49486
50039
  *
49487
- * @type {JsonApiExportDefinitionPatchAttributes}
50040
+ * @type {JsonApiExportDefinitionPostOptionalIdAttributes}
49488
50041
  * @memberof JsonApiExportDefinitionIn
49489
50042
  */
49490
- attributes?: JsonApiExportDefinitionPatchAttributes;
50043
+ attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
49491
50044
  /**
49492
50045
  *
49493
- * @type {JsonApiExportDefinitionPatchRelationships}
50046
+ * @type {JsonApiExportDefinitionPostOptionalIdRelationships}
49494
50047
  * @memberof JsonApiExportDefinitionIn
49495
50048
  */
49496
- relationships?: JsonApiExportDefinitionPatchRelationships;
50049
+ relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
49497
50050
  }
49498
50051
 
49499
50052
  /**
@@ -49708,10 +50261,10 @@ export declare interface JsonApiExportDefinitionOutRelationships {
49708
50261
  visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
49709
50262
  /**
49710
50263
  *
49711
- * @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
50264
+ * @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
49712
50265
  * @memberof JsonApiExportDefinitionOutRelationships
49713
50266
  */
49714
- analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
50267
+ analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
49715
50268
  /**
49716
50269
  *
49717
50270
  * @type {JsonApiExportDefinitionOutRelationshipsAutomation}
@@ -49732,6 +50285,20 @@ export declare interface JsonApiExportDefinitionOutRelationships {
49732
50285
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
49733
50286
  }
49734
50287
 
50288
+ /**
50289
+ *
50290
+ * @export
50291
+ * @interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard
50292
+ */
50293
+ export declare interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
50294
+ /**
50295
+ *
50296
+ * @type {JsonApiAnalyticalDashboardToOneLinkage}
50297
+ * @memberof JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard
50298
+ */
50299
+ data: JsonApiAnalyticalDashboardToOneLinkage | null;
50300
+ }
50301
+
49735
50302
  /**
49736
50303
  *
49737
50304
  * @export
@@ -49836,54 +50403,16 @@ export declare interface JsonApiExportDefinitionPatch {
49836
50403
  id: string;
49837
50404
  /**
49838
50405
  *
49839
- * @type {JsonApiExportDefinitionPatchAttributes}
50406
+ * @type {JsonApiExportDefinitionPostOptionalIdAttributes}
49840
50407
  * @memberof JsonApiExportDefinitionPatch
49841
50408
  */
49842
- attributes?: JsonApiExportDefinitionPatchAttributes;
50409
+ attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
49843
50410
  /**
49844
50411
  *
49845
- * @type {JsonApiExportDefinitionPatchRelationships}
50412
+ * @type {JsonApiExportDefinitionPostOptionalIdRelationships}
49846
50413
  * @memberof JsonApiExportDefinitionPatch
49847
50414
  */
49848
- relationships?: JsonApiExportDefinitionPatchRelationships;
49849
- }
49850
-
49851
- /**
49852
- *
49853
- * @export
49854
- * @interface JsonApiExportDefinitionPatchAttributes
49855
- */
49856
- export declare interface JsonApiExportDefinitionPatchAttributes {
49857
- /**
49858
- *
49859
- * @type {string}
49860
- * @memberof JsonApiExportDefinitionPatchAttributes
49861
- */
49862
- title?: string;
49863
- /**
49864
- *
49865
- * @type {string}
49866
- * @memberof JsonApiExportDefinitionPatchAttributes
49867
- */
49868
- description?: string;
49869
- /**
49870
- *
49871
- * @type {Array<string>}
49872
- * @memberof JsonApiExportDefinitionPatchAttributes
49873
- */
49874
- tags?: Array<string>;
49875
- /**
49876
- * JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
49877
- * @type {VisualExportRequest | TabularExportRequest}
49878
- * @memberof JsonApiExportDefinitionPatchAttributes
49879
- */
49880
- requestPayload?: VisualExportRequest | TabularExportRequest;
49881
- /**
49882
- *
49883
- * @type {boolean}
49884
- * @memberof JsonApiExportDefinitionPatchAttributes
49885
- */
49886
- areRelationsValid?: boolean;
50415
+ relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
49887
50416
  }
49888
50417
 
49889
50418
  /**
@@ -49900,26 +50429,6 @@ export declare interface JsonApiExportDefinitionPatchDocument {
49900
50429
  data: JsonApiExportDefinitionPatch;
49901
50430
  }
49902
50431
 
49903
- /**
49904
- *
49905
- * @export
49906
- * @interface JsonApiExportDefinitionPatchRelationships
49907
- */
49908
- export declare interface JsonApiExportDefinitionPatchRelationships {
49909
- /**
49910
- *
49911
- * @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
49912
- * @memberof JsonApiExportDefinitionPatchRelationships
49913
- */
49914
- visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
49915
- /**
49916
- *
49917
- * @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
49918
- * @memberof JsonApiExportDefinitionPatchRelationships
49919
- */
49920
- analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
49921
- }
49922
-
49923
50432
  export declare const JsonApiExportDefinitionPatchTypeEnum: {
49924
50433
  readonly EXPORT_DEFINITION: "exportDefinition";
49925
50434
  };
@@ -49946,16 +50455,54 @@ export declare interface JsonApiExportDefinitionPostOptionalId {
49946
50455
  id?: string;
49947
50456
  /**
49948
50457
  *
49949
- * @type {JsonApiExportDefinitionPatchAttributes}
50458
+ * @type {JsonApiExportDefinitionPostOptionalIdAttributes}
49950
50459
  * @memberof JsonApiExportDefinitionPostOptionalId
49951
50460
  */
49952
- attributes?: JsonApiExportDefinitionPatchAttributes;
50461
+ attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
49953
50462
  /**
49954
50463
  *
49955
- * @type {JsonApiExportDefinitionPatchRelationships}
50464
+ * @type {JsonApiExportDefinitionPostOptionalIdRelationships}
49956
50465
  * @memberof JsonApiExportDefinitionPostOptionalId
49957
50466
  */
49958
- relationships?: JsonApiExportDefinitionPatchRelationships;
50467
+ relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
50468
+ }
50469
+
50470
+ /**
50471
+ *
50472
+ * @export
50473
+ * @interface JsonApiExportDefinitionPostOptionalIdAttributes
50474
+ */
50475
+ export declare interface JsonApiExportDefinitionPostOptionalIdAttributes {
50476
+ /**
50477
+ *
50478
+ * @type {string}
50479
+ * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
50480
+ */
50481
+ title?: string;
50482
+ /**
50483
+ *
50484
+ * @type {string}
50485
+ * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
50486
+ */
50487
+ description?: string;
50488
+ /**
50489
+ *
50490
+ * @type {Array<string>}
50491
+ * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
50492
+ */
50493
+ tags?: Array<string>;
50494
+ /**
50495
+ * JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
50496
+ * @type {VisualExportRequest | TabularExportRequest}
50497
+ * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
50498
+ */
50499
+ requestPayload?: VisualExportRequest | TabularExportRequest;
50500
+ /**
50501
+ *
50502
+ * @type {boolean}
50503
+ * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
50504
+ */
50505
+ areRelationsValid?: boolean;
49959
50506
  }
49960
50507
 
49961
50508
  /**
@@ -49972,6 +50519,26 @@ export declare interface JsonApiExportDefinitionPostOptionalIdDocument {
49972
50519
  data: JsonApiExportDefinitionPostOptionalId;
49973
50520
  }
49974
50521
 
50522
+ /**
50523
+ *
50524
+ * @export
50525
+ * @interface JsonApiExportDefinitionPostOptionalIdRelationships
50526
+ */
50527
+ export declare interface JsonApiExportDefinitionPostOptionalIdRelationships {
50528
+ /**
50529
+ *
50530
+ * @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
50531
+ * @memberof JsonApiExportDefinitionPostOptionalIdRelationships
50532
+ */
50533
+ visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
50534
+ /**
50535
+ *
50536
+ * @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
50537
+ * @memberof JsonApiExportDefinitionPostOptionalIdRelationships
50538
+ */
50539
+ analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
50540
+ }
50541
+
49975
50542
  export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
49976
50543
  readonly EXPORT_DEFINITION: "exportDefinition";
49977
50544
  };
@@ -51016,10 +51583,10 @@ export declare interface JsonApiFilterViewIn {
51016
51583
  attributes: JsonApiFilterViewOutAttributes;
51017
51584
  /**
51018
51585
  *
51019
- * @type {JsonApiFilterViewPatchRelationships}
51586
+ * @type {JsonApiFilterViewOutRelationships}
51020
51587
  * @memberof JsonApiFilterViewIn
51021
51588
  */
51022
- relationships?: JsonApiFilterViewPatchRelationships;
51589
+ relationships?: JsonApiFilterViewOutRelationships;
51023
51590
  }
51024
51591
 
51025
51592
  /**
@@ -51068,10 +51635,10 @@ export declare interface JsonApiFilterViewOut {
51068
51635
  attributes: JsonApiFilterViewOutAttributes;
51069
51636
  /**
51070
51637
  *
51071
- * @type {JsonApiFilterViewPatchRelationships}
51638
+ * @type {JsonApiFilterViewOutRelationships}
51072
51639
  * @memberof JsonApiFilterViewOut
51073
51640
  */
51074
- relationships?: JsonApiFilterViewPatchRelationships;
51641
+ relationships?: JsonApiFilterViewOutRelationships;
51075
51642
  }
51076
51643
 
51077
51644
  /**
@@ -51182,6 +51749,26 @@ export declare interface JsonApiFilterViewOutList {
51182
51749
  included?: Array<JsonApiFilterViewOutIncludes>;
51183
51750
  }
51184
51751
 
51752
+ /**
51753
+ *
51754
+ * @export
51755
+ * @interface JsonApiFilterViewOutRelationships
51756
+ */
51757
+ export declare interface JsonApiFilterViewOutRelationships {
51758
+ /**
51759
+ *
51760
+ * @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
51761
+ * @memberof JsonApiFilterViewOutRelationships
51762
+ */
51763
+ analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
51764
+ /**
51765
+ *
51766
+ * @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
51767
+ * @memberof JsonApiFilterViewOutRelationships
51768
+ */
51769
+ user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
51770
+ }
51771
+
51185
51772
  export declare const JsonApiFilterViewOutTypeEnum: {
51186
51773
  readonly FILTER_VIEW: "filterView";
51187
51774
  };
@@ -51214,10 +51801,10 @@ export declare interface JsonApiFilterViewOutWithLinks {
51214
51801
  attributes: JsonApiFilterViewOutAttributes;
51215
51802
  /**
51216
51803
  *
51217
- * @type {JsonApiFilterViewPatchRelationships}
51804
+ * @type {JsonApiFilterViewOutRelationships}
51218
51805
  * @memberof JsonApiFilterViewOutWithLinks
51219
51806
  */
51220
- relationships?: JsonApiFilterViewPatchRelationships;
51807
+ relationships?: JsonApiFilterViewOutRelationships;
51221
51808
  /**
51222
51809
  *
51223
51810
  * @type {ObjectLinks}
@@ -51258,10 +51845,10 @@ export declare interface JsonApiFilterViewPatch {
51258
51845
  attributes: JsonApiFilterViewPatchAttributes;
51259
51846
  /**
51260
51847
  *
51261
- * @type {JsonApiFilterViewPatchRelationships}
51848
+ * @type {JsonApiFilterViewOutRelationships}
51262
51849
  * @memberof JsonApiFilterViewPatch
51263
51850
  */
51264
- relationships?: JsonApiFilterViewPatchRelationships;
51851
+ relationships?: JsonApiFilterViewOutRelationships;
51265
51852
  }
51266
51853
 
51267
51854
  /**
@@ -51322,40 +51909,6 @@ export declare interface JsonApiFilterViewPatchDocument {
51322
51909
  data: JsonApiFilterViewPatch;
51323
51910
  }
51324
51911
 
51325
- /**
51326
- *
51327
- * @export
51328
- * @interface JsonApiFilterViewPatchRelationships
51329
- */
51330
- export declare interface JsonApiFilterViewPatchRelationships {
51331
- /**
51332
- *
51333
- * @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
51334
- * @memberof JsonApiFilterViewPatchRelationships
51335
- */
51336
- analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
51337
- /**
51338
- *
51339
- * @type {JsonApiFilterViewPatchRelationshipsUser}
51340
- * @memberof JsonApiFilterViewPatchRelationships
51341
- */
51342
- user?: JsonApiFilterViewPatchRelationshipsUser;
51343
- }
51344
-
51345
- /**
51346
- *
51347
- * @export
51348
- * @interface JsonApiFilterViewPatchRelationshipsUser
51349
- */
51350
- export declare interface JsonApiFilterViewPatchRelationshipsUser {
51351
- /**
51352
- *
51353
- * @type {JsonApiUserToOneLinkage}
51354
- * @memberof JsonApiFilterViewPatchRelationshipsUser
51355
- */
51356
- data: JsonApiUserToOneLinkage | null;
51357
- }
51358
-
51359
51912
  export declare const JsonApiFilterViewPatchTypeEnum: {
51360
51913
  readonly FILTER_VIEW: "filterView";
51361
51914
  };
@@ -52289,12 +52842,6 @@ export declare interface JsonApiLlmEndpointInAttributes {
52289
52842
  * @memberof JsonApiLlmEndpointInAttributes
52290
52843
  */
52291
52844
  llmModel?: string;
52292
- /**
52293
- * List of workspace IDs for which LLM endpoint is valid. If empty, it is valid for all workspaces.
52294
- * @type {Array<string>}
52295
- * @memberof JsonApiLlmEndpointInAttributes
52296
- */
52297
- workspaceIds?: Array<string>;
52298
52845
  }
52299
52846
 
52300
52847
  export declare const JsonApiLlmEndpointInAttributesProviderEnum: {
@@ -52391,12 +52938,6 @@ export declare interface JsonApiLlmEndpointOutAttributes {
52391
52938
  * @memberof JsonApiLlmEndpointOutAttributes
52392
52939
  */
52393
52940
  llmModel?: string;
52394
- /**
52395
- * List of workspace IDs for which LLM endpoint is valid. If empty, it is valid for all workspaces.
52396
- * @type {Array<string>}
52397
- * @memberof JsonApiLlmEndpointOutAttributes
52398
- */
52399
- workspaceIds?: Array<string>;
52400
52941
  }
52401
52942
 
52402
52943
  export declare const JsonApiLlmEndpointOutAttributesProviderEnum: {
@@ -52569,12 +53110,6 @@ export declare interface JsonApiLlmEndpointPatchAttributes {
52569
53110
  * @memberof JsonApiLlmEndpointPatchAttributes
52570
53111
  */
52571
53112
  llmModel?: string;
52572
- /**
52573
- * List of workspace IDs for which LLM endpoint is valid. If empty, it is valid for all workspaces.
52574
- * @type {Array<string>}
52575
- * @memberof JsonApiLlmEndpointPatchAttributes
52576
- */
52577
- workspaceIds?: Array<string>;
52578
53113
  }
52579
53114
 
52580
53115
  export declare const JsonApiLlmEndpointPatchAttributesProviderEnum: {
@@ -53091,85 +53626,12 @@ export declare interface JsonApiNotificationChannelIn {
53091
53626
  id: string;
53092
53627
  /**
53093
53628
  *
53094
- * @type {JsonApiNotificationChannelInAttributes}
53629
+ * @type {JsonApiNotificationChannelPostOptionalIdAttributes}
53095
53630
  * @memberof JsonApiNotificationChannelIn
53096
53631
  */
53097
- attributes?: JsonApiNotificationChannelInAttributes;
53632
+ attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
53098
53633
  }
53099
53634
 
53100
- /**
53101
- *
53102
- * @export
53103
- * @interface JsonApiNotificationChannelInAttributes
53104
- */
53105
- export declare interface JsonApiNotificationChannelInAttributes {
53106
- /**
53107
- *
53108
- * @type {string}
53109
- * @memberof JsonApiNotificationChannelInAttributes
53110
- */
53111
- name?: string | null;
53112
- /**
53113
- *
53114
- * @type {string}
53115
- * @memberof JsonApiNotificationChannelInAttributes
53116
- */
53117
- description?: string | null;
53118
- /**
53119
- * The destination where the notifications are to be sent.
53120
- * @type {DefaultSmtp | InPlatform | Smtp | Webhook}
53121
- * @memberof JsonApiNotificationChannelInAttributes
53122
- */
53123
- destination?: DefaultSmtp | InPlatform | Smtp | Webhook;
53124
- /**
53125
- * Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are {workspaceId}, {dashboardId}.
53126
- * @type {string}
53127
- * @memberof JsonApiNotificationChannelInAttributes
53128
- */
53129
- customDashboardUrl?: string;
53130
- /**
53131
- * Dashboard link visibility in notifications. HIDDEN - the link will not be included INTERNAL_ONLY - only internal users will see the link ALL - all users will see the link
53132
- * @type {string}
53133
- * @memberof JsonApiNotificationChannelInAttributes
53134
- */
53135
- dashboardLinkVisibility?: JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum;
53136
- /**
53137
- * Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
53138
- * @type {string}
53139
- * @memberof JsonApiNotificationChannelInAttributes
53140
- */
53141
- allowedRecipients?: JsonApiNotificationChannelInAttributesAllowedRecipientsEnum;
53142
- /**
53143
- * In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications
53144
- * @type {string}
53145
- * @memberof JsonApiNotificationChannelInAttributes
53146
- */
53147
- inPlatformNotification?: JsonApiNotificationChannelInAttributesInPlatformNotificationEnum;
53148
- }
53149
-
53150
- export declare const JsonApiNotificationChannelInAttributesAllowedRecipientsEnum: {
53151
- readonly CREATOR: "CREATOR";
53152
- readonly INTERNAL: "INTERNAL";
53153
- readonly EXTERNAL: "EXTERNAL";
53154
- };
53155
-
53156
- export declare type JsonApiNotificationChannelInAttributesAllowedRecipientsEnum = typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum[keyof typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum];
53157
-
53158
- export declare const JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum: {
53159
- readonly HIDDEN: "HIDDEN";
53160
- readonly INTERNAL_ONLY: "INTERNAL_ONLY";
53161
- readonly ALL: "ALL";
53162
- };
53163
-
53164
- export declare type JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum = typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum[keyof typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum];
53165
-
53166
- export declare const JsonApiNotificationChannelInAttributesInPlatformNotificationEnum: {
53167
- readonly DISABLED: "DISABLED";
53168
- readonly ENABLED: "ENABLED";
53169
- };
53170
-
53171
- export declare type JsonApiNotificationChannelInAttributesInPlatformNotificationEnum = typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum[keyof typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum];
53172
-
53173
53635
  /**
53174
53636
  *
53175
53637
  * @export
@@ -53440,10 +53902,10 @@ export declare interface JsonApiNotificationChannelPatch {
53440
53902
  id: string;
53441
53903
  /**
53442
53904
  *
53443
- * @type {JsonApiNotificationChannelInAttributes}
53905
+ * @type {JsonApiNotificationChannelPostOptionalIdAttributes}
53444
53906
  * @memberof JsonApiNotificationChannelPatch
53445
53907
  */
53446
- attributes?: JsonApiNotificationChannelInAttributes;
53908
+ attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
53447
53909
  }
53448
53910
 
53449
53911
  /**
@@ -53486,12 +53948,85 @@ export declare interface JsonApiNotificationChannelPostOptionalId {
53486
53948
  id?: string;
53487
53949
  /**
53488
53950
  *
53489
- * @type {JsonApiNotificationChannelInAttributes}
53951
+ * @type {JsonApiNotificationChannelPostOptionalIdAttributes}
53490
53952
  * @memberof JsonApiNotificationChannelPostOptionalId
53491
53953
  */
53492
- attributes?: JsonApiNotificationChannelInAttributes;
53954
+ attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
53955
+ }
53956
+
53957
+ /**
53958
+ *
53959
+ * @export
53960
+ * @interface JsonApiNotificationChannelPostOptionalIdAttributes
53961
+ */
53962
+ export declare interface JsonApiNotificationChannelPostOptionalIdAttributes {
53963
+ /**
53964
+ *
53965
+ * @type {string}
53966
+ * @memberof JsonApiNotificationChannelPostOptionalIdAttributes
53967
+ */
53968
+ name?: string | null;
53969
+ /**
53970
+ *
53971
+ * @type {string}
53972
+ * @memberof JsonApiNotificationChannelPostOptionalIdAttributes
53973
+ */
53974
+ description?: string | null;
53975
+ /**
53976
+ * The destination where the notifications are to be sent.
53977
+ * @type {DefaultSmtp | InPlatform | Smtp | Webhook}
53978
+ * @memberof JsonApiNotificationChannelPostOptionalIdAttributes
53979
+ */
53980
+ destination?: DefaultSmtp | InPlatform | Smtp | Webhook;
53981
+ /**
53982
+ * Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are {workspaceId}, {dashboardId}.
53983
+ * @type {string}
53984
+ * @memberof JsonApiNotificationChannelPostOptionalIdAttributes
53985
+ */
53986
+ customDashboardUrl?: string;
53987
+ /**
53988
+ * Dashboard link visibility in notifications. HIDDEN - the link will not be included INTERNAL_ONLY - only internal users will see the link ALL - all users will see the link
53989
+ * @type {string}
53990
+ * @memberof JsonApiNotificationChannelPostOptionalIdAttributes
53991
+ */
53992
+ dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
53993
+ /**
53994
+ * Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
53995
+ * @type {string}
53996
+ * @memberof JsonApiNotificationChannelPostOptionalIdAttributes
53997
+ */
53998
+ allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
53999
+ /**
54000
+ * In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications
54001
+ * @type {string}
54002
+ * @memberof JsonApiNotificationChannelPostOptionalIdAttributes
54003
+ */
54004
+ inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
53493
54005
  }
53494
54006
 
54007
+ export declare const JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum: {
54008
+ readonly CREATOR: "CREATOR";
54009
+ readonly INTERNAL: "INTERNAL";
54010
+ readonly EXTERNAL: "EXTERNAL";
54011
+ };
54012
+
54013
+ export declare type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum];
54014
+
54015
+ export declare const JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum: {
54016
+ readonly HIDDEN: "HIDDEN";
54017
+ readonly INTERNAL_ONLY: "INTERNAL_ONLY";
54018
+ readonly ALL: "ALL";
54019
+ };
54020
+
54021
+ export declare type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum];
54022
+
54023
+ export declare const JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum: {
54024
+ readonly DISABLED: "DISABLED";
54025
+ readonly ENABLED: "ENABLED";
54026
+ };
54027
+
54028
+ export declare type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum];
54029
+
53495
54030
  /**
53496
54031
  *
53497
54032
  * @export
@@ -53539,93 +54074,10 @@ export declare interface JsonApiOrganizationIn {
53539
54074
  id: string;
53540
54075
  /**
53541
54076
  *
53542
- * @type {JsonApiOrganizationInAttributes}
54077
+ * @type {JsonApiOrganizationPatchAttributes}
53543
54078
  * @memberof JsonApiOrganizationIn
53544
54079
  */
53545
- attributes?: JsonApiOrganizationInAttributes;
53546
- }
53547
-
53548
- /**
53549
- *
53550
- * @export
53551
- * @interface JsonApiOrganizationInAttributes
53552
- */
53553
- export declare interface JsonApiOrganizationInAttributes {
53554
- /**
53555
- *
53556
- * @type {string}
53557
- * @memberof JsonApiOrganizationInAttributes
53558
- */
53559
- name?: string | null;
53560
- /**
53561
- *
53562
- * @type {string}
53563
- * @memberof JsonApiOrganizationInAttributes
53564
- */
53565
- hostname?: string;
53566
- /**
53567
- *
53568
- * @type {Array<string>}
53569
- * @memberof JsonApiOrganizationInAttributes
53570
- */
53571
- allowedOrigins?: Array<string>;
53572
- /**
53573
- *
53574
- * @type {string}
53575
- * @memberof JsonApiOrganizationInAttributes
53576
- */
53577
- oauthIssuerLocation?: string;
53578
- /**
53579
- *
53580
- * @type {string}
53581
- * @memberof JsonApiOrganizationInAttributes
53582
- */
53583
- oauthClientId?: string;
53584
- /**
53585
- *
53586
- * @type {string}
53587
- * @memberof JsonApiOrganizationInAttributes
53588
- */
53589
- oauthClientSecret?: string;
53590
- /**
53591
- * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
53592
- * @type {string}
53593
- * @memberof JsonApiOrganizationInAttributes
53594
- * @deprecated
53595
- */
53596
- earlyAccess?: string | null;
53597
- /**
53598
- * The early access feature identifiers. They are used to enable experimental features.
53599
- * @type {Array<string>}
53600
- * @memberof JsonApiOrganizationInAttributes
53601
- */
53602
- earlyAccessValues?: Array<string> | null;
53603
- /**
53604
- * Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
53605
- * @type {string}
53606
- * @memberof JsonApiOrganizationInAttributes
53607
- */
53608
- oauthIssuerId?: string;
53609
- /**
53610
- * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
53611
- * @type {string}
53612
- * @memberof JsonApiOrganizationInAttributes
53613
- */
53614
- oauthSubjectIdClaim?: string;
53615
- /**
53616
- * Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
53617
- * @type {{ [key: string]: string; }}
53618
- * @memberof JsonApiOrganizationInAttributes
53619
- */
53620
- oauthCustomAuthAttributes?: {
53621
- [key: string]: string;
53622
- };
53623
- /**
53624
- * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
53625
- * @type {Array<string>}
53626
- * @memberof JsonApiOrganizationInAttributes
53627
- */
53628
- oauthCustomScopes?: Array<string> | null;
54080
+ attributes?: JsonApiOrganizationPatchAttributes;
53629
54081
  }
53630
54082
 
53631
54083
  /**
@@ -53857,16 +54309,44 @@ export declare type JsonApiOrganizationOutMetaPermissionsEnum = typeof JsonApiOr
53857
54309
  export declare interface JsonApiOrganizationOutRelationships {
53858
54310
  /**
53859
54311
  *
53860
- * @type {JsonApiFilterViewPatchRelationshipsUser}
54312
+ * @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
53861
54313
  * @memberof JsonApiOrganizationOutRelationships
53862
54314
  */
53863
- bootstrapUser?: JsonApiFilterViewPatchRelationshipsUser;
54315
+ bootstrapUser?: JsonApiOrganizationOutRelationshipsBootstrapUser;
53864
54316
  /**
53865
54317
  *
53866
- * @type {JsonApiUserDataFilterPatchRelationshipsUserGroup}
54318
+ * @type {JsonApiOrganizationOutRelationshipsBootstrapUserGroup}
53867
54319
  * @memberof JsonApiOrganizationOutRelationships
53868
54320
  */
53869
- bootstrapUserGroup?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
54321
+ bootstrapUserGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
54322
+ }
54323
+
54324
+ /**
54325
+ *
54326
+ * @export
54327
+ * @interface JsonApiOrganizationOutRelationshipsBootstrapUser
54328
+ */
54329
+ export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
54330
+ /**
54331
+ *
54332
+ * @type {JsonApiUserToOneLinkage}
54333
+ * @memberof JsonApiOrganizationOutRelationshipsBootstrapUser
54334
+ */
54335
+ data: JsonApiUserToOneLinkage | null;
54336
+ }
54337
+
54338
+ /**
54339
+ *
54340
+ * @export
54341
+ * @interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup
54342
+ */
54343
+ export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
54344
+ /**
54345
+ *
54346
+ * @type {JsonApiUserGroupToOneLinkage}
54347
+ * @memberof JsonApiOrganizationOutRelationshipsBootstrapUserGroup
54348
+ */
54349
+ data: JsonApiUserGroupToOneLinkage | null;
53870
54350
  }
53871
54351
 
53872
54352
  export declare const JsonApiOrganizationOutTypeEnum: {
@@ -53895,10 +54375,93 @@ export declare interface JsonApiOrganizationPatch {
53895
54375
  id: string;
53896
54376
  /**
53897
54377
  *
53898
- * @type {JsonApiOrganizationInAttributes}
54378
+ * @type {JsonApiOrganizationPatchAttributes}
53899
54379
  * @memberof JsonApiOrganizationPatch
53900
54380
  */
53901
- attributes?: JsonApiOrganizationInAttributes;
54381
+ attributes?: JsonApiOrganizationPatchAttributes;
54382
+ }
54383
+
54384
+ /**
54385
+ *
54386
+ * @export
54387
+ * @interface JsonApiOrganizationPatchAttributes
54388
+ */
54389
+ export declare interface JsonApiOrganizationPatchAttributes {
54390
+ /**
54391
+ *
54392
+ * @type {string}
54393
+ * @memberof JsonApiOrganizationPatchAttributes
54394
+ */
54395
+ name?: string | null;
54396
+ /**
54397
+ *
54398
+ * @type {string}
54399
+ * @memberof JsonApiOrganizationPatchAttributes
54400
+ */
54401
+ hostname?: string;
54402
+ /**
54403
+ *
54404
+ * @type {Array<string>}
54405
+ * @memberof JsonApiOrganizationPatchAttributes
54406
+ */
54407
+ allowedOrigins?: Array<string>;
54408
+ /**
54409
+ *
54410
+ * @type {string}
54411
+ * @memberof JsonApiOrganizationPatchAttributes
54412
+ */
54413
+ oauthIssuerLocation?: string;
54414
+ /**
54415
+ *
54416
+ * @type {string}
54417
+ * @memberof JsonApiOrganizationPatchAttributes
54418
+ */
54419
+ oauthClientId?: string;
54420
+ /**
54421
+ *
54422
+ * @type {string}
54423
+ * @memberof JsonApiOrganizationPatchAttributes
54424
+ */
54425
+ oauthClientSecret?: string;
54426
+ /**
54427
+ * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
54428
+ * @type {string}
54429
+ * @memberof JsonApiOrganizationPatchAttributes
54430
+ * @deprecated
54431
+ */
54432
+ earlyAccess?: string | null;
54433
+ /**
54434
+ * The early access feature identifiers. They are used to enable experimental features.
54435
+ * @type {Array<string>}
54436
+ * @memberof JsonApiOrganizationPatchAttributes
54437
+ */
54438
+ earlyAccessValues?: Array<string> | null;
54439
+ /**
54440
+ * Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
54441
+ * @type {string}
54442
+ * @memberof JsonApiOrganizationPatchAttributes
54443
+ */
54444
+ oauthIssuerId?: string;
54445
+ /**
54446
+ * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
54447
+ * @type {string}
54448
+ * @memberof JsonApiOrganizationPatchAttributes
54449
+ */
54450
+ oauthSubjectIdClaim?: string;
54451
+ /**
54452
+ * Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
54453
+ * @type {{ [key: string]: string; }}
54454
+ * @memberof JsonApiOrganizationPatchAttributes
54455
+ */
54456
+ oauthCustomAuthAttributes?: {
54457
+ [key: string]: string;
54458
+ };
54459
+ /**
54460
+ * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
54461
+ * @type {Array<string>}
54462
+ * @memberof JsonApiOrganizationPatchAttributes
54463
+ */
54464
+ oauthCustomScopes?: Array<string> | null;
53902
54465
  }
53903
54466
 
53904
54467
  /**
@@ -54363,10 +54926,10 @@ export declare interface JsonApiUserDataFilterIn {
54363
54926
  attributes: JsonApiUserDataFilterOutAttributes;
54364
54927
  /**
54365
54928
  *
54366
- * @type {JsonApiUserDataFilterPatchRelationships}
54929
+ * @type {JsonApiUserDataFilterPostOptionalIdRelationships}
54367
54930
  * @memberof JsonApiUserDataFilterIn
54368
54931
  */
54369
- relationships?: JsonApiUserDataFilterPatchRelationships;
54932
+ relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
54370
54933
  }
54371
54934
 
54372
54935
  /**
@@ -54537,16 +55100,16 @@ export declare interface JsonApiUserDataFilterOutList {
54537
55100
  export declare interface JsonApiUserDataFilterOutRelationships {
54538
55101
  /**
54539
55102
  *
54540
- * @type {JsonApiFilterViewPatchRelationshipsUser}
55103
+ * @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
54541
55104
  * @memberof JsonApiUserDataFilterOutRelationships
54542
55105
  */
54543
- user?: JsonApiFilterViewPatchRelationshipsUser;
55106
+ user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
54544
55107
  /**
54545
55108
  *
54546
- * @type {JsonApiUserDataFilterPatchRelationshipsUserGroup}
55109
+ * @type {JsonApiOrganizationOutRelationshipsBootstrapUserGroup}
54547
55110
  * @memberof JsonApiUserDataFilterOutRelationships
54548
55111
  */
54549
- userGroup?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
55112
+ userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
54550
55113
  /**
54551
55114
  *
54552
55115
  * @type {JsonApiVisualizationObjectOutRelationshipsFacts}
@@ -54661,10 +55224,10 @@ export declare interface JsonApiUserDataFilterPatch {
54661
55224
  attributes: JsonApiUserDataFilterPatchAttributes;
54662
55225
  /**
54663
55226
  *
54664
- * @type {JsonApiUserDataFilterPatchRelationships}
55227
+ * @type {JsonApiUserDataFilterPostOptionalIdRelationships}
54665
55228
  * @memberof JsonApiUserDataFilterPatch
54666
55229
  */
54667
- relationships?: JsonApiUserDataFilterPatchRelationships;
55230
+ relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
54668
55231
  }
54669
55232
 
54670
55233
  /**
@@ -54719,40 +55282,6 @@ export declare interface JsonApiUserDataFilterPatchDocument {
54719
55282
  data: JsonApiUserDataFilterPatch;
54720
55283
  }
54721
55284
 
54722
- /**
54723
- *
54724
- * @export
54725
- * @interface JsonApiUserDataFilterPatchRelationships
54726
- */
54727
- export declare interface JsonApiUserDataFilterPatchRelationships {
54728
- /**
54729
- *
54730
- * @type {JsonApiFilterViewPatchRelationshipsUser}
54731
- * @memberof JsonApiUserDataFilterPatchRelationships
54732
- */
54733
- user?: JsonApiFilterViewPatchRelationshipsUser;
54734
- /**
54735
- *
54736
- * @type {JsonApiUserDataFilterPatchRelationshipsUserGroup}
54737
- * @memberof JsonApiUserDataFilterPatchRelationships
54738
- */
54739
- userGroup?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
54740
- }
54741
-
54742
- /**
54743
- *
54744
- * @export
54745
- * @interface JsonApiUserDataFilterPatchRelationshipsUserGroup
54746
- */
54747
- export declare interface JsonApiUserDataFilterPatchRelationshipsUserGroup {
54748
- /**
54749
- *
54750
- * @type {JsonApiUserGroupToOneLinkage}
54751
- * @memberof JsonApiUserDataFilterPatchRelationshipsUserGroup
54752
- */
54753
- data: JsonApiUserGroupToOneLinkage | null;
54754
- }
54755
-
54756
55285
  export declare const JsonApiUserDataFilterPatchTypeEnum: {
54757
55286
  readonly USER_DATA_FILTER: "userDataFilter";
54758
55287
  };
@@ -54785,10 +55314,10 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
54785
55314
  attributes: JsonApiUserDataFilterOutAttributes;
54786
55315
  /**
54787
55316
  *
54788
- * @type {JsonApiUserDataFilterPatchRelationships}
55317
+ * @type {JsonApiUserDataFilterPostOptionalIdRelationships}
54789
55318
  * @memberof JsonApiUserDataFilterPostOptionalId
54790
55319
  */
54791
- relationships?: JsonApiUserDataFilterPatchRelationships;
55320
+ relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
54792
55321
  }
54793
55322
 
54794
55323
  /**
@@ -54805,6 +55334,26 @@ export declare interface JsonApiUserDataFilterPostOptionalIdDocument {
54805
55334
  data: JsonApiUserDataFilterPostOptionalId;
54806
55335
  }
54807
55336
 
55337
+ /**
55338
+ *
55339
+ * @export
55340
+ * @interface JsonApiUserDataFilterPostOptionalIdRelationships
55341
+ */
55342
+ export declare interface JsonApiUserDataFilterPostOptionalIdRelationships {
55343
+ /**
55344
+ *
55345
+ * @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
55346
+ * @memberof JsonApiUserDataFilterPostOptionalIdRelationships
55347
+ */
55348
+ user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
55349
+ /**
55350
+ *
55351
+ * @type {JsonApiOrganizationOutRelationshipsBootstrapUserGroup}
55352
+ * @memberof JsonApiUserDataFilterPostOptionalIdRelationships
55353
+ */
55354
+ userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
55355
+ }
55356
+
54808
55357
  export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
54809
55358
  readonly USER_DATA_FILTER: "userDataFilter";
54810
55359
  };
@@ -55717,6 +56266,7 @@ export declare const JsonApiUserSettingOutAttributesTypeEnum: {
55717
56266
  readonly TIMEZONE: "TIMEZONE";
55718
56267
  readonly ACTIVE_THEME: "ACTIVE_THEME";
55719
56268
  readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
56269
+ readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
55720
56270
  readonly WHITE_LABELING: "WHITE_LABELING";
55721
56271
  readonly LOCALE: "LOCALE";
55722
56272
  readonly METADATA_LOCALE: "METADATA_LOCALE";
@@ -55734,6 +56284,7 @@ export declare const JsonApiUserSettingOutAttributesTypeEnum: {
55734
56284
  readonly JIT_PROVISIONING: "JIT_PROVISIONING";
55735
56285
  readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
55736
56286
  readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
56287
+ readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
55737
56288
  };
55738
56289
 
55739
56290
  export declare type JsonApiUserSettingOutAttributesTypeEnum = typeof JsonApiUserSettingOutAttributesTypeEnum[keyof typeof JsonApiUserSettingOutAttributesTypeEnum];
@@ -56739,16 +57290,16 @@ export declare interface JsonApiWorkspaceDataFilterSettingIn {
56739
57290
  id: string;
56740
57291
  /**
56741
57292
  *
56742
- * @type {JsonApiWorkspaceDataFilterSettingPatchAttributes}
57293
+ * @type {JsonApiWorkspaceDataFilterSettingOutAttributes}
56743
57294
  * @memberof JsonApiWorkspaceDataFilterSettingIn
56744
57295
  */
56745
- attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
57296
+ attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
56746
57297
  /**
56747
57298
  *
56748
- * @type {JsonApiWorkspaceDataFilterSettingPatchRelationships}
57299
+ * @type {JsonApiWorkspaceDataFilterSettingOutRelationships}
56749
57300
  * @memberof JsonApiWorkspaceDataFilterSettingIn
56750
57301
  */
56751
- relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
57302
+ relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
56752
57303
  }
56753
57304
 
56754
57305
  /**
@@ -56823,16 +57374,42 @@ export declare interface JsonApiWorkspaceDataFilterSettingOut {
56823
57374
  meta?: JsonApiVisualizationObjectOutMeta;
56824
57375
  /**
56825
57376
  *
56826
- * @type {JsonApiWorkspaceDataFilterSettingPatchAttributes}
57377
+ * @type {JsonApiWorkspaceDataFilterSettingOutAttributes}
56827
57378
  * @memberof JsonApiWorkspaceDataFilterSettingOut
56828
57379
  */
56829
- attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
57380
+ attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
56830
57381
  /**
56831
57382
  *
56832
- * @type {JsonApiWorkspaceDataFilterSettingPatchRelationships}
57383
+ * @type {JsonApiWorkspaceDataFilterSettingOutRelationships}
56833
57384
  * @memberof JsonApiWorkspaceDataFilterSettingOut
56834
57385
  */
56835
- relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
57386
+ relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
57387
+ }
57388
+
57389
+ /**
57390
+ *
57391
+ * @export
57392
+ * @interface JsonApiWorkspaceDataFilterSettingOutAttributes
57393
+ */
57394
+ export declare interface JsonApiWorkspaceDataFilterSettingOutAttributes {
57395
+ /**
57396
+ *
57397
+ * @type {string}
57398
+ * @memberof JsonApiWorkspaceDataFilterSettingOutAttributes
57399
+ */
57400
+ title?: string;
57401
+ /**
57402
+ *
57403
+ * @type {string}
57404
+ * @memberof JsonApiWorkspaceDataFilterSettingOutAttributes
57405
+ */
57406
+ description?: string;
57407
+ /**
57408
+ *
57409
+ * @type {Array<string>}
57410
+ * @memberof JsonApiWorkspaceDataFilterSettingOutAttributes
57411
+ */
57412
+ filterValues?: Array<string>;
56836
57413
  }
56837
57414
 
56838
57415
  /**
@@ -56893,6 +57470,34 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutList {
56893
57470
  included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
56894
57471
  }
56895
57472
 
57473
+ /**
57474
+ *
57475
+ * @export
57476
+ * @interface JsonApiWorkspaceDataFilterSettingOutRelationships
57477
+ */
57478
+ export declare interface JsonApiWorkspaceDataFilterSettingOutRelationships {
57479
+ /**
57480
+ *
57481
+ * @type {JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter}
57482
+ * @memberof JsonApiWorkspaceDataFilterSettingOutRelationships
57483
+ */
57484
+ workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
57485
+ }
57486
+
57487
+ /**
57488
+ *
57489
+ * @export
57490
+ * @interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter
57491
+ */
57492
+ export declare interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
57493
+ /**
57494
+ *
57495
+ * @type {JsonApiWorkspaceDataFilterToOneLinkage}
57496
+ * @memberof JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter
57497
+ */
57498
+ data: JsonApiWorkspaceDataFilterToOneLinkage | null;
57499
+ }
57500
+
56896
57501
  export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
56897
57502
  readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
56898
57503
  };
@@ -56925,16 +57530,16 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
56925
57530
  meta?: JsonApiVisualizationObjectOutMeta;
56926
57531
  /**
56927
57532
  *
56928
- * @type {JsonApiWorkspaceDataFilterSettingPatchAttributes}
57533
+ * @type {JsonApiWorkspaceDataFilterSettingOutAttributes}
56929
57534
  * @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
56930
57535
  */
56931
- attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
57536
+ attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
56932
57537
  /**
56933
57538
  *
56934
- * @type {JsonApiWorkspaceDataFilterSettingPatchRelationships}
57539
+ * @type {JsonApiWorkspaceDataFilterSettingOutRelationships}
56935
57540
  * @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
56936
57541
  */
56937
- relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
57542
+ relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
56938
57543
  /**
56939
57544
  *
56940
57545
  * @type {ObjectLinks}
@@ -56969,42 +57574,16 @@ export declare interface JsonApiWorkspaceDataFilterSettingPatch {
56969
57574
  id: string;
56970
57575
  /**
56971
57576
  *
56972
- * @type {JsonApiWorkspaceDataFilterSettingPatchAttributes}
57577
+ * @type {JsonApiWorkspaceDataFilterSettingOutAttributes}
56973
57578
  * @memberof JsonApiWorkspaceDataFilterSettingPatch
56974
57579
  */
56975
- attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
57580
+ attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
56976
57581
  /**
56977
57582
  *
56978
- * @type {JsonApiWorkspaceDataFilterSettingPatchRelationships}
57583
+ * @type {JsonApiWorkspaceDataFilterSettingOutRelationships}
56979
57584
  * @memberof JsonApiWorkspaceDataFilterSettingPatch
56980
57585
  */
56981
- relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
56982
- }
56983
-
56984
- /**
56985
- *
56986
- * @export
56987
- * @interface JsonApiWorkspaceDataFilterSettingPatchAttributes
56988
- */
56989
- export declare interface JsonApiWorkspaceDataFilterSettingPatchAttributes {
56990
- /**
56991
- *
56992
- * @type {string}
56993
- * @memberof JsonApiWorkspaceDataFilterSettingPatchAttributes
56994
- */
56995
- title?: string;
56996
- /**
56997
- *
56998
- * @type {string}
56999
- * @memberof JsonApiWorkspaceDataFilterSettingPatchAttributes
57000
- */
57001
- description?: string;
57002
- /**
57003
- *
57004
- * @type {Array<string>}
57005
- * @memberof JsonApiWorkspaceDataFilterSettingPatchAttributes
57006
- */
57007
- filterValues?: Array<string>;
57586
+ relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
57008
57587
  }
57009
57588
 
57010
57589
  /**
@@ -57021,34 +57600,6 @@ export declare interface JsonApiWorkspaceDataFilterSettingPatchDocument {
57021
57600
  data: JsonApiWorkspaceDataFilterSettingPatch;
57022
57601
  }
57023
57602
 
57024
- /**
57025
- *
57026
- * @export
57027
- * @interface JsonApiWorkspaceDataFilterSettingPatchRelationships
57028
- */
57029
- export declare interface JsonApiWorkspaceDataFilterSettingPatchRelationships {
57030
- /**
57031
- *
57032
- * @type {JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter}
57033
- * @memberof JsonApiWorkspaceDataFilterSettingPatchRelationships
57034
- */
57035
- workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter;
57036
- }
57037
-
57038
- /**
57039
- *
57040
- * @export
57041
- * @interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter
57042
- */
57043
- export declare interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter {
57044
- /**
57045
- *
57046
- * @type {JsonApiWorkspaceDataFilterToOneLinkage}
57047
- * @memberof JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter
57048
- */
57049
- data: JsonApiWorkspaceDataFilterToOneLinkage | null;
57050
- }
57051
-
57052
57603
  export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
57053
57604
  readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
57054
57605
  };
@@ -62277,6 +62828,7 @@ export declare type MetadataGetEntitiesFn<T extends MetadataGetEntitiesResult, P
62277
62828
  */
62278
62829
  export declare type MetadataGetEntitiesOptions = {
62279
62830
  headers?: object;
62831
+ signal?: GenericAbortSignal;
62280
62832
  params?: {
62281
62833
  page?: number;
62282
62834
  size?: number;
@@ -72114,6 +72666,20 @@ export declare class OrganizationUtilities {
72114
72666
  static mergeEntitiesResults<T extends OrganizationGetEntitiesResult>(pages: T[]): T;
72115
72667
  }
72116
72668
 
72669
+ /**
72670
+ *
72671
+ * @export
72672
+ * @interface Over
72673
+ */
72674
+ export declare interface Over {
72675
+ /**
72676
+ *
72677
+ * @type {Array<IdentifierRef>}
72678
+ * @memberof Over
72679
+ */
72680
+ attributes: Array<IdentifierRef>;
72681
+ }
72682
+
72117
72683
  /**
72118
72684
  *
72119
72685
  * @export
@@ -74762,6 +75328,7 @@ export declare const ResolvedSettingTypeEnum: {
74762
75328
  readonly TIMEZONE: "TIMEZONE";
74763
75329
  readonly ACTIVE_THEME: "ACTIVE_THEME";
74764
75330
  readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
75331
+ readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
74765
75332
  readonly WHITE_LABELING: "WHITE_LABELING";
74766
75333
  readonly LOCALE: "LOCALE";
74767
75334
  readonly METADATA_LOCALE: "METADATA_LOCALE";
@@ -74779,6 +75346,7 @@ export declare const ResolvedSettingTypeEnum: {
74779
75346
  readonly JIT_PROVISIONING: "JIT_PROVISIONING";
74780
75347
  readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
74781
75348
  readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
75349
+ readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
74782
75350
  };
74783
75351
 
74784
75352
  export declare type ResolvedSettingTypeEnum = typeof ResolvedSettingTypeEnum[keyof typeof ResolvedSettingTypeEnum];
@@ -81585,6 +82153,12 @@ export declare interface VisibleFilter {
81585
82153
  * @memberof VisibleFilter
81586
82154
  */
81587
82155
  title?: string;
82156
+ /**
82157
+ * Indicates if the filter is an all-time date filter. Such a filter is not included in report computation, so there is no filter with the same \'localIdentifier\' to be found. In such cases, this flag is used to inform the server to not search for the filter in the definitions and include it anyways.
82158
+ * @type {boolean}
82159
+ * @memberof VisibleFilter
82160
+ */
82161
+ isAllTimeDateFilter?: boolean;
81588
82162
  }
81589
82163
 
81590
82164
  /**