n8n-nodes-sendit 1.3.0 → 1.3.2

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 CHANGED
@@ -4,10 +4,14 @@ This is an n8n community node for [SendIt](https://sendit.infiniteappsai.com), a
4
4
 
5
5
  [n8n](https://n8n.io/) is a [fair-code licensed](https://docs.n8n.io/reference/license/) workflow automation platform.
6
6
 
7
- ## Release Notes (v1.2.0)
7
+ ## Release Notes (v1.3.2)
8
8
 
9
- `1.2.0` is a major maintainability and feature parity release:
9
+ `1.3.2` is an n8n verification follow-up release:
10
10
 
11
+ - **n8n verification readiness**: Added GitHub Actions provenance publishing support for npm releases
12
+ - **n8n review fixes**: Uses `NodeConnectionTypes.Main`, removes unused request defaults, adds a credential icon, and returns `NodeOperationError` for JSON object validation
13
+ - **Cloud-safe media upload**: Removed host file path reads; media uploads now use n8n binary data only
14
+ - **Standalone package fix**: Removed package imports from the SendIt server codebase
11
15
  - **Refactored architecture**: Monolithic 2,842-line node split into handler-per-resource dispatch map (23 handler modules)
12
16
  - **New resources**: Dead Letter Queue, Audit Log, Conversions
13
17
  - **Expanded resources**: Brand Voice (get/update/delete), Webhooks (list/get/update), AI (reply suggestions, mention summary, feedback)
@@ -49,7 +53,7 @@ Add a **SendIt Trigger** node as the first node in a new workflow. Select events
49
53
 
50
54
  Read content ideas from a spreadsheet, generate AI copy, publish to multiple platforms, and get notified on success.
51
55
 
52
- ## Node Coverage (v1.2.0)
56
+ ## Node Coverage (v1.3.2)
53
57
 
54
58
  ### Trigger
55
59
 
@@ -1,8 +1,9 @@
1
- import { IAuthenticateGeneric, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
1
+ import { IAuthenticateGeneric, ICredentialTestRequest, ICredentialType, Icon, INodeProperties } from 'n8n-workflow';
2
2
  export declare class SendItApi implements ICredentialType {
3
3
  name: string;
4
4
  displayName: string;
5
5
  documentationUrl: string;
6
+ icon: Icon;
6
7
  properties: INodeProperties[];
7
8
  authenticate: IAuthenticateGeneric;
8
9
  test: ICredentialTestRequest;
@@ -6,6 +6,7 @@ class SendItApi {
6
6
  this.name = 'sendItApi';
7
7
  this.displayName = 'SendIt API';
8
8
  this.documentationUrl = 'https://sendit.infiniteappsai.com/documentation.html';
9
+ this.icon = 'file:sendit.svg';
9
10
  this.properties = [
10
11
  {
11
12
  displayName: 'API Key',
@@ -0,0 +1,41 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60">
2
+ <defs>
3
+ <linearGradient id="bolt" x1="0%" y1="100%" x2="100%" y2="0%">
4
+ <stop offset="0%" stop-color="#00B4D8"/>
5
+ <stop offset="50%" stop-color="#00D68F"/>
6
+ <stop offset="100%" stop-color="#80F09A"/>
7
+ </linearGradient>
8
+ <linearGradient id="glow" x1="0%" y1="100%" x2="100%" y2="0%">
9
+ <stop offset="0%" stop-color="#00B4D8" stop-opacity="0.3"/>
10
+ <stop offset="100%" stop-color="#80F09A" stop-opacity="0.3"/>
11
+ </linearGradient>
12
+ </defs>
13
+ <rect width="60" height="60" rx="12" fill="#1A1F2E"/>
14
+ <!-- Lightning bolt S-shape (main stroke) -->
15
+ <path d="M36 5 L22 26 L32 26 L20 55 L44 28 L33 28 L44 10 Z"
16
+ fill="none" stroke="url(#bolt)" stroke-width="2.8"
17
+ stroke-linejoin="round" stroke-linecap="round"/>
18
+ <!-- Arrow tip at top-right -->
19
+ <path d="M38 8 L44 10 L40 15"
20
+ fill="none" stroke="url(#bolt)" stroke-width="2.2"
21
+ stroke-linejoin="round" stroke-linecap="round"/>
22
+ <!-- Inner circuit traces -->
23
+ <path d="M30 16 L30 22 L34 22"
24
+ fill="none" stroke="url(#bolt)" stroke-width="1.2"
25
+ stroke-linecap="round" opacity="0.7"/>
26
+ <path d="M28 36 L28 42 L32 42"
27
+ fill="none" stroke="url(#bolt)" stroke-width="1.2"
28
+ stroke-linecap="round" opacity="0.7"/>
29
+ <path d="M26 29 L30 33"
30
+ fill="none" stroke="url(#bolt)" stroke-width="1.2"
31
+ stroke-linecap="round" opacity="0.6"/>
32
+ <!-- Circuit nodes -->
33
+ <circle cx="34" cy="22" r="1.8" fill="#00D68F"/>
34
+ <circle cx="30" cy="16" r="1.4" fill="#00C4E0" opacity="0.8"/>
35
+ <circle cx="32" cy="42" r="1.8" fill="#80F09A"/>
36
+ <circle cx="28" cy="36" r="1.4" fill="#00D68F" opacity="0.8"/>
37
+ <circle cx="30" cy="33" r="1.2" fill="#00C4E0" opacity="0.6"/>
38
+ <!-- Subtle glow fill -->
39
+ <path d="M36 5 L22 26 L32 26 L20 55 L44 28 L33 28 L44 10 Z"
40
+ fill="url(#glow)" opacity="0.4"/>
41
+ </svg>