mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
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 configurationItemsOperations: INodeProperties[] = [
|
||||
{
|
||||
@@ -10,9 +8,7 @@ export const configurationItemsOperations: INodeProperties[] = [
|
||||
noDataExpression: true,
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'configurationItems',
|
||||
],
|
||||
resource: ['configurationItems'],
|
||||
},
|
||||
},
|
||||
options: [
|
||||
@@ -27,7 +23,6 @@ export const configurationItemsOperations: INodeProperties[] = [
|
||||
];
|
||||
|
||||
export const configurationItemsFields: INodeProperties[] = [
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* configurationItems:getAll */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
@@ -37,12 +32,8 @@ export const configurationItemsFields: INodeProperties[] = [
|
||||
type: 'boolean',
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: [
|
||||
'getAll',
|
||||
],
|
||||
resource: [
|
||||
'configurationItems',
|
||||
],
|
||||
operation: ['getAll'],
|
||||
resource: ['configurationItems'],
|
||||
},
|
||||
},
|
||||
default: false,
|
||||
@@ -54,15 +45,9 @@ export const configurationItemsFields: INodeProperties[] = [
|
||||
type: 'number',
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: [
|
||||
'getAll',
|
||||
],
|
||||
resource: [
|
||||
'configurationItems',
|
||||
],
|
||||
returnAll: [
|
||||
false,
|
||||
],
|
||||
operation: ['getAll'],
|
||||
resource: ['configurationItems'],
|
||||
returnAll: [false],
|
||||
},
|
||||
},
|
||||
typeOptions: {
|
||||
@@ -79,12 +64,8 @@ export const configurationItemsFields: INodeProperties[] = [
|
||||
placeholder: 'Add Field',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'configurationItems',
|
||||
],
|
||||
operation: [
|
||||
'getAll',
|
||||
],
|
||||
resource: ['configurationItems'],
|
||||
operation: ['getAll'],
|
||||
},
|
||||
},
|
||||
default: {},
|
||||
@@ -105,7 +86,8 @@ export const configurationItemsFields: 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',
|
||||
},
|
||||
{
|
||||
@@ -113,7 +95,8 @@ export const configurationItemsFields: 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',
|
||||
|
||||
Reference in New Issue
Block a user