conductor-node 12.10.0 → 12.11.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/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # Changelog
2
2
 
3
+ ## 12.11.0 (2025-06-14)
4
+
5
+ Full Changelog: [v12.10.0...v12.11.0](https://github.com/conductor-is/quickbooks-desktop-node/compare/v12.10.0...v12.11.0)
6
+
7
+ ### Features
8
+
9
+ * **mcp:** set X-Stainless-MCP header ([3030dbb](https://github.com/conductor-is/quickbooks-desktop-node/commit/3030dbbe329445f6341b8893e3407d97e80dda94))
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * publish script — handle NPM errors correctly ([5b293a3](https://github.com/conductor-is/quickbooks-desktop-node/commit/5b293a31fbcd50d8022d1bffc549d8690096f571))
15
+
16
+
17
+ ### Chores
18
+
19
+ * **internal:** make base APIResource abstract ([88bf90e](https://github.com/conductor-is/quickbooks-desktop-node/commit/88bf90e8f2612438059236b2ff18ec2ec93aa328))
20
+ * **mcp:** provides high-level initMcpServer function and exports known clients ([23068ef](https://github.com/conductor-is/quickbooks-desktop-node/commit/23068ef9c6fb86cd9ad82991b11505d09dd47f19))
21
+
3
22
  ## 12.10.0 (2025-06-10)
4
23
 
5
24
  Full Changelog: [v12.9.0...v12.10.0](https://github.com/conductor-is/quickbooks-desktop-node/compare/v12.9.0...v12.10.0)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "12.10.0",
3
+ "version": "12.11.0",
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/resource.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import type { Conductor } from "./index.js";
2
- export declare class APIResource {
2
+ export declare abstract class APIResource {
3
3
  protected _client: Conductor;
4
4
  constructor(client: Conductor);
5
5
  }
package/resource.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"resource.d.ts","sourceRoot":"","sources":["src/resource.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAEzC,qBAAa,WAAW;IACtB,SAAS,CAAC,OAAO,EAAE,SAAS,CAAC;gBAEjB,MAAM,EAAE,SAAS;CAG9B"}
1
+ {"version":3,"file":"resource.d.ts","sourceRoot":"","sources":["src/resource.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAEzC,8BAAsB,WAAW;IAC/B,SAAS,CAAC,OAAO,EAAE,SAAS,CAAC;gBAEjB,MAAM,EAAE,SAAS;CAG9B"}
package/resource.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"resource.js","sourceRoot":"","sources":["src/resource.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAItF,MAAa,WAAW;IAGtB,YAAY,MAAiB;QAC3B,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC;IACxB,CAAC;CACF;AAND,kCAMC"}
1
+ {"version":3,"file":"resource.js","sourceRoot":"","sources":["src/resource.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAItF,MAAsB,WAAW;IAG/B,YAAY,MAAiB;QAC3B,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC;IACxB,CAAC;CACF;AAND,kCAMC"}
package/resource.mjs.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"resource.mjs","sourceRoot":"","sources":["src/resource.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAItF,MAAM,OAAO,WAAW;IAGtB,YAAY,MAAiB;QAC3B,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC;IACxB,CAAC;CACF"}
1
+ {"version":3,"file":"resource.mjs","sourceRoot":"","sources":["src/resource.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAItF,MAAM,OAAgB,WAAW;IAG/B,YAAY,MAAiB;QAC3B,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC;IACxB,CAAC;CACF"}
package/src/resource.ts CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  import type { Conductor } from "./index.js";
4
4
 
5
- export class APIResource {
5
+ export abstract class APIResource {
6
6
  protected _client: Conductor;
7
7
 
8
8
  constructor(client: Conductor) {
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '12.10.0'; // x-release-please-version
1
+ export const VERSION = '12.11.0'; // x-release-please-version
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "12.10.0";
1
+ export declare const VERSION = "12.11.0";
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.10.0'; // x-release-please-version
4
+ exports.VERSION = '12.11.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '12.10.0'; // x-release-please-version
1
+ export const VERSION = '12.11.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map