n8n-nodes-sendit 1.0.0 → 1.0.1

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 +60 -0
  3. 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,60 @@
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
+ 1. Go to [SendIt Dashboard](https://sendit.infiniteappsai.com/dashboard)
49
+ 2. Navigate to API Keys section
50
+ 3. Create a new API key
51
+ 4. Use the API key in n8n credentials
52
+
53
+ ## Resources
54
+
55
+ - [SendIt Documentation](https://sendit.infiniteappsai.com/docs)
56
+ - [n8n Community Nodes Documentation](https://docs.n8n.io/integrations/community-nodes/)
57
+
58
+ ## License
59
+
60
+ [MIT](LICENSE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-sendit",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
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/infiniteappsai/sendit"
24
+ "url": "git+https://github.com/Shree-git/n8n-nodes-sendit.git"
25
25
  },
26
26
  "main": "index.js",
27
27
  "scripts": {