Files
speckle-server/packages/server/modules/auth/domain/const.ts
T

10 lines
335 B
TypeScript

export const ExpectedAuthFailure = {
UnverifiedEmailSSOLoginError: 'UnverifiedEmailSSOLoginError',
UserInputError: 'UserInputError',
InviteNotFoundError: 'InviteNotFoundError',
InvalidGrantError: 'InvalidGrantError'
} as const
export type ExpectedAuthFailure =
(typeof ExpectedAuthFailure)[keyof typeof ExpectedAuthFailure]