n8n-nodes-fingrid 0.2.3 → 0.2.6
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.
|
@@ -8,7 +8,7 @@ class Fingrid {
|
|
|
8
8
|
this.description = {
|
|
9
9
|
displayName: "Fingrid",
|
|
10
10
|
name: "fingrid",
|
|
11
|
-
icon: "file:fingrid.svg",
|
|
11
|
+
icon: { light: "file:fingrid.svg", dark: "file:fingrid-dark.svg" },
|
|
12
12
|
group: ["transform"],
|
|
13
13
|
version: 1,
|
|
14
14
|
usableAsTool: true,
|
|
@@ -425,10 +425,6 @@ class Fingrid {
|
|
|
425
425
|
});
|
|
426
426
|
continue;
|
|
427
427
|
}
|
|
428
|
-
if (error instanceof n8n_workflow_1.NodeApiError ||
|
|
429
|
-
error instanceof n8n_workflow_1.NodeOperationError) {
|
|
430
|
-
throw error;
|
|
431
|
-
}
|
|
432
428
|
throw new n8n_workflow_1.NodeApiError(this.getNode(), error, {
|
|
433
429
|
itemIndex: i,
|
|
434
430
|
});
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="60" height="60" viewBox="0 0 60 60"
|
|
2
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<rect width="60" height="60" rx="8" fill="#8B0000"/>
|
|
4
|
+
<path d="M15 42 L15 18 L32 18 L32 24 L21 24 L21 28 L30 28 L30 34 L21 34 L21 42 Z" fill="#F5F5F5"/>
|
|
5
|
+
<path d="M38 18 L44 18 L44 42 L38 42 Z" fill="#F5F5F5"/>
|
|
6
|
+
</svg>
|