@mspcopilot/n8n-nodes-connectwise 0.1.1 → 0.1.3
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/README.md +6 -3
- package/dist-community/credentials/ConnectWisePsaApi.credentials.js +1 -1
- package/dist-community/nodes/ConnectWise/PSA/ConnectWisePsa.node.js +1 -1
- package/dist-community/nodes/ConnectWise/PSA/transport/version-check.js +1 -1
- package/package.json +2 -3
- package/docs/assets/screenshots/create-ticket.png +0 -0
- package/docs/assets/screenshots/field-list.png +0 -0
- package/docs/assets/screenshots/field-sort.png +0 -0
package/README.md
CHANGED
|
@@ -23,13 +23,16 @@ and extensibility.
|
|
|
23
23
|
## Features
|
|
24
24
|
|
|
25
25
|
**Lookup fields for almost all options**: Don't lookup ID numbers of boards or statuses. Just quickly create your workflow.
|
|
26
|
-
|
|
26
|
+
|
|
27
|
+

|
|
27
28
|
|
|
28
29
|
**Override fields easily by drag & drop**: Any field (including nested) in **Additional Assignments** will override any options above--including blank ones.
|
|
29
30
|
|
|
30
31
|
**Quickly choose sort and field names**: Quickly identify only the fields you need or a sort. Intelligently chosen defaults. Override them with an expression if you need more customization.
|
|
31
|
-
|
|
32
|
-

|
|
34
|
+
|
|
35
|
+

|
|
33
36
|
|
|
34
37
|
## Roadmap
|
|
35
38
|
|
|
@@ -117,7 +117,7 @@ class ConnectWisePsaApi {
|
|
|
117
117
|
name: "checkForUpdates",
|
|
118
118
|
type: "boolean",
|
|
119
119
|
default: !1,
|
|
120
|
-
hint: "Current version: 0.1.
|
|
120
|
+
hint: "Current version: 0.1.3 (community edition)",
|
|
121
121
|
description: "Check for new versions of this node package and show notifications when updates are available"
|
|
122
122
|
} ];
|
|
123
123
|
async authenticate(credentials, requestOptions) {
|
|
@@ -39,7 +39,7 @@ module.exports = __toCommonJS(version_check_exports);
|
|
|
39
39
|
|
|
40
40
|
var fs = __toESM(require("fs/promises")), path = __toESM(require("path")), os = __toESM(require("os")), import_common = require("../descriptions/common.descriptions");
|
|
41
41
|
|
|
42
|
-
const CACHE_FILE_PATH = path.join(os.tmpdir(), "connectwise-n8n-version-cache.json"), CURRENT_VERSION = "0.1.
|
|
42
|
+
const CACHE_FILE_PATH = path.join(os.tmpdir(), "connectwise-n8n-version-cache.json"), CURRENT_VERSION = "0.1.3";
|
|
43
43
|
|
|
44
44
|
let inMemoryCache = null, cacheLoadPromise = null, fetchInProgress = !1;
|
|
45
45
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mspcopilot/n8n-nodes-connectwise",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "n8n node to integrate with ConnectWise PSA",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package"
|
|
@@ -24,8 +24,7 @@
|
|
|
24
24
|
"postinstall": "echo 'ConnectWise PSA node installed successfully'"
|
|
25
25
|
},
|
|
26
26
|
"files": [
|
|
27
|
-
"dist-community"
|
|
28
|
-
"docs/assets/screenshots"
|
|
27
|
+
"dist-community"
|
|
29
28
|
],
|
|
30
29
|
"n8n": {
|
|
31
30
|
"n8nNodesApiVersion": 1,
|
|
Binary file
|
|
Binary file
|
|
Binary file
|