n8n-nodes-typebot 1.2.0 → 1.2.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.
@@ -7,7 +7,7 @@ class Typebot {
7
7
  this.description = {
8
8
  displayName: 'Typebot',
9
9
  name: 'typebot',
10
- icon: 'file:typebot.png',
10
+ icon: 'file:typebot.svg',
11
11
  group: ['transform'],
12
12
  version: 1,
13
13
  subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
@@ -0,0 +1,32 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="820" height="820" viewBox="0 0 820 820" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <!-- Outer shadow/border for visibility on light backgrounds -->
4
+ <defs>
5
+ <filter id="shadow" x="-50%" y="-50%" width="200%" height="200%">
6
+ <feGaussianBlur in="SourceAlpha" stdDeviation="4"/>
7
+ <feOffset dx="0" dy="0" result="offsetblur"/>
8
+ <feComponentTransfer>
9
+ <feFuncA type="linear" slope="0.5"/>
10
+ </feComponentTransfer>
11
+ <feMerge>
12
+ <feMergeNode/>
13
+ <feMergeNode in="SourceGraphic"/>
14
+ </feMerge>
15
+ </filter>
16
+ </defs>
17
+
18
+ <!-- Black background with subtle border -->
19
+ <rect width="820" height="820" rx="120" fill="#000000" stroke="#333333" stroke-width="2" filter="url(#shadow)"/>
20
+
21
+ <!-- Typebot Logo - white on black (exact copy of original) -->
22
+ <g transform="translate(205, 205)">
23
+ <!-- Outer rounded rectangle (white border) -->
24
+ <rect x="0" y="0" width="410" height="410" rx="80" fill="none" stroke="white" stroke-width="40"/>
25
+
26
+ <!-- Inner rounded rectangle (black background) -->
27
+ <rect x="60" y="60" width="290" height="290" rx="50" fill="#000000"/>
28
+
29
+ <!-- Slanted line (white) - the iconic "/" -->
30
+ <rect x="150" y="100" width="100" height="210" rx="20" fill="white" transform="rotate(-15 205 205)"/>
31
+ </g>
32
+ </svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-typebot",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "n8n community node for Typebot - A powerful chatbot builder integration",
5
5
  "keywords": [
6
6
  "n8n-community-node-package",
Binary file