conductor-node 12.0.0-beta.5 → 12.0.0-beta.6

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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 12.0.0-beta.6 (2025-02-23)
4
+
5
+ Full Changelog: [v12.0.0-beta.5...v12.0.0-beta.6](https://github.com/conductor-is/quickbooks-desktop-node/compare/v12.0.0-beta.5...v12.0.0-beta.6)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([#46](https://github.com/conductor-is/quickbooks-desktop-node/issues/46)) ([e135bb5](https://github.com/conductor-is/quickbooks-desktop-node/commit/e135bb5465037e64f2f86229d6db7393c923a72b))
10
+
3
11
  ## 12.0.0-beta.5 (2025-02-23)
4
12
 
5
13
  Full Changelog: [v12.0.0-beta.4...v12.0.0-beta.5](https://github.com/conductor-is/quickbooks-desktop-node/compare/v12.0.0-beta.4...v12.0.0-beta.5)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "12.0.0-beta.5",
3
+ "version": "12.0.0-beta.6",
4
4
  "description": "The official TypeScript library for the Conductor API",
5
5
  "author": "Conductor <support@conductor.is>",
6
6
  "types": "./index.d.ts",
@@ -69,7 +69,7 @@ export interface TimeTrackingActivity {
69
69
  * not display seconds.
70
70
  *
71
71
  * **IMPORTANT**: This field is required for updating time tracking activities,
72
- * even if the field is not being updated, because of a bug in QuickBooks itself.
72
+ * even if the field is not being modified, because of a bug in QuickBooks itself.
73
73
  */
74
74
  duration: string;
75
75
  /**
@@ -264,7 +264,7 @@ export interface TimeTrackingActivityCreateParams {
264
264
  * not display seconds.
265
265
  *
266
266
  * **IMPORTANT**: This field is required for updating time tracking activities,
267
- * even if the field is not being updated, because of a bug in QuickBooks itself.
267
+ * even if the field is not being modified, because of a bug in QuickBooks itself.
268
268
  */
269
269
  duration: string;
270
270
  /**
@@ -353,7 +353,7 @@ export interface TimeTrackingActivityUpdateParams {
353
353
  * not display seconds.
354
354
  *
355
355
  * **IMPORTANT**: This field is required for updating time tracking activities,
356
- * even if the field is not being updated, because of a bug in QuickBooks itself.
356
+ * even if the field is not being modified, because of a bug in QuickBooks itself.
357
357
  */
358
358
  duration: string;
359
359
  /**
@@ -363,7 +363,7 @@ export interface TimeTrackingActivityUpdateParams {
363
363
  * with this time tracking activity.
364
364
  *
365
365
  * **IMPORTANT**: This field is required for updating time tracking activities,
366
- * even if the field is not being updated, because of a bug in QuickBooks itself.
366
+ * even if the field is not being modified, because of a bug in QuickBooks itself.
367
367
  */
368
368
  entityId: string;
369
369
  /**
@@ -133,7 +133,7 @@ export interface TimeTrackingActivity {
133
133
  * not display seconds.
134
134
  *
135
135
  * **IMPORTANT**: This field is required for updating time tracking activities,
136
- * even if the field is not being updated, because of a bug in QuickBooks itself.
136
+ * even if the field is not being modified, because of a bug in QuickBooks itself.
137
137
  */
138
138
  duration: string;
139
139
 
@@ -353,7 +353,7 @@ export interface TimeTrackingActivityCreateParams {
353
353
  * not display seconds.
354
354
  *
355
355
  * **IMPORTANT**: This field is required for updating time tracking activities,
356
- * even if the field is not being updated, because of a bug in QuickBooks itself.
356
+ * even if the field is not being modified, because of a bug in QuickBooks itself.
357
357
  */
358
358
  duration: string;
359
359
 
@@ -454,7 +454,7 @@ export interface TimeTrackingActivityUpdateParams {
454
454
  * not display seconds.
455
455
  *
456
456
  * **IMPORTANT**: This field is required for updating time tracking activities,
457
- * even if the field is not being updated, because of a bug in QuickBooks itself.
457
+ * even if the field is not being modified, because of a bug in QuickBooks itself.
458
458
  */
459
459
  duration: string;
460
460
 
@@ -465,7 +465,7 @@ export interface TimeTrackingActivityUpdateParams {
465
465
  * with this time tracking activity.
466
466
  *
467
467
  * **IMPORTANT**: This field is required for updating time tracking activities,
468
- * even if the field is not being updated, because of a bug in QuickBooks itself.
468
+ * even if the field is not being modified, because of a bug in QuickBooks itself.
469
469
  */
470
470
  entityId: string;
471
471
 
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '12.0.0-beta.5'; // x-release-please-version
1
+ export const VERSION = '12.0.0-beta.6'; // x-release-please-version
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "12.0.0-beta.5";
1
+ export declare const VERSION = "12.0.0-beta.6";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '12.0.0-beta.5'; // x-release-please-version
4
+ exports.VERSION = '12.0.0-beta.6'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '12.0.0-beta.5'; // x-release-please-version
1
+ export const VERSION = '12.0.0-beta.6'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map