Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 0 additions & 37 deletions e2e/react-bed/src/sdk/modules/abac/AbacActionsDto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ import {
import {
GsmProviderEntity,
} from "./GsmProviderEntity"
import {
UserSessionDto,
} from "./UserSessionDto"
export class QueryUserRoleWorkspacesResDtoRoles {
public name?: string | null;
public uniqueId?: string | null;
Expand All @@ -24,34 +21,6 @@ import {
*/
public capabilities?: string[] | null;
}
export class OauthAuthenticateActionReqDto {
/**
The token that Auth2 provider returned to the front-end, which will be used to validate the backend
*/
public token?: string | null;
/**
The service name, such as 'google' which later backend will use to authorize the token and create the user.
*/
public service?: string | null;
public static Fields = {
token: 'token',
service: 'service',
}
}
export class OauthAuthenticateActionResDto {
public session?: UserSessionDto | null;
sessionId?: string | null;
/**
The next possible action which is suggested.
*/
public next?: string[] | null;
public static Fields = {
sessionId: 'sessionId',
session$: 'session',
session: UserSessionDto.Fields,
next: 'next',
}
}
export class QueryUserRoleWorkspacesActionResDto {
public name?: string | null;
/**
Expand All @@ -72,12 +41,6 @@ public static Fields = {
},
}
}
export class ImportUserActionReqDto {
public path?: string | null;
public static Fields = {
path: 'path',
}
}
export class SendEmailActionReqDto {
public toAddress?: string | null;
public body?: string | null;
Expand Down
Loading
Loading