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,10 +1,6 @@
import {
INodeProperties,
} from 'n8n-workflow';
import { INodeProperties } from 'n8n-workflow';
import {
billAdditionalFieldsOptions,
} from './BillAdditionalFieldsOptions';
import { billAdditionalFieldsOptions } from './BillAdditionalFieldsOptions';
export const billOperations: INodeProperties[] = [
{
@@ -42,9 +38,7 @@ export const billOperations: INodeProperties[] = [
],
displayOptions: {
show: {
resource: [
'bill',
],
resource: ['bill'],
},
},
},
@@ -59,19 +53,16 @@ export const billFields: INodeProperties[] = [
name: 'VendorRef',
type: 'options',
required: true,
description: 'The ID of the vendor who the bill is for. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
description:
'The ID of the vendor who the bill is for. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
default: [],
typeOptions: {
loadOptionsMethod: 'getVendors',
},
displayOptions: {
show: {
resource: [
'bill',
],
operation: [
'create',
],
resource: ['bill'],
operation: ['create'],
},
},
},
@@ -87,12 +78,8 @@ export const billFields: INodeProperties[] = [
default: {},
displayOptions: {
show: {
resource: [
'bill',
],
operation: [
'create',
],
resource: ['bill'],
operation: ['create'],
},
},
options: [
@@ -139,7 +126,8 @@ export const billFields: INodeProperties[] = [
displayName: 'Item Name or ID',
name: 'itemId',
type: 'options',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
default: [],
typeOptions: {
loadOptionsMethod: 'getItems',
@@ -162,12 +150,8 @@ export const billFields: INodeProperties[] = [
default: {},
displayOptions: {
show: {
resource: [
'bill',
],
operation: [
'create',
],
resource: ['bill'],
operation: ['create'],
},
},
options: billAdditionalFieldsOptions,
@@ -185,12 +169,8 @@ export const billFields: INodeProperties[] = [
description: 'The ID of the bill to delete',
displayOptions: {
show: {
resource: [
'bill',
],
operation: [
'delete',
],
resource: ['bill'],
operation: ['delete'],
},
},
},
@@ -207,12 +187,8 @@ export const billFields: INodeProperties[] = [
description: 'The ID of the bill to retrieve',
displayOptions: {
show: {
resource: [
'bill',
],
operation: [
'get',
],
resource: ['bill'],
operation: ['get'],
},
},
},
@@ -228,12 +204,8 @@ export const billFields: INodeProperties[] = [
description: 'Whether to return all results or only up to a given limit',
displayOptions: {
show: {
resource: [
'bill',
],
operation: [
'getAll',
],
resource: ['bill'],
operation: ['getAll'],
},
},
},
@@ -249,15 +221,9 @@ export const billFields: INodeProperties[] = [
},
displayOptions: {
show: {
resource: [
'bill',
],
operation: [
'getAll',
],
returnAll: [
false,
],
resource: ['bill'],
operation: ['getAll'],
returnAll: [false],
},
},
},
@@ -273,8 +239,9 @@ export const billFields: INodeProperties[] = [
name: 'query',
type: 'string',
default: '',
placeholder: 'WHERE Metadata.LastUpdatedTime > \'2021-01-01\'',
description: 'The condition for selecting bills. See the <a href="https://developer.intuit.com/app/developer/qbo/docs/develop/explore-the-quickbooks-online-api/data-queries">guide</a> for supported syntax.',
placeholder: "WHERE Metadata.LastUpdatedTime > '2021-01-01'",
description:
'The condition for selecting bills. See the <a href="https://developer.intuit.com/app/developer/qbo/docs/develop/explore-the-quickbooks-online-api/data-queries">guide</a> for supported syntax.',
typeOptions: {
alwaysOpenEditWindow: true,
},
@@ -282,12 +249,8 @@ export const billFields: INodeProperties[] = [
],
displayOptions: {
show: {
resource: [
'bill',
],
operation: [
'getAll',
],
resource: ['bill'],
operation: ['getAll'],
},
},
},
@@ -304,12 +267,8 @@ export const billFields: INodeProperties[] = [
description: 'The ID of the bill to update',
displayOptions: {
show: {
resource: [
'bill',
],
operation: [
'update',
],
resource: ['bill'],
operation: ['update'],
},
},
},
@@ -322,15 +281,13 @@ export const billFields: INodeProperties[] = [
required: true,
displayOptions: {
show: {
resource: [
'bill',
],
operation: [
'update',
],
resource: ['bill'],
operation: ['update'],
},
},
// filter out fields that cannot be updated
options: billAdditionalFieldsOptions.filter(property => property.name !== 'TotalAmt' && property.name !== 'Balance'),
options: billAdditionalFieldsOptions.filter(
(property) => property.name !== 'TotalAmt' && property.name !== 'Balance',
),
},
];