n8n-nodes-syncmate 1.0.19 → 1.0.21
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.
|
@@ -28,11 +28,32 @@ class AssistroOAuth2Api {
|
|
|
28
28
|
default: 'https://app.assistro.co/oauth/token',
|
|
29
29
|
required: true,
|
|
30
30
|
},
|
|
31
|
+
{
|
|
32
|
+
displayName: 'Client ID',
|
|
33
|
+
name: 'clientId',
|
|
34
|
+
type: 'hidden',
|
|
35
|
+
default: '7',
|
|
36
|
+
required: true,
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
displayName: 'Client Secret',
|
|
40
|
+
name: 'clientSecret',
|
|
41
|
+
type: 'hidden',
|
|
42
|
+
typeOptions: { password: true },
|
|
43
|
+
default: 'Hu7Q7ruHo9tOp2MEmBvBA45bn5atNESD7naEURHw',
|
|
44
|
+
required: true,
|
|
45
|
+
},
|
|
31
46
|
{
|
|
32
47
|
displayName: 'Scope',
|
|
33
48
|
name: 'scope',
|
|
34
49
|
type: 'hidden',
|
|
35
|
-
default: '',
|
|
50
|
+
default: 'all',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
displayName: 'Auth URI Query Parameters',
|
|
54
|
+
name: 'authQueryParameters',
|
|
55
|
+
type: 'hidden',
|
|
56
|
+
default: 'integration_name=n8n',
|
|
36
57
|
},
|
|
37
58
|
{
|
|
38
59
|
displayName: 'Authentication',
|
package/package.json
CHANGED
|
@@ -1,63 +1,63 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "n8n-nodes-syncmate",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Send WhatsApp messages or media using SyncMate Assistro API.",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"n8n-community-node-package",
|
|
7
|
-
"whatsapp",
|
|
8
|
-
"assistro",
|
|
9
|
-
"syncmate",
|
|
10
|
-
"automation"
|
|
11
|
-
],
|
|
12
|
-
"license": "MIT",
|
|
13
|
-
"homepage": "https://github.com/heratshah-collab/n8n-nodes-syncmate#readme",
|
|
14
|
-
"author": {
|
|
15
|
-
"name": "Assistro Technologies",
|
|
16
|
-
"email": "support@assistro.co"
|
|
17
|
-
},
|
|
18
|
-
"repository": {
|
|
19
|
-
"type": "git",
|
|
20
|
-
"url": "git+https://github.com/heratshah-collab/n8n-nodes-syncmate.git"
|
|
21
|
-
},
|
|
22
|
-
"bugs": {
|
|
23
|
-
"url": "https://github.com/heratshah-collab/n8n-nodes-syncmate/issues"
|
|
24
|
-
},
|
|
25
|
-
"engines": {
|
|
26
|
-
"node": ">=18.10",
|
|
27
|
-
"pnpm": ">=8.0"
|
|
28
|
-
},
|
|
29
|
-
"main": "index.js",
|
|
30
|
-
"scripts": {
|
|
31
|
-
"build": "tsc && gulp build:icons",
|
|
32
|
-
"dev": "tsc --watch",
|
|
33
|
-
"format": "prettier nodes credentials --write",
|
|
34
|
-
"lint": "eslint nodes/**/*.ts credentials/**/*.ts",
|
|
35
|
-
"lintfix": "eslint nodes credentials --fix",
|
|
36
|
-
"prepublishOnly": "npm run build"
|
|
37
|
-
},
|
|
38
|
-
"files": [
|
|
39
|
-
"dist"
|
|
40
|
-
],
|
|
41
|
-
"n8n": {
|
|
42
|
-
"n8nNodesApiVersion": 1,
|
|
43
|
-
"nodes": [
|
|
44
|
-
"dist/nodes/WhatsAuto/WhatsAuto.node.js"
|
|
45
|
-
],
|
|
46
|
-
"credentials": [
|
|
47
|
-
"dist/credentials/AssistroOAuth2Api.credentials.js"
|
|
48
|
-
]
|
|
49
|
-
},
|
|
50
|
-
"devDependencies": {
|
|
51
|
-
"@types/node": "^20.14.9",
|
|
52
|
-
"@typescript-eslint/parser": "~7.15.0",
|
|
53
|
-
"eslint": "^8.56.0",
|
|
54
|
-
"eslint-plugin-n8n-nodes-base": "^1.16.1",
|
|
55
|
-
"gulp": "^4.0.2",
|
|
56
|
-
"n8n-workflow": "^1.119.1",
|
|
57
|
-
"prettier": "^3.3.2",
|
|
58
|
-
"typescript": "~5.5.3"
|
|
59
|
-
},
|
|
60
|
-
"peerDependencies": {
|
|
61
|
-
"n8n-workflow": "*"
|
|
62
|
-
}
|
|
63
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-syncmate",
|
|
3
|
+
"version": "1.0.21",
|
|
4
|
+
"description": "Send WhatsApp messages or media using SyncMate Assistro API.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"n8n-community-node-package",
|
|
7
|
+
"whatsapp",
|
|
8
|
+
"assistro",
|
|
9
|
+
"syncmate",
|
|
10
|
+
"automation"
|
|
11
|
+
],
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"homepage": "https://github.com/heratshah-collab/n8n-nodes-syncmate#readme",
|
|
14
|
+
"author": {
|
|
15
|
+
"name": "Assistro Technologies",
|
|
16
|
+
"email": "support@assistro.co"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/heratshah-collab/n8n-nodes-syncmate.git"
|
|
21
|
+
},
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/heratshah-collab/n8n-nodes-syncmate/issues"
|
|
24
|
+
},
|
|
25
|
+
"engines": {
|
|
26
|
+
"node": ">=18.10",
|
|
27
|
+
"pnpm": ">=8.0"
|
|
28
|
+
},
|
|
29
|
+
"main": "index.js",
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "tsc && gulp build:icons",
|
|
32
|
+
"dev": "tsc --watch",
|
|
33
|
+
"format": "prettier nodes credentials --write",
|
|
34
|
+
"lint": "eslint nodes/**/*.ts credentials/**/*.ts",
|
|
35
|
+
"lintfix": "eslint nodes credentials --fix",
|
|
36
|
+
"prepublishOnly": "npm run build"
|
|
37
|
+
},
|
|
38
|
+
"files": [
|
|
39
|
+
"dist"
|
|
40
|
+
],
|
|
41
|
+
"n8n": {
|
|
42
|
+
"n8nNodesApiVersion": 1,
|
|
43
|
+
"nodes": [
|
|
44
|
+
"dist/nodes/WhatsAuto/WhatsAuto.node.js"
|
|
45
|
+
],
|
|
46
|
+
"credentials": [
|
|
47
|
+
"dist/credentials/AssistroOAuth2Api.credentials.js"
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@types/node": "^20.14.9",
|
|
52
|
+
"@typescript-eslint/parser": "~7.15.0",
|
|
53
|
+
"eslint": "^8.56.0",
|
|
54
|
+
"eslint-plugin-n8n-nodes-base": "^1.16.1",
|
|
55
|
+
"gulp": "^4.0.2",
|
|
56
|
+
"n8n-workflow": "^1.119.1",
|
|
57
|
+
"prettier": "^3.3.2",
|
|
58
|
+
"typescript": "~5.5.3"
|
|
59
|
+
},
|
|
60
|
+
"peerDependencies": {
|
|
61
|
+
"n8n-workflow": "*"
|
|
62
|
+
}
|
|
63
|
+
}
|