@steffesgroup/steffes-auth
Advanced tools
Comparing version 2.0.15 to 2.1.1
@@ -317,3 +317,3 @@ import { AxiosInstance, AxiosRequestConfig, AxiosResponse, CancelToken } from 'axios'; | ||
*/ | ||
verifyInformation(tenantId: string, verifyUserDTO: RegisterUserDTO): Promise<UserDTO>; | ||
verifyInformation(tenantId: string, verifyUserDTO: VerifyUserDTO): Promise<UserDTO>; | ||
} | ||
@@ -347,3 +347,3 @@ export declare class RegisterClient extends AuthorizedApiBase implements IRegisterClient { | ||
*/ | ||
verifyInformation(tenantId: string, verifyUserDTO: RegisterUserDTO, cancelToken?: CancelToken): Promise<UserDTO>; | ||
verifyInformation(tenantId: string, verifyUserDTO: VerifyUserDTO, cancelToken?: CancelToken): Promise<UserDTO>; | ||
protected processVerifyInformation(response: AxiosResponse): Promise<UserDTO>; | ||
@@ -955,2 +955,30 @@ } | ||
} | ||
export declare class VerifyUserDTO implements IVerifyUserDTO { | ||
address?: CreateAddressDTO; | ||
company?: string | undefined; | ||
email: string; | ||
firstName: string; | ||
lastName: string; | ||
password: string; | ||
phone?: CreatePhoneDTO; | ||
emailNotifications?: boolean; | ||
textNotifications?: boolean; | ||
industryIds?: string[]; | ||
constructor(data?: IVerifyUserDTO); | ||
init(_data?: any): void; | ||
static fromJS(data: any): VerifyUserDTO; | ||
toJSON(data?: any): any; | ||
} | ||
export interface IVerifyUserDTO { | ||
address?: CreateAddressDTO; | ||
company?: string | undefined; | ||
email: string; | ||
firstName: string; | ||
lastName: string; | ||
password: string; | ||
phone?: CreatePhoneDTO; | ||
emailNotifications?: boolean; | ||
textNotifications?: boolean; | ||
industryIds?: string[]; | ||
} | ||
export interface FileResponse { | ||
@@ -957,0 +985,0 @@ data: Blob; |
{ | ||
"name": "@steffesgroup/steffes-auth", | ||
"version": "2.0.15", | ||
"version": "2.1.1", | ||
"description": "Steffes Auth", | ||
@@ -5,0 +5,0 @@ "main": "dist/api.js", |
Sorry, the diff of this file is too big to display
164419
4232