new lib version [CI SKIP]
This commit is contained in:
5
dist/services/UserGroupService.d.ts
vendored
5
dist/services/UserGroupService.d.ts
vendored
@@ -1,6 +1,7 @@
|
||||
import type { CreateUserGroup } from '../models/CreateUserGroup';
|
||||
import type { ResponseEmpty } from '../models/ResponseEmpty';
|
||||
import type { ResponseUserGroup } from '../models/ResponseUserGroup';
|
||||
import type { UpdateUserGroup } from '../models/UpdateUserGroup';
|
||||
import type { UserGroup } from '../models/UserGroup';
|
||||
import type { UserGroupNotFoundError } from '../models/UserGroupNotFoundError';
|
||||
export declare class UserGroupService {
|
||||
@@ -31,11 +32,11 @@ export declare class UserGroupService {
|
||||
* Put
|
||||
* Update the group whose id you provided. <br> To change the permissions granted to the group please use /api/permissions instead. <br> Please remember that ids can't be changed.
|
||||
* @param id
|
||||
* @param requestBody UserGroup
|
||||
* @param requestBody UpdateUserGroup
|
||||
* @returns UserGroup
|
||||
* @throws ApiError
|
||||
*/
|
||||
static userGroupControllerPut(id: number, requestBody?: UserGroup): Promise<UserGroup>;
|
||||
static userGroupControllerPut(id: number, requestBody?: UpdateUserGroup): Promise<UserGroup>;
|
||||
/**
|
||||
* Remove
|
||||
* Delete the group whose id you provided. <br> If there are any permissions directly granted to the group they will get deleted as well. <br> Users associated with this group won't get deleted - just deassociated. <br> If no group with this id exists it will just return 204(no content).
|
||||
|
||||
Reference in New Issue
Block a user