conductor-node 14.2.0 → 14.2.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/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # Changelog
2
2
 
3
+ ## 14.2.1 (2026-01-17)
4
+
5
+ Full Changelog: [v14.2.0...v14.2.1](https://github.com/conductor-is/quickbooks-desktop-node/compare/v14.2.0...v14.2.1)
6
+
7
+ ### Bug Fixes
8
+
9
+ * **mcp:** fix env parsing ([b4d52cb](https://github.com/conductor-is/quickbooks-desktop-node/commit/b4d52cb7519f80cbcb5931fe9a1e1812c0676102))
10
+ * **mcp:** fix options parsing ([c9d91c6](https://github.com/conductor-is/quickbooks-desktop-node/commit/c9d91c617c2249a48890e4ac20d59122bfda8251))
11
+ * **mcp:** update code tool prompt ([0d274ac](https://github.com/conductor-is/quickbooks-desktop-node/commit/0d274ac86a1e3c2652e4927eee908e09cffbd01c))
12
+
13
+
14
+ ### Chores
15
+
16
+ * break long lines in snippets into multiline ([4c41e15](https://github.com/conductor-is/quickbooks-desktop-node/commit/4c41e157bd478c3c5b9359d85f1f33ebed72675f))
17
+ * **internal:** codegen related update ([168c8da](https://github.com/conductor-is/quickbooks-desktop-node/commit/168c8dad7c3fa5eb71b35d335e389d421fc6971f))
18
+ * **internal:** codegen related update ([21a6421](https://github.com/conductor-is/quickbooks-desktop-node/commit/21a64217523899e14e696636c3a825d41cc8a084))
19
+ * **internal:** codegen related update ([641703e](https://github.com/conductor-is/quickbooks-desktop-node/commit/641703e19979fb22bc16bf01d76a0fe13cf0ce1c))
20
+ * **internal:** codegen related update ([66df36a](https://github.com/conductor-is/quickbooks-desktop-node/commit/66df36ad93e57c3c7a3d472faf074b354a9ba51e))
21
+ * **internal:** update `actions/checkout` version ([88a3222](https://github.com/conductor-is/quickbooks-desktop-node/commit/88a322229409deec4a6a172e83a3827bb460764d))
22
+ * **internal:** upgrade babel, qs, js-yaml ([a5ecfeb](https://github.com/conductor-is/quickbooks-desktop-node/commit/a5ecfebfcce858d6792385a99d51157e8d26fc22))
23
+ * **mcp:** add intent param to execute tool ([5e0d0a0](https://github.com/conductor-is/quickbooks-desktop-node/commit/5e0d0a0b61b025e60fda24796c5393ceb7f5ee29))
24
+ * **mcp:** pass intent param to execute handler ([c727325](https://github.com/conductor-is/quickbooks-desktop-node/commit/c727325da00e86422afc230cf77f965993acccc0))
25
+ * **mcp:** upgrade dependencies ([3b65553](https://github.com/conductor-is/quickbooks-desktop-node/commit/3b655534a0a965e21e6135f9f171df525ea4ec55))
26
+
3
27
  ## 14.2.0 (2026-01-07)
4
28
 
5
29
  Full Changelog: [v14.1.0...v14.2.0](https://github.com/conductor-is/quickbooks-desktop-node/compare/v14.1.0...v14.2.0)
package/README.md CHANGED
@@ -190,7 +190,9 @@ You can use the `for await … of` syntax to iterate through items across all pa
190
190
  async function fetchAllInvoices(params) {
191
191
  const allInvoices = [];
192
192
  // Automatically fetches more pages as needed.
193
- for await (const invoice of conductor.qbd.invoices.list({ conductorEndUserId: 'YOUR_END_USER_ID' })) {
193
+ for await (const invoice of conductor.qbd.invoices.list({
194
+ conductorEndUserId: 'YOUR_END_USER_ID',
195
+ })) {
194
196
  allInvoices.push(invoice);
195
197
  }
196
198
  return allInvoices;
@@ -226,7 +228,9 @@ Unlike `.asResponse()` this method consumes the body, returning once it is parse
226
228
  ```ts
227
229
  const conductor = new Conductor();
228
230
 
229
- const response = await conductor.qbd.invoices.list({ conductorEndUserId: 'YOUR_END_USER_ID' }).asResponse();
231
+ const response = await conductor.qbd.invoices
232
+ .list({ conductorEndUserId: 'YOUR_END_USER_ID' })
233
+ .asResponse();
230
234
  console.log(response.headers.get('X-My-Header'));
231
235
  console.log(response.statusText); // access the underlying Response object
232
236
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "14.2.0",
3
+ "version": "14.2.1",
4
4
  "description": "The official TypeScript library for the Conductor API",
5
5
  "author": "Conductor <support@conductor.is>",
6
6
  "types": "./index.d.ts",
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '14.2.0'; // x-release-please-version
1
+ export const VERSION = '14.2.1'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "14.2.0";
1
+ export declare const VERSION = "14.2.1";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "14.2.0";
1
+ export declare const VERSION = "14.2.1";
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 = '14.2.0'; // x-release-please-version
4
+ exports.VERSION = '14.2.1'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '14.2.0'; // x-release-please-version
1
+ export const VERSION = '14.2.1'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map