conductor-node 11.10.0 → 11.10.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/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "11.10.0",
3
+ "version": "11.10.1",
4
4
  "description": "QuickBooks Desktop API for Node.js and TypeScript",
5
5
  "keywords": [
6
6
  "QuickBooks",
@@ -17,7 +17,7 @@
17
17
  "Intuit"
18
18
  ],
19
19
  "homepage": "https://conductor.is",
20
- "repository": "github:conductor-is/conductor-node",
20
+ "repository": "github:conductor-is/quickbooks-desktop-api",
21
21
  "license": "MIT",
22
22
  "author": "Conductor <support@conductor.is>",
23
23
  "type": "commonjs",
@@ -25,18 +25,21 @@ function checkForUpdates() {
25
25
  .then((response) => {
26
26
  const latestVersion = response.data.latest;
27
27
  if (currentVersion !== latestVersion) {
28
- let updateCommand = "npm install";
29
- if (process.env["npm_execpath"]?.includes("yarn") === true) {
30
- updateCommand = "yarn add";
31
- }
32
- else if (process.env["npm_execpath"]?.includes("pnpm") === true) {
33
- updateCommand = "pnpm add";
34
- }
35
28
  console.warn(createFramedMessage([
36
- `🟡 Update available for Conductor! ${currentVersion} -> ${latestVersion}`,
29
+ "🚨 MAJOR UPDATE AVAILABLE! 🚨",
30
+ `${currentVersion} ➡️ ${latestVersion}`,
37
31
  "",
38
- "Run the following to update:",
39
- ` ${updateCommand} ${packageName}@latest`,
32
+ " This is an entirely new SDK with amazing improvements:",
33
+ "• 📄 Automatic pagination",
34
+ "• 🔄 Automatic retry",
35
+ "• 🎯 Significantly improved naming",
36
+ "• 🏗️ Simplified structure",
37
+ "",
38
+ "⚠️ While your current version will continue to work,",
39
+ "it will not receive any more updates.",
40
+ "",
41
+ "🔥 UPGRADE GUIDE 🔥",
42
+ "→ https://docs.conductor.is/qbd-api/upgrade-node ←",
40
43
  ]));
41
44
  }
42
45
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "11.10.0",
3
+ "version": "11.10.1",
4
4
  "description": "QuickBooks Desktop API for Node.js and TypeScript",
5
5
  "keywords": [
6
6
  "QuickBooks",
@@ -17,7 +17,7 @@
17
17
  "Intuit"
18
18
  ],
19
19
  "homepage": "https://conductor.is",
20
- "repository": "github:conductor-is/conductor-node",
20
+ "repository": "github:conductor-is/quickbooks-desktop-api",
21
21
  "license": "MIT",
22
22
  "author": "Conductor <support@conductor.is>",
23
23
  "type": "commonjs",