new lib version [CI SKIP]
This commit is contained in:
25
dist/models/ResponsePermission.d.ts
vendored
Normal file
25
dist/models/ResponsePermission.d.ts
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
import type { ResponsePrincipal } from './ResponsePrincipal';
|
||||
export declare type ResponsePermission = {
|
||||
id: number;
|
||||
principal: ResponsePrincipal;
|
||||
target: ResponsePermission.target;
|
||||
action: ResponsePermission.action;
|
||||
};
|
||||
export declare namespace ResponsePermission {
|
||||
enum target {
|
||||
RUNNER = "RUNNER",
|
||||
ORGANISATION = "ORGANISATION",
|
||||
TEAM = "TEAM",
|
||||
TRACK = "TRACK",
|
||||
USER = "USER",
|
||||
USERGROUP = "USERGROUP",
|
||||
PERMISSION = "PERMISSION"
|
||||
}
|
||||
enum action {
|
||||
GET = "GET",
|
||||
CREATE = "CREATE",
|
||||
UPDATE = "UPDATE",
|
||||
DELETE = "DELETE",
|
||||
IMPORT = "IMPORT"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user