@gooddata/api-client-tiger 11.52.0-alpha.5 → 11.52.0-alpha.7
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 +462 -137
- package/esm/generated/afm-rest-api/api.d.ts +176 -152
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +20 -20
- package/esm/generated/ai-json-api/api.d.ts +281 -10
- package/esm/generated/ai-json-api/api.d.ts.map +1 -1
- package/esm/generated/ai-json-api/api.js +77 -0
- package/esm/generated/auth-json-api/api.d.ts +0 -511
- package/esm/generated/auth-json-api/api.d.ts.map +1 -1
- package/esm/generated/auth-json-api/api.js +0 -650
- package/esm/generated/automation-json-api/api.d.ts +31 -23
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.d.ts +17 -3
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +116 -46
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +120 -2
- package/esm/generated/result-json-api/base.d.ts.map +1 -1
- package/esm/generated/result-json-api/base.js +1 -1
- package/esm/index.d.ts +4 -4
- package/esm/index.d.ts.map +1 -1
- package/package.json +4 -4
|
@@ -3270,7 +3270,7 @@ export async function ActionsApiAxiosParamCreator_ListWorkspaceUserGroups(worksp
|
|
|
3270
3270
|
* @param {string} workspaceId
|
|
3271
3271
|
* @param {number} [page] Zero-based page index (0..N)
|
|
3272
3272
|
* @param {number} [size] The size of the page to be returned.
|
|
3273
|
-
* @param {string} [name] Filter by user name. Note that
|
|
3273
|
+
* @param {string} [name] Filter by user name, email or login (user ID). Note that the filter is case insensitive.
|
|
3274
3274
|
* @param {*} [options] Override http request option.
|
|
3275
3275
|
* @param {Configuration} [configuration] Optional configuration.
|
|
3276
3276
|
* @throws {RequiredError}
|
|
@@ -4452,6 +4452,37 @@ export async function ActionsApiAxiosParamCreator_SwitchActiveIdentityProvider(s
|
|
|
4452
4452
|
};
|
|
4453
4453
|
}
|
|
4454
4454
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
4455
|
+
/**
|
|
4456
|
+
* Enqueues an organization-scoped metadata resync, fanning out the organization\'s current metadata to GenAI, GW Forge, and Automations. Requires organization MANAGE permission. Requests are deduplicated while a resync session is pending for the organization.
|
|
4457
|
+
* @summary Trigger metadata synchronization
|
|
4458
|
+
* @param {*} [options] Override http request option.
|
|
4459
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4460
|
+
* @throws {RequiredError}
|
|
4461
|
+
*/
|
|
4462
|
+
export async function ActionsApiAxiosParamCreator_SyncMetadata(options = {}, configuration) {
|
|
4463
|
+
const localVarPath = `/api/v1/actions/organization/syncMetadata`;
|
|
4464
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4465
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4466
|
+
let baseOptions;
|
|
4467
|
+
if (configuration) {
|
|
4468
|
+
baseOptions = configuration.baseOptions;
|
|
4469
|
+
}
|
|
4470
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
4471
|
+
const localVarHeaderParameter = {};
|
|
4472
|
+
const localVarQueryParameter = {};
|
|
4473
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4474
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
4475
|
+
localVarRequestOptions.headers = {
|
|
4476
|
+
...localVarHeaderParameter,
|
|
4477
|
+
...headersFromBaseOptions,
|
|
4478
|
+
...options.headers,
|
|
4479
|
+
};
|
|
4480
|
+
return {
|
|
4481
|
+
url: toPathString(localVarUrlObj),
|
|
4482
|
+
options: localVarRequestOptions,
|
|
4483
|
+
};
|
|
4484
|
+
}
|
|
4485
|
+
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
4455
4486
|
/**
|
|
4456
4487
|
* Returns a list of tags for this workspace
|
|
4457
4488
|
* @summary Get Analytics Catalog Tags
|
|
@@ -5547,6 +5578,20 @@ export async function ActionsApi_SwitchActiveIdentityProvider(axios, basePath, r
|
|
|
5547
5578
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5548
5579
|
}
|
|
5549
5580
|
// ActionsApi Api FP
|
|
5581
|
+
/**
|
|
5582
|
+
* Enqueues an organization-scoped metadata resync, fanning out the organization\'s current metadata to GenAI, GW Forge, and Automations. Requires organization MANAGE permission. Requests are deduplicated while a resync session is pending for the organization.
|
|
5583
|
+
* @summary Trigger metadata synchronization
|
|
5584
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
5585
|
+
* @param {string} basePath Base path.
|
|
5586
|
+
* @param {*} [options] Override http request option.
|
|
5587
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
5588
|
+
* @throws {RequiredError}
|
|
5589
|
+
*/
|
|
5590
|
+
export async function ActionsApi_SyncMetadata(axios, basePath, options, configuration) {
|
|
5591
|
+
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_SyncMetadata(options || {}, configuration);
|
|
5592
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5593
|
+
}
|
|
5594
|
+
// ActionsApi Api FP
|
|
5550
5595
|
/**
|
|
5551
5596
|
* Returns a list of tags for this workspace
|
|
5552
5597
|
* @summary Get Analytics Catalog Tags
|
|
@@ -6192,6 +6237,16 @@ export class ActionsApi extends BaseAPI {
|
|
|
6192
6237
|
switchActiveIdentityProvider(requestParameters, options) {
|
|
6193
6238
|
return ActionsApi_SwitchActiveIdentityProvider(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
6194
6239
|
}
|
|
6240
|
+
/**
|
|
6241
|
+
* Enqueues an organization-scoped metadata resync, fanning out the organization\'s current metadata to GenAI, GW Forge, and Automations. Requires organization MANAGE permission. Requests are deduplicated while a resync session is pending for the organization.
|
|
6242
|
+
* @summary Trigger metadata synchronization
|
|
6243
|
+
* @param {*} [options] Override http request option.
|
|
6244
|
+
* @throws {RequiredError}
|
|
6245
|
+
* @memberof ActionsApi
|
|
6246
|
+
*/
|
|
6247
|
+
syncMetadata(options) {
|
|
6248
|
+
return ActionsApi_SyncMetadata(this.axios, this.basePath, options, this.configuration);
|
|
6249
|
+
}
|
|
6195
6250
|
/**
|
|
6196
6251
|
* Returns a list of tags for this workspace
|
|
6197
6252
|
* @summary Get Analytics Catalog Tags
|
|
@@ -63528,6 +63583,69 @@ export class MemoryItemControllerApi extends BaseAPI {
|
|
|
63528
63583
|
return MemoryItemControllerApi_UpdateEntityMemoryItems(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
63529
63584
|
}
|
|
63530
63585
|
}
|
|
63586
|
+
// MetadataSynchronizationApi FP - MetadataSynchronizationApiAxiosParamCreator
|
|
63587
|
+
/**
|
|
63588
|
+
* Enqueues an organization-scoped metadata resync, fanning out the organization\'s current metadata to GenAI, GW Forge, and Automations. Requires organization MANAGE permission. Requests are deduplicated while a resync session is pending for the organization.
|
|
63589
|
+
* @summary Trigger metadata synchronization
|
|
63590
|
+
* @param {*} [options] Override http request option.
|
|
63591
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
63592
|
+
* @throws {RequiredError}
|
|
63593
|
+
*/
|
|
63594
|
+
export async function MetadataSynchronizationApiAxiosParamCreator_SyncMetadata(options = {}, configuration) {
|
|
63595
|
+
const localVarPath = `/api/v1/actions/organization/syncMetadata`;
|
|
63596
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
63597
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
63598
|
+
let baseOptions;
|
|
63599
|
+
if (configuration) {
|
|
63600
|
+
baseOptions = configuration.baseOptions;
|
|
63601
|
+
}
|
|
63602
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
63603
|
+
const localVarHeaderParameter = {};
|
|
63604
|
+
const localVarQueryParameter = {};
|
|
63605
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
63606
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
63607
|
+
localVarRequestOptions.headers = {
|
|
63608
|
+
...localVarHeaderParameter,
|
|
63609
|
+
...headersFromBaseOptions,
|
|
63610
|
+
...options.headers,
|
|
63611
|
+
};
|
|
63612
|
+
return {
|
|
63613
|
+
url: toPathString(localVarUrlObj),
|
|
63614
|
+
options: localVarRequestOptions,
|
|
63615
|
+
};
|
|
63616
|
+
}
|
|
63617
|
+
// MetadataSynchronizationApi Api FP
|
|
63618
|
+
/**
|
|
63619
|
+
* Enqueues an organization-scoped metadata resync, fanning out the organization\'s current metadata to GenAI, GW Forge, and Automations. Requires organization MANAGE permission. Requests are deduplicated while a resync session is pending for the organization.
|
|
63620
|
+
* @summary Trigger metadata synchronization
|
|
63621
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
63622
|
+
* @param {string} basePath Base path.
|
|
63623
|
+
* @param {*} [options] Override http request option.
|
|
63624
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
63625
|
+
* @throws {RequiredError}
|
|
63626
|
+
*/
|
|
63627
|
+
export async function MetadataSynchronizationApi_SyncMetadata(axios, basePath, options, configuration) {
|
|
63628
|
+
const localVarAxiosArgs = await MetadataSynchronizationApiAxiosParamCreator_SyncMetadata(options || {}, configuration);
|
|
63629
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
63630
|
+
}
|
|
63631
|
+
/**
|
|
63632
|
+
* MetadataSynchronizationApi - object-oriented interface
|
|
63633
|
+
* @export
|
|
63634
|
+
* @class MetadataSynchronizationApi
|
|
63635
|
+
* @extends {BaseAPI}
|
|
63636
|
+
*/
|
|
63637
|
+
export class MetadataSynchronizationApi extends BaseAPI {
|
|
63638
|
+
/**
|
|
63639
|
+
* Enqueues an organization-scoped metadata resync, fanning out the organization\'s current metadata to GenAI, GW Forge, and Automations. Requires organization MANAGE permission. Requests are deduplicated while a resync session is pending for the organization.
|
|
63640
|
+
* @summary Trigger metadata synchronization
|
|
63641
|
+
* @param {*} [options] Override http request option.
|
|
63642
|
+
* @throws {RequiredError}
|
|
63643
|
+
* @memberof MetadataSynchronizationApi
|
|
63644
|
+
*/
|
|
63645
|
+
syncMetadata(options) {
|
|
63646
|
+
return MetadataSynchronizationApi_SyncMetadata(this.axios, this.basePath, options, this.configuration);
|
|
63647
|
+
}
|
|
63648
|
+
}
|
|
63531
63649
|
// MetricControllerApi FP - MetricControllerApiAxiosParamCreator
|
|
63532
63650
|
/**
|
|
63533
63651
|
*
|
|
@@ -76667,7 +76785,7 @@ export async function UserManagementApiAxiosParamCreator_ListWorkspaceUserGroups
|
|
|
76667
76785
|
* @param {string} workspaceId
|
|
76668
76786
|
* @param {number} [page] Zero-based page index (0..N)
|
|
76669
76787
|
* @param {number} [size] The size of the page to be returned.
|
|
76670
|
-
* @param {string} [name] Filter by user name. Note that
|
|
76788
|
+
* @param {string} [name] Filter by user name, email or login (user ID). Note that the filter is case insensitive.
|
|
76671
76789
|
* @param {*} [options] Override http request option.
|
|
76672
76790
|
* @param {Configuration} [configuration] Optional configuration.
|
|
76673
76791
|
* @throws {RequiredError}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../src/generated/result-json-api/base.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAGxD,OAAO,KAAK,EAAgB,aAAa,EAAE,qBAAqB,EAAE,MAAM,OAAO,CAAC;AAGhF,eAAO,MAAM,SAAS,
|
|
1
|
+
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../src/generated/result-json-api/base.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAGxD,OAAO,KAAK,EAAgB,aAAa,EAAE,qBAAqB,EAAE,MAAM,OAAO,CAAC;AAGhF,eAAO,MAAM,SAAS,QAA+E,CAAC;AAEtG,eAAO,MAAM,kBAAkB;;;;;CAK9B,CAAC;AAEF,MAAM,WAAW,WAAW;IACxB,GAAG,EAAE,MAAM,CAAC;IACZ,OAAO,EAAE,qBAAqB,CAAC;CAClC;AAED,qBAAa,OAAO;IAG2B,SAAS,CAAC,QAAQ,EAAE,MAAM;IAAc,SAAS,CAAC,KAAK,EAAE,aAAa;IAFjH,SAAS,CAAC,aAAa,EAAE,aAAa,GAAG,SAAS,CAAC;IAEnD,YAAY,aAAa,CAAC,EAAE,aAAa,EAAY,QAAQ,GAAE,MAAkB,EAAY,KAAK,GAAE,aAA2B,EAK9H;CACJ;AAED,qBAAa,aAAc,SAAQ,KAAK;IACjB,KAAK,EAAE,MAAM;IAAhC,YAAmB,KAAK,EAAE,MAAM,EAAE,GAAG,CAAC,EAAE,MAAM,EAG7C;CACJ;AAED,UAAU,SAAS;IACf,CAAC,GAAG,EAAE,MAAM,GAAG;QACX,GAAG,EAAE,MAAM,CAAC;QACZ,WAAW,EAAE,MAAM,CAAC;KACvB,EAAE,CAAC;CACP;AAED,eAAO,MAAM,kBAAkB,EAAE,SAChC,CAAA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// (C) 2024-2026 GoodData Corporation
|
|
2
2
|
import globalAxios from 'axios';
|
|
3
|
-
export const BASE_PATH = "https://staging
|
|
3
|
+
export const BASE_PATH = "https://automation.staging-ui.stg11.panther.intgdc.com".replace(/\/+$/, "");
|
|
4
4
|
export const COLLECTION_FORMATS = {
|
|
5
5
|
csv: ",",
|
|
6
6
|
ssv: " ",
|