@steffesgroup/steffes-auth
Advanced tools
Comparing version 2.1.2 to 2.1.3
@@ -706,3 +706,3 @@ import { AxiosInstance, AxiosRequestConfig, AxiosResponse, CancelToken } from 'axios'; | ||
addresses?: Address[]; | ||
bidder?: CreateBidderDTO | undefined; | ||
bidder?: Bidder | undefined; | ||
company?: string | undefined; | ||
@@ -723,3 +723,3 @@ defaultImage?: RelationEntity | undefined; | ||
registrationState?: RegistrationState; | ||
staff?: CreateStaffDTO | undefined; | ||
staff?: Staff | undefined; | ||
taxExemptionExpirationDate?: Date | undefined; | ||
@@ -736,3 +736,3 @@ taxExemptionId?: string | undefined; | ||
addresses?: Address[]; | ||
bidder?: CreateBidderDTO | undefined; | ||
bidder?: Bidder | undefined; | ||
company?: string | undefined; | ||
@@ -753,3 +753,3 @@ defaultImage?: RelationEntity | undefined; | ||
registrationState?: RegistrationState; | ||
staff?: CreateStaffDTO | undefined; | ||
staff?: Staff | undefined; | ||
taxExemptionExpirationDate?: Date | undefined; | ||
@@ -760,12 +760,12 @@ taxExemptionId?: string | undefined; | ||
} | ||
export declare abstract class CustomFieldsDTO implements ICustomFieldsDTO { | ||
export declare abstract class ExtensibleItem implements IExtensibleItem { | ||
customFields?: { | ||
[key: string]: any; | ||
}; | ||
constructor(data?: ICustomFieldsDTO); | ||
constructor(data?: IExtensibleItem); | ||
init(_data?: any): void; | ||
static fromJS(data: any): CustomFieldsDTO; | ||
static fromJS(data: any): ExtensibleItem; | ||
toJSON(data?: any): any; | ||
} | ||
export interface ICustomFieldsDTO { | ||
export interface IExtensibleItem { | ||
customFields?: { | ||
@@ -775,38 +775,38 @@ [key: string]: any; | ||
} | ||
export declare class CreateBidderDTO extends CustomFieldsDTO implements ICreateBidderDTO { | ||
onlineBidderNumber?: number | undefined; | ||
onsiteBidderNumber?: number | undefined; | ||
constructor(data?: ICreateBidderDTO); | ||
export declare class Bidder extends ExtensibleItem implements IBidder { | ||
onlineBidderNumber?: string | undefined; | ||
onsiteBidderNumber?: string | undefined; | ||
constructor(data?: IBidder); | ||
init(_data?: any): void; | ||
static fromJS(data: any): CreateBidderDTO; | ||
static fromJS(data: any): Bidder; | ||
toJSON(data?: any): any; | ||
} | ||
export interface ICreateBidderDTO extends ICustomFieldsDTO { | ||
onlineBidderNumber?: number | undefined; | ||
onsiteBidderNumber?: number | undefined; | ||
export interface IBidder extends IExtensibleItem { | ||
onlineBidderNumber?: string | undefined; | ||
onsiteBidderNumber?: string | undefined; | ||
} | ||
export declare class CreateStaffDTO extends CustomFieldsDTO implements ICreateStaffDTO { | ||
export declare class Staff extends ExtensibleItem implements IStaff { | ||
commission?: number | undefined; | ||
industryIds?: string[]; | ||
industries?: RelationEntity[]; | ||
stateAbbreviations?: string[]; | ||
managerId?: string | undefined; | ||
officeIds?: string[]; | ||
manager?: RelationEntity | undefined; | ||
offices?: RelationEntity[]; | ||
representative?: boolean; | ||
requiresApproval?: boolean; | ||
showStaffExternally: boolean; | ||
showStaffExternally?: boolean; | ||
title?: string | undefined; | ||
constructor(data?: ICreateStaffDTO); | ||
constructor(data?: IStaff); | ||
init(_data?: any): void; | ||
static fromJS(data: any): CreateStaffDTO; | ||
static fromJS(data: any): Staff; | ||
toJSON(data?: any): any; | ||
} | ||
export interface ICreateStaffDTO extends ICustomFieldsDTO { | ||
export interface IStaff extends IExtensibleItem { | ||
commission?: number | undefined; | ||
industryIds?: string[]; | ||
industries?: RelationEntity[]; | ||
stateAbbreviations?: string[]; | ||
managerId?: string | undefined; | ||
officeIds?: string[]; | ||
manager?: RelationEntity | undefined; | ||
offices?: RelationEntity[]; | ||
representative?: boolean; | ||
requiresApproval?: boolean; | ||
showStaffExternally: boolean; | ||
showStaffExternally?: boolean; | ||
title?: string | undefined; | ||
@@ -813,0 +813,0 @@ } |
{ | ||
"name": "@steffesgroup/steffes-auth", | ||
"version": "2.1.2", | ||
"version": "2.1.3", | ||
"description": "Steffes Auth", | ||
@@ -5,0 +5,0 @@ "main": "dist/api.js", |
Sorry, the diff of this file is too big to display
162720