@thegraphitelab/n8n-nodes-servicetitan 0.9.1 → 0.9.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.
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- ServiceTitan icon
|
|
3
|
-
<svg
|
|
4
|
-
<
|
|
2
|
+
<!-- ServiceTitan node icon (dark theme). Inverted from the light variant so it sits well on n8n's dark canvas — white rounded square with ServiceTitan brand black letters. -->
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
|
|
4
|
+
<rect x="2" y="2" width="60" height="60" rx="12" fill="#FFFFFF"/>
|
|
5
|
+
<text x="32" y="44" font-family="Helvetica, Arial, sans-serif" font-weight="700" font-size="32" fill="#1B1B1B" text-anchor="middle" letter-spacing="-1">ST</text>
|
|
5
6
|
</svg>
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- ServiceTitan icon
|
|
3
|
-
<svg
|
|
4
|
-
<
|
|
2
|
+
<!-- ServiceTitan node icon (light theme). Square monogram rendering reliably at n8n's small icon size. The official ServiceTitan icon-only mark (Titan glyph) is intricate and doesn't render at <40px — a clean ST monogram in ServiceTitan brand black is more legible. -->
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
|
|
4
|
+
<rect x="2" y="2" width="60" height="60" rx="12" fill="#1B1B1B"/>
|
|
5
|
+
<text x="32" y="44" font-family="Helvetica, Arial, sans-serif" font-weight="700" font-size="32" fill="#FFFFFF" text-anchor="middle" letter-spacing="-1">ST</text>
|
|
5
6
|
</svg>
|
package/dist/package.json
CHANGED