n8n-nodes-postwire 0.2.3 → 0.3.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/README.md +92 -28
- package/dist/credentials/PostWireApi.credentials.js +1 -6
- package/dist/credentials/PostWireApi.credentials.js.map +1 -0
- package/dist/nodes/PostWire/Description.d.ts +9 -0
- package/dist/nodes/PostWire/Description.js +669 -0
- package/dist/nodes/PostWire/Description.js.map +1 -0
- package/dist/nodes/PostWire/GenericFunctions.d.ts +38 -0
- package/dist/nodes/PostWire/GenericFunctions.js +357 -0
- package/dist/nodes/PostWire/GenericFunctions.js.map +1 -0
- package/dist/nodes/PostWire/LegacyDescription.d.ts +2 -0
- package/dist/nodes/PostWire/LegacyDescription.js +157 -0
- package/dist/nodes/PostWire/LegacyDescription.js.map +1 -0
- package/dist/nodes/PostWire/PostWire.node.d.ts +6 -1
- package/dist/nodes/PostWire/PostWire.node.js +404 -271
- package/dist/nodes/PostWire/PostWire.node.js.map +1 -0
- package/dist/nodes/PostWire/PostWire.node.json +14 -0
- package/dist/package.json +67 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +20 -10
- package/index.js +0 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-postwire",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Publish one idea natively to TikTok, Instagram, YouTube, LinkedIn, X, Bluesky, Mastodon, Telegram, Discord and Reddit from n8n — a different post written for each network, via PostWire.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"scheduling"
|
|
15
15
|
],
|
|
16
16
|
"license": "MIT",
|
|
17
|
-
"homepage": "https://postwire.io",
|
|
17
|
+
"homepage": "https://postwire.io/n8n-social-media-automation/#official-n8n-node",
|
|
18
18
|
"author": {
|
|
19
19
|
"name": "PostWire",
|
|
20
20
|
"email": "privacy@postwire.io"
|
|
@@ -23,16 +23,18 @@
|
|
|
23
23
|
"type": "git",
|
|
24
24
|
"url": "git+https://github.com/Perufitlife/n8n-nodes-postwire.git"
|
|
25
25
|
},
|
|
26
|
-
"main": "index.js",
|
|
27
26
|
"scripts": {
|
|
28
|
-
"build": "
|
|
29
|
-
"
|
|
27
|
+
"build": "n8n-node build",
|
|
28
|
+
"build:watch": "tsc --watch",
|
|
29
|
+
"dev": "n8n-node dev",
|
|
30
|
+
"lint": "n8n-node lint",
|
|
31
|
+
"lint:fix": "n8n-node lint --fix",
|
|
32
|
+
"test": "node --test test/*.test.js",
|
|
33
|
+
"release": "n8n-node release",
|
|
34
|
+
"prepublishOnly": "n8n-node prerelease"
|
|
30
35
|
},
|
|
31
36
|
"files": [
|
|
32
|
-
"dist"
|
|
33
|
-
"index.js",
|
|
34
|
-
"LICENSE.md",
|
|
35
|
-
"README.md"
|
|
37
|
+
"dist"
|
|
36
38
|
],
|
|
37
39
|
"n8n": {
|
|
38
40
|
"n8nNodesApiVersion": 1,
|
|
@@ -41,7 +43,8 @@
|
|
|
41
43
|
],
|
|
42
44
|
"nodes": [
|
|
43
45
|
"dist/nodes/PostWire/PostWire.node.js"
|
|
44
|
-
]
|
|
46
|
+
],
|
|
47
|
+
"strict": true
|
|
45
48
|
},
|
|
46
49
|
"peerDependencies": {
|
|
47
50
|
"n8n-workflow": "*"
|
|
@@ -50,8 +53,15 @@
|
|
|
50
53
|
"node": ">=20.15"
|
|
51
54
|
},
|
|
52
55
|
"devDependencies": {
|
|
56
|
+
"@n8n/node-cli": "^0.49.1",
|
|
53
57
|
"@types/node": "^22.10.2",
|
|
58
|
+
"eslint": "^9.39.4",
|
|
54
59
|
"n8n-workflow": "*",
|
|
60
|
+
"prettier": "^3.8.3",
|
|
61
|
+
"release-it": "^20.2.0",
|
|
55
62
|
"typescript": "^5.7.2"
|
|
63
|
+
},
|
|
64
|
+
"bugs": {
|
|
65
|
+
"url": "https://github.com/Perufitlife/n8n-nodes-postwire/issues"
|
|
56
66
|
}
|
|
57
67
|
}
|
package/index.js
DELETED