conductor-node 12.18.1 → 12.18.2
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 +15 -0
- package/package.json +1 -5
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 12.18.2 (2025-08-01)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v12.18.1...v12.18.2](https://github.com/conductor-is/quickbooks-desktop-node/compare/v12.18.1...v12.18.2)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* **mcp:** avoid sending `jq_filter` to base API ([fac3d68](https://github.com/conductor-is/quickbooks-desktop-node/commit/fac3d68b0cf1a3c5efdb3bc6aea4e72705871be5))
|
|
10
|
+
* **mcp:** fix tool description of jq_filter ([74a9c5a](https://github.com/conductor-is/quickbooks-desktop-node/commit/74a9c5acd6c12b4a5f6bcdfe961b14a8889364cd))
|
|
11
|
+
* **mcp:** reverse validJson capability option and limit scope ([523b818](https://github.com/conductor-is/quickbooks-desktop-node/commit/523b818b04ad4ec622f0f91a446f854cca06482f))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Chores
|
|
15
|
+
|
|
16
|
+
* **internal:** remove redundant imports config ([86d1e55](https://github.com/conductor-is/quickbooks-desktop-node/commit/86d1e550d1c7d517c0872126cdfa22de842cb180))
|
|
17
|
+
|
|
3
18
|
## 12.18.1 (2025-07-24)
|
|
4
19
|
|
|
5
20
|
Full Changelog: [v12.18.0...v12.18.1](https://github.com/conductor-is/quickbooks-desktop-node/compare/v12.18.0...v12.18.1)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "conductor-node",
|
|
3
|
-
"version": "12.18.
|
|
3
|
+
"version": "12.18.2",
|
|
4
4
|
"description": "The official TypeScript library for the Conductor API",
|
|
5
5
|
"author": "Conductor <support@conductor.is>",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -38,10 +38,6 @@
|
|
|
38
38
|
"./shims/web.js",
|
|
39
39
|
"./shims/web.mjs"
|
|
40
40
|
],
|
|
41
|
-
"imports": {
|
|
42
|
-
"conductor-node": ".",
|
|
43
|
-
"conductor-node/*": "./src/*"
|
|
44
|
-
},
|
|
45
41
|
"exports": {
|
|
46
42
|
"./_shims/auto/*": {
|
|
47
43
|
"deno": {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '12.18.
|
|
1
|
+
export const VERSION = '12.18.2'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "12.18.
|
|
1
|
+
export declare const VERSION = "12.18.2";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '12.18.
|
|
1
|
+
export const VERSION = '12.18.2'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|