@gooddata/api-client-tiger 11.26.0-alpha.1 → 11.26.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 +58768 -58445
- package/esm/generated/afm-rest-api/api.d.ts +26 -26
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +12 -12
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/index.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/index.js.map +1 -1
- package/esm/generated/auth-json-api/index.d.ts.map +1 -1
- package/esm/generated/auth-json-api/index.js.map +1 -1
- package/esm/generated/automation-json-api/index.d.ts.map +1 -1
- package/esm/generated/automation-json-api/index.js.map +1 -1
- package/esm/generated/export-json-api/index.d.ts.map +1 -1
- package/esm/generated/export-json-api/index.js.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +21735 -21450
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +39000 -38848
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/index.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/index.js.map +1 -1
- package/esm/generated/result-json-api/index.d.ts.map +1 -1
- package/esm/generated/result-json-api/index.js.map +1 -1
- package/esm/generated/scan-json-api/index.d.ts.map +1 -1
- package/esm/generated/scan-json-api/index.js.map +1 -1
- package/package.json +5 -5
|
@@ -2485,19 +2485,19 @@ export async function ActionsApiAxiosParamCreator_RetrieveExecutionMetadata(work
|
|
|
2485
2485
|
}
|
|
2486
2486
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
2487
2487
|
/**
|
|
2488
|
-
* Gets a single execution result.
|
|
2488
|
+
* Gets a single execution result. Note that the Arrow File and Arrow Stream content types are currently in BETA.
|
|
2489
2489
|
* @summary Get a single execution result
|
|
2490
2490
|
* @param {string} workspaceId Workspace identifier
|
|
2491
2491
|
* @param {string} resultId Result ID
|
|
2492
|
+
* @param {string} [xGDCCANCELTOKEN]
|
|
2492
2493
|
* @param {Array<number>} [offset] Request page with these offsets. Format is offset=1,2,3,... - one offset for each dimensions in ResultSpec from originating AFM.
|
|
2493
2494
|
* @param {Array<number>} [limit] Return only this number of items. Format is limit=1,2,3,... - one limit for each dimensions in ResultSpec from originating AFM.
|
|
2494
2495
|
* @param {Array<string>} [excludedTotalDimensions] Identifiers of the dimensions where grand total data should not be returned for this request. A grand total will not be returned if all of its totalDimensions are in excludedTotalDimensions.
|
|
2495
|
-
* @param {string} [xGDCCANCELTOKEN]
|
|
2496
2496
|
* @param {*} [options] Override http request option.
|
|
2497
2497
|
* @param {Configuration} [configuration] Optional configuration.
|
|
2498
2498
|
* @throws {RequiredError}
|
|
2499
2499
|
*/
|
|
2500
|
-
export async function ActionsApiAxiosParamCreator_RetrieveResult(workspaceId, resultId, offset, limit, excludedTotalDimensions,
|
|
2500
|
+
export async function ActionsApiAxiosParamCreator_RetrieveResult(workspaceId, resultId, xGDCCANCELTOKEN, offset, limit, excludedTotalDimensions, options = {}, configuration) {
|
|
2501
2501
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
2502
2502
|
assertParamExists('retrieveResult', 'workspaceId', workspaceId);
|
|
2503
2503
|
// verify required parameter 'resultId' is not null or undefined
|
|
@@ -3541,7 +3541,7 @@ export async function ActionsApi_RetrieveExecutionMetadata(axios, basePath, requ
|
|
|
3541
3541
|
}
|
|
3542
3542
|
// ActionsApi Api FP
|
|
3543
3543
|
/**
|
|
3544
|
-
* Gets a single execution result.
|
|
3544
|
+
* Gets a single execution result. Note that the Arrow File and Arrow Stream content types are currently in BETA.
|
|
3545
3545
|
* @summary Get a single execution result
|
|
3546
3546
|
* @param {AxiosInstance} axios Axios instance.
|
|
3547
3547
|
* @param {string} basePath Base path.
|
|
@@ -3551,7 +3551,7 @@ export async function ActionsApi_RetrieveExecutionMetadata(axios, basePath, requ
|
|
|
3551
3551
|
* @throws {RequiredError}
|
|
3552
3552
|
*/
|
|
3553
3553
|
export async function ActionsApi_RetrieveResult(axios, basePath, requestParameters, options, configuration) {
|
|
3554
|
-
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_RetrieveResult(requestParameters.workspaceId, requestParameters.resultId, requestParameters.
|
|
3554
|
+
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_RetrieveResult(requestParameters.workspaceId, requestParameters.resultId, requestParameters.xGDCCANCELTOKEN, requestParameters.offset, requestParameters.limit, requestParameters.excludedTotalDimensions, options || {}, configuration);
|
|
3555
3555
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
3556
3556
|
}
|
|
3557
3557
|
// ActionsApi Api FP
|
|
@@ -4138,7 +4138,7 @@ export class ActionsApi extends BaseAPI {
|
|
|
4138
4138
|
return ActionsApi_RetrieveExecutionMetadata(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
4139
4139
|
}
|
|
4140
4140
|
/**
|
|
4141
|
-
* Gets a single execution result.
|
|
4141
|
+
* Gets a single execution result. Note that the Arrow File and Arrow Stream content types are currently in BETA.
|
|
4142
4142
|
* @summary Get a single execution result
|
|
4143
4143
|
* @param {ActionsApiRetrieveResultRequest} requestParameters Request parameters.
|
|
4144
4144
|
* @param {*} [options] Override http request option.
|
|
@@ -4902,19 +4902,19 @@ export async function ComputationApiAxiosParamCreator_RetrieveExecutionMetadata(
|
|
|
4902
4902
|
}
|
|
4903
4903
|
// ComputationApi FP - ComputationApiAxiosParamCreator
|
|
4904
4904
|
/**
|
|
4905
|
-
* Gets a single execution result.
|
|
4905
|
+
* Gets a single execution result. Note that the Arrow File and Arrow Stream content types are currently in BETA.
|
|
4906
4906
|
* @summary Get a single execution result
|
|
4907
4907
|
* @param {string} workspaceId Workspace identifier
|
|
4908
4908
|
* @param {string} resultId Result ID
|
|
4909
|
+
* @param {string} [xGDCCANCELTOKEN]
|
|
4909
4910
|
* @param {Array<number>} [offset] Request page with these offsets. Format is offset=1,2,3,... - one offset for each dimensions in ResultSpec from originating AFM.
|
|
4910
4911
|
* @param {Array<number>} [limit] Return only this number of items. Format is limit=1,2,3,... - one limit for each dimensions in ResultSpec from originating AFM.
|
|
4911
4912
|
* @param {Array<string>} [excludedTotalDimensions] Identifiers of the dimensions where grand total data should not be returned for this request. A grand total will not be returned if all of its totalDimensions are in excludedTotalDimensions.
|
|
4912
|
-
* @param {string} [xGDCCANCELTOKEN]
|
|
4913
4913
|
* @param {*} [options] Override http request option.
|
|
4914
4914
|
* @param {Configuration} [configuration] Optional configuration.
|
|
4915
4915
|
* @throws {RequiredError}
|
|
4916
4916
|
*/
|
|
4917
|
-
export async function ComputationApiAxiosParamCreator_RetrieveResult(workspaceId, resultId, offset, limit, excludedTotalDimensions,
|
|
4917
|
+
export async function ComputationApiAxiosParamCreator_RetrieveResult(workspaceId, resultId, xGDCCANCELTOKEN, offset, limit, excludedTotalDimensions, options = {}, configuration) {
|
|
4918
4918
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
4919
4919
|
assertParamExists('retrieveResult', 'workspaceId', workspaceId);
|
|
4920
4920
|
// verify required parameter 'resultId' is not null or undefined
|
|
@@ -5152,7 +5152,7 @@ export async function ComputationApi_RetrieveExecutionMetadata(axios, basePath,
|
|
|
5152
5152
|
}
|
|
5153
5153
|
// ComputationApi Api FP
|
|
5154
5154
|
/**
|
|
5155
|
-
* Gets a single execution result.
|
|
5155
|
+
* Gets a single execution result. Note that the Arrow File and Arrow Stream content types are currently in BETA.
|
|
5156
5156
|
* @summary Get a single execution result
|
|
5157
5157
|
* @param {AxiosInstance} axios Axios instance.
|
|
5158
5158
|
* @param {string} basePath Base path.
|
|
@@ -5162,7 +5162,7 @@ export async function ComputationApi_RetrieveExecutionMetadata(axios, basePath,
|
|
|
5162
5162
|
* @throws {RequiredError}
|
|
5163
5163
|
*/
|
|
5164
5164
|
export async function ComputationApi_RetrieveResult(axios, basePath, requestParameters, options, configuration) {
|
|
5165
|
-
const localVarAxiosArgs = await ComputationApiAxiosParamCreator_RetrieveResult(requestParameters.workspaceId, requestParameters.resultId, requestParameters.
|
|
5165
|
+
const localVarAxiosArgs = await ComputationApiAxiosParamCreator_RetrieveResult(requestParameters.workspaceId, requestParameters.resultId, requestParameters.xGDCCANCELTOKEN, requestParameters.offset, requestParameters.limit, requestParameters.excludedTotalDimensions, options || {}, configuration);
|
|
5166
5166
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5167
5167
|
}
|
|
5168
5168
|
/**
|
|
@@ -5316,7 +5316,7 @@ export class ComputationApi extends BaseAPI {
|
|
|
5316
5316
|
return ComputationApi_RetrieveExecutionMetadata(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
5317
5317
|
}
|
|
5318
5318
|
/**
|
|
5319
|
-
* Gets a single execution result.
|
|
5319
|
+
* Gets a single execution result. Note that the Arrow File and Arrow Stream content types are currently in BETA.
|
|
5320
5320
|
* @summary Get a single execution result
|
|
5321
5321
|
* @param {ComputationApiRetrieveResultRequest} requestParameters Request parameters.
|
|
5322
5322
|
* @param {*} [options] Override http request option.
|