@gooddata/api-client-tiger 11.45.0-alpha.1 → 11.45.0
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.d.ts.map +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +28 -2
- package/esm/generated/metadata-json-api/api.d.ts +26 -2
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +12 -4
- package/esm/index.d.ts +1 -1
- package/esm/index.d.ts.map +1 -1
- package/package.json +4 -4
|
@@ -72741,11 +72741,12 @@ export async function UserManagementApiAxiosParamCreator_GetGroupMembers(userGro
|
|
|
72741
72741
|
/**
|
|
72742
72742
|
*
|
|
72743
72743
|
* @param {string} userId
|
|
72744
|
+
* @param {boolean} [includeInherited] When true, include permissions inherited from user groups (workspaces also cascade down the workspace hierarchy). Each workspace and data source is tagged with how the user gains access. Defaults to false (direct assignments only).
|
|
72744
72745
|
* @param {*} [options] Override http request option.
|
|
72745
72746
|
* @param {Configuration} [configuration] Optional configuration.
|
|
72746
72747
|
* @throws {RequiredError}
|
|
72747
72748
|
*/
|
|
72748
|
-
export async function UserManagementApiAxiosParamCreator_ListPermissionsForUser(userId, options = {}, configuration) {
|
|
72749
|
+
export async function UserManagementApiAxiosParamCreator_ListPermissionsForUser(userId, includeInherited, options = {}, configuration) {
|
|
72749
72750
|
// verify required parameter 'userId' is not null or undefined
|
|
72750
72751
|
assertParamExists('listPermissionsForUser', 'userId', userId);
|
|
72751
72752
|
const localVarPath = `/api/v1/actions/userManagement/users/{userId}/permissions`
|
|
@@ -72759,6 +72760,9 @@ export async function UserManagementApiAxiosParamCreator_ListPermissionsForUser(
|
|
|
72759
72760
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
72760
72761
|
const localVarHeaderParameter = {};
|
|
72761
72762
|
const localVarQueryParameter = {};
|
|
72763
|
+
if (includeInherited !== undefined) {
|
|
72764
|
+
localVarQueryParameter['includeInherited'] = includeInherited;
|
|
72765
|
+
}
|
|
72762
72766
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
72763
72767
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
72764
72768
|
localVarRequestOptions.headers = {
|
|
@@ -72775,11 +72779,12 @@ export async function UserManagementApiAxiosParamCreator_ListPermissionsForUser(
|
|
|
72775
72779
|
/**
|
|
72776
72780
|
*
|
|
72777
72781
|
* @param {string} userGroupId
|
|
72782
|
+
* @param {boolean} [includeInherited] When true, include permissions inherited from parent user groups (workspaces also cascade down the workspace hierarchy). Each workspace and data source is tagged with how the group gains access. Defaults to false (direct assignments only).
|
|
72778
72783
|
* @param {*} [options] Override http request option.
|
|
72779
72784
|
* @param {Configuration} [configuration] Optional configuration.
|
|
72780
72785
|
* @throws {RequiredError}
|
|
72781
72786
|
*/
|
|
72782
|
-
export async function UserManagementApiAxiosParamCreator_ListPermissionsForUserGroup(userGroupId, options = {}, configuration) {
|
|
72787
|
+
export async function UserManagementApiAxiosParamCreator_ListPermissionsForUserGroup(userGroupId, includeInherited, options = {}, configuration) {
|
|
72783
72788
|
// verify required parameter 'userGroupId' is not null or undefined
|
|
72784
72789
|
assertParamExists('listPermissionsForUserGroup', 'userGroupId', userGroupId);
|
|
72785
72790
|
const localVarPath = `/api/v1/actions/userManagement/userGroups/{userGroupId}/permissions`
|
|
@@ -72793,6 +72798,9 @@ export async function UserManagementApiAxiosParamCreator_ListPermissionsForUserG
|
|
|
72793
72798
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
72794
72799
|
const localVarHeaderParameter = {};
|
|
72795
72800
|
const localVarQueryParameter = {};
|
|
72801
|
+
if (includeInherited !== undefined) {
|
|
72802
|
+
localVarQueryParameter['includeInherited'] = includeInherited;
|
|
72803
|
+
}
|
|
72796
72804
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
72797
72805
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
72798
72806
|
localVarRequestOptions.headers = {
|
|
@@ -73291,7 +73299,7 @@ export async function UserManagementApi_GetGroupMembers(axios, basePath, request
|
|
|
73291
73299
|
* @throws {RequiredError}
|
|
73292
73300
|
*/
|
|
73293
73301
|
export async function UserManagementApi_ListPermissionsForUser(axios, basePath, requestParameters, options, configuration) {
|
|
73294
|
-
const localVarAxiosArgs = await UserManagementApiAxiosParamCreator_ListPermissionsForUser(requestParameters.userId, options || {}, configuration);
|
|
73302
|
+
const localVarAxiosArgs = await UserManagementApiAxiosParamCreator_ListPermissionsForUser(requestParameters.userId, requestParameters.includeInherited, options || {}, configuration);
|
|
73295
73303
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
73296
73304
|
}
|
|
73297
73305
|
// UserManagementApi Api FP
|
|
@@ -73305,7 +73313,7 @@ export async function UserManagementApi_ListPermissionsForUser(axios, basePath,
|
|
|
73305
73313
|
* @throws {RequiredError}
|
|
73306
73314
|
*/
|
|
73307
73315
|
export async function UserManagementApi_ListPermissionsForUserGroup(axios, basePath, requestParameters, options, configuration) {
|
|
73308
|
-
const localVarAxiosArgs = await UserManagementApiAxiosParamCreator_ListPermissionsForUserGroup(requestParameters.userGroupId, options || {}, configuration);
|
|
73316
|
+
const localVarAxiosArgs = await UserManagementApiAxiosParamCreator_ListPermissionsForUserGroup(requestParameters.userGroupId, requestParameters.includeInherited, options || {}, configuration);
|
|
73309
73317
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
73310
73318
|
}
|
|
73311
73319
|
// UserManagementApi Api FP
|