n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
This commit is contained in:
@@ -1,6 +1,4 @@
|
||||
import {
|
||||
INodeProperties,
|
||||
} from 'n8n-workflow';
|
||||
import { INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export const panelistOperations: INodeProperties[] = [
|
||||
{
|
||||
@@ -33,9 +31,7 @@ export const panelistOperations: INodeProperties[] = [
|
||||
],
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'panelist',
|
||||
],
|
||||
resource: ['panelist'],
|
||||
},
|
||||
},
|
||||
},
|
||||
@@ -54,12 +50,8 @@ export const panelistFields: INodeProperties[] = [
|
||||
description: 'Name of the panelist to create',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'panelist',
|
||||
],
|
||||
operation: [
|
||||
'create',
|
||||
],
|
||||
resource: ['panelist'],
|
||||
operation: ['create'],
|
||||
},
|
||||
},
|
||||
},
|
||||
@@ -73,12 +65,8 @@ export const panelistFields: INodeProperties[] = [
|
||||
description: 'Email address of the panelist to create',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'panelist',
|
||||
],
|
||||
operation: [
|
||||
'create',
|
||||
],
|
||||
resource: ['panelist'],
|
||||
operation: ['create'],
|
||||
},
|
||||
},
|
||||
},
|
||||
@@ -91,15 +79,12 @@ export const panelistFields: INodeProperties[] = [
|
||||
},
|
||||
required: true,
|
||||
default: [],
|
||||
description: 'Key of the webinar that the panelist will present at. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
|
||||
description:
|
||||
'Key of the webinar that the panelist will present at. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'panelist',
|
||||
],
|
||||
operation: [
|
||||
'create',
|
||||
],
|
||||
resource: ['panelist'],
|
||||
operation: ['create'],
|
||||
},
|
||||
},
|
||||
},
|
||||
@@ -116,15 +101,12 @@ export const panelistFields: INodeProperties[] = [
|
||||
},
|
||||
required: true,
|
||||
default: [],
|
||||
description: 'Key of the webinar to retrieve all panelists from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
|
||||
description:
|
||||
'Key of the webinar to retrieve all panelists from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'panelist',
|
||||
],
|
||||
operation: [
|
||||
'getAll',
|
||||
],
|
||||
resource: ['panelist'],
|
||||
operation: ['getAll'],
|
||||
},
|
||||
},
|
||||
},
|
||||
@@ -136,12 +118,8 @@ export const panelistFields: INodeProperties[] = [
|
||||
description: 'Whether to return all results or only up to a given limit',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'panelist',
|
||||
],
|
||||
operation: [
|
||||
'getAll',
|
||||
],
|
||||
resource: ['panelist'],
|
||||
operation: ['getAll'],
|
||||
},
|
||||
},
|
||||
},
|
||||
@@ -157,15 +135,9 @@ export const panelistFields: INodeProperties[] = [
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'panelist',
|
||||
],
|
||||
operation: [
|
||||
'getAll',
|
||||
],
|
||||
returnAll: [
|
||||
false,
|
||||
],
|
||||
resource: ['panelist'],
|
||||
operation: ['getAll'],
|
||||
returnAll: [false],
|
||||
},
|
||||
},
|
||||
},
|
||||
@@ -182,15 +154,12 @@ export const panelistFields: INodeProperties[] = [
|
||||
},
|
||||
required: true,
|
||||
default: [],
|
||||
description: 'Key of the webinar to delete the panelist from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
|
||||
description:
|
||||
'Key of the webinar to delete the panelist from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'panelist',
|
||||
],
|
||||
operation: [
|
||||
'delete',
|
||||
],
|
||||
resource: ['panelist'],
|
||||
operation: ['delete'],
|
||||
},
|
||||
},
|
||||
},
|
||||
@@ -203,12 +172,8 @@ export const panelistFields: INodeProperties[] = [
|
||||
description: 'Key of the panelist to delete',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'panelist',
|
||||
],
|
||||
operation: [
|
||||
'delete',
|
||||
],
|
||||
resource: ['panelist'],
|
||||
operation: ['delete'],
|
||||
},
|
||||
},
|
||||
},
|
||||
@@ -225,15 +190,12 @@ export const panelistFields: INodeProperties[] = [
|
||||
},
|
||||
required: true,
|
||||
default: [],
|
||||
description: 'Key of the webinar to reinvite the panelist to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
|
||||
description:
|
||||
'Key of the webinar to reinvite the panelist to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'panelist',
|
||||
],
|
||||
operation: [
|
||||
'reinvite',
|
||||
],
|
||||
resource: ['panelist'],
|
||||
operation: ['reinvite'],
|
||||
},
|
||||
},
|
||||
},
|
||||
@@ -246,12 +208,8 @@ export const panelistFields: INodeProperties[] = [
|
||||
description: 'Key of the panelist to reinvite',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'panelist',
|
||||
],
|
||||
operation: [
|
||||
'reinvite',
|
||||
],
|
||||
resource: ['panelist'],
|
||||
operation: ['reinvite'],
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user