conductor-node 10.0.1 → 10.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -12
- package/dist/package.json +2 -2
- package/dist/src/integrations/qbd/QbdIntegration.d.ts +167 -167
- package/dist/src/integrations/qbd/QbdIntegration.js +167 -167
- package/dist/src/interceptors/errorHandling.js +15 -10
- package/dist/src/utils/error.d.ts +34 -21
- package/dist/src/utils/error.js +35 -23
- package/package.json +2 -2
|
@@ -12,13 +12,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
12
12
|
* which can be accessed in QB by selecting "Lists" → "Chart of Accounts" →
|
|
13
13
|
* "Accounts" → "New".
|
|
14
14
|
*
|
|
15
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/AccountAdd
|
|
15
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/AccountAdd
|
|
16
16
|
*/
|
|
17
17
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { AccountAddRq: { AccountAdd: params } }, "AccountAddRs", "AccountRet"),
|
|
18
18
|
/**
|
|
19
19
|
* Modifies an account.
|
|
20
20
|
*
|
|
21
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/AccountMod
|
|
21
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/AccountMod
|
|
22
22
|
*/
|
|
23
23
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { AccountModRq: { AccountMod: params } }, "AccountModRs", "AccountRet"),
|
|
24
24
|
/**
|
|
@@ -29,7 +29,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
29
29
|
* account, if there is one. You can search across all accounts or you can
|
|
30
30
|
* specify an account type and search only those.
|
|
31
31
|
*
|
|
32
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/AccountQuery
|
|
32
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/AccountQuery
|
|
33
33
|
*/
|
|
34
34
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { AccountQueryRq: params }, "AccountQueryRs", "AccountRet"),
|
|
35
35
|
};
|
|
@@ -84,7 +84,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
84
84
|
* receipt or invoice is entered, the inventory is reduced to 5 and the
|
|
85
85
|
* value
|
|
86
86
|
*
|
|
87
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BillAdd
|
|
87
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BillAdd
|
|
88
88
|
*/
|
|
89
89
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { BillAddRq: { BillAdd: params } }, "BillAddRs", "BillRet"),
|
|
90
90
|
/**
|
|
@@ -117,7 +117,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
117
117
|
* - `BillableStatus`
|
|
118
118
|
* - `OverrideItemAccountRef`
|
|
119
119
|
*
|
|
120
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BillMod
|
|
120
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BillMod
|
|
121
121
|
*/
|
|
122
122
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { BillModRq: { BillMod: params } }, "BillModRs", "BillRet"),
|
|
123
123
|
/**
|
|
@@ -164,7 +164,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
164
164
|
* line items using the `IncludeLineItems`, which by default is False (no
|
|
165
165
|
* line item data).
|
|
166
166
|
*
|
|
167
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BillQuery
|
|
167
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BillQuery
|
|
168
168
|
*/
|
|
169
169
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { BillQueryRq: params }, "BillQueryRs", "BillRet"),
|
|
170
170
|
};
|
|
@@ -200,7 +200,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
200
200
|
* Notice that you set the check number, if desired, using the `RefNumber`
|
|
201
201
|
* tags.
|
|
202
202
|
*
|
|
203
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BillPaymentCheckAdd
|
|
203
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BillPaymentCheckAdd
|
|
204
204
|
*/
|
|
205
205
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { BillPaymentCheckAddRq: { BillPaymentCheckAdd: params } }, "BillPaymentCheckAddRs", "BillPaymentCheckRet"),
|
|
206
206
|
/**
|
|
@@ -247,7 +247,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
247
247
|
* original payment. However credits simply add to any credits that may have
|
|
248
248
|
* been applied before.
|
|
249
249
|
*
|
|
250
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BillPaymentCheckMod
|
|
250
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BillPaymentCheckMod
|
|
251
251
|
*/
|
|
252
252
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { BillPaymentCheckModRq: { BillPaymentCheckMod: params } }, "BillPaymentCheckModRs", "BillPaymentCheckRet"),
|
|
253
253
|
/**
|
|
@@ -281,7 +281,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
281
281
|
* line items using the `IncludeLineItems`, which by default is `False` (no
|
|
282
282
|
* line item data).
|
|
283
283
|
*
|
|
284
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BillPaymentCheckQuery
|
|
284
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BillPaymentCheckQuery
|
|
285
285
|
*/
|
|
286
286
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { BillPaymentCheckQueryRq: params }, "BillPaymentCheckQueryRs", "BillPaymentCheckRet"),
|
|
287
287
|
};
|
|
@@ -302,7 +302,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
302
302
|
* to specify more than one service item, you’ll need to use one
|
|
303
303
|
* `BillingRatePerItem` aggregate for each service item.
|
|
304
304
|
*
|
|
305
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BillingRateAdd
|
|
305
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BillingRateAdd
|
|
306
306
|
*/
|
|
307
307
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { BillingRateAddRq: { BillingRateAdd: params } }, "BillingRateAddRs", "BillingRateRet"),
|
|
308
308
|
/**
|
|
@@ -310,7 +310,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
310
310
|
* filtered by billing rate name, or filtered by the service item referenced
|
|
311
311
|
* in the billing rate.
|
|
312
312
|
*
|
|
313
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BillingRateQuery
|
|
313
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BillingRateQuery
|
|
314
314
|
*/
|
|
315
315
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { BillingRateQueryRq: params }, "BillingRateQueryRs", "BillingRateRet"),
|
|
316
316
|
};
|
|
@@ -320,7 +320,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
320
320
|
* charge. (A `CreditCardCharge` object, on the other hand, refers to a
|
|
321
321
|
* credit card charge incurred by the QuickBooks user.)
|
|
322
322
|
*
|
|
323
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ChargeAdd
|
|
323
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ChargeAdd
|
|
324
324
|
*/
|
|
325
325
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ChargeAddRq: { ChargeAdd: params } }, "ChargeAddRs", "ChargeRet"),
|
|
326
326
|
/**
|
|
@@ -338,13 +338,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
338
338
|
* - `ARAccountRef`
|
|
339
339
|
* - `OverrideItemAccountRef`
|
|
340
340
|
*
|
|
341
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ChargeMod
|
|
341
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ChargeMod
|
|
342
342
|
*/
|
|
343
343
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ChargeModRq: { ChargeMod: params } }, "ChargeModRs", "ChargeRet"),
|
|
344
344
|
/**
|
|
345
345
|
* Returns information about statement charges.
|
|
346
346
|
*
|
|
347
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ChargeQuery
|
|
347
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ChargeQuery
|
|
348
348
|
*/
|
|
349
349
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ChargeQueryRq: params }, "ChargeQueryRs", "ChargeRet"),
|
|
350
350
|
};
|
|
@@ -362,19 +362,19 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
362
362
|
*
|
|
363
363
|
* This request is supported only in Premier and Enterprise.
|
|
364
364
|
*
|
|
365
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BuildAssemblyAdd
|
|
365
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BuildAssemblyAdd
|
|
366
366
|
*/
|
|
367
367
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { BuildAssemblyAddRq: { BuildAssemblyAdd: params } }, "BuildAssemblyAddRs", "BuildAssemblyRet"),
|
|
368
368
|
/**
|
|
369
369
|
* Modifies an existing build assembly transaction in the QuickBooks company.
|
|
370
370
|
*
|
|
371
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BuildAssemblyMod
|
|
371
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BuildAssemblyMod
|
|
372
372
|
*/
|
|
373
373
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { BuildAssemblyModRq: { BuildAssemblyMod: params } }, "BuildAssemblyModRs", "BuildAssemblyRet"),
|
|
374
374
|
/**
|
|
375
375
|
* Filters build assembly transactions by the specified filter criteria.
|
|
376
376
|
*
|
|
377
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BuildAssemblyQuery
|
|
377
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BuildAssemblyQuery
|
|
378
378
|
*/
|
|
379
379
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { BuildAssemblyQueryRq: params }, "BuildAssemblyQueryRs", "BuildAssemblyRet"),
|
|
380
380
|
};
|
|
@@ -395,13 +395,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
395
395
|
* - Paying sales tax.
|
|
396
396
|
* - Paying for received items.
|
|
397
397
|
*
|
|
398
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CheckAdd
|
|
398
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CheckAdd
|
|
399
399
|
*/
|
|
400
400
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CheckAddRq: { CheckAdd: params } }, "CheckAddRs", "CheckRet"),
|
|
401
401
|
/**
|
|
402
402
|
* Modifies an existing Check. Notice that you cannot use this to modify BillPaymentChecks.
|
|
403
403
|
*
|
|
404
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CheckMod
|
|
404
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CheckMod
|
|
405
405
|
*/
|
|
406
406
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CheckModRq: { CheckMod: params } }, "CheckModRs", "CheckRet"),
|
|
407
407
|
/**
|
|
@@ -409,7 +409,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
409
409
|
* Note that `BillPaymentChecks`, payroll checks, and liability checks are
|
|
410
410
|
* not returned.
|
|
411
411
|
*
|
|
412
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CheckQuery
|
|
412
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CheckQuery
|
|
413
413
|
*/
|
|
414
414
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CheckQueryRq: params }, "CheckQueryRs", "CheckRet"),
|
|
415
415
|
};
|
|
@@ -431,19 +431,19 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
431
431
|
* you can clear it in the line item by simply not specifying it in the line
|
|
432
432
|
* item.
|
|
433
433
|
*
|
|
434
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ClassAdd
|
|
434
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ClassAdd
|
|
435
435
|
*/
|
|
436
436
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ClassAddRq: { ClassAdd: params } }, "ClassAddRs", "ClassRet"),
|
|
437
437
|
/**
|
|
438
438
|
* Modifies the specified class.
|
|
439
439
|
*
|
|
440
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ClassMod
|
|
440
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ClassMod
|
|
441
441
|
*/
|
|
442
442
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ClassModRq: { ClassMod: params } }, "ClassModRs", "ClassRet"),
|
|
443
443
|
/**
|
|
444
444
|
* Queries for existing classes.
|
|
445
445
|
*
|
|
446
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ClassQuery
|
|
446
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ClassQuery
|
|
447
447
|
*/
|
|
448
448
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ClassQueryRq: params }, "ClassQueryRs", "ClassRet"),
|
|
449
449
|
};
|
|
@@ -457,7 +457,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
457
457
|
* Company information cannot be added or modified through the SDK, only
|
|
458
458
|
* through the QuickBooks user interface
|
|
459
459
|
*
|
|
460
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CompanyQuery
|
|
460
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CompanyQuery
|
|
461
461
|
*/
|
|
462
462
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CompanyQueryRq: params }, "CompanyQueryRs", "CompanyRet"),
|
|
463
463
|
};
|
|
@@ -471,7 +471,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
471
471
|
* payable balance. If a balance is carried on the credit card across time,
|
|
472
472
|
* finance or interest charges can be tracked in QuickBooks.
|
|
473
473
|
*
|
|
474
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CreditCardChargeAdd
|
|
474
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CreditCardChargeAdd
|
|
475
475
|
*/
|
|
476
476
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CreditCardChargeAddRq: { CreditCardChargeAdd: params } }, "CreditCardChargeAddRs", "CreditCardChargeRet"),
|
|
477
477
|
/**
|
|
@@ -499,13 +499,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
499
499
|
* - You can clear the entire expense table or the entire item table, but
|
|
500
500
|
* you cannot clear both tables at the same time.
|
|
501
501
|
*
|
|
502
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CreditCardChargeMod
|
|
502
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CreditCardChargeMod
|
|
503
503
|
*/
|
|
504
504
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CreditCardChargeModRq: { CreditCardChargeMod: params } }, "CreditCardChargeModRs", "CreditCardChargeRet"),
|
|
505
505
|
/**
|
|
506
506
|
* Queries for the specified credit card charge or charges.
|
|
507
507
|
*
|
|
508
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CreditCardChargeQuery
|
|
508
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CreditCardChargeQuery
|
|
509
509
|
*/
|
|
510
510
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CreditCardChargeQueryRq: params }, "CreditCardChargeQueryRs", "CreditCardChargeRet"),
|
|
511
511
|
};
|
|
@@ -518,7 +518,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
518
518
|
* purchased. (The original purchase would be described by a
|
|
519
519
|
* `CreditCardCharge` message.)
|
|
520
520
|
*
|
|
521
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CreditCardCreditAdd
|
|
521
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CreditCardCreditAdd
|
|
522
522
|
*/
|
|
523
523
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CreditCardCreditAddRq: { CreditCardCreditAdd: params } }, "CreditCardCreditAddRs", "CreditCardCreditRet"),
|
|
524
524
|
/**
|
|
@@ -546,13 +546,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
546
546
|
* - You can clear the entire expense table or the entire item table, but
|
|
547
547
|
* you cannot clear both tables at the same time.
|
|
548
548
|
*
|
|
549
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CreditCardCreditMod
|
|
549
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CreditCardCreditMod
|
|
550
550
|
*/
|
|
551
551
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CreditCardCreditModRq: { CreditCardCreditMod: params } }, "CreditCardCreditModRs", "CreditCardCreditRet"),
|
|
552
552
|
/**
|
|
553
553
|
* Queries for the specified credit or set of credits.
|
|
554
554
|
*
|
|
555
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CreditCardCreditQuery
|
|
555
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CreditCardCreditQuery
|
|
556
556
|
*/
|
|
557
557
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CreditCardCreditQueryRq: params }, "CreditCardCreditQueryRs", "CreditCardCreditRet"),
|
|
558
558
|
};
|
|
@@ -568,7 +568,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
568
568
|
* The `CreditMemo` should not be confused with a `VendorCredit`, which
|
|
569
569
|
* specifies an amount that a vendor owes you.
|
|
570
570
|
*
|
|
571
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CreditMemoAdd
|
|
571
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CreditMemoAdd
|
|
572
572
|
*/
|
|
573
573
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CreditMemoAddRq: { CreditMemoAdd: params } }, "CreditMemoAddRs", "CreditMemoRet"),
|
|
574
574
|
/**
|
|
@@ -595,13 +595,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
595
595
|
* - `SalesTaxCodeRef`
|
|
596
596
|
* - `OverrideItemAccountRef`
|
|
597
597
|
*
|
|
598
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CreditMemoMod
|
|
598
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CreditMemoMod
|
|
599
599
|
*/
|
|
600
600
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CreditMemoModRq: { CreditMemoMod: params } }, "CreditMemoModRs", "CreditMemoRet"),
|
|
601
601
|
/**
|
|
602
602
|
* Queries for the specified credit memo or set of credit memos.
|
|
603
603
|
*
|
|
604
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CreditMemoQuery
|
|
604
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CreditMemoQuery
|
|
605
605
|
*/
|
|
606
606
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CreditMemoQueryRq: params }, "CreditMemoQueryRs", "CreditMemoRet"),
|
|
607
607
|
};
|
|
@@ -619,7 +619,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
619
619
|
* If you have not used a user-defined currency in a transaction, you can
|
|
620
620
|
* delete it using `ListDel`. You cannot delete the built-in QB currencies.
|
|
621
621
|
*
|
|
622
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CurrencyAdd
|
|
622
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CurrencyAdd
|
|
623
623
|
*/
|
|
624
624
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CurrencyAddRq: { CurrencyAdd: params } }, "CurrencyAddRs", "CurrencyRet"),
|
|
625
625
|
/**
|
|
@@ -631,13 +631,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
631
631
|
* this request cannot modify name or currency code, neither of which can be
|
|
632
632
|
* modified in the UI either.
|
|
633
633
|
*
|
|
634
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CurrencyMod
|
|
634
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CurrencyMod
|
|
635
635
|
*/
|
|
636
636
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CurrencyModRq: { CurrencyMod: params } }, "CurrencyModRs", "CurrencyRet"),
|
|
637
637
|
/**
|
|
638
638
|
* Queries for built-in and user-defined currencies.
|
|
639
639
|
*
|
|
640
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CurrencyQuery
|
|
640
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CurrencyQuery
|
|
641
641
|
*/
|
|
642
642
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CurrencyQueryRq: params }, "CurrencyQueryRs", "CurrencyRet"),
|
|
643
643
|
};
|
|
@@ -662,13 +662,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
662
662
|
* `AccountRef` refers to any other type of account, the `CustomerRef`
|
|
663
663
|
* must refer to a customer.
|
|
664
664
|
*
|
|
665
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CustomerAdd
|
|
665
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CustomerAdd
|
|
666
666
|
*/
|
|
667
667
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CustomerAddRq: { CustomerAdd: params } }, "CustomerAddRs", "CustomerRet"),
|
|
668
668
|
/**
|
|
669
669
|
* Modifies the customer record.
|
|
670
670
|
*
|
|
671
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CustomerMod
|
|
671
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CustomerMod
|
|
672
672
|
*/
|
|
673
673
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CustomerModRq: { CustomerMod: params } }, "CustomerModRs", "CustomerRet"),
|
|
674
674
|
/**
|
|
@@ -681,7 +681,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
681
681
|
* address data will significantly improve the performance of the
|
|
682
682
|
* `CustomerQuery`.
|
|
683
683
|
*
|
|
684
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CustomerQuery
|
|
684
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CustomerQuery
|
|
685
685
|
*/
|
|
686
686
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CustomerQueryRq: params }, "CustomerQueryRs", "CustomerRet"),
|
|
687
687
|
};
|
|
@@ -696,13 +696,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
696
696
|
* CustomerType list. In a request, if a `CustomerTypeRef` aggregate
|
|
697
697
|
* includes both `FullName` and `ListID`, `FullName` will be ignored.
|
|
698
698
|
*
|
|
699
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CustomerTypeAdd
|
|
699
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CustomerTypeAdd
|
|
700
700
|
*/
|
|
701
701
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CustomerTypeAddRq: { CustomerTypeAdd: params } }, "CustomerTypeAddRs", "CustomerTypeRet"),
|
|
702
702
|
/**
|
|
703
703
|
* Queries for the specified customer type or set of types.
|
|
704
704
|
*
|
|
705
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CustomerTypeQuery
|
|
705
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CustomerTypeQuery
|
|
706
706
|
*/
|
|
707
707
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CustomerTypeQueryRq: params }, "CustomerTypeQueryRs", "CustomerTypeRet"),
|
|
708
708
|
};
|
|
@@ -713,19 +713,19 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
713
713
|
* a QuickBooks bank account or you can group payments together. You can
|
|
714
714
|
* also choose the method you prefer for depositing payments.
|
|
715
715
|
*
|
|
716
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/DepositAdd
|
|
716
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/DepositAdd
|
|
717
717
|
*/
|
|
718
718
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { DepositAddRq: { DepositAdd: params } }, "DepositAddRs", "DepositRet"),
|
|
719
719
|
/**
|
|
720
720
|
* Modifies an existing deposit.
|
|
721
721
|
*
|
|
722
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/DepositMod
|
|
722
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/DepositMod
|
|
723
723
|
*/
|
|
724
724
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { DepositModRq: { DepositMod: params } }, "DepositModRs", "DepositRet"),
|
|
725
725
|
/**
|
|
726
726
|
* This request searches for deposits that match the supplied filters.
|
|
727
727
|
*
|
|
728
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/DepositQuery
|
|
728
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/DepositQuery
|
|
729
729
|
*/
|
|
730
730
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { DepositQueryRq: params }, "DepositQueryRs", "DepositRet"),
|
|
731
731
|
};
|
|
@@ -734,19 +734,19 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
734
734
|
* Adds an employee with personal data about the employee as well as certain
|
|
735
735
|
* payroll-related data.
|
|
736
736
|
*
|
|
737
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/EmployeeAdd
|
|
737
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/EmployeeAdd
|
|
738
738
|
*/
|
|
739
739
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { EmployeeAddRq: { EmployeeAdd: params } }, "EmployeeAddRs", "EmployeeRet"),
|
|
740
740
|
/**
|
|
741
741
|
* Modifies an existing employee.
|
|
742
742
|
*
|
|
743
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/EmployeeMod
|
|
743
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/EmployeeMod
|
|
744
744
|
*/
|
|
745
745
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { EmployeeModRq: { EmployeeMod: params } }, "EmployeeModRs", "EmployeeRet"),
|
|
746
746
|
/**
|
|
747
747
|
* Returns employee data.
|
|
748
748
|
*
|
|
749
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/EmployeeQuery
|
|
749
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/EmployeeQuery
|
|
750
750
|
*/
|
|
751
751
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { EmployeeQueryRq: params }, "EmployeeQueryRs", "EmployeeRet"),
|
|
752
752
|
};
|
|
@@ -761,7 +761,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
761
761
|
* An estimate is a non-posting transaction, so it does not affect a
|
|
762
762
|
* company’s balance sheet or income statement.
|
|
763
763
|
*
|
|
764
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/EstimateAdd
|
|
764
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/EstimateAdd
|
|
765
765
|
*/
|
|
766
766
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { EstimateAddRq: { EstimateAdd: params } }, "EstimateAddRs", "EstimateRet"),
|
|
767
767
|
/**
|
|
@@ -786,13 +786,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
786
786
|
* - `SalesTaxCodeRef`
|
|
787
787
|
* - `Markup`
|
|
788
788
|
*
|
|
789
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/EstimateMod
|
|
789
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/EstimateMod
|
|
790
790
|
*/
|
|
791
791
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { EstimateModRq: { EstimateMod: params } }, "EstimateModRs", "EstimateRet"),
|
|
792
792
|
/**
|
|
793
793
|
* Queries for the specified estimate or set of estimates.
|
|
794
794
|
*
|
|
795
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/EstimateQuery
|
|
795
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/EstimateQuery
|
|
796
796
|
*/
|
|
797
797
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { EstimateQueryRq: params }, "EstimateQueryRs", "EstimateRet"),
|
|
798
798
|
};
|
|
@@ -810,13 +810,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
810
810
|
* - The inventory adjustment form must be closed in the QuickBooks user
|
|
811
811
|
* interface.
|
|
812
812
|
*
|
|
813
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/InventoryAdjustmentAdd
|
|
813
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/InventoryAdjustmentAdd
|
|
814
814
|
*/
|
|
815
815
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { InventoryAdjustmentAddRq: { InventoryAdjustmentAdd: params } }, "InventoryAdjustmentAddRs", "InventoryAdjustmentRet"),
|
|
816
816
|
/**
|
|
817
817
|
* Modifies an inventory adjustment.
|
|
818
818
|
*
|
|
819
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/InventoryAdjustmentMod
|
|
819
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/InventoryAdjustmentMod
|
|
820
820
|
*/
|
|
821
821
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { InventoryAdjustmentModRq: { InventoryAdjustmentMod: params } }, "InventoryAdjustmentModRs", "InventoryAdjustmentRet"),
|
|
822
822
|
/**
|
|
@@ -826,7 +826,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
826
826
|
* You cannot query an inventory adjustment while the inventory adjustment
|
|
827
827
|
* form is open in the QuickBooks user interface.
|
|
828
828
|
*
|
|
829
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/InventoryAdjustmentQuery
|
|
829
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/InventoryAdjustmentQuery
|
|
830
830
|
*/
|
|
831
831
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { InventoryAdjustmentQueryRq: params }, "InventoryAdjustmentQueryRs", "InventoryAdjustmentRet"),
|
|
832
832
|
};
|
|
@@ -834,19 +834,19 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
834
834
|
/**
|
|
835
835
|
* Adds an inventory site.
|
|
836
836
|
*
|
|
837
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/InventorySiteAdd
|
|
837
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/InventorySiteAdd
|
|
838
838
|
*/
|
|
839
839
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { InventorySiteAddRq: { InventorySiteAdd: params } }, "InventorySiteAddRs", "InventorySiteRet"),
|
|
840
840
|
/**
|
|
841
841
|
* Modifies an inventory site.
|
|
842
842
|
*
|
|
843
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/InventorySiteMod
|
|
843
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/InventorySiteMod
|
|
844
844
|
*/
|
|
845
845
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { InventorySiteModRq: { InventorySiteMod: params } }, "InventorySiteModRs", "InventorySiteRet"),
|
|
846
846
|
/**
|
|
847
847
|
* Queries for the specified inventory site or set of inventory sites.
|
|
848
848
|
*
|
|
849
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/InventorySiteQuery
|
|
849
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/InventorySiteQuery
|
|
850
850
|
*/
|
|
851
851
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { InventorySiteQueryRq: params }, "InventorySiteQueryRs", "InventorySiteRet"),
|
|
852
852
|
};
|
|
@@ -872,7 +872,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
872
872
|
* The cost of the item is only affected by purchases (bills and item
|
|
873
873
|
* receipts) sales and inventory adjustments.
|
|
874
874
|
*
|
|
875
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/InvoiceAdd
|
|
875
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/InvoiceAdd
|
|
876
876
|
*/
|
|
877
877
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { InvoiceAddRq: { InvoiceAdd: params } }, "InvoiceAddRs", "InvoiceRet"),
|
|
878
878
|
/**
|
|
@@ -902,13 +902,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
902
902
|
* - `SalesTaxCodeRef`
|
|
903
903
|
* - `OverrideItemAccountRef`
|
|
904
904
|
*
|
|
905
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/InvoiceMod
|
|
905
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/InvoiceMod
|
|
906
906
|
*/
|
|
907
907
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { InvoiceModRq: { InvoiceMod: params } }, "InvoiceModRs", "InvoiceRet"),
|
|
908
908
|
/**
|
|
909
909
|
* Returns invoice data.
|
|
910
910
|
*
|
|
911
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/InvoiceQuery
|
|
911
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/InvoiceQuery
|
|
912
912
|
*/
|
|
913
913
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { InvoiceQueryRq: params }, "InvoiceQueryRs", "InvoiceRet"),
|
|
914
914
|
};
|
|
@@ -940,7 +940,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
940
940
|
* dangerous. You should almost never use them unless discounts in your
|
|
941
941
|
* state are never applied to sales tax.
|
|
942
942
|
*
|
|
943
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemDiscountAdd
|
|
943
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemDiscountAdd
|
|
944
944
|
*/
|
|
945
945
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemDiscountAddRq: { ItemDiscountAdd: params } }, "ItemDiscountAddRs", "ItemDiscountRet"),
|
|
946
946
|
/**
|
|
@@ -977,13 +977,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
977
977
|
* dangerous. You should almost never use them unless discounts in your
|
|
978
978
|
* state are never applied to sales tax.
|
|
979
979
|
*
|
|
980
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemDiscountMod
|
|
980
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemDiscountMod
|
|
981
981
|
*/
|
|
982
982
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemDiscountModRq: { ItemDiscountMod: params } }, "ItemDiscountModRs", "ItemDiscountRet"),
|
|
983
983
|
/**
|
|
984
984
|
* Queries for the specified discount item or set of items.
|
|
985
985
|
*
|
|
986
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemDiscountQuery
|
|
986
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemDiscountQuery
|
|
987
987
|
*/
|
|
988
988
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemDiscountQueryRq: params }, "ItemDiscountQueryRs", "ItemDiscountRet"),
|
|
989
989
|
};
|
|
@@ -994,7 +994,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
994
994
|
* fixed assets is typically expensed over a period of years, rather than in
|
|
995
995
|
* the year the purchase was made.
|
|
996
996
|
*
|
|
997
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemFixedAssetAdd
|
|
997
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemFixedAssetAdd
|
|
998
998
|
*/
|
|
999
999
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemFixedAssetAddRq: { ItemFixedAssetAdd: params } }, "ItemFixedAssetAddRs", "ItemFixedAssetRet"),
|
|
1000
1000
|
/**
|
|
@@ -1003,13 +1003,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1003
1003
|
* fixed assets is typically expensed over a period of years, rather than in
|
|
1004
1004
|
* the year the purchase was made.
|
|
1005
1005
|
*
|
|
1006
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemFixedAssetMod
|
|
1006
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemFixedAssetMod
|
|
1007
1007
|
*/
|
|
1008
1008
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemFixedAssetModRq: { ItemFixedAssetMod: params } }, "ItemFixedAssetModRs", "ItemFixedAssetRet"),
|
|
1009
1009
|
/**
|
|
1010
1010
|
* Queries for the specified fixed-asset item or set of fixed asset items.
|
|
1011
1011
|
*
|
|
1012
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemFixedAssetQuery
|
|
1012
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemFixedAssetQuery
|
|
1013
1013
|
*/
|
|
1014
1014
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemFixedAssetQueryRq: params }, "ItemFixedAssetQueryRs", "ItemFixedAssetRet"),
|
|
1015
1015
|
};
|
|
@@ -1022,20 +1022,20 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1022
1022
|
* `ItemGroupQuery` request to get information about all the item groups
|
|
1023
1023
|
* that are set up in the QuickBooks file.
|
|
1024
1024
|
*
|
|
1025
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemGroupAdd
|
|
1025
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemGroupAdd
|
|
1026
1026
|
*/
|
|
1027
1027
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemGroupAddRq: { ItemGroupAdd: params } }, "ItemGroupAddRs", "ItemGroupRet"),
|
|
1028
1028
|
/**
|
|
1029
1029
|
* Modifies an item group.
|
|
1030
1030
|
*
|
|
1031
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemGroupMod
|
|
1031
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemGroupMod
|
|
1032
1032
|
*/
|
|
1033
1033
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemGroupModRq: { ItemGroupMod: params } }, "ItemGroupModRs", "ItemGroupRet"),
|
|
1034
1034
|
/**
|
|
1035
1035
|
* An `ItemGroupQuery` request will return information about all the item
|
|
1036
1036
|
* groups that are set up in the QuickBooks file.
|
|
1037
1037
|
*
|
|
1038
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/itemgroupquery
|
|
1038
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/itemgroupquery
|
|
1039
1039
|
*/
|
|
1040
1040
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemGroupQueryRq: params }, "ItemGroupQueryRs", "ItemGroupRet"),
|
|
1041
1041
|
};
|
|
@@ -1052,13 +1052,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1052
1052
|
* 3. Inventory Information includes `AssetAccountRef`, `ReorderPoint`,
|
|
1053
1053
|
* `QuantityOnHand`, `TotalValue`, and `InventoryDate`.
|
|
1054
1054
|
*
|
|
1055
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemInventoryAdd
|
|
1055
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemInventoryAdd
|
|
1056
1056
|
*/
|
|
1057
1057
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemInventoryAddRq: { ItemInventoryAdd: params } }, "ItemInventoryAddRs", "ItemInventoryRet"),
|
|
1058
1058
|
/**
|
|
1059
1059
|
* Modifies an inventory item.
|
|
1060
1060
|
*
|
|
1061
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemInventoryMod
|
|
1061
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemInventoryMod
|
|
1062
1062
|
*/
|
|
1063
1063
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemInventoryModRq: { ItemInventoryMod: params } }, "ItemInventoryModRs", "ItemInventoryRet"),
|
|
1064
1064
|
/**
|
|
@@ -1082,7 +1082,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1082
1082
|
* Inventory Valuation Summary. (Again, this report doesn’t include
|
|
1083
1083
|
* Inventory Assemblies.)
|
|
1084
1084
|
*
|
|
1085
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemInventoryQuery
|
|
1085
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemInventoryQuery
|
|
1086
1086
|
*/
|
|
1087
1087
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemInventoryQueryRq: params }, "ItemInventoryQueryRs", "ItemInventoryRet"),
|
|
1088
1088
|
};
|
|
@@ -1092,7 +1092,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1092
1092
|
* manufactured from other inventory items. The items and/or assemblies that
|
|
1093
1093
|
* make up the assembly are called components.
|
|
1094
1094
|
*
|
|
1095
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemInventoryAssemblyAdd
|
|
1095
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemInventoryAssemblyAdd
|
|
1096
1096
|
*/
|
|
1097
1097
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemInventoryAssemblyAddRq: { ItemInventoryAssemblyAdd: params } }, "ItemInventoryAssemblyAddRs", "ItemInventoryAssemblyRet"),
|
|
1098
1098
|
/**
|
|
@@ -1115,14 +1115,14 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1115
1115
|
* `IncomeAccountRef` changes will not be made and so the Mod request will
|
|
1116
1116
|
* return an error without making the requested Mod.
|
|
1117
1117
|
*
|
|
1118
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemInventoryAssemblyMod
|
|
1118
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemInventoryAssemblyMod
|
|
1119
1119
|
*/
|
|
1120
1120
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemInventoryAssemblyModRq: { ItemInventoryAssemblyMod: params } }, "ItemInventoryAssemblyModRs", "ItemInventoryAssemblyRet"),
|
|
1121
1121
|
/**
|
|
1122
1122
|
* Queries for the specified inventory assembly item or set of assembly
|
|
1123
1123
|
* items.
|
|
1124
1124
|
*
|
|
1125
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemInventoryAssemblyQuery
|
|
1125
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemInventoryAssemblyQuery
|
|
1126
1126
|
*/
|
|
1127
1127
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemInventoryAssemblyQueryRq: params }, "ItemInventoryAssemblyQueryRs", "ItemInventoryAssemblyRet"),
|
|
1128
1128
|
};
|
|
@@ -1136,7 +1136,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1136
1136
|
* 2. Materials or parts that the business buys to finish a specific job and
|
|
1137
1137
|
* then charges back to the customer.
|
|
1138
1138
|
*
|
|
1139
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemNonInventoryAdd
|
|
1139
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemNonInventoryAdd
|
|
1140
1140
|
*/
|
|
1141
1141
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemNonInventoryAddRq: { ItemNonInventoryAdd: params } }, "ItemNonInventoryAddRs", "ItemNonInventoryRet"),
|
|
1142
1142
|
/**
|
|
@@ -1166,13 +1166,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1166
1166
|
* date and password, the `AccountRef` changes will not be made and so the Mod
|
|
1167
1167
|
* request will return an error without making the requested Mod.
|
|
1168
1168
|
*
|
|
1169
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemNonInventoryMod
|
|
1169
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemNonInventoryMod
|
|
1170
1170
|
*/
|
|
1171
1171
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemNonInventoryModRq: { ItemNonInventoryMod: params } }, "ItemNonInventoryModRs", "ItemNonInventoryRet"),
|
|
1172
1172
|
/**
|
|
1173
1173
|
* Queries for the specified non-inventory item or set of items.
|
|
1174
1174
|
*
|
|
1175
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemNonInventoryQuery
|
|
1175
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemNonInventoryQuery
|
|
1176
1176
|
*/
|
|
1177
1177
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemNonInventoryQueryRq: params }, "ItemNonInventoryQueryRs", "ItemNonInventoryRet"),
|
|
1178
1178
|
};
|
|
@@ -1182,7 +1182,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1182
1182
|
* fall into the categories of service, labor, materials, or parts. Examples
|
|
1183
1183
|
* include delivery charges, setup fees, and service charges.
|
|
1184
1184
|
*
|
|
1185
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemOtherChargeAdd
|
|
1185
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemOtherChargeAdd
|
|
1186
1186
|
*/
|
|
1187
1187
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemOtherChargeAddRq: { ItemOtherChargeAdd: params } }, "ItemOtherChargeAddRs", "ItemOtherChargeRet"),
|
|
1188
1188
|
/**
|
|
@@ -1212,13 +1212,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1212
1212
|
* date and password, the AccountRef changes will not be made and so the Mod
|
|
1213
1213
|
* request will return an error without making the requested Mod.
|
|
1214
1214
|
*
|
|
1215
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemOtherChargeMod
|
|
1215
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemOtherChargeMod
|
|
1216
1216
|
*/
|
|
1217
1217
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemOtherChargeModRq: { ItemOtherChargeMod: params } }, "ItemOtherChargeModRs", "ItemOtherChargeRet"),
|
|
1218
1218
|
/**
|
|
1219
1219
|
* Queries for the specified other charge item or set of items.
|
|
1220
1220
|
*
|
|
1221
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemOtherChargeQuery
|
|
1221
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemOtherChargeQuery
|
|
1222
1222
|
*/
|
|
1223
1223
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemOtherChargeQueryRq: params }, "ItemOtherChargeQueryRs", "ItemOtherChargeRet"),
|
|
1224
1224
|
};
|
|
@@ -1232,7 +1232,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1232
1232
|
* `DepositToAccountRef` at all, or by specifying the special
|
|
1233
1233
|
* UndepositedFunds account for the `DepositToAccountRef`.
|
|
1234
1234
|
*
|
|
1235
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemPaymentAdd
|
|
1235
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemPaymentAdd
|
|
1236
1236
|
*/
|
|
1237
1237
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemPaymentAddRq: { ItemPaymentAdd: params } }, "ItemPaymentAddRs", "ItemPaymentRet"),
|
|
1238
1238
|
/**
|
|
@@ -1243,13 +1243,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1243
1243
|
* clear the DepositToAccountRef, or by specifying the account whose
|
|
1244
1244
|
* `SpecialAccountType` is `UndepositedFunds` for the `DepositToAccountRef`.
|
|
1245
1245
|
*
|
|
1246
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemPaymentMod
|
|
1246
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemPaymentMod
|
|
1247
1247
|
*/
|
|
1248
1248
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemPaymentModRq: { ItemPaymentMod: params } }, "ItemPaymentModRs", "ItemPaymentRet"),
|
|
1249
1249
|
/**
|
|
1250
1250
|
* Queries for the specified item payment or set of payments.
|
|
1251
1251
|
*
|
|
1252
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemPaymentQuery
|
|
1252
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemPaymentQuery
|
|
1253
1253
|
*/
|
|
1254
1254
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemPaymentQueryRq: params }, "ItemPaymentQueryRs", "ItemPaymentRet"),
|
|
1255
1255
|
};
|
|
@@ -1264,20 +1264,20 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1264
1264
|
* in automatically from the purchase order. You can do this linking only in
|
|
1265
1265
|
* the item receipt add, not in the mod.
|
|
1266
1266
|
*
|
|
1267
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemReceiptAdd
|
|
1267
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemReceiptAdd
|
|
1268
1268
|
*/
|
|
1269
1269
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemReceiptAddRq: { ItemReceiptAdd: params } }, "ItemReceiptAddRs", "ItemReceiptRet"),
|
|
1270
1270
|
/**
|
|
1271
1271
|
* Modifies an existing item receipt.
|
|
1272
1272
|
*
|
|
1273
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemReceiptMod
|
|
1273
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemReceiptMod
|
|
1274
1274
|
*/
|
|
1275
1275
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemReceiptModRq: { ItemReceiptMod: params } }, "ItemReceiptModRs", "ItemReceiptRet"),
|
|
1276
1276
|
/**
|
|
1277
1277
|
* An item receipt transaction is entered in QuickBooks when a shipment is
|
|
1278
1278
|
* received from a vendor.
|
|
1279
1279
|
*
|
|
1280
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemReceiptQuery
|
|
1280
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemReceiptQuery
|
|
1281
1281
|
*/
|
|
1282
1282
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemReceiptQueryRq: params }, "ItemReceiptQueryRs", "ItemReceiptRet"),
|
|
1283
1283
|
};
|
|
@@ -1320,19 +1320,19 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1320
1320
|
* name such a tax item “Tax Calculated On Invoice” so that it’s clear that
|
|
1321
1321
|
* the tax is not being applied by QuickBooks on the entire invoice.
|
|
1322
1322
|
*
|
|
1323
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemSalesTaxAdd
|
|
1323
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemSalesTaxAdd
|
|
1324
1324
|
*/
|
|
1325
1325
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemSalesTaxAddRq: { ItemSalesTaxAdd: params } }, "ItemSalesTaxAddRs", "ItemSalesTaxRet"),
|
|
1326
1326
|
/**
|
|
1327
1327
|
* Modifies an existing sales-tax item.
|
|
1328
1328
|
*
|
|
1329
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemSalesTaxMod
|
|
1329
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemSalesTaxMod
|
|
1330
1330
|
*/
|
|
1331
1331
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemSalesTaxModRq: { ItemSalesTaxMod: params } }, "ItemSalesTaxModRs", "ItemSalesTaxRet"),
|
|
1332
1332
|
/**
|
|
1333
1333
|
* Queries for the specified sales-tax item or set of items.
|
|
1334
1334
|
*
|
|
1335
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemSalesTaxQuery
|
|
1335
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemSalesTaxQuery
|
|
1336
1336
|
*/
|
|
1337
1337
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemSalesTaxQueryRq: params }, "ItemSalesTaxQueryRs", "ItemSalesTaxRet"),
|
|
1338
1338
|
};
|
|
@@ -1372,19 +1372,19 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1372
1372
|
* On Invoice” so that it’s clear that the tax is not being applied by
|
|
1373
1373
|
* QuickBooks on the entire invoice.
|
|
1374
1374
|
*
|
|
1375
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemSalesTaxGroupAdd
|
|
1375
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemSalesTaxGroupAdd
|
|
1376
1376
|
*/
|
|
1377
1377
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemSalesTaxGroupAddRq: { ItemSalesTaxGroupAdd: params } }, "ItemSalesTaxGroupAddRs", "ItemSalesTaxGroupRet"),
|
|
1378
1378
|
/**
|
|
1379
1379
|
* Modifies an existing sales-tax group item.
|
|
1380
1380
|
*
|
|
1381
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemSalesTaxGroupMod
|
|
1381
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemSalesTaxGroupMod
|
|
1382
1382
|
*/
|
|
1383
1383
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemSalesTaxGroupModRq: { ItemSalesTaxGroupMod: params } }, "ItemSalesTaxGroupModRs", "ItemSalesTaxGroupRet"),
|
|
1384
1384
|
/**
|
|
1385
1385
|
* Queries for the specified sales-tax group item or set of group items.
|
|
1386
1386
|
*
|
|
1387
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemSalesTaxGroupQuery
|
|
1387
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemSalesTaxGroupQuery
|
|
1388
1388
|
*/
|
|
1389
1389
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemSalesTaxGroupQueryRq: params }, "ItemSalesTaxGroupQueryRs", "ItemSalesTaxGroupRet"),
|
|
1390
1390
|
};
|
|
@@ -1401,7 +1401,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1401
1401
|
* If no `CustomerRef` is specified, then `ItemServiceRef` is not needed. If
|
|
1402
1402
|
* `IsBillable` is set to true, then `TimeTrackingAdd` must include both
|
|
1403
1403
|
* `ItemServiceRef` and `CustomerRef`.
|
|
1404
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemServiceAdd
|
|
1404
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemServiceAdd
|
|
1405
1405
|
*/
|
|
1406
1406
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemServiceAddRq: { ItemServiceAdd: params } }, "ItemServiceAddRs", "ItemServiceRet"),
|
|
1407
1407
|
/**
|
|
@@ -1433,13 +1433,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1433
1433
|
* will not be made and so the `Mod` request will return an error
|
|
1434
1434
|
* without making the requested `Mod`.
|
|
1435
1435
|
*
|
|
1436
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemServiceMod
|
|
1436
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemServiceMod
|
|
1437
1437
|
*/
|
|
1438
1438
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemServiceModRq: { ItemServiceMod: params } }, "ItemServiceModRs", "ItemServiceRet"),
|
|
1439
1439
|
/**
|
|
1440
1440
|
* Queries for the specified service item or set of items.
|
|
1441
1441
|
*
|
|
1442
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemServiceQuery
|
|
1442
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemServiceQuery
|
|
1443
1443
|
*/
|
|
1444
1444
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemServiceQueryRq: params }, "ItemServiceQueryRs", "ItemServiceRet"),
|
|
1445
1445
|
};
|
|
@@ -1450,19 +1450,19 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1450
1450
|
* must be subtotaled before a discount is applied (using `ItemDiscount`),
|
|
1451
1451
|
* because a discount applies only to the line that is directly above it.
|
|
1452
1452
|
*
|
|
1453
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemSubtotalAdd
|
|
1453
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemSubtotalAdd
|
|
1454
1454
|
*/
|
|
1455
1455
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemSubtotalAddRq: { ItemSubtotalAdd: params } }, "ItemSubtotalAddRs", "ItemSubtotalRet"),
|
|
1456
1456
|
/**
|
|
1457
1457
|
* Modifies an existing subtotal item.
|
|
1458
1458
|
*
|
|
1459
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemSubtotalMod
|
|
1459
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemSubtotalMod
|
|
1460
1460
|
*/
|
|
1461
1461
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemSubtotalModRq: { ItemSubtotalMod: params } }, "ItemSubtotalModRs", "ItemSubtotalRet"),
|
|
1462
1462
|
/**
|
|
1463
1463
|
* Queries for the specified subtotal item or set of items.
|
|
1464
1464
|
*
|
|
1465
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemSubtotalQuery
|
|
1465
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemSubtotalQuery
|
|
1466
1466
|
*/
|
|
1467
1467
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemSubtotalQueryRq: params }, "ItemSubtotalQueryRs", "ItemSubtotalRet"),
|
|
1468
1468
|
};
|
|
@@ -1475,13 +1475,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1475
1475
|
* request, if a `JobTypeRef` aggregate includes both `FullName` and
|
|
1476
1476
|
* `ListID`, `FullName` will be ignored.
|
|
1477
1477
|
*
|
|
1478
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/JobTypeAdd
|
|
1478
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/JobTypeAdd
|
|
1479
1479
|
*/
|
|
1480
1480
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { JobTypeAddRq: { JobTypeAdd: params } }, "JobTypeAddRs", "JobTypeRet"),
|
|
1481
1481
|
/**
|
|
1482
1482
|
* Queries for the specified job type or set of job types.
|
|
1483
1483
|
*
|
|
1484
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/JobTypeQuery
|
|
1484
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/JobTypeQuery
|
|
1485
1485
|
*/
|
|
1486
1486
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { JobTypeQueryRq: params }, "JobTypeQueryRs", "JobTypeRet"),
|
|
1487
1487
|
};
|
|
@@ -1515,7 +1515,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1515
1515
|
* the `IsAmountsEnteredInHomeCurrency`, `CurrencyRef`, and `ExchangeRate`
|
|
1516
1516
|
* elements.
|
|
1517
1517
|
*
|
|
1518
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/JournalEntryAdd
|
|
1518
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/JournalEntryAdd
|
|
1519
1519
|
*/
|
|
1520
1520
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { JournalEntryAddRq: { JournalEntryAdd: params } }, "JournalEntryAddRs", "JournalEntryRet"),
|
|
1521
1521
|
/**
|
|
@@ -1525,7 +1525,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1525
1525
|
* the `IsAmountsEnteredInHomeCurrency`, `CurrencyRef`, and `ExchangeRate`
|
|
1526
1526
|
* elements.
|
|
1527
1527
|
*
|
|
1528
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/JournalEntryMod
|
|
1528
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/JournalEntryMod
|
|
1529
1529
|
*/
|
|
1530
1530
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { JournalEntryModRq: { JournalEntryMod: params } }, "JournalEntryModRs", "JournalEntryRet"),
|
|
1531
1531
|
/**
|
|
@@ -1550,7 +1550,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1550
1550
|
* use the The generic `TransactionQuery`, which can return condensed
|
|
1551
1551
|
* transactions.
|
|
1552
1552
|
*
|
|
1553
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/JournalEntryQuery
|
|
1553
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/JournalEntryQuery
|
|
1554
1554
|
*/
|
|
1555
1555
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { JournalEntryQueryRq: params }, "JournalEntryQueryRs", "JournalEntryRet"),
|
|
1556
1556
|
};
|
|
@@ -1558,19 +1558,19 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1558
1558
|
/**
|
|
1559
1559
|
* Adds a lead.
|
|
1560
1560
|
*
|
|
1561
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/LeadAdd
|
|
1561
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/LeadAdd
|
|
1562
1562
|
*/
|
|
1563
1563
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { LeadAddRq: { LeadAdd: params } }, "LeadAddRs", "LeadRet"),
|
|
1564
1564
|
/**
|
|
1565
1565
|
* Modifies an existing lead.
|
|
1566
1566
|
*
|
|
1567
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/LeadMod
|
|
1567
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/LeadMod
|
|
1568
1568
|
*/
|
|
1569
1569
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { LeadModRq: { LeadMod: params } }, "LeadModRs", "LeadRet"),
|
|
1570
1570
|
/**
|
|
1571
1571
|
* Queries for the specified lead or set of leads.
|
|
1572
1572
|
*
|
|
1573
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/LeadQuery
|
|
1573
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/LeadQuery
|
|
1574
1574
|
*/
|
|
1575
1575
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { LeadQueryRq: params }, "LeadQueryRs", "LeadRet"),
|
|
1576
1576
|
};
|
|
@@ -1579,19 +1579,19 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1579
1579
|
* Adds an other name. In QuickBooks, the “other names” list contains any
|
|
1580
1580
|
* names that do not appear on customer, vendor, or employee lists.
|
|
1581
1581
|
*
|
|
1582
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/OtherNameAdd
|
|
1582
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/OtherNameAdd
|
|
1583
1583
|
*/
|
|
1584
1584
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { OtherNameAddRq: { OtherNameAdd: params } }, "OtherNameAddRs", "OtherNameRet"),
|
|
1585
1585
|
/**
|
|
1586
1586
|
* Modifies an existing other name.
|
|
1587
1587
|
*
|
|
1588
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/OtherNameMod
|
|
1588
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/OtherNameMod
|
|
1589
1589
|
*/
|
|
1590
1590
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { OtherNameModRq: { OtherNameMod: params } }, "OtherNameModRs", "OtherNameRet"),
|
|
1591
1591
|
/**
|
|
1592
1592
|
* Queries for the specified other name or set of other names.
|
|
1593
1593
|
*
|
|
1594
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/OtherNameQuery
|
|
1594
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/OtherNameQuery
|
|
1595
1595
|
*/
|
|
1596
1596
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { OtherNameQueryRq: params }, "OtherNameQueryRs", "OtherNameRet"),
|
|
1597
1597
|
};
|
|
@@ -1611,7 +1611,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1611
1611
|
* simply lists the Rate for the item, which was set using the price level.
|
|
1612
1612
|
* The `CurrencyRef` should only be used with “per item” price levels.
|
|
1613
1613
|
*
|
|
1614
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/PriceLevelAdd
|
|
1614
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/PriceLevelAdd
|
|
1615
1615
|
*/
|
|
1616
1616
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { PriceLevelAddRq: { PriceLevelAdd: params } }, "PriceLevelAddRs", "PriceLevelRet"),
|
|
1617
1617
|
/**
|
|
@@ -1619,13 +1619,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1619
1619
|
*
|
|
1620
1620
|
* The `CurrencyRef` should only be used with “per item” price levels.
|
|
1621
1621
|
*
|
|
1622
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/PriceLevelMod
|
|
1622
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/PriceLevelMod
|
|
1623
1623
|
*/
|
|
1624
1624
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { PriceLevelModRq: { PriceLevelMod: params } }, "PriceLevelModRs", "PriceLevelRet"),
|
|
1625
1625
|
/**
|
|
1626
1626
|
* Queries for the specified price level or set of price levels.
|
|
1627
1627
|
*
|
|
1628
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/PriceLevelQuery
|
|
1628
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/PriceLevelQuery
|
|
1629
1629
|
*/
|
|
1630
1630
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { PriceLevelQueryRq: params }, "PriceLevelQueryRs", "PriceLevelRet"),
|
|
1631
1631
|
};
|
|
@@ -1636,7 +1636,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1636
1636
|
* arrive from the vendor. A purchase order is a non-posting transaction, so
|
|
1637
1637
|
* it does not affect a company’s balance sheet or income statement.
|
|
1638
1638
|
*
|
|
1639
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/PurchaseOrderQuery
|
|
1639
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/PurchaseOrderQuery
|
|
1640
1640
|
*/
|
|
1641
1641
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { PurchaseOrderAddRq: { PurchaseOrderAdd: params } }, "PurchaseOrderAddRs", "PurchaseOrderRet"),
|
|
1642
1642
|
/**
|
|
@@ -1660,13 +1660,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1660
1660
|
* - `IsManuallyClosed`
|
|
1661
1661
|
* - `OverrideItemAccountRef`
|
|
1662
1662
|
*
|
|
1663
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/PurchaseOrderMod
|
|
1663
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/PurchaseOrderMod
|
|
1664
1664
|
*/
|
|
1665
1665
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { PurchaseOrderModRq: { PurchaseOrderMod: params } }, "PurchaseOrderModRs", "PurchaseOrderRet"),
|
|
1666
1666
|
/**
|
|
1667
1667
|
* Queries for the specified purchase order or set of orders.
|
|
1668
1668
|
*
|
|
1669
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/PurchaseOrderQuery
|
|
1669
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/PurchaseOrderQuery
|
|
1670
1670
|
*/
|
|
1671
1671
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { PurchaseOrderQueryRq: params }, "PurchaseOrderQueryRs", "PurchaseOrderRet"),
|
|
1672
1672
|
};
|
|
@@ -1705,7 +1705,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1705
1705
|
* responses, you must specify the payment method (using the
|
|
1706
1706
|
* `PaymentMethodRef` aggregate).
|
|
1707
1707
|
*
|
|
1708
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ReceivePaymentAdd
|
|
1708
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ReceivePaymentAdd
|
|
1709
1709
|
*/
|
|
1710
1710
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ReceivePaymentAddRq: { ReceivePaymentAdd: params } }, "ReceivePaymentAddRs", "ReceivePaymentRet"),
|
|
1711
1711
|
/**
|
|
@@ -1752,13 +1752,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1752
1752
|
* - You cannot auto apply payment.
|
|
1753
1753
|
* - Apply an additional credit to an invoice.
|
|
1754
1754
|
*
|
|
1755
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ReceivePaymentMod
|
|
1755
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ReceivePaymentMod
|
|
1756
1756
|
*/
|
|
1757
1757
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ReceivePaymentModRq: { ReceivePaymentMod: params } }, "ReceivePaymentModRs", "ReceivePaymentRet"),
|
|
1758
1758
|
/**
|
|
1759
1759
|
* Queries for the specified receive payment or set of payments.
|
|
1760
1760
|
*
|
|
1761
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ReceivePaymentQuery
|
|
1761
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ReceivePaymentQuery
|
|
1762
1762
|
*/
|
|
1763
1763
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ReceivePaymentQueryRq: params }, "ReceivePaymentQueryRs", "ReceivePaymentRet"),
|
|
1764
1764
|
};
|
|
@@ -1803,7 +1803,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1803
1803
|
* the “target” budget must be defined in QuickBooks, via the UI, because
|
|
1804
1804
|
* you cannot create a budget via the SDK.
|
|
1805
1805
|
*
|
|
1806
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BudgetSummaryReportQuery
|
|
1806
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BudgetSummaryReportQuery
|
|
1807
1807
|
*/
|
|
1808
1808
|
budgetSummary: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { BudgetSummaryReportQueryRq: params }, "BudgetSummaryReportQueryRs", "ReportRet"),
|
|
1809
1809
|
/**
|
|
@@ -1823,7 +1823,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1823
1823
|
* want returned in the report. For these reports, you are also required to
|
|
1824
1824
|
* specify a date element a `DateMacro` or a custom date range).
|
|
1825
1825
|
*
|
|
1826
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CustomDetailReportQuery
|
|
1826
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CustomDetailReportQuery
|
|
1827
1827
|
*/
|
|
1828
1828
|
customDetail: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CustomDetailReportQueryRq: params }, "CustomDetailReportQueryRs", "ReportRet"),
|
|
1829
1829
|
/**
|
|
@@ -1842,7 +1842,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1842
1842
|
* want returned in the report. For these reports, you are also required to
|
|
1843
1843
|
* specify a date element a ``DateMacro`` or a custom date range).
|
|
1844
1844
|
*
|
|
1845
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CustomSummaryReportQuery
|
|
1845
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CustomSummaryReportQuery
|
|
1846
1846
|
*/
|
|
1847
1847
|
customSummary: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CustomSummaryReportQueryRq: params }, "CustomSummaryReportQueryRs", "ReportRet"),
|
|
1848
1848
|
/**
|
|
@@ -1875,7 +1875,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1875
1875
|
* entry of “Paid” is displayed and if the line is not paid, an entry of
|
|
1876
1876
|
* “Unpaid” is displayed.
|
|
1877
1877
|
*
|
|
1878
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/GeneralDetailReportQuery
|
|
1878
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/GeneralDetailReportQuery
|
|
1879
1879
|
*/
|
|
1880
1880
|
generalDetail: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { GeneralDetailReportQueryRq: params }, "GeneralDetailReportQueryRs", "ReportRet"),
|
|
1881
1881
|
/**
|
|
@@ -1884,7 +1884,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1884
1884
|
* category can be customized by the number of columns that are returned and
|
|
1885
1885
|
* by period comparisons for the data in the report.
|
|
1886
1886
|
*
|
|
1887
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/GeneralSummaryReportQuery
|
|
1887
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/GeneralSummaryReportQuery
|
|
1888
1888
|
*/
|
|
1889
1889
|
generalSummary: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { GeneralSummaryReportQueryRq: params }, "GeneralSummaryReportQueryRs", "ReportRet"),
|
|
1890
1890
|
/**
|
|
@@ -1893,7 +1893,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1893
1893
|
* column summarization, and by common filters. Some job reports require a
|
|
1894
1894
|
* `customer:job` reference in order to work.
|
|
1895
1895
|
*
|
|
1896
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/JobReportQuery
|
|
1896
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/JobReportQuery
|
|
1897
1897
|
*/
|
|
1898
1898
|
job: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { JobReportQueryRq: params }, "JobReportQueryRs", "ReportRet"),
|
|
1899
1899
|
/**
|
|
@@ -1925,7 +1925,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1925
1925
|
* without subscribing to the payroll service. For all other companies,
|
|
1926
1926
|
* however, the company must be subscribed.
|
|
1927
1927
|
*
|
|
1928
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/PayrollSummaryReportQuery
|
|
1928
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/PayrollSummaryReportQuery
|
|
1929
1929
|
*/
|
|
1930
1930
|
payrollSummary: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { PayrollSummaryReportQueryRq: params }, "PayrollSummaryReportQueryRs", "ReportRet"),
|
|
1931
1931
|
/**
|
|
@@ -1952,14 +1952,14 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1952
1952
|
* without subscribing to the payroll service. For all other companies,
|
|
1953
1953
|
* however, the company must be subscribed.
|
|
1954
1954
|
*
|
|
1955
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/PayrollDetailReportQuery
|
|
1955
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/PayrollDetailReportQuery
|
|
1956
1956
|
*/
|
|
1957
1957
|
payrollDetail: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { PayrollDetailReportQueryRq: params }, "PayrollDetailReportQueryRs", "ReportRet"),
|
|
1958
1958
|
/**
|
|
1959
1959
|
* The Time Reports category includes summary and detail reports related by
|
|
1960
1960
|
* time. Summarized columns can be customized in these reports.
|
|
1961
1961
|
*
|
|
1962
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TimeReportQuery
|
|
1962
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TimeReportQuery
|
|
1963
1963
|
*/
|
|
1964
1964
|
time: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { TimeReportQueryRq: params }, "TimeReportQueryRs", "ReportRet"),
|
|
1965
1965
|
};
|
|
@@ -1972,7 +1972,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1972
1972
|
* order can be “converted” into an invoice (by linking the invoice to the
|
|
1973
1973
|
* sales order) once the inventory is in stock.
|
|
1974
1974
|
*
|
|
1975
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesOrderAdd
|
|
1975
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesOrderAdd
|
|
1976
1976
|
*/
|
|
1977
1977
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { SalesOrderAddRq: { SalesOrderAdd: params } }, "SalesOrderAddRs", "SalesOrderRet"),
|
|
1978
1978
|
/**
|
|
@@ -1998,13 +1998,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
1998
1998
|
* - `SalesTaxCodeRef`
|
|
1999
1999
|
* - `IsManuallyClosed`
|
|
2000
2000
|
*
|
|
2001
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesOrderMod
|
|
2001
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesOrderMod
|
|
2002
2002
|
*/
|
|
2003
2003
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { SalesOrderModRq: { SalesOrderMod: params } }, "SalesOrderModRs", "SalesOrderRet"),
|
|
2004
2004
|
/**
|
|
2005
2005
|
* Queries for the specified sales order or set of sales orders.
|
|
2006
2006
|
*
|
|
2007
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesOrderQuery
|
|
2007
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesOrderQuery
|
|
2008
2008
|
*/
|
|
2009
2009
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { SalesOrderQueryRq: params }, "SalesOrderQueryRs", "SalesOrderRet"),
|
|
2010
2010
|
};
|
|
@@ -2030,7 +2030,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
2030
2030
|
* responses, you must specify the payment method (using the
|
|
2031
2031
|
* `PaymentMethodRef` aggregate).
|
|
2032
2032
|
*
|
|
2033
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesReceiptAdd
|
|
2033
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesReceiptAdd
|
|
2034
2034
|
*/
|
|
2035
2035
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { SalesReceiptAddRq: { SalesReceiptAdd: params } }, "SalesReceiptAddRs", "SalesReceiptRet"),
|
|
2036
2036
|
/**
|
|
@@ -2040,13 +2040,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
2040
2040
|
* transaction data supplied from QBMS transaction responses, you cannot
|
|
2041
2041
|
* change the total amount recorded in the sale.
|
|
2042
2042
|
*
|
|
2043
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesReceiptMod
|
|
2043
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesReceiptMod
|
|
2044
2044
|
*/
|
|
2045
2045
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { SalesReceiptModRq: { SalesReceiptMod: params } }, "SalesReceiptModRs", "SalesReceiptRet"),
|
|
2046
2046
|
/**
|
|
2047
2047
|
* Queries for the specified sales receipt or set of receipts.
|
|
2048
2048
|
*
|
|
2049
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesReceiptQuery
|
|
2049
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesReceiptQuery
|
|
2050
2050
|
*/
|
|
2051
2051
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { SalesReceiptQueryRq: params }, "SalesReceiptQueryRs", "SalesReceiptRet"),
|
|
2052
2052
|
};
|
|
@@ -2062,19 +2062,19 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
2062
2062
|
* if a `SalesRepRef` aggregate includes both `FullName` and `ListID`,
|
|
2063
2063
|
* `FullName` will be ignored.
|
|
2064
2064
|
*
|
|
2065
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesRepAdd
|
|
2065
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesRepAdd
|
|
2066
2066
|
*/
|
|
2067
2067
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { SalesRepAddRq: { SalesRepAdd: params } }, "SalesRepAddRs", "SalesRepRet"),
|
|
2068
2068
|
/**
|
|
2069
2069
|
* Modifies a sales rep record.
|
|
2070
2070
|
*
|
|
2071
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesRepMod
|
|
2071
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesRepMod
|
|
2072
2072
|
*/
|
|
2073
2073
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { SalesRepModRq: { SalesRepMod: params } }, "SalesRepModRs", "SalesRepRet"),
|
|
2074
2074
|
/**
|
|
2075
2075
|
* Queries for the specified sales rep or set of reps.
|
|
2076
2076
|
*
|
|
2077
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesRepQuery
|
|
2077
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesRepQuery
|
|
2078
2078
|
*/
|
|
2079
2079
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { SalesRepQueryRq: params }, "SalesRepQueryRs", "SalesRepRet"),
|
|
2080
2080
|
};
|
|
@@ -2102,7 +2102,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
2102
2102
|
* of sales tax that will be charged for this item, if it is a taxable item
|
|
2103
2103
|
* and if sales tax is set up within QuickBooks.
|
|
2104
2104
|
*
|
|
2105
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesTaxCodeAdd
|
|
2105
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesTaxCodeAdd
|
|
2106
2106
|
*/
|
|
2107
2107
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { SalesTaxCodeAddRq: { SalesTaxCodeAdd: params } }, "SalesTaxCodeAddRs", "SalesTaxCodeRet"),
|
|
2108
2108
|
/**
|
|
@@ -2112,13 +2112,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
2112
2112
|
* (Tax) and exempt (Non) tax codes, you can’t use this request to change
|
|
2113
2113
|
* the `IsTaxable` property at all, even before any transactions.
|
|
2114
2114
|
*
|
|
2115
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesTaxCodeMod
|
|
2115
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesTaxCodeMod
|
|
2116
2116
|
*/
|
|
2117
2117
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { SalesTaxCodeModRq: { SalesTaxCodeMod: params } }, "SalesTaxCodeModRs", "SalesTaxCodeRet"),
|
|
2118
2118
|
/**
|
|
2119
2119
|
* Queries for the specified sales tax code or set of codes.
|
|
2120
2120
|
*
|
|
2121
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesTaxCodeQuery
|
|
2121
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesTaxCodeQuery
|
|
2122
2122
|
*/
|
|
2123
2123
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { SalesTaxCodeQueryRq: params }, "SalesTaxCodeQueryRs", "SalesTaxCodeRet"),
|
|
2124
2124
|
};
|
|
@@ -2126,19 +2126,19 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
2126
2126
|
/**
|
|
2127
2127
|
* Adds a payment made for sales tax owed (for example, to a state sales tax authority).
|
|
2128
2128
|
*
|
|
2129
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesTaxPaymentCheckAdd
|
|
2129
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesTaxPaymentCheckAdd
|
|
2130
2130
|
*/
|
|
2131
2131
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { SalesTaxPaymentCheckAddRq: { SalesTaxPaymentCheckAdd: params } }, "SalesTaxPaymentCheckAddRs", "SalesTaxPaymentCheckRet"),
|
|
2132
2132
|
/**
|
|
2133
2133
|
* Modifies an existing sales tax payment check.
|
|
2134
2134
|
*
|
|
2135
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesTaxPaymentCheckMod
|
|
2135
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesTaxPaymentCheckMod
|
|
2136
2136
|
*/
|
|
2137
2137
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { SalesTaxPaymentCheckModRq: { SalesTaxPaymentCheckMod: params } }, "SalesTaxPaymentCheckModRs", "SalesTaxPaymentCheckRet"),
|
|
2138
2138
|
/**
|
|
2139
2139
|
* Queries for payments that have been made for sales tax owed (for example, to a state sales tax authority).
|
|
2140
2140
|
*
|
|
2141
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesTaxPaymentCheckQuery
|
|
2141
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/SalesTaxPaymentCheckQuery
|
|
2142
2142
|
*/
|
|
2143
2143
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { SalesTaxPaymentCheckQueryRq: params }, "SalesTaxPaymentCheckQueryRs", "SalesTaxPaymentCheckRet"),
|
|
2144
2144
|
};
|
|
@@ -2151,7 +2151,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
2151
2151
|
* the QuickBooks SDK cannot access the Timer data directly. The Timer data
|
|
2152
2152
|
* must be imported into QuickBooks before it is accessible via the SDK.)
|
|
2153
2153
|
*
|
|
2154
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TimeTrackingQuery
|
|
2154
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TimeTrackingQuery
|
|
2155
2155
|
*/
|
|
2156
2156
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { TimeTrackingAddRq: { TimeTrackingAdd: params } }, "TimeTrackingAddRs", "TimeTrackingRet"),
|
|
2157
2157
|
/**
|
|
@@ -2178,7 +2178,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
2178
2178
|
* `TimeTrackingMod` so that you can mark the time as billed when you create
|
|
2179
2179
|
* an invoice for it.
|
|
2180
2180
|
*
|
|
2181
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TimeTrackingMod
|
|
2181
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TimeTrackingMod
|
|
2182
2182
|
*/
|
|
2183
2183
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { TimeTrackingModRq: { TimeTrackingMod: params } }, "TimeTrackingModRs", "TimeTrackingRet"),
|
|
2184
2184
|
/**
|
|
@@ -2189,7 +2189,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
2189
2189
|
* the QuickBooks SDK cannot access the Timer data directly. The Timer data
|
|
2190
2190
|
* must be imported into QuickBooks before it is accessible via the SDK.)
|
|
2191
2191
|
*
|
|
2192
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TimeTrackingQuery
|
|
2192
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TimeTrackingQuery
|
|
2193
2193
|
*/
|
|
2194
2194
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { TimeTrackingQueryRq: params }, "TimeTrackingQueryRs", "TimeTrackingRet"),
|
|
2195
2195
|
};
|
|
@@ -2197,19 +2197,19 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
2197
2197
|
/**
|
|
2198
2198
|
* Adds a transfer transaction.
|
|
2199
2199
|
*
|
|
2200
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TransferAdd
|
|
2200
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TransferAdd
|
|
2201
2201
|
*/
|
|
2202
2202
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { TransferAddRq: { TransferAdd: params } }, "TransferAddRs", "TransferRet"),
|
|
2203
2203
|
/**
|
|
2204
2204
|
* Modifies a transfer transaction.
|
|
2205
2205
|
*
|
|
2206
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TransferMod
|
|
2206
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TransferMod
|
|
2207
2207
|
*/
|
|
2208
2208
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { TransferModRq: { TransferMod: params } }, "TransferModRs", "TransferRet"),
|
|
2209
2209
|
/**
|
|
2210
2210
|
* Queries for the specified transfer or set of transfers.
|
|
2211
2211
|
*
|
|
2212
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TransferQuery
|
|
2212
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TransferQuery
|
|
2213
2213
|
*/
|
|
2214
2214
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { TransferQueryRq: params }, "TransferQueryRs", "TransferRet"),
|
|
2215
2215
|
};
|
|
@@ -2217,20 +2217,20 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
2217
2217
|
/**
|
|
2218
2218
|
* Adds a transfer inventory transaction.
|
|
2219
2219
|
*
|
|
2220
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TransferInventoryAdd
|
|
2220
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TransferInventoryAdd
|
|
2221
2221
|
*/
|
|
2222
2222
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { TransferInventoryAddRq: { TransferInventoryAdd: params } }, "TransferInventoryAddRs", "TransferInventoryRet"),
|
|
2223
2223
|
/**
|
|
2224
2224
|
* Modifies a transfer inventory transaction.
|
|
2225
2225
|
*
|
|
2226
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TransferInventoryMod
|
|
2226
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TransferInventoryMod
|
|
2227
2227
|
*/
|
|
2228
2228
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { TransferInventoryModRq: { TransferInventoryMod: params } }, "TransferInventoryModRs", "TransferInventoryRet"),
|
|
2229
2229
|
/**
|
|
2230
2230
|
* Queries for the specified transfer inventory transaction or set of
|
|
2231
2231
|
* transfer inventory transactions.
|
|
2232
2232
|
*
|
|
2233
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TransferInventoryQuery
|
|
2233
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TransferInventoryQuery
|
|
2234
2234
|
*/
|
|
2235
2235
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { TransferInventoryQueryRq: params }, "TransferInventoryQueryRs", "TransferInventoryRet"),
|
|
2236
2236
|
};
|
|
@@ -2238,7 +2238,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
2238
2238
|
/**
|
|
2239
2239
|
* Adds a vehicle to the vehicle list for use in `VehicleMileage` transactions. Each vehicle name must be unique.
|
|
2240
2240
|
*
|
|
2241
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VehicleAdd
|
|
2241
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VehicleAdd
|
|
2242
2242
|
*/
|
|
2243
2243
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { VehicleAddRq: { VehicleAdd: params } }, "VehicleAddRs", "VehicleRet"),
|
|
2244
2244
|
/**
|
|
@@ -2246,13 +2246,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
2246
2246
|
* including changing the name, will cause corresponding changes in existing
|
|
2247
2247
|
* `VehicleMileage` transactions and in reports.
|
|
2248
2248
|
*
|
|
2249
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VehicleMod
|
|
2249
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VehicleMod
|
|
2250
2250
|
*/
|
|
2251
2251
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { VehicleModRq: { VehicleMod: params } }, "VehicleModRs", "VehicleRet"),
|
|
2252
2252
|
/**
|
|
2253
2253
|
* Queries for the specified vehicle or set of vehicles.
|
|
2254
2254
|
*
|
|
2255
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VehicleQuery
|
|
2255
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VehicleQuery
|
|
2256
2256
|
*/
|
|
2257
2257
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { VehicleQueryRq: params }, "VehicleQueryRs", "VehicleRet"),
|
|
2258
2258
|
};
|
|
@@ -2262,14 +2262,14 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
2262
2262
|
* the specified total miles or optionally for the QuickBooks calculated
|
|
2263
2263
|
* total miles if you supply the odometer start and end.
|
|
2264
2264
|
*
|
|
2265
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VehicleMileageAdd
|
|
2265
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VehicleMileageAdd
|
|
2266
2266
|
*/
|
|
2267
2267
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { VehicleMileageAddRq: { VehicleMileageAdd: params } }, "VehicleMileageAddRs", "VehicleMileageRet"),
|
|
2268
2268
|
/**
|
|
2269
2269
|
* Queries for the specified vehicle mileage transaction or set of vehicle
|
|
2270
2270
|
* mileage transactions.
|
|
2271
2271
|
*
|
|
2272
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VehicleMileageQuery
|
|
2272
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VehicleMileageQuery
|
|
2273
2273
|
*/
|
|
2274
2274
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { VehicleMileageQueryRq: params }, "VehicleMileageQueryRs", "VehicleMileageRet"),
|
|
2275
2275
|
};
|
|
@@ -2285,19 +2285,19 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
2285
2285
|
* `VendorRef` aggregate includes both `FullName` and `ListID`, `FullName`
|
|
2286
2286
|
* will be ignored.
|
|
2287
2287
|
*
|
|
2288
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VendorAdd
|
|
2288
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VendorAdd
|
|
2289
2289
|
*/
|
|
2290
2290
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { VendorAddRq: { VendorAdd: params } }, "VendorAddRs", "VendorRet"),
|
|
2291
2291
|
/**
|
|
2292
2292
|
* Modifies a vendor.
|
|
2293
2293
|
*
|
|
2294
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VendorMod
|
|
2294
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VendorMod
|
|
2295
2295
|
*/
|
|
2296
2296
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { VendorModRq: { VendorMod: params } }, "VendorModRs", "VendorRet"),
|
|
2297
2297
|
/**
|
|
2298
2298
|
* Queries for the specified vendor or set of vendors.
|
|
2299
2299
|
*
|
|
2300
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VendorQuery
|
|
2300
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VendorQuery
|
|
2301
2301
|
*/
|
|
2302
2302
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { VendorQueryRq: params }, "VendorQueryRs", "VendorRet"),
|
|
2303
2303
|
};
|
|
@@ -2314,7 +2314,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
2314
2314
|
* something you owe your customer and which is referenced in a
|
|
2315
2315
|
* `ReceivePayment` request.
|
|
2316
2316
|
*
|
|
2317
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VendorCreditAdd
|
|
2317
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VendorCreditAdd
|
|
2318
2318
|
*/
|
|
2319
2319
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { VendorCreditAddRq: { VendorCreditAdd: params } }, "VendorCreditAddRs", "VendorCreditRet"),
|
|
2320
2320
|
/**
|
|
@@ -2333,13 +2333,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
2333
2333
|
* something you owe your customer and which is referenced in a
|
|
2334
2334
|
* `ReceivePayment` request.
|
|
2335
2335
|
*
|
|
2336
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VendorCreditMod
|
|
2336
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VendorCreditMod
|
|
2337
2337
|
*/
|
|
2338
2338
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { VendorCreditModRq: { VendorCreditMod: params } }, "VendorCreditModRs", "VendorCreditRet"),
|
|
2339
2339
|
/**
|
|
2340
2340
|
* Queries for the specified vendor credit or set of credits.
|
|
2341
2341
|
*
|
|
2342
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VendorCreditQuery
|
|
2342
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VendorCreditQuery
|
|
2343
2343
|
*/
|
|
2344
2344
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { VendorCreditQueryRq: params }, "VendorCreditQueryRs", "VendorCreditRet"),
|
|
2345
2345
|
};
|
|
@@ -2354,13 +2354,13 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
2354
2354
|
* `VendorType` list. In a request, if a `VendorTypeRef` aggregate includes
|
|
2355
2355
|
* both `FullName` and `ListID`, `FullName` will be ignored.
|
|
2356
2356
|
*
|
|
2357
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VendorTypeAdd
|
|
2357
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VendorTypeAdd
|
|
2358
2358
|
*/
|
|
2359
2359
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { VendorTypeAddRq: { VendorTypeAdd: params } }, "VendorTypeAddRs", "VendorTypeRet"),
|
|
2360
2360
|
/**
|
|
2361
2361
|
* Queries for the specified vendor type or set of types.
|
|
2362
2362
|
*
|
|
2363
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VendorTypeQuery
|
|
2363
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/VendorTypeQuery
|
|
2364
2364
|
*/
|
|
2365
2365
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { VendorTypeQueryRq: params }, "VendorTypeQueryRs", "VendorTypeRet"),
|
|
2366
2366
|
};
|
|
@@ -2377,7 +2377,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
2377
2377
|
* service. Also, you cannot currently assign codes to employees in the SDK;
|
|
2378
2378
|
* you have to use the UI to do that.
|
|
2379
2379
|
*
|
|
2380
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/WorkersCompCodeAdd
|
|
2380
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/WorkersCompCodeAdd
|
|
2381
2381
|
*/
|
|
2382
2382
|
add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { WorkersCompCodeAddRq: { WorkersCompCodeAdd: params } }, "WorkersCompCodeAddRs", "WorkersCompCodeRet"),
|
|
2383
2383
|
/**
|
|
@@ -2389,7 +2389,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
2389
2389
|
* service. Also, you cannot currently assign codes to employees in the SDK;
|
|
2390
2390
|
* you have to use the UI to do that.
|
|
2391
2391
|
*
|
|
2392
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/WorkersCompCodeMod
|
|
2392
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/WorkersCompCodeMod
|
|
2393
2393
|
*/
|
|
2394
2394
|
mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { WorkersCompCodeModRq: { WorkersCompCodeMod: params } }, "WorkersCompCodeModRs", "WorkersCompCodeRet"),
|
|
2395
2395
|
/**
|
|
@@ -2399,7 +2399,7 @@ class QbdIntegration extends BaseIntegration_1.default {
|
|
|
2399
2399
|
* This request requires the company to be subscribed to Intuit Payroll
|
|
2400
2400
|
* service.
|
|
2401
2401
|
*
|
|
2402
|
-
* https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/WorkersCompCodeQuery
|
|
2402
|
+
* See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/WorkersCompCodeQuery
|
|
2403
2403
|
*/
|
|
2404
2404
|
query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { WorkersCompCodeQueryRq: params }, "WorkersCompCodeQueryRs", "WorkersCompCodeRet"),
|
|
2405
2405
|
};
|