@gooddata/api-client-tiger 10.43.0-alpha.1 → 10.43.0-alpha.3
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.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +837 -798
- package/esm/generated/export-json-api/api.d.ts +68 -40
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js +9 -0
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/openapi-spec.json +94 -16
- package/esm/generated/metadata-json-api/api.d.ts +697 -693
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +51 -46
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +6792 -6739
- package/package.json +3 -3
|
@@ -3857,7 +3857,7 @@ export declare class ActionsExport extends ExportBaseAPI implements ActionsExpor
|
|
|
3857
3857
|
* @throws {RequiredError}
|
|
3858
3858
|
* @memberof ActionsExport
|
|
3859
3859
|
*/
|
|
3860
|
-
getExportedFile(requestParameters: ActionsExportGetExportedFileRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<
|
|
3860
|
+
getExportedFile(requestParameters: ActionsExportGetExportedFileRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<File, any>>;
|
|
3861
3861
|
/**
|
|
3862
3862
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. After clients creates a POST export request, the processing of it will start shortly asynchronously. To retrieve the result, client has to check periodically for the result on this endpoint. In case the result isn\'t ready yet, the service returns 202. If the result is ready, it returns 200 and octet stream of the result file with provided filename.
|
|
3863
3863
|
* @summary (EXPERIMENTAL) Retrieve exported files
|
|
@@ -3866,7 +3866,7 @@ export declare class ActionsExport extends ExportBaseAPI implements ActionsExpor
|
|
|
3866
3866
|
* @throws {RequiredError}
|
|
3867
3867
|
* @memberof ActionsExport
|
|
3868
3868
|
*/
|
|
3869
|
-
getImageExport(requestParameters: ActionsExportGetImageExportRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<
|
|
3869
|
+
getImageExport(requestParameters: ActionsExportGetImageExportRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<File, any>>;
|
|
3870
3870
|
/**
|
|
3871
3871
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. This endpoint serves as a cache for user-defined metadata of the export for the front end UI to retrieve it, if one was created using the POST ../export/image endpoint. The metadata structure is not verified.
|
|
3872
3872
|
* @summary (EXPERIMENTAL) Retrieve metadata context
|
|
@@ -3893,7 +3893,7 @@ export declare class ActionsExport extends ExportBaseAPI implements ActionsExpor
|
|
|
3893
3893
|
* @throws {RequiredError}
|
|
3894
3894
|
* @memberof ActionsExport
|
|
3895
3895
|
*/
|
|
3896
|
-
getRawExport(requestParameters: ActionsExportGetRawExportRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<
|
|
3896
|
+
getRawExport(requestParameters: ActionsExportGetRawExportRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<File, any>>;
|
|
3897
3897
|
/**
|
|
3898
3898
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. After clients creates a POST export request, the processing of it will start shortly asynchronously. To retrieve the result, client has to check periodically for the result on this endpoint. In case the result isn\'t ready yet, the service returns 202. If the result is ready, it returns 200 and octet stream of the result file with provided filename.
|
|
3899
3899
|
* @summary (EXPERIMENTAL) Retrieve exported files
|
|
@@ -3902,7 +3902,7 @@ export declare class ActionsExport extends ExportBaseAPI implements ActionsExpor
|
|
|
3902
3902
|
* @throws {RequiredError}
|
|
3903
3903
|
* @memberof ActionsExport
|
|
3904
3904
|
*/
|
|
3905
|
-
getSlidesExport(requestParameters: ActionsExportGetSlidesExportRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<
|
|
3905
|
+
getSlidesExport(requestParameters: ActionsExportGetSlidesExportRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<File, any>>;
|
|
3906
3906
|
/**
|
|
3907
3907
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. This endpoint serves as a cache for user-defined metadata of the export for the front end UI to retrieve it, if one was created using the POST ../export/slides endpoint. The metadata structure is not verified.
|
|
3908
3908
|
* @summary (EXPERIMENTAL) Retrieve metadata context
|
|
@@ -3920,7 +3920,7 @@ export declare class ActionsExport extends ExportBaseAPI implements ActionsExpor
|
|
|
3920
3920
|
* @throws {RequiredError}
|
|
3921
3921
|
* @memberof ActionsExport
|
|
3922
3922
|
*/
|
|
3923
|
-
getTabularExport(requestParameters: ActionsExportGetTabularExportRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<
|
|
3923
|
+
getTabularExport(requestParameters: ActionsExportGetTabularExportRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<File, any>>;
|
|
3924
3924
|
}
|
|
3925
3925
|
|
|
3926
3926
|
/**
|
|
@@ -4257,7 +4257,7 @@ export declare const ActionsExportFactory: (configuration?: ExportConfiguration,
|
|
|
4257
4257
|
* @param {*} [options] Override http request option.
|
|
4258
4258
|
* @throws {RequiredError}
|
|
4259
4259
|
*/
|
|
4260
|
-
getExportedFile(requestParameters: ActionsExportGetExportedFileRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
4260
|
+
getExportedFile(requestParameters: ActionsExportGetExportedFileRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
4261
4261
|
/**
|
|
4262
4262
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. After clients creates a POST export request, the processing of it will start shortly asynchronously. To retrieve the result, client has to check periodically for the result on this endpoint. In case the result isn\'t ready yet, the service returns 202. If the result is ready, it returns 200 and octet stream of the result file with provided filename.
|
|
4263
4263
|
* @summary (EXPERIMENTAL) Retrieve exported files
|
|
@@ -4265,7 +4265,7 @@ export declare const ActionsExportFactory: (configuration?: ExportConfiguration,
|
|
|
4265
4265
|
* @param {*} [options] Override http request option.
|
|
4266
4266
|
* @throws {RequiredError}
|
|
4267
4267
|
*/
|
|
4268
|
-
getImageExport(requestParameters: ActionsExportGetImageExportRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
4268
|
+
getImageExport(requestParameters: ActionsExportGetImageExportRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
4269
4269
|
/**
|
|
4270
4270
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. This endpoint serves as a cache for user-defined metadata of the export for the front end UI to retrieve it, if one was created using the POST ../export/image endpoint. The metadata structure is not verified.
|
|
4271
4271
|
* @summary (EXPERIMENTAL) Retrieve metadata context
|
|
@@ -4289,7 +4289,7 @@ export declare const ActionsExportFactory: (configuration?: ExportConfiguration,
|
|
|
4289
4289
|
* @param {*} [options] Override http request option.
|
|
4290
4290
|
* @throws {RequiredError}
|
|
4291
4291
|
*/
|
|
4292
|
-
getRawExport(requestParameters: ActionsExportGetRawExportRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
4292
|
+
getRawExport(requestParameters: ActionsExportGetRawExportRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
4293
4293
|
/**
|
|
4294
4294
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. After clients creates a POST export request, the processing of it will start shortly asynchronously. To retrieve the result, client has to check periodically for the result on this endpoint. In case the result isn\'t ready yet, the service returns 202. If the result is ready, it returns 200 and octet stream of the result file with provided filename.
|
|
4295
4295
|
* @summary (EXPERIMENTAL) Retrieve exported files
|
|
@@ -4297,7 +4297,7 @@ export declare const ActionsExportFactory: (configuration?: ExportConfiguration,
|
|
|
4297
4297
|
* @param {*} [options] Override http request option.
|
|
4298
4298
|
* @throws {RequiredError}
|
|
4299
4299
|
*/
|
|
4300
|
-
getSlidesExport(requestParameters: ActionsExportGetSlidesExportRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
4300
|
+
getSlidesExport(requestParameters: ActionsExportGetSlidesExportRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
4301
4301
|
/**
|
|
4302
4302
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. This endpoint serves as a cache for user-defined metadata of the export for the front end UI to retrieve it, if one was created using the POST ../export/slides endpoint. The metadata structure is not verified.
|
|
4303
4303
|
* @summary (EXPERIMENTAL) Retrieve metadata context
|
|
@@ -4313,7 +4313,7 @@ export declare const ActionsExportFactory: (configuration?: ExportConfiguration,
|
|
|
4313
4313
|
* @param {*} [options] Override http request option.
|
|
4314
4314
|
* @throws {RequiredError}
|
|
4315
4315
|
*/
|
|
4316
|
-
getTabularExport(requestParameters: ActionsExportGetTabularExportRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
4316
|
+
getTabularExport(requestParameters: ActionsExportGetTabularExportRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
4317
4317
|
};
|
|
4318
4318
|
|
|
4319
4319
|
/**
|
|
@@ -4386,7 +4386,7 @@ export declare const ActionsExportFp: (configuration?: ExportConfiguration) => {
|
|
|
4386
4386
|
* @param {*} [options] Override http request option.
|
|
4387
4387
|
* @throws {RequiredError}
|
|
4388
4388
|
*/
|
|
4389
|
-
getExportedFile(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4389
|
+
getExportedFile(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
4390
4390
|
/**
|
|
4391
4391
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. After clients creates a POST export request, the processing of it will start shortly asynchronously. To retrieve the result, client has to check periodically for the result on this endpoint. In case the result isn\'t ready yet, the service returns 202. If the result is ready, it returns 200 and octet stream of the result file with provided filename.
|
|
4392
4392
|
* @summary (EXPERIMENTAL) Retrieve exported files
|
|
@@ -4395,7 +4395,7 @@ export declare const ActionsExportFp: (configuration?: ExportConfiguration) => {
|
|
|
4395
4395
|
* @param {*} [options] Override http request option.
|
|
4396
4396
|
* @throws {RequiredError}
|
|
4397
4397
|
*/
|
|
4398
|
-
getImageExport(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4398
|
+
getImageExport(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
4399
4399
|
/**
|
|
4400
4400
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. This endpoint serves as a cache for user-defined metadata of the export for the front end UI to retrieve it, if one was created using the POST ../export/image endpoint. The metadata structure is not verified.
|
|
4401
4401
|
* @summary (EXPERIMENTAL) Retrieve metadata context
|
|
@@ -4422,7 +4422,7 @@ export declare const ActionsExportFp: (configuration?: ExportConfiguration) => {
|
|
|
4422
4422
|
* @param {*} [options] Override http request option.
|
|
4423
4423
|
* @throws {RequiredError}
|
|
4424
4424
|
*/
|
|
4425
|
-
getRawExport(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4425
|
+
getRawExport(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
4426
4426
|
/**
|
|
4427
4427
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. After clients creates a POST export request, the processing of it will start shortly asynchronously. To retrieve the result, client has to check periodically for the result on this endpoint. In case the result isn\'t ready yet, the service returns 202. If the result is ready, it returns 200 and octet stream of the result file with provided filename.
|
|
4428
4428
|
* @summary (EXPERIMENTAL) Retrieve exported files
|
|
@@ -4431,7 +4431,7 @@ export declare const ActionsExportFp: (configuration?: ExportConfiguration) => {
|
|
|
4431
4431
|
* @param {*} [options] Override http request option.
|
|
4432
4432
|
* @throws {RequiredError}
|
|
4433
4433
|
*/
|
|
4434
|
-
getSlidesExport(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4434
|
+
getSlidesExport(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
4435
4435
|
/**
|
|
4436
4436
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. This endpoint serves as a cache for user-defined metadata of the export for the front end UI to retrieve it, if one was created using the POST ../export/slides endpoint. The metadata structure is not verified.
|
|
4437
4437
|
* @summary (EXPERIMENTAL) Retrieve metadata context
|
|
@@ -4449,7 +4449,7 @@ export declare const ActionsExportFp: (configuration?: ExportConfiguration) => {
|
|
|
4449
4449
|
* @param {*} [options] Override http request option.
|
|
4450
4450
|
* @throws {RequiredError}
|
|
4451
4451
|
*/
|
|
4452
|
-
getTabularExport(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4452
|
+
getTabularExport(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
4453
4453
|
};
|
|
4454
4454
|
|
|
4455
4455
|
/**
|
|
@@ -4680,7 +4680,7 @@ export declare interface ActionsExportInterface {
|
|
|
4680
4680
|
* @throws {RequiredError}
|
|
4681
4681
|
* @memberof ActionsExportInterface
|
|
4682
4682
|
*/
|
|
4683
|
-
getExportedFile(requestParameters: ActionsExportGetExportedFileRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
4683
|
+
getExportedFile(requestParameters: ActionsExportGetExportedFileRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
4684
4684
|
/**
|
|
4685
4685
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. After clients creates a POST export request, the processing of it will start shortly asynchronously. To retrieve the result, client has to check periodically for the result on this endpoint. In case the result isn\'t ready yet, the service returns 202. If the result is ready, it returns 200 and octet stream of the result file with provided filename.
|
|
4686
4686
|
* @summary (EXPERIMENTAL) Retrieve exported files
|
|
@@ -4689,7 +4689,7 @@ export declare interface ActionsExportInterface {
|
|
|
4689
4689
|
* @throws {RequiredError}
|
|
4690
4690
|
* @memberof ActionsExportInterface
|
|
4691
4691
|
*/
|
|
4692
|
-
getImageExport(requestParameters: ActionsExportGetImageExportRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
4692
|
+
getImageExport(requestParameters: ActionsExportGetImageExportRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
4693
4693
|
/**
|
|
4694
4694
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. This endpoint serves as a cache for user-defined metadata of the export for the front end UI to retrieve it, if one was created using the POST ../export/image endpoint. The metadata structure is not verified.
|
|
4695
4695
|
* @summary (EXPERIMENTAL) Retrieve metadata context
|
|
@@ -4716,7 +4716,7 @@ export declare interface ActionsExportInterface {
|
|
|
4716
4716
|
* @throws {RequiredError}
|
|
4717
4717
|
* @memberof ActionsExportInterface
|
|
4718
4718
|
*/
|
|
4719
|
-
getRawExport(requestParameters: ActionsExportGetRawExportRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
4719
|
+
getRawExport(requestParameters: ActionsExportGetRawExportRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
4720
4720
|
/**
|
|
4721
4721
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. After clients creates a POST export request, the processing of it will start shortly asynchronously. To retrieve the result, client has to check periodically for the result on this endpoint. In case the result isn\'t ready yet, the service returns 202. If the result is ready, it returns 200 and octet stream of the result file with provided filename.
|
|
4722
4722
|
* @summary (EXPERIMENTAL) Retrieve exported files
|
|
@@ -4725,7 +4725,7 @@ export declare interface ActionsExportInterface {
|
|
|
4725
4725
|
* @throws {RequiredError}
|
|
4726
4726
|
* @memberof ActionsExportInterface
|
|
4727
4727
|
*/
|
|
4728
|
-
getSlidesExport(requestParameters: ActionsExportGetSlidesExportRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
4728
|
+
getSlidesExport(requestParameters: ActionsExportGetSlidesExportRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
4729
4729
|
/**
|
|
4730
4730
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. This endpoint serves as a cache for user-defined metadata of the export for the front end UI to retrieve it, if one was created using the POST ../export/slides endpoint. The metadata structure is not verified.
|
|
4731
4731
|
* @summary (EXPERIMENTAL) Retrieve metadata context
|
|
@@ -4743,7 +4743,7 @@ export declare interface ActionsExportInterface {
|
|
|
4743
4743
|
* @throws {RequiredError}
|
|
4744
4744
|
* @memberof ActionsExportInterface
|
|
4745
4745
|
*/
|
|
4746
|
-
getTabularExport(requestParameters: ActionsExportGetTabularExportRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
4746
|
+
getTabularExport(requestParameters: ActionsExportGetTabularExportRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
4747
4747
|
}
|
|
4748
4748
|
|
|
4749
4749
|
/**
|
|
@@ -10718,7 +10718,7 @@ export declare const AutomationOrganizationViewControllerApiAxiosParamCreator: (
|
|
|
10718
10718
|
*
|
|
10719
10719
|
* @summary Get all Automations across all Workspaces
|
|
10720
10720
|
* @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==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
10721
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=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 \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
10721
|
+
* @param {Array<'workspaces' | 'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'workspace' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=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 \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
10722
10722
|
* @param {number} [page] Zero-based page index (0..N)
|
|
10723
10723
|
* @param {number} [size] The size of the page to be returned
|
|
10724
10724
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -10726,7 +10726,7 @@ export declare const AutomationOrganizationViewControllerApiAxiosParamCreator: (
|
|
|
10726
10726
|
* @param {*} [options] Override http request option.
|
|
10727
10727
|
* @throws {RequiredError}
|
|
10728
10728
|
*/
|
|
10729
|
-
getAllAutomationsWorkspaceAutomations: (filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<"page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
|
|
10729
|
+
getAllAutomationsWorkspaceAutomations: (filter?: string, include?: Array<"workspaces" | "notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "workspace" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<"page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
|
|
10730
10730
|
};
|
|
10731
10731
|
|
|
10732
10732
|
/**
|
|
@@ -10753,7 +10753,7 @@ export declare const AutomationOrganizationViewControllerApiFp: (configuration?:
|
|
|
10753
10753
|
*
|
|
10754
10754
|
* @summary Get all Automations across all Workspaces
|
|
10755
10755
|
* @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==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
10756
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=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 \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
10756
|
+
* @param {Array<'workspaces' | 'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'workspace' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=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 \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
10757
10757
|
* @param {number} [page] Zero-based page index (0..N)
|
|
10758
10758
|
* @param {number} [size] The size of the page to be returned
|
|
10759
10759
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -10761,7 +10761,7 @@ export declare const AutomationOrganizationViewControllerApiFp: (configuration?:
|
|
|
10761
10761
|
* @param {*} [options] Override http request option.
|
|
10762
10762
|
* @throws {RequiredError}
|
|
10763
10763
|
*/
|
|
10764
|
-
getAllAutomationsWorkspaceAutomations(filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<"page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiWorkspaceAutomationOutList>>;
|
|
10764
|
+
getAllAutomationsWorkspaceAutomations(filter?: string, include?: Array<"workspaces" | "notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "workspace" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<"page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiWorkspaceAutomationOutList>>;
|
|
10765
10765
|
};
|
|
10766
10766
|
|
|
10767
10767
|
/**
|
|
@@ -10778,10 +10778,10 @@ export declare interface AutomationOrganizationViewControllerApiGetAllAutomation
|
|
|
10778
10778
|
readonly filter?: string;
|
|
10779
10779
|
/**
|
|
10780
10780
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=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 \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
10781
|
-
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
|
|
10781
|
+
* @type {Array<'workspaces' | 'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'workspace' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
|
|
10782
10782
|
* @memberof AutomationOrganizationViewControllerApiGetAllAutomationsWorkspaceAutomations
|
|
10783
10783
|
*/
|
|
10784
|
-
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
|
|
10784
|
+
readonly include?: Array<"workspaces" | "notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "workspace" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
|
|
10785
10785
|
/**
|
|
10786
10786
|
* Zero-based page index (0..N)
|
|
10787
10787
|
* @type {number}
|
|
@@ -11416,7 +11416,7 @@ export declare const AutomationsApiAxiosParamCreator: (configuration?: MetadataC
|
|
|
11416
11416
|
*
|
|
11417
11417
|
* @summary Get all Automations across all Workspaces
|
|
11418
11418
|
* @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==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
11419
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=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 \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
11419
|
+
* @param {Array<'workspaces' | 'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'workspace' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=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 \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
11420
11420
|
* @param {number} [page] Zero-based page index (0..N)
|
|
11421
11421
|
* @param {number} [size] The size of the page to be returned
|
|
11422
11422
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -11424,7 +11424,7 @@ export declare const AutomationsApiAxiosParamCreator: (configuration?: MetadataC
|
|
|
11424
11424
|
* @param {*} [options] Override http request option.
|
|
11425
11425
|
* @throws {RequiredError}
|
|
11426
11426
|
*/
|
|
11427
|
-
getAllAutomationsWorkspaceAutomations: (filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<"page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
|
|
11427
|
+
getAllAutomationsWorkspaceAutomations: (filter?: string, include?: Array<"workspaces" | "notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "workspace" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<"page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
|
|
11428
11428
|
/**
|
|
11429
11429
|
*
|
|
11430
11430
|
* @summary Get all Automations
|
|
@@ -11862,7 +11862,7 @@ export declare const AutomationsApiFp: (configuration?: MetadataConfiguration) =
|
|
|
11862
11862
|
*
|
|
11863
11863
|
* @summary Get all Automations across all Workspaces
|
|
11864
11864
|
* @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==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
11865
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=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 \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
11865
|
+
* @param {Array<'workspaces' | 'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'workspace' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=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 \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
11866
11866
|
* @param {number} [page] Zero-based page index (0..N)
|
|
11867
11867
|
* @param {number} [size] The size of the page to be returned
|
|
11868
11868
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -11870,7 +11870,7 @@ export declare const AutomationsApiFp: (configuration?: MetadataConfiguration) =
|
|
|
11870
11870
|
* @param {*} [options] Override http request option.
|
|
11871
11871
|
* @throws {RequiredError}
|
|
11872
11872
|
*/
|
|
11873
|
-
getAllAutomationsWorkspaceAutomations(filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<"page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiWorkspaceAutomationOutList>>;
|
|
11873
|
+
getAllAutomationsWorkspaceAutomations(filter?: string, include?: Array<"workspaces" | "notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "workspace" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<"page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiWorkspaceAutomationOutList>>;
|
|
11874
11874
|
/**
|
|
11875
11875
|
*
|
|
11876
11876
|
* @summary Get all Automations
|
|
@@ -12025,10 +12025,10 @@ export declare interface AutomationsApiGetAllAutomationsWorkspaceAutomationsRequ
|
|
|
12025
12025
|
readonly filter?: string;
|
|
12026
12026
|
/**
|
|
12027
12027
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=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 \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
12028
|
-
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
|
|
12028
|
+
* @type {Array<'workspaces' | 'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'workspace' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
|
|
12029
12029
|
* @memberof AutomationsApiGetAllAutomationsWorkspaceAutomations
|
|
12030
12030
|
*/
|
|
12031
|
-
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
|
|
12031
|
+
readonly include?: Array<"workspaces" | "notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "workspace" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
|
|
12032
12032
|
/**
|
|
12033
12033
|
* Zero-based page index (0..N)
|
|
12034
12034
|
* @type {number}
|
|
@@ -23824,7 +23824,7 @@ export declare const EntitiesApiAxiosParamCreator: (configuration?: MetadataConf
|
|
|
23824
23824
|
*
|
|
23825
23825
|
* @summary Get all Automations across all Workspaces
|
|
23826
23826
|
* @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==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
23827
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=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 \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
23827
|
+
* @param {Array<'workspaces' | 'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'workspace' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=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 \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
23828
23828
|
* @param {number} [page] Zero-based page index (0..N)
|
|
23829
23829
|
* @param {number} [size] The size of the page to be returned
|
|
23830
23830
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -23832,7 +23832,7 @@ export declare const EntitiesApiAxiosParamCreator: (configuration?: MetadataConf
|
|
|
23832
23832
|
* @param {*} [options] Override http request option.
|
|
23833
23833
|
* @throws {RequiredError}
|
|
23834
23834
|
*/
|
|
23835
|
-
getAllAutomationsWorkspaceAutomations: (filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<"page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
|
|
23835
|
+
getAllAutomationsWorkspaceAutomations: (filter?: string, include?: Array<"workspaces" | "notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "workspace" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<"page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
|
|
23836
23836
|
/**
|
|
23837
23837
|
*
|
|
23838
23838
|
* @param {string} workspaceId
|
|
@@ -28997,7 +28997,7 @@ export declare const EntitiesApiFp: (configuration?: MetadataConfiguration) => {
|
|
|
28997
28997
|
*
|
|
28998
28998
|
* @summary Get all Automations across all Workspaces
|
|
28999
28999
|
* @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==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
29000
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=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 \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
29000
|
+
* @param {Array<'workspaces' | 'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'workspace' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=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 \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
29001
29001
|
* @param {number} [page] Zero-based page index (0..N)
|
|
29002
29002
|
* @param {number} [size] The size of the page to be returned
|
|
29003
29003
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -29005,7 +29005,7 @@ export declare const EntitiesApiFp: (configuration?: MetadataConfiguration) => {
|
|
|
29005
29005
|
* @param {*} [options] Override http request option.
|
|
29006
29006
|
* @throws {RequiredError}
|
|
29007
29007
|
*/
|
|
29008
|
-
getAllAutomationsWorkspaceAutomations(filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<"page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiWorkspaceAutomationOutList>>;
|
|
29008
|
+
getAllAutomationsWorkspaceAutomations(filter?: string, include?: Array<"workspaces" | "notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "workspace" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<"page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiWorkspaceAutomationOutList>>;
|
|
29009
29009
|
/**
|
|
29010
29010
|
*
|
|
29011
29011
|
* @param {string} workspaceId
|
|
@@ -30671,10 +30671,10 @@ export declare interface EntitiesApiGetAllAutomationsWorkspaceAutomationsRequest
|
|
|
30671
30671
|
readonly filter?: string;
|
|
30672
30672
|
/**
|
|
30673
30673
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=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 \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
30674
|
-
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
|
|
30674
|
+
* @type {Array<'workspaces' | 'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'workspace' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
|
|
30675
30675
|
* @memberof EntitiesApiGetAllAutomationsWorkspaceAutomations
|
|
30676
30676
|
*/
|
|
30677
|
-
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
|
|
30677
|
+
readonly include?: Array<"workspaces" | "notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "workspace" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
|
|
30678
30678
|
/**
|
|
30679
30679
|
* Zero-based page index (0..N)
|
|
30680
30680
|
* @type {number}
|
|
@@ -39762,26 +39762,58 @@ export declare interface ExportSettings {
|
|
|
39762
39762
|
mergeHeaders?: boolean;
|
|
39763
39763
|
/**
|
|
39764
39764
|
* Print applied filters on top of the document. (PDF/HTML when visualizationObject is given)
|
|
39765
|
+
* @deprecated
|
|
39765
39766
|
*/
|
|
39766
39767
|
showFilters?: boolean;
|
|
39767
39768
|
/**
|
|
39768
39769
|
* Page size and orientation. (PDF)
|
|
39770
|
+
* @deprecated
|
|
39769
39771
|
*/
|
|
39770
39772
|
pdfPageSize?: string;
|
|
39771
39773
|
/**
|
|
39772
39774
|
* Custom CSS styles for the table. (PDF, HTML)
|
|
39775
|
+
* @deprecated
|
|
39773
39776
|
*/
|
|
39774
39777
|
pdfTableStyle?: Array<ExportPdfTableStyle>;
|
|
39775
39778
|
/**
|
|
39776
39779
|
* Top left header content. (PDF)
|
|
39780
|
+
* @deprecated
|
|
39777
39781
|
*/
|
|
39778
39782
|
pdfTopLeftContent?: string;
|
|
39779
39783
|
/**
|
|
39780
39784
|
* Top right header content. (PDF)
|
|
39785
|
+
* @deprecated
|
|
39781
39786
|
*/
|
|
39782
39787
|
pdfTopRightContent?: string;
|
|
39788
|
+
/**
|
|
39789
|
+
* Set page size. (PDF)
|
|
39790
|
+
*/
|
|
39791
|
+
pageSize?: ExportSettingsPageSizeEnum;
|
|
39792
|
+
/**
|
|
39793
|
+
* Set page orientation. (PDF)
|
|
39794
|
+
*/
|
|
39795
|
+
pageOrientation?: ExportSettingsPageOrientationEnum;
|
|
39796
|
+
/**
|
|
39797
|
+
* Show info page with export information.
|
|
39798
|
+
*/
|
|
39799
|
+
showInfoPage?: boolean;
|
|
39783
39800
|
}
|
|
39784
39801
|
|
|
39802
|
+
export declare const ExportSettingsPageOrientationEnum: {
|
|
39803
|
+
readonly PORTRAIT: "PORTRAIT";
|
|
39804
|
+
readonly LANDSCAPE: "LANDSCAPE";
|
|
39805
|
+
};
|
|
39806
|
+
|
|
39807
|
+
export declare type ExportSettingsPageOrientationEnum = (typeof ExportSettingsPageOrientationEnum)[keyof typeof ExportSettingsPageOrientationEnum];
|
|
39808
|
+
|
|
39809
|
+
export declare const ExportSettingsPageSizeEnum: {
|
|
39810
|
+
readonly A3: "A3";
|
|
39811
|
+
readonly A4: "A4";
|
|
39812
|
+
readonly LETTER: "LETTER";
|
|
39813
|
+
};
|
|
39814
|
+
|
|
39815
|
+
export declare type ExportSettingsPageSizeEnum = (typeof ExportSettingsPageSizeEnum)[keyof typeof ExportSettingsPageSizeEnum];
|
|
39816
|
+
|
|
39785
39817
|
/**
|
|
39786
39818
|
* Metric defined by referencing a MAQL metric or an LDM fact object with aggregation.
|
|
39787
39819
|
*/
|
|
@@ -42750,7 +42782,7 @@ export declare class ImageExportExport extends ExportBaseAPI implements ImageExp
|
|
|
42750
42782
|
* @throws {RequiredError}
|
|
42751
42783
|
* @memberof ImageExportExport
|
|
42752
42784
|
*/
|
|
42753
|
-
getImageExport(requestParameters: ImageExportExportGetImageExportRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<
|
|
42785
|
+
getImageExport(requestParameters: ImageExportExportGetImageExportRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<File, any>>;
|
|
42754
42786
|
/**
|
|
42755
42787
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. This endpoint serves as a cache for user-defined metadata of the export for the front end UI to retrieve it, if one was created using the POST ../export/image endpoint. The metadata structure is not verified.
|
|
42756
42788
|
* @summary (EXPERIMENTAL) Retrieve metadata context
|
|
@@ -42836,7 +42868,7 @@ export declare const ImageExportExportFactory: (configuration?: ExportConfigurat
|
|
|
42836
42868
|
* @param {*} [options] Override http request option.
|
|
42837
42869
|
* @throws {RequiredError}
|
|
42838
42870
|
*/
|
|
42839
|
-
getImageExport(requestParameters: ImageExportExportGetImageExportRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
42871
|
+
getImageExport(requestParameters: ImageExportExportGetImageExportRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
42840
42872
|
/**
|
|
42841
42873
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. This endpoint serves as a cache for user-defined metadata of the export for the front end UI to retrieve it, if one was created using the POST ../export/image endpoint. The metadata structure is not verified.
|
|
42842
42874
|
* @summary (EXPERIMENTAL) Retrieve metadata context
|
|
@@ -42869,7 +42901,7 @@ export declare const ImageExportExportFp: (configuration?: ExportConfiguration)
|
|
|
42869
42901
|
* @param {*} [options] Override http request option.
|
|
42870
42902
|
* @throws {RequiredError}
|
|
42871
42903
|
*/
|
|
42872
|
-
getImageExport(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
42904
|
+
getImageExport(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
42873
42905
|
/**
|
|
42874
42906
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. This endpoint serves as a cache for user-defined metadata of the export for the front end UI to retrieve it, if one was created using the POST ../export/image endpoint. The metadata structure is not verified.
|
|
42875
42907
|
* @summary (EXPERIMENTAL) Retrieve metadata context
|
|
@@ -42944,7 +42976,7 @@ export declare interface ImageExportExportInterface {
|
|
|
42944
42976
|
* @throws {RequiredError}
|
|
42945
42977
|
* @memberof ImageExportExportInterface
|
|
42946
42978
|
*/
|
|
42947
|
-
getImageExport(requestParameters: ImageExportExportGetImageExportRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
42979
|
+
getImageExport(requestParameters: ImageExportExportGetImageExportRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
42948
42980
|
/**
|
|
42949
42981
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. This endpoint serves as a cache for user-defined metadata of the export for the front end UI to retrieve it, if one was created using the POST ../export/image endpoint. The metadata structure is not verified.
|
|
42950
42982
|
* @summary (EXPERIMENTAL) Retrieve metadata context
|
|
@@ -43475,7 +43507,7 @@ export declare interface JsonApiAggregatedFactOut {
|
|
|
43475
43507
|
* API identifier of an object
|
|
43476
43508
|
*/
|
|
43477
43509
|
id: string;
|
|
43478
|
-
meta?:
|
|
43510
|
+
meta?: JsonApiDatasetOutMeta;
|
|
43479
43511
|
attributes: JsonApiAggregatedFactOutAttributes;
|
|
43480
43512
|
relationships?: JsonApiAggregatedFactOutRelationships;
|
|
43481
43513
|
}
|
|
@@ -43529,7 +43561,7 @@ export declare type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLink
|
|
|
43529
43561
|
export declare interface JsonApiAggregatedFactOutList {
|
|
43530
43562
|
data: Array<JsonApiAggregatedFactOutWithLinks>;
|
|
43531
43563
|
links?: ListLinks;
|
|
43532
|
-
meta?:
|
|
43564
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
43533
43565
|
/**
|
|
43534
43566
|
* Included resources
|
|
43535
43567
|
*/
|
|
@@ -43537,7 +43569,7 @@ export declare interface JsonApiAggregatedFactOutList {
|
|
|
43537
43569
|
}
|
|
43538
43570
|
|
|
43539
43571
|
export declare interface JsonApiAggregatedFactOutRelationships {
|
|
43540
|
-
dataset?:
|
|
43572
|
+
dataset?: JsonApiFactOutRelationshipsDataset;
|
|
43541
43573
|
sourceFact?: JsonApiAggregatedFactOutRelationshipsSourceFact;
|
|
43542
43574
|
}
|
|
43543
43575
|
|
|
@@ -43560,7 +43592,7 @@ export declare interface JsonApiAggregatedFactOutWithLinks {
|
|
|
43560
43592
|
* API identifier of an object
|
|
43561
43593
|
*/
|
|
43562
43594
|
id: string;
|
|
43563
|
-
meta?:
|
|
43595
|
+
meta?: JsonApiDatasetOutMeta;
|
|
43564
43596
|
attributes: JsonApiAggregatedFactOutAttributes;
|
|
43565
43597
|
relationships?: JsonApiAggregatedFactOutRelationships;
|
|
43566
43598
|
links?: ObjectLinks;
|
|
@@ -43584,18 +43616,7 @@ export declare interface JsonApiAnalyticalDashboardIn {
|
|
|
43584
43616
|
* API identifier of an object
|
|
43585
43617
|
*/
|
|
43586
43618
|
id: string;
|
|
43587
|
-
attributes:
|
|
43588
|
-
}
|
|
43589
|
-
|
|
43590
|
-
export declare interface JsonApiAnalyticalDashboardInAttributes {
|
|
43591
|
-
title?: string;
|
|
43592
|
-
description?: string;
|
|
43593
|
-
tags?: Array<string>;
|
|
43594
|
-
areRelationsValid?: boolean;
|
|
43595
|
-
/**
|
|
43596
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
43597
|
-
*/
|
|
43598
|
-
content: object;
|
|
43619
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
43599
43620
|
}
|
|
43600
43621
|
|
|
43601
43622
|
export declare interface JsonApiAnalyticalDashboardInDocument {
|
|
@@ -43659,7 +43680,7 @@ export declare type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDas
|
|
|
43659
43680
|
export declare interface JsonApiAnalyticalDashboardOutList {
|
|
43660
43681
|
data: Array<JsonApiAnalyticalDashboardOutWithLinks>;
|
|
43661
43682
|
links?: ListLinks;
|
|
43662
|
-
meta?:
|
|
43683
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
43663
43684
|
/**
|
|
43664
43685
|
* Included resources
|
|
43665
43686
|
*/
|
|
@@ -43671,7 +43692,7 @@ export declare interface JsonApiAnalyticalDashboardOutMeta {
|
|
|
43671
43692
|
* List of valid permissions for a logged-in user.
|
|
43672
43693
|
*/
|
|
43673
43694
|
permissions?: Array<JsonApiAnalyticalDashboardOutMetaPermissionsEnum>;
|
|
43674
|
-
origin?:
|
|
43695
|
+
origin?: JsonApiDatasetOutMetaOrigin;
|
|
43675
43696
|
accessInfo?: JsonApiAnalyticalDashboardOutMetaAccessInfo;
|
|
43676
43697
|
}
|
|
43677
43698
|
|
|
@@ -43697,7 +43718,7 @@ export declare interface JsonApiAnalyticalDashboardOutRelationships {
|
|
|
43697
43718
|
analyticalDashboards?: JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards;
|
|
43698
43719
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
43699
43720
|
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
43700
|
-
datasets?:
|
|
43721
|
+
datasets?: JsonApiDatasetOutRelationshipsReferences;
|
|
43701
43722
|
filterContexts?: JsonApiAnalyticalDashboardOutRelationshipsFilterContexts;
|
|
43702
43723
|
dashboardPlugins?: JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins;
|
|
43703
43724
|
}
|
|
@@ -43805,7 +43826,7 @@ export declare interface JsonApiAnalyticalDashboardPostOptionalId {
|
|
|
43805
43826
|
* API identifier of an object
|
|
43806
43827
|
*/
|
|
43807
43828
|
id?: string;
|
|
43808
|
-
attributes:
|
|
43829
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
43809
43830
|
}
|
|
43810
43831
|
|
|
43811
43832
|
export declare interface JsonApiAnalyticalDashboardPostOptionalIdDocument {
|
|
@@ -43875,7 +43896,7 @@ export declare interface JsonApiApiTokenOutDocument {
|
|
|
43875
43896
|
export declare interface JsonApiApiTokenOutList {
|
|
43876
43897
|
data: Array<JsonApiApiTokenOutWithLinks>;
|
|
43877
43898
|
links?: ListLinks;
|
|
43878
|
-
meta?:
|
|
43899
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
43879
43900
|
}
|
|
43880
43901
|
|
|
43881
43902
|
export declare const JsonApiApiTokenOutTypeEnum: {
|
|
@@ -43965,7 +43986,7 @@ export declare interface JsonApiAttributeHierarchyOut {
|
|
|
43965
43986
|
* API identifier of an object
|
|
43966
43987
|
*/
|
|
43967
43988
|
id: string;
|
|
43968
|
-
meta?:
|
|
43989
|
+
meta?: JsonApiDatasetOutMeta;
|
|
43969
43990
|
attributes?: JsonApiAttributeHierarchyOutAttributes;
|
|
43970
43991
|
relationships?: JsonApiAttributeHierarchyOutRelationships;
|
|
43971
43992
|
}
|
|
@@ -44003,7 +44024,7 @@ export declare type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWi
|
|
|
44003
44024
|
export declare interface JsonApiAttributeHierarchyOutList {
|
|
44004
44025
|
data: Array<JsonApiAttributeHierarchyOutWithLinks>;
|
|
44005
44026
|
links?: ListLinks;
|
|
44006
|
-
meta?:
|
|
44027
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
44007
44028
|
/**
|
|
44008
44029
|
* Included resources
|
|
44009
44030
|
*/
|
|
@@ -44013,7 +44034,7 @@ export declare interface JsonApiAttributeHierarchyOutList {
|
|
|
44013
44034
|
export declare interface JsonApiAttributeHierarchyOutRelationships {
|
|
44014
44035
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
44015
44036
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
44016
|
-
attributes?:
|
|
44037
|
+
attributes?: JsonApiDatasetOutRelationshipsAttributes;
|
|
44017
44038
|
}
|
|
44018
44039
|
|
|
44019
44040
|
export declare const JsonApiAttributeHierarchyOutTypeEnum: {
|
|
@@ -44031,7 +44052,7 @@ export declare interface JsonApiAttributeHierarchyOutWithLinks {
|
|
|
44031
44052
|
* API identifier of an object
|
|
44032
44053
|
*/
|
|
44033
44054
|
id: string;
|
|
44034
|
-
meta?:
|
|
44055
|
+
meta?: JsonApiDatasetOutMeta;
|
|
44035
44056
|
attributes?: JsonApiAttributeHierarchyOutAttributes;
|
|
44036
44057
|
relationships?: JsonApiAttributeHierarchyOutRelationships;
|
|
44037
44058
|
links?: ObjectLinks;
|
|
@@ -44094,7 +44115,7 @@ export declare interface JsonApiAttributeOut {
|
|
|
44094
44115
|
* API identifier of an object
|
|
44095
44116
|
*/
|
|
44096
44117
|
id: string;
|
|
44097
|
-
meta?:
|
|
44118
|
+
meta?: JsonApiDatasetOutMeta;
|
|
44098
44119
|
attributes?: JsonApiAttributeOutAttributes;
|
|
44099
44120
|
relationships?: JsonApiAttributeOutRelationships;
|
|
44100
44121
|
}
|
|
@@ -44171,7 +44192,7 @@ export declare type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWi
|
|
|
44171
44192
|
export declare interface JsonApiAttributeOutList {
|
|
44172
44193
|
data: Array<JsonApiAttributeOutWithLinks>;
|
|
44173
44194
|
links?: ListLinks;
|
|
44174
|
-
meta?:
|
|
44195
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
44175
44196
|
/**
|
|
44176
44197
|
* Included resources
|
|
44177
44198
|
*/
|
|
@@ -44179,7 +44200,7 @@ export declare interface JsonApiAttributeOutList {
|
|
|
44179
44200
|
}
|
|
44180
44201
|
|
|
44181
44202
|
export declare interface JsonApiAttributeOutRelationships {
|
|
44182
|
-
dataset?:
|
|
44203
|
+
dataset?: JsonApiFactOutRelationshipsDataset;
|
|
44183
44204
|
defaultView?: JsonApiAttributeOutRelationshipsDefaultView;
|
|
44184
44205
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
44185
44206
|
attributeHierarchies?: JsonApiAttributeOutRelationshipsAttributeHierarchies;
|
|
@@ -44192,10 +44213,6 @@ export declare interface JsonApiAttributeOutRelationshipsAttributeHierarchies {
|
|
|
44192
44213
|
data: Array<JsonApiAttributeHierarchyLinkage>;
|
|
44193
44214
|
}
|
|
44194
44215
|
|
|
44195
|
-
export declare interface JsonApiAttributeOutRelationshipsDataset {
|
|
44196
|
-
data: JsonApiDatasetLinkage | null;
|
|
44197
|
-
}
|
|
44198
|
-
|
|
44199
44216
|
export declare interface JsonApiAttributeOutRelationshipsDefaultView {
|
|
44200
44217
|
data: JsonApiLabelLinkage | null;
|
|
44201
44218
|
}
|
|
@@ -44215,7 +44232,7 @@ export declare interface JsonApiAttributeOutWithLinks {
|
|
|
44215
44232
|
* API identifier of an object
|
|
44216
44233
|
*/
|
|
44217
44234
|
id: string;
|
|
44218
|
-
meta?:
|
|
44235
|
+
meta?: JsonApiDatasetOutMeta;
|
|
44219
44236
|
attributes?: JsonApiAttributeOutAttributes;
|
|
44220
44237
|
relationships?: JsonApiAttributeOutRelationships;
|
|
44221
44238
|
links?: ObjectLinks;
|
|
@@ -44252,89 +44269,23 @@ export declare interface JsonApiAutomationInAttributes {
|
|
|
44252
44269
|
* Additional details to be included in the automated message.
|
|
44253
44270
|
*/
|
|
44254
44271
|
details?: object;
|
|
44255
|
-
metadata?:
|
|
44272
|
+
metadata?: JsonApiAutomationOutAttributesMetadata | null;
|
|
44256
44273
|
/**
|
|
44257
44274
|
* Current state of the automation.
|
|
44258
44275
|
*/
|
|
44259
44276
|
state?: JsonApiAutomationInAttributesStateEnum;
|
|
44260
|
-
schedule?:
|
|
44261
|
-
alert?:
|
|
44262
|
-
tabularExports?: Array<
|
|
44263
|
-
visualExports?: Array<
|
|
44264
|
-
imageExports?: Array<
|
|
44265
|
-
rawExports?: Array<
|
|
44266
|
-
slidesExports?: Array<
|
|
44267
|
-
dashboardTabularExports?: Array<
|
|
44277
|
+
schedule?: JsonApiAutomationOutAttributesSchedule;
|
|
44278
|
+
alert?: JsonApiAutomationOutAttributesAlert;
|
|
44279
|
+
tabularExports?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
|
|
44280
|
+
visualExports?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
|
|
44281
|
+
imageExports?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
|
|
44282
|
+
rawExports?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
|
|
44283
|
+
slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
|
|
44284
|
+
dashboardTabularExports?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
|
|
44268
44285
|
/**
|
|
44269
44286
|
* External recipients of the automation action results.
|
|
44270
44287
|
*/
|
|
44271
|
-
externalRecipients?: Array<
|
|
44272
|
-
}
|
|
44273
|
-
|
|
44274
|
-
export declare interface JsonApiAutomationInAttributesAlert {
|
|
44275
|
-
execution: AlertAfm;
|
|
44276
|
-
condition: AlertCondition;
|
|
44277
|
-
/**
|
|
44278
|
-
* Trigger behavior for the alert. ALWAYS - alert is triggered every time the condition is met. ONCE - alert is triggered only once when the condition is met.
|
|
44279
|
-
*/
|
|
44280
|
-
trigger?: JsonApiAutomationInAttributesAlertTriggerEnum;
|
|
44281
|
-
}
|
|
44282
|
-
|
|
44283
|
-
export declare const JsonApiAutomationInAttributesAlertTriggerEnum: {
|
|
44284
|
-
readonly ALWAYS: "ALWAYS";
|
|
44285
|
-
readonly ONCE: "ONCE";
|
|
44286
|
-
};
|
|
44287
|
-
|
|
44288
|
-
export declare type JsonApiAutomationInAttributesAlertTriggerEnum = (typeof JsonApiAutomationInAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationInAttributesAlertTriggerEnum];
|
|
44289
|
-
|
|
44290
|
-
export declare interface JsonApiAutomationInAttributesDashboardTabularExportsInner {
|
|
44291
|
-
requestPayload: DashboardTabularExportRequestV2;
|
|
44292
|
-
}
|
|
44293
|
-
|
|
44294
|
-
export declare interface JsonApiAutomationInAttributesExternalRecipientsInner {
|
|
44295
|
-
/**
|
|
44296
|
-
* E-mail address to send notifications from.
|
|
44297
|
-
*/
|
|
44298
|
-
email: string;
|
|
44299
|
-
}
|
|
44300
|
-
|
|
44301
|
-
export declare interface JsonApiAutomationInAttributesImageExportsInner {
|
|
44302
|
-
requestPayload: ImageExportRequest;
|
|
44303
|
-
}
|
|
44304
|
-
|
|
44305
|
-
/**
|
|
44306
|
-
* Additional information for the automation.
|
|
44307
|
-
*/
|
|
44308
|
-
export declare interface JsonApiAutomationInAttributesMetadata {
|
|
44309
|
-
widget?: string;
|
|
44310
|
-
visibleFilters?: Array<VisibleFilter>;
|
|
44311
|
-
}
|
|
44312
|
-
|
|
44313
|
-
export declare interface JsonApiAutomationInAttributesRawExportsInner {
|
|
44314
|
-
requestPayload: RawExportAutomationRequest;
|
|
44315
|
-
}
|
|
44316
|
-
|
|
44317
|
-
export declare interface JsonApiAutomationInAttributesSchedule {
|
|
44318
|
-
/**
|
|
44319
|
-
* Cron expression defining the schedule of the automation. The format is SECOND MINUTE HOUR DAY-OF-MONTH MONTH DAY-OF-WEEK (YEAR). The example expression signifies an action every 30 minutes from 9:00 to 17:00 on workdays.
|
|
44320
|
-
*/
|
|
44321
|
-
cron: string;
|
|
44322
|
-
/**
|
|
44323
|
-
* Human-readable description of the cron expression.
|
|
44324
|
-
*/
|
|
44325
|
-
cronDescription?: string;
|
|
44326
|
-
/**
|
|
44327
|
-
* Timezone in which the schedule is defined.
|
|
44328
|
-
*/
|
|
44329
|
-
timezone: string;
|
|
44330
|
-
/**
|
|
44331
|
-
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
44332
|
-
*/
|
|
44333
|
-
firstRun?: string;
|
|
44334
|
-
}
|
|
44335
|
-
|
|
44336
|
-
export declare interface JsonApiAutomationInAttributesSlidesExportsInner {
|
|
44337
|
-
requestPayload: SlidesExportRequest;
|
|
44288
|
+
externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
|
|
44338
44289
|
}
|
|
44339
44290
|
|
|
44340
44291
|
export declare const JsonApiAutomationInAttributesStateEnum: {
|
|
@@ -44344,45 +44295,15 @@ export declare const JsonApiAutomationInAttributesStateEnum: {
|
|
|
44344
44295
|
|
|
44345
44296
|
export declare type JsonApiAutomationInAttributesStateEnum = (typeof JsonApiAutomationInAttributesStateEnum)[keyof typeof JsonApiAutomationInAttributesStateEnum];
|
|
44346
44297
|
|
|
44347
|
-
export declare interface JsonApiAutomationInAttributesTabularExportsInner {
|
|
44348
|
-
requestPayload: TabularExportRequest;
|
|
44349
|
-
}
|
|
44350
|
-
|
|
44351
|
-
export declare interface JsonApiAutomationInAttributesVisualExportsInner {
|
|
44352
|
-
requestPayload: VisualExportRequest;
|
|
44353
|
-
}
|
|
44354
|
-
|
|
44355
44298
|
export declare interface JsonApiAutomationInDocument {
|
|
44356
44299
|
data: JsonApiAutomationIn;
|
|
44357
44300
|
}
|
|
44358
44301
|
|
|
44359
44302
|
export declare interface JsonApiAutomationInRelationships {
|
|
44360
|
-
notificationChannel?:
|
|
44361
|
-
analyticalDashboard?:
|
|
44362
|
-
exportDefinitions?:
|
|
44363
|
-
recipients?:
|
|
44364
|
-
}
|
|
44365
|
-
|
|
44366
|
-
export declare interface JsonApiAutomationInRelationshipsAnalyticalDashboard {
|
|
44367
|
-
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
44368
|
-
}
|
|
44369
|
-
|
|
44370
|
-
export declare interface JsonApiAutomationInRelationshipsExportDefinitions {
|
|
44371
|
-
/**
|
|
44372
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
44373
|
-
*/
|
|
44374
|
-
data: Array<JsonApiExportDefinitionLinkage>;
|
|
44375
|
-
}
|
|
44376
|
-
|
|
44377
|
-
export declare interface JsonApiAutomationInRelationshipsNotificationChannel {
|
|
44378
|
-
data: JsonApiNotificationChannelLinkage | null;
|
|
44379
|
-
}
|
|
44380
|
-
|
|
44381
|
-
export declare interface JsonApiAutomationInRelationshipsRecipients {
|
|
44382
|
-
/**
|
|
44383
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
44384
|
-
*/
|
|
44385
|
-
data: Array<JsonApiUserLinkage>;
|
|
44303
|
+
notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
|
|
44304
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
44305
|
+
exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
|
|
44306
|
+
recipients?: JsonApiAutomationOutRelationshipsRecipients;
|
|
44386
44307
|
}
|
|
44387
44308
|
|
|
44388
44309
|
export declare const JsonApiAutomationInTypeEnum: {
|
|
@@ -44417,7 +44338,7 @@ export declare interface JsonApiAutomationOut {
|
|
|
44417
44338
|
* API identifier of an object
|
|
44418
44339
|
*/
|
|
44419
44340
|
id: string;
|
|
44420
|
-
meta?:
|
|
44341
|
+
meta?: JsonApiDatasetOutMeta;
|
|
44421
44342
|
attributes?: JsonApiAutomationOutAttributes;
|
|
44422
44343
|
relationships?: JsonApiAutomationOutRelationships;
|
|
44423
44344
|
}
|
|
@@ -44431,27 +44352,93 @@ export declare interface JsonApiAutomationOutAttributes {
|
|
|
44431
44352
|
* Additional details to be included in the automated message.
|
|
44432
44353
|
*/
|
|
44433
44354
|
details?: object;
|
|
44434
|
-
metadata?:
|
|
44355
|
+
metadata?: JsonApiAutomationOutAttributesMetadata | null;
|
|
44435
44356
|
/**
|
|
44436
44357
|
* Current state of the automation.
|
|
44437
44358
|
*/
|
|
44438
44359
|
state?: JsonApiAutomationOutAttributesStateEnum;
|
|
44439
|
-
schedule?:
|
|
44440
|
-
alert?:
|
|
44441
|
-
tabularExports?: Array<
|
|
44442
|
-
visualExports?: Array<
|
|
44443
|
-
imageExports?: Array<
|
|
44444
|
-
rawExports?: Array<
|
|
44445
|
-
slidesExports?: Array<
|
|
44446
|
-
dashboardTabularExports?: Array<
|
|
44360
|
+
schedule?: JsonApiAutomationOutAttributesSchedule;
|
|
44361
|
+
alert?: JsonApiAutomationOutAttributesAlert;
|
|
44362
|
+
tabularExports?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
|
|
44363
|
+
visualExports?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
|
|
44364
|
+
imageExports?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
|
|
44365
|
+
rawExports?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
|
|
44366
|
+
slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
|
|
44367
|
+
dashboardTabularExports?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
|
|
44447
44368
|
/**
|
|
44448
44369
|
* External recipients of the automation action results.
|
|
44449
44370
|
*/
|
|
44450
|
-
externalRecipients?: Array<
|
|
44371
|
+
externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
|
|
44451
44372
|
createdAt?: string;
|
|
44452
44373
|
modifiedAt?: string;
|
|
44453
44374
|
}
|
|
44454
44375
|
|
|
44376
|
+
export declare interface JsonApiAutomationOutAttributesAlert {
|
|
44377
|
+
execution: AlertAfm;
|
|
44378
|
+
condition: AlertCondition;
|
|
44379
|
+
/**
|
|
44380
|
+
* Trigger behavior for the alert. ALWAYS - alert is triggered every time the condition is met. ONCE - alert is triggered only once when the condition is met.
|
|
44381
|
+
*/
|
|
44382
|
+
trigger?: JsonApiAutomationOutAttributesAlertTriggerEnum;
|
|
44383
|
+
}
|
|
44384
|
+
|
|
44385
|
+
export declare const JsonApiAutomationOutAttributesAlertTriggerEnum: {
|
|
44386
|
+
readonly ALWAYS: "ALWAYS";
|
|
44387
|
+
readonly ONCE: "ONCE";
|
|
44388
|
+
};
|
|
44389
|
+
|
|
44390
|
+
export declare type JsonApiAutomationOutAttributesAlertTriggerEnum = (typeof JsonApiAutomationOutAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationOutAttributesAlertTriggerEnum];
|
|
44391
|
+
|
|
44392
|
+
export declare interface JsonApiAutomationOutAttributesDashboardTabularExportsInner {
|
|
44393
|
+
requestPayload: DashboardTabularExportRequestV2;
|
|
44394
|
+
}
|
|
44395
|
+
|
|
44396
|
+
export declare interface JsonApiAutomationOutAttributesExternalRecipientsInner {
|
|
44397
|
+
/**
|
|
44398
|
+
* E-mail address to send notifications from.
|
|
44399
|
+
*/
|
|
44400
|
+
email: string;
|
|
44401
|
+
}
|
|
44402
|
+
|
|
44403
|
+
export declare interface JsonApiAutomationOutAttributesImageExportsInner {
|
|
44404
|
+
requestPayload: ImageExportRequest;
|
|
44405
|
+
}
|
|
44406
|
+
|
|
44407
|
+
/**
|
|
44408
|
+
* Additional information for the automation.
|
|
44409
|
+
*/
|
|
44410
|
+
export declare interface JsonApiAutomationOutAttributesMetadata {
|
|
44411
|
+
widget?: string;
|
|
44412
|
+
visibleFilters?: Array<VisibleFilter>;
|
|
44413
|
+
}
|
|
44414
|
+
|
|
44415
|
+
export declare interface JsonApiAutomationOutAttributesRawExportsInner {
|
|
44416
|
+
requestPayload: RawExportAutomationRequest;
|
|
44417
|
+
}
|
|
44418
|
+
|
|
44419
|
+
export declare interface JsonApiAutomationOutAttributesSchedule {
|
|
44420
|
+
/**
|
|
44421
|
+
* Cron expression defining the schedule of the automation. The format is SECOND MINUTE HOUR DAY-OF-MONTH MONTH DAY-OF-WEEK (YEAR). The example expression signifies an action every 30 minutes from 9:00 to 17:00 on workdays.
|
|
44422
|
+
*/
|
|
44423
|
+
cron: string;
|
|
44424
|
+
/**
|
|
44425
|
+
* Human-readable description of the cron expression.
|
|
44426
|
+
*/
|
|
44427
|
+
cronDescription?: string;
|
|
44428
|
+
/**
|
|
44429
|
+
* Timezone in which the schedule is defined.
|
|
44430
|
+
*/
|
|
44431
|
+
timezone: string;
|
|
44432
|
+
/**
|
|
44433
|
+
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
44434
|
+
*/
|
|
44435
|
+
firstRun?: string;
|
|
44436
|
+
}
|
|
44437
|
+
|
|
44438
|
+
export declare interface JsonApiAutomationOutAttributesSlidesExportsInner {
|
|
44439
|
+
requestPayload: SlidesExportRequest;
|
|
44440
|
+
}
|
|
44441
|
+
|
|
44455
44442
|
export declare const JsonApiAutomationOutAttributesStateEnum: {
|
|
44456
44443
|
readonly ACTIVE: "ACTIVE";
|
|
44457
44444
|
readonly PAUSED: "PAUSED";
|
|
@@ -44459,6 +44446,14 @@ export declare const JsonApiAutomationOutAttributesStateEnum: {
|
|
|
44459
44446
|
|
|
44460
44447
|
export declare type JsonApiAutomationOutAttributesStateEnum = (typeof JsonApiAutomationOutAttributesStateEnum)[keyof typeof JsonApiAutomationOutAttributesStateEnum];
|
|
44461
44448
|
|
|
44449
|
+
export declare interface JsonApiAutomationOutAttributesTabularExportsInner {
|
|
44450
|
+
requestPayload: TabularExportRequest;
|
|
44451
|
+
}
|
|
44452
|
+
|
|
44453
|
+
export declare interface JsonApiAutomationOutAttributesVisualExportsInner {
|
|
44454
|
+
requestPayload: VisualExportRequest;
|
|
44455
|
+
}
|
|
44456
|
+
|
|
44462
44457
|
export declare interface JsonApiAutomationOutDocument {
|
|
44463
44458
|
data: JsonApiAutomationOut;
|
|
44464
44459
|
links?: ObjectLinks;
|
|
@@ -44479,7 +44474,7 @@ export declare type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOut
|
|
|
44479
44474
|
export declare interface JsonApiAutomationOutList {
|
|
44480
44475
|
data: Array<JsonApiAutomationOutWithLinks>;
|
|
44481
44476
|
links?: ListLinks;
|
|
44482
|
-
meta?:
|
|
44477
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
44483
44478
|
/**
|
|
44484
44479
|
* Included resources
|
|
44485
44480
|
*/
|
|
@@ -44487,12 +44482,12 @@ export declare interface JsonApiAutomationOutList {
|
|
|
44487
44482
|
}
|
|
44488
44483
|
|
|
44489
44484
|
export declare interface JsonApiAutomationOutRelationships {
|
|
44490
|
-
notificationChannel?:
|
|
44491
|
-
analyticalDashboard?:
|
|
44485
|
+
notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
|
|
44486
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
44492
44487
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
44493
44488
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
44494
|
-
exportDefinitions?:
|
|
44495
|
-
recipients?:
|
|
44489
|
+
exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
|
|
44490
|
+
recipients?: JsonApiAutomationOutRelationshipsRecipients;
|
|
44496
44491
|
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
44497
44492
|
}
|
|
44498
44493
|
|
|
@@ -44503,6 +44498,24 @@ export declare interface JsonApiAutomationOutRelationshipsAutomationResults {
|
|
|
44503
44498
|
data: Array<JsonApiAutomationResultLinkage>;
|
|
44504
44499
|
}
|
|
44505
44500
|
|
|
44501
|
+
export declare interface JsonApiAutomationOutRelationshipsExportDefinitions {
|
|
44502
|
+
/**
|
|
44503
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
44504
|
+
*/
|
|
44505
|
+
data: Array<JsonApiExportDefinitionLinkage>;
|
|
44506
|
+
}
|
|
44507
|
+
|
|
44508
|
+
export declare interface JsonApiAutomationOutRelationshipsNotificationChannel {
|
|
44509
|
+
data: JsonApiNotificationChannelLinkage | null;
|
|
44510
|
+
}
|
|
44511
|
+
|
|
44512
|
+
export declare interface JsonApiAutomationOutRelationshipsRecipients {
|
|
44513
|
+
/**
|
|
44514
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
44515
|
+
*/
|
|
44516
|
+
data: Array<JsonApiUserLinkage>;
|
|
44517
|
+
}
|
|
44518
|
+
|
|
44506
44519
|
export declare const JsonApiAutomationOutTypeEnum: {
|
|
44507
44520
|
readonly AUTOMATION: "automation";
|
|
44508
44521
|
};
|
|
@@ -44518,7 +44531,7 @@ export declare interface JsonApiAutomationOutWithLinks {
|
|
|
44518
44531
|
* API identifier of an object
|
|
44519
44532
|
*/
|
|
44520
44533
|
id: string;
|
|
44521
|
-
meta?:
|
|
44534
|
+
meta?: JsonApiDatasetOutMeta;
|
|
44522
44535
|
attributes?: JsonApiAutomationOutAttributes;
|
|
44523
44536
|
relationships?: JsonApiAutomationOutRelationships;
|
|
44524
44537
|
links?: ObjectLinks;
|
|
@@ -44695,7 +44708,11 @@ export declare interface JsonApiColorPaletteOutDocument {
|
|
|
44695
44708
|
export declare interface JsonApiColorPaletteOutList {
|
|
44696
44709
|
data: Array<JsonApiColorPaletteOutWithLinks>;
|
|
44697
44710
|
links?: ListLinks;
|
|
44698
|
-
meta?:
|
|
44711
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
44712
|
+
}
|
|
44713
|
+
|
|
44714
|
+
export declare interface JsonApiColorPaletteOutListMeta {
|
|
44715
|
+
page?: PageMetadata;
|
|
44699
44716
|
}
|
|
44700
44717
|
|
|
44701
44718
|
export declare const JsonApiColorPaletteOutTypeEnum: {
|
|
@@ -44768,7 +44785,15 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
|
|
|
44768
44785
|
* API identifier of an object
|
|
44769
44786
|
*/
|
|
44770
44787
|
id: string;
|
|
44771
|
-
attributes?:
|
|
44788
|
+
attributes?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
44789
|
+
}
|
|
44790
|
+
|
|
44791
|
+
export declare interface JsonApiCookieSecurityConfigurationInAttributes {
|
|
44792
|
+
lastRotation?: string;
|
|
44793
|
+
/**
|
|
44794
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
44795
|
+
*/
|
|
44796
|
+
rotationInterval?: string;
|
|
44772
44797
|
}
|
|
44773
44798
|
|
|
44774
44799
|
export declare interface JsonApiCookieSecurityConfigurationInDocument {
|
|
@@ -44793,15 +44818,7 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
|
|
|
44793
44818
|
* API identifier of an object
|
|
44794
44819
|
*/
|
|
44795
44820
|
id: string;
|
|
44796
|
-
attributes?:
|
|
44797
|
-
}
|
|
44798
|
-
|
|
44799
|
-
export declare interface JsonApiCookieSecurityConfigurationOutAttributes {
|
|
44800
|
-
lastRotation?: string;
|
|
44801
|
-
/**
|
|
44802
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
44803
|
-
*/
|
|
44804
|
-
rotationInterval?: string;
|
|
44821
|
+
attributes?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
44805
44822
|
}
|
|
44806
44823
|
|
|
44807
44824
|
export declare interface JsonApiCookieSecurityConfigurationOutDocument {
|
|
@@ -44827,7 +44844,7 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
44827
44844
|
* API identifier of an object
|
|
44828
44845
|
*/
|
|
44829
44846
|
id: string;
|
|
44830
|
-
attributes?:
|
|
44847
|
+
attributes?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
44831
44848
|
}
|
|
44832
44849
|
|
|
44833
44850
|
export declare interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
@@ -44895,7 +44912,7 @@ export declare interface JsonApiCspDirectiveOutDocument {
|
|
|
44895
44912
|
export declare interface JsonApiCspDirectiveOutList {
|
|
44896
44913
|
data: Array<JsonApiCspDirectiveOutWithLinks>;
|
|
44897
44914
|
links?: ListLinks;
|
|
44898
|
-
meta?:
|
|
44915
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
44899
44916
|
}
|
|
44900
44917
|
|
|
44901
44918
|
export declare const JsonApiCspDirectiveOutTypeEnum: {
|
|
@@ -44964,15 +44981,7 @@ export declare interface JsonApiCustomApplicationSettingIn {
|
|
|
44964
44981
|
* API identifier of an object
|
|
44965
44982
|
*/
|
|
44966
44983
|
id: string;
|
|
44967
|
-
attributes:
|
|
44968
|
-
}
|
|
44969
|
-
|
|
44970
|
-
export declare interface JsonApiCustomApplicationSettingInAttributes {
|
|
44971
|
-
applicationName: string;
|
|
44972
|
-
/**
|
|
44973
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
44974
|
-
*/
|
|
44975
|
-
content: object;
|
|
44984
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
44976
44985
|
}
|
|
44977
44986
|
|
|
44978
44987
|
export declare interface JsonApiCustomApplicationSettingInDocument {
|
|
@@ -44997,8 +45006,16 @@ export declare interface JsonApiCustomApplicationSettingOut {
|
|
|
44997
45006
|
* API identifier of an object
|
|
44998
45007
|
*/
|
|
44999
45008
|
id: string;
|
|
45000
|
-
meta?:
|
|
45001
|
-
attributes:
|
|
45009
|
+
meta?: JsonApiDatasetOutMeta;
|
|
45010
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
45011
|
+
}
|
|
45012
|
+
|
|
45013
|
+
export declare interface JsonApiCustomApplicationSettingOutAttributes {
|
|
45014
|
+
applicationName: string;
|
|
45015
|
+
/**
|
|
45016
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
45017
|
+
*/
|
|
45018
|
+
content: object;
|
|
45002
45019
|
}
|
|
45003
45020
|
|
|
45004
45021
|
export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
@@ -45012,7 +45029,7 @@ export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
|
45012
45029
|
export declare interface JsonApiCustomApplicationSettingOutList {
|
|
45013
45030
|
data: Array<JsonApiCustomApplicationSettingOutWithLinks>;
|
|
45014
45031
|
links?: ListLinks;
|
|
45015
|
-
meta?:
|
|
45032
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
45016
45033
|
}
|
|
45017
45034
|
|
|
45018
45035
|
export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
|
|
@@ -45030,8 +45047,8 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
45030
45047
|
* API identifier of an object
|
|
45031
45048
|
*/
|
|
45032
45049
|
id: string;
|
|
45033
|
-
meta?:
|
|
45034
|
-
attributes:
|
|
45050
|
+
meta?: JsonApiDatasetOutMeta;
|
|
45051
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
45035
45052
|
links?: ObjectLinks;
|
|
45036
45053
|
}
|
|
45037
45054
|
|
|
@@ -45086,7 +45103,7 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
45086
45103
|
* API identifier of an object
|
|
45087
45104
|
*/
|
|
45088
45105
|
id?: string;
|
|
45089
|
-
attributes:
|
|
45106
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
45090
45107
|
}
|
|
45091
45108
|
|
|
45092
45109
|
export declare interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
|
|
@@ -45161,7 +45178,7 @@ export declare interface JsonApiDashboardPluginOut {
|
|
|
45161
45178
|
* API identifier of an object
|
|
45162
45179
|
*/
|
|
45163
45180
|
id: string;
|
|
45164
|
-
meta?:
|
|
45181
|
+
meta?: JsonApiDatasetOutMeta;
|
|
45165
45182
|
attributes?: JsonApiDashboardPluginOutAttributes;
|
|
45166
45183
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
45167
45184
|
}
|
|
@@ -45194,7 +45211,7 @@ export declare interface JsonApiDashboardPluginOutDocument {
|
|
|
45194
45211
|
export declare interface JsonApiDashboardPluginOutList {
|
|
45195
45212
|
data: Array<JsonApiDashboardPluginOutWithLinks>;
|
|
45196
45213
|
links?: ListLinks;
|
|
45197
|
-
meta?:
|
|
45214
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
45198
45215
|
/**
|
|
45199
45216
|
* Included resources
|
|
45200
45217
|
*/
|
|
@@ -45221,7 +45238,7 @@ export declare interface JsonApiDashboardPluginOutWithLinks {
|
|
|
45221
45238
|
* API identifier of an object
|
|
45222
45239
|
*/
|
|
45223
45240
|
id: string;
|
|
45224
|
-
meta?:
|
|
45241
|
+
meta?: JsonApiDatasetOutMeta;
|
|
45225
45242
|
attributes?: JsonApiDashboardPluginOutAttributes;
|
|
45226
45243
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
45227
45244
|
links?: ObjectLinks;
|
|
@@ -45309,7 +45326,7 @@ export declare interface JsonApiDatasetOut {
|
|
|
45309
45326
|
* API identifier of an object
|
|
45310
45327
|
*/
|
|
45311
45328
|
id: string;
|
|
45312
|
-
meta?:
|
|
45329
|
+
meta?: JsonApiDatasetOutMeta;
|
|
45313
45330
|
attributes: JsonApiDatasetOutAttributes;
|
|
45314
45331
|
relationships?: JsonApiDatasetOutRelationships;
|
|
45315
45332
|
}
|
|
@@ -45435,18 +45452,40 @@ export declare type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLink
|
|
|
45435
45452
|
export declare interface JsonApiDatasetOutList {
|
|
45436
45453
|
data: Array<JsonApiDatasetOutWithLinks>;
|
|
45437
45454
|
links?: ListLinks;
|
|
45438
|
-
meta?:
|
|
45455
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
45439
45456
|
/**
|
|
45440
45457
|
* Included resources
|
|
45441
45458
|
*/
|
|
45442
45459
|
included?: Array<JsonApiDatasetOutIncludes>;
|
|
45443
45460
|
}
|
|
45444
45461
|
|
|
45462
|
+
export declare interface JsonApiDatasetOutMeta {
|
|
45463
|
+
origin?: JsonApiDatasetOutMetaOrigin;
|
|
45464
|
+
}
|
|
45465
|
+
|
|
45466
|
+
export declare interface JsonApiDatasetOutMetaOrigin {
|
|
45467
|
+
/**
|
|
45468
|
+
* defines type of the origin of the entity
|
|
45469
|
+
*/
|
|
45470
|
+
originType: JsonApiDatasetOutMetaOriginOriginTypeEnum;
|
|
45471
|
+
/**
|
|
45472
|
+
* defines id of the workspace where the entity comes from
|
|
45473
|
+
*/
|
|
45474
|
+
originId: string;
|
|
45475
|
+
}
|
|
45476
|
+
|
|
45477
|
+
export declare const JsonApiDatasetOutMetaOriginOriginTypeEnum: {
|
|
45478
|
+
readonly NATIVE: "NATIVE";
|
|
45479
|
+
readonly PARENT: "PARENT";
|
|
45480
|
+
};
|
|
45481
|
+
|
|
45482
|
+
export declare type JsonApiDatasetOutMetaOriginOriginTypeEnum = (typeof JsonApiDatasetOutMetaOriginOriginTypeEnum)[keyof typeof JsonApiDatasetOutMetaOriginOriginTypeEnum];
|
|
45483
|
+
|
|
45445
45484
|
export declare interface JsonApiDatasetOutRelationships {
|
|
45446
|
-
attributes?:
|
|
45447
|
-
facts?:
|
|
45485
|
+
attributes?: JsonApiDatasetOutRelationshipsAttributes;
|
|
45486
|
+
facts?: JsonApiDatasetOutRelationshipsFacts;
|
|
45448
45487
|
aggregatedFacts?: JsonApiDatasetOutRelationshipsAggregatedFacts;
|
|
45449
|
-
references?:
|
|
45488
|
+
references?: JsonApiDatasetOutRelationshipsReferences;
|
|
45450
45489
|
workspaceDataFilters?: JsonApiDatasetOutRelationshipsWorkspaceDataFilters;
|
|
45451
45490
|
}
|
|
45452
45491
|
|
|
@@ -45457,6 +45496,27 @@ export declare interface JsonApiDatasetOutRelationshipsAggregatedFacts {
|
|
|
45457
45496
|
data: Array<JsonApiAggregatedFactLinkage>;
|
|
45458
45497
|
}
|
|
45459
45498
|
|
|
45499
|
+
export declare interface JsonApiDatasetOutRelationshipsAttributes {
|
|
45500
|
+
/**
|
|
45501
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
45502
|
+
*/
|
|
45503
|
+
data: Array<JsonApiAttributeLinkage>;
|
|
45504
|
+
}
|
|
45505
|
+
|
|
45506
|
+
export declare interface JsonApiDatasetOutRelationshipsFacts {
|
|
45507
|
+
/**
|
|
45508
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
45509
|
+
*/
|
|
45510
|
+
data: Array<JsonApiFactLinkage>;
|
|
45511
|
+
}
|
|
45512
|
+
|
|
45513
|
+
export declare interface JsonApiDatasetOutRelationshipsReferences {
|
|
45514
|
+
/**
|
|
45515
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
45516
|
+
*/
|
|
45517
|
+
data: Array<JsonApiDatasetLinkage>;
|
|
45518
|
+
}
|
|
45519
|
+
|
|
45460
45520
|
export declare interface JsonApiDatasetOutRelationshipsWorkspaceDataFilters {
|
|
45461
45521
|
/**
|
|
45462
45522
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -45479,7 +45539,7 @@ export declare interface JsonApiDatasetOutWithLinks {
|
|
|
45479
45539
|
* API identifier of an object
|
|
45480
45540
|
*/
|
|
45481
45541
|
id: string;
|
|
45482
|
-
meta?:
|
|
45542
|
+
meta?: JsonApiDatasetOutMeta;
|
|
45483
45543
|
attributes: JsonApiDatasetOutAttributes;
|
|
45484
45544
|
relationships?: JsonApiDatasetOutRelationships;
|
|
45485
45545
|
links?: ObjectLinks;
|
|
@@ -45503,7 +45563,7 @@ export declare interface JsonApiDataSourceIdentifierOut {
|
|
|
45503
45563
|
* API identifier of an object
|
|
45504
45564
|
*/
|
|
45505
45565
|
id: string;
|
|
45506
|
-
meta?:
|
|
45566
|
+
meta?: JsonApiDataSourceIdentifierOutMeta;
|
|
45507
45567
|
attributes: JsonApiDataSourceIdentifierOutAttributes;
|
|
45508
45568
|
}
|
|
45509
45569
|
|
|
@@ -45555,9 +45615,23 @@ export declare interface JsonApiDataSourceIdentifierOutDocument {
|
|
|
45555
45615
|
export declare interface JsonApiDataSourceIdentifierOutList {
|
|
45556
45616
|
data: Array<JsonApiDataSourceIdentifierOutWithLinks>;
|
|
45557
45617
|
links?: ListLinks;
|
|
45558
|
-
meta?:
|
|
45618
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
45559
45619
|
}
|
|
45560
45620
|
|
|
45621
|
+
export declare interface JsonApiDataSourceIdentifierOutMeta {
|
|
45622
|
+
/**
|
|
45623
|
+
* List of valid permissions for a logged-in user.
|
|
45624
|
+
*/
|
|
45625
|
+
permissions?: Array<JsonApiDataSourceIdentifierOutMetaPermissionsEnum>;
|
|
45626
|
+
}
|
|
45627
|
+
|
|
45628
|
+
export declare const JsonApiDataSourceIdentifierOutMetaPermissionsEnum: {
|
|
45629
|
+
readonly MANAGE: "MANAGE";
|
|
45630
|
+
readonly USE: "USE";
|
|
45631
|
+
};
|
|
45632
|
+
|
|
45633
|
+
export declare type JsonApiDataSourceIdentifierOutMetaPermissionsEnum = (typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum];
|
|
45634
|
+
|
|
45561
45635
|
export declare const JsonApiDataSourceIdentifierOutTypeEnum: {
|
|
45562
45636
|
readonly DATA_SOURCE_IDENTIFIER: "dataSourceIdentifier";
|
|
45563
45637
|
};
|
|
@@ -45573,7 +45647,7 @@ export declare interface JsonApiDataSourceIdentifierOutWithLinks {
|
|
|
45573
45647
|
* API identifier of an object
|
|
45574
45648
|
*/
|
|
45575
45649
|
id: string;
|
|
45576
|
-
meta?:
|
|
45650
|
+
meta?: JsonApiDataSourceIdentifierOutMeta;
|
|
45577
45651
|
attributes: JsonApiDataSourceIdentifierOutAttributes;
|
|
45578
45652
|
links?: ObjectLinks;
|
|
45579
45653
|
}
|
|
@@ -45647,7 +45721,7 @@ export declare interface JsonApiDataSourceInAttributes {
|
|
|
45647
45721
|
/**
|
|
45648
45722
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
45649
45723
|
*/
|
|
45650
|
-
parameters?: Array<
|
|
45724
|
+
parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
|
|
45651
45725
|
/**
|
|
45652
45726
|
* Determines how the results coming from a particular datasource should be cached.
|
|
45653
45727
|
*/
|
|
@@ -45714,7 +45788,7 @@ export declare interface JsonApiDataSourceOut {
|
|
|
45714
45788
|
* API identifier of an object
|
|
45715
45789
|
*/
|
|
45716
45790
|
id: string;
|
|
45717
|
-
meta?:
|
|
45791
|
+
meta?: JsonApiDataSourceIdentifierOutMeta;
|
|
45718
45792
|
attributes: JsonApiDataSourceOutAttributes;
|
|
45719
45793
|
}
|
|
45720
45794
|
|
|
@@ -45746,11 +45820,11 @@ export declare interface JsonApiDataSourceOutAttributes {
|
|
|
45746
45820
|
/**
|
|
45747
45821
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
45748
45822
|
*/
|
|
45749
|
-
parameters?: Array<
|
|
45823
|
+
parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
|
|
45750
45824
|
/**
|
|
45751
45825
|
* Decoded parameters to be used when connecting to the database providing the data for the data source.
|
|
45752
45826
|
*/
|
|
45753
|
-
decodedParameters?: Array<
|
|
45827
|
+
decodedParameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
|
|
45754
45828
|
/**
|
|
45755
45829
|
* Determines how the results coming from a particular datasource should be cached.
|
|
45756
45830
|
*/
|
|
@@ -45778,6 +45852,11 @@ export declare const JsonApiDataSourceOutAttributesCacheStrategyEnum: {
|
|
|
45778
45852
|
|
|
45779
45853
|
export declare type JsonApiDataSourceOutAttributesCacheStrategyEnum = (typeof JsonApiDataSourceOutAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourceOutAttributesCacheStrategyEnum];
|
|
45780
45854
|
|
|
45855
|
+
export declare interface JsonApiDataSourceOutAttributesParametersInner {
|
|
45856
|
+
name: string;
|
|
45857
|
+
value: string;
|
|
45858
|
+
}
|
|
45859
|
+
|
|
45781
45860
|
export declare const JsonApiDataSourceOutAttributesTypeEnum: {
|
|
45782
45861
|
readonly POSTGRESQL: "POSTGRESQL";
|
|
45783
45862
|
readonly REDSHIFT: "REDSHIFT";
|
|
@@ -45820,23 +45899,9 @@ export declare interface JsonApiDataSourceOutDocument {
|
|
|
45820
45899
|
export declare interface JsonApiDataSourceOutList {
|
|
45821
45900
|
data: Array<JsonApiDataSourceOutWithLinks>;
|
|
45822
45901
|
links?: ListLinks;
|
|
45823
|
-
meta?:
|
|
45902
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
45824
45903
|
}
|
|
45825
45904
|
|
|
45826
|
-
export declare interface JsonApiDataSourceOutMeta {
|
|
45827
|
-
/**
|
|
45828
|
-
* List of valid permissions for a logged-in user.
|
|
45829
|
-
*/
|
|
45830
|
-
permissions?: Array<JsonApiDataSourceOutMetaPermissionsEnum>;
|
|
45831
|
-
}
|
|
45832
|
-
|
|
45833
|
-
export declare const JsonApiDataSourceOutMetaPermissionsEnum: {
|
|
45834
|
-
readonly MANAGE: "MANAGE";
|
|
45835
|
-
readonly USE: "USE";
|
|
45836
|
-
};
|
|
45837
|
-
|
|
45838
|
-
export declare type JsonApiDataSourceOutMetaPermissionsEnum = (typeof JsonApiDataSourceOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceOutMetaPermissionsEnum];
|
|
45839
|
-
|
|
45840
45905
|
export declare const JsonApiDataSourceOutTypeEnum: {
|
|
45841
45906
|
readonly DATA_SOURCE: "dataSource";
|
|
45842
45907
|
};
|
|
@@ -45852,7 +45917,7 @@ export declare interface JsonApiDataSourceOutWithLinks {
|
|
|
45852
45917
|
* API identifier of an object
|
|
45853
45918
|
*/
|
|
45854
45919
|
id: string;
|
|
45855
|
-
meta?:
|
|
45920
|
+
meta?: JsonApiDataSourceIdentifierOutMeta;
|
|
45856
45921
|
attributes: JsonApiDataSourceOutAttributes;
|
|
45857
45922
|
links?: ObjectLinks;
|
|
45858
45923
|
}
|
|
@@ -45926,7 +45991,7 @@ export declare interface JsonApiDataSourcePatchAttributes {
|
|
|
45926
45991
|
/**
|
|
45927
45992
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
45928
45993
|
*/
|
|
45929
|
-
parameters?: Array<
|
|
45994
|
+
parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
|
|
45930
45995
|
/**
|
|
45931
45996
|
* Determines how the results coming from a particular datasource should be cached.
|
|
45932
45997
|
*/
|
|
@@ -45940,11 +46005,6 @@ export declare const JsonApiDataSourcePatchAttributesCacheStrategyEnum: {
|
|
|
45940
46005
|
|
|
45941
46006
|
export declare type JsonApiDataSourcePatchAttributesCacheStrategyEnum = (typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum];
|
|
45942
46007
|
|
|
45943
|
-
export declare interface JsonApiDataSourcePatchAttributesParametersInner {
|
|
45944
|
-
name: string;
|
|
45945
|
-
value: string;
|
|
45946
|
-
}
|
|
45947
|
-
|
|
45948
46008
|
export declare const JsonApiDataSourcePatchAttributesTypeEnum: {
|
|
45949
46009
|
readonly POSTGRESQL: "POSTGRESQL";
|
|
45950
46010
|
readonly REDSHIFT: "REDSHIFT";
|
|
@@ -46017,7 +46077,7 @@ export declare interface JsonApiEntitlementOutDocument {
|
|
|
46017
46077
|
export declare interface JsonApiEntitlementOutList {
|
|
46018
46078
|
data: Array<JsonApiEntitlementOutWithLinks>;
|
|
46019
46079
|
links?: ListLinks;
|
|
46020
|
-
meta?:
|
|
46080
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
46021
46081
|
}
|
|
46022
46082
|
|
|
46023
46083
|
export declare const JsonApiEntitlementOutTypeEnum: {
|
|
@@ -46075,7 +46135,7 @@ export declare interface JsonApiExportDefinitionInDocument {
|
|
|
46075
46135
|
|
|
46076
46136
|
export declare interface JsonApiExportDefinitionInRelationships {
|
|
46077
46137
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
46078
|
-
analyticalDashboard?:
|
|
46138
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
46079
46139
|
}
|
|
46080
46140
|
|
|
46081
46141
|
export declare const JsonApiExportDefinitionInTypeEnum: {
|
|
@@ -46110,7 +46170,7 @@ export declare interface JsonApiExportDefinitionOut {
|
|
|
46110
46170
|
* API identifier of an object
|
|
46111
46171
|
*/
|
|
46112
46172
|
id: string;
|
|
46113
|
-
meta?:
|
|
46173
|
+
meta?: JsonApiDatasetOutMeta;
|
|
46114
46174
|
attributes?: JsonApiExportDefinitionOutAttributes;
|
|
46115
46175
|
relationships?: JsonApiExportDefinitionOutRelationships;
|
|
46116
46176
|
}
|
|
@@ -46151,7 +46211,7 @@ export declare type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashbo
|
|
|
46151
46211
|
export declare interface JsonApiExportDefinitionOutList {
|
|
46152
46212
|
data: Array<JsonApiExportDefinitionOutWithLinks>;
|
|
46153
46213
|
links?: ListLinks;
|
|
46154
|
-
meta?:
|
|
46214
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
46155
46215
|
/**
|
|
46156
46216
|
* Included resources
|
|
46157
46217
|
*/
|
|
@@ -46160,12 +46220,16 @@ export declare interface JsonApiExportDefinitionOutList {
|
|
|
46160
46220
|
|
|
46161
46221
|
export declare interface JsonApiExportDefinitionOutRelationships {
|
|
46162
46222
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
46163
|
-
analyticalDashboard?:
|
|
46223
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
46164
46224
|
automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
|
|
46165
46225
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
46166
46226
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
46167
46227
|
}
|
|
46168
46228
|
|
|
46229
|
+
export declare interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
|
|
46230
|
+
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
46231
|
+
}
|
|
46232
|
+
|
|
46169
46233
|
export declare interface JsonApiExportDefinitionOutRelationshipsAutomation {
|
|
46170
46234
|
data: JsonApiAutomationLinkage | null;
|
|
46171
46235
|
}
|
|
@@ -46189,7 +46253,7 @@ export declare interface JsonApiExportDefinitionOutWithLinks {
|
|
|
46189
46253
|
* API identifier of an object
|
|
46190
46254
|
*/
|
|
46191
46255
|
id: string;
|
|
46192
|
-
meta?:
|
|
46256
|
+
meta?: JsonApiDatasetOutMeta;
|
|
46193
46257
|
attributes?: JsonApiExportDefinitionOutAttributes;
|
|
46194
46258
|
relationships?: JsonApiExportDefinitionOutRelationships;
|
|
46195
46259
|
links?: ObjectLinks;
|
|
@@ -46298,10 +46362,49 @@ export declare interface JsonApiExportTemplateOutAttributes {
|
|
|
46298
46362
|
* User-facing name of the Slides template.
|
|
46299
46363
|
*/
|
|
46300
46364
|
name: string;
|
|
46301
|
-
dashboardSlidesTemplate?:
|
|
46302
|
-
widgetSlidesTemplate?:
|
|
46365
|
+
dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
|
|
46366
|
+
widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
|
|
46303
46367
|
}
|
|
46304
46368
|
|
|
46369
|
+
/**
|
|
46370
|
+
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
46371
|
+
*/
|
|
46372
|
+
export declare interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
|
|
46373
|
+
/**
|
|
46374
|
+
* Export types this template applies to.
|
|
46375
|
+
*/
|
|
46376
|
+
appliedOn: Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
46377
|
+
coverSlide?: CoverSlideTemplate | null;
|
|
46378
|
+
introSlide?: IntroSlideTemplate | null;
|
|
46379
|
+
sectionSlide?: SectionSlideTemplate | null;
|
|
46380
|
+
contentSlide?: ContentSlideTemplate | null;
|
|
46381
|
+
}
|
|
46382
|
+
|
|
46383
|
+
export declare const JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum: {
|
|
46384
|
+
readonly PDF: "PDF";
|
|
46385
|
+
readonly PPTX: "PPTX";
|
|
46386
|
+
};
|
|
46387
|
+
|
|
46388
|
+
export declare type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum];
|
|
46389
|
+
|
|
46390
|
+
/**
|
|
46391
|
+
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
46392
|
+
*/
|
|
46393
|
+
export declare interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
|
|
46394
|
+
/**
|
|
46395
|
+
* Export types this template applies to.
|
|
46396
|
+
*/
|
|
46397
|
+
appliedOn: Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
46398
|
+
contentSlide?: ContentSlideTemplate | null;
|
|
46399
|
+
}
|
|
46400
|
+
|
|
46401
|
+
export declare const JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum: {
|
|
46402
|
+
readonly PDF: "PDF";
|
|
46403
|
+
readonly PPTX: "PPTX";
|
|
46404
|
+
};
|
|
46405
|
+
|
|
46406
|
+
export declare type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum];
|
|
46407
|
+
|
|
46305
46408
|
export declare interface JsonApiExportTemplateOutDocument {
|
|
46306
46409
|
data: JsonApiExportTemplateOut;
|
|
46307
46410
|
links?: ObjectLinks;
|
|
@@ -46313,7 +46416,7 @@ export declare interface JsonApiExportTemplateOutDocument {
|
|
|
46313
46416
|
export declare interface JsonApiExportTemplateOutList {
|
|
46314
46417
|
data: Array<JsonApiExportTemplateOutWithLinks>;
|
|
46315
46418
|
links?: ListLinks;
|
|
46316
|
-
meta?:
|
|
46419
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
46317
46420
|
}
|
|
46318
46421
|
|
|
46319
46422
|
export declare const JsonApiExportTemplateOutTypeEnum: {
|
|
@@ -46361,49 +46464,10 @@ export declare interface JsonApiExportTemplatePatchAttributes {
|
|
|
46361
46464
|
* User-facing name of the Slides template.
|
|
46362
46465
|
*/
|
|
46363
46466
|
name?: string;
|
|
46364
|
-
dashboardSlidesTemplate?:
|
|
46365
|
-
widgetSlidesTemplate?:
|
|
46366
|
-
}
|
|
46367
|
-
|
|
46368
|
-
/**
|
|
46369
|
-
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
46370
|
-
*/
|
|
46371
|
-
export declare interface JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate {
|
|
46372
|
-
/**
|
|
46373
|
-
* Export types this template applies to.
|
|
46374
|
-
*/
|
|
46375
|
-
appliedOn: Array<JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
46376
|
-
coverSlide?: CoverSlideTemplate | null;
|
|
46377
|
-
introSlide?: IntroSlideTemplate | null;
|
|
46378
|
-
sectionSlide?: SectionSlideTemplate | null;
|
|
46379
|
-
contentSlide?: ContentSlideTemplate | null;
|
|
46467
|
+
dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
|
|
46468
|
+
widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
|
|
46380
46469
|
}
|
|
46381
46470
|
|
|
46382
|
-
export declare const JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum: {
|
|
46383
|
-
readonly PDF: "PDF";
|
|
46384
|
-
readonly PPTX: "PPTX";
|
|
46385
|
-
};
|
|
46386
|
-
|
|
46387
|
-
export declare type JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum];
|
|
46388
|
-
|
|
46389
|
-
/**
|
|
46390
|
-
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
46391
|
-
*/
|
|
46392
|
-
export declare interface JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate {
|
|
46393
|
-
/**
|
|
46394
|
-
* Export types this template applies to.
|
|
46395
|
-
*/
|
|
46396
|
-
appliedOn: Array<JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
46397
|
-
contentSlide?: ContentSlideTemplate | null;
|
|
46398
|
-
}
|
|
46399
|
-
|
|
46400
|
-
export declare const JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum: {
|
|
46401
|
-
readonly PDF: "PDF";
|
|
46402
|
-
readonly PPTX: "PPTX";
|
|
46403
|
-
};
|
|
46404
|
-
|
|
46405
|
-
export declare type JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum];
|
|
46406
|
-
|
|
46407
46471
|
export declare interface JsonApiExportTemplatePatchDocument {
|
|
46408
46472
|
data: JsonApiExportTemplatePatch;
|
|
46409
46473
|
}
|
|
@@ -46465,7 +46529,7 @@ export declare interface JsonApiFactOut {
|
|
|
46465
46529
|
* API identifier of an object
|
|
46466
46530
|
*/
|
|
46467
46531
|
id: string;
|
|
46468
|
-
meta?:
|
|
46532
|
+
meta?: JsonApiDatasetOutMeta;
|
|
46469
46533
|
attributes?: JsonApiFactOutAttributes;
|
|
46470
46534
|
relationships?: JsonApiFactOutRelationships;
|
|
46471
46535
|
}
|
|
@@ -46506,7 +46570,7 @@ export declare interface JsonApiFactOutDocument {
|
|
|
46506
46570
|
export declare interface JsonApiFactOutList {
|
|
46507
46571
|
data: Array<JsonApiFactOutWithLinks>;
|
|
46508
46572
|
links?: ListLinks;
|
|
46509
|
-
meta?:
|
|
46573
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
46510
46574
|
/**
|
|
46511
46575
|
* Included resources
|
|
46512
46576
|
*/
|
|
@@ -46514,7 +46578,11 @@ export declare interface JsonApiFactOutList {
|
|
|
46514
46578
|
}
|
|
46515
46579
|
|
|
46516
46580
|
export declare interface JsonApiFactOutRelationships {
|
|
46517
|
-
dataset?:
|
|
46581
|
+
dataset?: JsonApiFactOutRelationshipsDataset;
|
|
46582
|
+
}
|
|
46583
|
+
|
|
46584
|
+
export declare interface JsonApiFactOutRelationshipsDataset {
|
|
46585
|
+
data: JsonApiDatasetLinkage | null;
|
|
46518
46586
|
}
|
|
46519
46587
|
|
|
46520
46588
|
export declare const JsonApiFactOutTypeEnum: {
|
|
@@ -46532,7 +46600,7 @@ export declare interface JsonApiFactOutWithLinks {
|
|
|
46532
46600
|
* API identifier of an object
|
|
46533
46601
|
*/
|
|
46534
46602
|
id: string;
|
|
46535
|
-
meta?:
|
|
46603
|
+
meta?: JsonApiDatasetOutMeta;
|
|
46536
46604
|
attributes?: JsonApiFactOutAttributes;
|
|
46537
46605
|
relationships?: JsonApiFactOutRelationships;
|
|
46538
46606
|
links?: ObjectLinks;
|
|
@@ -46556,7 +46624,7 @@ export declare interface JsonApiFilterContextIn {
|
|
|
46556
46624
|
* API identifier of an object
|
|
46557
46625
|
*/
|
|
46558
46626
|
id: string;
|
|
46559
|
-
attributes:
|
|
46627
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
46560
46628
|
}
|
|
46561
46629
|
|
|
46562
46630
|
export declare interface JsonApiFilterContextInDocument {
|
|
@@ -46595,11 +46663,22 @@ export declare interface JsonApiFilterContextOut {
|
|
|
46595
46663
|
* API identifier of an object
|
|
46596
46664
|
*/
|
|
46597
46665
|
id: string;
|
|
46598
|
-
meta?:
|
|
46599
|
-
attributes:
|
|
46666
|
+
meta?: JsonApiDatasetOutMeta;
|
|
46667
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
46600
46668
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
46601
46669
|
}
|
|
46602
46670
|
|
|
46671
|
+
export declare interface JsonApiFilterContextOutAttributes {
|
|
46672
|
+
title?: string;
|
|
46673
|
+
description?: string;
|
|
46674
|
+
tags?: Array<string>;
|
|
46675
|
+
areRelationsValid?: boolean;
|
|
46676
|
+
/**
|
|
46677
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
46678
|
+
*/
|
|
46679
|
+
content: object;
|
|
46680
|
+
}
|
|
46681
|
+
|
|
46603
46682
|
export declare interface JsonApiFilterContextOutDocument {
|
|
46604
46683
|
data: JsonApiFilterContextOut;
|
|
46605
46684
|
links?: ObjectLinks;
|
|
@@ -46620,7 +46699,7 @@ export declare type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLin
|
|
|
46620
46699
|
export declare interface JsonApiFilterContextOutList {
|
|
46621
46700
|
data: Array<JsonApiFilterContextOutWithLinks>;
|
|
46622
46701
|
links?: ListLinks;
|
|
46623
|
-
meta?:
|
|
46702
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
46624
46703
|
/**
|
|
46625
46704
|
* Included resources
|
|
46626
46705
|
*/
|
|
@@ -46628,8 +46707,8 @@ export declare interface JsonApiFilterContextOutList {
|
|
|
46628
46707
|
}
|
|
46629
46708
|
|
|
46630
46709
|
export declare interface JsonApiFilterContextOutRelationships {
|
|
46631
|
-
attributes?:
|
|
46632
|
-
datasets?:
|
|
46710
|
+
attributes?: JsonApiDatasetOutRelationshipsAttributes;
|
|
46711
|
+
datasets?: JsonApiDatasetOutRelationshipsReferences;
|
|
46633
46712
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
46634
46713
|
}
|
|
46635
46714
|
|
|
@@ -46648,8 +46727,8 @@ export declare interface JsonApiFilterContextOutWithLinks {
|
|
|
46648
46727
|
* API identifier of an object
|
|
46649
46728
|
*/
|
|
46650
46729
|
id: string;
|
|
46651
|
-
meta?:
|
|
46652
|
-
attributes:
|
|
46730
|
+
meta?: JsonApiDatasetOutMeta;
|
|
46731
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
46653
46732
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
46654
46733
|
links?: ObjectLinks;
|
|
46655
46734
|
}
|
|
@@ -46697,7 +46776,7 @@ export declare interface JsonApiFilterContextPostOptionalId {
|
|
|
46697
46776
|
* API identifier of an object
|
|
46698
46777
|
*/
|
|
46699
46778
|
id?: string;
|
|
46700
|
-
attributes:
|
|
46779
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
46701
46780
|
}
|
|
46702
46781
|
|
|
46703
46782
|
export declare interface JsonApiFilterContextPostOptionalIdDocument {
|
|
@@ -46722,34 +46801,14 @@ export declare interface JsonApiFilterViewIn {
|
|
|
46722
46801
|
* API identifier of an object
|
|
46723
46802
|
*/
|
|
46724
46803
|
id: string;
|
|
46725
|
-
attributes:
|
|
46726
|
-
relationships?:
|
|
46727
|
-
}
|
|
46728
|
-
|
|
46729
|
-
export declare interface JsonApiFilterViewInAttributes {
|
|
46730
|
-
title: string;
|
|
46731
|
-
description?: string;
|
|
46732
|
-
tags?: Array<string>;
|
|
46733
|
-
areRelationsValid?: boolean;
|
|
46734
|
-
/**
|
|
46735
|
-
* Indicator whether the filter view should by applied by default.
|
|
46736
|
-
*/
|
|
46737
|
-
isDefault?: boolean;
|
|
46738
|
-
/**
|
|
46739
|
-
* The respective filter context.
|
|
46740
|
-
*/
|
|
46741
|
-
content: object;
|
|
46804
|
+
attributes: JsonApiFilterViewOutAttributes;
|
|
46805
|
+
relationships?: JsonApiFilterViewOutRelationships;
|
|
46742
46806
|
}
|
|
46743
46807
|
|
|
46744
46808
|
export declare interface JsonApiFilterViewInDocument {
|
|
46745
46809
|
data: JsonApiFilterViewIn;
|
|
46746
46810
|
}
|
|
46747
46811
|
|
|
46748
|
-
export declare interface JsonApiFilterViewInRelationships {
|
|
46749
|
-
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
46750
|
-
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
46751
|
-
}
|
|
46752
|
-
|
|
46753
46812
|
export declare const JsonApiFilterViewInTypeEnum: {
|
|
46754
46813
|
readonly FILTER_VIEW: "filterView";
|
|
46755
46814
|
};
|
|
@@ -46768,8 +46827,23 @@ export declare interface JsonApiFilterViewOut {
|
|
|
46768
46827
|
* API identifier of an object
|
|
46769
46828
|
*/
|
|
46770
46829
|
id: string;
|
|
46771
|
-
attributes:
|
|
46772
|
-
relationships?:
|
|
46830
|
+
attributes: JsonApiFilterViewOutAttributes;
|
|
46831
|
+
relationships?: JsonApiFilterViewOutRelationships;
|
|
46832
|
+
}
|
|
46833
|
+
|
|
46834
|
+
export declare interface JsonApiFilterViewOutAttributes {
|
|
46835
|
+
title: string;
|
|
46836
|
+
description?: string;
|
|
46837
|
+
tags?: Array<string>;
|
|
46838
|
+
areRelationsValid?: boolean;
|
|
46839
|
+
/**
|
|
46840
|
+
* Indicator whether the filter view should by applied by default.
|
|
46841
|
+
*/
|
|
46842
|
+
isDefault?: boolean;
|
|
46843
|
+
/**
|
|
46844
|
+
* The respective filter context.
|
|
46845
|
+
*/
|
|
46846
|
+
content: object;
|
|
46773
46847
|
}
|
|
46774
46848
|
|
|
46775
46849
|
export declare interface JsonApiFilterViewOutDocument {
|
|
@@ -46792,13 +46866,22 @@ export declare type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOut
|
|
|
46792
46866
|
export declare interface JsonApiFilterViewOutList {
|
|
46793
46867
|
data: Array<JsonApiFilterViewOutWithLinks>;
|
|
46794
46868
|
links?: ListLinks;
|
|
46795
|
-
meta?:
|
|
46869
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
46796
46870
|
/**
|
|
46797
46871
|
* Included resources
|
|
46798
46872
|
*/
|
|
46799
46873
|
included?: Array<JsonApiFilterViewOutIncludes>;
|
|
46800
46874
|
}
|
|
46801
46875
|
|
|
46876
|
+
export declare interface JsonApiFilterViewOutRelationships {
|
|
46877
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
46878
|
+
user?: JsonApiFilterViewOutRelationshipsUser;
|
|
46879
|
+
}
|
|
46880
|
+
|
|
46881
|
+
export declare interface JsonApiFilterViewOutRelationshipsUser {
|
|
46882
|
+
data: JsonApiUserLinkage | null;
|
|
46883
|
+
}
|
|
46884
|
+
|
|
46802
46885
|
export declare const JsonApiFilterViewOutTypeEnum: {
|
|
46803
46886
|
readonly FILTER_VIEW: "filterView";
|
|
46804
46887
|
};
|
|
@@ -46814,8 +46897,8 @@ export declare interface JsonApiFilterViewOutWithLinks {
|
|
|
46814
46897
|
* API identifier of an object
|
|
46815
46898
|
*/
|
|
46816
46899
|
id: string;
|
|
46817
|
-
attributes:
|
|
46818
|
-
relationships?:
|
|
46900
|
+
attributes: JsonApiFilterViewOutAttributes;
|
|
46901
|
+
relationships?: JsonApiFilterViewOutRelationships;
|
|
46819
46902
|
links?: ObjectLinks;
|
|
46820
46903
|
}
|
|
46821
46904
|
|
|
@@ -46838,7 +46921,7 @@ export declare interface JsonApiFilterViewPatch {
|
|
|
46838
46921
|
*/
|
|
46839
46922
|
id: string;
|
|
46840
46923
|
attributes: JsonApiFilterViewPatchAttributes;
|
|
46841
|
-
relationships?:
|
|
46924
|
+
relationships?: JsonApiFilterViewOutRelationships;
|
|
46842
46925
|
}
|
|
46843
46926
|
|
|
46844
46927
|
export declare interface JsonApiFilterViewPatchAttributes {
|
|
@@ -46883,9 +46966,69 @@ export declare interface JsonApiIdentityProviderIn {
|
|
|
46883
46966
|
* API identifier of an object
|
|
46884
46967
|
*/
|
|
46885
46968
|
id: string;
|
|
46886
|
-
attributes?:
|
|
46969
|
+
attributes?: JsonApiIdentityProviderInAttributes;
|
|
46887
46970
|
}
|
|
46888
46971
|
|
|
46972
|
+
export declare interface JsonApiIdentityProviderInAttributes {
|
|
46973
|
+
/**
|
|
46974
|
+
* List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
|
|
46975
|
+
*/
|
|
46976
|
+
identifiers?: Array<string>;
|
|
46977
|
+
/**
|
|
46978
|
+
* Map of custom claim overrides. To be used when your Idp does not provide default claims (sub, email, name, given_name, family_name). Define the key pair for the claim you wish to override, where the key is the default name of the attribute and the value is your custom name for the given attribute.
|
|
46979
|
+
*/
|
|
46980
|
+
customClaimMapping?: {
|
|
46981
|
+
[key: string]: string;
|
|
46982
|
+
};
|
|
46983
|
+
/**
|
|
46984
|
+
* Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
|
|
46985
|
+
*/
|
|
46986
|
+
samlMetadata?: string;
|
|
46987
|
+
/**
|
|
46988
|
+
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
46989
|
+
*/
|
|
46990
|
+
oauthClientId?: string;
|
|
46991
|
+
/**
|
|
46992
|
+
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
46993
|
+
*/
|
|
46994
|
+
oauthClientSecret?: string;
|
|
46995
|
+
/**
|
|
46996
|
+
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
46997
|
+
*/
|
|
46998
|
+
oauthIssuerLocation?: string;
|
|
46999
|
+
/**
|
|
47000
|
+
* 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.
|
|
47001
|
+
*/
|
|
47002
|
+
oauthIssuerId?: string;
|
|
47003
|
+
/**
|
|
47004
|
+
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
47005
|
+
*/
|
|
47006
|
+
oauthSubjectIdClaim?: string;
|
|
47007
|
+
/**
|
|
47008
|
+
* 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.
|
|
47009
|
+
*/
|
|
47010
|
+
oauthCustomAuthAttributes?: {
|
|
47011
|
+
[key: string]: string;
|
|
47012
|
+
};
|
|
47013
|
+
/**
|
|
47014
|
+
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
47015
|
+
*/
|
|
47016
|
+
oauthCustomScopes?: Array<string> | null;
|
|
47017
|
+
/**
|
|
47018
|
+
* Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
|
|
47019
|
+
*/
|
|
47020
|
+
idpType?: JsonApiIdentityProviderInAttributesIdpTypeEnum;
|
|
47021
|
+
}
|
|
47022
|
+
|
|
47023
|
+
export declare const JsonApiIdentityProviderInAttributesIdpTypeEnum: {
|
|
47024
|
+
readonly MANAGED_IDP: "MANAGED_IDP";
|
|
47025
|
+
readonly FIM_IDP: "FIM_IDP";
|
|
47026
|
+
readonly DEX_IDP: "DEX_IDP";
|
|
47027
|
+
readonly CUSTOM_IDP: "CUSTOM_IDP";
|
|
47028
|
+
};
|
|
47029
|
+
|
|
47030
|
+
export declare type JsonApiIdentityProviderInAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderInAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderInAttributesIdpTypeEnum];
|
|
47031
|
+
|
|
46889
47032
|
export declare interface JsonApiIdentityProviderInDocument {
|
|
46890
47033
|
data: JsonApiIdentityProviderIn;
|
|
46891
47034
|
}
|
|
@@ -46988,7 +47131,7 @@ export declare interface JsonApiIdentityProviderOutDocument {
|
|
|
46988
47131
|
export declare interface JsonApiIdentityProviderOutList {
|
|
46989
47132
|
data: Array<JsonApiIdentityProviderOutWithLinks>;
|
|
46990
47133
|
links?: ListLinks;
|
|
46991
|
-
meta?:
|
|
47134
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
46992
47135
|
}
|
|
46993
47136
|
|
|
46994
47137
|
export declare const JsonApiIdentityProviderOutTypeEnum: {
|
|
@@ -47028,69 +47171,9 @@ export declare interface JsonApiIdentityProviderPatch {
|
|
|
47028
47171
|
* API identifier of an object
|
|
47029
47172
|
*/
|
|
47030
47173
|
id: string;
|
|
47031
|
-
attributes?:
|
|
47032
|
-
}
|
|
47033
|
-
|
|
47034
|
-
export declare interface JsonApiIdentityProviderPatchAttributes {
|
|
47035
|
-
/**
|
|
47036
|
-
* List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
|
|
47037
|
-
*/
|
|
47038
|
-
identifiers?: Array<string>;
|
|
47039
|
-
/**
|
|
47040
|
-
* Map of custom claim overrides. To be used when your Idp does not provide default claims (sub, email, name, given_name, family_name). Define the key pair for the claim you wish to override, where the key is the default name of the attribute and the value is your custom name for the given attribute.
|
|
47041
|
-
*/
|
|
47042
|
-
customClaimMapping?: {
|
|
47043
|
-
[key: string]: string;
|
|
47044
|
-
};
|
|
47045
|
-
/**
|
|
47046
|
-
* Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
|
|
47047
|
-
*/
|
|
47048
|
-
samlMetadata?: string;
|
|
47049
|
-
/**
|
|
47050
|
-
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
47051
|
-
*/
|
|
47052
|
-
oauthClientId?: string;
|
|
47053
|
-
/**
|
|
47054
|
-
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
47055
|
-
*/
|
|
47056
|
-
oauthClientSecret?: string;
|
|
47057
|
-
/**
|
|
47058
|
-
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
47059
|
-
*/
|
|
47060
|
-
oauthIssuerLocation?: string;
|
|
47061
|
-
/**
|
|
47062
|
-
* 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.
|
|
47063
|
-
*/
|
|
47064
|
-
oauthIssuerId?: string;
|
|
47065
|
-
/**
|
|
47066
|
-
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
47067
|
-
*/
|
|
47068
|
-
oauthSubjectIdClaim?: string;
|
|
47069
|
-
/**
|
|
47070
|
-
* 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.
|
|
47071
|
-
*/
|
|
47072
|
-
oauthCustomAuthAttributes?: {
|
|
47073
|
-
[key: string]: string;
|
|
47074
|
-
};
|
|
47075
|
-
/**
|
|
47076
|
-
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
47077
|
-
*/
|
|
47078
|
-
oauthCustomScopes?: Array<string> | null;
|
|
47079
|
-
/**
|
|
47080
|
-
* Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
|
|
47081
|
-
*/
|
|
47082
|
-
idpType?: JsonApiIdentityProviderPatchAttributesIdpTypeEnum;
|
|
47174
|
+
attributes?: JsonApiIdentityProviderInAttributes;
|
|
47083
47175
|
}
|
|
47084
47176
|
|
|
47085
|
-
export declare const JsonApiIdentityProviderPatchAttributesIdpTypeEnum: {
|
|
47086
|
-
readonly MANAGED_IDP: "MANAGED_IDP";
|
|
47087
|
-
readonly FIM_IDP: "FIM_IDP";
|
|
47088
|
-
readonly DEX_IDP: "DEX_IDP";
|
|
47089
|
-
readonly CUSTOM_IDP: "CUSTOM_IDP";
|
|
47090
|
-
};
|
|
47091
|
-
|
|
47092
|
-
export declare type JsonApiIdentityProviderPatchAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum];
|
|
47093
|
-
|
|
47094
47177
|
export declare interface JsonApiIdentityProviderPatchDocument {
|
|
47095
47178
|
data: JsonApiIdentityProviderPatch;
|
|
47096
47179
|
}
|
|
@@ -47113,7 +47196,7 @@ export declare interface JsonApiJwkIn {
|
|
|
47113
47196
|
* API identifier of an object
|
|
47114
47197
|
*/
|
|
47115
47198
|
id: string;
|
|
47116
|
-
attributes?:
|
|
47199
|
+
attributes?: JsonApiJwkOutAttributes;
|
|
47117
47200
|
}
|
|
47118
47201
|
|
|
47119
47202
|
export declare interface JsonApiJwkInDocument {
|
|
@@ -47138,7 +47221,11 @@ export declare interface JsonApiJwkOut {
|
|
|
47138
47221
|
* API identifier of an object
|
|
47139
47222
|
*/
|
|
47140
47223
|
id: string;
|
|
47141
|
-
attributes?:
|
|
47224
|
+
attributes?: JsonApiJwkOutAttributes;
|
|
47225
|
+
}
|
|
47226
|
+
|
|
47227
|
+
export declare interface JsonApiJwkOutAttributes {
|
|
47228
|
+
content?: RsaSpecification;
|
|
47142
47229
|
}
|
|
47143
47230
|
|
|
47144
47231
|
export declare interface JsonApiJwkOutDocument {
|
|
@@ -47152,7 +47239,7 @@ export declare interface JsonApiJwkOutDocument {
|
|
|
47152
47239
|
export declare interface JsonApiJwkOutList {
|
|
47153
47240
|
data: Array<JsonApiJwkOutWithLinks>;
|
|
47154
47241
|
links?: ListLinks;
|
|
47155
|
-
meta?:
|
|
47242
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47156
47243
|
}
|
|
47157
47244
|
|
|
47158
47245
|
export declare const JsonApiJwkOutTypeEnum: {
|
|
@@ -47170,7 +47257,7 @@ export declare interface JsonApiJwkOutWithLinks {
|
|
|
47170
47257
|
* API identifier of an object
|
|
47171
47258
|
*/
|
|
47172
47259
|
id: string;
|
|
47173
|
-
attributes?:
|
|
47260
|
+
attributes?: JsonApiJwkOutAttributes;
|
|
47174
47261
|
links?: ObjectLinks;
|
|
47175
47262
|
}
|
|
47176
47263
|
|
|
@@ -47192,11 +47279,7 @@ export declare interface JsonApiJwkPatch {
|
|
|
47192
47279
|
* API identifier of an object
|
|
47193
47280
|
*/
|
|
47194
47281
|
id: string;
|
|
47195
|
-
attributes?:
|
|
47196
|
-
}
|
|
47197
|
-
|
|
47198
|
-
export declare interface JsonApiJwkPatchAttributes {
|
|
47199
|
-
content?: RsaSpecification;
|
|
47282
|
+
attributes?: JsonApiJwkOutAttributes;
|
|
47200
47283
|
}
|
|
47201
47284
|
|
|
47202
47285
|
export declare interface JsonApiJwkPatchDocument {
|
|
@@ -47235,7 +47318,7 @@ export declare interface JsonApiLabelOut {
|
|
|
47235
47318
|
* API identifier of an object
|
|
47236
47319
|
*/
|
|
47237
47320
|
id: string;
|
|
47238
|
-
meta?:
|
|
47321
|
+
meta?: JsonApiDatasetOutMeta;
|
|
47239
47322
|
attributes?: JsonApiLabelOutAttributes;
|
|
47240
47323
|
relationships?: JsonApiLabelOutRelationships;
|
|
47241
47324
|
}
|
|
@@ -47289,7 +47372,7 @@ export declare interface JsonApiLabelOutDocument {
|
|
|
47289
47372
|
export declare interface JsonApiLabelOutList {
|
|
47290
47373
|
data: Array<JsonApiLabelOutWithLinks>;
|
|
47291
47374
|
links?: ListLinks;
|
|
47292
|
-
meta?:
|
|
47375
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47293
47376
|
/**
|
|
47294
47377
|
* Included resources
|
|
47295
47378
|
*/
|
|
@@ -47319,7 +47402,7 @@ export declare interface JsonApiLabelOutWithLinks {
|
|
|
47319
47402
|
* API identifier of an object
|
|
47320
47403
|
*/
|
|
47321
47404
|
id: string;
|
|
47322
|
-
meta?:
|
|
47405
|
+
meta?: JsonApiDatasetOutMeta;
|
|
47323
47406
|
attributes?: JsonApiLabelOutAttributes;
|
|
47324
47407
|
relationships?: JsonApiLabelOutRelationships;
|
|
47325
47408
|
links?: ObjectLinks;
|
|
@@ -47446,7 +47529,7 @@ export declare interface JsonApiLlmEndpointOutDocument {
|
|
|
47446
47529
|
export declare interface JsonApiLlmEndpointOutList {
|
|
47447
47530
|
data: Array<JsonApiLlmEndpointOutWithLinks>;
|
|
47448
47531
|
links?: ListLinks;
|
|
47449
|
-
meta?:
|
|
47532
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47450
47533
|
}
|
|
47451
47534
|
|
|
47452
47535
|
export declare const JsonApiLlmEndpointOutTypeEnum: {
|
|
@@ -47592,7 +47675,7 @@ export declare interface JsonApiMetricOut {
|
|
|
47592
47675
|
* API identifier of an object
|
|
47593
47676
|
*/
|
|
47594
47677
|
id: string;
|
|
47595
|
-
meta?:
|
|
47678
|
+
meta?: JsonApiDatasetOutMeta;
|
|
47596
47679
|
attributes: JsonApiMetricOutAttributes;
|
|
47597
47680
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
47598
47681
|
}
|
|
@@ -47632,7 +47715,7 @@ export declare type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | Js
|
|
|
47632
47715
|
export declare interface JsonApiMetricOutList {
|
|
47633
47716
|
data: Array<JsonApiMetricOutWithLinks>;
|
|
47634
47717
|
links?: ListLinks;
|
|
47635
|
-
meta?:
|
|
47718
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47636
47719
|
/**
|
|
47637
47720
|
* Included resources
|
|
47638
47721
|
*/
|
|
@@ -47654,7 +47737,7 @@ export declare interface JsonApiMetricOutWithLinks {
|
|
|
47654
47737
|
* API identifier of an object
|
|
47655
47738
|
*/
|
|
47656
47739
|
id: string;
|
|
47657
|
-
meta?:
|
|
47740
|
+
meta?: JsonApiDatasetOutMeta;
|
|
47658
47741
|
attributes: JsonApiMetricOutAttributes;
|
|
47659
47742
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
47660
47743
|
links?: ObjectLinks;
|
|
@@ -47777,7 +47860,7 @@ export declare interface JsonApiNotificationChannelIdentifierOutDocument {
|
|
|
47777
47860
|
export declare interface JsonApiNotificationChannelIdentifierOutList {
|
|
47778
47861
|
data: Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
|
|
47779
47862
|
links?: ListLinks;
|
|
47780
|
-
meta?:
|
|
47863
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47781
47864
|
}
|
|
47782
47865
|
|
|
47783
47866
|
export declare const JsonApiNotificationChannelIdentifierOutTypeEnum: {
|
|
@@ -47817,7 +47900,7 @@ export declare interface JsonApiNotificationChannelIn {
|
|
|
47817
47900
|
* API identifier of an object
|
|
47818
47901
|
*/
|
|
47819
47902
|
id: string;
|
|
47820
|
-
attributes?:
|
|
47903
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
47821
47904
|
}
|
|
47822
47905
|
|
|
47823
47906
|
export declare interface JsonApiNotificationChannelInDocument {
|
|
@@ -47935,7 +48018,7 @@ export declare interface JsonApiNotificationChannelOutDocument {
|
|
|
47935
48018
|
export declare interface JsonApiNotificationChannelOutList {
|
|
47936
48019
|
data: Array<JsonApiNotificationChannelOutWithLinks>;
|
|
47937
48020
|
links?: ListLinks;
|
|
47938
|
-
meta?:
|
|
48021
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47939
48022
|
}
|
|
47940
48023
|
|
|
47941
48024
|
export declare const JsonApiNotificationChannelOutTypeEnum: {
|
|
@@ -47975,10 +48058,35 @@ export declare interface JsonApiNotificationChannelPatch {
|
|
|
47975
48058
|
* API identifier of an object
|
|
47976
48059
|
*/
|
|
47977
48060
|
id: string;
|
|
47978
|
-
attributes?:
|
|
48061
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
47979
48062
|
}
|
|
47980
48063
|
|
|
47981
|
-
export declare interface
|
|
48064
|
+
export declare interface JsonApiNotificationChannelPatchDocument {
|
|
48065
|
+
data: JsonApiNotificationChannelPatch;
|
|
48066
|
+
}
|
|
48067
|
+
|
|
48068
|
+
export declare const JsonApiNotificationChannelPatchTypeEnum: {
|
|
48069
|
+
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
48070
|
+
};
|
|
48071
|
+
|
|
48072
|
+
export declare type JsonApiNotificationChannelPatchTypeEnum = (typeof JsonApiNotificationChannelPatchTypeEnum)[keyof typeof JsonApiNotificationChannelPatchTypeEnum];
|
|
48073
|
+
|
|
48074
|
+
/**
|
|
48075
|
+
* JSON:API representation of notificationChannel entity.
|
|
48076
|
+
*/
|
|
48077
|
+
export declare interface JsonApiNotificationChannelPostOptionalId {
|
|
48078
|
+
/**
|
|
48079
|
+
* Object type
|
|
48080
|
+
*/
|
|
48081
|
+
type: JsonApiNotificationChannelPostOptionalIdTypeEnum;
|
|
48082
|
+
/**
|
|
48083
|
+
* API identifier of an object
|
|
48084
|
+
*/
|
|
48085
|
+
id?: string;
|
|
48086
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
48087
|
+
}
|
|
48088
|
+
|
|
48089
|
+
export declare interface JsonApiNotificationChannelPostOptionalIdAttributes {
|
|
47982
48090
|
name?: string | null;
|
|
47983
48091
|
description?: string | null;
|
|
47984
48092
|
destination?: JsonApiNotificationChannelOutAttributesDestination;
|
|
@@ -47989,7 +48097,7 @@ export declare interface JsonApiNotificationChannelPatchAttributes {
|
|
|
47989
48097
|
/**
|
|
47990
48098
|
* Dashboard link visibility in notifications. HIDDEN - the link will not be included INTERNAL_ONLY - only internal users will see the link ALL - all users will see the link
|
|
47991
48099
|
*/
|
|
47992
|
-
dashboardLinkVisibility?:
|
|
48100
|
+
dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
|
|
47993
48101
|
/**
|
|
47994
48102
|
* Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
|
|
47995
48103
|
*/
|
|
@@ -47997,60 +48105,35 @@ export declare interface JsonApiNotificationChannelPatchAttributes {
|
|
|
47997
48105
|
/**
|
|
47998
48106
|
* Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
|
|
47999
48107
|
*/
|
|
48000
|
-
allowedRecipients?:
|
|
48108
|
+
allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
|
|
48001
48109
|
/**
|
|
48002
48110
|
* In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications
|
|
48003
48111
|
*/
|
|
48004
|
-
inPlatformNotification?:
|
|
48112
|
+
inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
|
|
48005
48113
|
}
|
|
48006
48114
|
|
|
48007
|
-
export declare const
|
|
48115
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum: {
|
|
48008
48116
|
readonly CREATOR: "CREATOR";
|
|
48009
48117
|
readonly INTERNAL: "INTERNAL";
|
|
48010
48118
|
readonly EXTERNAL: "EXTERNAL";
|
|
48011
48119
|
};
|
|
48012
48120
|
|
|
48013
|
-
export declare type
|
|
48121
|
+
export declare type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum];
|
|
48014
48122
|
|
|
48015
|
-
export declare const
|
|
48123
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum: {
|
|
48016
48124
|
readonly HIDDEN: "HIDDEN";
|
|
48017
48125
|
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
48018
48126
|
readonly ALL: "ALL";
|
|
48019
48127
|
};
|
|
48020
48128
|
|
|
48021
|
-
export declare type
|
|
48129
|
+
export declare type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum];
|
|
48022
48130
|
|
|
48023
|
-
export declare const
|
|
48131
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum: {
|
|
48024
48132
|
readonly DISABLED: "DISABLED";
|
|
48025
48133
|
readonly ENABLED: "ENABLED";
|
|
48026
48134
|
};
|
|
48027
48135
|
|
|
48028
|
-
export declare type
|
|
48029
|
-
|
|
48030
|
-
export declare interface JsonApiNotificationChannelPatchDocument {
|
|
48031
|
-
data: JsonApiNotificationChannelPatch;
|
|
48032
|
-
}
|
|
48033
|
-
|
|
48034
|
-
export declare const JsonApiNotificationChannelPatchTypeEnum: {
|
|
48035
|
-
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
48036
|
-
};
|
|
48037
|
-
|
|
48038
|
-
export declare type JsonApiNotificationChannelPatchTypeEnum = (typeof JsonApiNotificationChannelPatchTypeEnum)[keyof typeof JsonApiNotificationChannelPatchTypeEnum];
|
|
48039
|
-
|
|
48040
|
-
/**
|
|
48041
|
-
* JSON:API representation of notificationChannel entity.
|
|
48042
|
-
*/
|
|
48043
|
-
export declare interface JsonApiNotificationChannelPostOptionalId {
|
|
48044
|
-
/**
|
|
48045
|
-
* Object type
|
|
48046
|
-
*/
|
|
48047
|
-
type: JsonApiNotificationChannelPostOptionalIdTypeEnum;
|
|
48048
|
-
/**
|
|
48049
|
-
* API identifier of an object
|
|
48050
|
-
*/
|
|
48051
|
-
id?: string;
|
|
48052
|
-
attributes?: JsonApiNotificationChannelPatchAttributes;
|
|
48053
|
-
}
|
|
48136
|
+
export declare type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum];
|
|
48054
48137
|
|
|
48055
48138
|
export declare interface JsonApiNotificationChannelPostOptionalIdDocument {
|
|
48056
48139
|
data: JsonApiNotificationChannelPostOptionalId;
|
|
@@ -48074,14 +48157,58 @@ export declare interface JsonApiOrganizationIn {
|
|
|
48074
48157
|
* API identifier of an object
|
|
48075
48158
|
*/
|
|
48076
48159
|
id: string;
|
|
48077
|
-
attributes?:
|
|
48078
|
-
relationships?:
|
|
48160
|
+
attributes?: JsonApiOrganizationInAttributes;
|
|
48161
|
+
relationships?: JsonApiOrganizationInRelationships;
|
|
48162
|
+
}
|
|
48163
|
+
|
|
48164
|
+
export declare interface JsonApiOrganizationInAttributes {
|
|
48165
|
+
name?: string | null;
|
|
48166
|
+
hostname?: string;
|
|
48167
|
+
allowedOrigins?: Array<string>;
|
|
48168
|
+
oauthIssuerLocation?: string;
|
|
48169
|
+
oauthClientId?: string;
|
|
48170
|
+
oauthClientSecret?: string;
|
|
48171
|
+
/**
|
|
48172
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
48173
|
+
* @deprecated
|
|
48174
|
+
*/
|
|
48175
|
+
earlyAccess?: string | null;
|
|
48176
|
+
/**
|
|
48177
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
48178
|
+
*/
|
|
48179
|
+
earlyAccessValues?: Array<string> | null;
|
|
48180
|
+
/**
|
|
48181
|
+
* 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.
|
|
48182
|
+
*/
|
|
48183
|
+
oauthIssuerId?: string;
|
|
48184
|
+
/**
|
|
48185
|
+
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
48186
|
+
*/
|
|
48187
|
+
oauthSubjectIdClaim?: string;
|
|
48188
|
+
/**
|
|
48189
|
+
* 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.
|
|
48190
|
+
*/
|
|
48191
|
+
oauthCustomAuthAttributes?: {
|
|
48192
|
+
[key: string]: string;
|
|
48193
|
+
};
|
|
48194
|
+
/**
|
|
48195
|
+
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
48196
|
+
*/
|
|
48197
|
+
oauthCustomScopes?: Array<string> | null;
|
|
48079
48198
|
}
|
|
48080
48199
|
|
|
48081
48200
|
export declare interface JsonApiOrganizationInDocument {
|
|
48082
48201
|
data: JsonApiOrganizationIn;
|
|
48083
48202
|
}
|
|
48084
48203
|
|
|
48204
|
+
export declare interface JsonApiOrganizationInRelationships {
|
|
48205
|
+
identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
48206
|
+
}
|
|
48207
|
+
|
|
48208
|
+
export declare interface JsonApiOrganizationInRelationshipsIdentityProvider {
|
|
48209
|
+
data: JsonApiIdentityProviderLinkage | null;
|
|
48210
|
+
}
|
|
48211
|
+
|
|
48085
48212
|
export declare const JsonApiOrganizationInTypeEnum: {
|
|
48086
48213
|
readonly ORGANIZATION: "organization";
|
|
48087
48214
|
};
|
|
@@ -48182,21 +48309,9 @@ export declare const JsonApiOrganizationOutMetaPermissionsEnum: {
|
|
|
48182
48309
|
export declare type JsonApiOrganizationOutMetaPermissionsEnum = (typeof JsonApiOrganizationOutMetaPermissionsEnum)[keyof typeof JsonApiOrganizationOutMetaPermissionsEnum];
|
|
48183
48310
|
|
|
48184
48311
|
export declare interface JsonApiOrganizationOutRelationships {
|
|
48185
|
-
bootstrapUser?:
|
|
48186
|
-
bootstrapUserGroup?:
|
|
48187
|
-
identityProvider?:
|
|
48188
|
-
}
|
|
48189
|
-
|
|
48190
|
-
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
48191
|
-
data: JsonApiUserLinkage | null;
|
|
48192
|
-
}
|
|
48193
|
-
|
|
48194
|
-
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
48195
|
-
data: JsonApiUserGroupLinkage | null;
|
|
48196
|
-
}
|
|
48197
|
-
|
|
48198
|
-
export declare interface JsonApiOrganizationOutRelationshipsIdentityProvider {
|
|
48199
|
-
data: JsonApiIdentityProviderLinkage | null;
|
|
48312
|
+
bootstrapUser?: JsonApiFilterViewOutRelationshipsUser;
|
|
48313
|
+
bootstrapUserGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
|
|
48314
|
+
identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
48200
48315
|
}
|
|
48201
48316
|
|
|
48202
48317
|
export declare const JsonApiOrganizationOutTypeEnum: {
|
|
@@ -48217,54 +48332,14 @@ export declare interface JsonApiOrganizationPatch {
|
|
|
48217
48332
|
* API identifier of an object
|
|
48218
48333
|
*/
|
|
48219
48334
|
id: string;
|
|
48220
|
-
attributes?:
|
|
48221
|
-
relationships?:
|
|
48222
|
-
}
|
|
48223
|
-
|
|
48224
|
-
export declare interface JsonApiOrganizationPatchAttributes {
|
|
48225
|
-
name?: string | null;
|
|
48226
|
-
hostname?: string;
|
|
48227
|
-
allowedOrigins?: Array<string>;
|
|
48228
|
-
oauthIssuerLocation?: string;
|
|
48229
|
-
oauthClientId?: string;
|
|
48230
|
-
oauthClientSecret?: string;
|
|
48231
|
-
/**
|
|
48232
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
48233
|
-
* @deprecated
|
|
48234
|
-
*/
|
|
48235
|
-
earlyAccess?: string | null;
|
|
48236
|
-
/**
|
|
48237
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
48238
|
-
*/
|
|
48239
|
-
earlyAccessValues?: Array<string> | null;
|
|
48240
|
-
/**
|
|
48241
|
-
* 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.
|
|
48242
|
-
*/
|
|
48243
|
-
oauthIssuerId?: string;
|
|
48244
|
-
/**
|
|
48245
|
-
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
48246
|
-
*/
|
|
48247
|
-
oauthSubjectIdClaim?: string;
|
|
48248
|
-
/**
|
|
48249
|
-
* 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.
|
|
48250
|
-
*/
|
|
48251
|
-
oauthCustomAuthAttributes?: {
|
|
48252
|
-
[key: string]: string;
|
|
48253
|
-
};
|
|
48254
|
-
/**
|
|
48255
|
-
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
48256
|
-
*/
|
|
48257
|
-
oauthCustomScopes?: Array<string> | null;
|
|
48335
|
+
attributes?: JsonApiOrganizationInAttributes;
|
|
48336
|
+
relationships?: JsonApiOrganizationInRelationships;
|
|
48258
48337
|
}
|
|
48259
48338
|
|
|
48260
48339
|
export declare interface JsonApiOrganizationPatchDocument {
|
|
48261
48340
|
data: JsonApiOrganizationPatch;
|
|
48262
48341
|
}
|
|
48263
48342
|
|
|
48264
|
-
export declare interface JsonApiOrganizationPatchRelationships {
|
|
48265
|
-
identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
48266
|
-
}
|
|
48267
|
-
|
|
48268
48343
|
export declare const JsonApiOrganizationPatchTypeEnum: {
|
|
48269
48344
|
readonly ORGANIZATION: "organization";
|
|
48270
48345
|
};
|
|
@@ -48283,7 +48358,7 @@ export declare interface JsonApiOrganizationSettingIn {
|
|
|
48283
48358
|
* API identifier of an object
|
|
48284
48359
|
*/
|
|
48285
48360
|
id: string;
|
|
48286
|
-
attributes?:
|
|
48361
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
48287
48362
|
}
|
|
48288
48363
|
|
|
48289
48364
|
export declare interface JsonApiOrganizationSettingInDocument {
|
|
@@ -48308,7 +48383,7 @@ export declare interface JsonApiOrganizationSettingOut {
|
|
|
48308
48383
|
* API identifier of an object
|
|
48309
48384
|
*/
|
|
48310
48385
|
id: string;
|
|
48311
|
-
attributes?:
|
|
48386
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
48312
48387
|
}
|
|
48313
48388
|
|
|
48314
48389
|
export declare interface JsonApiOrganizationSettingOutDocument {
|
|
@@ -48322,7 +48397,7 @@ export declare interface JsonApiOrganizationSettingOutDocument {
|
|
|
48322
48397
|
export declare interface JsonApiOrganizationSettingOutList {
|
|
48323
48398
|
data: Array<JsonApiOrganizationSettingOutWithLinks>;
|
|
48324
48399
|
links?: ListLinks;
|
|
48325
|
-
meta?:
|
|
48400
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48326
48401
|
}
|
|
48327
48402
|
|
|
48328
48403
|
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
@@ -48340,7 +48415,7 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
48340
48415
|
* API identifier of an object
|
|
48341
48416
|
*/
|
|
48342
48417
|
id: string;
|
|
48343
|
-
attributes?:
|
|
48418
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
48344
48419
|
links?: ObjectLinks;
|
|
48345
48420
|
}
|
|
48346
48421
|
|
|
@@ -48362,7 +48437,7 @@ export declare interface JsonApiOrganizationSettingPatch {
|
|
|
48362
48437
|
* API identifier of an object
|
|
48363
48438
|
*/
|
|
48364
48439
|
id: string;
|
|
48365
|
-
attributes?:
|
|
48440
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
48366
48441
|
}
|
|
48367
48442
|
|
|
48368
48443
|
export declare interface JsonApiOrganizationSettingPatchDocument {
|
|
@@ -48426,7 +48501,7 @@ export declare interface JsonApiThemeOutDocument {
|
|
|
48426
48501
|
export declare interface JsonApiThemeOutList {
|
|
48427
48502
|
data: Array<JsonApiThemeOutWithLinks>;
|
|
48428
48503
|
links?: ListLinks;
|
|
48429
|
-
meta?:
|
|
48504
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48430
48505
|
}
|
|
48431
48506
|
|
|
48432
48507
|
export declare const JsonApiThemeOutTypeEnum: {
|
|
@@ -48491,25 +48566,17 @@ export declare interface JsonApiUserDataFilterIn {
|
|
|
48491
48566
|
* API identifier of an object
|
|
48492
48567
|
*/
|
|
48493
48568
|
id: string;
|
|
48494
|
-
attributes:
|
|
48569
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
48495
48570
|
relationships?: JsonApiUserDataFilterInRelationships;
|
|
48496
48571
|
}
|
|
48497
48572
|
|
|
48498
|
-
export declare interface JsonApiUserDataFilterInAttributes {
|
|
48499
|
-
title?: string;
|
|
48500
|
-
description?: string;
|
|
48501
|
-
tags?: Array<string>;
|
|
48502
|
-
areRelationsValid?: boolean;
|
|
48503
|
-
maql: string;
|
|
48504
|
-
}
|
|
48505
|
-
|
|
48506
48573
|
export declare interface JsonApiUserDataFilterInDocument {
|
|
48507
48574
|
data: JsonApiUserDataFilterIn;
|
|
48508
48575
|
}
|
|
48509
48576
|
|
|
48510
48577
|
export declare interface JsonApiUserDataFilterInRelationships {
|
|
48511
|
-
user?:
|
|
48512
|
-
userGroup?:
|
|
48578
|
+
user?: JsonApiFilterViewOutRelationshipsUser;
|
|
48579
|
+
userGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
|
|
48513
48580
|
}
|
|
48514
48581
|
|
|
48515
48582
|
export declare const JsonApiUserDataFilterInTypeEnum: {
|
|
@@ -48530,11 +48597,19 @@ export declare interface JsonApiUserDataFilterOut {
|
|
|
48530
48597
|
* API identifier of an object
|
|
48531
48598
|
*/
|
|
48532
48599
|
id: string;
|
|
48533
|
-
meta?:
|
|
48534
|
-
attributes:
|
|
48600
|
+
meta?: JsonApiDatasetOutMeta;
|
|
48601
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
48535
48602
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
48536
48603
|
}
|
|
48537
48604
|
|
|
48605
|
+
export declare interface JsonApiUserDataFilterOutAttributes {
|
|
48606
|
+
title?: string;
|
|
48607
|
+
description?: string;
|
|
48608
|
+
tags?: Array<string>;
|
|
48609
|
+
areRelationsValid?: boolean;
|
|
48610
|
+
maql: string;
|
|
48611
|
+
}
|
|
48612
|
+
|
|
48538
48613
|
export declare interface JsonApiUserDataFilterOutDocument {
|
|
48539
48614
|
data: JsonApiUserDataFilterOut;
|
|
48540
48615
|
links?: ObjectLinks;
|
|
@@ -48555,7 +48630,7 @@ export declare type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLi
|
|
|
48555
48630
|
export declare interface JsonApiUserDataFilterOutList {
|
|
48556
48631
|
data: Array<JsonApiUserDataFilterOutWithLinks>;
|
|
48557
48632
|
links?: ListLinks;
|
|
48558
|
-
meta?:
|
|
48633
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48559
48634
|
/**
|
|
48560
48635
|
* Included resources
|
|
48561
48636
|
*/
|
|
@@ -48563,13 +48638,17 @@ export declare interface JsonApiUserDataFilterOutList {
|
|
|
48563
48638
|
}
|
|
48564
48639
|
|
|
48565
48640
|
export declare interface JsonApiUserDataFilterOutRelationships {
|
|
48566
|
-
user?:
|
|
48567
|
-
userGroup?:
|
|
48568
|
-
facts?:
|
|
48569
|
-
attributes?:
|
|
48641
|
+
user?: JsonApiFilterViewOutRelationshipsUser;
|
|
48642
|
+
userGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
|
|
48643
|
+
facts?: JsonApiDatasetOutRelationshipsFacts;
|
|
48644
|
+
attributes?: JsonApiDatasetOutRelationshipsAttributes;
|
|
48570
48645
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
48571
48646
|
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
48572
|
-
datasets?:
|
|
48647
|
+
datasets?: JsonApiDatasetOutRelationshipsReferences;
|
|
48648
|
+
}
|
|
48649
|
+
|
|
48650
|
+
export declare interface JsonApiUserDataFilterOutRelationshipsUserGroup {
|
|
48651
|
+
data: JsonApiUserGroupLinkage | null;
|
|
48573
48652
|
}
|
|
48574
48653
|
|
|
48575
48654
|
export declare const JsonApiUserDataFilterOutTypeEnum: {
|
|
@@ -48587,8 +48666,8 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
|
|
|
48587
48666
|
* API identifier of an object
|
|
48588
48667
|
*/
|
|
48589
48668
|
id: string;
|
|
48590
|
-
meta?:
|
|
48591
|
-
attributes:
|
|
48669
|
+
meta?: JsonApiDatasetOutMeta;
|
|
48670
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
48592
48671
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
48593
48672
|
links?: ObjectLinks;
|
|
48594
48673
|
}
|
|
@@ -48645,7 +48724,7 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
|
|
|
48645
48724
|
* API identifier of an object
|
|
48646
48725
|
*/
|
|
48647
48726
|
id?: string;
|
|
48648
|
-
attributes:
|
|
48727
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
48649
48728
|
relationships?: JsonApiUserDataFilterInRelationships;
|
|
48650
48729
|
}
|
|
48651
48730
|
|
|
@@ -48734,7 +48813,7 @@ export declare interface JsonApiUserGroupOutDocument {
|
|
|
48734
48813
|
export declare interface JsonApiUserGroupOutList {
|
|
48735
48814
|
data: Array<JsonApiUserGroupOutWithLinks>;
|
|
48736
48815
|
links?: ListLinks;
|
|
48737
|
-
meta?:
|
|
48816
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48738
48817
|
/**
|
|
48739
48818
|
* Included resources
|
|
48740
48819
|
*/
|
|
@@ -48843,7 +48922,7 @@ export declare interface JsonApiUserIdentifierOutDocument {
|
|
|
48843
48922
|
export declare interface JsonApiUserIdentifierOutList {
|
|
48844
48923
|
data: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
48845
48924
|
links?: ListLinks;
|
|
48846
|
-
meta?:
|
|
48925
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48847
48926
|
}
|
|
48848
48927
|
|
|
48849
48928
|
export declare const JsonApiUserIdentifierOutTypeEnum: {
|
|
@@ -48949,7 +49028,7 @@ export declare interface JsonApiUserOutDocument {
|
|
|
48949
49028
|
export declare interface JsonApiUserOutList {
|
|
48950
49029
|
data: Array<JsonApiUserOutWithLinks>;
|
|
48951
49030
|
links?: ListLinks;
|
|
48952
|
-
meta?:
|
|
49031
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48953
49032
|
/**
|
|
48954
49033
|
* Included resources
|
|
48955
49034
|
*/
|
|
@@ -49031,7 +49110,7 @@ export declare interface JsonApiUserSettingIn {
|
|
|
49031
49110
|
* API identifier of an object
|
|
49032
49111
|
*/
|
|
49033
49112
|
id: string;
|
|
49034
|
-
attributes?:
|
|
49113
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
49035
49114
|
}
|
|
49036
49115
|
|
|
49037
49116
|
export declare interface JsonApiUserSettingInDocument {
|
|
@@ -49056,7 +49135,7 @@ export declare interface JsonApiUserSettingOut {
|
|
|
49056
49135
|
* API identifier of an object
|
|
49057
49136
|
*/
|
|
49058
49137
|
id: string;
|
|
49059
|
-
attributes?:
|
|
49138
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
49060
49139
|
}
|
|
49061
49140
|
|
|
49062
49141
|
export declare interface JsonApiUserSettingOutDocument {
|
|
@@ -49070,7 +49149,7 @@ export declare interface JsonApiUserSettingOutDocument {
|
|
|
49070
49149
|
export declare interface JsonApiUserSettingOutList {
|
|
49071
49150
|
data: Array<JsonApiUserSettingOutWithLinks>;
|
|
49072
49151
|
links?: ListLinks;
|
|
49073
|
-
meta?:
|
|
49152
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
49074
49153
|
}
|
|
49075
49154
|
|
|
49076
49155
|
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
@@ -49088,7 +49167,7 @@ export declare interface JsonApiUserSettingOutWithLinks {
|
|
|
49088
49167
|
* API identifier of an object
|
|
49089
49168
|
*/
|
|
49090
49169
|
id: string;
|
|
49091
|
-
attributes?:
|
|
49170
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
49092
49171
|
links?: ObjectLinks;
|
|
49093
49172
|
}
|
|
49094
49173
|
|
|
@@ -49110,7 +49189,7 @@ export declare interface JsonApiVisualizationObjectIn {
|
|
|
49110
49189
|
* API identifier of an object
|
|
49111
49190
|
*/
|
|
49112
49191
|
id: string;
|
|
49113
|
-
attributes:
|
|
49192
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
49114
49193
|
}
|
|
49115
49194
|
|
|
49116
49195
|
export declare interface JsonApiVisualizationObjectInDocument {
|
|
@@ -49149,7 +49228,7 @@ export declare interface JsonApiVisualizationObjectOut {
|
|
|
49149
49228
|
* API identifier of an object
|
|
49150
49229
|
*/
|
|
49151
49230
|
id: string;
|
|
49152
|
-
meta?:
|
|
49231
|
+
meta?: JsonApiDatasetOutMeta;
|
|
49153
49232
|
attributes: JsonApiVisualizationObjectOutAttributes;
|
|
49154
49233
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
49155
49234
|
}
|
|
@@ -49182,70 +49261,27 @@ export declare interface JsonApiVisualizationObjectOutDocument {
|
|
|
49182
49261
|
export declare interface JsonApiVisualizationObjectOutList {
|
|
49183
49262
|
data: Array<JsonApiVisualizationObjectOutWithLinks>;
|
|
49184
49263
|
links?: ListLinks;
|
|
49185
|
-
meta?:
|
|
49264
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
49186
49265
|
/**
|
|
49187
49266
|
* Included resources
|
|
49188
49267
|
*/
|
|
49189
49268
|
included?: Array<JsonApiMetricOutIncludes>;
|
|
49190
49269
|
}
|
|
49191
49270
|
|
|
49192
|
-
export declare interface JsonApiVisualizationObjectOutMeta {
|
|
49193
|
-
origin?: JsonApiVisualizationObjectOutMetaOrigin;
|
|
49194
|
-
}
|
|
49195
|
-
|
|
49196
|
-
export declare interface JsonApiVisualizationObjectOutMetaOrigin {
|
|
49197
|
-
/**
|
|
49198
|
-
* defines type of the origin of the entity
|
|
49199
|
-
*/
|
|
49200
|
-
originType: JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum;
|
|
49201
|
-
/**
|
|
49202
|
-
* defines id of the workspace where the entity comes from
|
|
49203
|
-
*/
|
|
49204
|
-
originId: string;
|
|
49205
|
-
}
|
|
49206
|
-
|
|
49207
|
-
export declare const JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum: {
|
|
49208
|
-
readonly NATIVE: "NATIVE";
|
|
49209
|
-
readonly PARENT: "PARENT";
|
|
49210
|
-
};
|
|
49211
|
-
|
|
49212
|
-
export declare type JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum = (typeof JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum)[keyof typeof JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum];
|
|
49213
|
-
|
|
49214
49271
|
export declare interface JsonApiVisualizationObjectOutRelationships {
|
|
49215
49272
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
49216
49273
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
49217
|
-
facts?:
|
|
49218
|
-
attributes?:
|
|
49274
|
+
facts?: JsonApiDatasetOutRelationshipsFacts;
|
|
49275
|
+
attributes?: JsonApiDatasetOutRelationshipsAttributes;
|
|
49219
49276
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
49220
49277
|
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
49221
|
-
datasets?:
|
|
49222
|
-
}
|
|
49223
|
-
|
|
49224
|
-
export declare interface JsonApiVisualizationObjectOutRelationshipsAttributes {
|
|
49225
|
-
/**
|
|
49226
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
49227
|
-
*/
|
|
49228
|
-
data: Array<JsonApiAttributeLinkage>;
|
|
49278
|
+
datasets?: JsonApiDatasetOutRelationshipsReferences;
|
|
49229
49279
|
}
|
|
49230
49280
|
|
|
49231
49281
|
export declare interface JsonApiVisualizationObjectOutRelationshipsCreatedBy {
|
|
49232
49282
|
data: JsonApiUserIdentifierLinkage | null;
|
|
49233
49283
|
}
|
|
49234
49284
|
|
|
49235
|
-
export declare interface JsonApiVisualizationObjectOutRelationshipsDatasets {
|
|
49236
|
-
/**
|
|
49237
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
49238
|
-
*/
|
|
49239
|
-
data: Array<JsonApiDatasetLinkage>;
|
|
49240
|
-
}
|
|
49241
|
-
|
|
49242
|
-
export declare interface JsonApiVisualizationObjectOutRelationshipsFacts {
|
|
49243
|
-
/**
|
|
49244
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
49245
|
-
*/
|
|
49246
|
-
data: Array<JsonApiFactLinkage>;
|
|
49247
|
-
}
|
|
49248
|
-
|
|
49249
49285
|
export declare interface JsonApiVisualizationObjectOutRelationshipsLabels {
|
|
49250
49286
|
/**
|
|
49251
49287
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -49275,7 +49311,7 @@ export declare interface JsonApiVisualizationObjectOutWithLinks {
|
|
|
49275
49311
|
* API identifier of an object
|
|
49276
49312
|
*/
|
|
49277
49313
|
id: string;
|
|
49278
|
-
meta?:
|
|
49314
|
+
meta?: JsonApiDatasetOutMeta;
|
|
49279
49315
|
attributes: JsonApiVisualizationObjectOutAttributes;
|
|
49280
49316
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
49281
49317
|
links?: ObjectLinks;
|
|
@@ -49324,7 +49360,7 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
49324
49360
|
* API identifier of an object
|
|
49325
49361
|
*/
|
|
49326
49362
|
id?: string;
|
|
49327
|
-
attributes:
|
|
49363
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
49328
49364
|
}
|
|
49329
49365
|
|
|
49330
49366
|
export declare interface JsonApiVisualizationObjectPostOptionalIdDocument {
|
|
@@ -49349,50 +49385,14 @@ export declare interface JsonApiWorkspaceAutomationOut {
|
|
|
49349
49385
|
* API identifier of an object
|
|
49350
49386
|
*/
|
|
49351
49387
|
id: string;
|
|
49352
|
-
attributes
|
|
49353
|
-
relationships?:
|
|
49354
|
-
}
|
|
49355
|
-
|
|
49356
|
-
export declare interface JsonApiWorkspaceAutomationOutAttributes {
|
|
49357
|
-
/**
|
|
49358
|
-
* ID of the workspace to which the automation belongs.
|
|
49359
|
-
*/
|
|
49360
|
-
workspaceId: string;
|
|
49361
|
-
title?: string;
|
|
49362
|
-
description?: string;
|
|
49363
|
-
tags?: Array<string>;
|
|
49364
|
-
areRelationsValid?: boolean;
|
|
49365
|
-
/**
|
|
49366
|
-
* Additional details to be included in the automated message.
|
|
49367
|
-
*/
|
|
49368
|
-
details?: object;
|
|
49369
|
-
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
49370
|
-
/**
|
|
49371
|
-
* Current state of the automation.
|
|
49372
|
-
*/
|
|
49373
|
-
state?: JsonApiWorkspaceAutomationOutAttributesStateEnum;
|
|
49374
|
-
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
49375
|
-
alert?: JsonApiAutomationInAttributesAlert;
|
|
49376
|
-
tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
|
|
49377
|
-
visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
|
|
49378
|
-
imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
|
|
49379
|
-
rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
|
|
49380
|
-
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
|
|
49381
|
-
dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
|
|
49382
|
-
/**
|
|
49383
|
-
* External recipients of the automation action results.
|
|
49384
|
-
*/
|
|
49385
|
-
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
|
|
49386
|
-
createdAt?: string;
|
|
49387
|
-
modifiedAt?: string;
|
|
49388
|
+
attributes?: JsonApiAutomationOutAttributes;
|
|
49389
|
+
relationships?: JsonApiWorkspaceAutomationOutRelationships;
|
|
49388
49390
|
}
|
|
49389
49391
|
|
|
49390
|
-
|
|
49391
|
-
|
|
49392
|
-
|
|
49393
|
-
|
|
49394
|
-
|
|
49395
|
-
export declare type JsonApiWorkspaceAutomationOutAttributesStateEnum = (typeof JsonApiWorkspaceAutomationOutAttributesStateEnum)[keyof typeof JsonApiWorkspaceAutomationOutAttributesStateEnum];
|
|
49392
|
+
/**
|
|
49393
|
+
* @type JsonApiWorkspaceAutomationOutIncludes
|
|
49394
|
+
*/
|
|
49395
|
+
export declare type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiAutomationResultOutWithLinks | JsonApiExportDefinitionOutWithLinks | JsonApiNotificationChannelOutWithLinks | JsonApiUserIdentifierOutWithLinks | JsonApiUserOutWithLinks | JsonApiWorkspaceOutWithLinks;
|
|
49396
49396
|
|
|
49397
49397
|
/**
|
|
49398
49398
|
* A JSON:API document with a list of resources
|
|
@@ -49400,15 +49400,22 @@ export declare type JsonApiWorkspaceAutomationOutAttributesStateEnum = (typeof J
|
|
|
49400
49400
|
export declare interface JsonApiWorkspaceAutomationOutList {
|
|
49401
49401
|
data: Array<JsonApiWorkspaceAutomationOutWithLinks>;
|
|
49402
49402
|
links?: ListLinks;
|
|
49403
|
-
meta?:
|
|
49403
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
49404
49404
|
/**
|
|
49405
49405
|
* Included resources
|
|
49406
49406
|
*/
|
|
49407
|
-
included?: Array<
|
|
49407
|
+
included?: Array<JsonApiWorkspaceAutomationOutIncludes>;
|
|
49408
49408
|
}
|
|
49409
49409
|
|
|
49410
|
-
export declare interface
|
|
49411
|
-
|
|
49410
|
+
export declare interface JsonApiWorkspaceAutomationOutRelationships {
|
|
49411
|
+
workspace?: JsonApiWorkspaceOutRelationshipsParent;
|
|
49412
|
+
notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
|
|
49413
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
49414
|
+
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
49415
|
+
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
49416
|
+
exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
|
|
49417
|
+
recipients?: JsonApiAutomationOutRelationshipsRecipients;
|
|
49418
|
+
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
49412
49419
|
}
|
|
49413
49420
|
|
|
49414
49421
|
export declare const JsonApiWorkspaceAutomationOutTypeEnum: {
|
|
@@ -49426,8 +49433,8 @@ export declare interface JsonApiWorkspaceAutomationOutWithLinks {
|
|
|
49426
49433
|
* API identifier of an object
|
|
49427
49434
|
*/
|
|
49428
49435
|
id: string;
|
|
49429
|
-
attributes
|
|
49430
|
-
relationships?:
|
|
49436
|
+
attributes?: JsonApiAutomationOutAttributes;
|
|
49437
|
+
relationships?: JsonApiWorkspaceAutomationOutRelationships;
|
|
49431
49438
|
links?: ObjectLinks;
|
|
49432
49439
|
}
|
|
49433
49440
|
|
|
@@ -49489,7 +49496,7 @@ export declare interface JsonApiWorkspaceDataFilterOut {
|
|
|
49489
49496
|
* API identifier of an object
|
|
49490
49497
|
*/
|
|
49491
49498
|
id: string;
|
|
49492
|
-
meta?:
|
|
49499
|
+
meta?: JsonApiDatasetOutMeta;
|
|
49493
49500
|
attributes?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
49494
49501
|
relationships?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
49495
49502
|
}
|
|
@@ -49515,7 +49522,7 @@ export declare interface JsonApiWorkspaceDataFilterOutDocument {
|
|
|
49515
49522
|
export declare interface JsonApiWorkspaceDataFilterOutList {
|
|
49516
49523
|
data: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
49517
49524
|
links?: ListLinks;
|
|
49518
|
-
meta?:
|
|
49525
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
49519
49526
|
/**
|
|
49520
49527
|
* Included resources
|
|
49521
49528
|
*/
|
|
@@ -49548,7 +49555,7 @@ export declare interface JsonApiWorkspaceDataFilterOutWithLinks {
|
|
|
49548
49555
|
* API identifier of an object
|
|
49549
49556
|
*/
|
|
49550
49557
|
id: string;
|
|
49551
|
-
meta?:
|
|
49558
|
+
meta?: JsonApiDatasetOutMeta;
|
|
49552
49559
|
attributes?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
49553
49560
|
relationships?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
49554
49561
|
links?: ObjectLinks;
|
|
@@ -49598,28 +49605,14 @@ export declare interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
49598
49605
|
* API identifier of an object
|
|
49599
49606
|
*/
|
|
49600
49607
|
id: string;
|
|
49601
|
-
attributes?:
|
|
49602
|
-
relationships?:
|
|
49603
|
-
}
|
|
49604
|
-
|
|
49605
|
-
export declare interface JsonApiWorkspaceDataFilterSettingInAttributes {
|
|
49606
|
-
title?: string;
|
|
49607
|
-
description?: string;
|
|
49608
|
-
filterValues?: Array<string>;
|
|
49608
|
+
attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
49609
|
+
relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
49609
49610
|
}
|
|
49610
49611
|
|
|
49611
49612
|
export declare interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
49612
49613
|
data: JsonApiWorkspaceDataFilterSettingIn;
|
|
49613
49614
|
}
|
|
49614
49615
|
|
|
49615
|
-
export declare interface JsonApiWorkspaceDataFilterSettingInRelationships {
|
|
49616
|
-
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
|
|
49617
|
-
}
|
|
49618
|
-
|
|
49619
|
-
export declare interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
|
|
49620
|
-
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
49621
|
-
}
|
|
49622
|
-
|
|
49623
49616
|
export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
|
|
49624
49617
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
49625
49618
|
};
|
|
@@ -49652,9 +49645,15 @@ export declare interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
49652
49645
|
* API identifier of an object
|
|
49653
49646
|
*/
|
|
49654
49647
|
id: string;
|
|
49655
|
-
meta?:
|
|
49656
|
-
attributes?:
|
|
49657
|
-
relationships?:
|
|
49648
|
+
meta?: JsonApiDatasetOutMeta;
|
|
49649
|
+
attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
49650
|
+
relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
49651
|
+
}
|
|
49652
|
+
|
|
49653
|
+
export declare interface JsonApiWorkspaceDataFilterSettingOutAttributes {
|
|
49654
|
+
title?: string;
|
|
49655
|
+
description?: string;
|
|
49656
|
+
filterValues?: Array<string>;
|
|
49658
49657
|
}
|
|
49659
49658
|
|
|
49660
49659
|
export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
@@ -49672,13 +49671,21 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
|
49672
49671
|
export declare interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
49673
49672
|
data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
|
|
49674
49673
|
links?: ListLinks;
|
|
49675
|
-
meta?:
|
|
49674
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
49676
49675
|
/**
|
|
49677
49676
|
* Included resources
|
|
49678
49677
|
*/
|
|
49679
49678
|
included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
49680
49679
|
}
|
|
49681
49680
|
|
|
49681
|
+
export declare interface JsonApiWorkspaceDataFilterSettingOutRelationships {
|
|
49682
|
+
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
|
|
49683
|
+
}
|
|
49684
|
+
|
|
49685
|
+
export declare interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
|
|
49686
|
+
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
49687
|
+
}
|
|
49688
|
+
|
|
49682
49689
|
export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
|
|
49683
49690
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
49684
49691
|
};
|
|
@@ -49694,9 +49701,9 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
49694
49701
|
* API identifier of an object
|
|
49695
49702
|
*/
|
|
49696
49703
|
id: string;
|
|
49697
|
-
meta?:
|
|
49698
|
-
attributes?:
|
|
49699
|
-
relationships?:
|
|
49704
|
+
meta?: JsonApiDatasetOutMeta;
|
|
49705
|
+
attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
49706
|
+
relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
49700
49707
|
links?: ObjectLinks;
|
|
49701
49708
|
}
|
|
49702
49709
|
|
|
@@ -49718,8 +49725,8 @@ export declare interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
49718
49725
|
* API identifier of an object
|
|
49719
49726
|
*/
|
|
49720
49727
|
id: string;
|
|
49721
|
-
attributes?:
|
|
49722
|
-
relationships?:
|
|
49728
|
+
attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
49729
|
+
relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
49723
49730
|
}
|
|
49724
49731
|
|
|
49725
49732
|
export declare interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
@@ -49744,8 +49751,8 @@ export declare interface JsonApiWorkspaceIn {
|
|
|
49744
49751
|
* API identifier of an object
|
|
49745
49752
|
*/
|
|
49746
49753
|
id: string;
|
|
49747
|
-
attributes?:
|
|
49748
|
-
relationships?:
|
|
49754
|
+
attributes?: JsonApiWorkspaceOutAttributes;
|
|
49755
|
+
relationships?: JsonApiWorkspaceOutRelationships;
|
|
49749
49756
|
}
|
|
49750
49757
|
|
|
49751
49758
|
export declare interface JsonApiWorkspaceInDocument {
|
|
@@ -49785,8 +49792,42 @@ export declare interface JsonApiWorkspaceOut {
|
|
|
49785
49792
|
*/
|
|
49786
49793
|
id: string;
|
|
49787
49794
|
meta?: JsonApiWorkspaceOutMeta;
|
|
49788
|
-
attributes?:
|
|
49789
|
-
relationships?:
|
|
49795
|
+
attributes?: JsonApiWorkspaceOutAttributes;
|
|
49796
|
+
relationships?: JsonApiWorkspaceOutRelationships;
|
|
49797
|
+
}
|
|
49798
|
+
|
|
49799
|
+
export declare interface JsonApiWorkspaceOutAttributes {
|
|
49800
|
+
name?: string | null;
|
|
49801
|
+
/**
|
|
49802
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
49803
|
+
* @deprecated
|
|
49804
|
+
*/
|
|
49805
|
+
earlyAccess?: string | null;
|
|
49806
|
+
/**
|
|
49807
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
49808
|
+
*/
|
|
49809
|
+
earlyAccessValues?: Array<string> | null;
|
|
49810
|
+
description?: string | null;
|
|
49811
|
+
/**
|
|
49812
|
+
* Custom prefix of entity identifiers in workspace
|
|
49813
|
+
*/
|
|
49814
|
+
prefix?: string | null;
|
|
49815
|
+
cacheExtraLimit?: number;
|
|
49816
|
+
dataSource?: JsonApiWorkspaceOutAttributesDataSource;
|
|
49817
|
+
}
|
|
49818
|
+
|
|
49819
|
+
/**
|
|
49820
|
+
* The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
|
|
49821
|
+
*/
|
|
49822
|
+
export declare interface JsonApiWorkspaceOutAttributesDataSource {
|
|
49823
|
+
/**
|
|
49824
|
+
* The ID of the used data source.
|
|
49825
|
+
*/
|
|
49826
|
+
id: string;
|
|
49827
|
+
/**
|
|
49828
|
+
* The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
|
|
49829
|
+
*/
|
|
49830
|
+
schemaPath?: Array<string>;
|
|
49790
49831
|
}
|
|
49791
49832
|
|
|
49792
49833
|
export declare interface JsonApiWorkspaceOutDocument {
|
|
@@ -49804,7 +49845,7 @@ export declare interface JsonApiWorkspaceOutDocument {
|
|
|
49804
49845
|
export declare interface JsonApiWorkspaceOutList {
|
|
49805
49846
|
data: Array<JsonApiWorkspaceOutWithLinks>;
|
|
49806
49847
|
links?: ListLinks;
|
|
49807
|
-
meta?:
|
|
49848
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
49808
49849
|
/**
|
|
49809
49850
|
* Included resources
|
|
49810
49851
|
*/
|
|
@@ -49864,6 +49905,14 @@ export declare const JsonApiWorkspaceOutMetaPermissionsEnum: {
|
|
|
49864
49905
|
|
|
49865
49906
|
export declare type JsonApiWorkspaceOutMetaPermissionsEnum = (typeof JsonApiWorkspaceOutMetaPermissionsEnum)[keyof typeof JsonApiWorkspaceOutMetaPermissionsEnum];
|
|
49866
49907
|
|
|
49908
|
+
export declare interface JsonApiWorkspaceOutRelationships {
|
|
49909
|
+
parent?: JsonApiWorkspaceOutRelationshipsParent;
|
|
49910
|
+
}
|
|
49911
|
+
|
|
49912
|
+
export declare interface JsonApiWorkspaceOutRelationshipsParent {
|
|
49913
|
+
data: JsonApiWorkspaceLinkage | null;
|
|
49914
|
+
}
|
|
49915
|
+
|
|
49867
49916
|
export declare const JsonApiWorkspaceOutTypeEnum: {
|
|
49868
49917
|
readonly WORKSPACE: "workspace";
|
|
49869
49918
|
};
|
|
@@ -49880,8 +49929,8 @@ export declare interface JsonApiWorkspaceOutWithLinks {
|
|
|
49880
49929
|
*/
|
|
49881
49930
|
id: string;
|
|
49882
49931
|
meta?: JsonApiWorkspaceOutMeta;
|
|
49883
|
-
attributes?:
|
|
49884
|
-
relationships?:
|
|
49932
|
+
attributes?: JsonApiWorkspaceOutAttributes;
|
|
49933
|
+
relationships?: JsonApiWorkspaceOutRelationships;
|
|
49885
49934
|
links?: ObjectLinks;
|
|
49886
49935
|
}
|
|
49887
49936
|
|
|
@@ -49903,86 +49952,70 @@ export declare interface JsonApiWorkspacePatch {
|
|
|
49903
49952
|
* API identifier of an object
|
|
49904
49953
|
*/
|
|
49905
49954
|
id: string;
|
|
49906
|
-
attributes?:
|
|
49907
|
-
relationships?:
|
|
49955
|
+
attributes?: JsonApiWorkspaceOutAttributes;
|
|
49956
|
+
relationships?: JsonApiWorkspaceOutRelationships;
|
|
49908
49957
|
}
|
|
49909
49958
|
|
|
49910
|
-
export declare interface
|
|
49911
|
-
|
|
49912
|
-
/**
|
|
49913
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
49914
|
-
* @deprecated
|
|
49915
|
-
*/
|
|
49916
|
-
earlyAccess?: string | null;
|
|
49917
|
-
/**
|
|
49918
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
49919
|
-
*/
|
|
49920
|
-
earlyAccessValues?: Array<string> | null;
|
|
49921
|
-
description?: string | null;
|
|
49922
|
-
/**
|
|
49923
|
-
* Custom prefix of entity identifiers in workspace
|
|
49924
|
-
*/
|
|
49925
|
-
prefix?: string | null;
|
|
49926
|
-
cacheExtraLimit?: number;
|
|
49927
|
-
dataSource?: JsonApiWorkspacePatchAttributesDataSource;
|
|
49959
|
+
export declare interface JsonApiWorkspacePatchDocument {
|
|
49960
|
+
data: JsonApiWorkspacePatch;
|
|
49928
49961
|
}
|
|
49929
49962
|
|
|
49963
|
+
export declare const JsonApiWorkspacePatchTypeEnum: {
|
|
49964
|
+
readonly WORKSPACE: "workspace";
|
|
49965
|
+
};
|
|
49966
|
+
|
|
49967
|
+
export declare type JsonApiWorkspacePatchTypeEnum = (typeof JsonApiWorkspacePatchTypeEnum)[keyof typeof JsonApiWorkspacePatchTypeEnum];
|
|
49968
|
+
|
|
49930
49969
|
/**
|
|
49931
|
-
*
|
|
49970
|
+
* JSON:API representation of workspaceSetting entity.
|
|
49932
49971
|
*/
|
|
49933
|
-
export declare interface
|
|
49972
|
+
export declare interface JsonApiWorkspaceSettingIn {
|
|
49934
49973
|
/**
|
|
49935
|
-
*
|
|
49974
|
+
* Object type
|
|
49936
49975
|
*/
|
|
49937
|
-
|
|
49976
|
+
type: JsonApiWorkspaceSettingInTypeEnum;
|
|
49938
49977
|
/**
|
|
49939
|
-
*
|
|
49978
|
+
* API identifier of an object
|
|
49940
49979
|
*/
|
|
49941
|
-
|
|
49942
|
-
|
|
49943
|
-
|
|
49944
|
-
export declare interface JsonApiWorkspacePatchDocument {
|
|
49945
|
-
data: JsonApiWorkspacePatch;
|
|
49946
|
-
}
|
|
49947
|
-
|
|
49948
|
-
export declare interface JsonApiWorkspacePatchRelationships {
|
|
49949
|
-
parent?: JsonApiWorkspacePatchRelationshipsParent;
|
|
49980
|
+
id: string;
|
|
49981
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
49950
49982
|
}
|
|
49951
49983
|
|
|
49952
|
-
export declare interface
|
|
49953
|
-
data:
|
|
49984
|
+
export declare interface JsonApiWorkspaceSettingInDocument {
|
|
49985
|
+
data: JsonApiWorkspaceSettingIn;
|
|
49954
49986
|
}
|
|
49955
49987
|
|
|
49956
|
-
export declare const
|
|
49957
|
-
readonly
|
|
49988
|
+
export declare const JsonApiWorkspaceSettingInTypeEnum: {
|
|
49989
|
+
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
49958
49990
|
};
|
|
49959
49991
|
|
|
49960
|
-
export declare type
|
|
49992
|
+
export declare type JsonApiWorkspaceSettingInTypeEnum = (typeof JsonApiWorkspaceSettingInTypeEnum)[keyof typeof JsonApiWorkspaceSettingInTypeEnum];
|
|
49961
49993
|
|
|
49962
49994
|
/**
|
|
49963
49995
|
* JSON:API representation of workspaceSetting entity.
|
|
49964
49996
|
*/
|
|
49965
|
-
export declare interface
|
|
49997
|
+
export declare interface JsonApiWorkspaceSettingOut {
|
|
49966
49998
|
/**
|
|
49967
49999
|
* Object type
|
|
49968
50000
|
*/
|
|
49969
|
-
type:
|
|
50001
|
+
type: JsonApiWorkspaceSettingOutTypeEnum;
|
|
49970
50002
|
/**
|
|
49971
50003
|
* API identifier of an object
|
|
49972
50004
|
*/
|
|
49973
50005
|
id: string;
|
|
49974
|
-
|
|
50006
|
+
meta?: JsonApiDatasetOutMeta;
|
|
50007
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
49975
50008
|
}
|
|
49976
50009
|
|
|
49977
|
-
export declare interface
|
|
50010
|
+
export declare interface JsonApiWorkspaceSettingOutAttributes {
|
|
49978
50011
|
/**
|
|
49979
50012
|
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
49980
50013
|
*/
|
|
49981
50014
|
content?: object;
|
|
49982
|
-
type?:
|
|
50015
|
+
type?: JsonApiWorkspaceSettingOutAttributesTypeEnum;
|
|
49983
50016
|
}
|
|
49984
50017
|
|
|
49985
|
-
export declare const
|
|
50018
|
+
export declare const JsonApiWorkspaceSettingOutAttributesTypeEnum: {
|
|
49986
50019
|
readonly TIMEZONE: "TIMEZONE";
|
|
49987
50020
|
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
49988
50021
|
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
@@ -50013,33 +50046,7 @@ export declare const JsonApiWorkspaceSettingInAttributesTypeEnum: {
|
|
|
50013
50046
|
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
50014
50047
|
};
|
|
50015
50048
|
|
|
50016
|
-
export declare type
|
|
50017
|
-
|
|
50018
|
-
export declare interface JsonApiWorkspaceSettingInDocument {
|
|
50019
|
-
data: JsonApiWorkspaceSettingIn;
|
|
50020
|
-
}
|
|
50021
|
-
|
|
50022
|
-
export declare const JsonApiWorkspaceSettingInTypeEnum: {
|
|
50023
|
-
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
50024
|
-
};
|
|
50025
|
-
|
|
50026
|
-
export declare type JsonApiWorkspaceSettingInTypeEnum = (typeof JsonApiWorkspaceSettingInTypeEnum)[keyof typeof JsonApiWorkspaceSettingInTypeEnum];
|
|
50027
|
-
|
|
50028
|
-
/**
|
|
50029
|
-
* JSON:API representation of workspaceSetting entity.
|
|
50030
|
-
*/
|
|
50031
|
-
export declare interface JsonApiWorkspaceSettingOut {
|
|
50032
|
-
/**
|
|
50033
|
-
* Object type
|
|
50034
|
-
*/
|
|
50035
|
-
type: JsonApiWorkspaceSettingOutTypeEnum;
|
|
50036
|
-
/**
|
|
50037
|
-
* API identifier of an object
|
|
50038
|
-
*/
|
|
50039
|
-
id: string;
|
|
50040
|
-
meta?: JsonApiVisualizationObjectOutMeta;
|
|
50041
|
-
attributes?: JsonApiWorkspaceSettingInAttributes;
|
|
50042
|
-
}
|
|
50049
|
+
export declare type JsonApiWorkspaceSettingOutAttributesTypeEnum = (typeof JsonApiWorkspaceSettingOutAttributesTypeEnum)[keyof typeof JsonApiWorkspaceSettingOutAttributesTypeEnum];
|
|
50043
50050
|
|
|
50044
50051
|
export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
50045
50052
|
data: JsonApiWorkspaceSettingOut;
|
|
@@ -50052,7 +50059,7 @@ export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
|
50052
50059
|
export declare interface JsonApiWorkspaceSettingOutList {
|
|
50053
50060
|
data: Array<JsonApiWorkspaceSettingOutWithLinks>;
|
|
50054
50061
|
links?: ListLinks;
|
|
50055
|
-
meta?:
|
|
50062
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
50056
50063
|
}
|
|
50057
50064
|
|
|
50058
50065
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
@@ -50070,8 +50077,8 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
50070
50077
|
* API identifier of an object
|
|
50071
50078
|
*/
|
|
50072
50079
|
id: string;
|
|
50073
|
-
meta?:
|
|
50074
|
-
attributes?:
|
|
50080
|
+
meta?: JsonApiDatasetOutMeta;
|
|
50081
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
50075
50082
|
links?: ObjectLinks;
|
|
50076
50083
|
}
|
|
50077
50084
|
|
|
@@ -50093,7 +50100,7 @@ export declare interface JsonApiWorkspaceSettingPatch {
|
|
|
50093
50100
|
* API identifier of an object
|
|
50094
50101
|
*/
|
|
50095
50102
|
id: string;
|
|
50096
|
-
attributes?:
|
|
50103
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
50097
50104
|
}
|
|
50098
50105
|
|
|
50099
50106
|
export declare interface JsonApiWorkspaceSettingPatchDocument {
|
|
@@ -50118,7 +50125,7 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
50118
50125
|
* API identifier of an object
|
|
50119
50126
|
*/
|
|
50120
50127
|
id?: string;
|
|
50121
|
-
attributes?:
|
|
50128
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
50122
50129
|
}
|
|
50123
50130
|
|
|
50124
50131
|
export declare interface JsonApiWorkspaceSettingPostOptionalIdDocument {
|
|
@@ -66292,7 +66299,7 @@ export declare class RawExportExport extends ExportBaseAPI implements RawExportE
|
|
|
66292
66299
|
* @throws {RequiredError}
|
|
66293
66300
|
* @memberof RawExportExport
|
|
66294
66301
|
*/
|
|
66295
|
-
getRawExport(requestParameters: RawExportExportGetRawExportRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<
|
|
66302
|
+
getRawExport(requestParameters: RawExportExportGetRawExportRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<File, any>>;
|
|
66296
66303
|
}
|
|
66297
66304
|
|
|
66298
66305
|
/**
|
|
@@ -66360,7 +66367,7 @@ export declare const RawExportExportFactory: (configuration?: ExportConfiguratio
|
|
|
66360
66367
|
* @param {*} [options] Override http request option.
|
|
66361
66368
|
* @throws {RequiredError}
|
|
66362
66369
|
*/
|
|
66363
|
-
getRawExport(requestParameters: RawExportExportGetRawExportRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
66370
|
+
getRawExport(requestParameters: RawExportExportGetRawExportRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
66364
66371
|
};
|
|
66365
66372
|
|
|
66366
66373
|
/**
|
|
@@ -66385,7 +66392,7 @@ export declare const RawExportExportFp: (configuration?: ExportConfiguration) =>
|
|
|
66385
66392
|
* @param {*} [options] Override http request option.
|
|
66386
66393
|
* @throws {RequiredError}
|
|
66387
66394
|
*/
|
|
66388
|
-
getRawExport(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
66395
|
+
getRawExport(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
66389
66396
|
};
|
|
66390
66397
|
|
|
66391
66398
|
/**
|
|
@@ -66431,7 +66438,7 @@ export declare interface RawExportExportInterface {
|
|
|
66431
66438
|
* @throws {RequiredError}
|
|
66432
66439
|
* @memberof RawExportExportInterface
|
|
66433
66440
|
*/
|
|
66434
|
-
getRawExport(requestParameters: RawExportExportGetRawExportRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
66441
|
+
getRawExport(requestParameters: RawExportExportGetRawExportRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
66435
66442
|
}
|
|
66436
66443
|
|
|
66437
66444
|
/**
|
|
@@ -67533,26 +67540,58 @@ export declare interface Settings {
|
|
|
67533
67540
|
mergeHeaders?: boolean;
|
|
67534
67541
|
/**
|
|
67535
67542
|
* Print applied filters on top of the document. (PDF/HTML when visualizationObject is given)
|
|
67543
|
+
* @deprecated
|
|
67536
67544
|
*/
|
|
67537
67545
|
showFilters?: boolean;
|
|
67538
67546
|
/**
|
|
67539
67547
|
* Page size and orientation. (PDF)
|
|
67548
|
+
* @deprecated
|
|
67540
67549
|
*/
|
|
67541
67550
|
pdfPageSize?: string;
|
|
67542
67551
|
/**
|
|
67543
67552
|
* Custom CSS styles for the table. (PDF, HTML)
|
|
67553
|
+
* @deprecated
|
|
67544
67554
|
*/
|
|
67545
67555
|
pdfTableStyle?: Array<PdfTableStyle>;
|
|
67546
67556
|
/**
|
|
67547
67557
|
* Top left header content. (PDF)
|
|
67558
|
+
* @deprecated
|
|
67548
67559
|
*/
|
|
67549
67560
|
pdfTopLeftContent?: string;
|
|
67550
67561
|
/**
|
|
67551
67562
|
* Top right header content. (PDF)
|
|
67563
|
+
* @deprecated
|
|
67552
67564
|
*/
|
|
67553
67565
|
pdfTopRightContent?: string;
|
|
67566
|
+
/**
|
|
67567
|
+
* Set page size. (PDF)
|
|
67568
|
+
*/
|
|
67569
|
+
pageSize?: SettingsPageSizeEnum;
|
|
67570
|
+
/**
|
|
67571
|
+
* Set page orientation. (PDF)
|
|
67572
|
+
*/
|
|
67573
|
+
pageOrientation?: SettingsPageOrientationEnum;
|
|
67574
|
+
/**
|
|
67575
|
+
* Show info page with export information.
|
|
67576
|
+
*/
|
|
67577
|
+
showInfoPage?: boolean;
|
|
67554
67578
|
}
|
|
67555
67579
|
|
|
67580
|
+
export declare const SettingsPageOrientationEnum: {
|
|
67581
|
+
readonly PORTRAIT: "PORTRAIT";
|
|
67582
|
+
readonly LANDSCAPE: "LANDSCAPE";
|
|
67583
|
+
};
|
|
67584
|
+
|
|
67585
|
+
export declare type SettingsPageOrientationEnum = (typeof SettingsPageOrientationEnum)[keyof typeof SettingsPageOrientationEnum];
|
|
67586
|
+
|
|
67587
|
+
export declare const SettingsPageSizeEnum: {
|
|
67588
|
+
readonly A3: "A3";
|
|
67589
|
+
readonly A4: "A4";
|
|
67590
|
+
readonly LETTER: "LETTER";
|
|
67591
|
+
};
|
|
67592
|
+
|
|
67593
|
+
export declare type SettingsPageSizeEnum = (typeof SettingsPageSizeEnum)[keyof typeof SettingsPageSizeEnum];
|
|
67594
|
+
|
|
67556
67595
|
/**
|
|
67557
67596
|
* Metric defined by referencing a MAQL metric or an LDM fact object with aggregation.
|
|
67558
67597
|
*/
|
|
@@ -67618,7 +67657,7 @@ export declare class SlidesExportExport extends ExportBaseAPI implements SlidesE
|
|
|
67618
67657
|
* @throws {RequiredError}
|
|
67619
67658
|
* @memberof SlidesExportExport
|
|
67620
67659
|
*/
|
|
67621
|
-
getSlidesExport(requestParameters: SlidesExportExportGetSlidesExportRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<
|
|
67660
|
+
getSlidesExport(requestParameters: SlidesExportExportGetSlidesExportRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<File, any>>;
|
|
67622
67661
|
/**
|
|
67623
67662
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. This endpoint serves as a cache for user-defined metadata of the export for the front end UI to retrieve it, if one was created using the POST ../export/slides endpoint. The metadata structure is not verified.
|
|
67624
67663
|
* @summary (EXPERIMENTAL) Retrieve metadata context
|
|
@@ -67711,7 +67750,7 @@ export declare const SlidesExportExportFactory: (configuration?: ExportConfigura
|
|
|
67711
67750
|
* @param {*} [options] Override http request option.
|
|
67712
67751
|
* @throws {RequiredError}
|
|
67713
67752
|
*/
|
|
67714
|
-
getSlidesExport(requestParameters: SlidesExportExportGetSlidesExportRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
67753
|
+
getSlidesExport(requestParameters: SlidesExportExportGetSlidesExportRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
67715
67754
|
/**
|
|
67716
67755
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. This endpoint serves as a cache for user-defined metadata of the export for the front end UI to retrieve it, if one was created using the POST ../export/slides endpoint. The metadata structure is not verified.
|
|
67717
67756
|
* @summary (EXPERIMENTAL) Retrieve metadata context
|
|
@@ -67745,7 +67784,7 @@ export declare const SlidesExportExportFp: (configuration?: ExportConfiguration)
|
|
|
67745
67784
|
* @param {*} [options] Override http request option.
|
|
67746
67785
|
* @throws {RequiredError}
|
|
67747
67786
|
*/
|
|
67748
|
-
getSlidesExport(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
67787
|
+
getSlidesExport(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
67749
67788
|
/**
|
|
67750
67789
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. This endpoint serves as a cache for user-defined metadata of the export for the front end UI to retrieve it, if one was created using the POST ../export/slides endpoint. The metadata structure is not verified.
|
|
67751
67790
|
* @summary (EXPERIMENTAL) Retrieve metadata context
|
|
@@ -67820,7 +67859,7 @@ export declare interface SlidesExportExportInterface {
|
|
|
67820
67859
|
* @throws {RequiredError}
|
|
67821
67860
|
* @memberof SlidesExportExportInterface
|
|
67822
67861
|
*/
|
|
67823
|
-
getSlidesExport(requestParameters: SlidesExportExportGetSlidesExportRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
67862
|
+
getSlidesExport(requestParameters: SlidesExportExportGetSlidesExportRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
67824
67863
|
/**
|
|
67825
67864
|
* Note: This API is an experimental and is going to change. Please, use it accordingly. This endpoint serves as a cache for user-defined metadata of the export for the front end UI to retrieve it, if one was created using the POST ../export/slides endpoint. The metadata structure is not verified.
|
|
67826
67865
|
* @summary (EXPERIMENTAL) Retrieve metadata context
|
|
@@ -68125,7 +68164,7 @@ export declare class TabularExportExport extends ExportBaseAPI implements Tabula
|
|
|
68125
68164
|
* @throws {RequiredError}
|
|
68126
68165
|
* @memberof TabularExportExport
|
|
68127
68166
|
*/
|
|
68128
|
-
getTabularExport(requestParameters: TabularExportExportGetTabularExportRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<
|
|
68167
|
+
getTabularExport(requestParameters: TabularExportExportGetTabularExportRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<File, any>>;
|
|
68129
68168
|
}
|
|
68130
68169
|
|
|
68131
68170
|
/**
|
|
@@ -68237,7 +68276,7 @@ export declare const TabularExportExportFactory: (configuration?: ExportConfigur
|
|
|
68237
68276
|
* @param {*} [options] Override http request option.
|
|
68238
68277
|
* @throws {RequiredError}
|
|
68239
68278
|
*/
|
|
68240
|
-
getTabularExport(requestParameters: TabularExportExportGetTabularExportRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
68279
|
+
getTabularExport(requestParameters: TabularExportExportGetTabularExportRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
68241
68280
|
};
|
|
68242
68281
|
|
|
68243
68282
|
/**
|
|
@@ -68272,7 +68311,7 @@ export declare const TabularExportExportFp: (configuration?: ExportConfiguration
|
|
|
68272
68311
|
* @param {*} [options] Override http request option.
|
|
68273
68312
|
* @throws {RequiredError}
|
|
68274
68313
|
*/
|
|
68275
|
-
getTabularExport(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
68314
|
+
getTabularExport(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
68276
68315
|
};
|
|
68277
68316
|
|
|
68278
68317
|
/**
|
|
@@ -68327,7 +68366,7 @@ export declare interface TabularExportExportInterface {
|
|
|
68327
68366
|
* @throws {RequiredError}
|
|
68328
68367
|
* @memberof TabularExportExportInterface
|
|
68329
68368
|
*/
|
|
68330
|
-
getTabularExport(requestParameters: TabularExportExportGetTabularExportRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
68369
|
+
getTabularExport(requestParameters: TabularExportExportGetTabularExportRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
68331
68370
|
}
|
|
68332
68371
|
|
|
68333
68372
|
/**
|
|
@@ -72984,7 +73023,7 @@ export declare class VisualExportExport extends ExportBaseAPI implements VisualE
|
|
|
72984
73023
|
* @throws {RequiredError}
|
|
72985
73024
|
* @memberof VisualExportExport
|
|
72986
73025
|
*/
|
|
72987
|
-
getExportedFile(requestParameters: VisualExportExportGetExportedFileRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<
|
|
73026
|
+
getExportedFile(requestParameters: VisualExportExportGetExportedFileRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<File, any>>;
|
|
72988
73027
|
/**
|
|
72989
73028
|
* This endpoint serves as a cache for user-defined metadata of the export for the front end UI to retrieve it, if one was created using the POST ../export/visual endpoint. The metadata structure is not verified.
|
|
72990
73029
|
* @summary Retrieve metadata context
|
|
@@ -73077,7 +73116,7 @@ export declare const VisualExportExportFactory: (configuration?: ExportConfigura
|
|
|
73077
73116
|
* @param {*} [options] Override http request option.
|
|
73078
73117
|
* @throws {RequiredError}
|
|
73079
73118
|
*/
|
|
73080
|
-
getExportedFile(requestParameters: VisualExportExportGetExportedFileRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
73119
|
+
getExportedFile(requestParameters: VisualExportExportGetExportedFileRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
73081
73120
|
/**
|
|
73082
73121
|
* This endpoint serves as a cache for user-defined metadata of the export for the front end UI to retrieve it, if one was created using the POST ../export/visual endpoint. The metadata structure is not verified.
|
|
73083
73122
|
* @summary Retrieve metadata context
|
|
@@ -73111,7 +73150,7 @@ export declare const VisualExportExportFp: (configuration?: ExportConfiguration)
|
|
|
73111
73150
|
* @param {*} [options] Override http request option.
|
|
73112
73151
|
* @throws {RequiredError}
|
|
73113
73152
|
*/
|
|
73114
|
-
getExportedFile(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
73153
|
+
getExportedFile(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
73115
73154
|
/**
|
|
73116
73155
|
* This endpoint serves as a cache for user-defined metadata of the export for the front end UI to retrieve it, if one was created using the POST ../export/visual endpoint. The metadata structure is not verified.
|
|
73117
73156
|
* @summary Retrieve metadata context
|
|
@@ -73186,7 +73225,7 @@ export declare interface VisualExportExportInterface {
|
|
|
73186
73225
|
* @throws {RequiredError}
|
|
73187
73226
|
* @memberof VisualExportExportInterface
|
|
73188
73227
|
*/
|
|
73189
|
-
getExportedFile(requestParameters: VisualExportExportGetExportedFileRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
73228
|
+
getExportedFile(requestParameters: VisualExportExportGetExportedFileRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
73190
73229
|
/**
|
|
73191
73230
|
* This endpoint serves as a cache for user-defined metadata of the export for the front end UI to retrieve it, if one was created using the POST ../export/visual endpoint. The metadata structure is not verified.
|
|
73192
73231
|
* @summary Retrieve metadata context
|