Skip to content

Commit

Permalink
Merge pull request #142 from huiz1990/TRNTYUI-1346
Browse files Browse the repository at this point in the history
TRNTYUI-1346
  • Loading branch information
thomashilz authored Nov 26, 2024
2 parents 301a3b1 + 3a0e96f commit f6689f6
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ export type DomainStudioDomainStatus = "FREE" | "ASSIGNED" | "MARKET" | "PREMIUM
export type DomainStudioServiceStatus = "RUNNING" | "SUCCESS" | "FAILED" | "TIMEOUT";
export type ExchangeCurrency = 'EUR' | 'USD' | 'GBP' | 'CNY' | 'JPY' | 'CHF';
export type ExecutionTypeConstants = "DATE" | "EXPIRE" | "NOW";
export type GenderConstants = "RUNNING" | "SUCCESS" | "FAILED" | "TIMEOUT";
export type GenderConstants = 'MALE' | 'FEMALE';
export type GenericStatusConstants = "PENDING" | "SUCCESS" | "FAILED" | "NOT_SET";
export type GlobalSignPickupMethod = "EDGE_IE_COMPATIBILITY_MODE" | "FORTIFY";
export type HkDocumentTypeConstants = "HKID" | "OTHID" | "PASSNO" | "BIRTHCERT" | "OTHIDV" | "BR" | "CI" | "CRS" | "HKSARG" | "HKORDINANCE" | "OTHORG";
Expand Down Expand Up @@ -735,7 +735,7 @@ export namespace DomainRobotModels {
contracts?: CustomerContract[];
billingUsers?: BasicUser[];
comments?: Comment[];
contacts?: basicCustomerContact[];
contacts?: BasicCustomerContact[];
account?: Account;
priceListEntities?: CustomerPriceList[];
addPriceListEntities?: CustomerPriceList[];
Expand Down Expand Up @@ -796,14 +796,10 @@ export namespace DomainRobotModels {
}[]
}

export class basicCustomerContact {
constructor(config?: basicCustomerContact);
export class BasicCustomerContact {
constructor(config?: BasicCustomerContact);
}
export interface basicCustomerContact {
created?: string;
updated?: string;
owner?: BasicUser;
updater?: BasicUser;
export interface BasicCustomerContact {
id?: number;
customer?: GenericCustomer;
type?: ContactType;
Expand All @@ -813,15 +809,18 @@ export namespace DomainRobotModels {
label?: string;
language?: string;
gender?: GenderConstants;
address?: string[];
postalCode?: string;
city?: string;
country?: string;
state?: string;
phones?: string[];
faxes?: string[];
email?: string;
address?: string[];
notice?: string;
owner?: BasicUser;
updater?: BasicUser;
created?: string;
updated?: string;
}

export class BasicCustomerSpool {
Expand Down

0 comments on commit f6689f6

Please sign in to comment.