From 9fa8420431019ddd38cc49230ce82be9b571a785 Mon Sep 17 00:00:00 2001 From: serknight Date: Thu, 6 Feb 2020 13:49:29 -0700 Subject: [PATCH 01/21] new npm cut, and the file upload fix + quotes updates, and line item tracking --- package.json | 2 +- src/gen/api/accountingApi.ts | 11 +++++++--- src/gen/model/accounting/lineItemTracking.ts | 9 ++++++++ src/gen/model/accounting/models.ts | 3 +++ src/gen/model/accounting/quote.ts | 12 +++++------ .../model/accounting/quoteLineAmountTypes.ts | 21 +++++++++++++++++++ 6 files changed, 48 insertions(+), 10 deletions(-) create mode 100644 src/gen/model/accounting/quoteLineAmountTypes.ts diff --git a/package.json b/package.json index 9a6d6943..da223982 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xero-node", - "version": "4.1.5", + "version": "4.1.6", "description": "Xero NodeJS OAuth 2.0 client for xero-node", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/src/gen/api/accountingApi.ts b/src/gen/api/accountingApi.ts index 2f8326ec..540b24fb 100644 --- a/src/gen/api/accountingApi.ts +++ b/src/gen/api/accountingApi.ts @@ -240,7 +240,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -2077,7 +2077,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -4355,6 +4355,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + }; let authenticationPromise = Promise.resolve(); @@ -4420,6 +4421,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + }; let authenticationPromise = Promise.resolve(); @@ -4485,6 +4487,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + }; let authenticationPromise = Promise.resolve(); @@ -4550,6 +4553,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + }; let authenticationPromise = Promise.resolve(); @@ -4832,7 +4836,8 @@ export class AccountingApi { qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, - useQuerystring: this._useQuerystring,json: true, + useQuerystring: this._useQuerystring, + body: ObjectSerializer.serialize(requestEmpty, "RequestEmpty") }; diff --git a/src/gen/model/accounting/lineItemTracking.ts b/src/gen/model/accounting/lineItemTracking.ts index c9593702..a6862085 100644 --- a/src/gen/model/accounting/lineItemTracking.ts +++ b/src/gen/model/accounting/lineItemTracking.ts @@ -17,6 +17,10 @@ export class LineItemTracking { */ 'trackingCategoryID'?: string; /** + * The Xero identifier for a tracking category option + */ + 'trackingOptionID'?: string; + /** * The name of the tracking category */ 'name'?: string; @@ -33,6 +37,11 @@ export class LineItemTracking { "baseName": "TrackingCategoryID", "type": "string" }, + { + "name": "trackingOptionID", + "baseName": "TrackingOptionID", + "type": "string" + }, { "name": "name", "baseName": "Name", diff --git a/src/gen/model/accounting/models.ts b/src/gen/model/accounting/models.ts index 9ace77d1..2d244ee7 100644 --- a/src/gen/model/accounting/models.ts +++ b/src/gen/model/accounting/models.ts @@ -78,6 +78,7 @@ export * from './purchase'; export * from './purchaseOrder'; export * from './purchaseOrders'; export * from './quote'; +export * from './quoteLineAmountTypes'; export * from './quoteStatusCodes'; export * from './quotes'; export * from './receipt'; @@ -193,6 +194,7 @@ import { Purchase } from './purchase'; import { PurchaseOrder } from './purchaseOrder'; import { PurchaseOrders } from './purchaseOrders'; import { Quote } from './quote'; +import { QuoteLineAmountTypes } from './quoteLineAmountTypes'; import { QuoteStatusCodes } from './quoteStatusCodes'; import { Quotes } from './quotes'; import { Receipt } from './receipt'; @@ -282,6 +284,7 @@ let enumsMap: {[index: string]: any} = { "Prepayment.TypeEnum": Prepayment.TypeEnum, "Prepayment.StatusEnum": Prepayment.StatusEnum, "PurchaseOrder.StatusEnum": PurchaseOrder.StatusEnum, + "QuoteLineAmountTypes": QuoteLineAmountTypes, "QuoteStatusCodes": QuoteStatusCodes, "Receipt.StatusEnum": Receipt.StatusEnum, "RepeatingInvoice.TypeEnum": RepeatingInvoice.TypeEnum, diff --git a/src/gen/model/accounting/quote.ts b/src/gen/model/accounting/quote.ts index e863deee..5e663ab8 100644 --- a/src/gen/model/accounting/quote.ts +++ b/src/gen/model/accounting/quote.ts @@ -12,8 +12,8 @@ import { Contact } from './contact'; import { CurrencyCode } from './currencyCode'; -import { LineAmountTypes } from './lineAmountTypes'; import { LineItem } from './lineItem'; +import { QuoteLineAmountTypes } from './quoteLineAmountTypes'; import { QuoteStatusCodes } from './quoteStatusCodes'; export class Quote { @@ -33,15 +33,15 @@ export class Quote { * Terms of the quote */ 'terms'?: string; - 'contact': Contact; + 'contact'?: Contact; /** * See LineItems */ - 'lineItems': Array; + 'lineItems'?: Array; /** * Date quote was issued – YYYY-MM-DD. If the Date element is not specified it will default to the current date based on the timezone setting of the organisation */ - 'date': string; + 'date'?: string; /** * Date the quote was issued (YYYY-MM-DD) */ @@ -92,7 +92,7 @@ export class Quote { * Last modified date UTC format */ 'updatedDateUTC'?: Date; - 'lineAmountTypes'?: LineAmountTypes; + 'lineAmountTypes'?: QuoteLineAmountTypes; static discriminator: string | undefined = undefined; @@ -205,7 +205,7 @@ export class Quote { { "name": "lineAmountTypes", "baseName": "LineAmountTypes", - "type": "LineAmountTypes" + "type": "QuoteLineAmountTypes" } ]; static getAttributeTypeMap() { diff --git a/src/gen/model/accounting/quoteLineAmountTypes.ts b/src/gen/model/accounting/quoteLineAmountTypes.ts new file mode 100644 index 00000000..825060cf --- /dev/null +++ b/src/gen/model/accounting/quoteLineAmountTypes.ts @@ -0,0 +1,21 @@ +/** + * Accounting API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 2.0.0 + * Contact: api@xero.com + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +/** +* Line amounts are exclusive of tax by default if you don’t specify this element. See Line Amount Types +*/ +export enum QuoteLineAmountTypes { + EXCLUSIVE = 'EXCLUSIVE', + INCLUSIVE = 'INCLUSIVE', + NOTAX = 'NOTAX' +} From ff911d0d99db358e5ebb6a51079f8bffb467dd46 Mon Sep 17 00:00:00 2001 From: serknight Date: Fri, 7 Feb 2020 14:44:50 -0700 Subject: [PATCH 02/21] changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5819ef3..f22dbc35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log --------- +## "version": "4.1.6" +* Fixed file uploads.. Image data was being force encoded in JSON.. Using mime type now +* adds some additional types and optionalitities to ceratin functions + ## "version": "4.1.5" * Relaxes required types for certain objects & parameters From feee7993bcca7a472c64c669682342ec500b3593 Mon Sep 17 00:00:00 2001 From: serknight Date: Fri, 7 Feb 2020 14:53:08 -0700 Subject: [PATCH 03/21] email fix --- src/gen/api/accountingApi.ts | 190 +---------------------------------- 1 file changed, 1 insertion(+), 189 deletions(-) diff --git a/src/gen/api/accountingApi.ts b/src/gen/api/accountingApi.ts index 540b24fb..63a36acb 100644 --- a/src/gen/api/accountingApi.ts +++ b/src/gen/api/accountingApi.ts @@ -159,7 +159,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(account, "Account") }; @@ -240,7 +239,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string") }; @@ -338,7 +336,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -428,7 +425,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -499,7 +495,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") }; @@ -565,7 +560,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(bankTransfers, "BankTransfers") }; @@ -645,7 +639,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -734,7 +727,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -805,7 +797,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(batchPayments, "BatchPayments") }; @@ -878,7 +869,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -951,7 +941,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(paymentService, "PaymentService") }; @@ -1031,7 +1020,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -1114,7 +1102,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(contactGroups, "ContactGroups") }; @@ -1187,7 +1174,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -1260,7 +1246,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -1331,7 +1316,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -1404,7 +1388,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(allocations, "Allocations") }; @@ -1492,7 +1475,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -1582,7 +1564,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -1653,7 +1634,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(creditNotes, "CreditNotes") }; @@ -1718,7 +1698,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(currency, "Currency") }; @@ -1784,7 +1763,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(employee, "Employee") }; @@ -1850,7 +1828,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(employees, "Employees") }; @@ -1923,7 +1900,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -1989,7 +1965,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(expenseClaims, "ExpenseClaims") }; @@ -2077,7 +2052,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string") }; @@ -2167,7 +2141,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -2238,7 +2211,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(invoices, "Invoices") }; @@ -2311,7 +2283,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -2382,7 +2353,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(items, "Items") }; @@ -2448,7 +2418,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(linkedTransaction, "LinkedTransaction") }; @@ -2514,7 +2483,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(manualJournal, "ManualJournal") }; @@ -2595,7 +2563,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -2678,7 +2645,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(manualJournals, "ManualJournals") }; @@ -2751,7 +2717,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(allocation, "Allocation") }; @@ -2824,7 +2789,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(allocations, "Allocations") }; @@ -2897,7 +2861,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -2963,7 +2926,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(payment, "Payment") }; @@ -3036,7 +2998,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3102,7 +3063,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(paymentServices, "PaymentServices") }; @@ -3168,7 +3128,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(payments, "Payments") }; @@ -3241,7 +3200,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(allocations, "Allocations") }; @@ -3314,7 +3272,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3387,7 +3344,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3458,7 +3414,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") }; @@ -3531,7 +3486,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3602,7 +3556,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(quotes, "Quotes") }; @@ -3668,7 +3621,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(receipts, "Receipts") }; @@ -3749,7 +3701,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -3839,7 +3790,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3920,7 +3870,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -4010,7 +3959,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -4076,7 +4024,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(taxRates, "TaxRates") }; @@ -4142,7 +4089,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(trackingCategory, "TrackingCategory") }; @@ -4215,7 +4161,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(trackingOption, "TrackingOption") }; @@ -4282,7 +4227,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -4355,7 +4299,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - }; let authenticationPromise = Promise.resolve(); @@ -4421,7 +4364,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - }; let authenticationPromise = Promise.resolve(); @@ -4487,7 +4429,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - }; let authenticationPromise = Promise.resolve(); @@ -4553,7 +4494,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - }; let authenticationPromise = Promise.resolve(); @@ -4625,7 +4565,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(payments, "Payments") }; @@ -4692,7 +4631,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -4765,7 +4703,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -4836,8 +4773,7 @@ export class AccountingApi { qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, - useQuerystring: this._useQuerystring, - + useQuerystring: this._useQuerystring,json: true, body: ObjectSerializer.serialize(requestEmpty, "RequestEmpty") }; @@ -4904,7 +4840,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5130,7 +5065,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5201,7 +5135,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5267,7 +5200,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5493,7 +5425,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5574,7 +5505,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5640,7 +5570,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5706,7 +5635,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5932,7 +5860,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5998,7 +5925,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6069,7 +5995,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6135,7 +6060,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6206,7 +6130,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6272,7 +6195,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6338,7 +6260,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6397,7 +6318,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6463,7 +6383,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6689,7 +6608,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6755,7 +6673,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6821,7 +6738,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6890,7 +6806,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6956,7 +6871,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7042,7 +6956,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7108,7 +7021,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7407,7 +7319,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7473,7 +7384,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7549,7 +7459,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7618,7 +7527,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7684,7 +7592,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7755,7 +7662,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7821,7 +7727,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7887,7 +7792,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7958,7 +7862,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8024,7 +7927,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8323,7 +8225,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8389,7 +8290,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8448,7 +8348,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8559,7 +8458,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8625,7 +8523,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8691,7 +8588,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8767,7 +8663,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8833,7 +8728,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8904,7 +8798,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8970,7 +8863,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9059,7 +8951,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9125,7 +9016,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9351,7 +9241,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9427,7 +9316,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9493,7 +9381,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9559,7 +9446,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9618,7 +9504,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9684,7 +9569,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9750,7 +9634,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9831,7 +9714,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9897,7 +9779,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9963,7 +9844,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10022,7 +9902,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10093,7 +9972,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10159,7 +10037,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10225,7 +10102,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10306,7 +10182,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10372,7 +10247,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10438,7 +10312,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10524,7 +10397,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10590,7 +10462,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10656,7 +10527,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10757,7 +10627,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10823,7 +10692,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11049,7 +10917,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11115,7 +10982,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11191,7 +11057,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11257,7 +11122,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11483,7 +11347,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11549,7 +11412,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11618,7 +11480,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11702,7 +11563,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11786,7 +11646,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11852,7 +11711,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11911,7 +11769,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12005,7 +11862,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12074,7 +11930,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12148,7 +12003,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12212,7 +12066,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12321,7 +12174,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12385,7 +12237,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12454,7 +12305,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12528,7 +12378,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12602,7 +12451,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12668,7 +12516,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12734,7 +12581,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12805,7 +12651,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12877,7 +12722,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(accounts, "Accounts") }; @@ -12958,7 +12802,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13048,7 +12891,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") }; @@ -13129,7 +12971,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13226,7 +13067,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13315,7 +13155,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -13395,7 +13234,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13485,7 +13323,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(contactGroups, "ContactGroups") }; @@ -13558,7 +13395,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(creditNotes, "CreditNotes") }; @@ -13639,7 +13475,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13729,7 +13564,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(employees, "Employees") }; @@ -13802,7 +13636,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(expenseClaims, "ExpenseClaims") }; @@ -13875,7 +13708,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(invoices, "Invoices") }; @@ -13956,7 +13788,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -14046,7 +13877,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(items, "Items") }; @@ -14119,7 +13949,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(linkedTransactions, "LinkedTransactions") }; @@ -14192,7 +14021,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(manualJournals, "ManualJournals") }; @@ -14273,7 +14101,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -14361,7 +14188,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") }; @@ -14432,7 +14258,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -14503,7 +14328,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(creditNotes, "CreditNotes") }; @@ -14574,7 +14398,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(invoices, "Invoices") }; @@ -14645,7 +14468,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(items, "Items") }; @@ -14716,7 +14538,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") }; @@ -14787,7 +14608,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(quotes, "Quotes") }; @@ -14860,7 +14680,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") }; @@ -14933,7 +14752,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(quotes, "Quotes") }; @@ -15006,7 +14824,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(receipts, "Receipts") }; @@ -15087,7 +14904,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -15185,7 +15001,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -15268,7 +15083,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(taxRates, "TaxRates") }; @@ -15341,7 +15155,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(trackingCategory, "TrackingCategory") }; @@ -15421,7 +15234,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(trackingOption, "TrackingOption") }; From b6a023639cc6784ea50b5c97eedc69d059940e81 Mon Sep 17 00:00:00 2001 From: serknight Date: Fri, 7 Feb 2020 14:53:57 -0700 Subject: [PATCH 04/21] email fix --- src/gen/api/accountingApi.ts | 183 +++++++++++++++++++++++++++++++++++ 1 file changed, 183 insertions(+) diff --git a/src/gen/api/accountingApi.ts b/src/gen/api/accountingApi.ts index 63a36acb..2f8326ec 100644 --- a/src/gen/api/accountingApi.ts +++ b/src/gen/api/accountingApi.ts @@ -159,6 +159,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(account, "Account") }; @@ -239,6 +240,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -336,6 +338,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -425,6 +428,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -495,6 +499,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") }; @@ -560,6 +565,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(bankTransfers, "BankTransfers") }; @@ -639,6 +645,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -727,6 +734,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -797,6 +805,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(batchPayments, "BatchPayments") }; @@ -869,6 +878,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -941,6 +951,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(paymentService, "PaymentService") }; @@ -1020,6 +1031,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -1102,6 +1114,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(contactGroups, "ContactGroups") }; @@ -1174,6 +1187,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -1246,6 +1260,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -1316,6 +1331,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -1388,6 +1404,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(allocations, "Allocations") }; @@ -1475,6 +1492,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -1564,6 +1582,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -1634,6 +1653,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(creditNotes, "CreditNotes") }; @@ -1698,6 +1718,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(currency, "Currency") }; @@ -1763,6 +1784,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(employee, "Employee") }; @@ -1828,6 +1850,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(employees, "Employees") }; @@ -1900,6 +1923,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -1965,6 +1989,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(expenseClaims, "ExpenseClaims") }; @@ -2052,6 +2077,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -2141,6 +2167,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -2211,6 +2238,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(invoices, "Invoices") }; @@ -2283,6 +2311,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -2353,6 +2382,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(items, "Items") }; @@ -2418,6 +2448,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(linkedTransaction, "LinkedTransaction") }; @@ -2483,6 +2514,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(manualJournal, "ManualJournal") }; @@ -2563,6 +2595,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -2645,6 +2678,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(manualJournals, "ManualJournals") }; @@ -2717,6 +2751,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(allocation, "Allocation") }; @@ -2789,6 +2824,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(allocations, "Allocations") }; @@ -2861,6 +2897,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -2926,6 +2963,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(payment, "Payment") }; @@ -2998,6 +3036,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3063,6 +3102,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(paymentServices, "PaymentServices") }; @@ -3128,6 +3168,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(payments, "Payments") }; @@ -3200,6 +3241,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(allocations, "Allocations") }; @@ -3272,6 +3314,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3344,6 +3387,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3414,6 +3458,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") }; @@ -3486,6 +3531,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3556,6 +3602,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(quotes, "Quotes") }; @@ -3621,6 +3668,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(receipts, "Receipts") }; @@ -3701,6 +3749,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -3790,6 +3839,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3870,6 +3920,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -3959,6 +4010,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -4024,6 +4076,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(taxRates, "TaxRates") }; @@ -4089,6 +4142,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(trackingCategory, "TrackingCategory") }; @@ -4161,6 +4215,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(trackingOption, "TrackingOption") }; @@ -4227,6 +4282,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -4565,6 +4621,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(payments, "Payments") }; @@ -4631,6 +4688,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -4703,6 +4761,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -4840,6 +4899,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5065,6 +5125,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5135,6 +5196,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5200,6 +5262,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5425,6 +5488,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5505,6 +5569,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5570,6 +5635,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5635,6 +5701,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5860,6 +5927,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5925,6 +5993,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5995,6 +6064,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6060,6 +6130,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6130,6 +6201,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6195,6 +6267,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6260,6 +6333,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6318,6 +6392,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6383,6 +6458,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6608,6 +6684,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6673,6 +6750,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6738,6 +6816,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6806,6 +6885,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6871,6 +6951,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6956,6 +7037,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7021,6 +7103,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7319,6 +7402,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7384,6 +7468,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7459,6 +7544,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7527,6 +7613,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7592,6 +7679,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7662,6 +7750,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7727,6 +7816,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7792,6 +7882,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7862,6 +7953,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7927,6 +8019,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8225,6 +8318,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8290,6 +8384,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8348,6 +8443,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8458,6 +8554,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8523,6 +8620,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8588,6 +8686,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8663,6 +8762,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8728,6 +8828,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8798,6 +8899,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8863,6 +8965,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8951,6 +9054,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9016,6 +9120,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9241,6 +9346,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9316,6 +9422,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9381,6 +9488,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9446,6 +9554,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9504,6 +9613,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9569,6 +9679,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9634,6 +9745,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9714,6 +9826,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9779,6 +9892,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9844,6 +9958,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9902,6 +10017,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9972,6 +10088,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10037,6 +10154,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10102,6 +10220,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10182,6 +10301,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10247,6 +10367,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10312,6 +10433,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10397,6 +10519,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10462,6 +10585,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10527,6 +10651,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10627,6 +10752,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10692,6 +10818,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10917,6 +11044,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10982,6 +11110,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11057,6 +11186,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11122,6 +11252,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11347,6 +11478,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11412,6 +11544,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11480,6 +11613,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11563,6 +11697,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11646,6 +11781,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11711,6 +11847,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11769,6 +11906,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11862,6 +12000,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11930,6 +12069,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12003,6 +12143,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12066,6 +12207,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12174,6 +12316,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12237,6 +12380,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12305,6 +12449,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12378,6 +12523,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12451,6 +12597,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12516,6 +12663,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12581,6 +12729,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12651,6 +12800,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12722,6 +12872,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(accounts, "Accounts") }; @@ -12802,6 +12953,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -12891,6 +13043,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") }; @@ -12971,6 +13124,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13067,6 +13221,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13155,6 +13310,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -13234,6 +13390,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13323,6 +13480,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(contactGroups, "ContactGroups") }; @@ -13395,6 +13553,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(creditNotes, "CreditNotes") }; @@ -13475,6 +13634,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13564,6 +13724,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(employees, "Employees") }; @@ -13636,6 +13797,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(expenseClaims, "ExpenseClaims") }; @@ -13708,6 +13870,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(invoices, "Invoices") }; @@ -13788,6 +13951,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13877,6 +14041,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(items, "Items") }; @@ -13949,6 +14114,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(linkedTransactions, "LinkedTransactions") }; @@ -14021,6 +14187,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(manualJournals, "ManualJournals") }; @@ -14101,6 +14268,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -14188,6 +14356,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") }; @@ -14258,6 +14427,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -14328,6 +14498,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(creditNotes, "CreditNotes") }; @@ -14398,6 +14569,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(invoices, "Invoices") }; @@ -14468,6 +14640,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(items, "Items") }; @@ -14538,6 +14711,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") }; @@ -14608,6 +14782,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(quotes, "Quotes") }; @@ -14680,6 +14855,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") }; @@ -14752,6 +14928,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(quotes, "Quotes") }; @@ -14824,6 +15001,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(receipts, "Receipts") }; @@ -14904,6 +15082,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -15001,6 +15180,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -15083,6 +15263,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(taxRates, "TaxRates") }; @@ -15155,6 +15336,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(trackingCategory, "TrackingCategory") }; @@ -15234,6 +15416,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(trackingOption, "TrackingOption") }; From be9f59eb0e94b28a0e436aab80815509ac855078 Mon Sep 17 00:00:00 2001 From: serknight Date: Fri, 7 Feb 2020 15:11:11 -0700 Subject: [PATCH 05/21] attachments us x- but not emailInvoice --- src/gen/api/accountingApi.ts | 43 ++++++++++++++++++++---------------- 1 file changed, 24 insertions(+), 19 deletions(-) diff --git a/src/gen/api/accountingApi.ts b/src/gen/api/accountingApi.ts index 2f8326ec..8bf831d3 100644 --- a/src/gen/api/accountingApi.ts +++ b/src/gen/api/accountingApi.ts @@ -240,7 +240,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -338,7 +338,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -645,7 +645,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -1031,7 +1031,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -1492,7 +1492,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -2077,7 +2077,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -2595,7 +2595,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -3749,7 +3749,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -3920,7 +3920,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -4355,6 +4355,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + }; let authenticationPromise = Promise.resolve(); @@ -4420,6 +4421,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + }; let authenticationPromise = Promise.resolve(); @@ -4485,6 +4487,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + }; let authenticationPromise = Promise.resolve(); @@ -4550,6 +4553,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + }; let authenticationPromise = Promise.resolve(); @@ -4832,7 +4836,8 @@ export class AccountingApi { qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, - useQuerystring: this._useQuerystring,json: true, + useQuerystring: this._useQuerystring, + body: ObjectSerializer.serialize(requestEmpty, "RequestEmpty") }; @@ -12953,7 +12958,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -13124,7 +13129,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -13221,7 +13226,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -13390,7 +13395,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -13634,7 +13639,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -13951,7 +13956,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -14268,7 +14273,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -15082,7 +15087,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -15180,7 +15185,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; From 2227d157cb3f3456b0a6f063c17a58df7affdf5c Mon Sep 17 00:00:00 2001 From: serknight Date: Fri, 7 Feb 2020 15:14:12 -0700 Subject: [PATCH 06/21] reset for test --- src/gen/api/accountingApi.ts | 43 ++++++++++++++++-------------------- 1 file changed, 19 insertions(+), 24 deletions(-) diff --git a/src/gen/api/accountingApi.ts b/src/gen/api/accountingApi.ts index 8bf831d3..2f8326ec 100644 --- a/src/gen/api/accountingApi.ts +++ b/src/gen/api/accountingApi.ts @@ -240,7 +240,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -338,7 +338,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -645,7 +645,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -1031,7 +1031,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -1492,7 +1492,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -2077,7 +2077,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -2595,7 +2595,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -3749,7 +3749,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -3920,7 +3920,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -4355,7 +4355,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - }; let authenticationPromise = Promise.resolve(); @@ -4421,7 +4420,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - }; let authenticationPromise = Promise.resolve(); @@ -4487,7 +4485,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - }; let authenticationPromise = Promise.resolve(); @@ -4553,7 +4550,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - }; let authenticationPromise = Promise.resolve(); @@ -4836,8 +4832,7 @@ export class AccountingApi { qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, - useQuerystring: this._useQuerystring, - + useQuerystring: this._useQuerystring,json: true, body: ObjectSerializer.serialize(requestEmpty, "RequestEmpty") }; @@ -12958,7 +12953,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13129,7 +13124,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13226,7 +13221,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13395,7 +13390,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13639,7 +13634,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13956,7 +13951,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -14273,7 +14268,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -15087,7 +15082,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -15185,7 +15180,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - + json: true, body: ObjectSerializer.serialize(body, "string") }; From 46fd69793e300522a8c72026ee262b9fa0f49c4c Mon Sep 17 00:00:00 2001 From: serknight Date: Fri, 7 Feb 2020 15:16:43 -0700 Subject: [PATCH 07/21] one --- src/gen/api/accountingApi.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gen/api/accountingApi.ts b/src/gen/api/accountingApi.ts index 2f8326ec..f80c1627 100644 --- a/src/gen/api/accountingApi.ts +++ b/src/gen/api/accountingApi.ts @@ -4832,7 +4832,7 @@ export class AccountingApi { qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, - useQuerystring: this._useQuerystring,json: true, + useQuerystring: this._useQuerystring, body: ObjectSerializer.serialize(requestEmpty, "RequestEmpty") }; From 720f2a6c827726d0d7bd187479f334f707df4ef7 Mon Sep 17 00:00:00 2001 From: serknight Date: Fri, 7 Feb 2020 15:18:23 -0700 Subject: [PATCH 08/21] one as well.. --- src/gen/api/accountingApi.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gen/api/accountingApi.ts b/src/gen/api/accountingApi.ts index f80c1627..2f8326ec 100644 --- a/src/gen/api/accountingApi.ts +++ b/src/gen/api/accountingApi.ts @@ -4832,7 +4832,7 @@ export class AccountingApi { qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, - useQuerystring: this._useQuerystring, + useQuerystring: this._useQuerystring,json: true, body: ObjectSerializer.serialize(requestEmpty, "RequestEmpty") }; From 0eff0cc4cdd8f62c56bb0fcb0fc195aa37dda8c6 Mon Sep 17 00:00:00 2001 From: serknight Date: Fri, 7 Feb 2020 15:34:09 -0700 Subject: [PATCH 09/21] formatting fixed --- src/gen/api/accountingApi.ts | 185 +---------------------------------- 1 file changed, 1 insertion(+), 184 deletions(-) diff --git a/src/gen/api/accountingApi.ts b/src/gen/api/accountingApi.ts index 2f8326ec..6798e46d 100644 --- a/src/gen/api/accountingApi.ts +++ b/src/gen/api/accountingApi.ts @@ -159,7 +159,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(account, "Account") }; @@ -240,7 +239,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -338,7 +336,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -428,7 +425,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -499,7 +495,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") }; @@ -565,7 +560,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(bankTransfers, "BankTransfers") }; @@ -645,7 +639,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -734,7 +727,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -805,7 +797,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(batchPayments, "BatchPayments") }; @@ -878,7 +869,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -951,7 +941,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(paymentService, "PaymentService") }; @@ -1031,7 +1020,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -1114,7 +1102,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(contactGroups, "ContactGroups") }; @@ -1187,7 +1174,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -1260,7 +1246,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -1331,7 +1316,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -1404,7 +1388,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(allocations, "Allocations") }; @@ -1492,7 +1475,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -1582,7 +1564,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -1653,7 +1634,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(creditNotes, "CreditNotes") }; @@ -1718,7 +1698,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(currency, "Currency") }; @@ -1784,7 +1763,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(employee, "Employee") }; @@ -1850,7 +1828,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(employees, "Employees") }; @@ -1923,7 +1900,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -1989,7 +1965,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(expenseClaims, "ExpenseClaims") }; @@ -2077,7 +2052,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -2167,7 +2141,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -2238,7 +2211,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(invoices, "Invoices") }; @@ -2311,7 +2283,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -2382,7 +2353,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(items, "Items") }; @@ -2448,7 +2418,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(linkedTransaction, "LinkedTransaction") }; @@ -2514,7 +2483,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(manualJournal, "ManualJournal") }; @@ -2595,7 +2563,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -2678,7 +2645,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(manualJournals, "ManualJournals") }; @@ -2751,7 +2717,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(allocation, "Allocation") }; @@ -2824,7 +2789,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(allocations, "Allocations") }; @@ -2897,7 +2861,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -2963,7 +2926,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(payment, "Payment") }; @@ -3036,7 +2998,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3102,7 +3063,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(paymentServices, "PaymentServices") }; @@ -3168,7 +3128,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(payments, "Payments") }; @@ -3241,7 +3200,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(allocations, "Allocations") }; @@ -3314,7 +3272,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3387,7 +3344,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3458,7 +3414,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") }; @@ -3531,7 +3486,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3602,7 +3556,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(quotes, "Quotes") }; @@ -3668,7 +3621,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(receipts, "Receipts") }; @@ -3749,7 +3701,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -3839,7 +3790,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3920,7 +3870,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -4010,7 +3959,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -4076,7 +4024,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(taxRates, "TaxRates") }; @@ -4142,7 +4089,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(trackingCategory, "TrackingCategory") }; @@ -4215,7 +4161,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(trackingOption, "TrackingOption") }; @@ -4282,7 +4227,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -4621,7 +4565,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(payments, "Payments") }; @@ -4688,7 +4631,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -4761,7 +4703,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -4832,7 +4773,7 @@ export class AccountingApi { qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, - useQuerystring: this._useQuerystring,json: true, + useQuerystring: this._useQuerystring, body: ObjectSerializer.serialize(requestEmpty, "RequestEmpty") }; @@ -4899,7 +4840,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5125,7 +5065,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5196,7 +5135,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5262,7 +5200,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5488,7 +5425,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5569,7 +5505,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5635,7 +5570,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5701,7 +5635,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5927,7 +5860,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5993,7 +5925,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6064,7 +5995,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6130,7 +6060,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6201,7 +6130,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6267,7 +6195,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6333,7 +6260,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6392,7 +6318,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6458,7 +6383,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6684,7 +6608,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6750,7 +6673,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6816,7 +6738,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6885,7 +6806,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6951,7 +6871,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7037,7 +6956,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7103,7 +7021,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7402,7 +7319,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7468,7 +7384,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7544,7 +7459,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7613,7 +7527,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7679,7 +7592,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7750,7 +7662,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7816,7 +7727,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7882,7 +7792,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7953,7 +7862,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8019,7 +7927,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8318,7 +8225,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8384,7 +8290,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8443,7 +8348,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8554,7 +8458,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8620,7 +8523,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8686,7 +8588,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8762,7 +8663,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8828,7 +8728,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8899,7 +8798,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8965,7 +8863,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9054,7 +8951,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9120,7 +9016,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9346,7 +9241,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9422,7 +9316,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9488,7 +9381,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9554,7 +9446,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9613,7 +9504,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9679,7 +9569,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9745,7 +9634,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9826,7 +9714,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9892,7 +9779,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9958,7 +9844,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10017,7 +9902,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10088,7 +9972,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10154,7 +10037,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10220,7 +10102,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10301,7 +10182,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10367,7 +10247,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10433,7 +10312,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10519,7 +10397,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10585,7 +10462,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10651,7 +10527,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10752,7 +10627,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10818,7 +10692,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11044,7 +10917,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11110,7 +10982,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11186,7 +11057,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11252,7 +11122,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11478,7 +11347,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11544,7 +11412,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11613,7 +11480,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11697,7 +11563,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11781,7 +11646,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11847,7 +11711,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11906,7 +11769,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12000,7 +11862,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12069,7 +11930,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12143,7 +12003,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12207,7 +12066,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12316,7 +12174,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12380,7 +12237,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12449,7 +12305,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12523,7 +12378,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12597,7 +12451,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12663,7 +12516,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12729,7 +12581,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12800,7 +12651,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12872,7 +12722,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(accounts, "Accounts") }; @@ -12953,7 +12802,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13043,7 +12891,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") }; @@ -13124,7 +12971,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13221,7 +13067,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13310,7 +13155,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -13390,7 +13234,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13480,7 +13323,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(contactGroups, "ContactGroups") }; @@ -13553,7 +13395,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(creditNotes, "CreditNotes") }; @@ -13634,7 +13475,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13724,7 +13564,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(employees, "Employees") }; @@ -13797,7 +13636,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(expenseClaims, "ExpenseClaims") }; @@ -13870,7 +13708,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(invoices, "Invoices") }; @@ -13951,7 +13788,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -14041,7 +13877,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(items, "Items") }; @@ -14114,7 +13949,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(linkedTransactions, "LinkedTransactions") }; @@ -14187,7 +14021,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(manualJournals, "ManualJournals") }; @@ -14268,7 +14101,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -14356,7 +14188,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") }; @@ -14427,7 +14258,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -14498,7 +14328,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(creditNotes, "CreditNotes") }; @@ -14569,7 +14398,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(invoices, "Invoices") }; @@ -14640,7 +14468,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(items, "Items") }; @@ -14711,7 +14538,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") }; @@ -14782,7 +14608,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(quotes, "Quotes") }; @@ -14855,7 +14680,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") }; @@ -14928,7 +14752,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(quotes, "Quotes") }; @@ -15001,7 +14824,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(receipts, "Receipts") }; @@ -15082,7 +14904,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -15180,7 +15001,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -15263,7 +15083,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(taxRates, "TaxRates") }; @@ -15336,7 +15155,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(trackingCategory, "TrackingCategory") }; @@ -15416,7 +15234,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(trackingOption, "TrackingOption") }; From 91ffaa4dd30a77eb2b0deb7ad08d477d3b07e676 Mon Sep 17 00:00:00 2001 From: serknight Date: Fri, 7 Feb 2020 15:37:40 -0700 Subject: [PATCH 10/21] email invoice --- src/gen/api/accountingApi.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gen/api/accountingApi.ts b/src/gen/api/accountingApi.ts index 6798e46d..09e4e47a 100644 --- a/src/gen/api/accountingApi.ts +++ b/src/gen/api/accountingApi.ts @@ -4774,6 +4774,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(requestEmpty, "RequestEmpty") }; From 525c27ba0af52cd58406f821bc1c06eeff2e6fbb Mon Sep 17 00:00:00 2001 From: serknight Date: Fri, 7 Feb 2020 15:42:53 -0700 Subject: [PATCH 11/21] add back --- src/gen/api/accountingApi.ts | 166 ++++++++++++++++++++++++++++++++++- 1 file changed, 165 insertions(+), 1 deletion(-) diff --git a/src/gen/api/accountingApi.ts b/src/gen/api/accountingApi.ts index 09e4e47a..d1bc1275 100644 --- a/src/gen/api/accountingApi.ts +++ b/src/gen/api/accountingApi.ts @@ -159,6 +159,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(account, "Account") }; @@ -425,6 +426,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -495,6 +497,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") }; @@ -560,6 +563,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(bankTransfers, "BankTransfers") }; @@ -727,6 +731,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -797,6 +802,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(batchPayments, "BatchPayments") }; @@ -869,6 +875,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -941,6 +948,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(paymentService, "PaymentService") }; @@ -1102,6 +1110,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(contactGroups, "ContactGroups") }; @@ -1174,6 +1183,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -1246,6 +1256,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -1316,6 +1327,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -1388,6 +1400,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(allocations, "Allocations") }; @@ -1564,6 +1577,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -1634,6 +1648,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(creditNotes, "CreditNotes") }; @@ -1698,6 +1713,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(currency, "Currency") }; @@ -1763,6 +1779,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(employee, "Employee") }; @@ -1828,6 +1845,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(employees, "Employees") }; @@ -1900,6 +1918,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -1965,6 +1984,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(expenseClaims, "ExpenseClaims") }; @@ -2141,6 +2161,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -2211,6 +2232,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(invoices, "Invoices") }; @@ -2283,6 +2305,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -2353,6 +2376,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(items, "Items") }; @@ -2418,6 +2442,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(linkedTransaction, "LinkedTransaction") }; @@ -2483,6 +2508,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(manualJournal, "ManualJournal") }; @@ -2645,6 +2671,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(manualJournals, "ManualJournals") }; @@ -2717,6 +2744,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(allocation, "Allocation") }; @@ -2789,6 +2817,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(allocations, "Allocations") }; @@ -2861,6 +2890,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -2926,6 +2956,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(payment, "Payment") }; @@ -2998,6 +3029,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3063,6 +3095,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(paymentServices, "PaymentServices") }; @@ -3128,6 +3161,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(payments, "Payments") }; @@ -3200,6 +3234,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(allocations, "Allocations") }; @@ -3272,6 +3307,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3344,6 +3380,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3414,6 +3451,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") }; @@ -3486,6 +3524,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3556,6 +3595,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(quotes, "Quotes") }; @@ -3621,6 +3661,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(receipts, "Receipts") }; @@ -3790,6 +3831,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3959,6 +4001,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -4024,6 +4067,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(taxRates, "TaxRates") }; @@ -4089,6 +4133,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(trackingCategory, "TrackingCategory") }; @@ -4161,6 +4206,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(trackingOption, "TrackingOption") }; @@ -4227,6 +4273,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -4565,6 +4612,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(payments, "Payments") }; @@ -4631,6 +4679,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -4703,6 +4752,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -4774,7 +4824,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(requestEmpty, "RequestEmpty") }; @@ -4841,6 +4890,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5066,6 +5116,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5136,6 +5187,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5201,6 +5253,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5426,6 +5479,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5506,6 +5560,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5571,6 +5626,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5636,6 +5692,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5861,6 +5918,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5926,6 +5984,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5996,6 +6055,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6061,6 +6121,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6131,6 +6192,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6196,6 +6258,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6261,6 +6324,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6319,6 +6383,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6384,6 +6449,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6609,6 +6675,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6674,6 +6741,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6739,6 +6807,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6807,6 +6876,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6872,6 +6942,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6957,6 +7028,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7022,6 +7094,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7320,6 +7393,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7385,6 +7459,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7460,6 +7535,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7528,6 +7604,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7593,6 +7670,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7663,6 +7741,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7728,6 +7807,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7793,6 +7873,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7863,6 +7944,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7928,6 +8010,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8226,6 +8309,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8291,6 +8375,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8349,6 +8434,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8459,6 +8545,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8524,6 +8611,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8589,6 +8677,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8664,6 +8753,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8729,6 +8819,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8799,6 +8890,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8864,6 +8956,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8952,6 +9045,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9017,6 +9111,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9242,6 +9337,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9317,6 +9413,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9382,6 +9479,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9447,6 +9545,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9505,6 +9604,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9570,6 +9670,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9635,6 +9736,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9715,6 +9817,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9780,6 +9883,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9845,6 +9949,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9903,6 +10008,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9973,6 +10079,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10038,6 +10145,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10103,6 +10211,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10183,6 +10292,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10248,6 +10358,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10313,6 +10424,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10398,6 +10510,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10463,6 +10576,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10528,6 +10642,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10628,6 +10743,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10693,6 +10809,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10918,6 +11035,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10983,6 +11101,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11058,6 +11177,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11123,6 +11243,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11348,6 +11469,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11413,6 +11535,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11481,6 +11604,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11564,6 +11688,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11647,6 +11772,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11712,6 +11838,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11770,6 +11897,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11863,6 +11991,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11931,6 +12060,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12004,6 +12134,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12067,6 +12198,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12175,6 +12307,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12238,6 +12371,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12306,6 +12440,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12379,6 +12514,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12452,6 +12588,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12517,6 +12654,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12582,6 +12720,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12652,6 +12791,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12723,6 +12863,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(accounts, "Accounts") }; @@ -12892,6 +13033,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") }; @@ -13156,6 +13298,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -13324,6 +13467,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(contactGroups, "ContactGroups") }; @@ -13396,6 +13540,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(creditNotes, "CreditNotes") }; @@ -13565,6 +13710,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(employees, "Employees") }; @@ -13637,6 +13783,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(expenseClaims, "ExpenseClaims") }; @@ -13709,6 +13856,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(invoices, "Invoices") }; @@ -13878,6 +14026,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(items, "Items") }; @@ -13950,6 +14099,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(linkedTransactions, "LinkedTransactions") }; @@ -14022,6 +14172,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(manualJournals, "ManualJournals") }; @@ -14189,6 +14340,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") }; @@ -14259,6 +14411,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -14329,6 +14482,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(creditNotes, "CreditNotes") }; @@ -14399,6 +14553,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(invoices, "Invoices") }; @@ -14469,6 +14624,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(items, "Items") }; @@ -14539,6 +14695,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") }; @@ -14609,6 +14766,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(quotes, "Quotes") }; @@ -14681,6 +14839,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") }; @@ -14753,6 +14912,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(quotes, "Quotes") }; @@ -14825,6 +14985,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(receipts, "Receipts") }; @@ -15084,6 +15245,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(taxRates, "TaxRates") }; @@ -15156,6 +15318,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(trackingCategory, "TrackingCategory") }; @@ -15235,6 +15398,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(trackingOption, "TrackingOption") }; From 0160a86e686c4fd0c49127ce186c5d9731beb376 Mon Sep 17 00:00:00 2001 From: serknight Date: Fri, 7 Feb 2020 15:45:04 -0700 Subject: [PATCH 12/21] fix spacing --- src/gen/api/accountingApi.ts | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/gen/api/accountingApi.ts b/src/gen/api/accountingApi.ts index d1bc1275..f80c1627 100644 --- a/src/gen/api/accountingApi.ts +++ b/src/gen/api/accountingApi.ts @@ -240,6 +240,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -337,6 +338,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -643,6 +645,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -1028,6 +1031,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -1488,6 +1492,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -2072,6 +2077,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -2589,6 +2595,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -3742,6 +3749,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -3912,6 +3920,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -12944,6 +12953,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13114,6 +13124,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13210,6 +13221,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13378,6 +13390,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13621,6 +13634,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -13937,6 +13951,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -14253,6 +14268,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -15066,6 +15082,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; @@ -15163,6 +15180,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(body, "string") }; From 07bf1363382d2420e8db78135a28293796d12297 Mon Sep 17 00:00:00 2001 From: serknight Date: Fri, 7 Feb 2020 16:01:17 -0700 Subject: [PATCH 13/21] empty email --- src/gen/api/accountingApi.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gen/api/accountingApi.ts b/src/gen/api/accountingApi.ts index f80c1627..6d7ca2ad 100644 --- a/src/gen/api/accountingApi.ts +++ b/src/gen/api/accountingApi.ts @@ -4833,6 +4833,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(requestEmpty, "RequestEmpty") }; From 59facd02411c04609b26be73bcd0cfa0ac741553 Mon Sep 17 00:00:00 2001 From: serknight Date: Fri, 7 Feb 2020 16:02:27 -0700 Subject: [PATCH 14/21] attachemtns --- src/gen/api/accountingApi.ts | 42 ++++++++++++++++++++---------------- 1 file changed, 23 insertions(+), 19 deletions(-) diff --git a/src/gen/api/accountingApi.ts b/src/gen/api/accountingApi.ts index 6d7ca2ad..8bf831d3 100644 --- a/src/gen/api/accountingApi.ts +++ b/src/gen/api/accountingApi.ts @@ -240,7 +240,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -338,7 +338,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -645,7 +645,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -1031,7 +1031,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -1492,7 +1492,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -2077,7 +2077,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -2595,7 +2595,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -3749,7 +3749,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -3920,7 +3920,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -4355,6 +4355,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + }; let authenticationPromise = Promise.resolve(); @@ -4420,6 +4421,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + }; let authenticationPromise = Promise.resolve(); @@ -4485,6 +4487,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + }; let authenticationPromise = Promise.resolve(); @@ -4550,6 +4553,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + }; let authenticationPromise = Promise.resolve(); @@ -4833,7 +4837,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(requestEmpty, "RequestEmpty") }; @@ -12954,7 +12958,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -13125,7 +13129,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -13222,7 +13226,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -13391,7 +13395,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -13635,7 +13639,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -13952,7 +13956,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -14269,7 +14273,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -15083,7 +15087,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; @@ -15181,7 +15185,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(body, "string") }; From 4f9ee1d4781cf9a170d465978e7daf247881f276 Mon Sep 17 00:00:00 2001 From: serknight Date: Fri, 7 Feb 2020 16:04:45 -0700 Subject: [PATCH 15/21] readability --- src/gen/api/accountingApi.ts | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/src/gen/api/accountingApi.ts b/src/gen/api/accountingApi.ts index 8bf831d3..d1bc1275 100644 --- a/src/gen/api/accountingApi.ts +++ b/src/gen/api/accountingApi.ts @@ -240,7 +240,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string") }; @@ -338,7 +337,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string") }; @@ -645,7 +643,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string") }; @@ -1031,7 +1028,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string") }; @@ -1492,7 +1488,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string") }; @@ -2077,7 +2072,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string") }; @@ -2595,7 +2589,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string") }; @@ -3749,7 +3742,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string") }; @@ -3920,7 +3912,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string") }; @@ -4355,7 +4346,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - }; let authenticationPromise = Promise.resolve(); @@ -4421,7 +4411,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - }; let authenticationPromise = Promise.resolve(); @@ -4487,7 +4476,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - }; let authenticationPromise = Promise.resolve(); @@ -4553,7 +4541,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - }; let authenticationPromise = Promise.resolve(); @@ -4837,7 +4824,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(requestEmpty, "RequestEmpty") }; @@ -12958,7 +12944,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string") }; @@ -13129,7 +13114,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string") }; @@ -13226,7 +13210,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string") }; @@ -13395,7 +13378,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string") }; @@ -13639,7 +13621,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string") }; @@ -13956,7 +13937,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string") }; @@ -14273,7 +14253,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string") }; @@ -15087,7 +15066,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string") }; @@ -15185,7 +15163,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string") }; From 789476f8a1a23d49e5ecadf642e5f2798c1655b6 Mon Sep 17 00:00:00 2001 From: serknight Date: Fri, 7 Feb 2020 16:08:29 -0700 Subject: [PATCH 16/21] nested under responses --- src/gen/api/accountingApi.ts | 166 +---------------------------------- 1 file changed, 1 insertion(+), 165 deletions(-) diff --git a/src/gen/api/accountingApi.ts b/src/gen/api/accountingApi.ts index d1bc1275..09e4e47a 100644 --- a/src/gen/api/accountingApi.ts +++ b/src/gen/api/accountingApi.ts @@ -159,7 +159,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(account, "Account") }; @@ -426,7 +425,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -497,7 +495,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") }; @@ -563,7 +560,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(bankTransfers, "BankTransfers") }; @@ -731,7 +727,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -802,7 +797,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(batchPayments, "BatchPayments") }; @@ -875,7 +869,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -948,7 +941,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(paymentService, "PaymentService") }; @@ -1110,7 +1102,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(contactGroups, "ContactGroups") }; @@ -1183,7 +1174,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -1256,7 +1246,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -1327,7 +1316,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -1400,7 +1388,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(allocations, "Allocations") }; @@ -1577,7 +1564,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -1648,7 +1634,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(creditNotes, "CreditNotes") }; @@ -1713,7 +1698,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(currency, "Currency") }; @@ -1779,7 +1763,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(employee, "Employee") }; @@ -1845,7 +1828,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(employees, "Employees") }; @@ -1918,7 +1900,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -1984,7 +1965,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(expenseClaims, "ExpenseClaims") }; @@ -2161,7 +2141,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -2232,7 +2211,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(invoices, "Invoices") }; @@ -2305,7 +2283,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -2376,7 +2353,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(items, "Items") }; @@ -2442,7 +2418,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(linkedTransaction, "LinkedTransaction") }; @@ -2508,7 +2483,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(manualJournal, "ManualJournal") }; @@ -2671,7 +2645,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(manualJournals, "ManualJournals") }; @@ -2744,7 +2717,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(allocation, "Allocation") }; @@ -2817,7 +2789,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(allocations, "Allocations") }; @@ -2890,7 +2861,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -2956,7 +2926,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(payment, "Payment") }; @@ -3029,7 +2998,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3095,7 +3063,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(paymentServices, "PaymentServices") }; @@ -3161,7 +3128,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(payments, "Payments") }; @@ -3234,7 +3200,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(allocations, "Allocations") }; @@ -3307,7 +3272,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3380,7 +3344,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3451,7 +3414,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") }; @@ -3524,7 +3486,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3595,7 +3556,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(quotes, "Quotes") }; @@ -3661,7 +3621,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(receipts, "Receipts") }; @@ -3831,7 +3790,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -4001,7 +3959,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -4067,7 +4024,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(taxRates, "TaxRates") }; @@ -4133,7 +4089,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(trackingCategory, "TrackingCategory") }; @@ -4206,7 +4161,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(trackingOption, "TrackingOption") }; @@ -4273,7 +4227,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -4612,7 +4565,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(payments, "Payments") }; @@ -4679,7 +4631,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -4752,7 +4703,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -4824,6 +4774,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(requestEmpty, "RequestEmpty") }; @@ -4890,7 +4841,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5116,7 +5066,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5187,7 +5136,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5253,7 +5201,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5479,7 +5426,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5560,7 +5506,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5626,7 +5571,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5692,7 +5636,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5918,7 +5861,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5984,7 +5926,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6055,7 +5996,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6121,7 +6061,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6192,7 +6131,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6258,7 +6196,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6324,7 +6261,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6383,7 +6319,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6449,7 +6384,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6675,7 +6609,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6741,7 +6674,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6807,7 +6739,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6876,7 +6807,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6942,7 +6872,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7028,7 +6957,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7094,7 +7022,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7393,7 +7320,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7459,7 +7385,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7535,7 +7460,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7604,7 +7528,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7670,7 +7593,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7741,7 +7663,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7807,7 +7728,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7873,7 +7793,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7944,7 +7863,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8010,7 +7928,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8309,7 +8226,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8375,7 +8291,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8434,7 +8349,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8545,7 +8459,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8611,7 +8524,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8677,7 +8589,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8753,7 +8664,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8819,7 +8729,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8890,7 +8799,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8956,7 +8864,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9045,7 +8952,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9111,7 +9017,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9337,7 +9242,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9413,7 +9317,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9479,7 +9382,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9545,7 +9447,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9604,7 +9505,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9670,7 +9570,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9736,7 +9635,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9817,7 +9715,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9883,7 +9780,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9949,7 +9845,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10008,7 +9903,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10079,7 +9973,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10145,7 +10038,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10211,7 +10103,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10292,7 +10183,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10358,7 +10248,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10424,7 +10313,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10510,7 +10398,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10576,7 +10463,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10642,7 +10528,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10743,7 +10628,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -10809,7 +10693,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11035,7 +10918,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11101,7 +10983,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11177,7 +11058,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11243,7 +11123,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11469,7 +11348,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11535,7 +11413,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11604,7 +11481,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11688,7 +11564,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11772,7 +11647,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11838,7 +11712,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11897,7 +11770,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11991,7 +11863,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12060,7 +11931,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12134,7 +12004,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12198,7 +12067,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12307,7 +12175,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12371,7 +12238,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12440,7 +12306,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12514,7 +12379,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12588,7 +12452,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12654,7 +12517,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12720,7 +12582,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12791,7 +12652,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -12863,7 +12723,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(accounts, "Accounts") }; @@ -13033,7 +12892,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") }; @@ -13298,7 +13156,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -13467,7 +13324,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(contactGroups, "ContactGroups") }; @@ -13540,7 +13396,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(creditNotes, "CreditNotes") }; @@ -13710,7 +13565,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(employees, "Employees") }; @@ -13783,7 +13637,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(expenseClaims, "ExpenseClaims") }; @@ -13856,7 +13709,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(invoices, "Invoices") }; @@ -14026,7 +13878,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(items, "Items") }; @@ -14099,7 +13950,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(linkedTransactions, "LinkedTransactions") }; @@ -14172,7 +14022,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(manualJournals, "ManualJournals") }; @@ -14340,7 +14189,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") }; @@ -14411,7 +14259,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -14482,7 +14329,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(creditNotes, "CreditNotes") }; @@ -14553,7 +14399,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(invoices, "Invoices") }; @@ -14624,7 +14469,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(items, "Items") }; @@ -14695,7 +14539,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") }; @@ -14766,7 +14609,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(quotes, "Quotes") }; @@ -14839,7 +14681,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") }; @@ -14912,7 +14753,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(quotes, "Quotes") }; @@ -14985,7 +14825,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(receipts, "Receipts") }; @@ -15245,7 +15084,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(taxRates, "TaxRates") }; @@ -15318,7 +15156,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(trackingCategory, "TrackingCategory") }; @@ -15398,7 +15235,6 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, body: ObjectSerializer.serialize(trackingOption, "TrackingOption") }; From 49732114aaa631e2dea0f01d0fc9ac7b0db6d0ea Mon Sep 17 00:00:00 2001 From: serknight Date: Fri, 7 Feb 2020 16:29:05 -0700 Subject: [PATCH 17/21] back to sq 1 --- src/gen/api/accountingApi.ts | 189 ++++++++++++++++++++++++++++++++++- 1 file changed, 188 insertions(+), 1 deletion(-) diff --git a/src/gen/api/accountingApi.ts b/src/gen/api/accountingApi.ts index 09e4e47a..8bf831d3 100644 --- a/src/gen/api/accountingApi.ts +++ b/src/gen/api/accountingApi.ts @@ -159,6 +159,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(account, "Account") }; @@ -239,6 +240,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + body: ObjectSerializer.serialize(body, "string") }; @@ -336,6 +338,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + body: ObjectSerializer.serialize(body, "string") }; @@ -425,6 +428,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -495,6 +499,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") }; @@ -560,6 +565,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(bankTransfers, "BankTransfers") }; @@ -639,6 +645,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + body: ObjectSerializer.serialize(body, "string") }; @@ -727,6 +734,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -797,6 +805,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(batchPayments, "BatchPayments") }; @@ -869,6 +878,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -941,6 +951,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(paymentService, "PaymentService") }; @@ -1020,6 +1031,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + body: ObjectSerializer.serialize(body, "string") }; @@ -1102,6 +1114,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(contactGroups, "ContactGroups") }; @@ -1174,6 +1187,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -1246,6 +1260,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -1316,6 +1331,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -1388,6 +1404,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(allocations, "Allocations") }; @@ -1475,6 +1492,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + body: ObjectSerializer.serialize(body, "string") }; @@ -1564,6 +1582,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -1634,6 +1653,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(creditNotes, "CreditNotes") }; @@ -1698,6 +1718,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(currency, "Currency") }; @@ -1763,6 +1784,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(employee, "Employee") }; @@ -1828,6 +1850,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(employees, "Employees") }; @@ -1900,6 +1923,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -1965,6 +1989,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(expenseClaims, "ExpenseClaims") }; @@ -2052,6 +2077,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + body: ObjectSerializer.serialize(body, "string") }; @@ -2141,6 +2167,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -2211,6 +2238,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(invoices, "Invoices") }; @@ -2283,6 +2311,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -2353,6 +2382,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(items, "Items") }; @@ -2418,6 +2448,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(linkedTransaction, "LinkedTransaction") }; @@ -2483,6 +2514,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(manualJournal, "ManualJournal") }; @@ -2563,6 +2595,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + body: ObjectSerializer.serialize(body, "string") }; @@ -2645,6 +2678,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(manualJournals, "ManualJournals") }; @@ -2717,6 +2751,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(allocation, "Allocation") }; @@ -2789,6 +2824,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(allocations, "Allocations") }; @@ -2861,6 +2897,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -2926,6 +2963,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(payment, "Payment") }; @@ -2998,6 +3036,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3063,6 +3102,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(paymentServices, "PaymentServices") }; @@ -3128,6 +3168,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(payments, "Payments") }; @@ -3200,6 +3241,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(allocations, "Allocations") }; @@ -3272,6 +3314,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3344,6 +3387,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3414,6 +3458,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") }; @@ -3486,6 +3531,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3556,6 +3602,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(quotes, "Quotes") }; @@ -3621,6 +3668,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(receipts, "Receipts") }; @@ -3701,6 +3749,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + body: ObjectSerializer.serialize(body, "string") }; @@ -3790,6 +3839,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -3870,6 +3920,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + body: ObjectSerializer.serialize(body, "string") }; @@ -3959,6 +4010,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; @@ -4024,6 +4076,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(taxRates, "TaxRates") }; @@ -4089,6 +4142,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(trackingCategory, "TrackingCategory") }; @@ -4161,6 +4215,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(trackingOption, "TrackingOption") }; @@ -4227,6 +4282,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -4299,6 +4355,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + }; let authenticationPromise = Promise.resolve(); @@ -4364,6 +4421,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + }; let authenticationPromise = Promise.resolve(); @@ -4429,6 +4487,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + }; let authenticationPromise = Promise.resolve(); @@ -4494,6 +4553,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + }; let authenticationPromise = Promise.resolve(); @@ -4565,6 +4625,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(payments, "Payments") }; @@ -4631,6 +4692,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -4703,6 +4765,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -4774,7 +4837,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + body: ObjectSerializer.serialize(requestEmpty, "RequestEmpty") }; @@ -4841,6 +4904,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5066,6 +5130,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5136,6 +5201,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5201,6 +5267,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5426,6 +5493,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5506,6 +5574,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5571,6 +5640,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5636,6 +5706,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5861,6 +5932,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5926,6 +5998,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5996,6 +6069,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6061,6 +6135,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6131,6 +6206,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6196,6 +6272,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6261,6 +6338,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6319,6 +6397,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6384,6 +6463,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6609,6 +6689,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6674,6 +6755,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6739,6 +6821,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6807,6 +6890,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6872,6 +6956,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6957,6 +7042,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7022,6 +7108,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7320,6 +7407,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7385,6 +7473,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7460,6 +7549,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7528,6 +7618,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7593,6 +7684,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7663,6 +7755,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7728,6 +7821,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7793,6 +7887,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7863,6 +7958,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7928,6 +8024,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8226,6 +8323,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8291,6 +8389,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8349,6 +8448,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8459,6 +8559,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8524,6 +8625,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8589,6 +8691,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8664,6 +8767,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8729,6 +8833,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8799,6 +8904,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8864,6 +8970,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8952,6 +9059,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9017,6 +9125,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9242,6 +9351,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9317,6 +9427,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9382,6 +9493,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9447,6 +9559,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9505,6 +9618,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9570,6 +9684,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9635,6 +9750,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9715,6 +9831,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9780,6 +9897,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9845,6 +9963,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9903,6 +10022,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9973,6 +10093,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10038,6 +10159,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10103,6 +10225,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10183,6 +10306,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10248,6 +10372,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10313,6 +10438,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10398,6 +10524,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10463,6 +10590,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10528,6 +10656,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10628,6 +10757,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10693,6 +10823,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10918,6 +11049,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10983,6 +11115,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11058,6 +11191,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11123,6 +11257,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11348,6 +11483,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11413,6 +11549,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11481,6 +11618,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11564,6 +11702,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11647,6 +11786,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11712,6 +11852,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11770,6 +11911,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11863,6 +12005,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11931,6 +12074,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12004,6 +12148,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12067,6 +12212,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12175,6 +12321,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12238,6 +12385,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12306,6 +12454,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12379,6 +12528,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12452,6 +12602,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12517,6 +12668,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12582,6 +12734,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12652,6 +12805,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12723,6 +12877,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(accounts, "Accounts") }; @@ -12803,6 +12958,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + body: ObjectSerializer.serialize(body, "string") }; @@ -12892,6 +13048,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") }; @@ -12972,6 +13129,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + body: ObjectSerializer.serialize(body, "string") }; @@ -13068,6 +13226,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + body: ObjectSerializer.serialize(body, "string") }; @@ -13156,6 +13315,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -13235,6 +13395,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + body: ObjectSerializer.serialize(body, "string") }; @@ -13324,6 +13485,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(contactGroups, "ContactGroups") }; @@ -13396,6 +13558,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(creditNotes, "CreditNotes") }; @@ -13476,6 +13639,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + body: ObjectSerializer.serialize(body, "string") }; @@ -13565,6 +13729,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(employees, "Employees") }; @@ -13637,6 +13802,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(expenseClaims, "ExpenseClaims") }; @@ -13709,6 +13875,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(invoices, "Invoices") }; @@ -13789,6 +13956,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + body: ObjectSerializer.serialize(body, "string") }; @@ -13878,6 +14046,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(items, "Items") }; @@ -13950,6 +14119,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(linkedTransactions, "LinkedTransactions") }; @@ -14022,6 +14192,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(manualJournals, "ManualJournals") }; @@ -14102,6 +14273,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + body: ObjectSerializer.serialize(body, "string") }; @@ -14189,6 +14361,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") }; @@ -14259,6 +14432,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(contacts, "Contacts") }; @@ -14329,6 +14503,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(creditNotes, "CreditNotes") }; @@ -14399,6 +14574,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(invoices, "Invoices") }; @@ -14469,6 +14645,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(items, "Items") }; @@ -14539,6 +14716,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") }; @@ -14609,6 +14787,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(quotes, "Quotes") }; @@ -14681,6 +14860,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") }; @@ -14753,6 +14933,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(quotes, "Quotes") }; @@ -14825,6 +15006,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(receipts, "Receipts") }; @@ -14905,6 +15087,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + body: ObjectSerializer.serialize(body, "string") }; @@ -15002,6 +15185,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + body: ObjectSerializer.serialize(body, "string") }; @@ -15084,6 +15268,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(taxRates, "TaxRates") }; @@ -15156,6 +15341,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(trackingCategory, "TrackingCategory") }; @@ -15235,6 +15421,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(trackingOption, "TrackingOption") }; From 69a1c1c9ae12a2677b36b137161b02af6686dd24 Mon Sep 17 00:00:00 2001 From: serknight Date: Mon, 10 Feb 2020 12:12:51 -0700 Subject: [PATCH 18/21] simplify json true --- src/gen/api/accountingApi.ts | 732 ++++++++++++++++++++++------------- 1 file changed, 454 insertions(+), 278 deletions(-) diff --git a/src/gen/api/accountingApi.ts b/src/gen/api/accountingApi.ts index 8bf831d3..be9f9a08 100644 --- a/src/gen/api/accountingApi.ts +++ b/src/gen/api/accountingApi.ts @@ -153,14 +153,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(account, "Account") + body: ObjectSerializer.serialize(account, "Account"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -234,14 +235,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - - body: ObjectSerializer.serialize(body, "string") + body: ObjectSerializer.serialize(body, "string"), }; let authenticationPromise = Promise.resolve(); @@ -332,14 +333,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - - body: ObjectSerializer.serialize(body, "string") + body: ObjectSerializer.serialize(body, "string"), }; let authenticationPromise = Promise.resolve(); @@ -422,14 +423,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -493,14 +495,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") + body: ObjectSerializer.serialize(bankTransactions, "BankTransactions"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -559,14 +562,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(bankTransfers, "BankTransfers") + body: ObjectSerializer.serialize(bankTransfers, "BankTransfers"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -639,14 +643,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - - body: ObjectSerializer.serialize(body, "string") + body: ObjectSerializer.serialize(body, "string"), }; let authenticationPromise = Promise.resolve(); @@ -728,14 +732,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -799,14 +804,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(batchPayments, "BatchPayments") + body: ObjectSerializer.serialize(batchPayments, "BatchPayments"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -872,14 +878,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -945,14 +952,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(paymentService, "PaymentService") + body: ObjectSerializer.serialize(paymentService, "PaymentService"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -1025,14 +1033,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - - body: ObjectSerializer.serialize(body, "string") + body: ObjectSerializer.serialize(body, "string"), }; let authenticationPromise = Promise.resolve(); @@ -1108,14 +1116,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(contactGroups, "ContactGroups") + body: ObjectSerializer.serialize(contactGroups, "ContactGroups"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -1181,14 +1190,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(contacts, "Contacts") + body: ObjectSerializer.serialize(contacts, "Contacts"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -1254,14 +1264,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -1325,14 +1336,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(contacts, "Contacts") + body: ObjectSerializer.serialize(contacts, "Contacts"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -1398,14 +1410,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(allocations, "Allocations") + body: ObjectSerializer.serialize(allocations, "Allocations"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -1486,14 +1499,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - - body: ObjectSerializer.serialize(body, "string") + body: ObjectSerializer.serialize(body, "string"), }; let authenticationPromise = Promise.resolve(); @@ -1576,14 +1589,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -1647,14 +1661,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(creditNotes, "CreditNotes") + body: ObjectSerializer.serialize(creditNotes, "CreditNotes"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -1712,14 +1727,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(currency, "Currency") + body: ObjectSerializer.serialize(currency, "Currency"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -1778,14 +1794,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(employee, "Employee") + body: ObjectSerializer.serialize(employee, "Employee"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -1844,14 +1861,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(employees, "Employees") + body: ObjectSerializer.serialize(employees, "Employees"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -1917,14 +1935,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -1983,14 +2002,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(expenseClaims, "ExpenseClaims") + body: ObjectSerializer.serialize(expenseClaims, "ExpenseClaims"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -2071,14 +2091,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - - body: ObjectSerializer.serialize(body, "string") + body: ObjectSerializer.serialize(body, "string"), }; let authenticationPromise = Promise.resolve(); @@ -2161,14 +2181,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -2232,14 +2253,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(invoices, "Invoices") + body: ObjectSerializer.serialize(invoices, "Invoices"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -2305,14 +2327,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -2376,14 +2399,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(items, "Items") + body: ObjectSerializer.serialize(items, "Items"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -2442,14 +2466,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(linkedTransaction, "LinkedTransaction") + body: ObjectSerializer.serialize(linkedTransaction, "LinkedTransaction"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -2508,14 +2533,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(manualJournal, "ManualJournal") + body: ObjectSerializer.serialize(manualJournal, "ManualJournal"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -2589,14 +2615,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - - body: ObjectSerializer.serialize(body, "string") + body: ObjectSerializer.serialize(body, "string"), }; let authenticationPromise = Promise.resolve(); @@ -2672,14 +2698,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(manualJournals, "ManualJournals") + body: ObjectSerializer.serialize(manualJournals, "ManualJournals"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -2745,14 +2772,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(allocation, "Allocation") + body: ObjectSerializer.serialize(allocation, "Allocation"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -2818,14 +2846,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(allocations, "Allocations") + body: ObjectSerializer.serialize(allocations, "Allocations"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -2891,14 +2920,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -2957,14 +2987,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(payment, "Payment") + body: ObjectSerializer.serialize(payment, "Payment"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -3030,14 +3061,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -3096,14 +3128,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(paymentServices, "PaymentServices") + body: ObjectSerializer.serialize(paymentServices, "PaymentServices"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -3162,14 +3195,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(payments, "Payments") + body: ObjectSerializer.serialize(payments, "Payments"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -3235,14 +3269,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(allocations, "Allocations") + body: ObjectSerializer.serialize(allocations, "Allocations"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -3308,14 +3343,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -3381,14 +3417,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -3452,14 +3489,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") + body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -3525,14 +3563,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -3596,14 +3635,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(quotes, "Quotes") + body: ObjectSerializer.serialize(quotes, "Quotes"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -3662,14 +3702,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(receipts, "Receipts") + body: ObjectSerializer.serialize(receipts, "Receipts"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -3743,14 +3784,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - - body: ObjectSerializer.serialize(body, "string") + body: ObjectSerializer.serialize(body, "string"), }; let authenticationPromise = Promise.resolve(); @@ -3833,14 +3874,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -3914,14 +3956,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - - body: ObjectSerializer.serialize(body, "string") + body: ObjectSerializer.serialize(body, "string"), }; let authenticationPromise = Promise.resolve(); @@ -4004,14 +4046,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -4070,14 +4113,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(taxRates, "TaxRates") + body: ObjectSerializer.serialize(taxRates, "TaxRates"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -4136,14 +4180,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(trackingCategory, "TrackingCategory") + body: ObjectSerializer.serialize(trackingCategory, "TrackingCategory"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -4209,14 +4254,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(trackingOption, "TrackingOption") + body: ObjectSerializer.serialize(trackingOption, "TrackingOption"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -4276,13 +4322,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'DELETE', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -4349,13 +4396,13 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'DELETE', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - }; let authenticationPromise = Promise.resolve(); @@ -4415,13 +4462,13 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'DELETE', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - }; let authenticationPromise = Promise.resolve(); @@ -4481,13 +4528,13 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'DELETE', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - }; let authenticationPromise = Promise.resolve(); @@ -4547,13 +4594,13 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'DELETE', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - }; let authenticationPromise = Promise.resolve(); @@ -4619,14 +4666,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(payments, "Payments") + body: ObjectSerializer.serialize(payments, "Payments"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -4686,13 +4734,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'DELETE', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -4759,13 +4808,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'DELETE', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -4831,14 +4881,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - - body: ObjectSerializer.serialize(requestEmpty, "RequestEmpty") + body: ObjectSerializer.serialize(requestEmpty, "RequestEmpty"), }; let authenticationPromise = Promise.resolve(); @@ -4898,13 +4948,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -4978,6 +5029,7 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -5058,6 +5110,7 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -5124,13 +5177,13 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5195,13 +5248,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -5261,13 +5315,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -5341,6 +5396,7 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -5421,6 +5477,7 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -5487,13 +5544,13 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5568,13 +5625,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -5634,13 +5692,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -5700,13 +5759,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -5780,6 +5840,7 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -5860,6 +5921,7 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -5926,13 +5988,13 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -5992,13 +6054,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -6063,13 +6126,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -6129,13 +6193,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -6200,13 +6265,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -6266,13 +6332,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -6332,13 +6399,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -6391,13 +6459,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -6457,13 +6526,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -6537,6 +6607,7 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -6617,6 +6688,7 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -6683,13 +6755,13 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -6749,13 +6821,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -6815,13 +6888,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -6884,13 +6958,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -6950,13 +7025,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -7036,13 +7112,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -7102,13 +7179,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -7175,6 +7253,7 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -7255,6 +7334,7 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -7335,6 +7415,7 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -7401,13 +7482,13 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -7467,13 +7548,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -7543,13 +7625,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -7612,13 +7695,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -7678,13 +7762,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -7749,13 +7834,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -7815,13 +7901,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -7881,13 +7968,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -7952,13 +8040,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -8018,13 +8107,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -8091,6 +8181,7 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -8171,6 +8262,7 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -8251,6 +8343,7 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -8317,13 +8410,13 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -8383,13 +8476,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -8442,13 +8536,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -8553,13 +8648,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -8619,13 +8715,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -8685,13 +8782,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -8761,13 +8859,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -8827,13 +8926,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -8898,13 +8998,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -8964,13 +9065,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -9053,13 +9155,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -9119,13 +9222,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -9199,6 +9303,7 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -9279,6 +9384,7 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -9345,13 +9451,13 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -9421,13 +9527,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -9487,13 +9594,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -9553,13 +9661,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -9612,13 +9721,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -9678,13 +9788,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -9744,13 +9855,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -9825,13 +9937,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -9891,13 +10004,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -9957,13 +10071,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -10016,13 +10131,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -10087,13 +10203,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -10153,13 +10270,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -10219,13 +10337,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -10300,13 +10419,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -10366,13 +10486,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -10432,13 +10553,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -10518,13 +10640,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -10584,13 +10707,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -10650,13 +10774,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -10751,13 +10876,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -10817,13 +10943,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -10897,6 +11024,7 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -10977,6 +11105,7 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -11043,13 +11172,13 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11109,13 +11238,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -11185,13 +11315,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -11251,13 +11382,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -11331,6 +11463,7 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -11411,6 +11544,7 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -11477,13 +11611,13 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, }; let authenticationPromise = Promise.resolve(); @@ -11543,13 +11677,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -11612,13 +11747,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -11696,13 +11832,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -11780,13 +11917,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -11846,13 +11984,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -11905,13 +12044,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -11999,13 +12139,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -12068,13 +12209,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -12142,13 +12284,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -12206,13 +12349,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -12315,13 +12459,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -12379,13 +12524,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -12448,13 +12594,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -12522,13 +12669,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -12596,13 +12744,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -12662,13 +12811,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -12728,13 +12878,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -12799,13 +12950,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, + json: true }; let authenticationPromise = Promise.resolve(); @@ -12871,14 +13023,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(accounts, "Accounts") + body: ObjectSerializer.serialize(accounts, "Accounts"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -12952,14 +13105,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - - body: ObjectSerializer.serialize(body, "string") + body: ObjectSerializer.serialize(body, "string"), }; let authenticationPromise = Promise.resolve(); @@ -13042,14 +13195,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") + body: ObjectSerializer.serialize(bankTransactions, "BankTransactions"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -13123,14 +13277,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - - body: ObjectSerializer.serialize(body, "string") + body: ObjectSerializer.serialize(body, "string"), }; let authenticationPromise = Promise.resolve(); @@ -13220,14 +13374,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - - body: ObjectSerializer.serialize(body, "string") + body: ObjectSerializer.serialize(body, "string"), }; let authenticationPromise = Promise.resolve(); @@ -13309,14 +13463,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(contacts, "Contacts") + body: ObjectSerializer.serialize(contacts, "Contacts"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -13389,14 +13544,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - - body: ObjectSerializer.serialize(body, "string") + body: ObjectSerializer.serialize(body, "string"), }; let authenticationPromise = Promise.resolve(); @@ -13479,14 +13634,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(contactGroups, "ContactGroups") + body: ObjectSerializer.serialize(contactGroups, "ContactGroups"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -13552,14 +13708,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(creditNotes, "CreditNotes") + body: ObjectSerializer.serialize(creditNotes, "CreditNotes"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -13633,14 +13790,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - - body: ObjectSerializer.serialize(body, "string") + body: ObjectSerializer.serialize(body, "string"), }; let authenticationPromise = Promise.resolve(); @@ -13723,14 +13880,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(employees, "Employees") + body: ObjectSerializer.serialize(employees, "Employees"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -13796,14 +13954,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(expenseClaims, "ExpenseClaims") + body: ObjectSerializer.serialize(expenseClaims, "ExpenseClaims"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -13869,14 +14028,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(invoices, "Invoices") + body: ObjectSerializer.serialize(invoices, "Invoices"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -13950,14 +14110,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - - body: ObjectSerializer.serialize(body, "string") + body: ObjectSerializer.serialize(body, "string"), }; let authenticationPromise = Promise.resolve(); @@ -14040,14 +14200,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(items, "Items") + body: ObjectSerializer.serialize(items, "Items"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -14113,14 +14274,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(linkedTransactions, "LinkedTransactions") + body: ObjectSerializer.serialize(linkedTransactions, "LinkedTransactions"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -14186,14 +14348,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(manualJournals, "ManualJournals") + body: ObjectSerializer.serialize(manualJournals, "ManualJournals"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -14267,14 +14430,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - - body: ObjectSerializer.serialize(body, "string") + body: ObjectSerializer.serialize(body, "string"), }; let authenticationPromise = Promise.resolve(); @@ -14355,14 +14518,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") + body: ObjectSerializer.serialize(bankTransactions, "BankTransactions"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -14426,14 +14590,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(contacts, "Contacts") + body: ObjectSerializer.serialize(contacts, "Contacts"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -14497,14 +14662,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(creditNotes, "CreditNotes") + body: ObjectSerializer.serialize(creditNotes, "CreditNotes"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -14568,14 +14734,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(invoices, "Invoices") + body: ObjectSerializer.serialize(invoices, "Invoices"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -14639,14 +14806,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(items, "Items") + body: ObjectSerializer.serialize(items, "Items"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -14710,14 +14878,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") + body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -14781,14 +14950,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(quotes, "Quotes") + body: ObjectSerializer.serialize(quotes, "Quotes"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -14854,14 +15024,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") + body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -14927,14 +15098,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(quotes, "Quotes") + body: ObjectSerializer.serialize(quotes, "Quotes"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -15000,14 +15172,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(receipts, "Receipts") + body: ObjectSerializer.serialize(receipts, "Receipts"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -15081,14 +15254,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - - body: ObjectSerializer.serialize(body, "string") + body: ObjectSerializer.serialize(body, "string"), }; let authenticationPromise = Promise.resolve(); @@ -15179,14 +15352,14 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - - body: ObjectSerializer.serialize(body, "string") + body: ObjectSerializer.serialize(body, "string"), }; let authenticationPromise = Promise.resolve(); @@ -15262,14 +15435,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(taxRates, "TaxRates") + body: ObjectSerializer.serialize(taxRates, "TaxRates"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -15335,14 +15509,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(trackingCategory, "TrackingCategory") + body: ObjectSerializer.serialize(trackingCategory, "TrackingCategory"), + json: true }; let authenticationPromise = Promise.resolve(); @@ -15415,14 +15590,15 @@ export class AccountingApi { let localVarUseFormData = false; + let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true, - body: ObjectSerializer.serialize(trackingOption, "TrackingOption") + body: ObjectSerializer.serialize(trackingOption, "TrackingOption"), + json: true }; let authenticationPromise = Promise.resolve(); From ed9a0d8b4690d2960313b0a5b765041c766940af Mon Sep 17 00:00:00 2001 From: serknight Date: Mon, 10 Feb 2020 12:14:07 -0700 Subject: [PATCH 19/21] keep format where it was to reduce git log confusion --- src/gen/api/accountingApi.ts | 700 ++++++++++++----------------------- 1 file changed, 246 insertions(+), 454 deletions(-) diff --git a/src/gen/api/accountingApi.ts b/src/gen/api/accountingApi.ts index be9f9a08..7035aede 100644 --- a/src/gen/api/accountingApi.ts +++ b/src/gen/api/accountingApi.ts @@ -153,15 +153,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(account, "Account"), - json: true + json: true, + body: ObjectSerializer.serialize(account, "Account") }; let authenticationPromise = Promise.resolve(); @@ -235,14 +234,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string"), + body: ObjectSerializer.serialize(body, "string") }; let authenticationPromise = Promise.resolve(); @@ -333,14 +331,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string"), + body: ObjectSerializer.serialize(body, "string") }; let authenticationPromise = Promise.resolve(); @@ -423,15 +420,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), - json: true + json: true, + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; let authenticationPromise = Promise.resolve(); @@ -495,15 +491,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(bankTransactions, "BankTransactions"), - json: true + json: true, + body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") }; let authenticationPromise = Promise.resolve(); @@ -562,15 +557,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(bankTransfers, "BankTransfers"), - json: true + json: true, + body: ObjectSerializer.serialize(bankTransfers, "BankTransfers") }; let authenticationPromise = Promise.resolve(); @@ -643,14 +637,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string"), + body: ObjectSerializer.serialize(body, "string") }; let authenticationPromise = Promise.resolve(); @@ -732,15 +725,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), - json: true + json: true, + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; let authenticationPromise = Promise.resolve(); @@ -804,15 +796,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(batchPayments, "BatchPayments"), - json: true + json: true, + body: ObjectSerializer.serialize(batchPayments, "BatchPayments") }; let authenticationPromise = Promise.resolve(); @@ -878,15 +869,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), - json: true + json: true, + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; let authenticationPromise = Promise.resolve(); @@ -952,15 +942,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(paymentService, "PaymentService"), - json: true + json: true, + body: ObjectSerializer.serialize(paymentService, "PaymentService") }; let authenticationPromise = Promise.resolve(); @@ -1033,14 +1022,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string"), + body: ObjectSerializer.serialize(body, "string") }; let authenticationPromise = Promise.resolve(); @@ -1116,15 +1104,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(contactGroups, "ContactGroups"), - json: true + json: true, + body: ObjectSerializer.serialize(contactGroups, "ContactGroups") }; let authenticationPromise = Promise.resolve(); @@ -1190,15 +1177,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(contacts, "Contacts"), - json: true + json: true, + body: ObjectSerializer.serialize(contacts, "Contacts") }; let authenticationPromise = Promise.resolve(); @@ -1264,15 +1250,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), - json: true + json: true, + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; let authenticationPromise = Promise.resolve(); @@ -1336,15 +1321,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(contacts, "Contacts"), - json: true + json: true, + body: ObjectSerializer.serialize(contacts, "Contacts") }; let authenticationPromise = Promise.resolve(); @@ -1410,15 +1394,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(allocations, "Allocations"), - json: true + json: true, + body: ObjectSerializer.serialize(allocations, "Allocations") }; let authenticationPromise = Promise.resolve(); @@ -1499,14 +1482,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string"), + body: ObjectSerializer.serialize(body, "string") }; let authenticationPromise = Promise.resolve(); @@ -1589,15 +1571,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), - json: true + json: true, + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; let authenticationPromise = Promise.resolve(); @@ -1661,15 +1642,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(creditNotes, "CreditNotes"), - json: true + json: true, + body: ObjectSerializer.serialize(creditNotes, "CreditNotes") }; let authenticationPromise = Promise.resolve(); @@ -1727,15 +1707,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(currency, "Currency"), - json: true + json: true, + body: ObjectSerializer.serialize(currency, "Currency") }; let authenticationPromise = Promise.resolve(); @@ -1794,15 +1773,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(employee, "Employee"), - json: true + json: true, + body: ObjectSerializer.serialize(employee, "Employee") }; let authenticationPromise = Promise.resolve(); @@ -1861,15 +1839,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(employees, "Employees"), - json: true + json: true, + body: ObjectSerializer.serialize(employees, "Employees") }; let authenticationPromise = Promise.resolve(); @@ -1935,15 +1912,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), - json: true + json: true, + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; let authenticationPromise = Promise.resolve(); @@ -2002,15 +1978,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(expenseClaims, "ExpenseClaims"), - json: true + json: true, + body: ObjectSerializer.serialize(expenseClaims, "ExpenseClaims") }; let authenticationPromise = Promise.resolve(); @@ -2091,14 +2066,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string"), + body: ObjectSerializer.serialize(body, "string") }; let authenticationPromise = Promise.resolve(); @@ -2181,15 +2155,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), - json: true + json: true, + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; let authenticationPromise = Promise.resolve(); @@ -2253,15 +2226,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(invoices, "Invoices"), - json: true + json: true, + body: ObjectSerializer.serialize(invoices, "Invoices") }; let authenticationPromise = Promise.resolve(); @@ -2327,15 +2299,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), - json: true + json: true, + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; let authenticationPromise = Promise.resolve(); @@ -2399,15 +2370,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(items, "Items"), - json: true + json: true, + body: ObjectSerializer.serialize(items, "Items") }; let authenticationPromise = Promise.resolve(); @@ -2466,15 +2436,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(linkedTransaction, "LinkedTransaction"), - json: true + json: true, + body: ObjectSerializer.serialize(linkedTransaction, "LinkedTransaction") }; let authenticationPromise = Promise.resolve(); @@ -2533,15 +2502,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(manualJournal, "ManualJournal"), - json: true + json: true, + body: ObjectSerializer.serialize(manualJournal, "ManualJournal") }; let authenticationPromise = Promise.resolve(); @@ -2615,14 +2583,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string"), + body: ObjectSerializer.serialize(body, "string") }; let authenticationPromise = Promise.resolve(); @@ -2698,15 +2665,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(manualJournals, "ManualJournals"), - json: true + json: true, + body: ObjectSerializer.serialize(manualJournals, "ManualJournals") }; let authenticationPromise = Promise.resolve(); @@ -2772,15 +2738,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(allocation, "Allocation"), - json: true + json: true, + body: ObjectSerializer.serialize(allocation, "Allocation") }; let authenticationPromise = Promise.resolve(); @@ -2846,15 +2811,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(allocations, "Allocations"), - json: true + json: true, + body: ObjectSerializer.serialize(allocations, "Allocations") }; let authenticationPromise = Promise.resolve(); @@ -2920,15 +2884,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), - json: true + json: true, + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; let authenticationPromise = Promise.resolve(); @@ -2987,15 +2950,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(payment, "Payment"), - json: true + json: true, + body: ObjectSerializer.serialize(payment, "Payment") }; let authenticationPromise = Promise.resolve(); @@ -3061,15 +3023,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), - json: true + json: true, + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; let authenticationPromise = Promise.resolve(); @@ -3128,15 +3089,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(paymentServices, "PaymentServices"), - json: true + json: true, + body: ObjectSerializer.serialize(paymentServices, "PaymentServices") }; let authenticationPromise = Promise.resolve(); @@ -3195,15 +3155,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(payments, "Payments"), - json: true + json: true, + body: ObjectSerializer.serialize(payments, "Payments") }; let authenticationPromise = Promise.resolve(); @@ -3269,15 +3228,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(allocations, "Allocations"), - json: true + json: true, + body: ObjectSerializer.serialize(allocations, "Allocations") }; let authenticationPromise = Promise.resolve(); @@ -3343,15 +3301,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), - json: true + json: true, + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; let authenticationPromise = Promise.resolve(); @@ -3417,15 +3374,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), - json: true + json: true, + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; let authenticationPromise = Promise.resolve(); @@ -3489,15 +3445,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders"), - json: true + json: true, + body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") }; let authenticationPromise = Promise.resolve(); @@ -3563,15 +3518,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), - json: true + json: true, + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; let authenticationPromise = Promise.resolve(); @@ -3635,15 +3589,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(quotes, "Quotes"), - json: true + json: true, + body: ObjectSerializer.serialize(quotes, "Quotes") }; let authenticationPromise = Promise.resolve(); @@ -3702,15 +3655,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(receipts, "Receipts"), - json: true + json: true, + body: ObjectSerializer.serialize(receipts, "Receipts") }; let authenticationPromise = Promise.resolve(); @@ -3784,14 +3736,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string"), + body: ObjectSerializer.serialize(body, "string") }; let authenticationPromise = Promise.resolve(); @@ -3874,15 +3825,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), - json: true + json: true, + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; let authenticationPromise = Promise.resolve(); @@ -3956,14 +3906,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string"), + body: ObjectSerializer.serialize(body, "string") }; let authenticationPromise = Promise.resolve(); @@ -4046,15 +3995,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(historyRecords, "HistoryRecords"), - json: true + json: true, + body: ObjectSerializer.serialize(historyRecords, "HistoryRecords") }; let authenticationPromise = Promise.resolve(); @@ -4113,15 +4061,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(taxRates, "TaxRates"), - json: true + json: true, + body: ObjectSerializer.serialize(taxRates, "TaxRates") }; let authenticationPromise = Promise.resolve(); @@ -4180,15 +4127,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(trackingCategory, "TrackingCategory"), - json: true + json: true, + body: ObjectSerializer.serialize(trackingCategory, "TrackingCategory") }; let authenticationPromise = Promise.resolve(); @@ -4254,15 +4200,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'PUT', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(trackingOption, "TrackingOption"), - json: true + json: true, + body: ObjectSerializer.serialize(trackingOption, "TrackingOption") }; let authenticationPromise = Promise.resolve(); @@ -4322,14 +4267,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'DELETE', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -4396,7 +4340,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'DELETE', qs: localVarQueryParameters, @@ -4462,7 +4405,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'DELETE', qs: localVarQueryParameters, @@ -4528,7 +4470,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'DELETE', qs: localVarQueryParameters, @@ -4594,7 +4535,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'DELETE', qs: localVarQueryParameters, @@ -4666,15 +4606,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(payments, "Payments"), - json: true + json: true, + body: ObjectSerializer.serialize(payments, "Payments") }; let authenticationPromise = Promise.resolve(); @@ -4734,14 +4673,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'DELETE', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -4808,14 +4746,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'DELETE', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -4881,14 +4818,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(requestEmpty, "RequestEmpty"), + body: ObjectSerializer.serialize(requestEmpty, "RequestEmpty") }; let authenticationPromise = Promise.resolve(); @@ -4948,14 +4884,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5029,7 +4964,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -5110,7 +5044,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -5177,7 +5110,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -5248,14 +5180,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5315,14 +5246,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5396,7 +5326,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -5477,7 +5406,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -5544,7 +5472,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -5625,14 +5552,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5692,14 +5618,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5759,14 +5684,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -5840,7 +5764,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -5921,7 +5844,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -5988,7 +5910,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -6054,14 +5975,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6126,14 +6046,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6193,14 +6112,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6265,14 +6183,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6332,14 +6249,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6399,14 +6315,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6459,14 +6374,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6526,14 +6440,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6607,7 +6520,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -6688,7 +6600,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -6755,7 +6666,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -6821,14 +6731,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6888,14 +6797,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -6958,14 +6866,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7025,14 +6932,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7112,14 +7018,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7179,14 +7084,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7253,7 +7157,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -7334,7 +7237,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -7415,7 +7317,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -7482,7 +7383,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -7548,14 +7448,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7625,14 +7524,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7695,14 +7593,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7762,14 +7659,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7834,14 +7730,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7901,14 +7796,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -7968,14 +7862,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8040,14 +7933,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8107,14 +7999,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8181,7 +8072,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -8262,7 +8152,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -8343,7 +8232,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -8410,7 +8298,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -8476,14 +8363,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8536,14 +8422,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8648,14 +8533,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8715,14 +8599,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8782,14 +8665,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8859,14 +8741,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8926,14 +8807,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -8998,14 +8878,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9065,14 +8944,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9155,14 +9033,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9222,14 +9099,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9303,7 +9179,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -9384,7 +9259,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -9451,7 +9325,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -9527,14 +9400,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9594,14 +9466,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9661,14 +9532,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9721,14 +9591,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9788,14 +9657,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9855,14 +9723,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -9937,14 +9804,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10004,14 +9870,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10071,14 +9936,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10131,14 +9995,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10203,14 +10066,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10270,14 +10132,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10337,14 +10198,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10419,14 +10279,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10486,14 +10345,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10553,14 +10411,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10640,14 +10497,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10707,14 +10563,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10774,14 +10629,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10876,14 +10730,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -10943,14 +10796,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11024,7 +10876,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -11105,7 +10956,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -11172,7 +11022,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -11238,14 +11087,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11315,14 +11163,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11382,14 +11229,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11463,7 +11309,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -11544,7 +11389,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -11611,7 +11455,6 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, @@ -11677,14 +11520,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11747,14 +11589,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11832,14 +11673,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11917,14 +11757,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -11984,14 +11823,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12044,14 +11882,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12139,14 +11976,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12209,14 +12045,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12284,14 +12119,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12349,14 +12183,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12459,14 +12292,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12524,14 +12356,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12594,14 +12425,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12669,14 +12499,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12744,14 +12573,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12811,14 +12639,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12878,14 +12705,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -12950,14 +12776,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'GET', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - json: true + json: true, }; let authenticationPromise = Promise.resolve(); @@ -13023,15 +12848,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(accounts, "Accounts"), - json: true + json: true, + body: ObjectSerializer.serialize(accounts, "Accounts") }; let authenticationPromise = Promise.resolve(); @@ -13105,14 +12929,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string"), + body: ObjectSerializer.serialize(body, "string") }; let authenticationPromise = Promise.resolve(); @@ -13195,15 +13018,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(bankTransactions, "BankTransactions"), - json: true + json: true, + body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") }; let authenticationPromise = Promise.resolve(); @@ -13277,14 +13099,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string"), + body: ObjectSerializer.serialize(body, "string") }; let authenticationPromise = Promise.resolve(); @@ -13374,14 +13195,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string"), + body: ObjectSerializer.serialize(body, "string") }; let authenticationPromise = Promise.resolve(); @@ -13463,15 +13283,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(contacts, "Contacts"), - json: true + json: true, + body: ObjectSerializer.serialize(contacts, "Contacts") }; let authenticationPromise = Promise.resolve(); @@ -13544,14 +13363,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string"), + body: ObjectSerializer.serialize(body, "string") }; let authenticationPromise = Promise.resolve(); @@ -13634,15 +13452,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(contactGroups, "ContactGroups"), - json: true + json: true, + body: ObjectSerializer.serialize(contactGroups, "ContactGroups") }; let authenticationPromise = Promise.resolve(); @@ -13708,15 +13525,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(creditNotes, "CreditNotes"), - json: true + json: true, + body: ObjectSerializer.serialize(creditNotes, "CreditNotes") }; let authenticationPromise = Promise.resolve(); @@ -13790,14 +13606,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string"), + body: ObjectSerializer.serialize(body, "string") }; let authenticationPromise = Promise.resolve(); @@ -13880,15 +13695,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(employees, "Employees"), - json: true + json: true, + body: ObjectSerializer.serialize(employees, "Employees") }; let authenticationPromise = Promise.resolve(); @@ -13954,15 +13768,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(expenseClaims, "ExpenseClaims"), - json: true + json: true, + body: ObjectSerializer.serialize(expenseClaims, "ExpenseClaims") }; let authenticationPromise = Promise.resolve(); @@ -14028,15 +13841,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(invoices, "Invoices"), - json: true + json: true, + body: ObjectSerializer.serialize(invoices, "Invoices") }; let authenticationPromise = Promise.resolve(); @@ -14110,14 +13922,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string"), + body: ObjectSerializer.serialize(body, "string") }; let authenticationPromise = Promise.resolve(); @@ -14200,15 +14011,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(items, "Items"), - json: true + json: true, + body: ObjectSerializer.serialize(items, "Items") }; let authenticationPromise = Promise.resolve(); @@ -14274,15 +14084,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(linkedTransactions, "LinkedTransactions"), - json: true + json: true, + body: ObjectSerializer.serialize(linkedTransactions, "LinkedTransactions") }; let authenticationPromise = Promise.resolve(); @@ -14348,15 +14157,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(manualJournals, "ManualJournals"), - json: true + json: true, + body: ObjectSerializer.serialize(manualJournals, "ManualJournals") }; let authenticationPromise = Promise.resolve(); @@ -14430,14 +14238,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string"), + body: ObjectSerializer.serialize(body, "string") }; let authenticationPromise = Promise.resolve(); @@ -14518,15 +14325,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(bankTransactions, "BankTransactions"), - json: true + json: true, + body: ObjectSerializer.serialize(bankTransactions, "BankTransactions") }; let authenticationPromise = Promise.resolve(); @@ -14590,15 +14396,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(contacts, "Contacts"), - json: true + json: true, + body: ObjectSerializer.serialize(contacts, "Contacts") }; let authenticationPromise = Promise.resolve(); @@ -14662,15 +14467,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(creditNotes, "CreditNotes"), - json: true + json: true, + body: ObjectSerializer.serialize(creditNotes, "CreditNotes") }; let authenticationPromise = Promise.resolve(); @@ -14734,15 +14538,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(invoices, "Invoices"), - json: true + json: true, + body: ObjectSerializer.serialize(invoices, "Invoices") }; let authenticationPromise = Promise.resolve(); @@ -14806,15 +14609,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(items, "Items"), - json: true + json: true, + body: ObjectSerializer.serialize(items, "Items") }; let authenticationPromise = Promise.resolve(); @@ -14878,15 +14680,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders"), - json: true + json: true, + body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") }; let authenticationPromise = Promise.resolve(); @@ -14950,15 +14751,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(quotes, "Quotes"), - json: true + json: true, + body: ObjectSerializer.serialize(quotes, "Quotes") }; let authenticationPromise = Promise.resolve(); @@ -15024,15 +14824,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders"), - json: true + json: true, + body: ObjectSerializer.serialize(purchaseOrders, "PurchaseOrders") }; let authenticationPromise = Promise.resolve(); @@ -15098,15 +14897,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(quotes, "Quotes"), - json: true + json: true, + body: ObjectSerializer.serialize(quotes, "Quotes") }; let authenticationPromise = Promise.resolve(); @@ -15172,15 +14970,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(receipts, "Receipts"), - json: true + json: true, + body: ObjectSerializer.serialize(receipts, "Receipts") }; let authenticationPromise = Promise.resolve(); @@ -15254,14 +15051,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string"), + body: ObjectSerializer.serialize(body, "string") }; let authenticationPromise = Promise.resolve(); @@ -15352,14 +15148,13 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(body, "string"), + body: ObjectSerializer.serialize(body, "string") }; let authenticationPromise = Promise.resolve(); @@ -15435,15 +15230,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(taxRates, "TaxRates"), - json: true + json: true, + body: ObjectSerializer.serialize(taxRates, "TaxRates") }; let authenticationPromise = Promise.resolve(); @@ -15509,15 +15303,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(trackingCategory, "TrackingCategory"), - json: true + json: true, + body: ObjectSerializer.serialize(trackingCategory, "TrackingCategory") }; let authenticationPromise = Promise.resolve(); @@ -15590,15 +15383,14 @@ export class AccountingApi { let localVarUseFormData = false; - let localVarRequestOptions: localVarRequest.Options = { method: 'POST', qs: localVarQueryParameters, headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, - body: ObjectSerializer.serialize(trackingOption, "TrackingOption"), - json: true + json: true, + body: ObjectSerializer.serialize(trackingOption, "TrackingOption") }; let authenticationPromise = Promise.resolve(); From e4e00ae9abb9fae8095d30dbf99646455cfd4f58 Mon Sep 17 00:00:00 2001 From: serknight Date: Mon, 10 Feb 2020 13:07:58 -0700 Subject: [PATCH 20/21] is empty needs json --- src/gen/api/accountingApi.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gen/api/accountingApi.ts b/src/gen/api/accountingApi.ts index 7035aede..fd107e07 100644 --- a/src/gen/api/accountingApi.ts +++ b/src/gen/api/accountingApi.ts @@ -4824,6 +4824,7 @@ export class AccountingApi { headers: localVarHeaderParams, uri: localVarPath, useQuerystring: this._useQuerystring, + json: true, body: ObjectSerializer.serialize(requestEmpty, "RequestEmpty") }; From bf9d7af1d0f3843314d4252e32cdf04f758b8140 Mon Sep 17 00:00:00 2001 From: serknight Date: Mon, 10 Feb 2020 13:40:29 -0700 Subject: [PATCH 21/21] files and emails --- CHANGELOG.md | 3 ++- package.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f22dbc35..72c4f948 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ # Change Log --------- -## "version": "4.1.6" +## "version": "4.1.7" * Fixed file uploads.. Image data was being force encoded in JSON.. Using mime type now +* emailInvoice and functions with an empty response need `json: true` to succeed when its a 204 response * adds some additional types and optionalitities to ceratin functions ## "version": "4.1.5" diff --git a/package.json b/package.json index da223982..a1a6f27a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xero-node", - "version": "4.1.6", + "version": "4.1.7", "description": "Xero NodeJS OAuth 2.0 client for xero-node", "main": "dist/index.js", "types": "dist/index.d.ts",