Skip to content

Commit

Permalink
build from latest OAS
Browse files Browse the repository at this point in the history
  • Loading branch information
sangeet-joy_xero committed Jun 28, 2024
1 parent 5ec0b8a commit 86580f7
Show file tree
Hide file tree
Showing 9 changed files with 32 additions and 32 deletions.
16 changes: 8 additions & 8 deletions docs/accounting/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2883,7 +2883,7 @@
"minItems" : 1,
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/BankTransactions"
"$ref" : "#/components/schemas/BankTransaction"
}
}
},
Expand Down Expand Up @@ -2912,7 +2912,7 @@
"minItems" : 1,
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/Contacts"
"$ref" : "#/components/schemas/Contact"
}
}
},
Expand Down Expand Up @@ -2941,7 +2941,7 @@
"minItems" : 1,
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/CreditNotes"
"$ref" : "#/components/schemas/CreditNote"
}
}
},
Expand Down Expand Up @@ -2999,7 +2999,7 @@
"minItems" : 1,
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/ManualJournals"
"$ref" : "#/components/schemas/ManualJournal"
}
}
},
Expand Down Expand Up @@ -3028,7 +3028,7 @@
"minItems" : 1,
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/Overpayments"
"$ref" : "#/components/schemas/Overpayment"
}
}
},
Expand Down Expand Up @@ -3057,7 +3057,7 @@
"minItems" : 1,
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/Payments"
"$ref" : "#/components/schemas/Payment"
}
}
},
Expand Down Expand Up @@ -3086,7 +3086,7 @@
"minItems" : 1,
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/Prepayments"
"$ref" : "#/components/schemas/Prepayment"
}
}
},
Expand Down Expand Up @@ -3115,7 +3115,7 @@
"minItems" : 1,
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/PurchaseOrders"
"$ref" : "#/components/schemas/PurchaseOrder"
}
}
},
Expand Down
6 changes: 3 additions & 3 deletions src/gen/model/accounting/getBankTransactionsResponse.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { BankTransactions } from '././bankTransactions';
import { BankTransaction } from '././bankTransaction';
import { PageInfo } from '././pageInfo';

export class GetBankTransactionsResponse {
Expand All @@ -7,7 +7,7 @@ export class GetBankTransactionsResponse {
'providerName'?: string;
'dateTimeUTC'?: string;
'pageInfo'?: PageInfo;
'bankTransactions'?: Array<BankTransactions>;
'bankTransactions'?: Array<BankTransaction>;

static discriminator: string | undefined = undefined;

Expand Down Expand Up @@ -40,7 +40,7 @@ export class GetBankTransactionsResponse {
{
"name": "bankTransactions",
"baseName": "BankTransactions",
"type": "Array<BankTransactions>"
"type": "Array<BankTransaction>"
} ];

static getAttributeTypeMap() {
Expand Down
6 changes: 3 additions & 3 deletions src/gen/model/accounting/getContactsResponse.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Contacts } from '././contacts';
import { Contact } from '././contact';
import { PageInfo } from '././pageInfo';

export class GetContactsResponse {
Expand All @@ -7,7 +7,7 @@ export class GetContactsResponse {
'providerName'?: string;
'dateTimeUTC'?: string;
'pageInfo'?: PageInfo;
'contacts'?: Array<Contacts>;
'contacts'?: Array<Contact>;

static discriminator: string | undefined = undefined;

Expand Down Expand Up @@ -40,7 +40,7 @@ export class GetContactsResponse {
{
"name": "contacts",
"baseName": "Contacts",
"type": "Array<Contacts>"
"type": "Array<Contact>"
} ];

static getAttributeTypeMap() {
Expand Down
6 changes: 3 additions & 3 deletions src/gen/model/accounting/getCreditNotesResponse.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CreditNotes } from '././creditNotes';
import { CreditNote } from '././creditNote';
import { PageInfo } from '././pageInfo';

export class GetCreditNotesResponse {
Expand All @@ -7,7 +7,7 @@ export class GetCreditNotesResponse {
'providerName'?: string;
'dateTimeUTC'?: string;
'pageInfo'?: PageInfo;
'creditNotes'?: Array<CreditNotes>;
'creditNotes'?: Array<CreditNote>;

static discriminator: string | undefined = undefined;

Expand Down Expand Up @@ -40,7 +40,7 @@ export class GetCreditNotesResponse {
{
"name": "creditNotes",
"baseName": "CreditNotes",
"type": "Array<CreditNotes>"
"type": "Array<CreditNote>"
} ];

static getAttributeTypeMap() {
Expand Down
6 changes: 3 additions & 3 deletions src/gen/model/accounting/getManualJournalsResponse.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ManualJournals } from '././manualJournals';
import { ManualJournal } from '././manualJournal';
import { PageInfo } from '././pageInfo';

export class GetManualJournalsResponse {
Expand All @@ -7,7 +7,7 @@ export class GetManualJournalsResponse {
'providerName'?: string;
'dateTimeUTC'?: string;
'pageInfo'?: PageInfo;
'manualJournals'?: Array<ManualJournals>;
'manualJournals'?: Array<ManualJournal>;

static discriminator: string | undefined = undefined;

Expand Down Expand Up @@ -40,7 +40,7 @@ export class GetManualJournalsResponse {
{
"name": "manualJournals",
"baseName": "ManualJournals",
"type": "Array<ManualJournals>"
"type": "Array<ManualJournal>"
} ];

static getAttributeTypeMap() {
Expand Down
6 changes: 3 additions & 3 deletions src/gen/model/accounting/getOverpaymentsResponse.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Overpayments } from '././overpayments';
import { Overpayment } from '././overpayment';
import { PageInfo } from '././pageInfo';

export class GetOverpaymentsResponse {
Expand All @@ -7,7 +7,7 @@ export class GetOverpaymentsResponse {
'providerName'?: string;
'dateTimeUTC'?: string;
'pageInfo'?: PageInfo;
'overpayments'?: Array<Overpayments>;
'overpayments'?: Array<Overpayment>;

static discriminator: string | undefined = undefined;

Expand Down Expand Up @@ -40,7 +40,7 @@ export class GetOverpaymentsResponse {
{
"name": "overpayments",
"baseName": "Overpayments",
"type": "Array<Overpayments>"
"type": "Array<Overpayment>"
} ];

static getAttributeTypeMap() {
Expand Down
6 changes: 3 additions & 3 deletions src/gen/model/accounting/getPaymentsResponse.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { PageInfo } from '././pageInfo';
import { Payments } from '././payments';
import { Payment } from '././payment';

export class GetPaymentsResponse {
'id'?: string;
'status'?: string;
'providerName'?: string;
'dateTimeUTC'?: string;
'pageInfo'?: PageInfo;
'payments'?: Array<Payments>;
'payments'?: Array<Payment>;

static discriminator: string | undefined = undefined;

Expand Down Expand Up @@ -40,7 +40,7 @@ export class GetPaymentsResponse {
{
"name": "payments",
"baseName": "Payments",
"type": "Array<Payments>"
"type": "Array<Payment>"
} ];

static getAttributeTypeMap() {
Expand Down
6 changes: 3 additions & 3 deletions src/gen/model/accounting/getPrepaymentsResponse.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { PageInfo } from '././pageInfo';
import { Prepayments } from '././prepayments';
import { Prepayment } from '././prepayment';

export class GetPrepaymentsResponse {
'id'?: string;
'status'?: string;
'providerName'?: string;
'dateTimeUTC'?: string;
'pageInfo'?: PageInfo;
'prepayments'?: Array<Prepayments>;
'prepayments'?: Array<Prepayment>;

static discriminator: string | undefined = undefined;

Expand Down Expand Up @@ -40,7 +40,7 @@ export class GetPrepaymentsResponse {
{
"name": "prepayments",
"baseName": "Prepayments",
"type": "Array<Prepayments>"
"type": "Array<Prepayment>"
} ];

static getAttributeTypeMap() {
Expand Down
6 changes: 3 additions & 3 deletions src/gen/model/accounting/getPurchaseOrdersResponse.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { PageInfo } from '././pageInfo';
import { PurchaseOrders } from '././purchaseOrders';
import { PurchaseOrder } from '././purchaseOrder';

export class GetPurchaseOrdersResponse {
'id'?: string;
'status'?: string;
'providerName'?: string;
'dateTimeUTC'?: string;
'pageInfo'?: PageInfo;
'purchaseOrders'?: Array<PurchaseOrders>;
'purchaseOrders'?: Array<PurchaseOrder>;

static discriminator: string | undefined = undefined;

Expand Down Expand Up @@ -40,7 +40,7 @@ export class GetPurchaseOrdersResponse {
{
"name": "purchaseOrders",
"baseName": "PurchaseOrders",
"type": "Array<PurchaseOrders>"
"type": "Array<PurchaseOrder>"
} ];

static getAttributeTypeMap() {
Expand Down

0 comments on commit 86580f7

Please sign in to comment.