Fresh dist
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2023-02-02 16:14:10 +01:00
parent e996375677
commit ad90844846
43 changed files with 270 additions and 267 deletions

View File

@@ -7,7 +7,7 @@ export declare class PermissionService {
/**
* Get all
* Lists all permissions for all users and groups.
* @result ResponsePermission
* @returns ResponsePermission
* @throws ApiError
*/
static permissionControllerGetAll(): Promise<Array<ResponsePermission>>;
@@ -15,7 +15,7 @@ export declare class PermissionService {
* Post
* Create a new permission for a existing principal(user/group). <br> If a permission with this target, action and prinicpal already exists that permission will be returned instead of creating a new one.
* @param requestBody CreatePermission
* @result ResponsePermission
* @returns ResponsePermission
* @throws ApiError
*/
static permissionControllerPost(requestBody?: CreatePermission): Promise<ResponsePermission>;
@@ -23,7 +23,7 @@ export declare class PermissionService {
* Get one
* Lists all information about the permission whose id got provided.
* @param id
* @result ResponsePermission
* @returns ResponsePermission
* @throws ApiError
*/
static permissionControllerGetOne(id: number): Promise<ResponsePermission>;
@@ -32,7 +32,7 @@ export declare class PermissionService {
* Update a permission object. <br> If updateing the permission object would result in duplicate permission (same target, action and principal) this permission will get deleted and the existing permission will be returned. <br> Please remember that ids can't be changed.
* @param id
* @param requestBody UpdatePermission
* @result ResponsePrincipal
* @returns ResponsePrincipal
* @throws ApiError
*/
static permissionControllerPut(id: number, requestBody?: UpdatePermission): Promise<ResponsePrincipal>;
@@ -41,8 +41,8 @@ export declare class PermissionService {
* Deletes the permission whose id you provide. <br> If no permission with this id exists it will just return 204(no content).
* @param id
* @param force
* @result ResponsePermission
* @result ResponseEmpty
* @returns ResponsePermission
* @returns ResponseEmpty
* @throws ApiError
*/
static permissionControllerRemove(id: number, force?: boolean): Promise<ResponsePermission | ResponseEmpty>;