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 purchaseOperations: INodeProperties[] = [
{
@@ -23,9 +21,7 @@ export const purchaseOperations: INodeProperties[] = [
],
displayOptions: {
show: {
resource: [
'purchase',
],
resource: ['purchase'],
},
},
},
@@ -44,12 +40,8 @@ export const purchaseFields: INodeProperties[] = [
description: 'The ID of the purchase to retrieve',
displayOptions: {
show: {
resource: [
'purchase',
],
operation: [
'get',
],
resource: ['purchase'],
operation: ['get'],
},
},
},
@@ -65,12 +57,8 @@ export const purchaseFields: INodeProperties[] = [
description: 'Whether to return all results or only up to a given limit',
displayOptions: {
show: {
resource: [
'purchase',
],
operation: [
'getAll',
],
resource: ['purchase'],
operation: ['getAll'],
},
},
},
@@ -86,15 +74,9 @@ export const purchaseFields: INodeProperties[] = [
},
displayOptions: {
show: {
resource: [
'purchase',
],
operation: [
'getAll',
],
returnAll: [
false,
],
resource: ['purchase'],
operation: ['getAll'],
returnAll: [false],
},
},
},
@@ -110,8 +92,9 @@ export const purchaseFields: INodeProperties[] = [
name: 'query',
type: 'string',
default: '',
placeholder: 'WHERE Metadata.LastUpdatedTime > \'2021-01-01\'',
description: 'The condition for selecting purchases. 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 purchases. 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,
},
@@ -119,12 +102,8 @@ export const purchaseFields: INodeProperties[] = [
],
displayOptions: {
show: {
resource: [
'purchase',
],
operation: [
'getAll',
],
resource: ['purchase'],
operation: ['getAll'],
},
},
},