conductor-node 9.5.0 → 9.6.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.
@@ -348,6 +348,36 @@ class QbdIntegration extends BaseIntegration_1.default {
348
348
  */
349
349
  query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ChargeQueryRq: params }, "ChargeQueryRs", "ChargeRet"),
350
350
  };
351
+ buildAssembly = {
352
+ /**
353
+ * Adds a build assembly transaction to QuickBooks, where the specified
354
+ * quantity of the specified inventory assembly item is built. If there are
355
+ * insufficient quantities of items required for the build, you can have the
356
+ * build marked as a pending build by using setting `MarkPendingIfRequired`
357
+ * to `True`. (If you don’t and there aren’t enough quantities on hand for
358
+ * the build, this request will fail.) If successful, this request results
359
+ * in the decrementing of the quantities on hand amounts of each item used
360
+ * in the build, and the incrementing of the on hand quantities of the built
361
+ * assembly item.
362
+ *
363
+ * This request is supported only in Premier and Enterprise.
364
+ *
365
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BuildAssemblyAdd
366
+ */
367
+ add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { BuildAssemblyAddRq: { BuildAssemblyAdd: params } }, "BuildAssemblyAddRs", "BuildAssemblyRet"),
368
+ /**
369
+ * Modifies an existing build assembly transaction in the QuickBooks company.
370
+ *
371
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BuildAssemblyMod
372
+ */
373
+ mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { BuildAssemblyModRq: { BuildAssemblyMod: params } }, "BuildAssemblyModRs", "BuildAssemblyRet"),
374
+ /**
375
+ * Filters build assembly transactions by the specified filter criteria.
376
+ *
377
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BuildAssemblyQuery
378
+ */
379
+ query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { BuildAssemblyQueryRq: params }, "BuildAssemblyQueryRs", "BuildAssemblyRet"),
380
+ };
351
381
  check = {
352
382
  /**
353
383
  * The amount of a check is the total of the amounts assigned to expense
@@ -1216,6 +1246,8 @@ class QbdIntegration extends BaseIntegration_1.default {
1216
1246
  mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemSalesTaxModRq: { ItemSalesTaxMod: params } }, "ItemSalesTaxModRs", "ItemSalesTaxRet"),
1217
1247
  /**
1218
1248
  * Queries for the specified sales-tax item or set of items.
1249
+ *
1250
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ItemSalesTaxQuery
1219
1251
  */
1220
1252
  query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemSalesTaxQueryRq: params }, "ItemSalesTaxQueryRs", "ItemSalesTaxRet"),
1221
1253
  };
@@ -1349,17 +1381,6 @@ class QbdIntegration extends BaseIntegration_1.default {
1349
1381
  */
1350
1382
  query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ItemSubtotalQueryRq: params }, "ItemSubtotalQueryRs", "ItemSubtotalRet"),
1351
1383
  };
1352
- jobReport = {
1353
- /**
1354
- * Queries for a job report, which includes both summary and transaction
1355
- * detail reports. The reports can be customized only by date range, by
1356
- * column summarization, and by common filters. Some job reports require a
1357
- * `customer:job` reference in order to work.
1358
- *
1359
- * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/JobReportQuery
1360
- */
1361
- query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { JobReportQueryRq: params }, "JobReportQueryRs", "ReportRet"),
1362
- };
1363
1384
  jobType = {
1364
1385
  /**
1365
1386
  * Adds a job type. A job type can be used to separate jobs into any
@@ -1523,6 +1544,299 @@ class QbdIntegration extends BaseIntegration_1.default {
1523
1544
  */
1524
1545
  query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { PurchaseOrderQueryRq: params }, "PurchaseOrderQueryRs", "PurchaseOrderRet"),
1525
1546
  };
1547
+ receivePayment = {
1548
+ /**
1549
+ * Receives a customer payment into QuickBooks. A receive payment
1550
+ * transaction is used for one or more of these purposes:
1551
+ * 1. To record a customer’s payment against an invoice for one or more
1552
+ * jobs,
1553
+ * 2. To set a discount (for early payment, for example),
1554
+ * 3. To set a credit (from previously returned merchandise, for example).
1555
+ *
1556
+ * If full payment is received at the time of sale, it is recorded using a
1557
+ * sales receipt transaction, not a receive payments transaction.
1558
+ *
1559
+ * Notice that access to sensitive data permissions are not required to use
1560
+ * this request. However, if the application does not have access to
1561
+ * sensitive data permission, then the response returned will not contain
1562
+ * certain sensitive data. For example, even if credit card data is supplied
1563
+ * in the `ReceivePaymentAdd` request via the `CreditCardTxnInfo` aggregate,
1564
+ * the response will not contain the corresponding aggregate.
1565
+ *
1566
+ * This request can be used to record QBMS credit card transaction data, via
1567
+ * the `CreditCardTxnInfo` aggregate. You can record charges and also
1568
+ * authorizations. (You can later respond to a QBMS capture of authorized
1569
+ * charges by doing a `ReceivePaymentMod` and changing the
1570
+ * `CreditCardTxnType` to “Charge”.) Notice that the reconciliation data
1571
+ * fields (`ReconBatchID`, `PaymentGroupingCode`, `PaymentStatus`,
1572
+ * `TxnAuthorizationTime`, `TxnAuthorizationStamp`, `ClientTransID`) are
1573
+ * optional ONLY if the `CreditCardTxnType` is “Authorization”. If the type
1574
+ * is “Charge”, then those reconciliation fields must be supplied or you
1575
+ * will get a runtime error.
1576
+ *
1577
+ * IMPORTANT: In a `SalesReceiptAdd` or `ReceivePaymentAdd` request that
1578
+ * contains credit card transaction data supplied from QBMS transaction
1579
+ * responses, you must specify the payment method (using the
1580
+ * `PaymentMethodRef` aggregate).
1581
+ *
1582
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ReceivePaymentAdd
1583
+ */
1584
+ add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ReceivePaymentAddRq: { ReceivePaymentAdd: params } }, "ReceivePaymentAddRs", "ReceivePaymentRet"),
1585
+ /**
1586
+ * Modifies a receive payment transaction.
1587
+ *
1588
+ * If you save QBMS credit card data in your `ReceivePayments`, this Mod
1589
+ * request allows you to capture a previously authorized credit card charge.
1590
+ * The way this works is that the ReceivePaymentAdd would contain the QBMS
1591
+ * `CreditCardTxnInfo` aggregate with the `CreditCardTxnType` set to
1592
+ * “Authorization,” which causes QB to internally mark the transaction as
1593
+ * pending. When the capture transaction is performed later, in QBMS, that
1594
+ * capture transaction can be saved into QuickBooks via this Mod request, as
1595
+ * you are modifying the original `ReceivePayment` but changing its
1596
+ * `CreditCardTxnType` from ”Authorization” to “Capture.” This mod operation
1597
+ * results in the removal of the pending status and the posting of this
1598
+ * receive payment.
1599
+ *
1600
+ * Notice that the reconciliation data fields (`ReconBatchID`,
1601
+ * `PaymentGroupingCode`, `PaymentStatus`, `TxnAuthorizationTime`,
1602
+ * `TxnAuthorizationStamp`, `ClientTransID`) are optional ONLY if the
1603
+ * `CreditCardTxnType` is “Authorization” because authorizations don’t have
1604
+ * such data. If the type is “Charge”, then those reconciliation fields must
1605
+ * be supplied or you will get a runtime error.
1606
+ *
1607
+ * The following list describes what you can and can’t do with this request.
1608
+ * - Modify `RefNumber` or `Memo`.
1609
+ * - Modify (not clear) the `CustomerRef` field for a payment that was not
1610
+ * electronically processed.
1611
+ * - Modify (not clear) the `ARAccountRef`.
1612
+ * - Modify (not clear) the `TxnDate`.
1613
+ * - Modify or clear the `TotalAmount`.
1614
+ * - Modify or clear the `PaymentMethodRef`.
1615
+ * - Modify, (not clear) the `DepositToAccountRef`
1616
+ * - Change the payment amount applied to an invoice. For a receive payment
1617
+ * transaction that has been applied to several existing invoices,
1618
+ * redistribute the payment amounts applied to the invoices.
1619
+ * - Change the discount amount applied to particular invoice.
1620
+ * - You cannot change the credit amount applied to an invoice.
1621
+ * - Apply the payment to a different invoice, including a discount and a
1622
+ * credit. Apply the payment amount to a different invoice. Apply a
1623
+ * discount, and a credit. The existing distribution is cleared, except
1624
+ * for any credit that may have been applied.
1625
+ * - Modify QBMS credit card information.
1626
+ * - You cannot auto apply payment.
1627
+ * - Apply an additional credit to an invoice.
1628
+ *
1629
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ReceivePaymentMod
1630
+ */
1631
+ mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ReceivePaymentModRq: { ReceivePaymentMod: params } }, "ReceivePaymentModRs", "ReceivePaymentRet"),
1632
+ /**
1633
+ * Queries for the specified receive payment or set of payments.
1634
+ *
1635
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/ReceivePaymentQuery
1636
+ */
1637
+ query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { ReceivePaymentQueryRq: params }, "ReceivePaymentQueryRs", "ReceivePaymentRet"),
1638
+ };
1639
+ report = {
1640
+ /**
1641
+ * Generates budget reports similar to the budget report functionality that
1642
+ * is available within the QuickBooks UI. (From the main QB menubar select
1643
+ * Reports->Budgets & Forecasts.)
1644
+ *
1645
+ * Note: the graphing functionality, forecasts, and memorized reports that
1646
+ * are available through the UI are not supported by the SDK.
1647
+ *
1648
+ * Notice that if you simply use the default instead of specifying the
1649
+ * Fiscal Year, the `ReportPeriod` defaults to “year to date.” You cannot
1650
+ * change the default to “This Fiscal Year.”
1651
+ *
1652
+ * There can only be one balance sheet budget for each fiscal year, one
1653
+ * profit and loss (P&L) by account budget per fiscal year, and one profit
1654
+ * and loss (P&L) by account and customer budget per fiscal year. Hence the
1655
+ * `FiscalYear` element is key in specifying which budget you want. Notice
1656
+ * that there are two “views” into each of the two budget categories: the
1657
+ * Overview, which shows the budget itself, and the Actual, which shows how
1658
+ * expenditures are currently running against the budget.
1659
+ *
1660
+ * All of the budget reports supported in the UI are supported in the SDK,
1661
+ * although the UI and SDK nomenclature differs slightly. The UI shows
1662
+ * Budget Overview and Budget Vs Actual as choices in the selection list,
1663
+ * with Balance Sheet and P&L as subchoices in a subsequent selection list,
1664
+ * already filtered by Accounts, or Accounts and Classes, or Accounts and
1665
+ * Customers, if these are available.
1666
+ *
1667
+ * In comparison, you choose the budget view you want via the SDK
1668
+ * `BudgetSummaryType` element, which has these possible values:
1669
+ * - `BalanceSheetBudgetOverview`
1670
+ * - `BalanceSheetBudgetVsActual`
1671
+ * - `ProfitAndLossBudgetOverview`
1672
+ * - `ProfitAndLossBudgetVsActual`
1673
+ *
1674
+ * Then you specify any additional filtering by the Budget Criterion value
1675
+ * you specify (`Accounts`, `AccountsAndCustomers`, or
1676
+ * `AccountsAndClasses`). Notice that before you can obtain a Budget report,
1677
+ * the “target” budget must be defined in QuickBooks, via the UI, because
1678
+ * you cannot create a budget via the SDK.
1679
+ *
1680
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/BudgetSummaryReportQuery
1681
+ */
1682
+ budgetSummary: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { BudgetSummaryReportQueryRq: params }, "BudgetSummaryReportQueryRs", "ReportRet"),
1683
+ /**
1684
+ * A Custom Transaction Detail report gives you complete control over the
1685
+ * content of the report. It does not have any default values and consists
1686
+ * entirely of customized data. You must specify all the include columns for
1687
+ * the transactions you want returned in the report.
1688
+ *
1689
+ * If you want complete control over the report content, you will be
1690
+ * interested in both the custom summary report and the custom transaction
1691
+ * detail report. Custom reports do not make any assumptions about the data
1692
+ * you are interested in–they require you to specify exactly what data you
1693
+ * want included in the report. Your application has to select the row and
1694
+ * column axes, and it controls the output using common customization
1695
+ * parameters for dates and filters. For the custom transaction detail
1696
+ * report, you must specify all the include columns for the transactions you
1697
+ * want returned in the report. For these reports, you are also required to
1698
+ * specify a date element a `DateMacro` or a custom date range).
1699
+ *
1700
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CustomDetailReportQuery
1701
+ */
1702
+ customDetail: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CustomDetailReportQueryRq: params }, "CustomDetailReportQueryRs", "ReportRet"),
1703
+ /**
1704
+ * A custom summary report gives you complete control over the content of
1705
+ * the report. It does not have any default values and consists entirely of
1706
+ * customized data.
1707
+ *
1708
+ * If you want complete control over the report content, you will be
1709
+ * interested in both the custom summary report and the custom transaction
1710
+ * detail report. Custom reports do not make any assumptions about the data
1711
+ * you are interested in–they require you to specify exactly what data you
1712
+ * want included in the report. Your application has to select the row and
1713
+ * column axes, and it controls the output using common customization
1714
+ * parameters for dates and filters. For the custom transaction detail
1715
+ * report, you must specify all the include columns for the transactions you
1716
+ * want returned in the report. For these reports, you are also required to
1717
+ * specify a date element a ``DateMacro`` or a custom date range).
1718
+ *
1719
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/CustomSummaryReportQuery
1720
+ */
1721
+ customSummary: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { CustomSummaryReportQueryRq: params }, "CustomSummaryReportQueryRs", "ReportRet"),
1722
+ /**
1723
+ * You use this report query to get any of the supported QuickBooks detail
1724
+ * reports, which you specify in the `GeneralDetailReportType`. You can
1725
+ * optionally display the report within QB by setting `DisplayReport` to
1726
+ * True.
1727
+ *
1728
+ * You can also use this detail report to get information not obtainable
1729
+ * from various SDK queries. For example, suppose you wanted the cleared
1730
+ * status from a `BillPaymentCheck`; the `BillPaymentCheckQuery` wouldn’t
1731
+ * have this info, but you could use this general detail report and specify
1732
+ * the column `ClearedStatus` to find that information.
1733
+ *
1734
+ * Also, if you wanted to query the accounts receivable directly, you could
1735
+ * do a General Detail Report Query with the report type set to Open
1736
+ * Invoices.
1737
+ *
1738
+ * You could also use this report if you needed to run a report on all
1739
+ * invoice changes made in a specific day, and only include changes to
1740
+ * invoices from a given past month, if the audit trail is on in QuickBooks.
1741
+ * You would use a `GeneralDetailReport` query with the report type set to
1742
+ * `AuditTrail`.
1743
+ *
1744
+ * Notice that if a line is paid, `PaidStatus == “X”`. If a line is not
1745
+ * paid, no entry for `PaidStatus` is returned.
1746
+ *
1747
+ * However, in the same report run within the QB GUI, the following behavior
1748
+ * is observed: This differs from the UI, where if the line is paid, an
1749
+ * entry of “Paid” is displayed and if the line is not paid, an entry of
1750
+ * “Unpaid” is displayed.
1751
+ *
1752
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/GeneralDetailReportQuery
1753
+ */
1754
+ generalDetail: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { GeneralDetailReportQueryRq: params }, "GeneralDetailReportQueryRs", "ReportRet"),
1755
+ /**
1756
+ * The General Summary Reports category is the largest category for summary
1757
+ * reports. In addition to common customizations, the reports within this
1758
+ * category can be customized by the number of columns that are returned and
1759
+ * by period comparisons for the data in the report.
1760
+ *
1761
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/GeneralSummaryReportQuery
1762
+ */
1763
+ generalSummary: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { GeneralSummaryReportQueryRq: params }, "GeneralSummaryReportQueryRs", "ReportRet"),
1764
+ /**
1765
+ * Queries for a job report, which includes both summary and transaction
1766
+ * detail reports. The reports can be customized only by date range, by
1767
+ * column summarization, and by common filters. Some job reports require a
1768
+ * `customer:job` reference in order to work.
1769
+ *
1770
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/JobReportQuery
1771
+ */
1772
+ job: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { JobReportQueryRq: params }, "JobReportQueryRs", "ReportRet"),
1773
+ /**
1774
+ * This report returns information from any of three QuickBooks payroll
1775
+ * reports:
1776
+ * - Payroll summary report This report shows the total wages, taxes
1777
+ * withheld, deductions from net pay, additions to net pay, and
1778
+ * employer-paid taxes and contributions for each employee on the payroll.
1779
+ * - Employee earnings summary report This report shows information similar
1780
+ * to the payroll summary report, but in a different layout. The report
1781
+ * has a row for each employee and a column for each payroll item.
1782
+ * - Payroll liability balances report This report lists the payroll
1783
+ * liabilities the QuickBooks company owes to various agencies, such as
1784
+ * the federal government, your state government, insurance plan
1785
+ * administrators, labor unions, etc. The report covers unpaid liabilities
1786
+ * incurred during the period of time shown in the From and To fields. If
1787
+ * the company paid a liability incurred within the date range of the
1788
+ * report, the report omits that liability, even if the payment occurred
1789
+ * after the ending date of the report.
1790
+ *
1791
+ * Payroll Summary Reports can be generated if your application is accessing
1792
+ * a company file that is currently signed up for a subscription to a
1793
+ * payroll service. (If your application is not signed up, it will receive
1794
+ * an error when it attempts to generate a report in this category.)
1795
+ *
1796
+ * The restrictions noted above about payroll reports requiring the use of
1797
+ * the Intuit Payroll service do not apply to the QuickBooks sample
1798
+ * companies. You can still test out these reports on the sample companies
1799
+ * without subscribing to the payroll service. For all other companies,
1800
+ * however, the company must be subscribed.
1801
+ *
1802
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/PayrollSummaryReportQuery
1803
+ */
1804
+ payrollSummary: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { PayrollSummaryReportQueryRq: params }, "PayrollSummaryReportQueryRs", "ReportRet"),
1805
+ /**
1806
+ * Returns information from any of five QuickBooks payroll reports:
1807
+ * - Employee state taxes detail report
1808
+ * - Payroll item detail report (lists the payroll transactions on which
1809
+ * each payroll item appears)
1810
+ * - Payroll detail review report (provides detailed information about how
1811
+ * QuickBooks calculates tax amounts on employee paychecks and in
1812
+ * year-to-date transactions)
1813
+ * - Payroll transaction detail report (shows the line-item detail that
1814
+ * appears on each payroll transaction)
1815
+ * - Payroll transactions by payee report (lists payroll transactions,
1816
+ * grouping them by payee)
1817
+ *
1818
+ * Payroll Summary Reports can be generated if your application is accessing
1819
+ * a company file that is currently signed up for a subscription to a
1820
+ * payroll service. (If your application is not signed up, it will receive
1821
+ * an error when it attempts to generate a report in this category.)
1822
+ *
1823
+ * The restrictions noted above about payroll reports requiring the use of
1824
+ * the Intuit Payroll service do not apply to the QuickBooks sample
1825
+ * companies. You can still test out these reports on the sample companies
1826
+ * without subscribing to the payroll service. For all other companies,
1827
+ * however, the company must be subscribed.
1828
+ *
1829
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/PayrollDetailReportQuery
1830
+ */
1831
+ payrollDetail: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { PayrollDetailReportQueryRq: params }, "PayrollDetailReportQueryRs", "ReportRet"),
1832
+ /**
1833
+ * The Time Reports category includes summary and detail reports related by
1834
+ * time. Summarized columns can be customized in these reports.
1835
+ *
1836
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TimeReportQuery
1837
+ */
1838
+ time: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { TimeReportQueryRq: params }, "TimeReportQueryRs", "ReportRet"),
1839
+ };
1526
1840
  salesReceipt = {
1527
1841
  /**
1528
1842
  * Adds a sales receipt to QuickBooks.
@@ -1644,6 +1958,47 @@ class QbdIntegration extends BaseIntegration_1.default {
1644
1958
  */
1645
1959
  query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { TimeTrackingQueryRq: params }, "TimeTrackingQueryRs", "TimeTrackingRet"),
1646
1960
  };
1961
+ transfer = {
1962
+ /**
1963
+ * Adds a transfer transaction.
1964
+ *
1965
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TransferAdd
1966
+ */
1967
+ add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { TransferAddRq: { TransferAdd: params } }, "TransferAddRs", "TransferRet"),
1968
+ /**
1969
+ * Modifies a transfer transaction.
1970
+ *
1971
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TransferMod
1972
+ */
1973
+ mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { TransferModRq: { TransferMod: params } }, "TransferModRs", "TransferRet"),
1974
+ /**
1975
+ * Queries for the specified transfer or set of transfers.
1976
+ *
1977
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TransferQuery
1978
+ */
1979
+ query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { TransferQueryRq: params }, "TransferQueryRs", "TransferRet"),
1980
+ };
1981
+ transferInventory = {
1982
+ /**
1983
+ * Adds a transfer inventory transaction.
1984
+ *
1985
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TransferInventoryAdd
1986
+ */
1987
+ add: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { TransferInventoryAddRq: { TransferInventoryAdd: params } }, "TransferInventoryAddRs", "TransferInventoryRet"),
1988
+ /**
1989
+ * Modifies a transfer inventory transaction.
1990
+ *
1991
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TransferInventoryMod
1992
+ */
1993
+ mod: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { TransferInventoryModRq: { TransferInventoryMod: params } }, "TransferInventoryModRs", "TransferInventoryRet"),
1994
+ /**
1995
+ * Queries for the specified transfer inventory transaction or set of
1996
+ * transfer inventory transactions.
1997
+ *
1998
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TransferInventoryQuery
1999
+ */
2000
+ query: async (integrationConnectionId, params) => this.sendRequestWrapper(integrationConnectionId, { TransferInventoryQueryRq: params }, "TransferInventoryQueryRs", "TransferInventoryRet"),
2001
+ };
1647
2002
  vendor = {
1648
2003
  /**
1649
2004
  * Adds a vendor.