@gooddata/api-client-tiger 10.43.0-alpha.1 → 10.43.0-alpha.2
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 +72 -40
- 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/package.json +3 -3
package/esm/__version.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const LIB_VERSION = "10.43.0-alpha.
|
|
1
|
+
export declare const LIB_VERSION = "10.43.0-alpha.2";
|
|
2
2
|
export declare const LIB_DESCRIPTION = "API Client for GoodData Cloud and GoodData.CN";
|
|
3
3
|
export declare const LIB_NAME = "@gooddata/api-client-tiger";
|
|
4
4
|
//# sourceMappingURL=__version.d.ts.map
|
package/esm/__version.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// (C) 2021 GoodData Corporation
|
|
2
2
|
// DO NOT CHANGE THIS FILE, IT IS RE-GENERATED ON EVERY BUILD
|
|
3
|
-
export const LIB_VERSION = "10.43.0-alpha.
|
|
3
|
+
export const LIB_VERSION = "10.43.0-alpha.2";
|
|
4
4
|
export const LIB_DESCRIPTION = "API Client for GoodData Cloud and GoodData.CN";
|
|
5
5
|
export const LIB_NAME = "@gooddata/api-client-tiger";
|
|
6
6
|
//# sourceMappingURL=__version.js.map
|
|
@@ -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
|
/**
|
|
@@ -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
|
|
@@ -66292,7 +66324,7 @@ export declare class RawExportExport extends ExportBaseAPI implements RawExportE
|
|
|
66292
66324
|
* @throws {RequiredError}
|
|
66293
66325
|
* @memberof RawExportExport
|
|
66294
66326
|
*/
|
|
66295
|
-
getRawExport(requestParameters: RawExportExportGetRawExportRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<
|
|
66327
|
+
getRawExport(requestParameters: RawExportExportGetRawExportRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<File, any>>;
|
|
66296
66328
|
}
|
|
66297
66329
|
|
|
66298
66330
|
/**
|
|
@@ -66360,7 +66392,7 @@ export declare const RawExportExportFactory: (configuration?: ExportConfiguratio
|
|
|
66360
66392
|
* @param {*} [options] Override http request option.
|
|
66361
66393
|
* @throws {RequiredError}
|
|
66362
66394
|
*/
|
|
66363
|
-
getRawExport(requestParameters: RawExportExportGetRawExportRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
66395
|
+
getRawExport(requestParameters: RawExportExportGetRawExportRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
66364
66396
|
};
|
|
66365
66397
|
|
|
66366
66398
|
/**
|
|
@@ -66385,7 +66417,7 @@ export declare const RawExportExportFp: (configuration?: ExportConfiguration) =>
|
|
|
66385
66417
|
* @param {*} [options] Override http request option.
|
|
66386
66418
|
* @throws {RequiredError}
|
|
66387
66419
|
*/
|
|
66388
|
-
getRawExport(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
66420
|
+
getRawExport(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
66389
66421
|
};
|
|
66390
66422
|
|
|
66391
66423
|
/**
|
|
@@ -66431,7 +66463,7 @@ export declare interface RawExportExportInterface {
|
|
|
66431
66463
|
* @throws {RequiredError}
|
|
66432
66464
|
* @memberof RawExportExportInterface
|
|
66433
66465
|
*/
|
|
66434
|
-
getRawExport(requestParameters: RawExportExportGetRawExportRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
66466
|
+
getRawExport(requestParameters: RawExportExportGetRawExportRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
66435
66467
|
}
|
|
66436
66468
|
|
|
66437
66469
|
/**
|
|
@@ -67618,7 +67650,7 @@ export declare class SlidesExportExport extends ExportBaseAPI implements SlidesE
|
|
|
67618
67650
|
* @throws {RequiredError}
|
|
67619
67651
|
* @memberof SlidesExportExport
|
|
67620
67652
|
*/
|
|
67621
|
-
getSlidesExport(requestParameters: SlidesExportExportGetSlidesExportRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<
|
|
67653
|
+
getSlidesExport(requestParameters: SlidesExportExportGetSlidesExportRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<File, any>>;
|
|
67622
67654
|
/**
|
|
67623
67655
|
* 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
67656
|
* @summary (EXPERIMENTAL) Retrieve metadata context
|
|
@@ -67711,7 +67743,7 @@ export declare const SlidesExportExportFactory: (configuration?: ExportConfigura
|
|
|
67711
67743
|
* @param {*} [options] Override http request option.
|
|
67712
67744
|
* @throws {RequiredError}
|
|
67713
67745
|
*/
|
|
67714
|
-
getSlidesExport(requestParameters: SlidesExportExportGetSlidesExportRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
67746
|
+
getSlidesExport(requestParameters: SlidesExportExportGetSlidesExportRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
67715
67747
|
/**
|
|
67716
67748
|
* 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
67749
|
* @summary (EXPERIMENTAL) Retrieve metadata context
|
|
@@ -67745,7 +67777,7 @@ export declare const SlidesExportExportFp: (configuration?: ExportConfiguration)
|
|
|
67745
67777
|
* @param {*} [options] Override http request option.
|
|
67746
67778
|
* @throws {RequiredError}
|
|
67747
67779
|
*/
|
|
67748
|
-
getSlidesExport(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
67780
|
+
getSlidesExport(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
67749
67781
|
/**
|
|
67750
67782
|
* 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
67783
|
* @summary (EXPERIMENTAL) Retrieve metadata context
|
|
@@ -67820,7 +67852,7 @@ export declare interface SlidesExportExportInterface {
|
|
|
67820
67852
|
* @throws {RequiredError}
|
|
67821
67853
|
* @memberof SlidesExportExportInterface
|
|
67822
67854
|
*/
|
|
67823
|
-
getSlidesExport(requestParameters: SlidesExportExportGetSlidesExportRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
67855
|
+
getSlidesExport(requestParameters: SlidesExportExportGetSlidesExportRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
67824
67856
|
/**
|
|
67825
67857
|
* 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
67858
|
* @summary (EXPERIMENTAL) Retrieve metadata context
|
|
@@ -68125,7 +68157,7 @@ export declare class TabularExportExport extends ExportBaseAPI implements Tabula
|
|
|
68125
68157
|
* @throws {RequiredError}
|
|
68126
68158
|
* @memberof TabularExportExport
|
|
68127
68159
|
*/
|
|
68128
|
-
getTabularExport(requestParameters: TabularExportExportGetTabularExportRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<
|
|
68160
|
+
getTabularExport(requestParameters: TabularExportExportGetTabularExportRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<File, any>>;
|
|
68129
68161
|
}
|
|
68130
68162
|
|
|
68131
68163
|
/**
|
|
@@ -68237,7 +68269,7 @@ export declare const TabularExportExportFactory: (configuration?: ExportConfigur
|
|
|
68237
68269
|
* @param {*} [options] Override http request option.
|
|
68238
68270
|
* @throws {RequiredError}
|
|
68239
68271
|
*/
|
|
68240
|
-
getTabularExport(requestParameters: TabularExportExportGetTabularExportRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
68272
|
+
getTabularExport(requestParameters: TabularExportExportGetTabularExportRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
68241
68273
|
};
|
|
68242
68274
|
|
|
68243
68275
|
/**
|
|
@@ -68272,7 +68304,7 @@ export declare const TabularExportExportFp: (configuration?: ExportConfiguration
|
|
|
68272
68304
|
* @param {*} [options] Override http request option.
|
|
68273
68305
|
* @throws {RequiredError}
|
|
68274
68306
|
*/
|
|
68275
|
-
getTabularExport(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
68307
|
+
getTabularExport(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
68276
68308
|
};
|
|
68277
68309
|
|
|
68278
68310
|
/**
|
|
@@ -68327,7 +68359,7 @@ export declare interface TabularExportExportInterface {
|
|
|
68327
68359
|
* @throws {RequiredError}
|
|
68328
68360
|
* @memberof TabularExportExportInterface
|
|
68329
68361
|
*/
|
|
68330
|
-
getTabularExport(requestParameters: TabularExportExportGetTabularExportRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
68362
|
+
getTabularExport(requestParameters: TabularExportExportGetTabularExportRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
68331
68363
|
}
|
|
68332
68364
|
|
|
68333
68365
|
/**
|
|
@@ -72984,7 +73016,7 @@ export declare class VisualExportExport extends ExportBaseAPI implements VisualE
|
|
|
72984
73016
|
* @throws {RequiredError}
|
|
72985
73017
|
* @memberof VisualExportExport
|
|
72986
73018
|
*/
|
|
72987
|
-
getExportedFile(requestParameters: VisualExportExportGetExportedFileRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<
|
|
73019
|
+
getExportedFile(requestParameters: VisualExportExportGetExportedFileRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<File, any>>;
|
|
72988
73020
|
/**
|
|
72989
73021
|
* 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
73022
|
* @summary Retrieve metadata context
|
|
@@ -73077,7 +73109,7 @@ export declare const VisualExportExportFactory: (configuration?: ExportConfigura
|
|
|
73077
73109
|
* @param {*} [options] Override http request option.
|
|
73078
73110
|
* @throws {RequiredError}
|
|
73079
73111
|
*/
|
|
73080
|
-
getExportedFile(requestParameters: VisualExportExportGetExportedFileRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
73112
|
+
getExportedFile(requestParameters: VisualExportExportGetExportedFileRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
73081
73113
|
/**
|
|
73082
73114
|
* 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
73115
|
* @summary Retrieve metadata context
|
|
@@ -73111,7 +73143,7 @@ export declare const VisualExportExportFp: (configuration?: ExportConfiguration)
|
|
|
73111
73143
|
* @param {*} [options] Override http request option.
|
|
73112
73144
|
* @throws {RequiredError}
|
|
73113
73145
|
*/
|
|
73114
|
-
getExportedFile(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
73146
|
+
getExportedFile(workspaceId: string, exportId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
73115
73147
|
/**
|
|
73116
73148
|
* 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
73149
|
* @summary Retrieve metadata context
|
|
@@ -73186,7 +73218,7 @@ export declare interface VisualExportExportInterface {
|
|
|
73186
73218
|
* @throws {RequiredError}
|
|
73187
73219
|
* @memberof VisualExportExportInterface
|
|
73188
73220
|
*/
|
|
73189
|
-
getExportedFile(requestParameters: VisualExportExportGetExportedFileRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
73221
|
+
getExportedFile(requestParameters: VisualExportExportGetExportedFileRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
73190
73222
|
/**
|
|
73191
73223
|
* 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
73224
|
* @summary Retrieve metadata context
|