-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* proto: add more error reasons * rpc: return more information in ErrEmailAlreadyInUse * rpc: allow for more than one guest account per project (duh) * rpc: more typed errors * proto: use 7xxx error codes
- Loading branch information
Showing
8 changed files
with
183 additions
and
77 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* eslint-disable */ | ||
// sequence-waas-authenticator v0.1.0 0162a6fb35dd49d6f4d924ebce4bceb847479f3a | ||
// sequence-waas-authenticator v0.1.0 93374d947ac55a97a4d3a9821262e850d787f549 | ||
// -- | ||
// Code generated by [email protected] with typescript generator. DO NOT EDIT. | ||
// | ||
|
@@ -12,7 +12,7 @@ export const WebRPCVersion = "v1" | |
export const WebRPCSchemaVersion = "v0.1.0" | ||
|
||
// Schema hash generated from your RIDL schema | ||
export const WebRPCSchemaHash = "0162a6fb35dd49d6f4d924ebce4bceb847479f3a" | ||
export const WebRPCSchemaHash = "93374d947ac55a97a4d3a9821262e850d787f549" | ||
|
||
// | ||
// Types | ||
|
@@ -699,7 +699,7 @@ export class TenantNotFoundError extends WebrpcError { | |
export class EmailAlreadyInUseError extends WebrpcError { | ||
constructor( | ||
name: string = 'EmailAlreadyInUse', | ||
code: number = 2000, | ||
code: number = 7000, | ||
message: string = 'Could not create account as the email is already in use', | ||
status: number = 0, | ||
cause?: string | ||
|
@@ -709,6 +709,58 @@ export class EmailAlreadyInUseError extends WebrpcError { | |
} | ||
} | ||
|
||
export class AccountAlreadyLinkedError extends WebrpcError { | ||
constructor( | ||
name: string = 'AccountAlreadyLinked', | ||
code: number = 7001, | ||
message: string = 'Could not link account as it is linked to another wallet', | ||
status: number = 0, | ||
cause?: string | ||
) { | ||
super(name, code, message, status, cause) | ||
Object.setPrototypeOf(this, AccountAlreadyLinkedError.prototype) | ||
} | ||
} | ||
|
||
export class ProofVerificationFailedError extends WebrpcError { | ||
constructor( | ||
name: string = 'ProofVerificationFailed', | ||
code: number = 7002, | ||
message: string = 'The authentication proof could not be verified', | ||
status: number = 0, | ||
cause?: string | ||
) { | ||
super(name, code, message, status, cause) | ||
Object.setPrototypeOf(this, ProofVerificationFailedError.prototype) | ||
} | ||
} | ||
|
||
export class AnswerIncorrectError extends WebrpcError { | ||
constructor( | ||
name: string = 'AnswerIncorrect', | ||
code: number = 7003, | ||
message: string = 'The provided answer is incorrect', | ||
status: number = 0, | ||
cause?: string | ||
) { | ||
super(name, code, message, status, cause) | ||
Object.setPrototypeOf(this, AnswerIncorrectError.prototype) | ||
} | ||
} | ||
|
||
export class ChallengeExpiredError extends WebrpcError { | ||
constructor( | ||
name: string = 'ChallengeExpired', | ||
code: number = 7004, | ||
message: string = 'The challenge has expired', | ||
status: number = 0, | ||
cause?: string | ||
) { | ||
super(name, code, message, status, cause) | ||
Object.setPrototypeOf(this, ChallengeExpiredError.prototype) | ||
} | ||
} | ||
|
||
|
||
export enum errors { | ||
WebrpcEndpoint = 'WebrpcEndpoint', | ||
|
@@ -725,6 +777,10 @@ export enum errors { | |
Unauthorized = 'Unauthorized', | ||
TenantNotFound = 'TenantNotFound', | ||
EmailAlreadyInUse = 'EmailAlreadyInUse', | ||
AccountAlreadyLinked = 'AccountAlreadyLinked', | ||
ProofVerificationFailed = 'ProofVerificationFailed', | ||
AnswerIncorrect = 'AnswerIncorrect', | ||
ChallengeExpired = 'ChallengeExpired', | ||
} | ||
|
||
const webrpcErrorByCode: { [code: number]: any } = { | ||
|
@@ -741,7 +797,11 @@ const webrpcErrorByCode: { [code: number]: any } = { | |
[-10]: WebrpcStreamFinishedError, | ||
[1000]: UnauthorizedError, | ||
[1001]: TenantNotFoundError, | ||
[2000]: EmailAlreadyInUseError, | ||
[7000]: EmailAlreadyInUseError, | ||
[7001]: AccountAlreadyLinkedError, | ||
[7002]: ProofVerificationFailedError, | ||
[7003]: AnswerIncorrectError, | ||
[7004]: ChallengeExpiredError, | ||
} | ||
|
||
export type Fetch = (input: RequestInfo, init?: RequestInit) => Promise<Response> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.