n8n-nodes-instantkom 3.136.0 → 3.138.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.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +85 -0
  3. package/package.json +14 -2
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 instantKOM, Inh. Simon Theophil
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,85 @@
1
+ # n8n-nodes-instantkom
2
+
3
+ [n8n](https://n8n.io) community node for the [instantKOM](https://instantkom.app) messaging platform.
4
+
5
+ Send messages, manage contacts and react to inbound events across all instantKOM channels (WhatsApp, SMS, Telegram, Signal, Threema, RCS, ...) directly from your n8n workflows.
6
+
7
+ ## Installation
8
+
9
+ ### Inside n8n (recommended)
10
+
11
+ 1. Open your n8n instance
12
+ 2. Go to **Settings -> Community Nodes**
13
+ 3. Click **Install a community node**
14
+ 4. Enter `n8n-nodes-instantkom` and confirm
15
+
16
+ ### Manual (self-hosted, CLI)
17
+
18
+ ```bash
19
+ npm install n8n-nodes-instantkom
20
+ ```
21
+
22
+ Then restart your n8n instance.
23
+
24
+ > **About the package name**
25
+ >
26
+ > The instantKOM platform publishes scoped packages by default (`@instantkom/cli`,
27
+ > `@instantkom/mcp-server`). This n8n node is intentionally published as the
28
+ > **unscoped** `n8n-nodes-instantkom`, because n8n's Community Nodes catalog only
29
+ > discovers packages that follow the `n8n-nodes-*` naming convention. Keeping the
30
+ > unscoped name maximises discoverability inside the n8n UI.
31
+
32
+ ## Authentication
33
+
34
+ Create an API token in instantKOM:
35
+
36
+ 1. Log in at <https://frontend.instantkom.app>
37
+ 2. Open **Settings -> API**
38
+ 3. Generate an API token
39
+
40
+ In n8n:
41
+
42
+ 1. Add credentials of type **instantKOM API**
43
+ 2. Paste the token
44
+
45
+ ## Available nodes
46
+
47
+ ### `instantKOM`
48
+
49
+ Resource-based action node. Supports:
50
+
51
+ | Resource | Operations |
52
+ |----------|------------|
53
+ | **Channel** | List, get, get many |
54
+ | **Contact** | Create, get, get many, update |
55
+ | **Message** | Send |
56
+
57
+ ### `instantKOM Trigger`
58
+
59
+ Webhook-based trigger node. Fires on inbound events such as:
60
+
61
+ - New inbound message
62
+ - Message status updates (delivered, read, failed)
63
+ - Contact updates
64
+
65
+ ## Example workflow
66
+
67
+ ```
68
+ [instantKOM Trigger] -> [IF (status == "received")] -> [instantKOM: Send Message]
69
+ ```
70
+
71
+ A simple auto-responder that reacts to inbound WhatsApp/SMS/Telegram messages.
72
+
73
+ ## Documentation
74
+
75
+ - instantKOM API reference: <https://developers.instantkom.app>
76
+ - n8n community node docs: <https://docs.n8n.io/integrations/community-nodes/>
77
+
78
+ ## License
79
+
80
+ [MIT](./LICENSE) (c) instantKOM, Inh. Simon Theophil
81
+
82
+ ## Support
83
+
84
+ - Issues: <https://github.com/virtualart-online/instantKOM/issues>
85
+ - Contact: <st@instantkom.app>
package/package.json CHANGED
@@ -1,12 +1,24 @@
1
1
  {
2
2
  "name": "n8n-nodes-instantkom",
3
- "version": "3.136.0",
3
+ "version": "3.138.0",
4
4
  "description": "n8n community node for instantKOM messaging platform",
5
5
  "license": "MIT",
6
+ "author": "instantKOM, Inh. Simon Theophil <st@instantkom.app>",
7
+ "homepage": "https://github.com/virtualart-online/instantKOM/tree/main/services/integrations/n8n#readme",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/virtualart-online/instantKOM.git",
11
+ "directory": "services/integrations/n8n"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/virtualart-online/instantKOM/issues"
15
+ },
6
16
  "main": "index.js",
7
17
  "files": [
8
18
  "dist/**",
9
- "package.json"
19
+ "package.json",
20
+ "README.md",
21
+ "LICENSE"
10
22
  ],
11
23
  "keywords": [
12
24
  "n8n-community-node-package",