@gooddata/api-client-tiger 11.45.0-alpha.1 → 11.45.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 +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
package/esm/__version.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const LIB_VERSION = "11.45.0-alpha.
|
|
1
|
+
export declare const LIB_VERSION = "11.45.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,5 +1,5 @@
|
|
|
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 = "11.45.0-alpha.
|
|
3
|
+
export const LIB_VERSION = "11.45.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";
|
|
@@ -96155,20 +96155,22 @@ export declare function UserManagementApiAxiosParamCreator_GetGroupMembers(userG
|
|
|
96155
96155
|
/**
|
|
96156
96156
|
*
|
|
96157
96157
|
* @param {string} userId
|
|
96158
|
+
* @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).
|
|
96158
96159
|
* @param {*} [options] Override http request option.
|
|
96159
96160
|
* @param {Configuration} [configuration] Optional configuration.
|
|
96160
96161
|
* @throws {RequiredError}
|
|
96161
96162
|
*/
|
|
96162
|
-
export declare function UserManagementApiAxiosParamCreator_ListPermissionsForUser(userId: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
96163
|
+
export declare function UserManagementApiAxiosParamCreator_ListPermissionsForUser(userId: string, includeInherited?: boolean, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
96163
96164
|
|
|
96164
96165
|
/**
|
|
96165
96166
|
*
|
|
96166
96167
|
* @param {string} userGroupId
|
|
96168
|
+
* @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).
|
|
96167
96169
|
* @param {*} [options] Override http request option.
|
|
96168
96170
|
* @param {Configuration} [configuration] Optional configuration.
|
|
96169
96171
|
* @throws {RequiredError}
|
|
96170
96172
|
*/
|
|
96171
|
-
export declare function UserManagementApiAxiosParamCreator_ListPermissionsForUserGroup(userGroupId: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
96173
|
+
export declare function UserManagementApiAxiosParamCreator_ListPermissionsForUserGroup(userGroupId: string, includeInherited?: boolean, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
96172
96174
|
|
|
96173
96175
|
/**
|
|
96174
96176
|
*
|
|
@@ -96415,6 +96417,12 @@ export declare interface UserManagementApiListPermissionsForUserGroupRequest {
|
|
|
96415
96417
|
* @memberof UserManagementApiListPermissionsForUserGroup
|
|
96416
96418
|
*/
|
|
96417
96419
|
readonly userGroupId: string;
|
|
96420
|
+
/**
|
|
96421
|
+
* 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).
|
|
96422
|
+
* @type {boolean}
|
|
96423
|
+
* @memberof UserManagementApiListPermissionsForUserGroup
|
|
96424
|
+
*/
|
|
96425
|
+
readonly includeInherited?: boolean;
|
|
96418
96426
|
}
|
|
96419
96427
|
|
|
96420
96428
|
/**
|
|
@@ -96429,6 +96437,12 @@ export declare interface UserManagementApiListPermissionsForUserRequest {
|
|
|
96429
96437
|
* @memberof UserManagementApiListPermissionsForUser
|
|
96430
96438
|
*/
|
|
96431
96439
|
readonly userId: string;
|
|
96440
|
+
/**
|
|
96441
|
+
* 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).
|
|
96442
|
+
* @type {boolean}
|
|
96443
|
+
* @memberof UserManagementApiListPermissionsForUser
|
|
96444
|
+
*/
|
|
96445
|
+
readonly includeInherited?: boolean;
|
|
96432
96446
|
}
|
|
96433
96447
|
|
|
96434
96448
|
/**
|
|
@@ -96678,8 +96692,14 @@ export declare interface UserManagementDataSourcePermissionAssignment {
|
|
|
96678
96692
|
*/
|
|
96679
96693
|
'name'?: string;
|
|
96680
96694
|
'permissions': Array<UserManagementDataSourcePermissionAssignmentPermissionsEnum>;
|
|
96695
|
+
/**
|
|
96696
|
+
* How the subject gains access to the data source (DIRECT or GROUP). Absent for direct-only listings.
|
|
96697
|
+
*/
|
|
96698
|
+
'accessSource'?: UserManagementDataSourcePermissionAssignmentAccessSourceEnum;
|
|
96681
96699
|
}
|
|
96682
96700
|
|
|
96701
|
+
export declare type UserManagementDataSourcePermissionAssignmentAccessSourceEnum = 'DIRECT' | 'GROUP';
|
|
96702
|
+
|
|
96683
96703
|
export declare type UserManagementDataSourcePermissionAssignmentPermissionsEnum = 'MANAGE' | 'USE';
|
|
96684
96704
|
|
|
96685
96705
|
export declare interface UserManagementPermissionAssignments {
|
|
@@ -96767,8 +96787,14 @@ export declare interface UserManagementWorkspacePermissionAssignment {
|
|
|
96767
96787
|
'name'?: string;
|
|
96768
96788
|
'permissions': Array<UserManagementWorkspacePermissionAssignmentPermissionsEnum>;
|
|
96769
96789
|
'hierarchyPermissions': Array<UserManagementWorkspacePermissionAssignmentHierarchyPermissionsEnum>;
|
|
96790
|
+
/**
|
|
96791
|
+
* How the subject gains access to the workspace (DIRECT, GROUP, HIERARCHY). Absent for direct-only listings.
|
|
96792
|
+
*/
|
|
96793
|
+
'accessSource'?: UserManagementWorkspacePermissionAssignmentAccessSourceEnum;
|
|
96770
96794
|
}
|
|
96771
96795
|
|
|
96796
|
+
export declare type UserManagementWorkspacePermissionAssignmentAccessSourceEnum = 'DIRECT' | 'GROUP' | 'HIERARCHY';
|
|
96797
|
+
|
|
96772
96798
|
export declare type UserManagementWorkspacePermissionAssignmentHierarchyPermissionsEnum = 'MANAGE' | 'ANALYZE' | 'EXPORT' | 'EXPORT_TABULAR' | 'EXPORT_PDF' | 'CREATE_AUTOMATION' | 'USE_AI_ASSISTANT' | 'WRITE_KNOWLEDGE_DOCUMENTS' | 'READ_KNOWLEDGE_DOCUMENTS' | 'CREATE_FILTER_VIEW' | 'VIEW';
|
|
96773
96799
|
|
|
96774
96800
|
export declare type UserManagementWorkspacePermissionAssignmentPermissionsEnum = 'MANAGE' | 'ANALYZE' | 'EXPORT' | 'EXPORT_TABULAR' | 'EXPORT_PDF' | 'CREATE_AUTOMATION' | 'USE_AI_ASSISTANT' | 'WRITE_KNOWLEDGE_DOCUMENTS' | 'READ_KNOWLEDGE_DOCUMENTS' | 'CREATE_FILTER_VIEW' | 'VIEW';
|
|
@@ -10752,8 +10752,13 @@ export interface UserManagementDataSourcePermissionAssignment {
|
|
|
10752
10752
|
*/
|
|
10753
10753
|
'name'?: string;
|
|
10754
10754
|
'permissions': Array<UserManagementDataSourcePermissionAssignmentPermissionsEnum>;
|
|
10755
|
+
/**
|
|
10756
|
+
* How the subject gains access to the data source (DIRECT or GROUP). Absent for direct-only listings.
|
|
10757
|
+
*/
|
|
10758
|
+
'accessSource'?: UserManagementDataSourcePermissionAssignmentAccessSourceEnum;
|
|
10755
10759
|
}
|
|
10756
10760
|
export type UserManagementDataSourcePermissionAssignmentPermissionsEnum = 'MANAGE' | 'USE';
|
|
10761
|
+
export type UserManagementDataSourcePermissionAssignmentAccessSourceEnum = 'DIRECT' | 'GROUP';
|
|
10757
10762
|
export interface UserManagementPermissionAssignments {
|
|
10758
10763
|
'workspaces': Array<UserManagementWorkspacePermissionAssignment>;
|
|
10759
10764
|
'dataSources': Array<UserManagementDataSourcePermissionAssignment>;
|
|
@@ -10832,9 +10837,14 @@ export interface UserManagementWorkspacePermissionAssignment {
|
|
|
10832
10837
|
'name'?: string;
|
|
10833
10838
|
'permissions': Array<UserManagementWorkspacePermissionAssignmentPermissionsEnum>;
|
|
10834
10839
|
'hierarchyPermissions': Array<UserManagementWorkspacePermissionAssignmentHierarchyPermissionsEnum>;
|
|
10840
|
+
/**
|
|
10841
|
+
* How the subject gains access to the workspace (DIRECT, GROUP, HIERARCHY). Absent for direct-only listings.
|
|
10842
|
+
*/
|
|
10843
|
+
'accessSource'?: UserManagementWorkspacePermissionAssignmentAccessSourceEnum;
|
|
10835
10844
|
}
|
|
10836
10845
|
export type UserManagementWorkspacePermissionAssignmentPermissionsEnum = 'MANAGE' | 'ANALYZE' | 'EXPORT' | 'EXPORT_TABULAR' | 'EXPORT_PDF' | 'CREATE_AUTOMATION' | 'USE_AI_ASSISTANT' | 'WRITE_KNOWLEDGE_DOCUMENTS' | 'READ_KNOWLEDGE_DOCUMENTS' | 'CREATE_FILTER_VIEW' | 'VIEW';
|
|
10837
10846
|
export type UserManagementWorkspacePermissionAssignmentHierarchyPermissionsEnum = 'MANAGE' | 'ANALYZE' | 'EXPORT' | 'EXPORT_TABULAR' | 'EXPORT_PDF' | 'CREATE_AUTOMATION' | 'USE_AI_ASSISTANT' | 'WRITE_KNOWLEDGE_DOCUMENTS' | 'READ_KNOWLEDGE_DOCUMENTS' | 'CREATE_FILTER_VIEW' | 'VIEW';
|
|
10847
|
+
export type UserManagementWorkspacePermissionAssignmentAccessSourceEnum = 'DIRECT' | 'GROUP' | 'HIERARCHY';
|
|
10838
10848
|
/**
|
|
10839
10849
|
* List of users
|
|
10840
10850
|
*/
|
|
@@ -75954,19 +75964,21 @@ export declare function UserManagementApiAxiosParamCreator_GetGroupMembers(userG
|
|
|
75954
75964
|
/**
|
|
75955
75965
|
*
|
|
75956
75966
|
* @param {string} userId
|
|
75967
|
+
* @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).
|
|
75957
75968
|
* @param {*} [options] Override http request option.
|
|
75958
75969
|
* @param {Configuration} [configuration] Optional configuration.
|
|
75959
75970
|
* @throws {RequiredError}
|
|
75960
75971
|
*/
|
|
75961
|
-
export declare function UserManagementApiAxiosParamCreator_ListPermissionsForUser(userId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
75972
|
+
export declare function UserManagementApiAxiosParamCreator_ListPermissionsForUser(userId: string, includeInherited?: boolean, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
75962
75973
|
/**
|
|
75963
75974
|
*
|
|
75964
75975
|
* @param {string} userGroupId
|
|
75976
|
+
* @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).
|
|
75965
75977
|
* @param {*} [options] Override http request option.
|
|
75966
75978
|
* @param {Configuration} [configuration] Optional configuration.
|
|
75967
75979
|
* @throws {RequiredError}
|
|
75968
75980
|
*/
|
|
75969
|
-
export declare function UserManagementApiAxiosParamCreator_ListPermissionsForUserGroup(userGroupId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
75981
|
+
export declare function UserManagementApiAxiosParamCreator_ListPermissionsForUserGroup(userGroupId: string, includeInherited?: boolean, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
75970
75982
|
/**
|
|
75971
75983
|
*
|
|
75972
75984
|
* @param {number} [page] Zero-based page index (0..N)
|
|
@@ -76373,6 +76385,12 @@ export interface UserManagementApiListPermissionsForUserRequest {
|
|
|
76373
76385
|
* @memberof UserManagementApiListPermissionsForUser
|
|
76374
76386
|
*/
|
|
76375
76387
|
readonly userId: string;
|
|
76388
|
+
/**
|
|
76389
|
+
* 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).
|
|
76390
|
+
* @type {boolean}
|
|
76391
|
+
* @memberof UserManagementApiListPermissionsForUser
|
|
76392
|
+
*/
|
|
76393
|
+
readonly includeInherited?: boolean;
|
|
76376
76394
|
}
|
|
76377
76395
|
/**
|
|
76378
76396
|
* Request parameters for listPermissionsForUserGroup operation in UserManagementApi.
|
|
@@ -76386,6 +76404,12 @@ export interface UserManagementApiListPermissionsForUserGroupRequest {
|
|
|
76386
76404
|
* @memberof UserManagementApiListPermissionsForUserGroup
|
|
76387
76405
|
*/
|
|
76388
76406
|
readonly userGroupId: string;
|
|
76407
|
+
/**
|
|
76408
|
+
* 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).
|
|
76409
|
+
* @type {boolean}
|
|
76410
|
+
* @memberof UserManagementApiListPermissionsForUserGroup
|
|
76411
|
+
*/
|
|
76412
|
+
readonly includeInherited?: boolean;
|
|
76389
76413
|
}
|
|
76390
76414
|
/**
|
|
76391
76415
|
* Request parameters for listUserGroups operation in UserManagementApi.
|