🚀New lib version [CI SKIP]
This commit is contained in:
8
dist/services/MeService.d.ts
vendored
8
dist/services/MeService.d.ts
vendored
@@ -5,7 +5,7 @@ export declare class MeService {
|
||||
/**
|
||||
* Get
|
||||
* Lists all information about yourself.
|
||||
* @returns ResponseUser
|
||||
* @result ResponseUser
|
||||
* @throws ApiError
|
||||
*/
|
||||
static meControllerGet(): Promise<ResponseUser>;
|
||||
@@ -13,7 +13,7 @@ export declare class MeService {
|
||||
* Put
|
||||
* Update the yourself. <br> You can't edit your own permissions or group memberships here - Please use the /api/users/:id enpoint instead. <br> Please remember that ids can't be changed.
|
||||
* @param requestBody UpdateUser
|
||||
* @returns ResponseUser
|
||||
* @result ResponseUser
|
||||
* @throws ApiError
|
||||
*/
|
||||
static meControllerPut(requestBody?: UpdateUser): Promise<ResponseUser>;
|
||||
@@ -21,14 +21,14 @@ export declare class MeService {
|
||||
* Remove
|
||||
* Delete yourself. <br> You have to confirm your decision by providing the ?force=true query param. <br> If there are any permissions directly granted to you they will get deleted as well.
|
||||
* @param force
|
||||
* @returns ResponseUser
|
||||
* @result ResponseUser
|
||||
* @throws ApiError
|
||||
*/
|
||||
static meControllerRemove(force?: boolean): Promise<ResponseUser>;
|
||||
/**
|
||||
* Get permissions
|
||||
* Lists all permissions granted to the you sorted into directly granted and inherited as permission response objects.
|
||||
* @returns ResponseUserPermissions
|
||||
* @result ResponseUserPermissions
|
||||
* @throws ApiError
|
||||
*/
|
||||
static meControllerGetPermissions(): Promise<ResponseUserPermissions>;
|
||||
|
||||
Reference in New Issue
Block a user