Skip to content

Commit

Permalink
Merge branch 'master' into TRNTYUI-1184
Browse files Browse the repository at this point in the history
merged master into branch
  • Loading branch information
thomashilz committed Mar 15, 2024
2 parents d8e8290 + 5b05aaa commit 1015a2d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion diagram.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 8 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,9 @@ export interface JsonResponseDataBasicUser extends Result {
export interface JsonResponseDataBillingEvent extends Result {
data: DomainRobotModels.BillingEvent[];
}
export interface JsonResponseDataBillingEventBulk extends Result {
data: DomainRobotModels.BillingEvent[][];
}
export interface JsonResponseDataBillingLimit extends Result {
data: DomainRobotModels.BillingLimit[];
}
Expand Down Expand Up @@ -315,6 +318,9 @@ export interface JsonResponseDataServiceUsersProfile extends Result {
export interface JsonResponseDataSubjectProduct extends Result {
data: DomainRobotModels.SubjectProduct[];
}
export interface JsonResponseDataSubjectProductBulk extends Result {
data: DomainRobotModels.SubjectProduct[][];
}
export interface JsonResponseDataContactVerification extends Result {
data: DomainRobotModels.ContactVerification[];
}
Expand Down Expand Up @@ -707,6 +713,7 @@ export namespace DomainRobotModels {
discountNgtld?: number;
discountCertificate?: number;
discountValid?: string;
dataIncorrect?: boolean
invoiceLanguage?: string;
taxable?: boolean;
card?: Card;
Expand Down Expand Up @@ -1981,6 +1988,7 @@ export namespace DomainRobotModels {
fname?: string
lname?: string
type?: ContactType
noSap?: boolean
}
export class CustomerDocument {
constructor(config?: CustomerDocument);
Expand Down Expand Up @@ -3881,7 +3889,6 @@ export namespace DomainRobotModels {
priceList?: PriceList;
from?: string;
until?: string;
relative?: string;
}

export class PriceChange {
Expand Down Expand Up @@ -3954,7 +3961,6 @@ export namespace DomainRobotModels {
businessCase?: GenericLabelEntity;
priceChange?: PriceChange;
taskComment?: string
relative?: string;
}

export class PriceData {
Expand Down

0 comments on commit 1015a2d

Please sign in to comment.