Type RegistrationResponse
This commit is contained in:
parent
49ade61ef6
commit
1d4b079d0c
1 changed files with 18 additions and 3 deletions
|
@ -25,9 +25,21 @@ export type RegistrationDetails = {
|
|||
inhibitLogin: boolean;
|
||||
}
|
||||
|
||||
// todo: type this later
|
||||
export type RegistrationResponse = {
|
||||
[key: string]: any;
|
||||
completed: string[];
|
||||
flows: Record<string, any>[];
|
||||
params: Record<string, any>;
|
||||
session: string;
|
||||
} & error & success;
|
||||
|
||||
type error = {
|
||||
errcode: string;
|
||||
error: string;
|
||||
}
|
||||
type success = {
|
||||
user_id: string;
|
||||
device_id: string;
|
||||
access_token?: string;
|
||||
}
|
||||
|
||||
export class Registration {
|
||||
|
@ -52,6 +64,9 @@ export class Registration {
|
|||
parseStagesFromResponse(response: RegistrationResponse): BaseRegistrationStage {
|
||||
const { session, params } = response;
|
||||
const flow = response.flows.pop();
|
||||
if (!flow) {
|
||||
throw new Error("No registration flows available!");
|
||||
}
|
||||
let firstStage: BaseRegistrationStage | undefined;
|
||||
let lastStage: BaseRegistrationStage;
|
||||
for (const stage of flow.stages) {
|
||||
|
|
Reference in a new issue