Skip to content

Commit 30e012f

Browse files
committed
fix(lint)
1 parent 3a366dc commit 30e012f

File tree

2 files changed

+22
-5
lines changed

2 files changed

+22
-5
lines changed

nodes/Signal/Signal.node.ts

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,16 @@ export class Signal implements INodeType {
3838
noDataExpression: true,
3939
options: [
4040
{
41-
name: 'Message',
42-
value: 'message',
41+
name: 'Contact',
42+
value: 'contact',
4343
},
4444
{
4545
name: 'Group',
4646
value: 'group',
4747
},
4848
{
49-
name: 'Contact',
50-
value: 'contact',
49+
name: 'Message',
50+
value: 'message',
5151
},
5252
{
5353
name: 'Reaction',
@@ -65,6 +65,7 @@ export class Signal implements INodeType {
6565
displayName: 'Operation',
6666
name: 'operation',
6767
type: 'options',
68+
noDataExpression: true,
6869
displayOptions: {
6970
show: {
7071
resource: ['message'],
@@ -74,6 +75,7 @@ export class Signal implements INodeType {
7475
{
7576
name: 'Send',
7677
value: 'send',
78+
action: 'Send a message',
7779
},
7880
],
7981
default: 'send',
@@ -123,6 +125,7 @@ export class Signal implements INodeType {
123125
displayName: 'Operation',
124126
name: 'operation',
125127
type: 'options',
128+
noDataExpression: true,
126129
displayOptions: {
127130
show: {
128131
resource: ['group'],
@@ -132,10 +135,12 @@ export class Signal implements INodeType {
132135
{
133136
name: 'Create',
134137
value: 'create',
138+
action: 'Create a group',
135139
},
136140
{
137141
name: 'List',
138142
value: 'list',
143+
action: 'List a group',
139144
},
140145
],
141146
default: 'create',
@@ -185,6 +190,7 @@ export class Signal implements INodeType {
185190
displayName: 'Operation',
186191
name: 'operation',
187192
type: 'options',
193+
noDataExpression: true,
188194
displayOptions: {
189195
show: {
190196
resource: ['contact'],
@@ -194,10 +200,12 @@ export class Signal implements INodeType {
194200
{
195201
name: 'Update',
196202
value: 'update',
203+
action: 'Update a contact',
197204
},
198205
{
199206
name: 'List',
200207
value: 'list',
208+
action: 'List a contact',
201209
},
202210
],
203211
default: 'update',
@@ -246,6 +254,7 @@ export class Signal implements INodeType {
246254
displayName: 'Operation',
247255
name: 'operation',
248256
type: 'options',
257+
noDataExpression: true,
249258
displayOptions: {
250259
show: {
251260
resource: ['reaction'],
@@ -255,10 +264,12 @@ export class Signal implements INodeType {
255264
{
256265
name: 'Send',
257266
value: 'send',
267+
action: 'Send a reaction',
258268
},
259269
{
260270
name: 'Remove',
261271
value: 'remove',
272+
action: 'Remove a reaction',
262273
},
263274
],
264275
default: 'send',
@@ -336,6 +347,7 @@ export class Signal implements INodeType {
336347
displayName: 'Operation',
337348
name: 'operation',
338349
type: 'options',
350+
noDataExpression: true,
339351
displayOptions: {
340352
show: {
341353
resource: ['receipt'],
@@ -345,6 +357,7 @@ export class Signal implements INodeType {
345357
{
346358
name: 'Send',
347359
value: 'send',
360+
action: 'Send a receipt',
348361
},
349362
],
350363
default: 'send',

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@
88
],
99
"license": "MIT",
1010
"homepage": "",
11-
"author": "Francois-Guillaume Ribreau <[email protected]> (https://fgribreau.com)",
11+
"author": {
12+
"name": "Francois-Guillaume Ribreau",
13+
"email": "[email protected]",
14+
"url": "https://fgribreau.com"
15+
},
1216
"repository": {
1317
"type": "git",
1418
"url": "https://github.com/fgribreau/n8n-nodes-signal-cli"

0 commit comments

Comments
 (0)