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 userGroupOperations: INodeProperties[] = [
{
@@ -10,9 +8,7 @@ export const userGroupOperations: INodeProperties[] = [
noDataExpression: true,
displayOptions: {
show: {
resource: [
'userGroup',
],
resource: ['userGroup'],
},
},
options: [
@@ -27,7 +23,6 @@ export const userGroupOperations: INodeProperties[] = [
];
export const userGroupFields: INodeProperties[] = [
/* -------------------------------------------------------------------------- */
/* userGroup:getAll */
/* -------------------------------------------------------------------------- */
@@ -37,12 +32,8 @@ export const userGroupFields: INodeProperties[] = [
type: 'boolean',
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'userGroup',
],
operation: ['getAll'],
resource: ['userGroup'],
},
},
default: false,
@@ -54,15 +45,9 @@ export const userGroupFields: INodeProperties[] = [
type: 'number',
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'userGroup',
],
returnAll: [
false,
],
operation: ['getAll'],
resource: ['userGroup'],
returnAll: [false],
},
},
typeOptions: {
@@ -79,12 +64,8 @@ export const userGroupFields: INodeProperties[] = [
placeholder: 'Add Field',
displayOptions: {
show: {
resource: [
'userGroup',
],
operation: [
'getAll',
],
resource: ['userGroup'],
operation: ['getAll'],
},
},
default: {},
@@ -104,7 +85,8 @@ export const userGroupFields: INodeProperties[] = [
loadOptionsMethod: 'getColumns',
},
default: [],
description: 'A list of fields to return. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
description:
'A list of fields to return. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
hint: 'String of comma separated values or an array of strings can be set in an expression',
},
{
@@ -112,7 +94,8 @@ export const userGroupFields: INodeProperties[] = [
name: 'sysparm_query',
type: 'string',
default: '',
description: 'An encoded query string used to filter the results. <a href="https://developer.servicenow.com/dev.do#!/learn/learning-plans/quebec/servicenow_application_developer/app_store_learnv2_rest_quebec_more_about_query_parameters">More info</a>.',
description:
'An encoded query string used to filter the results. <a href="https://developer.servicenow.com/dev.do#!/learn/learning-plans/quebec/servicenow_application_developer/app_store_learnv2_rest_quebec_more_about_query_parameters">More info</a>.',
},
{
displayName: 'Return Values',