n8n-nodes-preroll 0.1.0 → 0.1.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.
|
@@ -15,15 +15,15 @@ const DashboardDescription_1 = require("./resources/DashboardDescription");
|
|
|
15
15
|
class PreRoll {
|
|
16
16
|
constructor() {
|
|
17
17
|
this.description = {
|
|
18
|
-
displayName: 'PreRoll',
|
|
18
|
+
displayName: 'PreRoll.io',
|
|
19
19
|
name: 'preRoll',
|
|
20
20
|
icon: 'file:preroll.svg',
|
|
21
21
|
group: ['transform'],
|
|
22
22
|
version: 1,
|
|
23
23
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
24
|
-
description: 'Interact with PreRoll — podcast production management',
|
|
24
|
+
description: 'Interact with PreRoll.io — podcast production management',
|
|
25
25
|
defaults: {
|
|
26
|
-
name: 'PreRoll',
|
|
26
|
+
name: 'PreRoll.io',
|
|
27
27
|
},
|
|
28
28
|
inputs: ['main'],
|
|
29
29
|
outputs: ['main'],
|
|
@@ -4,15 +4,15 @@ exports.PreRollTrigger = void 0;
|
|
|
4
4
|
class PreRollTrigger {
|
|
5
5
|
constructor() {
|
|
6
6
|
this.description = {
|
|
7
|
-
displayName: 'PreRoll Trigger',
|
|
7
|
+
displayName: 'PreRoll.io Trigger',
|
|
8
8
|
name: 'preRollTrigger',
|
|
9
9
|
icon: 'file:preroll.svg',
|
|
10
10
|
group: ['trigger'],
|
|
11
11
|
version: 1,
|
|
12
12
|
subtitle: '={{$parameter["events"].join(", ")}}',
|
|
13
|
-
description: 'Triggers when events occur in PreRoll',
|
|
13
|
+
description: 'Triggers when events occur in PreRoll.io',
|
|
14
14
|
defaults: {
|
|
15
|
-
name: 'PreRoll Trigger',
|
|
15
|
+
name: 'PreRoll.io Trigger',
|
|
16
16
|
},
|
|
17
17
|
inputs: [],
|
|
18
18
|
outputs: ['main'],
|
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" fill="none">
|
|
2
|
-
<
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="bg" x1="0" y1="0" x2="1" y2="1" gradientTransform="rotate(150)">
|
|
4
|
+
<stop offset="0%" stop-color="#f27d53"/>
|
|
5
|
+
<stop offset="100%" stop-color="#d55661"/>
|
|
6
|
+
</linearGradient>
|
|
7
|
+
</defs>
|
|
8
|
+
<rect width="60" height="60" rx="7" fill="url(#bg)"/>
|
|
9
|
+
<line x1="19" y1="14" x2="19" y2="46" stroke="white" stroke-width="3" stroke-linecap="round"/>
|
|
10
|
+
<line x1="30" y1="14" x2="30" y2="46" stroke="white" stroke-width="3" stroke-linecap="round"/>
|
|
11
|
+
<line x1="41" y1="14" x2="41" y2="46" stroke="white" stroke-width="3" stroke-linecap="round"/>
|
|
12
|
+
<circle cx="19" cy="38" r="3.6" fill="white"/>
|
|
13
|
+
<circle cx="30" cy="28" r="3.6" fill="white"/>
|
|
14
|
+
<circle cx="41" cy="20" r="3.6" fill="white"/>
|
|
7
15
|
</svg>
|