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 @@ -24,15 +24,6 @@ import {
*/
public capabilities?: string[] | null;
}
export class AcceptInviteActionReqDto {
/**
The invitation id which will be used to process
*/
public invitationUniqueId?: string | null;
public static Fields = {
invitationUniqueId: 'invitationUniqueId',
}
}
export class OauthAuthenticateActionReqDto {
/**
The token that Auth2 provider returned to the front-end, which will be used to validate the backend
Expand Down Expand Up @@ -61,34 +52,6 @@ public static Fields = {
next: 'next',
}
}
export class ConfirmClassicPassportTotpActionReqDto {
/**
Passport value, email or phone number which is already successfully registered.
*/
public value?: string | null;
/**
Password related to the passport. Totp is only available for passports with a password. Basically totp is protecting passport, not otp over email or sms.
*/
public password?: string | null;
/**
The totp code generated by authenticator such as google or microsft apps.
*/
public totpCode?: string | null;
public static Fields = {
value: 'value',
password: 'password',
totpCode: 'totpCode',
}
}
export class ConfirmClassicPassportTotpActionResDto {
public session?: UserSessionDto | null;
sessionId?: string | null;
public static Fields = {
sessionId: 'sessionId',
session$: 'session',
session: UserSessionDto.Fields,
}
}
export class QueryUserRoleWorkspacesActionResDto {
public name?: string | null;
/**
Expand Down
Loading
Loading