n8n-nodes-sendit 1.0.0 → 1.0.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/LICENSE +21 -0
- package/README.md +79 -0
- package/dist/credentials/SendItApi.credentials.js +3 -2
- package/package.json +2 -2
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 SendIt
|
|
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,79 @@
|
|
|
1
|
+
# n8n-nodes-sendit
|
|
2
|
+
|
|
3
|
+
This is an n8n community node for [SendIt](https://sendit.infiniteappsai.com) - a multi-platform social media publishing service.
|
|
4
|
+
|
|
5
|
+
[n8n](https://n8n.io/) is a [fair-code licensed](https://docs.n8n.io/reference/license/) workflow automation platform.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes/installation/) in the n8n community nodes documentation.
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install n8n-nodes-sendit
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Operations
|
|
16
|
+
|
|
17
|
+
### Triggers
|
|
18
|
+
|
|
19
|
+
- **On post published** - Triggers when a post is successfully published
|
|
20
|
+
- **On post scheduled** - Triggers when a post is scheduled
|
|
21
|
+
- **On post failed** - Triggers when a post fails to publish
|
|
22
|
+
- **On post deleted** - Triggers when a scheduled post is cancelled
|
|
23
|
+
- **On account connected** - Triggers when a social account is connected
|
|
24
|
+
- **On account disconnected** - Triggers when a social account is disconnected
|
|
25
|
+
|
|
26
|
+
### Actions
|
|
27
|
+
|
|
28
|
+
- **Publish Post** - Publish content immediately to selected platforms
|
|
29
|
+
- **Schedule Post** - Schedule content for future publishing
|
|
30
|
+
- **List Scheduled Posts** - Get all scheduled posts
|
|
31
|
+
- **Cancel Scheduled Post** - Cancel a scheduled post
|
|
32
|
+
- **Trigger Scheduled Post** - Publish a scheduled post immediately
|
|
33
|
+
- **List Accounts** - Get all connected social media accounts
|
|
34
|
+
- **Validate Content** - Validate content before publishing
|
|
35
|
+
|
|
36
|
+
## Supported Platforms
|
|
37
|
+
|
|
38
|
+
- LinkedIn
|
|
39
|
+
- Instagram
|
|
40
|
+
- Threads
|
|
41
|
+
- TikTok
|
|
42
|
+
- X (Twitter)
|
|
43
|
+
|
|
44
|
+
## Credentials
|
|
45
|
+
|
|
46
|
+
To use this node, you need a SendIt API key:
|
|
47
|
+
|
|
48
|
+
### Getting Your API Key
|
|
49
|
+
|
|
50
|
+
1. **Sign in** to [SendIt](https://sendit.infiniteappsai.com) using your email (magic link authentication)
|
|
51
|
+
2. Go to your [Dashboard](https://sendit.infiniteappsai.com/dashboard)
|
|
52
|
+
3. In the **API Keys** section, click **"Create New Key"**
|
|
53
|
+
4. Give it a name (e.g., "n8n Integration") and click Create
|
|
54
|
+
5. **Copy your API key immediately** - it's only shown once!
|
|
55
|
+
|
|
56
|
+
### API Key Format
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
sk_live_<32_character_string>
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Keys always start with `sk_live_` followed by 32 alphanumeric characters.
|
|
63
|
+
|
|
64
|
+
### Configuring in n8n
|
|
65
|
+
|
|
66
|
+
1. In n8n, go to **Credentials** → **New Credential** → **SendIt API**
|
|
67
|
+
2. Paste your API key
|
|
68
|
+
3. Click **Save**
|
|
69
|
+
|
|
70
|
+
> **Note:** Your API key is only shown once when created. If you lose it, you'll need to create a new one from the dashboard.
|
|
71
|
+
|
|
72
|
+
## Resources
|
|
73
|
+
|
|
74
|
+
- [SendIt Documentation](https://sendit.infiniteappsai.com/documentation.html)
|
|
75
|
+
- [n8n Community Nodes Documentation](https://docs.n8n.io/integrations/community-nodes/)
|
|
76
|
+
|
|
77
|
+
## License
|
|
78
|
+
|
|
79
|
+
[MIT](LICENSE)
|
|
@@ -5,7 +5,7 @@ class SendItApi {
|
|
|
5
5
|
constructor() {
|
|
6
6
|
this.name = 'sendItApi';
|
|
7
7
|
this.displayName = 'SendIt API';
|
|
8
|
-
this.documentationUrl = 'https://sendit.infiniteappsai.com/
|
|
8
|
+
this.documentationUrl = 'https://sendit.infiniteappsai.com/documentation.html';
|
|
9
9
|
this.properties = [
|
|
10
10
|
{
|
|
11
11
|
displayName: 'API Key',
|
|
@@ -16,7 +16,8 @@ class SendItApi {
|
|
|
16
16
|
},
|
|
17
17
|
default: '',
|
|
18
18
|
required: true,
|
|
19
|
-
|
|
19
|
+
placeholder: 'sk_live_your_api_key_here',
|
|
20
|
+
description: 'Your SendIt API key. Get it from Dashboard → API Keys → Create New Key. Format: sk_live_...',
|
|
20
21
|
},
|
|
21
22
|
];
|
|
22
23
|
this.authenticate = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-sendit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "n8n community node for SendIt - Multi-platform social media publishing",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"repository": {
|
|
23
23
|
"type": "git",
|
|
24
|
-
"url": "https://github.com/
|
|
24
|
+
"url": "git+https://github.com/Shree-git/n8n-nodes-sendit.git"
|
|
25
25
|
},
|
|
26
26
|
"main": "index.js",
|
|
27
27
|
"scripts": {
|