@gooddata/api-client-tiger 10.38.0-alpha.2 → 10.39.0-alpha.1

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 (35) hide show
  1. package/esm/__version.d.ts +1 -1
  2. package/esm/__version.js +1 -1
  3. package/esm/api-client-tiger.d.ts +1393 -730
  4. package/esm/generated/afm-rest-api/api.d.ts +16 -0
  5. package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
  6. package/esm/generated/afm-rest-api/api.js +9 -0
  7. package/esm/generated/afm-rest-api/api.js.map +1 -1
  8. package/esm/generated/afm-rest-api/openapi-spec.json +13 -0
  9. package/esm/generated/automation-json-api/api.d.ts +58 -0
  10. package/esm/generated/automation-json-api/api.d.ts.map +1 -1
  11. package/esm/generated/automation-json-api/api.js +26 -0
  12. package/esm/generated/automation-json-api/api.js.map +1 -1
  13. package/esm/generated/automation-json-api/openapi-spec.json +46 -0
  14. package/esm/generated/export-json-api/api.d.ts +58 -0
  15. package/esm/generated/export-json-api/api.d.ts.map +1 -1
  16. package/esm/generated/export-json-api/api.js +26 -0
  17. package/esm/generated/export-json-api/api.js.map +1 -1
  18. package/esm/generated/export-json-api/openapi-spec.json +46 -0
  19. package/esm/generated/metadata-json-api/api.d.ts +1212 -713
  20. package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
  21. package/esm/generated/metadata-json-api/api.js +424 -57
  22. package/esm/generated/metadata-json-api/api.js.map +1 -1
  23. package/esm/generated/metadata-json-api/openapi-spec.json +4558 -4311
  24. package/esm/generated/scan-json-api/api.d.ts +1 -0
  25. package/esm/generated/scan-json-api/api.d.ts.map +1 -1
  26. package/esm/generated/scan-json-api/api.js +1 -0
  27. package/esm/generated/scan-json-api/api.js.map +1 -1
  28. package/esm/generated/scan-json-api/configuration.d.ts.map +1 -1
  29. package/esm/generated/scan-json-api/configuration.js +2 -14
  30. package/esm/generated/scan-json-api/configuration.js.map +1 -1
  31. package/esm/generated/scan-json-api/openapi-spec.json +2 -1
  32. package/esm/index.d.ts +1 -1
  33. package/esm/index.d.ts.map +1 -1
  34. package/esm/index.js.map +1 -1
  35. package/package.json +3 -3
@@ -133,6 +133,15 @@ export declare class ActionsApi extends MetadataBaseApi implements ActionsApiInt
133
133
  * @memberof ActionsApi
134
134
  */
135
135
  dashboardPermissions(requestParameters: ActionsApiDashboardPermissionsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<DashboardPermissions, any>>;
136
+ /**
137
+ *
138
+ * @summary Delete selected automations in the workspace
139
+ * @param {ActionsApiDeleteWorkspaceAutomationsRequest} requestParameters Request parameters.
140
+ * @param {*} [options] Override http request option.
141
+ * @throws {RequiredError}
142
+ * @memberof ActionsApi
143
+ */
144
+ deleteWorkspaceAutomations(requestParameters: ActionsApiDeleteWorkspaceAutomationsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<void, any>>;
136
145
  /**
137
146
  * Generate logical data model (LDM) from physical data model (PDM) stored in data source.
138
147
  * @summary Generate logical data model (LDM) from physical data model (PDM)
@@ -361,6 +370,15 @@ export declare class ActionsApi extends MetadataBaseApi implements ActionsApiInt
361
370
  * @memberof ActionsApi
362
371
  */
363
372
  unsubscribeAutomation(requestParameters: ActionsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<void, any>>;
373
+ /**
374
+ *
375
+ * @summary Unsubscribe from selected automations in the workspace
376
+ * @param {ActionsApiUnsubscribeSelectedWorkspaceAutomationsRequest} requestParameters Request parameters.
377
+ * @param {*} [options] Override http request option.
378
+ * @throws {RequiredError}
379
+ * @memberof ActionsApi
380
+ */
381
+ unsubscribeSelectedWorkspaceAutomations(requestParameters: ActionsApiUnsubscribeSelectedWorkspaceAutomationsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<void, any>>;
364
382
  /**
365
383
  *
366
384
  * @summary Unsubscribe from all automations in the workspace
@@ -630,6 +648,15 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: MetadataConfi
630
648
  * @throws {RequiredError}
631
649
  */
632
650
  dashboardPermissions: (workspaceId: string, dashboardId: string, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
651
+ /**
652
+ *
653
+ * @summary Delete selected automations in the workspace
654
+ * @param {string} workspaceId
655
+ * @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
656
+ * @param {*} [options] Override http request option.
657
+ * @throws {RequiredError}
658
+ */
659
+ deleteWorkspaceAutomations: (workspaceId: string, workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
633
660
  /**
634
661
  * Generate logical data model (LDM) from physical data model (PDM) stored in data source.
635
662
  * @summary Generate logical data model (LDM) from physical data model (PDM)
@@ -847,6 +874,15 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: MetadataConfi
847
874
  * @throws {RequiredError}
848
875
  */
849
876
  unsubscribeAutomation: (workspaceId: string, automationId: string, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
877
+ /**
878
+ *
879
+ * @summary Unsubscribe from selected automations in the workspace
880
+ * @param {string} workspaceId
881
+ * @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
882
+ * @param {*} [options] Override http request option.
883
+ * @throws {RequiredError}
884
+ */
885
+ unsubscribeSelectedWorkspaceAutomations: (workspaceId: string, workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
850
886
  /**
851
887
  *
852
888
  * @summary Unsubscribe from all automations in the workspace
@@ -1168,6 +1204,26 @@ export declare interface ActionsApiDeleteFilesRequest {
1168
1204
  readonly deleteFilesRequest: DeleteFilesRequest;
1169
1205
  }
1170
1206
 
1207
+ /**
1208
+ * Request parameters for deleteWorkspaceAutomations operation in ActionsApi.
1209
+ * @export
1210
+ * @interface ActionsApiDeleteWorkspaceAutomationsRequest
1211
+ */
1212
+ export declare interface ActionsApiDeleteWorkspaceAutomationsRequest {
1213
+ /**
1214
+ *
1215
+ * @type {string}
1216
+ * @memberof ActionsApiDeleteWorkspaceAutomations
1217
+ */
1218
+ readonly workspaceId: string;
1219
+ /**
1220
+ *
1221
+ * @type {WorkspaceAutomationManagementBulkRequest}
1222
+ * @memberof ActionsApiDeleteWorkspaceAutomations
1223
+ */
1224
+ readonly workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest;
1225
+ }
1226
+
1171
1227
  /**
1172
1228
  * Request parameters for explainAFM operation in ActionsApi.
1173
1229
  * @export
@@ -1238,6 +1294,14 @@ export declare const ActionsApiFactory: (configuration?: MetadataConfiguration,
1238
1294
  * @throws {RequiredError}
1239
1295
  */
1240
1296
  dashboardPermissions(requestParameters: ActionsApiDashboardPermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<DashboardPermissions>;
1297
+ /**
1298
+ *
1299
+ * @summary Delete selected automations in the workspace
1300
+ * @param {ActionsApiDeleteWorkspaceAutomationsRequest} requestParameters Request parameters.
1301
+ * @param {*} [options] Override http request option.
1302
+ * @throws {RequiredError}
1303
+ */
1304
+ deleteWorkspaceAutomations(requestParameters: ActionsApiDeleteWorkspaceAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
1241
1305
  /**
1242
1306
  * Generate logical data model (LDM) from physical data model (PDM) stored in data source.
1243
1307
  * @summary Generate logical data model (LDM) from physical data model (PDM)
@@ -1440,6 +1504,14 @@ export declare const ActionsApiFactory: (configuration?: MetadataConfiguration,
1440
1504
  * @throws {RequiredError}
1441
1505
  */
1442
1506
  unsubscribeAutomation(requestParameters: ActionsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
1507
+ /**
1508
+ *
1509
+ * @summary Unsubscribe from selected automations in the workspace
1510
+ * @param {ActionsApiUnsubscribeSelectedWorkspaceAutomationsRequest} requestParameters Request parameters.
1511
+ * @param {*} [options] Override http request option.
1512
+ * @throws {RequiredError}
1513
+ */
1514
+ unsubscribeSelectedWorkspaceAutomations(requestParameters: ActionsApiUnsubscribeSelectedWorkspaceAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
1443
1515
  /**
1444
1516
  *
1445
1517
  * @summary Unsubscribe from all automations in the workspace
@@ -1578,6 +1650,15 @@ export declare const ActionsApiFp: (configuration?: MetadataConfiguration) => {
1578
1650
  * @throws {RequiredError}
1579
1651
  */
1580
1652
  dashboardPermissions(workspaceId: string, dashboardId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DashboardPermissions>>;
1653
+ /**
1654
+ *
1655
+ * @summary Delete selected automations in the workspace
1656
+ * @param {string} workspaceId
1657
+ * @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
1658
+ * @param {*} [options] Override http request option.
1659
+ * @throws {RequiredError}
1660
+ */
1661
+ deleteWorkspaceAutomations(workspaceId: string, workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1581
1662
  /**
1582
1663
  * Generate logical data model (LDM) from physical data model (PDM) stored in data source.
1583
1664
  * @summary Generate logical data model (LDM) from physical data model (PDM)
@@ -1795,6 +1876,15 @@ export declare const ActionsApiFp: (configuration?: MetadataConfiguration) => {
1795
1876
  * @throws {RequiredError}
1796
1877
  */
1797
1878
  unsubscribeAutomation(workspaceId: string, automationId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1879
+ /**
1880
+ *
1881
+ * @summary Unsubscribe from selected automations in the workspace
1882
+ * @param {string} workspaceId
1883
+ * @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
1884
+ * @param {*} [options] Override http request option.
1885
+ * @throws {RequiredError}
1886
+ */
1887
+ unsubscribeSelectedWorkspaceAutomations(workspaceId: string, workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1798
1888
  /**
1799
1889
  *
1800
1890
  * @summary Unsubscribe from all automations in the workspace
@@ -2002,6 +2092,15 @@ export declare interface ActionsApiInterface {
2002
2092
  * @memberof ActionsApiInterface
2003
2093
  */
2004
2094
  dashboardPermissions(requestParameters: ActionsApiDashboardPermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<DashboardPermissions>;
2095
+ /**
2096
+ *
2097
+ * @summary Delete selected automations in the workspace
2098
+ * @param {ActionsApiDeleteWorkspaceAutomationsRequest} requestParameters Request parameters.
2099
+ * @param {*} [options] Override http request option.
2100
+ * @throws {RequiredError}
2101
+ * @memberof ActionsApiInterface
2102
+ */
2103
+ deleteWorkspaceAutomations(requestParameters: ActionsApiDeleteWorkspaceAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
2005
2104
  /**
2006
2105
  * Generate logical data model (LDM) from physical data model (PDM) stored in data source.
2007
2106
  * @summary Generate logical data model (LDM) from physical data model (PDM)
@@ -2230,6 +2329,15 @@ export declare interface ActionsApiInterface {
2230
2329
  * @memberof ActionsApiInterface
2231
2330
  */
2232
2331
  unsubscribeAutomation(requestParameters: ActionsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
2332
+ /**
2333
+ *
2334
+ * @summary Unsubscribe from selected automations in the workspace
2335
+ * @param {ActionsApiUnsubscribeSelectedWorkspaceAutomationsRequest} requestParameters Request parameters.
2336
+ * @param {*} [options] Override http request option.
2337
+ * @throws {RequiredError}
2338
+ * @memberof ActionsApiInterface
2339
+ */
2340
+ unsubscribeSelectedWorkspaceAutomations(requestParameters: ActionsApiUnsubscribeSelectedWorkspaceAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
2233
2341
  /**
2234
2342
  *
2235
2343
  * @summary Unsubscribe from all automations in the workspace
@@ -2833,6 +2941,26 @@ export declare interface ActionsApiUnsubscribeAutomationRequest {
2833
2941
  readonly automationId: string;
2834
2942
  }
2835
2943
 
2944
+ /**
2945
+ * Request parameters for unsubscribeSelectedWorkspaceAutomations operation in ActionsApi.
2946
+ * @export
2947
+ * @interface ActionsApiUnsubscribeSelectedWorkspaceAutomationsRequest
2948
+ */
2949
+ export declare interface ActionsApiUnsubscribeSelectedWorkspaceAutomationsRequest {
2950
+ /**
2951
+ *
2952
+ * @type {string}
2953
+ * @memberof ActionsApiUnsubscribeSelectedWorkspaceAutomations
2954
+ */
2955
+ readonly workspaceId: string;
2956
+ /**
2957
+ *
2958
+ * @type {WorkspaceAutomationManagementBulkRequest}
2959
+ * @memberof ActionsApiUnsubscribeSelectedWorkspaceAutomations
2960
+ */
2961
+ readonly workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest;
2962
+ }
2963
+
2836
2964
  /**
2837
2965
  * Request parameters for unsubscribeWorkspaceAutomations operation in ActionsApi.
2838
2966
  * @export
@@ -11649,6 +11777,12 @@ export declare interface AutomationDashboardDateFilterDateFilter {
11649
11777
  * @memberof AutomationDashboardDateFilterDateFilter
11650
11778
  */
11651
11779
  attribute?: AutomationIdentifierRef;
11780
+ /**
11781
+ *
11782
+ * @type {AutomationRelativeBoundedDateFilter}
11783
+ * @memberof AutomationDashboardDateFilterDateFilter
11784
+ */
11785
+ boundedFilter?: AutomationRelativeBoundedDateFilter;
11652
11786
  /**
11653
11787
  *
11654
11788
  * @type {string}
@@ -12079,6 +12213,7 @@ export declare const AutomationIdentifierRefIdentifierTypeEnum: {
12079
12213
  readonly USER_DATA_FILTER: "userDataFilter";
12080
12214
  readonly EXPORT_DEFINITION: "exportDefinition";
12081
12215
  readonly AUTOMATION: "automation";
12216
+ readonly AUTOMATION_RESULT: "automationResult";
12082
12217
  readonly PROMPT: "prompt";
12083
12218
  readonly VISUALIZATION_OBJECT: "visualizationObject";
12084
12219
  readonly FILTER_CONTEXT: "filterContext";
@@ -13074,6 +13209,60 @@ export declare interface AutomationRelative {
13074
13209
  threshold: AutomationValue;
13075
13210
  }
13076
13211
 
13212
+ /**
13213
+ *
13214
+ * @export
13215
+ * @interface AutomationRelativeBoundedDateFilter
13216
+ */
13217
+ export declare interface AutomationRelativeBoundedDateFilter {
13218
+ /**
13219
+ *
13220
+ * @type {string}
13221
+ * @memberof AutomationRelativeBoundedDateFilter
13222
+ */
13223
+ granularity: AutomationRelativeBoundedDateFilterGranularityEnum;
13224
+ /**
13225
+ *
13226
+ * @type {number}
13227
+ * @memberof AutomationRelativeBoundedDateFilter
13228
+ */
13229
+ from?: number;
13230
+ /**
13231
+ *
13232
+ * @type {number}
13233
+ * @memberof AutomationRelativeBoundedDateFilter
13234
+ */
13235
+ to?: number;
13236
+ }
13237
+
13238
+ export declare const AutomationRelativeBoundedDateFilterGranularityEnum: {
13239
+ readonly ALL_TIME_GRANULARITY: "ALL_TIME_GRANULARITY";
13240
+ readonly GDC_TIME_YEAR: "GDC.time.year";
13241
+ readonly GDC_TIME_WEEK_US: "GDC.time.week_us";
13242
+ readonly GDC_TIME_WEEK_IN_YEAR: "GDC.time.week_in_year";
13243
+ readonly GDC_TIME_WEEK_IN_QUARTER: "GDC.time.week_in_quarter";
13244
+ readonly GDC_TIME_WEEK: "GDC.time.week";
13245
+ readonly GDC_TIME_EUWEEK_IN_YEAR: "GDC.time.euweek_in_year";
13246
+ readonly GDC_TIME_EUWEEK_IN_QUARTER: "GDC.time.euweek_in_quarter";
13247
+ readonly GDC_TIME_QUARTER: "GDC.time.quarter";
13248
+ readonly GDC_TIME_QUARTER_IN_YEAR: "GDC.time.quarter_in_year";
13249
+ readonly GDC_TIME_MONTH: "GDC.time.month";
13250
+ readonly GDC_TIME_MONTH_IN_QUARTER: "GDC.time.month_in_quarter";
13251
+ readonly GDC_TIME_MONTH_IN_YEAR: "GDC.time.month_in_year";
13252
+ readonly GDC_TIME_DAY_IN_YEAR: "GDC.time.day_in_year";
13253
+ readonly GDC_TIME_DAY_IN_QUARTER: "GDC.time.day_in_quarter";
13254
+ readonly GDC_TIME_DAY_IN_MONTH: "GDC.time.day_in_month";
13255
+ readonly GDC_TIME_DAY_IN_WEEK: "GDC.time.day_in_week";
13256
+ readonly GDC_TIME_DAY_IN_EUWEEK: "GDC.time.day_in_euweek";
13257
+ readonly GDC_TIME_DATE: "GDC.time.date";
13258
+ readonly GDC_TIME_HOUR: "GDC.time.hour";
13259
+ readonly GDC_TIME_HOUR_IN_DAY: "GDC.time.hour_in_day";
13260
+ readonly GDC_TIME_MINUTE: "GDC.time.minute";
13261
+ readonly GDC_TIME_MINUTE_IN_HOUR: "GDC.time.minute_in_hour";
13262
+ };
13263
+
13264
+ export declare type AutomationRelativeBoundedDateFilterGranularityEnum = (typeof AutomationRelativeBoundedDateFilterGranularityEnum)[keyof typeof AutomationRelativeBoundedDateFilterGranularityEnum];
13265
+
13077
13266
  /**
13078
13267
  * A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension. The \'from\' and \'to\' properties mark the boundaries of the interval. If \'from\' is omitted, all values earlier than \'to\' are included. If \'to\' is omitted, all values later than \'from\' are included. It is not allowed to omit both.
13079
13268
  * @export
@@ -13216,6 +13405,15 @@ export declare class AutomationsApi extends MetadataBaseApi implements Automatio
13216
13405
  * @memberof AutomationsApi
13217
13406
  */
13218
13407
  deleteEntityAutomations(requestParameters: AutomationsApiDeleteEntityAutomationsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<void, any>>;
13408
+ /**
13409
+ *
13410
+ * @summary Delete selected automations in the workspace
13411
+ * @param {AutomationsApiDeleteWorkspaceAutomationsRequest} requestParameters Request parameters.
13412
+ * @param {*} [options] Override http request option.
13413
+ * @throws {RequiredError}
13414
+ * @memberof AutomationsApi
13415
+ */
13416
+ deleteWorkspaceAutomations(requestParameters: AutomationsApiDeleteWorkspaceAutomationsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<void, any>>;
13219
13417
  /**
13220
13418
  *
13221
13419
  * @summary Get all Automations
@@ -13278,6 +13476,15 @@ export declare class AutomationsApi extends MetadataBaseApi implements Automatio
13278
13476
  * @memberof AutomationsApi
13279
13477
  */
13280
13478
  unsubscribeAutomation(requestParameters: AutomationsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<void, any>>;
13479
+ /**
13480
+ *
13481
+ * @summary Unsubscribe from selected automations in the workspace
13482
+ * @param {AutomationsApiUnsubscribeSelectedWorkspaceAutomationsRequest} requestParameters Request parameters.
13483
+ * @param {*} [options] Override http request option.
13484
+ * @throws {RequiredError}
13485
+ * @memberof AutomationsApi
13486
+ */
13487
+ unsubscribeSelectedWorkspaceAutomations(requestParameters: AutomationsApiUnsubscribeSelectedWorkspaceAutomationsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<void, any>>;
13281
13488
  /**
13282
13489
  *
13283
13490
  * @summary Unsubscribe from all automations in the workspace
@@ -13308,12 +13515,12 @@ export declare const AutomationsApiAxiosParamCreator: (configuration?: MetadataC
13308
13515
  * @summary Post Automations
13309
13516
  * @param {string} workspaceId
13310
13517
  * @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
13311
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13518
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13312
13519
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
13313
13520
  * @param {*} [options] Override http request option.
13314
13521
  * @throws {RequiredError}
13315
13522
  */
13316
- createEntityAutomations: (workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
13523
+ createEntityAutomations: (workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
13317
13524
  /**
13318
13525
  *
13319
13526
  * @summary Delete an Automation
@@ -13324,13 +13531,22 @@ export declare const AutomationsApiAxiosParamCreator: (configuration?: MetadataC
13324
13531
  * @throws {RequiredError}
13325
13532
  */
13326
13533
  deleteEntityAutomations: (workspaceId: string, objectId: string, filter?: string, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
13534
+ /**
13535
+ *
13536
+ * @summary Delete selected automations in the workspace
13537
+ * @param {string} workspaceId
13538
+ * @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
13539
+ * @param {*} [options] Override http request option.
13540
+ * @throws {RequiredError}
13541
+ */
13542
+ deleteWorkspaceAutomations: (workspaceId: string, workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
13327
13543
  /**
13328
13544
  *
13329
13545
  * @summary Get all Automations
13330
13546
  * @param {string} workspaceId
13331
13547
  * @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
13332
13548
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
13333
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13549
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13334
13550
  * @param {number} [page] Zero-based page index (0..N)
13335
13551
  * @param {number} [size] The size of the page to be returned
13336
13552
  * @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
@@ -13339,7 +13555,7 @@ export declare const AutomationsApiAxiosParamCreator: (configuration?: MetadataC
13339
13555
  * @param {*} [options] Override http request option.
13340
13556
  * @throws {RequiredError}
13341
13557
  */
13342
- getAllEntitiesAutomations: (workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
13558
+ getAllEntitiesAutomations: (workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
13343
13559
  /**
13344
13560
  * Retrieve automations for the specific workspace
13345
13561
  * @summary Get automations
@@ -13355,13 +13571,13 @@ export declare const AutomationsApiAxiosParamCreator: (configuration?: MetadataC
13355
13571
  * @param {string} workspaceId
13356
13572
  * @param {string} objectId
13357
13573
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
13358
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13574
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13359
13575
  * @param {boolean} [xGDCVALIDATERELATIONS]
13360
13576
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
13361
13577
  * @param {*} [options] Override http request option.
13362
13578
  * @throws {RequiredError}
13363
13579
  */
13364
- getEntityAutomations: (workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
13580
+ getEntityAutomations: (workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
13365
13581
  /**
13366
13582
  *
13367
13583
  * @summary Patch an Automation
@@ -13369,11 +13585,11 @@ export declare const AutomationsApiAxiosParamCreator: (configuration?: MetadataC
13369
13585
  * @param {string} objectId
13370
13586
  * @param {JsonApiAutomationPatchDocument} jsonApiAutomationPatchDocument
13371
13587
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
13372
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13588
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13373
13589
  * @param {*} [options] Override http request option.
13374
13590
  * @throws {RequiredError}
13375
13591
  */
13376
- patchEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
13592
+ patchEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
13377
13593
  /**
13378
13594
  * Set automations for the specific workspace.
13379
13595
  * @summary Set automations
@@ -13399,6 +13615,15 @@ export declare const AutomationsApiAxiosParamCreator: (configuration?: MetadataC
13399
13615
  * @throws {RequiredError}
13400
13616
  */
13401
13617
  unsubscribeAutomation: (workspaceId: string, automationId: string, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
13618
+ /**
13619
+ *
13620
+ * @summary Unsubscribe from selected automations in the workspace
13621
+ * @param {string} workspaceId
13622
+ * @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
13623
+ * @param {*} [options] Override http request option.
13624
+ * @throws {RequiredError}
13625
+ */
13626
+ unsubscribeSelectedWorkspaceAutomations: (workspaceId: string, workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
13402
13627
  /**
13403
13628
  *
13404
13629
  * @summary Unsubscribe from all automations in the workspace
@@ -13414,11 +13639,11 @@ export declare const AutomationsApiAxiosParamCreator: (configuration?: MetadataC
13414
13639
  * @param {string} objectId
13415
13640
  * @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
13416
13641
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
13417
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13642
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13418
13643
  * @param {*} [options] Override http request option.
13419
13644
  * @throws {RequiredError}
13420
13645
  */
13421
- updateEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
13646
+ updateEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
13422
13647
  };
13423
13648
 
13424
13649
  /**
@@ -13441,10 +13666,10 @@ export declare interface AutomationsApiCreateEntityAutomationsRequest {
13441
13666
  readonly jsonApiAutomationInDocument: JsonApiAutomationInDocument;
13442
13667
  /**
13443
13668
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13444
- * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
13669
+ * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
13445
13670
  * @memberof AutomationsApiCreateEntityAutomations
13446
13671
  */
13447
- readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
13672
+ readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
13448
13673
  /**
13449
13674
  * Include Meta objects.
13450
13675
  * @type {Array<'origin' | 'all' | 'ALL'>}
@@ -13479,6 +13704,26 @@ export declare interface AutomationsApiDeleteEntityAutomationsRequest {
13479
13704
  readonly filter?: string;
13480
13705
  }
13481
13706
 
13707
+ /**
13708
+ * Request parameters for deleteWorkspaceAutomations operation in AutomationsApi.
13709
+ * @export
13710
+ * @interface AutomationsApiDeleteWorkspaceAutomationsRequest
13711
+ */
13712
+ export declare interface AutomationsApiDeleteWorkspaceAutomationsRequest {
13713
+ /**
13714
+ *
13715
+ * @type {string}
13716
+ * @memberof AutomationsApiDeleteWorkspaceAutomations
13717
+ */
13718
+ readonly workspaceId: string;
13719
+ /**
13720
+ *
13721
+ * @type {WorkspaceAutomationManagementBulkRequest}
13722
+ * @memberof AutomationsApiDeleteWorkspaceAutomations
13723
+ */
13724
+ readonly workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest;
13725
+ }
13726
+
13482
13727
  /**
13483
13728
  * AutomationsApi - factory interface
13484
13729
  * @export
@@ -13500,6 +13745,14 @@ export declare const AutomationsApiFactory: (configuration?: MetadataConfigurati
13500
13745
  * @throws {RequiredError}
13501
13746
  */
13502
13747
  deleteEntityAutomations(requestParameters: AutomationsApiDeleteEntityAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
13748
+ /**
13749
+ *
13750
+ * @summary Delete selected automations in the workspace
13751
+ * @param {AutomationsApiDeleteWorkspaceAutomationsRequest} requestParameters Request parameters.
13752
+ * @param {*} [options] Override http request option.
13753
+ * @throws {RequiredError}
13754
+ */
13755
+ deleteWorkspaceAutomations(requestParameters: AutomationsApiDeleteWorkspaceAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
13503
13756
  /**
13504
13757
  *
13505
13758
  * @summary Get all Automations
@@ -13555,6 +13808,14 @@ export declare const AutomationsApiFactory: (configuration?: MetadataConfigurati
13555
13808
  * @throws {RequiredError}
13556
13809
  */
13557
13810
  unsubscribeAutomation(requestParameters: AutomationsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
13811
+ /**
13812
+ *
13813
+ * @summary Unsubscribe from selected automations in the workspace
13814
+ * @param {AutomationsApiUnsubscribeSelectedWorkspaceAutomationsRequest} requestParameters Request parameters.
13815
+ * @param {*} [options] Override http request option.
13816
+ * @throws {RequiredError}
13817
+ */
13818
+ unsubscribeSelectedWorkspaceAutomations(requestParameters: AutomationsApiUnsubscribeSelectedWorkspaceAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
13558
13819
  /**
13559
13820
  *
13560
13821
  * @summary Unsubscribe from all automations in the workspace
@@ -13583,12 +13844,12 @@ export declare const AutomationsApiFp: (configuration?: MetadataConfiguration) =
13583
13844
  * @summary Post Automations
13584
13845
  * @param {string} workspaceId
13585
13846
  * @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
13586
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13847
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13587
13848
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
13588
13849
  * @param {*} [options] Override http request option.
13589
13850
  * @throws {RequiredError}
13590
13851
  */
13591
- createEntityAutomations(workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
13852
+ createEntityAutomations(workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
13592
13853
  /**
13593
13854
  *
13594
13855
  * @summary Delete an Automation
@@ -13599,13 +13860,22 @@ export declare const AutomationsApiFp: (configuration?: MetadataConfiguration) =
13599
13860
  * @throws {RequiredError}
13600
13861
  */
13601
13862
  deleteEntityAutomations(workspaceId: string, objectId: string, filter?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
13863
+ /**
13864
+ *
13865
+ * @summary Delete selected automations in the workspace
13866
+ * @param {string} workspaceId
13867
+ * @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
13868
+ * @param {*} [options] Override http request option.
13869
+ * @throws {RequiredError}
13870
+ */
13871
+ deleteWorkspaceAutomations(workspaceId: string, workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
13602
13872
  /**
13603
13873
  *
13604
13874
  * @summary Get all Automations
13605
13875
  * @param {string} workspaceId
13606
13876
  * @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
13607
13877
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
13608
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13878
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13609
13879
  * @param {number} [page] Zero-based page index (0..N)
13610
13880
  * @param {number} [size] The size of the page to be returned
13611
13881
  * @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
@@ -13614,7 +13884,7 @@ export declare const AutomationsApiFp: (configuration?: MetadataConfiguration) =
13614
13884
  * @param {*} [options] Override http request option.
13615
13885
  * @throws {RequiredError}
13616
13886
  */
13617
- getAllEntitiesAutomations(workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutList>>;
13887
+ getAllEntitiesAutomations(workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutList>>;
13618
13888
  /**
13619
13889
  * Retrieve automations for the specific workspace
13620
13890
  * @summary Get automations
@@ -13630,13 +13900,13 @@ export declare const AutomationsApiFp: (configuration?: MetadataConfiguration) =
13630
13900
  * @param {string} workspaceId
13631
13901
  * @param {string} objectId
13632
13902
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
13633
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13903
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13634
13904
  * @param {boolean} [xGDCVALIDATERELATIONS]
13635
13905
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
13636
13906
  * @param {*} [options] Override http request option.
13637
13907
  * @throws {RequiredError}
13638
13908
  */
13639
- getEntityAutomations(workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
13909
+ getEntityAutomations(workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
13640
13910
  /**
13641
13911
  *
13642
13912
  * @summary Patch an Automation
@@ -13644,11 +13914,11 @@ export declare const AutomationsApiFp: (configuration?: MetadataConfiguration) =
13644
13914
  * @param {string} objectId
13645
13915
  * @param {JsonApiAutomationPatchDocument} jsonApiAutomationPatchDocument
13646
13916
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
13647
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13917
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13648
13918
  * @param {*} [options] Override http request option.
13649
13919
  * @throws {RequiredError}
13650
13920
  */
13651
- patchEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
13921
+ patchEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
13652
13922
  /**
13653
13923
  * Set automations for the specific workspace.
13654
13924
  * @summary Set automations
@@ -13674,6 +13944,15 @@ export declare const AutomationsApiFp: (configuration?: MetadataConfiguration) =
13674
13944
  * @throws {RequiredError}
13675
13945
  */
13676
13946
  unsubscribeAutomation(workspaceId: string, automationId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
13947
+ /**
13948
+ *
13949
+ * @summary Unsubscribe from selected automations in the workspace
13950
+ * @param {string} workspaceId
13951
+ * @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
13952
+ * @param {*} [options] Override http request option.
13953
+ * @throws {RequiredError}
13954
+ */
13955
+ unsubscribeSelectedWorkspaceAutomations(workspaceId: string, workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
13677
13956
  /**
13678
13957
  *
13679
13958
  * @summary Unsubscribe from all automations in the workspace
@@ -13689,11 +13968,11 @@ export declare const AutomationsApiFp: (configuration?: MetadataConfiguration) =
13689
13968
  * @param {string} objectId
13690
13969
  * @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
13691
13970
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
13692
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13971
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13693
13972
  * @param {*} [options] Override http request option.
13694
13973
  * @throws {RequiredError}
13695
13974
  */
13696
- updateEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
13975
+ updateEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
13697
13976
  };
13698
13977
 
13699
13978
  /**
@@ -13722,10 +14001,10 @@ export declare interface AutomationsApiGetAllEntitiesAutomationsRequest {
13722
14001
  readonly filter?: string;
13723
14002
  /**
13724
14003
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13725
- * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
14004
+ * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
13726
14005
  * @memberof AutomationsApiGetAllEntitiesAutomations
13727
14006
  */
13728
- readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
14007
+ readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
13729
14008
  /**
13730
14009
  * Zero-based page index (0..N)
13731
14010
  * @type {number}
@@ -13804,10 +14083,10 @@ export declare interface AutomationsApiGetEntityAutomationsRequest {
13804
14083
  readonly filter?: string;
13805
14084
  /**
13806
14085
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13807
- * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
14086
+ * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
13808
14087
  * @memberof AutomationsApiGetEntityAutomations
13809
14088
  */
13810
- readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
14089
+ readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
13811
14090
  /**
13812
14091
  *
13813
14092
  * @type {boolean}
@@ -13846,6 +14125,15 @@ export declare interface AutomationsApiInterface {
13846
14125
  * @memberof AutomationsApiInterface
13847
14126
  */
13848
14127
  deleteEntityAutomations(requestParameters: AutomationsApiDeleteEntityAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
14128
+ /**
14129
+ *
14130
+ * @summary Delete selected automations in the workspace
14131
+ * @param {AutomationsApiDeleteWorkspaceAutomationsRequest} requestParameters Request parameters.
14132
+ * @param {*} [options] Override http request option.
14133
+ * @throws {RequiredError}
14134
+ * @memberof AutomationsApiInterface
14135
+ */
14136
+ deleteWorkspaceAutomations(requestParameters: AutomationsApiDeleteWorkspaceAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
13849
14137
  /**
13850
14138
  *
13851
14139
  * @summary Get all Automations
@@ -13908,6 +14196,15 @@ export declare interface AutomationsApiInterface {
13908
14196
  * @memberof AutomationsApiInterface
13909
14197
  */
13910
14198
  unsubscribeAutomation(requestParameters: AutomationsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
14199
+ /**
14200
+ *
14201
+ * @summary Unsubscribe from selected automations in the workspace
14202
+ * @param {AutomationsApiUnsubscribeSelectedWorkspaceAutomationsRequest} requestParameters Request parameters.
14203
+ * @param {*} [options] Override http request option.
14204
+ * @throws {RequiredError}
14205
+ * @memberof AutomationsApiInterface
14206
+ */
14207
+ unsubscribeSelectedWorkspaceAutomations(requestParameters: AutomationsApiUnsubscribeSelectedWorkspaceAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
13911
14208
  /**
13912
14209
  *
13913
14210
  * @summary Unsubscribe from all automations in the workspace
@@ -13960,10 +14257,10 @@ export declare interface AutomationsApiPatchEntityAutomationsRequest {
13960
14257
  readonly filter?: string;
13961
14258
  /**
13962
14259
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
13963
- * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
14260
+ * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
13964
14261
  * @memberof AutomationsApiPatchEntityAutomations
13965
14262
  */
13966
- readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
14263
+ readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
13967
14264
  }
13968
14265
 
13969
14266
  /**
@@ -14006,6 +14303,26 @@ export declare interface AutomationsApiUnsubscribeAutomationRequest {
14006
14303
  readonly automationId: string;
14007
14304
  }
14008
14305
 
14306
+ /**
14307
+ * Request parameters for unsubscribeSelectedWorkspaceAutomations operation in AutomationsApi.
14308
+ * @export
14309
+ * @interface AutomationsApiUnsubscribeSelectedWorkspaceAutomationsRequest
14310
+ */
14311
+ export declare interface AutomationsApiUnsubscribeSelectedWorkspaceAutomationsRequest {
14312
+ /**
14313
+ *
14314
+ * @type {string}
14315
+ * @memberof AutomationsApiUnsubscribeSelectedWorkspaceAutomations
14316
+ */
14317
+ readonly workspaceId: string;
14318
+ /**
14319
+ *
14320
+ * @type {WorkspaceAutomationManagementBulkRequest}
14321
+ * @memberof AutomationsApiUnsubscribeSelectedWorkspaceAutomations
14322
+ */
14323
+ readonly workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest;
14324
+ }
14325
+
14009
14326
  /**
14010
14327
  * Request parameters for unsubscribeWorkspaceAutomations operation in AutomationsApi.
14011
14328
  * @export
@@ -14052,10 +14369,10 @@ export declare interface AutomationsApiUpdateEntityAutomationsRequest {
14052
14369
  readonly filter?: string;
14053
14370
  /**
14054
14371
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
14055
- * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
14372
+ * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
14056
14373
  * @memberof AutomationsApiUpdateEntityAutomations
14057
14374
  */
14058
- readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
14375
+ readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
14059
14376
  }
14060
14377
 
14061
14378
  /**
@@ -15275,8 +15592,26 @@ export declare interface ChatHistoryRequest {
15275
15592
  * @memberof ChatHistoryRequest
15276
15593
  */
15277
15594
  savedVisualization?: SavedVisualization;
15595
+ /**
15596
+ * Response state indicating the outcome of the AI interaction.
15597
+ * @type {string}
15598
+ * @memberof ChatHistoryRequest
15599
+ */
15600
+ responseState?: ChatHistoryRequestResponseStateEnum;
15278
15601
  }
15279
15602
 
15603
+ export declare const ChatHistoryRequestResponseStateEnum: {
15604
+ readonly SUCCESSFUL: "SUCCESSFUL";
15605
+ readonly UNEXPECTED_ERROR: "UNEXPECTED_ERROR";
15606
+ readonly NOT_FOUND_ATTRIBUTES: "NOT_FOUND_ATTRIBUTES";
15607
+ readonly TOO_MANY_DATA_POINTS: "TOO_MANY_DATA_POINTS";
15608
+ readonly NO_DATA: "NO_DATA";
15609
+ readonly NO_RESULTS: "NO_RESULTS";
15610
+ readonly OUT_OF_TOPIC: "OUT_OF_TOPIC";
15611
+ };
15612
+
15613
+ export declare type ChatHistoryRequestResponseStateEnum = (typeof ChatHistoryRequestResponseStateEnum)[keyof typeof ChatHistoryRequestResponseStateEnum];
15614
+
15280
15615
  export declare const ChatHistoryRequestUserFeedbackEnum: {
15281
15616
  readonly POSITIVE: "POSITIVE";
15282
15617
  readonly NEGATIVE: "NEGATIVE";
@@ -17824,6 +18159,12 @@ export declare interface DashboardDateFilterDateFilter {
17824
18159
  * @memberof DashboardDateFilterDateFilter
17825
18160
  */
17826
18161
  attribute?: IdentifierRef;
18162
+ /**
18163
+ *
18164
+ * @type {RelativeBoundedDateFilter}
18165
+ * @memberof DashboardDateFilterDateFilter
18166
+ */
18167
+ boundedFilter?: RelativeBoundedDateFilter;
17827
18168
  /**
17828
18169
  *
17829
18170
  * @type {string}
@@ -22886,6 +23227,7 @@ export declare const DeclarativeDataSourceTypeEnum: {
22886
23227
  readonly FLEXCONNECT: "FLEXCONNECT";
22887
23228
  readonly STARROCKS: "STARROCKS";
22888
23229
  readonly ATHENA: "ATHENA";
23230
+ readonly MONGODB: "MONGODB";
22889
23231
  };
22890
23232
 
22891
23233
  export declare type DeclarativeDataSourceTypeEnum = (typeof DeclarativeDataSourceTypeEnum)[keyof typeof DeclarativeDataSourceTypeEnum];
@@ -24138,6 +24480,7 @@ export declare const DeclarativeSettingTypeEnum: {
24138
24480
  readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
24139
24481
  readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
24140
24482
  readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
24483
+ readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
24141
24484
  };
24142
24485
 
24143
24486
  export declare type DeclarativeSettingTypeEnum = (typeof DeclarativeSettingTypeEnum)[keyof typeof DeclarativeSettingTypeEnum];
@@ -27471,12 +27814,12 @@ export declare const EntitiesApiAxiosParamCreator: (configuration?: MetadataConf
27471
27814
  * @summary Post Automations
27472
27815
  * @param {string} workspaceId
27473
27816
  * @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
27474
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
27817
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
27475
27818
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
27476
27819
  * @param {*} [options] Override http request option.
27477
27820
  * @throws {RequiredError}
27478
27821
  */
27479
- createEntityAutomations: (workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
27822
+ createEntityAutomations: (workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
27480
27823
  /**
27481
27824
  *
27482
27825
  * @summary Post Color Pallettes
@@ -28071,7 +28414,7 @@ export declare const EntitiesApiAxiosParamCreator: (configuration?: MetadataConf
28071
28414
  * @param {string} workspaceId
28072
28415
  * @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
28073
28416
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
28074
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
28417
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
28075
28418
  * @param {number} [page] Zero-based page index (0..N)
28076
28419
  * @param {number} [size] The size of the page to be returned
28077
28420
  * @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
@@ -28080,7 +28423,7 @@ export declare const EntitiesApiAxiosParamCreator: (configuration?: MetadataConf
28080
28423
  * @param {*} [options] Override http request option.
28081
28424
  * @throws {RequiredError}
28082
28425
  */
28083
- getAllEntitiesAutomations: (workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
28426
+ getAllEntitiesAutomations: (workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
28084
28427
  /**
28085
28428
  *
28086
28429
  * @summary Get all Color Pallettes
@@ -28603,13 +28946,13 @@ export declare const EntitiesApiAxiosParamCreator: (configuration?: MetadataConf
28603
28946
  * @param {string} workspaceId
28604
28947
  * @param {string} objectId
28605
28948
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
28606
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
28949
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
28607
28950
  * @param {boolean} [xGDCVALIDATERELATIONS]
28608
28951
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
28609
28952
  * @param {*} [options] Override http request option.
28610
28953
  * @throws {RequiredError}
28611
28954
  */
28612
- getEntityAutomations: (workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
28955
+ getEntityAutomations: (workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
28613
28956
  /**
28614
28957
  *
28615
28958
  * @summary Get Color Pallette
@@ -29016,11 +29359,11 @@ export declare const EntitiesApiAxiosParamCreator: (configuration?: MetadataConf
29016
29359
  * @param {string} objectId
29017
29360
  * @param {JsonApiAutomationPatchDocument} jsonApiAutomationPatchDocument
29018
29361
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
29019
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
29362
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
29020
29363
  * @param {*} [options] Override http request option.
29021
29364
  * @throws {RequiredError}
29022
29365
  */
29023
- patchEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
29366
+ patchEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
29024
29367
  /**
29025
29368
  *
29026
29369
  * @summary Patch Color Pallette
@@ -29336,11 +29679,11 @@ export declare const EntitiesApiAxiosParamCreator: (configuration?: MetadataConf
29336
29679
  * @param {string} objectId
29337
29680
  * @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
29338
29681
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
29339
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
29682
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
29340
29683
  * @param {*} [options] Override http request option.
29341
29684
  * @throws {RequiredError}
29342
29685
  */
29343
- updateEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
29686
+ updateEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
29344
29687
  /**
29345
29688
  *
29346
29689
  * @summary Put Color Pallette
@@ -29742,10 +30085,10 @@ export declare interface EntitiesApiCreateEntityAutomationsRequest {
29742
30085
  readonly jsonApiAutomationInDocument: JsonApiAutomationInDocument;
29743
30086
  /**
29744
30087
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
29745
- * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
30088
+ * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
29746
30089
  * @memberof EntitiesApiCreateEntityAutomations
29747
30090
  */
29748
- readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
30091
+ readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
29749
30092
  /**
29750
30093
  * Include Meta objects.
29751
30094
  * @type {Array<'origin' | 'all' | 'ALL'>}
@@ -32623,12 +32966,12 @@ export declare const EntitiesApiFp: (configuration?: MetadataConfiguration) => {
32623
32966
  * @summary Post Automations
32624
32967
  * @param {string} workspaceId
32625
32968
  * @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
32626
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
32969
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
32627
32970
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
32628
32971
  * @param {*} [options] Override http request option.
32629
32972
  * @throws {RequiredError}
32630
32973
  */
32631
- createEntityAutomations(workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
32974
+ createEntityAutomations(workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
32632
32975
  /**
32633
32976
  *
32634
32977
  * @summary Post Color Pallettes
@@ -33223,7 +33566,7 @@ export declare const EntitiesApiFp: (configuration?: MetadataConfiguration) => {
33223
33566
  * @param {string} workspaceId
33224
33567
  * @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
33225
33568
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
33226
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
33569
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
33227
33570
  * @param {number} [page] Zero-based page index (0..N)
33228
33571
  * @param {number} [size] The size of the page to be returned
33229
33572
  * @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
@@ -33232,7 +33575,7 @@ export declare const EntitiesApiFp: (configuration?: MetadataConfiguration) => {
33232
33575
  * @param {*} [options] Override http request option.
33233
33576
  * @throws {RequiredError}
33234
33577
  */
33235
- getAllEntitiesAutomations(workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutList>>;
33578
+ getAllEntitiesAutomations(workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutList>>;
33236
33579
  /**
33237
33580
  *
33238
33581
  * @summary Get all Color Pallettes
@@ -33757,13 +34100,13 @@ export declare const EntitiesApiFp: (configuration?: MetadataConfiguration) => {
33757
34100
  * @param {string} workspaceId
33758
34101
  * @param {string} objectId
33759
34102
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
33760
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
34103
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
33761
34104
  * @param {boolean} [xGDCVALIDATERELATIONS]
33762
34105
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
33763
34106
  * @param {*} [options] Override http request option.
33764
34107
  * @throws {RequiredError}
33765
34108
  */
33766
- getEntityAutomations(workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
34109
+ getEntityAutomations(workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
33767
34110
  /**
33768
34111
  *
33769
34112
  * @summary Get Color Pallette
@@ -34170,11 +34513,11 @@ export declare const EntitiesApiFp: (configuration?: MetadataConfiguration) => {
34170
34513
  * @param {string} objectId
34171
34514
  * @param {JsonApiAutomationPatchDocument} jsonApiAutomationPatchDocument
34172
34515
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
34173
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
34516
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
34174
34517
  * @param {*} [options] Override http request option.
34175
34518
  * @throws {RequiredError}
34176
34519
  */
34177
- patchEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
34520
+ patchEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
34178
34521
  /**
34179
34522
  *
34180
34523
  * @summary Patch Color Pallette
@@ -34490,11 +34833,11 @@ export declare const EntitiesApiFp: (configuration?: MetadataConfiguration) => {
34490
34833
  * @param {string} objectId
34491
34834
  * @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
34492
34835
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
34493
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
34836
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
34494
34837
  * @param {*} [options] Override http request option.
34495
34838
  * @throws {RequiredError}
34496
34839
  */
34497
- updateEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
34840
+ updateEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
34498
34841
  /**
34499
34842
  *
34500
34843
  * @summary Put Color Pallette
@@ -35110,10 +35453,10 @@ export declare interface EntitiesApiGetAllEntitiesAutomationsRequest {
35110
35453
  readonly filter?: string;
35111
35454
  /**
35112
35455
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
35113
- * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
35456
+ * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
35114
35457
  * @memberof EntitiesApiGetAllEntitiesAutomations
35115
35458
  */
35116
- readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
35459
+ readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
35117
35460
  /**
35118
35461
  * Zero-based page index (0..N)
35119
35462
  * @type {number}
@@ -36938,10 +37281,10 @@ export declare interface EntitiesApiGetEntityAutomationsRequest {
36938
37281
  readonly filter?: string;
36939
37282
  /**
36940
37283
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
36941
- * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
37284
+ * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
36942
37285
  * @memberof EntitiesApiGetEntityAutomations
36943
37286
  */
36944
- readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
37287
+ readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
36945
37288
  /**
36946
37289
  *
36947
37290
  * @type {boolean}
@@ -39915,10 +40258,10 @@ export declare interface EntitiesApiPatchEntityAutomationsRequest {
39915
40258
  readonly filter?: string;
39916
40259
  /**
39917
40260
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
39918
- * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
40261
+ * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
39919
40262
  * @memberof EntitiesApiPatchEntityAutomations
39920
40263
  */
39921
- readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
40264
+ readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
39922
40265
  }
39923
40266
 
39924
40267
  /**
@@ -40849,10 +41192,10 @@ export declare interface EntitiesApiUpdateEntityAutomationsRequest {
40849
41192
  readonly filter?: string;
40850
41193
  /**
40851
41194
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
40852
- * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
41195
+ * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
40853
41196
  * @memberof EntitiesApiUpdateEntityAutomations
40854
41197
  */
40855
- readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
41198
+ readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
40856
41199
  }
40857
41200
 
40858
41201
  /**
@@ -43175,6 +43518,12 @@ export declare interface ExportDashboardDateFilterDateFilter {
43175
43518
  * @memberof ExportDashboardDateFilterDateFilter
43176
43519
  */
43177
43520
  attribute?: ExportIdentifierRef;
43521
+ /**
43522
+ *
43523
+ * @type {ExportRelativeBoundedDateFilter}
43524
+ * @memberof ExportDashboardDateFilterDateFilter
43525
+ */
43526
+ boundedFilter?: ExportRelativeBoundedDateFilter;
43178
43527
  /**
43179
43528
  *
43180
43529
  * @type {string}
@@ -43986,6 +44335,7 @@ export declare const ExportIdentifierRefIdentifierTypeEnum: {
43986
44335
  readonly USER_DATA_FILTER: "userDataFilter";
43987
44336
  readonly EXPORT_DEFINITION: "exportDefinition";
43988
44337
  readonly AUTOMATION: "automation";
44338
+ readonly AUTOMATION_RESULT: "automationResult";
43989
44339
  readonly PROMPT: "prompt";
43990
44340
  readonly VISUALIZATION_OBJECT: "visualizationObject";
43991
44341
  readonly FILTER_CONTEXT: "filterContext";
@@ -44700,6 +45050,60 @@ export declare const ExportRawExportRequestFormatEnum: {
44700
45050
 
44701
45051
  export declare type ExportRawExportRequestFormatEnum = (typeof ExportRawExportRequestFormatEnum)[keyof typeof ExportRawExportRequestFormatEnum];
44702
45052
 
45053
+ /**
45054
+ *
45055
+ * @export
45056
+ * @interface ExportRelativeBoundedDateFilter
45057
+ */
45058
+ export declare interface ExportRelativeBoundedDateFilter {
45059
+ /**
45060
+ *
45061
+ * @type {string}
45062
+ * @memberof ExportRelativeBoundedDateFilter
45063
+ */
45064
+ granularity: ExportRelativeBoundedDateFilterGranularityEnum;
45065
+ /**
45066
+ *
45067
+ * @type {number}
45068
+ * @memberof ExportRelativeBoundedDateFilter
45069
+ */
45070
+ from?: number;
45071
+ /**
45072
+ *
45073
+ * @type {number}
45074
+ * @memberof ExportRelativeBoundedDateFilter
45075
+ */
45076
+ to?: number;
45077
+ }
45078
+
45079
+ export declare const ExportRelativeBoundedDateFilterGranularityEnum: {
45080
+ readonly ALL_TIME_GRANULARITY: "ALL_TIME_GRANULARITY";
45081
+ readonly GDC_TIME_YEAR: "GDC.time.year";
45082
+ readonly GDC_TIME_WEEK_US: "GDC.time.week_us";
45083
+ readonly GDC_TIME_WEEK_IN_YEAR: "GDC.time.week_in_year";
45084
+ readonly GDC_TIME_WEEK_IN_QUARTER: "GDC.time.week_in_quarter";
45085
+ readonly GDC_TIME_WEEK: "GDC.time.week";
45086
+ readonly GDC_TIME_EUWEEK_IN_YEAR: "GDC.time.euweek_in_year";
45087
+ readonly GDC_TIME_EUWEEK_IN_QUARTER: "GDC.time.euweek_in_quarter";
45088
+ readonly GDC_TIME_QUARTER: "GDC.time.quarter";
45089
+ readonly GDC_TIME_QUARTER_IN_YEAR: "GDC.time.quarter_in_year";
45090
+ readonly GDC_TIME_MONTH: "GDC.time.month";
45091
+ readonly GDC_TIME_MONTH_IN_QUARTER: "GDC.time.month_in_quarter";
45092
+ readonly GDC_TIME_MONTH_IN_YEAR: "GDC.time.month_in_year";
45093
+ readonly GDC_TIME_DAY_IN_YEAR: "GDC.time.day_in_year";
45094
+ readonly GDC_TIME_DAY_IN_QUARTER: "GDC.time.day_in_quarter";
45095
+ readonly GDC_TIME_DAY_IN_MONTH: "GDC.time.day_in_month";
45096
+ readonly GDC_TIME_DAY_IN_WEEK: "GDC.time.day_in_week";
45097
+ readonly GDC_TIME_DAY_IN_EUWEEK: "GDC.time.day_in_euweek";
45098
+ readonly GDC_TIME_DATE: "GDC.time.date";
45099
+ readonly GDC_TIME_HOUR: "GDC.time.hour";
45100
+ readonly GDC_TIME_HOUR_IN_DAY: "GDC.time.hour_in_day";
45101
+ readonly GDC_TIME_MINUTE: "GDC.time.minute";
45102
+ readonly GDC_TIME_MINUTE_IN_HOUR: "GDC.time.minute_in_hour";
45103
+ };
45104
+
45105
+ export declare type ExportRelativeBoundedDateFilterGranularityEnum = (typeof ExportRelativeBoundedDateFilterGranularityEnum)[keyof typeof ExportRelativeBoundedDateFilterGranularityEnum];
45106
+
44703
45107
  /**
44704
45108
  * A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension. The \'from\' and \'to\' properties mark the boundaries of the interval. If \'from\' is omitted, all values earlier than \'to\' are included. If \'to\' is omitted, all values later than \'from\' are included. It is not allowed to omit both.
44705
45109
  * @export
@@ -47524,6 +47928,7 @@ export declare const IdentifierRefIdentifierTypeEnum: {
47524
47928
  readonly USER_DATA_FILTER: "userDataFilter";
47525
47929
  readonly EXPORT_DEFINITION: "exportDefinition";
47526
47930
  readonly AUTOMATION: "automation";
47931
+ readonly AUTOMATION_RESULT: "automationResult";
47527
47932
  readonly PROMPT: "prompt";
47528
47933
  readonly VISUALIZATION_OBJECT: "visualizationObject";
47529
47934
  readonly FILTER_CONTEXT: "filterContext";
@@ -49197,10 +49602,10 @@ export declare interface JsonApiAggregatedFactOutList {
49197
49602
  links?: ListLinks;
49198
49603
  /**
49199
49604
  *
49200
- * @type {JsonApiAggregatedFactOutListMeta}
49605
+ * @type {JsonApiApiTokenOutListMeta}
49201
49606
  * @memberof JsonApiAggregatedFactOutList
49202
49607
  */
49203
- meta?: JsonApiAggregatedFactOutListMeta;
49608
+ meta?: JsonApiApiTokenOutListMeta;
49204
49609
  /**
49205
49610
  * Included resources
49206
49611
  * @type {Array<JsonApiAggregatedFactOutIncludes>}
@@ -49209,20 +49614,6 @@ export declare interface JsonApiAggregatedFactOutList {
49209
49614
  included?: Array<JsonApiAggregatedFactOutIncludes>;
49210
49615
  }
49211
49616
 
49212
- /**
49213
- *
49214
- * @export
49215
- * @interface JsonApiAggregatedFactOutListMeta
49216
- */
49217
- export declare interface JsonApiAggregatedFactOutListMeta {
49218
- /**
49219
- *
49220
- * @type {PageMetadata}
49221
- * @memberof JsonApiAggregatedFactOutListMeta
49222
- */
49223
- page?: PageMetadata;
49224
- }
49225
-
49226
49617
  /**
49227
49618
  *
49228
49619
  * @export
@@ -49333,10 +49724,48 @@ export declare interface JsonApiAnalyticalDashboardIn {
49333
49724
  id: string;
49334
49725
  /**
49335
49726
  *
49336
- * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
49727
+ * @type {JsonApiAnalyticalDashboardInAttributes}
49337
49728
  * @memberof JsonApiAnalyticalDashboardIn
49338
49729
  */
49339
- attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
49730
+ attributes: JsonApiAnalyticalDashboardInAttributes;
49731
+ }
49732
+
49733
+ /**
49734
+ *
49735
+ * @export
49736
+ * @interface JsonApiAnalyticalDashboardInAttributes
49737
+ */
49738
+ export declare interface JsonApiAnalyticalDashboardInAttributes {
49739
+ /**
49740
+ *
49741
+ * @type {string}
49742
+ * @memberof JsonApiAnalyticalDashboardInAttributes
49743
+ */
49744
+ title?: string;
49745
+ /**
49746
+ *
49747
+ * @type {string}
49748
+ * @memberof JsonApiAnalyticalDashboardInAttributes
49749
+ */
49750
+ description?: string;
49751
+ /**
49752
+ *
49753
+ * @type {Array<string>}
49754
+ * @memberof JsonApiAnalyticalDashboardInAttributes
49755
+ */
49756
+ tags?: Array<string>;
49757
+ /**
49758
+ *
49759
+ * @type {boolean}
49760
+ * @memberof JsonApiAnalyticalDashboardInAttributes
49761
+ */
49762
+ areRelationsValid?: boolean;
49763
+ /**
49764
+ * Free-form JSON content. Maximum supported length is 250000 characters.
49765
+ * @type {object}
49766
+ * @memberof JsonApiAnalyticalDashboardInAttributes
49767
+ */
49768
+ content: object;
49340
49769
  }
49341
49770
 
49342
49771
  /**
@@ -49475,10 +49904,10 @@ export declare interface JsonApiAnalyticalDashboardOutList {
49475
49904
  links?: ListLinks;
49476
49905
  /**
49477
49906
  *
49478
- * @type {JsonApiAggregatedFactOutListMeta}
49907
+ * @type {JsonApiApiTokenOutListMeta}
49479
49908
  * @memberof JsonApiAnalyticalDashboardOutList
49480
49909
  */
49481
- meta?: JsonApiAggregatedFactOutListMeta;
49910
+ meta?: JsonApiApiTokenOutListMeta;
49482
49911
  /**
49483
49912
  * Included resources
49484
49913
  * @type {Array<JsonApiAnalyticalDashboardOutIncludes>}
@@ -49813,48 +50242,10 @@ export declare interface JsonApiAnalyticalDashboardPostOptionalId {
49813
50242
  id?: string;
49814
50243
  /**
49815
50244
  *
49816
- * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
50245
+ * @type {JsonApiAnalyticalDashboardInAttributes}
49817
50246
  * @memberof JsonApiAnalyticalDashboardPostOptionalId
49818
50247
  */
49819
- attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
49820
- }
49821
-
49822
- /**
49823
- *
49824
- * @export
49825
- * @interface JsonApiAnalyticalDashboardPostOptionalIdAttributes
49826
- */
49827
- export declare interface JsonApiAnalyticalDashboardPostOptionalIdAttributes {
49828
- /**
49829
- *
49830
- * @type {string}
49831
- * @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
49832
- */
49833
- title?: string;
49834
- /**
49835
- *
49836
- * @type {string}
49837
- * @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
49838
- */
49839
- description?: string;
49840
- /**
49841
- *
49842
- * @type {Array<string>}
49843
- * @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
49844
- */
49845
- tags?: Array<string>;
49846
- /**
49847
- *
49848
- * @type {boolean}
49849
- * @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
49850
- */
49851
- areRelationsValid?: boolean;
49852
- /**
49853
- * Free-form JSON content. Maximum supported length is 250000 characters.
49854
- * @type {object}
49855
- * @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
49856
- */
49857
- content: object;
50248
+ attributes: JsonApiAnalyticalDashboardInAttributes;
49858
50249
  }
49859
50250
 
49860
50251
  /**
@@ -50004,10 +50395,24 @@ export declare interface JsonApiApiTokenOutList {
50004
50395
  links?: ListLinks;
50005
50396
  /**
50006
50397
  *
50007
- * @type {JsonApiAggregatedFactOutListMeta}
50398
+ * @type {JsonApiApiTokenOutListMeta}
50008
50399
  * @memberof JsonApiApiTokenOutList
50009
50400
  */
50010
- meta?: JsonApiAggregatedFactOutListMeta;
50401
+ meta?: JsonApiApiTokenOutListMeta;
50402
+ }
50403
+
50404
+ /**
50405
+ *
50406
+ * @export
50407
+ * @interface JsonApiApiTokenOutListMeta
50408
+ */
50409
+ export declare interface JsonApiApiTokenOutListMeta {
50410
+ /**
50411
+ *
50412
+ * @type {PageMetadata}
50413
+ * @memberof JsonApiApiTokenOutListMeta
50414
+ */
50415
+ page?: PageMetadata;
50011
50416
  }
50012
50417
 
50013
50418
  export declare const JsonApiApiTokenOutTypeEnum: {
@@ -50304,10 +50709,10 @@ export declare interface JsonApiAttributeHierarchyOutList {
50304
50709
  links?: ListLinks;
50305
50710
  /**
50306
50711
  *
50307
- * @type {JsonApiAggregatedFactOutListMeta}
50712
+ * @type {JsonApiApiTokenOutListMeta}
50308
50713
  * @memberof JsonApiAttributeHierarchyOutList
50309
50714
  */
50310
- meta?: JsonApiAggregatedFactOutListMeta;
50715
+ meta?: JsonApiApiTokenOutListMeta;
50311
50716
  /**
50312
50717
  * Included resources
50313
50718
  * @type {Array<JsonApiAttributeHierarchyOutIncludes>}
@@ -50662,10 +51067,10 @@ export declare interface JsonApiAttributeOutList {
50662
51067
  links?: ListLinks;
50663
51068
  /**
50664
51069
  *
50665
- * @type {JsonApiAggregatedFactOutListMeta}
51070
+ * @type {JsonApiApiTokenOutListMeta}
50666
51071
  * @memberof JsonApiAttributeOutList
50667
51072
  */
50668
- meta?: JsonApiAggregatedFactOutListMeta;
51073
+ meta?: JsonApiApiTokenOutListMeta;
50669
51074
  /**
50670
51075
  * Included resources
50671
51076
  * @type {Array<JsonApiAttributeOutIncludes>}
@@ -51462,7 +51867,7 @@ export declare interface JsonApiAutomationOutDocument {
51462
51867
  * @type JsonApiAutomationOutIncludes
51463
51868
  * @export
51464
51869
  */
51465
- export declare type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiExportDefinitionOutWithLinks | JsonApiNotificationChannelOutWithLinks | JsonApiUserIdentifierOutWithLinks | JsonApiUserOutWithLinks;
51870
+ export declare type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiAutomationResultOutWithLinks | JsonApiExportDefinitionOutWithLinks | JsonApiNotificationChannelOutWithLinks | JsonApiUserIdentifierOutWithLinks | JsonApiUserOutWithLinks;
51466
51871
 
51467
51872
  /**
51468
51873
  * A JSON:API document with a list of resources
@@ -51484,10 +51889,10 @@ export declare interface JsonApiAutomationOutList {
51484
51889
  links?: ListLinks;
51485
51890
  /**
51486
51891
  *
51487
- * @type {JsonApiAggregatedFactOutListMeta}
51892
+ * @type {JsonApiApiTokenOutListMeta}
51488
51893
  * @memberof JsonApiAutomationOutList
51489
51894
  */
51490
- meta?: JsonApiAggregatedFactOutListMeta;
51895
+ meta?: JsonApiApiTokenOutListMeta;
51491
51896
  /**
51492
51897
  * Included resources
51493
51898
  * @type {Array<JsonApiAutomationOutIncludes>}
@@ -51538,6 +51943,26 @@ export declare interface JsonApiAutomationOutRelationships {
51538
51943
  * @memberof JsonApiAutomationOutRelationships
51539
51944
  */
51540
51945
  recipients?: JsonApiAutomationInRelationshipsRecipients;
51946
+ /**
51947
+ *
51948
+ * @type {JsonApiAutomationOutRelationshipsAutomationResult}
51949
+ * @memberof JsonApiAutomationOutRelationships
51950
+ */
51951
+ automationResult?: JsonApiAutomationOutRelationshipsAutomationResult;
51952
+ }
51953
+
51954
+ /**
51955
+ *
51956
+ * @export
51957
+ * @interface JsonApiAutomationOutRelationshipsAutomationResult
51958
+ */
51959
+ export declare interface JsonApiAutomationOutRelationshipsAutomationResult {
51960
+ /**
51961
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
51962
+ * @type {Array<JsonApiAutomationResultLinkage>}
51963
+ * @memberof JsonApiAutomationOutRelationshipsAutomationResult
51964
+ */
51965
+ data: Array<JsonApiAutomationResultLinkage>;
51541
51966
  }
51542
51967
 
51543
51968
  export declare const JsonApiAutomationOutTypeEnum: {
@@ -51648,6 +52073,155 @@ export declare const JsonApiAutomationPatchTypeEnum: {
51648
52073
 
51649
52074
  export declare type JsonApiAutomationPatchTypeEnum = (typeof JsonApiAutomationPatchTypeEnum)[keyof typeof JsonApiAutomationPatchTypeEnum];
51650
52075
 
52076
+ /**
52077
+ * The \\\"type\\\" and \\\"id\\\" to non-empty members.
52078
+ * @export
52079
+ * @interface JsonApiAutomationResultLinkage
52080
+ */
52081
+ export declare interface JsonApiAutomationResultLinkage {
52082
+ /**
52083
+ *
52084
+ * @type {string}
52085
+ * @memberof JsonApiAutomationResultLinkage
52086
+ */
52087
+ id: string;
52088
+ /**
52089
+ *
52090
+ * @type {string}
52091
+ * @memberof JsonApiAutomationResultLinkage
52092
+ */
52093
+ type: JsonApiAutomationResultLinkageTypeEnum;
52094
+ }
52095
+
52096
+ export declare const JsonApiAutomationResultLinkageTypeEnum: {
52097
+ readonly AUTOMATION_RESULT: "automationResult";
52098
+ };
52099
+
52100
+ export declare type JsonApiAutomationResultLinkageTypeEnum = (typeof JsonApiAutomationResultLinkageTypeEnum)[keyof typeof JsonApiAutomationResultLinkageTypeEnum];
52101
+
52102
+ /**
52103
+ * JSON:API representation of automationResult entity.
52104
+ * @export
52105
+ * @interface JsonApiAutomationResultOut
52106
+ */
52107
+ export declare interface JsonApiAutomationResultOut {
52108
+ /**
52109
+ * Object type
52110
+ * @type {string}
52111
+ * @memberof JsonApiAutomationResultOut
52112
+ */
52113
+ type: JsonApiAutomationResultOutTypeEnum;
52114
+ /**
52115
+ * API identifier of an object
52116
+ * @type {string}
52117
+ * @memberof JsonApiAutomationResultOut
52118
+ */
52119
+ id: string;
52120
+ /**
52121
+ *
52122
+ * @type {JsonApiAutomationResultOutAttributes}
52123
+ * @memberof JsonApiAutomationResultOut
52124
+ */
52125
+ attributes: JsonApiAutomationResultOutAttributes;
52126
+ /**
52127
+ *
52128
+ * @type {JsonApiAutomationResultOutRelationships}
52129
+ * @memberof JsonApiAutomationResultOut
52130
+ */
52131
+ relationships?: JsonApiAutomationResultOutRelationships;
52132
+ }
52133
+
52134
+ /**
52135
+ *
52136
+ * @export
52137
+ * @interface JsonApiAutomationResultOutAttributes
52138
+ */
52139
+ export declare interface JsonApiAutomationResultOutAttributes {
52140
+ /**
52141
+ * Status of the last automation run.
52142
+ * @type {string}
52143
+ * @memberof JsonApiAutomationResultOutAttributes
52144
+ */
52145
+ status: JsonApiAutomationResultOutAttributesStatusEnum;
52146
+ /**
52147
+ * Timestamp of the last automation run.
52148
+ * @type {string}
52149
+ * @memberof JsonApiAutomationResultOutAttributes
52150
+ */
52151
+ executedAt: string;
52152
+ }
52153
+
52154
+ export declare const JsonApiAutomationResultOutAttributesStatusEnum: {
52155
+ readonly SUCCESS: "SUCCESS";
52156
+ readonly FAILED: "FAILED";
52157
+ };
52158
+
52159
+ export declare type JsonApiAutomationResultOutAttributesStatusEnum = (typeof JsonApiAutomationResultOutAttributesStatusEnum)[keyof typeof JsonApiAutomationResultOutAttributesStatusEnum];
52160
+
52161
+ /**
52162
+ *
52163
+ * @export
52164
+ * @interface JsonApiAutomationResultOutRelationships
52165
+ */
52166
+ export declare interface JsonApiAutomationResultOutRelationships {
52167
+ /**
52168
+ *
52169
+ * @type {JsonApiExportDefinitionOutRelationshipsAutomation}
52170
+ * @memberof JsonApiAutomationResultOutRelationships
52171
+ */
52172
+ automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
52173
+ }
52174
+
52175
+ export declare const JsonApiAutomationResultOutTypeEnum: {
52176
+ readonly AUTOMATION_RESULT: "automationResult";
52177
+ };
52178
+
52179
+ export declare type JsonApiAutomationResultOutTypeEnum = (typeof JsonApiAutomationResultOutTypeEnum)[keyof typeof JsonApiAutomationResultOutTypeEnum];
52180
+
52181
+ /**
52182
+ *
52183
+ * @export
52184
+ * @interface JsonApiAutomationResultOutWithLinks
52185
+ */
52186
+ export declare interface JsonApiAutomationResultOutWithLinks {
52187
+ /**
52188
+ * Object type
52189
+ * @type {string}
52190
+ * @memberof JsonApiAutomationResultOutWithLinks
52191
+ */
52192
+ type: JsonApiAutomationResultOutWithLinksTypeEnum;
52193
+ /**
52194
+ * API identifier of an object
52195
+ * @type {string}
52196
+ * @memberof JsonApiAutomationResultOutWithLinks
52197
+ */
52198
+ id: string;
52199
+ /**
52200
+ *
52201
+ * @type {JsonApiAutomationResultOutAttributes}
52202
+ * @memberof JsonApiAutomationResultOutWithLinks
52203
+ */
52204
+ attributes: JsonApiAutomationResultOutAttributes;
52205
+ /**
52206
+ *
52207
+ * @type {JsonApiAutomationResultOutRelationships}
52208
+ * @memberof JsonApiAutomationResultOutWithLinks
52209
+ */
52210
+ relationships?: JsonApiAutomationResultOutRelationships;
52211
+ /**
52212
+ *
52213
+ * @type {ObjectLinks}
52214
+ * @memberof JsonApiAutomationResultOutWithLinks
52215
+ */
52216
+ links?: ObjectLinks;
52217
+ }
52218
+
52219
+ export declare const JsonApiAutomationResultOutWithLinksTypeEnum: {
52220
+ readonly AUTOMATION_RESULT: "automationResult";
52221
+ };
52222
+
52223
+ export declare type JsonApiAutomationResultOutWithLinksTypeEnum = (typeof JsonApiAutomationResultOutWithLinksTypeEnum)[keyof typeof JsonApiAutomationResultOutWithLinksTypeEnum];
52224
+
51651
52225
  /**
51652
52226
  * @type JsonApiAutomationToOneLinkage
51653
52227
  * References to other resource objects in a to-one (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
@@ -51787,10 +52361,10 @@ export declare interface JsonApiColorPaletteOutList {
51787
52361
  links?: ListLinks;
51788
52362
  /**
51789
52363
  *
51790
- * @type {JsonApiAggregatedFactOutListMeta}
52364
+ * @type {JsonApiApiTokenOutListMeta}
51791
52365
  * @memberof JsonApiColorPaletteOutList
51792
52366
  */
51793
- meta?: JsonApiAggregatedFactOutListMeta;
52367
+ meta?: JsonApiApiTokenOutListMeta;
51794
52368
  }
51795
52369
 
51796
52370
  export declare const JsonApiColorPaletteOutTypeEnum: {
@@ -51923,10 +52497,30 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
51923
52497
  id: string;
51924
52498
  /**
51925
52499
  *
51926
- * @type {JsonApiCookieSecurityConfigurationPatchAttributes}
52500
+ * @type {JsonApiCookieSecurityConfigurationInAttributes}
51927
52501
  * @memberof JsonApiCookieSecurityConfigurationIn
51928
52502
  */
51929
- attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
52503
+ attributes?: JsonApiCookieSecurityConfigurationInAttributes;
52504
+ }
52505
+
52506
+ /**
52507
+ *
52508
+ * @export
52509
+ * @interface JsonApiCookieSecurityConfigurationInAttributes
52510
+ */
52511
+ export declare interface JsonApiCookieSecurityConfigurationInAttributes {
52512
+ /**
52513
+ *
52514
+ * @type {string}
52515
+ * @memberof JsonApiCookieSecurityConfigurationInAttributes
52516
+ */
52517
+ lastRotation?: string;
52518
+ /**
52519
+ * Length of interval between automatic rotations expressed in format of ISO 8601 duration
52520
+ * @type {string}
52521
+ * @memberof JsonApiCookieSecurityConfigurationInAttributes
52522
+ */
52523
+ rotationInterval?: string;
51930
52524
  }
51931
52525
 
51932
52526
  /**
@@ -51969,10 +52563,10 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
51969
52563
  id: string;
51970
52564
  /**
51971
52565
  *
51972
- * @type {JsonApiCookieSecurityConfigurationPatchAttributes}
52566
+ * @type {JsonApiCookieSecurityConfigurationInAttributes}
51973
52567
  * @memberof JsonApiCookieSecurityConfigurationOut
51974
52568
  */
51975
- attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
52569
+ attributes?: JsonApiCookieSecurityConfigurationInAttributes;
51976
52570
  }
51977
52571
 
51978
52572
  /**
@@ -52021,30 +52615,10 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
52021
52615
  id: string;
52022
52616
  /**
52023
52617
  *
52024
- * @type {JsonApiCookieSecurityConfigurationPatchAttributes}
52618
+ * @type {JsonApiCookieSecurityConfigurationInAttributes}
52025
52619
  * @memberof JsonApiCookieSecurityConfigurationPatch
52026
52620
  */
52027
- attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
52028
- }
52029
-
52030
- /**
52031
- *
52032
- * @export
52033
- * @interface JsonApiCookieSecurityConfigurationPatchAttributes
52034
- */
52035
- export declare interface JsonApiCookieSecurityConfigurationPatchAttributes {
52036
- /**
52037
- *
52038
- * @type {string}
52039
- * @memberof JsonApiCookieSecurityConfigurationPatchAttributes
52040
- */
52041
- lastRotation?: string;
52042
- /**
52043
- * Length of interval between automatic rotations expressed in format of ISO 8601 duration
52044
- * @type {string}
52045
- * @memberof JsonApiCookieSecurityConfigurationPatchAttributes
52046
- */
52047
- rotationInterval?: string;
52621
+ attributes?: JsonApiCookieSecurityConfigurationInAttributes;
52048
52622
  }
52049
52623
 
52050
52624
  /**
@@ -52193,10 +52767,10 @@ export declare interface JsonApiCspDirectiveOutList {
52193
52767
  links?: ListLinks;
52194
52768
  /**
52195
52769
  *
52196
- * @type {JsonApiAggregatedFactOutListMeta}
52770
+ * @type {JsonApiApiTokenOutListMeta}
52197
52771
  * @memberof JsonApiCspDirectiveOutList
52198
52772
  */
52199
- meta?: JsonApiAggregatedFactOutListMeta;
52773
+ meta?: JsonApiApiTokenOutListMeta;
52200
52774
  }
52201
52775
 
52202
52776
  export declare const JsonApiCspDirectiveOutTypeEnum: {
@@ -52323,10 +52897,30 @@ export declare interface JsonApiCustomApplicationSettingIn {
52323
52897
  id: string;
52324
52898
  /**
52325
52899
  *
52326
- * @type {JsonApiCustomApplicationSettingPostOptionalIdAttributes}
52900
+ * @type {JsonApiCustomApplicationSettingInAttributes}
52327
52901
  * @memberof JsonApiCustomApplicationSettingIn
52328
52902
  */
52329
- attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
52903
+ attributes: JsonApiCustomApplicationSettingInAttributes;
52904
+ }
52905
+
52906
+ /**
52907
+ *
52908
+ * @export
52909
+ * @interface JsonApiCustomApplicationSettingInAttributes
52910
+ */
52911
+ export declare interface JsonApiCustomApplicationSettingInAttributes {
52912
+ /**
52913
+ *
52914
+ * @type {string}
52915
+ * @memberof JsonApiCustomApplicationSettingInAttributes
52916
+ */
52917
+ applicationName: string;
52918
+ /**
52919
+ * Free-form JSON content. Maximum supported length is 15000 characters.
52920
+ * @type {object}
52921
+ * @memberof JsonApiCustomApplicationSettingInAttributes
52922
+ */
52923
+ content: object;
52330
52924
  }
52331
52925
 
52332
52926
  /**
@@ -52375,10 +52969,10 @@ export declare interface JsonApiCustomApplicationSettingOut {
52375
52969
  meta?: JsonApiVisualizationObjectOutMeta;
52376
52970
  /**
52377
52971
  *
52378
- * @type {JsonApiCustomApplicationSettingPostOptionalIdAttributes}
52972
+ * @type {JsonApiCustomApplicationSettingInAttributes}
52379
52973
  * @memberof JsonApiCustomApplicationSettingOut
52380
52974
  */
52381
- attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
52975
+ attributes: JsonApiCustomApplicationSettingInAttributes;
52382
52976
  }
52383
52977
 
52384
52978
  /**
@@ -52421,10 +53015,10 @@ export declare interface JsonApiCustomApplicationSettingOutList {
52421
53015
  links?: ListLinks;
52422
53016
  /**
52423
53017
  *
52424
- * @type {JsonApiAggregatedFactOutListMeta}
53018
+ * @type {JsonApiApiTokenOutListMeta}
52425
53019
  * @memberof JsonApiCustomApplicationSettingOutList
52426
53020
  */
52427
- meta?: JsonApiAggregatedFactOutListMeta;
53021
+ meta?: JsonApiApiTokenOutListMeta;
52428
53022
  }
52429
53023
 
52430
53024
  export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
@@ -52459,10 +53053,10 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
52459
53053
  meta?: JsonApiVisualizationObjectOutMeta;
52460
53054
  /**
52461
53055
  *
52462
- * @type {JsonApiCustomApplicationSettingPostOptionalIdAttributes}
53056
+ * @type {JsonApiCustomApplicationSettingInAttributes}
52463
53057
  * @memberof JsonApiCustomApplicationSettingOutWithLinks
52464
53058
  */
52465
- attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
53059
+ attributes: JsonApiCustomApplicationSettingInAttributes;
52466
53060
  /**
52467
53061
  *
52468
53062
  * @type {ObjectLinks}
@@ -52563,30 +53157,10 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
52563
53157
  id?: string;
52564
53158
  /**
52565
53159
  *
52566
- * @type {JsonApiCustomApplicationSettingPostOptionalIdAttributes}
53160
+ * @type {JsonApiCustomApplicationSettingInAttributes}
52567
53161
  * @memberof JsonApiCustomApplicationSettingPostOptionalId
52568
53162
  */
52569
- attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
52570
- }
52571
-
52572
- /**
52573
- *
52574
- * @export
52575
- * @interface JsonApiCustomApplicationSettingPostOptionalIdAttributes
52576
- */
52577
- export declare interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
52578
- /**
52579
- *
52580
- * @type {string}
52581
- * @memberof JsonApiCustomApplicationSettingPostOptionalIdAttributes
52582
- */
52583
- applicationName: string;
52584
- /**
52585
- * Free-form JSON content. Maximum supported length is 15000 characters.
52586
- * @type {object}
52587
- * @memberof JsonApiCustomApplicationSettingPostOptionalIdAttributes
52588
- */
52589
- content: object;
53163
+ attributes: JsonApiCustomApplicationSettingInAttributes;
52590
53164
  }
52591
53165
 
52592
53166
  /**
@@ -52629,10 +53203,48 @@ export declare interface JsonApiDashboardPluginIn {
52629
53203
  id: string;
52630
53204
  /**
52631
53205
  *
52632
- * @type {JsonApiDashboardPluginPostOptionalIdAttributes}
53206
+ * @type {JsonApiDashboardPluginInAttributes}
52633
53207
  * @memberof JsonApiDashboardPluginIn
52634
53208
  */
52635
- attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
53209
+ attributes?: JsonApiDashboardPluginInAttributes;
53210
+ }
53211
+
53212
+ /**
53213
+ *
53214
+ * @export
53215
+ * @interface JsonApiDashboardPluginInAttributes
53216
+ */
53217
+ export declare interface JsonApiDashboardPluginInAttributes {
53218
+ /**
53219
+ *
53220
+ * @type {string}
53221
+ * @memberof JsonApiDashboardPluginInAttributes
53222
+ */
53223
+ title?: string;
53224
+ /**
53225
+ *
53226
+ * @type {string}
53227
+ * @memberof JsonApiDashboardPluginInAttributes
53228
+ */
53229
+ description?: string;
53230
+ /**
53231
+ *
53232
+ * @type {Array<string>}
53233
+ * @memberof JsonApiDashboardPluginInAttributes
53234
+ */
53235
+ tags?: Array<string>;
53236
+ /**
53237
+ *
53238
+ * @type {boolean}
53239
+ * @memberof JsonApiDashboardPluginInAttributes
53240
+ */
53241
+ areRelationsValid?: boolean;
53242
+ /**
53243
+ * Free-form JSON content. Maximum supported length is 250000 characters.
53244
+ * @type {object}
53245
+ * @memberof JsonApiDashboardPluginInAttributes
53246
+ */
53247
+ content?: object;
52636
53248
  }
52637
53249
 
52638
53250
  /**
@@ -52815,10 +53427,10 @@ export declare interface JsonApiDashboardPluginOutList {
52815
53427
  links?: ListLinks;
52816
53428
  /**
52817
53429
  *
52818
- * @type {JsonApiAggregatedFactOutListMeta}
53430
+ * @type {JsonApiApiTokenOutListMeta}
52819
53431
  * @memberof JsonApiDashboardPluginOutList
52820
53432
  */
52821
- meta?: JsonApiAggregatedFactOutListMeta;
53433
+ meta?: JsonApiApiTokenOutListMeta;
52822
53434
  /**
52823
53435
  * Included resources
52824
53436
  * @type {Array<JsonApiUserIdentifierOutWithLinks>}
@@ -52923,10 +53535,10 @@ export declare interface JsonApiDashboardPluginPatch {
52923
53535
  id: string;
52924
53536
  /**
52925
53537
  *
52926
- * @type {JsonApiDashboardPluginPostOptionalIdAttributes}
53538
+ * @type {JsonApiDashboardPluginInAttributes}
52927
53539
  * @memberof JsonApiDashboardPluginPatch
52928
53540
  */
52929
- attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
53541
+ attributes?: JsonApiDashboardPluginInAttributes;
52930
53542
  }
52931
53543
 
52932
53544
  /**
@@ -52969,48 +53581,10 @@ export declare interface JsonApiDashboardPluginPostOptionalId {
52969
53581
  id?: string;
52970
53582
  /**
52971
53583
  *
52972
- * @type {JsonApiDashboardPluginPostOptionalIdAttributes}
53584
+ * @type {JsonApiDashboardPluginInAttributes}
52973
53585
  * @memberof JsonApiDashboardPluginPostOptionalId
52974
53586
  */
52975
- attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
52976
- }
52977
-
52978
- /**
52979
- *
52980
- * @export
52981
- * @interface JsonApiDashboardPluginPostOptionalIdAttributes
52982
- */
52983
- export declare interface JsonApiDashboardPluginPostOptionalIdAttributes {
52984
- /**
52985
- *
52986
- * @type {string}
52987
- * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
52988
- */
52989
- title?: string;
52990
- /**
52991
- *
52992
- * @type {string}
52993
- * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
52994
- */
52995
- description?: string;
52996
- /**
52997
- *
52998
- * @type {Array<string>}
52999
- * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
53000
- */
53001
- tags?: Array<string>;
53002
- /**
53003
- *
53004
- * @type {boolean}
53005
- * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
53006
- */
53007
- areRelationsValid?: boolean;
53008
- /**
53009
- * Free-form JSON content. Maximum supported length is 250000 characters.
53010
- * @type {object}
53011
- * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
53012
- */
53013
- content?: object;
53587
+ attributes?: JsonApiDashboardPluginInAttributes;
53014
53588
  }
53015
53589
 
53016
53590
  /**
@@ -53409,10 +53983,10 @@ export declare interface JsonApiDatasetOutList {
53409
53983
  links?: ListLinks;
53410
53984
  /**
53411
53985
  *
53412
- * @type {JsonApiAggregatedFactOutListMeta}
53986
+ * @type {JsonApiApiTokenOutListMeta}
53413
53987
  * @memberof JsonApiDatasetOutList
53414
53988
  */
53415
- meta?: JsonApiAggregatedFactOutListMeta;
53989
+ meta?: JsonApiApiTokenOutListMeta;
53416
53990
  /**
53417
53991
  * Included resources
53418
53992
  * @type {Array<JsonApiDatasetOutIncludes>}
@@ -53634,6 +54208,7 @@ export declare const JsonApiDataSourceIdentifierOutAttributesTypeEnum: {
53634
54208
  readonly FLEXCONNECT: "FLEXCONNECT";
53635
54209
  readonly STARROCKS: "STARROCKS";
53636
54210
  readonly ATHENA: "ATHENA";
54211
+ readonly MONGODB: "MONGODB";
53637
54212
  };
53638
54213
 
53639
54214
  export declare type JsonApiDataSourceIdentifierOutAttributesTypeEnum = (typeof JsonApiDataSourceIdentifierOutAttributesTypeEnum)[keyof typeof JsonApiDataSourceIdentifierOutAttributesTypeEnum];
@@ -53678,10 +54253,10 @@ export declare interface JsonApiDataSourceIdentifierOutList {
53678
54253
  links?: ListLinks;
53679
54254
  /**
53680
54255
  *
53681
- * @type {JsonApiAggregatedFactOutListMeta}
54256
+ * @type {JsonApiApiTokenOutListMeta}
53682
54257
  * @memberof JsonApiDataSourceIdentifierOutList
53683
54258
  */
53684
- meta?: JsonApiAggregatedFactOutListMeta;
54259
+ meta?: JsonApiApiTokenOutListMeta;
53685
54260
  }
53686
54261
 
53687
54262
  export declare const JsonApiDataSourceIdentifierOutTypeEnum: {
@@ -53899,6 +54474,7 @@ export declare const JsonApiDataSourceInAttributesTypeEnum: {
53899
54474
  readonly FLEXCONNECT: "FLEXCONNECT";
53900
54475
  readonly STARROCKS: "STARROCKS";
53901
54476
  readonly ATHENA: "ATHENA";
54477
+ readonly MONGODB: "MONGODB";
53902
54478
  };
53903
54479
 
53904
54480
  export declare type JsonApiDataSourceInAttributesTypeEnum = (typeof JsonApiDataSourceInAttributesTypeEnum)[keyof typeof JsonApiDataSourceInAttributesTypeEnum];
@@ -54066,6 +54642,7 @@ export declare const JsonApiDataSourceOutAttributesTypeEnum: {
54066
54642
  readonly FLEXCONNECT: "FLEXCONNECT";
54067
54643
  readonly STARROCKS: "STARROCKS";
54068
54644
  readonly ATHENA: "ATHENA";
54645
+ readonly MONGODB: "MONGODB";
54069
54646
  };
54070
54647
 
54071
54648
  export declare type JsonApiDataSourceOutAttributesTypeEnum = (typeof JsonApiDataSourceOutAttributesTypeEnum)[keyof typeof JsonApiDataSourceOutAttributesTypeEnum];
@@ -54110,10 +54687,10 @@ export declare interface JsonApiDataSourceOutList {
54110
54687
  links?: ListLinks;
54111
54688
  /**
54112
54689
  *
54113
- * @type {JsonApiAggregatedFactOutListMeta}
54690
+ * @type {JsonApiApiTokenOutListMeta}
54114
54691
  * @memberof JsonApiDataSourceOutList
54115
54692
  */
54116
- meta?: JsonApiAggregatedFactOutListMeta;
54693
+ meta?: JsonApiApiTokenOutListMeta;
54117
54694
  }
54118
54695
 
54119
54696
  /**
@@ -54332,6 +54909,7 @@ export declare const JsonApiDataSourcePatchAttributesTypeEnum: {
54332
54909
  readonly FLEXCONNECT: "FLEXCONNECT";
54333
54910
  readonly STARROCKS: "STARROCKS";
54334
54911
  readonly ATHENA: "ATHENA";
54912
+ readonly MONGODB: "MONGODB";
54335
54913
  };
54336
54914
 
54337
54915
  export declare type JsonApiDataSourcePatchAttributesTypeEnum = (typeof JsonApiDataSourcePatchAttributesTypeEnum)[keyof typeof JsonApiDataSourcePatchAttributesTypeEnum];
@@ -54442,10 +55020,10 @@ export declare interface JsonApiEntitlementOutList {
54442
55020
  links?: ListLinks;
54443
55021
  /**
54444
55022
  *
54445
- * @type {JsonApiAggregatedFactOutListMeta}
55023
+ * @type {JsonApiApiTokenOutListMeta}
54446
55024
  * @memberof JsonApiEntitlementOutList
54447
55025
  */
54448
- meta?: JsonApiAggregatedFactOutListMeta;
55026
+ meta?: JsonApiApiTokenOutListMeta;
54449
55027
  }
54450
55028
 
54451
55029
  export declare const JsonApiEntitlementOutTypeEnum: {
@@ -54512,16 +55090,54 @@ export declare interface JsonApiExportDefinitionIn {
54512
55090
  id: string;
54513
55091
  /**
54514
55092
  *
54515
- * @type {JsonApiExportDefinitionPostOptionalIdAttributes}
55093
+ * @type {JsonApiExportDefinitionInAttributes}
54516
55094
  * @memberof JsonApiExportDefinitionIn
54517
55095
  */
54518
- attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
55096
+ attributes?: JsonApiExportDefinitionInAttributes;
54519
55097
  /**
54520
55098
  *
54521
- * @type {JsonApiExportDefinitionPostOptionalIdRelationships}
55099
+ * @type {JsonApiExportDefinitionInRelationships}
54522
55100
  * @memberof JsonApiExportDefinitionIn
54523
55101
  */
54524
- relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
55102
+ relationships?: JsonApiExportDefinitionInRelationships;
55103
+ }
55104
+
55105
+ /**
55106
+ *
55107
+ * @export
55108
+ * @interface JsonApiExportDefinitionInAttributes
55109
+ */
55110
+ export declare interface JsonApiExportDefinitionInAttributes {
55111
+ /**
55112
+ *
55113
+ * @type {string}
55114
+ * @memberof JsonApiExportDefinitionInAttributes
55115
+ */
55116
+ title?: string;
55117
+ /**
55118
+ *
55119
+ * @type {string}
55120
+ * @memberof JsonApiExportDefinitionInAttributes
55121
+ */
55122
+ description?: string;
55123
+ /**
55124
+ *
55125
+ * @type {Array<string>}
55126
+ * @memberof JsonApiExportDefinitionInAttributes
55127
+ */
55128
+ tags?: Array<string>;
55129
+ /**
55130
+ * JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
55131
+ * @type {VisualExportRequest | TabularExportRequest}
55132
+ * @memberof JsonApiExportDefinitionInAttributes
55133
+ */
55134
+ requestPayload?: VisualExportRequest | TabularExportRequest;
55135
+ /**
55136
+ *
55137
+ * @type {boolean}
55138
+ * @memberof JsonApiExportDefinitionInAttributes
55139
+ */
55140
+ areRelationsValid?: boolean;
54525
55141
  }
54526
55142
 
54527
55143
  /**
@@ -54538,6 +55154,26 @@ export declare interface JsonApiExportDefinitionInDocument {
54538
55154
  data: JsonApiExportDefinitionIn;
54539
55155
  }
54540
55156
 
55157
+ /**
55158
+ *
55159
+ * @export
55160
+ * @interface JsonApiExportDefinitionInRelationships
55161
+ */
55162
+ export declare interface JsonApiExportDefinitionInRelationships {
55163
+ /**
55164
+ *
55165
+ * @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
55166
+ * @memberof JsonApiExportDefinitionInRelationships
55167
+ */
55168
+ visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
55169
+ /**
55170
+ *
55171
+ * @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
55172
+ * @memberof JsonApiExportDefinitionInRelationships
55173
+ */
55174
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
55175
+ }
55176
+
54541
55177
  export declare const JsonApiExportDefinitionInTypeEnum: {
54542
55178
  readonly EXPORT_DEFINITION: "exportDefinition";
54543
55179
  };
@@ -54710,10 +55346,10 @@ export declare interface JsonApiExportDefinitionOutList {
54710
55346
  links?: ListLinks;
54711
55347
  /**
54712
55348
  *
54713
- * @type {JsonApiAggregatedFactOutListMeta}
55349
+ * @type {JsonApiApiTokenOutListMeta}
54714
55350
  * @memberof JsonApiExportDefinitionOutList
54715
55351
  */
54716
- meta?: JsonApiAggregatedFactOutListMeta;
55352
+ meta?: JsonApiApiTokenOutListMeta;
54717
55353
  /**
54718
55354
  * Included resources
54719
55355
  * @type {Array<JsonApiExportDefinitionOutIncludes>}
@@ -54864,16 +55500,16 @@ export declare interface JsonApiExportDefinitionPatch {
54864
55500
  id: string;
54865
55501
  /**
54866
55502
  *
54867
- * @type {JsonApiExportDefinitionPostOptionalIdAttributes}
55503
+ * @type {JsonApiExportDefinitionInAttributes}
54868
55504
  * @memberof JsonApiExportDefinitionPatch
54869
55505
  */
54870
- attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
55506
+ attributes?: JsonApiExportDefinitionInAttributes;
54871
55507
  /**
54872
55508
  *
54873
- * @type {JsonApiExportDefinitionPostOptionalIdRelationships}
55509
+ * @type {JsonApiExportDefinitionInRelationships}
54874
55510
  * @memberof JsonApiExportDefinitionPatch
54875
55511
  */
54876
- relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
55512
+ relationships?: JsonApiExportDefinitionInRelationships;
54877
55513
  }
54878
55514
 
54879
55515
  /**
@@ -54916,54 +55552,16 @@ export declare interface JsonApiExportDefinitionPostOptionalId {
54916
55552
  id?: string;
54917
55553
  /**
54918
55554
  *
54919
- * @type {JsonApiExportDefinitionPostOptionalIdAttributes}
55555
+ * @type {JsonApiExportDefinitionInAttributes}
54920
55556
  * @memberof JsonApiExportDefinitionPostOptionalId
54921
55557
  */
54922
- attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
55558
+ attributes?: JsonApiExportDefinitionInAttributes;
54923
55559
  /**
54924
55560
  *
54925
- * @type {JsonApiExportDefinitionPostOptionalIdRelationships}
55561
+ * @type {JsonApiExportDefinitionInRelationships}
54926
55562
  * @memberof JsonApiExportDefinitionPostOptionalId
54927
55563
  */
54928
- relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
54929
- }
54930
-
54931
- /**
54932
- *
54933
- * @export
54934
- * @interface JsonApiExportDefinitionPostOptionalIdAttributes
54935
- */
54936
- export declare interface JsonApiExportDefinitionPostOptionalIdAttributes {
54937
- /**
54938
- *
54939
- * @type {string}
54940
- * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
54941
- */
54942
- title?: string;
54943
- /**
54944
- *
54945
- * @type {string}
54946
- * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
54947
- */
54948
- description?: string;
54949
- /**
54950
- *
54951
- * @type {Array<string>}
54952
- * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
54953
- */
54954
- tags?: Array<string>;
54955
- /**
54956
- * JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
54957
- * @type {VisualExportRequest | TabularExportRequest}
54958
- * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
54959
- */
54960
- requestPayload?: VisualExportRequest | TabularExportRequest;
54961
- /**
54962
- *
54963
- * @type {boolean}
54964
- * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
54965
- */
54966
- areRelationsValid?: boolean;
55564
+ relationships?: JsonApiExportDefinitionInRelationships;
54967
55565
  }
54968
55566
 
54969
55567
  /**
@@ -54980,26 +55578,6 @@ export declare interface JsonApiExportDefinitionPostOptionalIdDocument {
54980
55578
  data: JsonApiExportDefinitionPostOptionalId;
54981
55579
  }
54982
55580
 
54983
- /**
54984
- *
54985
- * @export
54986
- * @interface JsonApiExportDefinitionPostOptionalIdRelationships
54987
- */
54988
- export declare interface JsonApiExportDefinitionPostOptionalIdRelationships {
54989
- /**
54990
- *
54991
- * @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
54992
- * @memberof JsonApiExportDefinitionPostOptionalIdRelationships
54993
- */
54994
- visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
54995
- /**
54996
- *
54997
- * @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
54998
- * @memberof JsonApiExportDefinitionPostOptionalIdRelationships
54999
- */
55000
- analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
55001
- }
55002
-
55003
55581
  export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
55004
55582
  readonly EXPORT_DEFINITION: "exportDefinition";
55005
55583
  };
@@ -55118,10 +55696,10 @@ export declare interface JsonApiExportTemplateOutList {
55118
55696
  links?: ListLinks;
55119
55697
  /**
55120
55698
  *
55121
- * @type {JsonApiAggregatedFactOutListMeta}
55699
+ * @type {JsonApiApiTokenOutListMeta}
55122
55700
  * @memberof JsonApiExportTemplateOutList
55123
55701
  */
55124
- meta?: JsonApiAggregatedFactOutListMeta;
55702
+ meta?: JsonApiApiTokenOutListMeta;
55125
55703
  }
55126
55704
 
55127
55705
  export declare const JsonApiExportTemplateOutTypeEnum: {
@@ -55550,10 +56128,10 @@ export declare interface JsonApiFactOutList {
55550
56128
  links?: ListLinks;
55551
56129
  /**
55552
56130
  *
55553
- * @type {JsonApiAggregatedFactOutListMeta}
56131
+ * @type {JsonApiApiTokenOutListMeta}
55554
56132
  * @memberof JsonApiFactOutList
55555
56133
  */
55556
- meta?: JsonApiAggregatedFactOutListMeta;
56134
+ meta?: JsonApiApiTokenOutListMeta;
55557
56135
  /**
55558
56136
  * Included resources
55559
56137
  * @type {Array<JsonApiDatasetOutWithLinks>}
@@ -55659,10 +56237,10 @@ export declare interface JsonApiFilterContextIn {
55659
56237
  id: string;
55660
56238
  /**
55661
56239
  *
55662
- * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
56240
+ * @type {JsonApiAnalyticalDashboardInAttributes}
55663
56241
  * @memberof JsonApiFilterContextIn
55664
56242
  */
55665
- attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
56243
+ attributes: JsonApiAnalyticalDashboardInAttributes;
55666
56244
  }
55667
56245
 
55668
56246
  /**
@@ -55737,10 +56315,10 @@ export declare interface JsonApiFilterContextOut {
55737
56315
  meta?: JsonApiVisualizationObjectOutMeta;
55738
56316
  /**
55739
56317
  *
55740
- * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
56318
+ * @type {JsonApiAnalyticalDashboardInAttributes}
55741
56319
  * @memberof JsonApiFilterContextOut
55742
56320
  */
55743
- attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
56321
+ attributes: JsonApiAnalyticalDashboardInAttributes;
55744
56322
  /**
55745
56323
  *
55746
56324
  * @type {JsonApiFilterContextOutRelationships}
@@ -55801,10 +56379,10 @@ export declare interface JsonApiFilterContextOutList {
55801
56379
  links?: ListLinks;
55802
56380
  /**
55803
56381
  *
55804
- * @type {JsonApiAggregatedFactOutListMeta}
56382
+ * @type {JsonApiApiTokenOutListMeta}
55805
56383
  * @memberof JsonApiFilterContextOutList
55806
56384
  */
55807
- meta?: JsonApiAggregatedFactOutListMeta;
56385
+ meta?: JsonApiApiTokenOutListMeta;
55808
56386
  /**
55809
56387
  * Included resources
55810
56388
  * @type {Array<JsonApiFilterContextOutIncludes>}
@@ -55871,10 +56449,10 @@ export declare interface JsonApiFilterContextOutWithLinks {
55871
56449
  meta?: JsonApiVisualizationObjectOutMeta;
55872
56450
  /**
55873
56451
  *
55874
- * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
56452
+ * @type {JsonApiAnalyticalDashboardInAttributes}
55875
56453
  * @memberof JsonApiFilterContextOutWithLinks
55876
56454
  */
55877
- attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
56455
+ attributes: JsonApiAnalyticalDashboardInAttributes;
55878
56456
  /**
55879
56457
  *
55880
56458
  * @type {JsonApiFilterContextOutRelationships}
@@ -55961,10 +56539,10 @@ export declare interface JsonApiFilterContextPostOptionalId {
55961
56539
  id?: string;
55962
56540
  /**
55963
56541
  *
55964
- * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
56542
+ * @type {JsonApiAnalyticalDashboardInAttributes}
55965
56543
  * @memberof JsonApiFilterContextPostOptionalId
55966
56544
  */
55967
- attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
56545
+ attributes: JsonApiAnalyticalDashboardInAttributes;
55968
56546
  }
55969
56547
 
55970
56548
  /**
@@ -56201,10 +56779,10 @@ export declare interface JsonApiFilterViewOutList {
56201
56779
  links?: ListLinks;
56202
56780
  /**
56203
56781
  *
56204
- * @type {JsonApiAggregatedFactOutListMeta}
56782
+ * @type {JsonApiApiTokenOutListMeta}
56205
56783
  * @memberof JsonApiFilterViewOutList
56206
56784
  */
56207
- meta?: JsonApiAggregatedFactOutListMeta;
56785
+ meta?: JsonApiApiTokenOutListMeta;
56208
56786
  /**
56209
56787
  * Included resources
56210
56788
  * @type {Array<JsonApiFilterViewOutIncludes>}
@@ -56664,10 +57242,10 @@ export declare interface JsonApiIdentityProviderOutList {
56664
57242
  links?: ListLinks;
56665
57243
  /**
56666
57244
  *
56667
- * @type {JsonApiAggregatedFactOutListMeta}
57245
+ * @type {JsonApiApiTokenOutListMeta}
56668
57246
  * @memberof JsonApiIdentityProviderOutList
56669
57247
  */
56670
- meta?: JsonApiAggregatedFactOutListMeta;
57248
+ meta?: JsonApiApiTokenOutListMeta;
56671
57249
  }
56672
57250
 
56673
57251
  export declare const JsonApiIdentityProviderOutTypeEnum: {
@@ -56893,10 +57471,10 @@ export declare interface JsonApiJwkOutList {
56893
57471
  links?: ListLinks;
56894
57472
  /**
56895
57473
  *
56896
- * @type {JsonApiAggregatedFactOutListMeta}
57474
+ * @type {JsonApiApiTokenOutListMeta}
56897
57475
  * @memberof JsonApiJwkOutList
56898
57476
  */
56899
- meta?: JsonApiAggregatedFactOutListMeta;
57477
+ meta?: JsonApiApiTokenOutListMeta;
56900
57478
  }
56901
57479
 
56902
57480
  export declare const JsonApiJwkOutTypeEnum: {
@@ -57178,10 +57756,10 @@ export declare interface JsonApiLabelOutList {
57178
57756
  links?: ListLinks;
57179
57757
  /**
57180
57758
  *
57181
- * @type {JsonApiAggregatedFactOutListMeta}
57759
+ * @type {JsonApiApiTokenOutListMeta}
57182
57760
  * @memberof JsonApiLabelOutList
57183
57761
  */
57184
- meta?: JsonApiAggregatedFactOutListMeta;
57762
+ meta?: JsonApiApiTokenOutListMeta;
57185
57763
  /**
57186
57764
  * Included resources
57187
57765
  * @type {Array<JsonApiAttributeOutWithLinks>}
@@ -57489,10 +58067,10 @@ export declare interface JsonApiLlmEndpointOutList {
57489
58067
  links?: ListLinks;
57490
58068
  /**
57491
58069
  *
57492
- * @type {JsonApiAggregatedFactOutListMeta}
58070
+ * @type {JsonApiApiTokenOutListMeta}
57493
58071
  * @memberof JsonApiLlmEndpointOutList
57494
58072
  */
57495
- meta?: JsonApiAggregatedFactOutListMeta;
58073
+ meta?: JsonApiApiTokenOutListMeta;
57496
58074
  }
57497
58075
 
57498
58076
  export declare const JsonApiLlmEndpointOutTypeEnum: {
@@ -57656,10 +58234,48 @@ export declare interface JsonApiMetricIn {
57656
58234
  id: string;
57657
58235
  /**
57658
58236
  *
57659
- * @type {JsonApiMetricPostOptionalIdAttributes}
58237
+ * @type {JsonApiMetricInAttributes}
57660
58238
  * @memberof JsonApiMetricIn
57661
58239
  */
57662
- attributes: JsonApiMetricPostOptionalIdAttributes;
58240
+ attributes: JsonApiMetricInAttributes;
58241
+ }
58242
+
58243
+ /**
58244
+ *
58245
+ * @export
58246
+ * @interface JsonApiMetricInAttributes
58247
+ */
58248
+ export declare interface JsonApiMetricInAttributes {
58249
+ /**
58250
+ *
58251
+ * @type {string}
58252
+ * @memberof JsonApiMetricInAttributes
58253
+ */
58254
+ title?: string;
58255
+ /**
58256
+ *
58257
+ * @type {string}
58258
+ * @memberof JsonApiMetricInAttributes
58259
+ */
58260
+ description?: string;
58261
+ /**
58262
+ *
58263
+ * @type {Array<string>}
58264
+ * @memberof JsonApiMetricInAttributes
58265
+ */
58266
+ tags?: Array<string>;
58267
+ /**
58268
+ *
58269
+ * @type {boolean}
58270
+ * @memberof JsonApiMetricInAttributes
58271
+ */
58272
+ areRelationsValid?: boolean;
58273
+ /**
58274
+ *
58275
+ * @type {JsonApiMetricOutAttributesContent}
58276
+ * @memberof JsonApiMetricInAttributes
58277
+ */
58278
+ content: JsonApiMetricOutAttributesContent;
57663
58279
  }
57664
58280
 
57665
58281
  /**
@@ -57868,10 +58484,10 @@ export declare interface JsonApiMetricOutList {
57868
58484
  links?: ListLinks;
57869
58485
  /**
57870
58486
  *
57871
- * @type {JsonApiAggregatedFactOutListMeta}
58487
+ * @type {JsonApiApiTokenOutListMeta}
57872
58488
  * @memberof JsonApiMetricOutList
57873
58489
  */
57874
- meta?: JsonApiAggregatedFactOutListMeta;
58490
+ meta?: JsonApiApiTokenOutListMeta;
57875
58491
  /**
57876
58492
  * Included resources
57877
58493
  * @type {Array<JsonApiMetricOutIncludes>}
@@ -58040,48 +58656,10 @@ export declare interface JsonApiMetricPostOptionalId {
58040
58656
  id?: string;
58041
58657
  /**
58042
58658
  *
58043
- * @type {JsonApiMetricPostOptionalIdAttributes}
58659
+ * @type {JsonApiMetricInAttributes}
58044
58660
  * @memberof JsonApiMetricPostOptionalId
58045
58661
  */
58046
- attributes: JsonApiMetricPostOptionalIdAttributes;
58047
- }
58048
-
58049
- /**
58050
- *
58051
- * @export
58052
- * @interface JsonApiMetricPostOptionalIdAttributes
58053
- */
58054
- export declare interface JsonApiMetricPostOptionalIdAttributes {
58055
- /**
58056
- *
58057
- * @type {string}
58058
- * @memberof JsonApiMetricPostOptionalIdAttributes
58059
- */
58060
- title?: string;
58061
- /**
58062
- *
58063
- * @type {string}
58064
- * @memberof JsonApiMetricPostOptionalIdAttributes
58065
- */
58066
- description?: string;
58067
- /**
58068
- *
58069
- * @type {Array<string>}
58070
- * @memberof JsonApiMetricPostOptionalIdAttributes
58071
- */
58072
- tags?: Array<string>;
58073
- /**
58074
- *
58075
- * @type {boolean}
58076
- * @memberof JsonApiMetricPostOptionalIdAttributes
58077
- */
58078
- areRelationsValid?: boolean;
58079
- /**
58080
- *
58081
- * @type {JsonApiMetricOutAttributesContent}
58082
- * @memberof JsonApiMetricPostOptionalIdAttributes
58083
- */
58084
- content: JsonApiMetricOutAttributesContent;
58662
+ attributes: JsonApiMetricInAttributes;
58085
58663
  }
58086
58664
 
58087
58665
  /**
@@ -58219,10 +58797,10 @@ export declare interface JsonApiNotificationChannelIdentifierOutList {
58219
58797
  links?: ListLinks;
58220
58798
  /**
58221
58799
  *
58222
- * @type {JsonApiAggregatedFactOutListMeta}
58800
+ * @type {JsonApiApiTokenOutListMeta}
58223
58801
  * @memberof JsonApiNotificationChannelIdentifierOutList
58224
58802
  */
58225
- meta?: JsonApiAggregatedFactOutListMeta;
58803
+ meta?: JsonApiApiTokenOutListMeta;
58226
58804
  }
58227
58805
 
58228
58806
  export declare const JsonApiNotificationChannelIdentifierOutTypeEnum: {
@@ -58501,10 +59079,10 @@ export declare interface JsonApiNotificationChannelOutList {
58501
59079
  links?: ListLinks;
58502
59080
  /**
58503
59081
  *
58504
- * @type {JsonApiAggregatedFactOutListMeta}
59082
+ * @type {JsonApiApiTokenOutListMeta}
58505
59083
  * @memberof JsonApiNotificationChannelOutList
58506
59084
  */
58507
- meta?: JsonApiAggregatedFactOutListMeta;
59085
+ meta?: JsonApiApiTokenOutListMeta;
58508
59086
  }
58509
59087
 
58510
59088
  export declare const JsonApiNotificationChannelOutTypeEnum: {
@@ -58749,16 +59327,99 @@ export declare interface JsonApiOrganizationIn {
58749
59327
  id: string;
58750
59328
  /**
58751
59329
  *
58752
- * @type {JsonApiOrganizationPatchAttributes}
59330
+ * @type {JsonApiOrganizationInAttributes}
58753
59331
  * @memberof JsonApiOrganizationIn
58754
59332
  */
58755
- attributes?: JsonApiOrganizationPatchAttributes;
59333
+ attributes?: JsonApiOrganizationInAttributes;
58756
59334
  /**
58757
59335
  *
58758
- * @type {JsonApiOrganizationPatchRelationships}
59336
+ * @type {JsonApiOrganizationInRelationships}
58759
59337
  * @memberof JsonApiOrganizationIn
58760
59338
  */
58761
- relationships?: JsonApiOrganizationPatchRelationships;
59339
+ relationships?: JsonApiOrganizationInRelationships;
59340
+ }
59341
+
59342
+ /**
59343
+ *
59344
+ * @export
59345
+ * @interface JsonApiOrganizationInAttributes
59346
+ */
59347
+ export declare interface JsonApiOrganizationInAttributes {
59348
+ /**
59349
+ *
59350
+ * @type {string}
59351
+ * @memberof JsonApiOrganizationInAttributes
59352
+ */
59353
+ name?: string | null;
59354
+ /**
59355
+ *
59356
+ * @type {string}
59357
+ * @memberof JsonApiOrganizationInAttributes
59358
+ */
59359
+ hostname?: string;
59360
+ /**
59361
+ *
59362
+ * @type {Array<string>}
59363
+ * @memberof JsonApiOrganizationInAttributes
59364
+ */
59365
+ allowedOrigins?: Array<string>;
59366
+ /**
59367
+ *
59368
+ * @type {string}
59369
+ * @memberof JsonApiOrganizationInAttributes
59370
+ */
59371
+ oauthIssuerLocation?: string;
59372
+ /**
59373
+ *
59374
+ * @type {string}
59375
+ * @memberof JsonApiOrganizationInAttributes
59376
+ */
59377
+ oauthClientId?: string;
59378
+ /**
59379
+ *
59380
+ * @type {string}
59381
+ * @memberof JsonApiOrganizationInAttributes
59382
+ */
59383
+ oauthClientSecret?: string;
59384
+ /**
59385
+ * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
59386
+ * @type {string}
59387
+ * @memberof JsonApiOrganizationInAttributes
59388
+ * @deprecated
59389
+ */
59390
+ earlyAccess?: string | null;
59391
+ /**
59392
+ * The early access feature identifiers. They are used to enable experimental features.
59393
+ * @type {Array<string>}
59394
+ * @memberof JsonApiOrganizationInAttributes
59395
+ */
59396
+ earlyAccessValues?: Array<string> | null;
59397
+ /**
59398
+ * 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.
59399
+ * @type {string}
59400
+ * @memberof JsonApiOrganizationInAttributes
59401
+ */
59402
+ oauthIssuerId?: string;
59403
+ /**
59404
+ * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
59405
+ * @type {string}
59406
+ * @memberof JsonApiOrganizationInAttributes
59407
+ */
59408
+ oauthSubjectIdClaim?: string;
59409
+ /**
59410
+ * 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.
59411
+ * @type {{ [key: string]: string; }}
59412
+ * @memberof JsonApiOrganizationInAttributes
59413
+ */
59414
+ oauthCustomAuthAttributes?: {
59415
+ [key: string]: string;
59416
+ };
59417
+ /**
59418
+ * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
59419
+ * @type {Array<string>}
59420
+ * @memberof JsonApiOrganizationInAttributes
59421
+ */
59422
+ oauthCustomScopes?: Array<string> | null;
58762
59423
  }
58763
59424
 
58764
59425
  /**
@@ -58775,6 +59436,34 @@ export declare interface JsonApiOrganizationInDocument {
58775
59436
  data: JsonApiOrganizationIn;
58776
59437
  }
58777
59438
 
59439
+ /**
59440
+ *
59441
+ * @export
59442
+ * @interface JsonApiOrganizationInRelationships
59443
+ */
59444
+ export declare interface JsonApiOrganizationInRelationships {
59445
+ /**
59446
+ *
59447
+ * @type {JsonApiOrganizationInRelationshipsIdentityProvider}
59448
+ * @memberof JsonApiOrganizationInRelationships
59449
+ */
59450
+ identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
59451
+ }
59452
+
59453
+ /**
59454
+ *
59455
+ * @export
59456
+ * @interface JsonApiOrganizationInRelationshipsIdentityProvider
59457
+ */
59458
+ export declare interface JsonApiOrganizationInRelationshipsIdentityProvider {
59459
+ /**
59460
+ *
59461
+ * @type {JsonApiIdentityProviderToOneLinkage}
59462
+ * @memberof JsonApiOrganizationInRelationshipsIdentityProvider
59463
+ */
59464
+ data: JsonApiIdentityProviderToOneLinkage | null;
59465
+ }
59466
+
58778
59467
  export declare const JsonApiOrganizationInTypeEnum: {
58779
59468
  readonly ORGANIZATION: "organization";
58780
59469
  };
@@ -58996,16 +59685,16 @@ export declare interface JsonApiOrganizationOutRelationships {
58996
59685
  bootstrapUser?: JsonApiFilterViewInRelationshipsUser;
58997
59686
  /**
58998
59687
  *
58999
- * @type {JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup}
59688
+ * @type {JsonApiUserDataFilterInRelationshipsUserGroup}
59000
59689
  * @memberof JsonApiOrganizationOutRelationships
59001
59690
  */
59002
- bootstrapUserGroup?: JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup;
59691
+ bootstrapUserGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
59003
59692
  /**
59004
59693
  *
59005
- * @type {JsonApiOrganizationPatchRelationshipsIdentityProvider}
59694
+ * @type {JsonApiOrganizationInRelationshipsIdentityProvider}
59006
59695
  * @memberof JsonApiOrganizationOutRelationships
59007
59696
  */
59008
- identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
59697
+ identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
59009
59698
  }
59010
59699
 
59011
59700
  export declare const JsonApiOrganizationOutTypeEnum: {
@@ -59034,99 +59723,16 @@ export declare interface JsonApiOrganizationPatch {
59034
59723
  id: string;
59035
59724
  /**
59036
59725
  *
59037
- * @type {JsonApiOrganizationPatchAttributes}
59726
+ * @type {JsonApiOrganizationInAttributes}
59038
59727
  * @memberof JsonApiOrganizationPatch
59039
59728
  */
59040
- attributes?: JsonApiOrganizationPatchAttributes;
59729
+ attributes?: JsonApiOrganizationInAttributes;
59041
59730
  /**
59042
59731
  *
59043
- * @type {JsonApiOrganizationPatchRelationships}
59732
+ * @type {JsonApiOrganizationInRelationships}
59044
59733
  * @memberof JsonApiOrganizationPatch
59045
59734
  */
59046
- relationships?: JsonApiOrganizationPatchRelationships;
59047
- }
59048
-
59049
- /**
59050
- *
59051
- * @export
59052
- * @interface JsonApiOrganizationPatchAttributes
59053
- */
59054
- export declare interface JsonApiOrganizationPatchAttributes {
59055
- /**
59056
- *
59057
- * @type {string}
59058
- * @memberof JsonApiOrganizationPatchAttributes
59059
- */
59060
- name?: string | null;
59061
- /**
59062
- *
59063
- * @type {string}
59064
- * @memberof JsonApiOrganizationPatchAttributes
59065
- */
59066
- hostname?: string;
59067
- /**
59068
- *
59069
- * @type {Array<string>}
59070
- * @memberof JsonApiOrganizationPatchAttributes
59071
- */
59072
- allowedOrigins?: Array<string>;
59073
- /**
59074
- *
59075
- * @type {string}
59076
- * @memberof JsonApiOrganizationPatchAttributes
59077
- */
59078
- oauthIssuerLocation?: string;
59079
- /**
59080
- *
59081
- * @type {string}
59082
- * @memberof JsonApiOrganizationPatchAttributes
59083
- */
59084
- oauthClientId?: string;
59085
- /**
59086
- *
59087
- * @type {string}
59088
- * @memberof JsonApiOrganizationPatchAttributes
59089
- */
59090
- oauthClientSecret?: string;
59091
- /**
59092
- * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
59093
- * @type {string}
59094
- * @memberof JsonApiOrganizationPatchAttributes
59095
- * @deprecated
59096
- */
59097
- earlyAccess?: string | null;
59098
- /**
59099
- * The early access feature identifiers. They are used to enable experimental features.
59100
- * @type {Array<string>}
59101
- * @memberof JsonApiOrganizationPatchAttributes
59102
- */
59103
- earlyAccessValues?: Array<string> | null;
59104
- /**
59105
- * 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.
59106
- * @type {string}
59107
- * @memberof JsonApiOrganizationPatchAttributes
59108
- */
59109
- oauthIssuerId?: string;
59110
- /**
59111
- * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
59112
- * @type {string}
59113
- * @memberof JsonApiOrganizationPatchAttributes
59114
- */
59115
- oauthSubjectIdClaim?: string;
59116
- /**
59117
- * 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.
59118
- * @type {{ [key: string]: string; }}
59119
- * @memberof JsonApiOrganizationPatchAttributes
59120
- */
59121
- oauthCustomAuthAttributes?: {
59122
- [key: string]: string;
59123
- };
59124
- /**
59125
- * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
59126
- * @type {Array<string>}
59127
- * @memberof JsonApiOrganizationPatchAttributes
59128
- */
59129
- oauthCustomScopes?: Array<string> | null;
59735
+ relationships?: JsonApiOrganizationInRelationships;
59130
59736
  }
59131
59737
 
59132
59738
  /**
@@ -59143,34 +59749,6 @@ export declare interface JsonApiOrganizationPatchDocument {
59143
59749
  data: JsonApiOrganizationPatch;
59144
59750
  }
59145
59751
 
59146
- /**
59147
- *
59148
- * @export
59149
- * @interface JsonApiOrganizationPatchRelationships
59150
- */
59151
- export declare interface JsonApiOrganizationPatchRelationships {
59152
- /**
59153
- *
59154
- * @type {JsonApiOrganizationPatchRelationshipsIdentityProvider}
59155
- * @memberof JsonApiOrganizationPatchRelationships
59156
- */
59157
- identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
59158
- }
59159
-
59160
- /**
59161
- *
59162
- * @export
59163
- * @interface JsonApiOrganizationPatchRelationshipsIdentityProvider
59164
- */
59165
- export declare interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
59166
- /**
59167
- *
59168
- * @type {JsonApiIdentityProviderToOneLinkage}
59169
- * @memberof JsonApiOrganizationPatchRelationshipsIdentityProvider
59170
- */
59171
- data: JsonApiIdentityProviderToOneLinkage | null;
59172
- }
59173
-
59174
59752
  export declare const JsonApiOrganizationPatchTypeEnum: {
59175
59753
  readonly ORGANIZATION: "organization";
59176
59754
  };
@@ -59197,10 +59775,10 @@ export declare interface JsonApiOrganizationSettingIn {
59197
59775
  id: string;
59198
59776
  /**
59199
59777
  *
59200
- * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
59778
+ * @type {JsonApiUserSettingOutAttributes}
59201
59779
  * @memberof JsonApiOrganizationSettingIn
59202
59780
  */
59203
- attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
59781
+ attributes?: JsonApiUserSettingOutAttributes;
59204
59782
  }
59205
59783
 
59206
59784
  /**
@@ -59243,10 +59821,10 @@ export declare interface JsonApiOrganizationSettingOut {
59243
59821
  id: string;
59244
59822
  /**
59245
59823
  *
59246
- * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
59824
+ * @type {JsonApiUserSettingOutAttributes}
59247
59825
  * @memberof JsonApiOrganizationSettingOut
59248
59826
  */
59249
- attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
59827
+ attributes?: JsonApiUserSettingOutAttributes;
59250
59828
  }
59251
59829
 
59252
59830
  /**
@@ -59289,10 +59867,10 @@ export declare interface JsonApiOrganizationSettingOutList {
59289
59867
  links?: ListLinks;
59290
59868
  /**
59291
59869
  *
59292
- * @type {JsonApiAggregatedFactOutListMeta}
59870
+ * @type {JsonApiApiTokenOutListMeta}
59293
59871
  * @memberof JsonApiOrganizationSettingOutList
59294
59872
  */
59295
- meta?: JsonApiAggregatedFactOutListMeta;
59873
+ meta?: JsonApiApiTokenOutListMeta;
59296
59874
  }
59297
59875
 
59298
59876
  export declare const JsonApiOrganizationSettingOutTypeEnum: {
@@ -59321,10 +59899,10 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
59321
59899
  id: string;
59322
59900
  /**
59323
59901
  *
59324
- * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
59902
+ * @type {JsonApiUserSettingOutAttributes}
59325
59903
  * @memberof JsonApiOrganizationSettingOutWithLinks
59326
59904
  */
59327
- attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
59905
+ attributes?: JsonApiUserSettingOutAttributes;
59328
59906
  /**
59329
59907
  *
59330
59908
  * @type {ObjectLinks}
@@ -59359,10 +59937,10 @@ export declare interface JsonApiOrganizationSettingPatch {
59359
59937
  id: string;
59360
59938
  /**
59361
59939
  *
59362
- * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
59940
+ * @type {JsonApiUserSettingOutAttributes}
59363
59941
  * @memberof JsonApiOrganizationSettingPatch
59364
59942
  */
59365
- attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
59943
+ attributes?: JsonApiUserSettingOutAttributes;
59366
59944
  }
59367
59945
 
59368
59946
  /**
@@ -59497,10 +60075,10 @@ export declare interface JsonApiThemeOutList {
59497
60075
  links?: ListLinks;
59498
60076
  /**
59499
60077
  *
59500
- * @type {JsonApiAggregatedFactOutListMeta}
60078
+ * @type {JsonApiApiTokenOutListMeta}
59501
60079
  * @memberof JsonApiThemeOutList
59502
60080
  */
59503
- meta?: JsonApiAggregatedFactOutListMeta;
60081
+ meta?: JsonApiApiTokenOutListMeta;
59504
60082
  }
59505
60083
 
59506
60084
  export declare const JsonApiThemeOutTypeEnum: {
@@ -59613,16 +60191,54 @@ export declare interface JsonApiUserDataFilterIn {
59613
60191
  id: string;
59614
60192
  /**
59615
60193
  *
59616
- * @type {JsonApiUserDataFilterPostOptionalIdAttributes}
60194
+ * @type {JsonApiUserDataFilterInAttributes}
59617
60195
  * @memberof JsonApiUserDataFilterIn
59618
60196
  */
59619
- attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
60197
+ attributes: JsonApiUserDataFilterInAttributes;
59620
60198
  /**
59621
60199
  *
59622
- * @type {JsonApiUserDataFilterPostOptionalIdRelationships}
60200
+ * @type {JsonApiUserDataFilterInRelationships}
59623
60201
  * @memberof JsonApiUserDataFilterIn
59624
60202
  */
59625
- relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
60203
+ relationships?: JsonApiUserDataFilterInRelationships;
60204
+ }
60205
+
60206
+ /**
60207
+ *
60208
+ * @export
60209
+ * @interface JsonApiUserDataFilterInAttributes
60210
+ */
60211
+ export declare interface JsonApiUserDataFilterInAttributes {
60212
+ /**
60213
+ *
60214
+ * @type {string}
60215
+ * @memberof JsonApiUserDataFilterInAttributes
60216
+ */
60217
+ title?: string;
60218
+ /**
60219
+ *
60220
+ * @type {string}
60221
+ * @memberof JsonApiUserDataFilterInAttributes
60222
+ */
60223
+ description?: string;
60224
+ /**
60225
+ *
60226
+ * @type {Array<string>}
60227
+ * @memberof JsonApiUserDataFilterInAttributes
60228
+ */
60229
+ tags?: Array<string>;
60230
+ /**
60231
+ *
60232
+ * @type {boolean}
60233
+ * @memberof JsonApiUserDataFilterInAttributes
60234
+ */
60235
+ areRelationsValid?: boolean;
60236
+ /**
60237
+ *
60238
+ * @type {string}
60239
+ * @memberof JsonApiUserDataFilterInAttributes
60240
+ */
60241
+ maql: string;
59626
60242
  }
59627
60243
 
59628
60244
  /**
@@ -59639,6 +60255,40 @@ export declare interface JsonApiUserDataFilterInDocument {
59639
60255
  data: JsonApiUserDataFilterIn;
59640
60256
  }
59641
60257
 
60258
+ /**
60259
+ *
60260
+ * @export
60261
+ * @interface JsonApiUserDataFilterInRelationships
60262
+ */
60263
+ export declare interface JsonApiUserDataFilterInRelationships {
60264
+ /**
60265
+ *
60266
+ * @type {JsonApiFilterViewInRelationshipsUser}
60267
+ * @memberof JsonApiUserDataFilterInRelationships
60268
+ */
60269
+ user?: JsonApiFilterViewInRelationshipsUser;
60270
+ /**
60271
+ *
60272
+ * @type {JsonApiUserDataFilterInRelationshipsUserGroup}
60273
+ * @memberof JsonApiUserDataFilterInRelationships
60274
+ */
60275
+ userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
60276
+ }
60277
+
60278
+ /**
60279
+ *
60280
+ * @export
60281
+ * @interface JsonApiUserDataFilterInRelationshipsUserGroup
60282
+ */
60283
+ export declare interface JsonApiUserDataFilterInRelationshipsUserGroup {
60284
+ /**
60285
+ *
60286
+ * @type {JsonApiUserGroupToOneLinkage}
60287
+ * @memberof JsonApiUserDataFilterInRelationshipsUserGroup
60288
+ */
60289
+ data: JsonApiUserGroupToOneLinkage | null;
60290
+ }
60291
+
59642
60292
  export declare const JsonApiUserDataFilterInTypeEnum: {
59643
60293
  readonly USER_DATA_FILTER: "userDataFilter";
59644
60294
  };
@@ -59671,10 +60321,10 @@ export declare interface JsonApiUserDataFilterOut {
59671
60321
  meta?: JsonApiVisualizationObjectOutMeta;
59672
60322
  /**
59673
60323
  *
59674
- * @type {JsonApiUserDataFilterPostOptionalIdAttributes}
60324
+ * @type {JsonApiUserDataFilterInAttributes}
59675
60325
  * @memberof JsonApiUserDataFilterOut
59676
60326
  */
59677
- attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
60327
+ attributes: JsonApiUserDataFilterInAttributes;
59678
60328
  /**
59679
60329
  *
59680
60330
  * @type {JsonApiUserDataFilterOutRelationships}
@@ -59735,10 +60385,10 @@ export declare interface JsonApiUserDataFilterOutList {
59735
60385
  links?: ListLinks;
59736
60386
  /**
59737
60387
  *
59738
- * @type {JsonApiAggregatedFactOutListMeta}
60388
+ * @type {JsonApiApiTokenOutListMeta}
59739
60389
  * @memberof JsonApiUserDataFilterOutList
59740
60390
  */
59741
- meta?: JsonApiAggregatedFactOutListMeta;
60391
+ meta?: JsonApiApiTokenOutListMeta;
59742
60392
  /**
59743
60393
  * Included resources
59744
60394
  * @type {Array<JsonApiUserDataFilterOutIncludes>}
@@ -59761,10 +60411,10 @@ export declare interface JsonApiUserDataFilterOutRelationships {
59761
60411
  user?: JsonApiFilterViewInRelationshipsUser;
59762
60412
  /**
59763
60413
  *
59764
- * @type {JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup}
60414
+ * @type {JsonApiUserDataFilterInRelationshipsUserGroup}
59765
60415
  * @memberof JsonApiUserDataFilterOutRelationships
59766
60416
  */
59767
- userGroup?: JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup;
60417
+ userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
59768
60418
  /**
59769
60419
  *
59770
60420
  * @type {JsonApiVisualizationObjectOutRelationshipsFacts}
@@ -59829,10 +60479,10 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
59829
60479
  meta?: JsonApiVisualizationObjectOutMeta;
59830
60480
  /**
59831
60481
  *
59832
- * @type {JsonApiUserDataFilterPostOptionalIdAttributes}
60482
+ * @type {JsonApiUserDataFilterInAttributes}
59833
60483
  * @memberof JsonApiUserDataFilterOutWithLinks
59834
60484
  */
59835
- attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
60485
+ attributes: JsonApiUserDataFilterInAttributes;
59836
60486
  /**
59837
60487
  *
59838
60488
  * @type {JsonApiUserDataFilterOutRelationships}
@@ -59879,10 +60529,10 @@ export declare interface JsonApiUserDataFilterPatch {
59879
60529
  attributes: JsonApiUserDataFilterPatchAttributes;
59880
60530
  /**
59881
60531
  *
59882
- * @type {JsonApiUserDataFilterPostOptionalIdRelationships}
60532
+ * @type {JsonApiUserDataFilterInRelationships}
59883
60533
  * @memberof JsonApiUserDataFilterPatch
59884
60534
  */
59885
- relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
60535
+ relationships?: JsonApiUserDataFilterInRelationships;
59886
60536
  }
59887
60537
 
59888
60538
  /**
@@ -59963,54 +60613,16 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
59963
60613
  id?: string;
59964
60614
  /**
59965
60615
  *
59966
- * @type {JsonApiUserDataFilterPostOptionalIdAttributes}
60616
+ * @type {JsonApiUserDataFilterInAttributes}
59967
60617
  * @memberof JsonApiUserDataFilterPostOptionalId
59968
60618
  */
59969
- attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
60619
+ attributes: JsonApiUserDataFilterInAttributes;
59970
60620
  /**
59971
60621
  *
59972
- * @type {JsonApiUserDataFilterPostOptionalIdRelationships}
60622
+ * @type {JsonApiUserDataFilterInRelationships}
59973
60623
  * @memberof JsonApiUserDataFilterPostOptionalId
59974
60624
  */
59975
- relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
59976
- }
59977
-
59978
- /**
59979
- *
59980
- * @export
59981
- * @interface JsonApiUserDataFilterPostOptionalIdAttributes
59982
- */
59983
- export declare interface JsonApiUserDataFilterPostOptionalIdAttributes {
59984
- /**
59985
- *
59986
- * @type {string}
59987
- * @memberof JsonApiUserDataFilterPostOptionalIdAttributes
59988
- */
59989
- title?: string;
59990
- /**
59991
- *
59992
- * @type {string}
59993
- * @memberof JsonApiUserDataFilterPostOptionalIdAttributes
59994
- */
59995
- description?: string;
59996
- /**
59997
- *
59998
- * @type {Array<string>}
59999
- * @memberof JsonApiUserDataFilterPostOptionalIdAttributes
60000
- */
60001
- tags?: Array<string>;
60002
- /**
60003
- *
60004
- * @type {boolean}
60005
- * @memberof JsonApiUserDataFilterPostOptionalIdAttributes
60006
- */
60007
- areRelationsValid?: boolean;
60008
- /**
60009
- *
60010
- * @type {string}
60011
- * @memberof JsonApiUserDataFilterPostOptionalIdAttributes
60012
- */
60013
- maql: string;
60625
+ relationships?: JsonApiUserDataFilterInRelationships;
60014
60626
  }
60015
60627
 
60016
60628
  /**
@@ -60027,40 +60639,6 @@ export declare interface JsonApiUserDataFilterPostOptionalIdDocument {
60027
60639
  data: JsonApiUserDataFilterPostOptionalId;
60028
60640
  }
60029
60641
 
60030
- /**
60031
- *
60032
- * @export
60033
- * @interface JsonApiUserDataFilterPostOptionalIdRelationships
60034
- */
60035
- export declare interface JsonApiUserDataFilterPostOptionalIdRelationships {
60036
- /**
60037
- *
60038
- * @type {JsonApiFilterViewInRelationshipsUser}
60039
- * @memberof JsonApiUserDataFilterPostOptionalIdRelationships
60040
- */
60041
- user?: JsonApiFilterViewInRelationshipsUser;
60042
- /**
60043
- *
60044
- * @type {JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup}
60045
- * @memberof JsonApiUserDataFilterPostOptionalIdRelationships
60046
- */
60047
- userGroup?: JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup;
60048
- }
60049
-
60050
- /**
60051
- *
60052
- * @export
60053
- * @interface JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup
60054
- */
60055
- export declare interface JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup {
60056
- /**
60057
- *
60058
- * @type {JsonApiUserGroupToOneLinkage}
60059
- * @memberof JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup
60060
- */
60061
- data: JsonApiUserGroupToOneLinkage | null;
60062
- }
60063
-
60064
60642
  export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
60065
60643
  readonly USER_DATA_FILTER: "userDataFilter";
60066
60644
  };
@@ -60237,10 +60815,10 @@ export declare interface JsonApiUserGroupOutList {
60237
60815
  links?: ListLinks;
60238
60816
  /**
60239
60817
  *
60240
- * @type {JsonApiAggregatedFactOutListMeta}
60818
+ * @type {JsonApiApiTokenOutListMeta}
60241
60819
  * @memberof JsonApiUserGroupOutList
60242
60820
  */
60243
- meta?: JsonApiAggregatedFactOutListMeta;
60821
+ meta?: JsonApiApiTokenOutListMeta;
60244
60822
  /**
60245
60823
  * Included resources
60246
60824
  * @type {Array<JsonApiUserGroupOutWithLinks>}
@@ -60490,10 +61068,10 @@ export declare interface JsonApiUserIdentifierOutList {
60490
61068
  links?: ListLinks;
60491
61069
  /**
60492
61070
  *
60493
- * @type {JsonApiAggregatedFactOutListMeta}
61071
+ * @type {JsonApiApiTokenOutListMeta}
60494
61072
  * @memberof JsonApiUserIdentifierOutList
60495
61073
  */
60496
- meta?: JsonApiAggregatedFactOutListMeta;
61074
+ meta?: JsonApiApiTokenOutListMeta;
60497
61075
  }
60498
61076
 
60499
61077
  export declare const JsonApiUserIdentifierOutTypeEnum: {
@@ -60735,10 +61313,10 @@ export declare interface JsonApiUserOutList {
60735
61313
  links?: ListLinks;
60736
61314
  /**
60737
61315
  *
60738
- * @type {JsonApiAggregatedFactOutListMeta}
61316
+ * @type {JsonApiApiTokenOutListMeta}
60739
61317
  * @memberof JsonApiUserOutList
60740
61318
  */
60741
- meta?: JsonApiAggregatedFactOutListMeta;
61319
+ meta?: JsonApiApiTokenOutListMeta;
60742
61320
  /**
60743
61321
  * Included resources
60744
61322
  * @type {Array<JsonApiUserGroupOutWithLinks>}
@@ -60897,10 +61475,10 @@ export declare interface JsonApiUserSettingIn {
60897
61475
  id: string;
60898
61476
  /**
60899
61477
  *
60900
- * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
61478
+ * @type {JsonApiUserSettingOutAttributes}
60901
61479
  * @memberof JsonApiUserSettingIn
60902
61480
  */
60903
- attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
61481
+ attributes?: JsonApiUserSettingOutAttributes;
60904
61482
  }
60905
61483
 
60906
61484
  /**
@@ -60943,12 +61521,63 @@ export declare interface JsonApiUserSettingOut {
60943
61521
  id: string;
60944
61522
  /**
60945
61523
  *
60946
- * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
61524
+ * @type {JsonApiUserSettingOutAttributes}
60947
61525
  * @memberof JsonApiUserSettingOut
60948
61526
  */
60949
- attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
61527
+ attributes?: JsonApiUserSettingOutAttributes;
61528
+ }
61529
+
61530
+ /**
61531
+ *
61532
+ * @export
61533
+ * @interface JsonApiUserSettingOutAttributes
61534
+ */
61535
+ export declare interface JsonApiUserSettingOutAttributes {
61536
+ /**
61537
+ * Free-form JSON content. Maximum supported length is 15000 characters.
61538
+ * @type {object}
61539
+ * @memberof JsonApiUserSettingOutAttributes
61540
+ */
61541
+ content?: object;
61542
+ /**
61543
+ *
61544
+ * @type {string}
61545
+ * @memberof JsonApiUserSettingOutAttributes
61546
+ */
61547
+ type?: JsonApiUserSettingOutAttributesTypeEnum;
60950
61548
  }
60951
61549
 
61550
+ export declare const JsonApiUserSettingOutAttributesTypeEnum: {
61551
+ readonly TIMEZONE: "TIMEZONE";
61552
+ readonly ACTIVE_THEME: "ACTIVE_THEME";
61553
+ readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
61554
+ readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
61555
+ readonly WHITE_LABELING: "WHITE_LABELING";
61556
+ readonly LOCALE: "LOCALE";
61557
+ readonly METADATA_LOCALE: "METADATA_LOCALE";
61558
+ readonly FORMAT_LOCALE: "FORMAT_LOCALE";
61559
+ readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
61560
+ readonly WEEK_START: "WEEK_START";
61561
+ readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
61562
+ readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
61563
+ readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
61564
+ readonly OPENAI_CONFIG: "OPENAI_CONFIG";
61565
+ readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
61566
+ readonly ALERT: "ALERT";
61567
+ readonly SEPARATORS: "SEPARATORS";
61568
+ readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
61569
+ readonly JIT_PROVISIONING: "JIT_PROVISIONING";
61570
+ readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
61571
+ readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
61572
+ readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
61573
+ readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
61574
+ readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
61575
+ readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
61576
+ readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
61577
+ };
61578
+
61579
+ export declare type JsonApiUserSettingOutAttributesTypeEnum = (typeof JsonApiUserSettingOutAttributesTypeEnum)[keyof typeof JsonApiUserSettingOutAttributesTypeEnum];
61580
+
60952
61581
  /**
60953
61582
  *
60954
61583
  * @export
@@ -60989,10 +61618,10 @@ export declare interface JsonApiUserSettingOutList {
60989
61618
  links?: ListLinks;
60990
61619
  /**
60991
61620
  *
60992
- * @type {JsonApiAggregatedFactOutListMeta}
61621
+ * @type {JsonApiApiTokenOutListMeta}
60993
61622
  * @memberof JsonApiUserSettingOutList
60994
61623
  */
60995
- meta?: JsonApiAggregatedFactOutListMeta;
61624
+ meta?: JsonApiApiTokenOutListMeta;
60996
61625
  }
60997
61626
 
60998
61627
  export declare const JsonApiUserSettingOutTypeEnum: {
@@ -61021,10 +61650,10 @@ export declare interface JsonApiUserSettingOutWithLinks {
61021
61650
  id: string;
61022
61651
  /**
61023
61652
  *
61024
- * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
61653
+ * @type {JsonApiUserSettingOutAttributes}
61025
61654
  * @memberof JsonApiUserSettingOutWithLinks
61026
61655
  */
61027
- attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
61656
+ attributes?: JsonApiUserSettingOutAttributes;
61028
61657
  /**
61029
61658
  *
61030
61659
  * @type {ObjectLinks}
@@ -61066,10 +61695,10 @@ export declare interface JsonApiVisualizationObjectIn {
61066
61695
  id: string;
61067
61696
  /**
61068
61697
  *
61069
- * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
61698
+ * @type {JsonApiAnalyticalDashboardInAttributes}
61070
61699
  * @memberof JsonApiVisualizationObjectIn
61071
61700
  */
61072
- attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
61701
+ attributes: JsonApiAnalyticalDashboardInAttributes;
61073
61702
  }
61074
61703
 
61075
61704
  /**
@@ -61252,10 +61881,10 @@ export declare interface JsonApiVisualizationObjectOutList {
61252
61881
  links?: ListLinks;
61253
61882
  /**
61254
61883
  *
61255
- * @type {JsonApiAggregatedFactOutListMeta}
61884
+ * @type {JsonApiApiTokenOutListMeta}
61256
61885
  * @memberof JsonApiVisualizationObjectOutList
61257
61886
  */
61258
- meta?: JsonApiAggregatedFactOutListMeta;
61887
+ meta?: JsonApiApiTokenOutListMeta;
61259
61888
  /**
61260
61889
  * Included resources
61261
61890
  * @type {Array<JsonApiMetricOutIncludes>}
@@ -61561,10 +62190,10 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
61561
62190
  id?: string;
61562
62191
  /**
61563
62192
  *
61564
- * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
62193
+ * @type {JsonApiAnalyticalDashboardInAttributes}
61565
62194
  * @memberof JsonApiVisualizationObjectPostOptionalId
61566
62195
  */
61567
- attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
62196
+ attributes: JsonApiAnalyticalDashboardInAttributes;
61568
62197
  }
61569
62198
 
61570
62199
  /**
@@ -61782,10 +62411,10 @@ export declare interface JsonApiWorkspaceDataFilterOutList {
61782
62411
  links?: ListLinks;
61783
62412
  /**
61784
62413
  *
61785
- * @type {JsonApiAggregatedFactOutListMeta}
62414
+ * @type {JsonApiApiTokenOutListMeta}
61786
62415
  * @memberof JsonApiWorkspaceDataFilterOutList
61787
62416
  */
61788
- meta?: JsonApiAggregatedFactOutListMeta;
62417
+ meta?: JsonApiApiTokenOutListMeta;
61789
62418
  /**
61790
62419
  * Included resources
61791
62420
  * @type {Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>}
@@ -62146,10 +62775,10 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutList {
62146
62775
  links?: ListLinks;
62147
62776
  /**
62148
62777
  *
62149
- * @type {JsonApiAggregatedFactOutListMeta}
62778
+ * @type {JsonApiApiTokenOutListMeta}
62150
62779
  * @memberof JsonApiWorkspaceDataFilterSettingOutList
62151
62780
  */
62152
- meta?: JsonApiAggregatedFactOutListMeta;
62781
+ meta?: JsonApiApiTokenOutListMeta;
62153
62782
  /**
62154
62783
  * Included resources
62155
62784
  * @type {Array<JsonApiWorkspaceDataFilterOutWithLinks>}
@@ -62534,10 +63163,10 @@ export declare interface JsonApiWorkspaceOutList {
62534
63163
  links?: ListLinks;
62535
63164
  /**
62536
63165
  *
62537
- * @type {JsonApiAggregatedFactOutListMeta}
63166
+ * @type {JsonApiApiTokenOutListMeta}
62538
63167
  * @memberof JsonApiWorkspaceOutList
62539
63168
  */
62540
- meta?: JsonApiAggregatedFactOutListMeta;
63169
+ meta?: JsonApiApiTokenOutListMeta;
62541
63170
  /**
62542
63171
  * Included resources
62543
63172
  * @type {Array<JsonApiWorkspaceOutWithLinks>}
@@ -62774,10 +63403,10 @@ export declare interface JsonApiWorkspaceSettingIn {
62774
63403
  id: string;
62775
63404
  /**
62776
63405
  *
62777
- * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
63406
+ * @type {JsonApiUserSettingOutAttributes}
62778
63407
  * @memberof JsonApiWorkspaceSettingIn
62779
63408
  */
62780
- attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
63409
+ attributes?: JsonApiUserSettingOutAttributes;
62781
63410
  }
62782
63411
 
62783
63412
  /**
@@ -62826,10 +63455,10 @@ export declare interface JsonApiWorkspaceSettingOut {
62826
63455
  meta?: JsonApiVisualizationObjectOutMeta;
62827
63456
  /**
62828
63457
  *
62829
- * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
63458
+ * @type {JsonApiUserSettingOutAttributes}
62830
63459
  * @memberof JsonApiWorkspaceSettingOut
62831
63460
  */
62832
- attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
63461
+ attributes?: JsonApiUserSettingOutAttributes;
62833
63462
  }
62834
63463
 
62835
63464
  /**
@@ -62872,10 +63501,10 @@ export declare interface JsonApiWorkspaceSettingOutList {
62872
63501
  links?: ListLinks;
62873
63502
  /**
62874
63503
  *
62875
- * @type {JsonApiAggregatedFactOutListMeta}
63504
+ * @type {JsonApiApiTokenOutListMeta}
62876
63505
  * @memberof JsonApiWorkspaceSettingOutList
62877
63506
  */
62878
- meta?: JsonApiAggregatedFactOutListMeta;
63507
+ meta?: JsonApiApiTokenOutListMeta;
62879
63508
  }
62880
63509
 
62881
63510
  export declare const JsonApiWorkspaceSettingOutTypeEnum: {
@@ -62910,10 +63539,10 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
62910
63539
  meta?: JsonApiVisualizationObjectOutMeta;
62911
63540
  /**
62912
63541
  *
62913
- * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
63542
+ * @type {JsonApiUserSettingOutAttributes}
62914
63543
  * @memberof JsonApiWorkspaceSettingOutWithLinks
62915
63544
  */
62916
- attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
63545
+ attributes?: JsonApiUserSettingOutAttributes;
62917
63546
  /**
62918
63547
  *
62919
63548
  * @type {ObjectLinks}
@@ -62948,10 +63577,10 @@ export declare interface JsonApiWorkspaceSettingPatch {
62948
63577
  id: string;
62949
63578
  /**
62950
63579
  *
62951
- * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
63580
+ * @type {JsonApiUserSettingOutAttributes}
62952
63581
  * @memberof JsonApiWorkspaceSettingPatch
62953
63582
  */
62954
- attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
63583
+ attributes?: JsonApiUserSettingOutAttributes;
62955
63584
  }
62956
63585
 
62957
63586
  /**
@@ -62994,62 +63623,12 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
62994
63623
  id?: string;
62995
63624
  /**
62996
63625
  *
62997
- * @type {JsonApiWorkspaceSettingPostOptionalIdAttributes}
63626
+ * @type {JsonApiUserSettingOutAttributes}
62998
63627
  * @memberof JsonApiWorkspaceSettingPostOptionalId
62999
63628
  */
63000
- attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
63629
+ attributes?: JsonApiUserSettingOutAttributes;
63001
63630
  }
63002
63631
 
63003
- /**
63004
- *
63005
- * @export
63006
- * @interface JsonApiWorkspaceSettingPostOptionalIdAttributes
63007
- */
63008
- export declare interface JsonApiWorkspaceSettingPostOptionalIdAttributes {
63009
- /**
63010
- * Free-form JSON content. Maximum supported length is 15000 characters.
63011
- * @type {object}
63012
- * @memberof JsonApiWorkspaceSettingPostOptionalIdAttributes
63013
- */
63014
- content?: object;
63015
- /**
63016
- *
63017
- * @type {string}
63018
- * @memberof JsonApiWorkspaceSettingPostOptionalIdAttributes
63019
- */
63020
- type?: JsonApiWorkspaceSettingPostOptionalIdAttributesTypeEnum;
63021
- }
63022
-
63023
- export declare const JsonApiWorkspaceSettingPostOptionalIdAttributesTypeEnum: {
63024
- readonly TIMEZONE: "TIMEZONE";
63025
- readonly ACTIVE_THEME: "ACTIVE_THEME";
63026
- readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
63027
- readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
63028
- readonly WHITE_LABELING: "WHITE_LABELING";
63029
- readonly LOCALE: "LOCALE";
63030
- readonly METADATA_LOCALE: "METADATA_LOCALE";
63031
- readonly FORMAT_LOCALE: "FORMAT_LOCALE";
63032
- readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
63033
- readonly WEEK_START: "WEEK_START";
63034
- readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
63035
- readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
63036
- readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
63037
- readonly OPENAI_CONFIG: "OPENAI_CONFIG";
63038
- readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
63039
- readonly ALERT: "ALERT";
63040
- readonly SEPARATORS: "SEPARATORS";
63041
- readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
63042
- readonly JIT_PROVISIONING: "JIT_PROVISIONING";
63043
- readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
63044
- readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
63045
- readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
63046
- readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
63047
- readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
63048
- readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
63049
- };
63050
-
63051
- export declare type JsonApiWorkspaceSettingPostOptionalIdAttributesTypeEnum = (typeof JsonApiWorkspaceSettingPostOptionalIdAttributesTypeEnum)[keyof typeof JsonApiWorkspaceSettingPostOptionalIdAttributesTypeEnum];
63052
-
63053
63632
  /**
63054
63633
  *
63055
63634
  * @export
@@ -80327,6 +80906,60 @@ export declare interface Relative {
80327
80906
  threshold: Value;
80328
80907
  }
80329
80908
 
80909
+ /**
80910
+ *
80911
+ * @export
80912
+ * @interface RelativeBoundedDateFilter
80913
+ */
80914
+ export declare interface RelativeBoundedDateFilter {
80915
+ /**
80916
+ *
80917
+ * @type {string}
80918
+ * @memberof RelativeBoundedDateFilter
80919
+ */
80920
+ granularity: RelativeBoundedDateFilterGranularityEnum;
80921
+ /**
80922
+ *
80923
+ * @type {number}
80924
+ * @memberof RelativeBoundedDateFilter
80925
+ */
80926
+ from?: number;
80927
+ /**
80928
+ *
80929
+ * @type {number}
80930
+ * @memberof RelativeBoundedDateFilter
80931
+ */
80932
+ to?: number;
80933
+ }
80934
+
80935
+ export declare const RelativeBoundedDateFilterGranularityEnum: {
80936
+ readonly ALL_TIME_GRANULARITY: "ALL_TIME_GRANULARITY";
80937
+ readonly GDC_TIME_YEAR: "GDC.time.year";
80938
+ readonly GDC_TIME_WEEK_US: "GDC.time.week_us";
80939
+ readonly GDC_TIME_WEEK_IN_YEAR: "GDC.time.week_in_year";
80940
+ readonly GDC_TIME_WEEK_IN_QUARTER: "GDC.time.week_in_quarter";
80941
+ readonly GDC_TIME_WEEK: "GDC.time.week";
80942
+ readonly GDC_TIME_EUWEEK_IN_YEAR: "GDC.time.euweek_in_year";
80943
+ readonly GDC_TIME_EUWEEK_IN_QUARTER: "GDC.time.euweek_in_quarter";
80944
+ readonly GDC_TIME_QUARTER: "GDC.time.quarter";
80945
+ readonly GDC_TIME_QUARTER_IN_YEAR: "GDC.time.quarter_in_year";
80946
+ readonly GDC_TIME_MONTH: "GDC.time.month";
80947
+ readonly GDC_TIME_MONTH_IN_QUARTER: "GDC.time.month_in_quarter";
80948
+ readonly GDC_TIME_MONTH_IN_YEAR: "GDC.time.month_in_year";
80949
+ readonly GDC_TIME_DAY_IN_YEAR: "GDC.time.day_in_year";
80950
+ readonly GDC_TIME_DAY_IN_QUARTER: "GDC.time.day_in_quarter";
80951
+ readonly GDC_TIME_DAY_IN_MONTH: "GDC.time.day_in_month";
80952
+ readonly GDC_TIME_DAY_IN_WEEK: "GDC.time.day_in_week";
80953
+ readonly GDC_TIME_DAY_IN_EUWEEK: "GDC.time.day_in_euweek";
80954
+ readonly GDC_TIME_DATE: "GDC.time.date";
80955
+ readonly GDC_TIME_HOUR: "GDC.time.hour";
80956
+ readonly GDC_TIME_HOUR_IN_DAY: "GDC.time.hour_in_day";
80957
+ readonly GDC_TIME_MINUTE: "GDC.time.minute";
80958
+ readonly GDC_TIME_MINUTE_IN_HOUR: "GDC.time.minute_in_hour";
80959
+ };
80960
+
80961
+ export declare type RelativeBoundedDateFilterGranularityEnum = (typeof RelativeBoundedDateFilterGranularityEnum)[keyof typeof RelativeBoundedDateFilterGranularityEnum];
80962
+
80330
80963
  /**
80331
80964
  * A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension. The \'from\' and \'to\' properties mark the boundaries of the interval. If \'from\' is omitted, all values earlier than \'to\' are included. If \'to\' is omitted, all values later than \'from\' are included. It is not allowed to omit both.
80332
80965
  * @export
@@ -80652,6 +81285,7 @@ export declare const ResolvedSettingTypeEnum: {
80652
81285
  readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
80653
81286
  readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
80654
81287
  readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
81288
+ readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
80655
81289
  };
80656
81290
 
80657
81291
  export declare type ResolvedSettingTypeEnum = (typeof ResolvedSettingTypeEnum)[keyof typeof ResolvedSettingTypeEnum];
@@ -82929,6 +83563,7 @@ export declare const TestDefinitionRequestTypeEnum: {
82929
83563
  readonly FLEXCONNECT: "FLEXCONNECT";
82930
83564
  readonly STARROCKS: "STARROCKS";
82931
83565
  readonly ATHENA: "ATHENA";
83566
+ readonly MONGODB: "MONGODB";
82932
83567
  };
82933
83568
 
82934
83569
  export declare type TestDefinitionRequestTypeEnum = (typeof TestDefinitionRequestTypeEnum)[keyof typeof TestDefinitionRequestTypeEnum];
@@ -88731,6 +89366,34 @@ export declare const WidgetSlidesTemplateAppliedOnEnum: {
88731
89366
 
88732
89367
  export declare type WidgetSlidesTemplateAppliedOnEnum = (typeof WidgetSlidesTemplateAppliedOnEnum)[keyof typeof WidgetSlidesTemplateAppliedOnEnum];
88733
89368
 
89369
+ /**
89370
+ *
89371
+ * @export
89372
+ * @interface WorkspaceAutomationIdentifier
89373
+ */
89374
+ export declare interface WorkspaceAutomationIdentifier {
89375
+ /**
89376
+ *
89377
+ * @type {string}
89378
+ * @memberof WorkspaceAutomationIdentifier
89379
+ */
89380
+ id: string;
89381
+ }
89382
+
89383
+ /**
89384
+ *
89385
+ * @export
89386
+ * @interface WorkspaceAutomationManagementBulkRequest
89387
+ */
89388
+ export declare interface WorkspaceAutomationManagementBulkRequest {
89389
+ /**
89390
+ *
89391
+ * @type {Array<WorkspaceAutomationIdentifier>}
89392
+ * @memberof WorkspaceAutomationManagementBulkRequest
89393
+ */
89394
+ automations: Array<WorkspaceAutomationIdentifier>;
89395
+ }
89396
+
88734
89397
  /**
88735
89398
  * Cache settings for the workspace.
88736
89399
  * @export
@@ -89734,12 +90397,12 @@ export declare const WorkspaceObjectControllerApiAxiosParamCreator: (configurati
89734
90397
  * @summary Post Automations
89735
90398
  * @param {string} workspaceId
89736
90399
  * @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
89737
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
90400
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
89738
90401
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
89739
90402
  * @param {*} [options] Override http request option.
89740
90403
  * @throws {RequiredError}
89741
90404
  */
89742
- createEntityAutomations: (workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
90405
+ createEntityAutomations: (workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
89743
90406
  /**
89744
90407
  *
89745
90408
  * @summary Post Custom Application Settings
@@ -90067,7 +90730,7 @@ export declare const WorkspaceObjectControllerApiAxiosParamCreator: (configurati
90067
90730
  * @param {string} workspaceId
90068
90731
  * @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
90069
90732
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
90070
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
90733
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
90071
90734
  * @param {number} [page] Zero-based page index (0..N)
90072
90735
  * @param {number} [size] The size of the page to be returned
90073
90736
  * @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
@@ -90076,7 +90739,7 @@ export declare const WorkspaceObjectControllerApiAxiosParamCreator: (configurati
90076
90739
  * @param {*} [options] Override http request option.
90077
90740
  * @throws {RequiredError}
90078
90741
  */
90079
- getAllEntitiesAutomations: (workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
90742
+ getAllEntitiesAutomations: (workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
90080
90743
  /**
90081
90744
  *
90082
90745
  * @summary Get all Custom Application Settings
@@ -90356,13 +91019,13 @@ export declare const WorkspaceObjectControllerApiAxiosParamCreator: (configurati
90356
91019
  * @param {string} workspaceId
90357
91020
  * @param {string} objectId
90358
91021
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
90359
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
91022
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
90360
91023
  * @param {boolean} [xGDCVALIDATERELATIONS]
90361
91024
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
90362
91025
  * @param {*} [options] Override http request option.
90363
91026
  * @throws {RequiredError}
90364
91027
  */
90365
- getEntityAutomations: (workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
91028
+ getEntityAutomations: (workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
90366
91029
  /**
90367
91030
  *
90368
91031
  * @summary Get a Custom Application Setting
@@ -90573,11 +91236,11 @@ export declare const WorkspaceObjectControllerApiAxiosParamCreator: (configurati
90573
91236
  * @param {string} objectId
90574
91237
  * @param {JsonApiAutomationPatchDocument} jsonApiAutomationPatchDocument
90575
91238
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
90576
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
91239
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
90577
91240
  * @param {*} [options] Override http request option.
90578
91241
  * @throws {RequiredError}
90579
91242
  */
90580
- patchEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
91243
+ patchEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
90581
91244
  /**
90582
91245
  *
90583
91246
  * @summary Patch a Custom Application Setting
@@ -90739,11 +91402,11 @@ export declare const WorkspaceObjectControllerApiAxiosParamCreator: (configurati
90739
91402
  * @param {string} objectId
90740
91403
  * @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
90741
91404
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
90742
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
91405
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
90743
91406
  * @param {*} [options] Override http request option.
90744
91407
  * @throws {RequiredError}
90745
91408
  */
90746
- updateEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
91409
+ updateEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
90747
91410
  /**
90748
91411
  *
90749
91412
  * @summary Put a Custom Application Setting
@@ -90960,10 +91623,10 @@ export declare interface WorkspaceObjectControllerApiCreateEntityAutomationsRequ
90960
91623
  readonly jsonApiAutomationInDocument: JsonApiAutomationInDocument;
90961
91624
  /**
90962
91625
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
90963
- * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
91626
+ * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
90964
91627
  * @memberof WorkspaceObjectControllerApiCreateEntityAutomations
90965
91628
  */
90966
- readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
91629
+ readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
90967
91630
  /**
90968
91631
  * Include Meta objects.
90969
91632
  * @type {Array<'origin' | 'all' | 'ALL'>}
@@ -92459,12 +93122,12 @@ export declare const WorkspaceObjectControllerApiFp: (configuration?: MetadataCo
92459
93122
  * @summary Post Automations
92460
93123
  * @param {string} workspaceId
92461
93124
  * @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
92462
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
93125
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
92463
93126
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
92464
93127
  * @param {*} [options] Override http request option.
92465
93128
  * @throws {RequiredError}
92466
93129
  */
92467
- createEntityAutomations(workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
93130
+ createEntityAutomations(workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
92468
93131
  /**
92469
93132
  *
92470
93133
  * @summary Post Custom Application Settings
@@ -92792,7 +93455,7 @@ export declare const WorkspaceObjectControllerApiFp: (configuration?: MetadataCo
92792
93455
  * @param {string} workspaceId
92793
93456
  * @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
92794
93457
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
92795
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
93458
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
92796
93459
  * @param {number} [page] Zero-based page index (0..N)
92797
93460
  * @param {number} [size] The size of the page to be returned
92798
93461
  * @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
@@ -92801,7 +93464,7 @@ export declare const WorkspaceObjectControllerApiFp: (configuration?: MetadataCo
92801
93464
  * @param {*} [options] Override http request option.
92802
93465
  * @throws {RequiredError}
92803
93466
  */
92804
- getAllEntitiesAutomations(workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutList>>;
93467
+ getAllEntitiesAutomations(workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutList>>;
92805
93468
  /**
92806
93469
  *
92807
93470
  * @summary Get all Custom Application Settings
@@ -93081,13 +93744,13 @@ export declare const WorkspaceObjectControllerApiFp: (configuration?: MetadataCo
93081
93744
  * @param {string} workspaceId
93082
93745
  * @param {string} objectId
93083
93746
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
93084
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
93747
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
93085
93748
  * @param {boolean} [xGDCVALIDATERELATIONS]
93086
93749
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
93087
93750
  * @param {*} [options] Override http request option.
93088
93751
  * @throws {RequiredError}
93089
93752
  */
93090
- getEntityAutomations(workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
93753
+ getEntityAutomations(workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
93091
93754
  /**
93092
93755
  *
93093
93756
  * @summary Get a Custom Application Setting
@@ -93298,11 +93961,11 @@ export declare const WorkspaceObjectControllerApiFp: (configuration?: MetadataCo
93298
93961
  * @param {string} objectId
93299
93962
  * @param {JsonApiAutomationPatchDocument} jsonApiAutomationPatchDocument
93300
93963
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
93301
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
93964
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
93302
93965
  * @param {*} [options] Override http request option.
93303
93966
  * @throws {RequiredError}
93304
93967
  */
93305
- patchEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
93968
+ patchEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
93306
93969
  /**
93307
93970
  *
93308
93971
  * @summary Patch a Custom Application Setting
@@ -93464,11 +94127,11 @@ export declare const WorkspaceObjectControllerApiFp: (configuration?: MetadataCo
93464
94127
  * @param {string} objectId
93465
94128
  * @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
93466
94129
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
93467
- * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
94130
+ * @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
93468
94131
  * @param {*} [options] Override http request option.
93469
94132
  * @throws {RequiredError}
93470
94133
  */
93471
- updateEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
94134
+ updateEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
93472
94135
  /**
93473
94136
  *
93474
94137
  * @summary Put a Custom Application Setting
@@ -93875,10 +94538,10 @@ export declare interface WorkspaceObjectControllerApiGetAllEntitiesAutomationsRe
93875
94538
  readonly filter?: string;
93876
94539
  /**
93877
94540
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
93878
- * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
94541
+ * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
93879
94542
  * @memberof WorkspaceObjectControllerApiGetAllEntitiesAutomations
93880
94543
  */
93881
- readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
94544
+ readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
93882
94545
  /**
93883
94546
  * Zero-based page index (0..N)
93884
94547
  * @type {number}
@@ -94969,10 +95632,10 @@ export declare interface WorkspaceObjectControllerApiGetEntityAutomationsRequest
94969
95632
  readonly filter?: string;
94970
95633
  /**
94971
95634
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
94972
- * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
95635
+ * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
94973
95636
  * @memberof WorkspaceObjectControllerApiGetEntityAutomations
94974
95637
  */
94975
- readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
95638
+ readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
94976
95639
  /**
94977
95640
  *
94978
95641
  * @type {boolean}
@@ -96545,10 +97208,10 @@ export declare interface WorkspaceObjectControllerApiPatchEntityAutomationsReque
96545
97208
  readonly filter?: string;
96546
97209
  /**
96547
97210
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
96548
- * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
97211
+ * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
96549
97212
  * @memberof WorkspaceObjectControllerApiPatchEntityAutomations
96550
97213
  */
96551
- readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
97214
+ readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
96552
97215
  }
96553
97216
 
96554
97217
  /**
@@ -97065,10 +97728,10 @@ export declare interface WorkspaceObjectControllerApiUpdateEntityAutomationsRequ
97065
97728
  readonly filter?: string;
97066
97729
  /**
97067
97730
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
97068
- * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
97731
+ * @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
97069
97732
  * @memberof WorkspaceObjectControllerApiUpdateEntityAutomations
97070
97733
  */
97071
- readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
97734
+ readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
97072
97735
  }
97073
97736
 
97074
97737
  /**