You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
878 B
46 lines
878 B
export interface Register {
|
|
userName: string;
|
|
emailAddress: string;
|
|
password: string;
|
|
appName: string;
|
|
}
|
|
|
|
export interface PhoneRegister {
|
|
phoneNumber: string;
|
|
password: string;
|
|
code: string;
|
|
name?: string;
|
|
userName?: string;
|
|
emailAddress?: string;
|
|
}
|
|
|
|
export interface PhoneResetPassword {
|
|
phoneNumber: string;
|
|
newPassword: string;
|
|
code: string;
|
|
}
|
|
|
|
export interface SendPhoneSecurityCode {
|
|
phoneNumber: string;
|
|
}
|
|
|
|
export interface SendPhoneRegisterCodeInput {
|
|
phoneNumber: string;
|
|
}
|
|
|
|
export interface SendPhoneSigninCodeInput {
|
|
phoneNumber: string;
|
|
}
|
|
|
|
export interface SendPhoneResetPasswordCodeInput {
|
|
phoneNumber: string;
|
|
}
|
|
|
|
export interface SendEmailSigninCodeInput {
|
|
emailAddress: string;
|
|
}
|
|
|
|
export interface GetTwoFactorProvidersInput {
|
|
userId: string;
|
|
}
|
|
|