conductor-node 11.4.0 → 11.4.1

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 CHANGED
@@ -41,7 +41,7 @@ Conductor, the company, is building a data integration platform for vertical Saa
41
41
 
42
42
  ## Requirements
43
43
 
44
- 1. A Conductor API key pair: one secret key, one publishable key. Please [complete this form](https://73a5v9t55ed.typeform.com/to/VRX7rfrN) to join the beta.
44
+ 1. A Conductor API key pair: one secret key, one publishable key. Please [complete this form](https://forms.gle/1LTGXy2Hcyzw6qWa6) to join the beta.
45
45
  2. Node.js v16 or later.
46
46
 
47
47
  ## Installation
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "11.4.0",
3
+ "version": "11.4.1",
4
4
  "description": "QuickBooks Desktop API for Node.js and TypeScript",
5
5
  "keywords": [
6
6
  "QuickBooks",
@@ -993,7 +993,7 @@ export default class QbdIntegration extends BaseIntegration {
993
993
  * If you Add an invoice that has an inventory item on it, QB will
994
994
  * automatically calculate COGS and post it to the COGS account. (The
995
995
  * inventory item will need to be setup to post to the COGS account and must
996
- * have a unit cost in it.) However, notice that such an InvoiceAdd has
996
+ * have a unit cost in it.) However, notice that such an `InvoiceAdd` has
997
997
  * sales prices, not cost, so the Add is not impacting the cost of the item.
998
998
  * The cost of the item is only affected by purchases (bills and item
999
999
  * receipts) sales and inventory adjustments.
@@ -2456,14 +2456,23 @@ export default class QbdIntegration extends BaseIntegration {
2456
2456
  */
2457
2457
  timeTracking: {
2458
2458
  /**
2459
- * The time-tracking transactions that are returned in this query include
2460
- * time tracking information that was entered into QuickBooks manually or
2461
- * gathered using the QuickBooks “Timer” or “Stopwatch.” Note that the
2462
- * QuickBooks Timer application can run on its own without QuickBooks, but
2463
- * the QuickBooks SDK cannot access the Timer data directly. The Timer data
2464
- * must be imported into QuickBooks before it is accessible via the SDK.)
2465
- *
2466
- * See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TimeTrackingQuery
2459
+ * This request adds a time tracking transaction to QuickBooks, mirroring
2460
+ * the time-tracking feature available in the QuickBooks UI. The time
2461
+ * tracking feature allows a QuickBooks user to base payroll or invoices on
2462
+ * time worked. You can add time-tracking information to any vendor,
2463
+ * employee, or person on the Other Names list in QuickBooks.
2464
+ *
2465
+ * If `IsBillable` is set to true, both `CustomerRef` and `ItemServiceRef`
2466
+ * are required. There is no link between an invoice and the time entries.
2467
+ * However, when you do the invoicing from QuickBooks, QuickBooks does mark
2468
+ * the time entries as “billed.” If you don’t record the time entries as
2469
+ * billed properly, then you get into a user workflow issue where every time
2470
+ * the user creates an invoice for a customer, QB pops up a dialog asking if
2471
+ * they want to bill the un-billed time (which you already billed from your
2472
+ * app).
2473
+ *
2474
+ * See more:
2475
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TimeTrackingAdd
2467
2476
  */
2468
2477
  add: (endUserId: string, params: QbdTypes.TimeTrackingAddRq["TimeTrackingAdd"]) => Promise<NonNullable<QbdTypes.TimeTrackingAddRs["TimeTrackingRet"]>>;
2469
2478
  /**
@@ -998,7 +998,7 @@ class QbdIntegration extends BaseIntegration_1.default {
998
998
  * If you Add an invoice that has an inventory item on it, QB will
999
999
  * automatically calculate COGS and post it to the COGS account. (The
1000
1000
  * inventory item will need to be setup to post to the COGS account and must
1001
- * have a unit cost in it.) However, notice that such an InvoiceAdd has
1001
+ * have a unit cost in it.) However, notice that such an `InvoiceAdd` has
1002
1002
  * sales prices, not cost, so the Add is not impacting the cost of the item.
1003
1003
  * The cost of the item is only affected by purchases (bills and item
1004
1004
  * receipts) sales and inventory adjustments.
@@ -2461,14 +2461,23 @@ class QbdIntegration extends BaseIntegration_1.default {
2461
2461
  */
2462
2462
  timeTracking = {
2463
2463
  /**
2464
- * The time-tracking transactions that are returned in this query include
2465
- * time tracking information that was entered into QuickBooks manually or
2466
- * gathered using the QuickBooks “Timer” or “Stopwatch.” Note that the
2467
- * QuickBooks Timer application can run on its own without QuickBooks, but
2468
- * the QuickBooks SDK cannot access the Timer data directly. The Timer data
2469
- * must be imported into QuickBooks before it is accessible via the SDK.)
2470
- *
2471
- * See more: https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TimeTrackingQuery
2464
+ * This request adds a time tracking transaction to QuickBooks, mirroring
2465
+ * the time-tracking feature available in the QuickBooks UI. The time
2466
+ * tracking feature allows a QuickBooks user to base payroll or invoices on
2467
+ * time worked. You can add time-tracking information to any vendor,
2468
+ * employee, or person on the Other Names list in QuickBooks.
2469
+ *
2470
+ * If `IsBillable` is set to true, both `CustomerRef` and `ItemServiceRef`
2471
+ * are required. There is no link between an invoice and the time entries.
2472
+ * However, when you do the invoicing from QuickBooks, QuickBooks does mark
2473
+ * the time entries as “billed.” If you don’t record the time entries as
2474
+ * billed properly, then you get into a user workflow issue where every time
2475
+ * the user creates an invoice for a customer, QB pops up a dialog asking if
2476
+ * they want to bill the un-billed time (which you already billed from your
2477
+ * app).
2478
+ *
2479
+ * See more:
2480
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/TimeTrackingAdd
2472
2481
  */
2473
2482
  add: async (endUserId, params) => this.sendRequestWrapper(endUserId, { TimeTrackingAddRq: { TimeTrackingAdd: params } }, "TimeTrackingAddRs", "TimeTrackingRet"),
2474
2483
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "11.4.0",
3
+ "version": "11.4.1",
4
4
  "description": "QuickBooks Desktop API for Node.js and TypeScript",
5
5
  "keywords": [
6
6
  "QuickBooks",