n8n-nodes-resend 2.6.0 → 2.6.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.
|
@@ -10,17 +10,32 @@ var ResendOAuth2Api = class {
|
|
|
10
10
|
light: "file:resend-icon-black.svg",
|
|
11
11
|
dark: "file:resend-icon-white.svg"
|
|
12
12
|
};
|
|
13
|
-
this.properties = [
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
13
|
+
this.properties = [
|
|
14
|
+
{
|
|
15
|
+
displayName: "This one-click connection requires a recent version of n8n. If the <b>Connect</b> button does not work, update n8n, or use the <b>Resend API</b> credential (API key) instead.",
|
|
16
|
+
name: "versionNotice",
|
|
17
|
+
type: "notice",
|
|
18
|
+
default: ""
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
displayName: "Getting a 400 error when connecting? Check the <b>OAuth Redirect URL</b> shown above, it must be a public <code>https://</code> URL. If it shows an internal address like <code>http://n8n.local:5678</code>, your n8n instance's public URL is misconfigured. Set the <code>WEBHOOK_URL</code> environment variable to your instance's real HTTPS address (e.g. <code>https://your-n8n-domain.com/</code>) and restart n8n.",
|
|
22
|
+
name: "redirectUrlNotice",
|
|
23
|
+
type: "notice",
|
|
24
|
+
default: ""
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
displayName: "Server URL",
|
|
28
|
+
name: "serverUrl",
|
|
29
|
+
type: "hidden",
|
|
30
|
+
default: "https://api.resend.com"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
displayName: "Use Dynamic Client Registration",
|
|
34
|
+
name: "useDynamicClientRegistration",
|
|
35
|
+
type: "hidden",
|
|
36
|
+
default: true
|
|
37
|
+
}
|
|
38
|
+
];
|
|
24
39
|
}
|
|
25
40
|
};
|
|
26
41
|
//#endregion
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-resend",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.1",
|
|
4
4
|
"description": "Resend integration for n8n: Email, Broadcasts, Templates, Domains, Contacts, Segments, Topics, Webhooks, Workflows, Events, and more",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package",
|