n8n-3867-progressively-apply-prettier-to-all (#3873)

* 🔨 formatting nodes with prettier
This commit is contained in:
Michael Kret
2022-08-17 18:50:24 +03:00
committed by GitHub
parent f2d326c7f0
commit 91d7e16c81
1072 changed files with 42357 additions and 59109 deletions

View File

@@ -1,6 +1,4 @@
import {
INodeProperties,
} from 'n8n-workflow';
import { INodeProperties } from 'n8n-workflow';
export const groupDescription: INodeProperties[] = [
// ----------------------------------
@@ -13,9 +11,7 @@ export const groupDescription: INodeProperties[] = [
noDataExpression: true,
displayOptions: {
show: {
resource: [
'group',
],
resource: ['group'],
},
},
options: [
@@ -64,12 +60,8 @@ export const groupDescription: INodeProperties[] = [
required: true,
displayOptions: {
show: {
operation: [
'create',
],
resource: [
'group',
],
operation: ['create'],
resource: ['group'],
},
},
},
@@ -77,17 +69,14 @@ export const groupDescription: INodeProperties[] = [
displayName: 'Group ID',
name: 'id',
type: 'string',
description: 'Group to update. Specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
description:
'Group to update. Specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
default: '',
required: true,
displayOptions: {
show: {
resource: [
'group',
],
operation: [
'update',
],
resource: ['group'],
operation: ['update'],
},
},
},
@@ -95,17 +84,14 @@ export const groupDescription: INodeProperties[] = [
displayName: 'Group ID',
name: 'id',
type: 'string',
description: 'Group to delete. Specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
description:
'Group to delete. Specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
default: '',
required: true,
displayOptions: {
show: {
resource: [
'group',
],
operation: [
'delete',
],
resource: ['group'],
operation: ['delete'],
},
},
},
@@ -113,17 +99,14 @@ export const groupDescription: INodeProperties[] = [
displayName: 'Group ID',
name: 'id',
type: 'string',
description: 'Group to retrieve. Specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
description:
'Group to retrieve. Specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
default: '',
required: true,
displayOptions: {
show: {
resource: [
'group',
],
operation: [
'get',
],
resource: ['group'],
operation: ['get'],
},
},
},
@@ -134,12 +117,8 @@ export const groupDescription: INodeProperties[] = [
type: 'collection',
displayOptions: {
show: {
resource: [
'group',
],
operation: [
'create',
],
resource: ['group'],
operation: ['create'],
},
},
default: {},
@@ -173,7 +152,8 @@ export const groupDescription: INodeProperties[] = [
loadOptionsMethod: 'loadGroupCustomFields',
},
default: '',
description: 'Name of the custom field to set. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
description:
'Name of the custom field to set. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
},
{
displayName: 'Field Value',
@@ -203,12 +183,8 @@ export const groupDescription: INodeProperties[] = [
type: 'collection',
displayOptions: {
show: {
operation: [
'update',
],
resource: [
'group',
],
operation: ['update'],
resource: ['group'],
},
},
default: {},
@@ -242,7 +218,8 @@ export const groupDescription: INodeProperties[] = [
loadOptionsMethod: 'loadGroupCustomFields',
},
default: '',
description: 'Name of the custom field to set. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
description:
'Name of the custom field to set. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
},
{
displayName: 'Field Value',
@@ -280,12 +257,8 @@ export const groupDescription: INodeProperties[] = [
description: 'Whether to return all results or only up to a given limit',
displayOptions: {
show: {
resource: [
'group',
],
operation: [
'getAll',
],
resource: ['group'],
operation: ['getAll'],
},
},
},
@@ -300,15 +273,9 @@ export const groupDescription: INodeProperties[] = [
},
displayOptions: {
show: {
resource: [
'group',
],
operation: [
'getAll',
],
returnAll: [
false,
],
resource: ['group'],
operation: ['getAll'],
returnAll: [false],
},
},
},