refactor: Deprecate alwaysOpenEditWindow for string (#4839)

* 🔥 Remove from client

* 📘 Update interface comment

* ✏️ Update docs

*  Update nodes

* ✏️ Fix typo

*  Restore misremoved property

* 🔥 Remove more instances
This commit is contained in:
Iván Ovejero 2022-12-07 15:29:45 +01:00 committed by GitHub
parent 7e1a13f9b2
commit fbb8611ae2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
140 changed files with 3 additions and 761 deletions

View file

@ -891,7 +891,7 @@ export default mixins(
return; return;
} }
if (['json', 'string'].includes(this.parameter.type) && this.getArgument('alwaysOpenEditWindow')) { if (['json'].includes(this.parameter.type) && this.getArgument('alwaysOpenEditWindow')) {
this.displayEditDialog(); this.displayEditDialog();
return; return;
} }

View file

@ -207,7 +207,7 @@ The following properties can be set in the node property options.
All properties are optional. However, most only work when the node-property is of a specfic type. All properties are optional. However, most only work when the node-property is of a specfic type.
- **alwaysOpenEditWindow** [type: string]: If set then the "Editor Window" will always open when the user tries to edit the field. Helpful if long text is typically used in the property. - **alwaysOpenEditWindow** [type: json]: If set then the "Editor Window" will always open when the user tries to edit the field. Helpful if long text is typically used in the property.
- **loadOptionsMethod** [type: options]: Method to use to load options from an external service - **loadOptionsMethod** [type: options]: Method to use to load options from an external service
- **maxValue** [type: number]: Maximum value of the number - **maxValue** [type: number]: Maximum value of the number
- **minValue** [type: number]: Minimum value of the number - **minValue** [type: number]: Minimum value of the number

View file

@ -59,7 +59,6 @@ export class MySql implements ICredentialType {
displayName: 'CA Certificate', displayName: 'CA Certificate',
name: 'caCertificate', name: 'caCertificate',
typeOptions: { typeOptions: {
alwaysOpenEditWindow: true,
password: true, password: true,
}, },
displayOptions: { displayOptions: {
@ -74,7 +73,6 @@ export class MySql implements ICredentialType {
displayName: 'Client Private Key', displayName: 'Client Private Key',
name: 'clientPrivateKey', name: 'clientPrivateKey',
typeOptions: { typeOptions: {
alwaysOpenEditWindow: true,
password: true, password: true,
}, },
displayOptions: { displayOptions: {
@ -89,7 +87,6 @@ export class MySql implements ICredentialType {
displayName: 'Client Certificate', displayName: 'Client Certificate',
name: 'clientCertificate', name: 'clientCertificate',
typeOptions: { typeOptions: {
alwaysOpenEditWindow: true,
password: true, password: true,
}, },
displayOptions: { displayOptions: {

View file

@ -42,9 +42,6 @@ export class Sftp implements ICredentialType {
displayName: 'Private Key', displayName: 'Private Key',
name: 'privateKey', name: 'privateKey',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: description:
'String that contains a private key for either key-based or hostbased user authentication (OpenSSH format)', 'String that contains a private key for either key-based or hostbased user authentication (OpenSSH format)',

View file

@ -37,9 +37,6 @@ export class WiseApi implements ICredentialType {
default: '', default: '',
description: description:
'Optional private key used for Strong Customer Authentication (SCA). Only needed to retrieve statements, and execute transfers.', 'Optional private key used for Strong Customer Authentication (SCA). Only needed to retrieve statements, and execute transfers.',
typeOptions: {
alwaysOpenEditWindow: true,
},
}, },
]; ];
} }

View file

@ -266,9 +266,6 @@ export const companyFields: INodeProperties[] = [
displayName: 'Filters (JSON)', displayName: 'Filters (JSON)',
name: 'filterJson', name: 'filterJson',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
resource: ['company'], resource: ['company'],

View file

@ -266,9 +266,6 @@ export const contactFields: INodeProperties[] = [
displayName: 'Filters (JSON)', displayName: 'Filters (JSON)',
name: 'filterJson', name: 'filterJson',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
resource: ['contact'], resource: ['contact'],

View file

@ -258,7 +258,6 @@ export class Asana implements INodeType {
name: 'notes', name: 'notes',
type: 'string', type: 'string',
typeOptions: { typeOptions: {
alwaysOpenEditWindow: true,
rows: 5, rows: 5,
}, },
default: '', default: '',
@ -742,7 +741,6 @@ export class Asana implements INodeType {
name: 'text', name: 'text',
type: 'string', type: 'string',
typeOptions: { typeOptions: {
alwaysOpenEditWindow: true,
rows: 5, rows: 5,
}, },
default: '', default: '',
@ -841,7 +839,6 @@ export class Asana implements INodeType {
name: 'notes', name: 'notes',
type: 'string', type: 'string',
typeOptions: { typeOptions: {
alwaysOpenEditWindow: true,
rows: 5, rows: 5,
}, },
default: '', default: '',
@ -929,9 +926,6 @@ export class Asana implements INodeType {
type: 'string', type: 'string',
default: '', default: '',
required: true, required: true,
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
operation: ['add'], operation: ['add'],
@ -947,9 +941,6 @@ export class Asana implements INodeType {
type: 'string', type: 'string',
default: '', default: '',
required: true, required: true,
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
operation: ['add'], operation: ['add'],

View file

@ -114,9 +114,6 @@ export class AwsLambda implements INodeType {
}, },
default: '', default: '',
description: 'The JSON that you want to provide to your Lambda function as input', description: 'The JSON that you want to provide to your Lambda function as input',
typeOptions: {
alwaysOpenEditWindow: true,
},
}, },
], ],
}; };

View file

@ -184,9 +184,6 @@ export class AwsSns implements INodeType {
}, },
}, },
required: true, required: true,
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: 'The message you want to send', description: 'The message you want to send',
}, },

View file

@ -133,9 +133,6 @@ export class AwsComprehend implements INodeType {
displayName: 'Text', displayName: 'Text',
name: 'text', name: 'text',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
displayOptions: { displayOptions: {
show: { show: {
@ -175,9 +172,6 @@ export class AwsComprehend implements INodeType {
displayName: 'Endpoint Arn', displayName: 'Endpoint Arn',
name: 'endpointArn', name: 'endpointArn',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: description:
'The Amazon Resource Name of an endpoint that is associated with a custom entity recognition model', 'The Amazon Resource Name of an endpoint that is associated with a custom entity recognition model',

View file

@ -143,9 +143,6 @@ export class AwsSes implements INodeType {
displayName: 'Template Content', displayName: 'Template Content',
name: 'templateContent', name: 'templateContent',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
resource: ['customVerificationEmail'], resource: ['customVerificationEmail'],
@ -307,9 +304,6 @@ export class AwsSes implements INodeType {
displayName: 'Template Content', displayName: 'Template Content',
name: 'templateContent', name: 'templateContent',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
description: description:
'The content of the custom verification email. The total size of the email must be less than 10 MB. The message body may contain HTML', 'The content of the custom verification email. The total size of the email must be less than 10 MB. The message body may contain HTML',
default: '', default: '',
@ -407,9 +401,6 @@ export class AwsSes implements INodeType {
displayName: 'Body', displayName: 'Body',
name: 'body', name: 'body',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
resource: ['email'], resource: ['email'],

View file

@ -108,9 +108,6 @@ export class AwsSqs implements INodeType {
}, },
}, },
required: true, required: true,
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: 'Message to send to the queue', description: 'Message to send to the queue',
}, },

View file

@ -95,7 +95,6 @@ export class CalTrigger implements INodeType {
description: 'Template to customize the webhook payload', description: 'Template to customize the webhook payload',
default: '', default: '',
typeOptions: { typeOptions: {
alwaysOpenEditWindow: true,
rows: 4, rows: 4,
}, },
}, },

View file

@ -105,9 +105,6 @@ export const goalFields: INodeProperties[] = [
displayName: 'Description', displayName: 'Description',
name: 'description', name: 'description',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {
@ -249,9 +246,6 @@ export const goalFields: INodeProperties[] = [
displayName: 'Description', displayName: 'Description',
name: 'description', name: 'description',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {

View file

@ -218,9 +218,6 @@ export const goalKeyResultFields: INodeProperties[] = [
displayName: 'Note', displayName: 'Note',
name: 'note', name: 'note',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {

View file

@ -169,9 +169,6 @@ export const listFields: INodeProperties[] = [
displayName: 'Content', displayName: 'Content',
name: 'content', name: 'content',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {
@ -776,9 +773,6 @@ export const listFields: INodeProperties[] = [
displayName: 'Content', displayName: 'Content',
name: 'content', name: 'content',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {

View file

@ -228,9 +228,6 @@ export const taskFields: INodeProperties[] = [
displayName: 'Content', displayName: 'Content',
name: 'content', name: 'content',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {
@ -360,9 +357,6 @@ export const taskFields: INodeProperties[] = [
displayName: 'Content', displayName: 'Content',
name: 'content', name: 'content',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {

View file

@ -119,9 +119,6 @@ export const timeEntryFields: INodeProperties[] = [
displayName: 'Description', displayName: 'Description',
name: 'description', name: 'description',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {
@ -304,9 +301,6 @@ export const timeEntryFields: INodeProperties[] = [
displayName: 'Description', displayName: 'Description',
name: 'description', name: 'description',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {

View file

@ -105,9 +105,6 @@ export const collectionFields: INodeProperties[] = [
name: 'fields', name: 'fields',
type: 'string', type: 'string',
default: '', default: '',
typeOptions: {
alwaysOpenEditWindow: true,
},
placeholder: '_id,name', placeholder: '_id,name',
description: 'Comma-separated list of fields to get', description: 'Comma-separated list of fields to get',
}, },

View file

@ -323,9 +323,6 @@ export const tableFields: INodeProperties[] = [
displayName: 'Query', displayName: 'Query',
name: 'query', name: 'query',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: description:
'Query used to filter returned rows, specified as <column_id_or_name>:<value>. If you\'d like to use a column name instead of an ID, you must quote it (e.g., "My Column":123). Also note that value is a JSON value; if you\'d like to use a string, you must surround it in quotes (e.g., "groceries").', 'Query used to filter returned rows, specified as <column_id_or_name>:<value>. If you\'d like to use a column name instead of an ID, you must quote it (e.g., "My Column":123). Also note that value is a JSON value; if you\'d like to use a string, you must surround it in quotes (e.g., "groceries").',

View file

@ -234,9 +234,6 @@ export const viewFields: INodeProperties[] = [
displayName: 'Query', displayName: 'Query',
name: 'query', name: 'query',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: description:
'Query used to filter returned rows, specified as <column_id_or_name>:<value>. If you\'d like to use a column name instead of an ID, you must quote it (e.g., "My Column":123). Also note that value is a JSON value; if you\'d like to use a string, you must surround it in quotes (e.g., "groceries").', 'Query used to filter returned rows, specified as <column_id_or_name>:<value>. If you\'d like to use a column name instead of an ID, you must quote it (e.g., "My Column":123). Also note that value is a JSON value; if you\'d like to use a string, you must surround it in quotes (e.g., "groceries").',

View file

@ -73,9 +73,6 @@ export class CrateDb implements INodeType {
displayName: 'Query', displayName: 'Query',
name: 'query', name: 'query',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
operation: ['executeQuery'], operation: ['executeQuery'],

View file

@ -339,9 +339,6 @@ export class Crypto implements INodeType {
}, },
}, },
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
description: 'Private key to use when signing the string', description: 'Private key to use when signing the string',
default: '', default: '',
required: true, required: true,

View file

@ -8,9 +8,6 @@ export const textOperations: INodeProperties[] = [
default: '', default: '',
description: 'Input text to translate', description: 'Input text to translate',
required: true, required: true,
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
operation: ['translate'], operation: ['translate'],

View file

@ -28,9 +28,6 @@ export class Discord implements INodeType {
displayName: 'Webhook URL', displayName: 'Webhook URL',
name: 'webhookUri', name: 'webhookUri',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
required: true, required: true,
default: '', default: '',
placeholder: 'https://discord.com/api/webhooks/ID/TOKEN', placeholder: 'https://discord.com/api/webhooks/ID/TOKEN',
@ -41,7 +38,6 @@ export class Discord implements INodeType {
type: 'string', type: 'string',
typeOptions: { typeOptions: {
maxValue: 2000, maxValue: 2000,
alwaysOpenEditWindow: true,
}, },
default: '', default: '',
placeholder: 'Hello World!', placeholder: 'Hello World!',

View file

@ -65,9 +65,6 @@ export const postFields: INodeProperties[] = [
name: 'content', name: 'content',
type: 'string', type: 'string',
required: true, required: true,
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
resource: ['post'], resource: ['post'],
@ -191,9 +188,6 @@ export const postFields: INodeProperties[] = [
displayName: 'Content', displayName: 'Content',
name: 'content', name: 'content',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
required: true, required: true,
displayOptions: { displayOptions: {
show: { show: {

View file

@ -73,7 +73,6 @@ export class EmailSend implements INodeType {
name: 'text', name: 'text',
type: 'string', type: 'string',
typeOptions: { typeOptions: {
alwaysOpenEditWindow: true,
rows: 5, rows: 5,
}, },
default: '', default: '',

View file

@ -99,7 +99,6 @@ export class ExecuteWorkflow implements INodeType {
name: 'workflowJson', name: 'workflowJson',
type: 'string', type: 'string',
typeOptions: { typeOptions: {
alwaysOpenEditWindow: true,
editor: 'json', editor: 'json',
rows: 10, rows: 10,
}, },

View file

@ -135,9 +135,6 @@ export const taskFields: INodeProperties[] = [
displayName: 'Note Content', displayName: 'Note Content',
name: 'noteContent', name: 'noteContent',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: "Provide the content for the task's note", description: "Provide the content for the task's note",
}, },
@ -315,9 +312,6 @@ export const taskFields: INodeProperties[] = [
displayName: 'Note Content', displayName: 'Note Content',
name: 'noteContent', name: 'noteContent',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: "Provide the content for the task's note", description: "Provide the content for the task's note",
}, },

View file

@ -394,7 +394,6 @@ export class Freshdesk implements INodeType {
default: '', default: '',
typeOptions: { typeOptions: {
rows: 5, rows: 5,
alwaysOpenEditWindow: true,
}, },
description: 'HTML content of the ticket', description: 'HTML content of the ticket',
}, },

View file

@ -122,9 +122,6 @@ export const postFields: INodeProperties[] = [
displayName: 'Content', displayName: 'Content',
name: 'content', name: 'content',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
source: ['adminApi'], source: ['adminApi'],
@ -695,9 +692,6 @@ export const postFields: INodeProperties[] = [
'/contentFormat': ['html'], '/contentFormat': ['html'],
}, },
}, },
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {

View file

@ -1449,9 +1449,6 @@ export class Github implements INodeType {
displayName: 'Body', displayName: 'Body',
name: 'body', name: 'body',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
operation: ['create'], operation: ['create'],
@ -1491,9 +1488,6 @@ export class Github implements INodeType {
displayName: 'Body', displayName: 'Body',
name: 'body', name: 'body',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
operation: ['update'], operation: ['update'],

View file

@ -115,9 +115,6 @@ export const webinarFields: INodeProperties[] = [
name: 'description', name: 'description',
type: 'string', type: 'string',
default: '', default: '',
typeOptions: {
alwaysOpenEditWindow: true,
},
}, },
{ {
displayName: 'Experience Type', displayName: 'Experience Type',
@ -378,9 +375,6 @@ export const webinarFields: INodeProperties[] = [
name: 'description', name: 'description',
type: 'string', type: 'string',
default: '', default: '',
typeOptions: {
alwaysOpenEditWindow: true,
},
}, },
{ {
displayName: 'Experience Type', displayName: 'Experience Type',
@ -453,9 +447,6 @@ export const webinarFields: INodeProperties[] = [
type: 'string', type: 'string',
default: '', default: '',
description: 'Name or topic of the webinar', description: 'Name or topic of the webinar',
typeOptions: {
alwaysOpenEditWindow: true,
},
}, },
{ {
displayName: 'Timezone Name or ID', displayName: 'Timezone Name or ID',

View file

@ -230,9 +230,6 @@ export const eventFields: INodeProperties[] = [
displayName: 'Description', displayName: 'Description',
name: 'description', name: 'description',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {
@ -859,9 +856,6 @@ export const eventFields: INodeProperties[] = [
displayName: 'Description', displayName: 'Description',
name: 'description', name: 'description',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {

View file

@ -364,9 +364,6 @@ export const contactFields: INodeProperties[] = [
displayName: 'Notes', displayName: 'Notes',
name: 'biographies', name: 'biographies',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {
@ -1377,9 +1374,6 @@ export const contactFields: INodeProperties[] = [
displayName: 'Notes', displayName: 'Notes',
name: 'biographies', name: 'biographies',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {

View file

@ -613,9 +613,6 @@ export const documentFields: INodeProperties[] = [
}, },
description: 'JSON query to execute', description: 'JSON query to execute',
required: true, required: true,
typeOptions: {
alwaysOpenEditWindow: true,
},
placeholder: placeholder:
'{"structuredQuery": {"where": {"fieldFilter": {"field": {"fieldPath": "age"},"op": "EQUAL", "value": {"integerValue": 28}}}, "from": [{"collectionId": "users-collection"}]}}', '{"structuredQuery": {"where": {"fieldFilter": {"field": {"fieldPath": "age"},"op": "EQUAL", "value": {"integerValue": 28}}}, "from": [{"collectionId": "users-collection"}]}}',
}, },

View file

@ -115,9 +115,6 @@ export class GmailTrigger implements INodeType {
displayName: 'Search', displayName: 'Search',
name: 'q', name: 'q',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
placeholder: 'has:attachment', placeholder: 'has:attachment',
hint: 'Use the same format as in the Gmail search box. <a href="https://support.google.com/mail/answer/7190?hl=en">More info</a>.', hint: 'Use the same format as in the Gmail search box. <a href="https://support.google.com/mail/answer/7190?hl=en">More info</a>.',

View file

@ -427,9 +427,6 @@ export const messageFields: INodeProperties[] = [
displayName: 'Query', displayName: 'Query',
name: 'q', name: 'q',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: description:
'Only return messages matching the specified query. Supports the same query format as the Gmail search box. For example, "from:someuser@example.com rfc822msgid:&lt;somemsgid@example.com&gt; is:unread". Parameter cannot be used when accessing the api using the gmail.metadata scope.', 'Only return messages matching the specified query. Supports the same query format as the Gmail search box. For example, "from:someuser@example.com rfc822msgid:&lt;somemsgid@example.com&gt; is:unread". Parameter cannot be used when accessing the api using the gmail.metadata scope.',

View file

@ -429,9 +429,6 @@ export const taskFields: INodeProperties[] = [
displayName: 'Notes', displayName: 'Notes',
name: 'notes', name: 'notes',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: 'Additional Notes', description: 'Additional Notes',
}, },

View file

@ -397,9 +397,6 @@ export const channelFields: INodeProperties[] = [
displayName: 'Keywords', displayName: 'Keywords',
name: 'keywords', name: 'keywords',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
placeholder: 'tech,news', placeholder: 'tech,news',
description: description:
'Keywords associated with your channel. The value is a space-separated list of strings.', 'Keywords associated with your channel. The value is a space-separated list of strings.',

View file

@ -98,9 +98,6 @@ export const clientFields: INodeProperties[] = [
displayName: 'Notes', displayName: 'Notes',
name: 'notes', name: 'notes',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {
@ -323,9 +320,6 @@ export const clientFields: INodeProperties[] = [
displayName: 'Notes', displayName: 'Notes',
name: 'notes', name: 'notes',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {

View file

@ -134,9 +134,6 @@ export const siteFields: INodeProperties[] = [
displayName: 'Notes', displayName: 'Notes',
name: 'notes', name: 'notes',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {
@ -306,9 +303,6 @@ export const siteFields: INodeProperties[] = [
displayName: 'Notes', displayName: 'Notes',
name: 'notes', name: 'notes',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {

View file

@ -106,9 +106,6 @@ export const userFields: INodeProperties[] = [
displayName: 'Notes', displayName: 'Notes',
name: 'notes', name: 'notes',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {
@ -287,9 +284,6 @@ export const userFields: INodeProperties[] = [
displayName: 'Notes', displayName: 'Notes',
name: 'notes', name: 'notes',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {

View file

@ -96,9 +96,6 @@ export const conversationFields: INodeProperties[] = [
name: 'subject', name: 'subject',
type: 'string', type: 'string',
required: true, required: true,
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
operation: ['create'], operation: ['create'],
@ -284,9 +281,6 @@ export const conversationFields: INodeProperties[] = [
displayName: 'Text', displayName: 'Text',
name: 'text', name: 'text',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: 'The message text', description: 'The message text',
}, },
@ -471,9 +465,6 @@ export const conversationFields: INodeProperties[] = [
displayName: 'Query', displayName: 'Query',
name: 'query', name: 'query',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: description:
'Advanced search <a href="https://developer.helpscout.com/mailbox-api/endpoints/conversations/list/#query">Examples</a>', 'Advanced search <a href="https://developer.helpscout.com/mailbox-api/endpoints/conversations/list/#query">Examples</a>',

View file

@ -143,9 +143,6 @@ export const customerFields: INodeProperties[] = [
displayName: 'Notes', displayName: 'Notes',
name: 'background', name: 'background',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {
@ -651,9 +648,6 @@ export const customerFields: INodeProperties[] = [
displayName: 'Query', displayName: 'Query',
name: 'query', name: 'query',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: description:
'Advanced search <a href="https://developer.helpscout.com/mailbox-api/endpoints/customers/list/#query">Examples</a>', 'Advanced search <a href="https://developer.helpscout.com/mailbox-api/endpoints/customers/list/#query">Examples</a>',
@ -768,9 +762,6 @@ export const customerFields: INodeProperties[] = [
displayName: 'Notes', displayName: 'Notes',
name: 'background', name: 'background',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {

View file

@ -86,9 +86,6 @@ export const threadFields: INodeProperties[] = [
name: 'text', name: 'text',
type: 'string', type: 'string',
default: '', default: '',
typeOptions: {
alwaysOpenEditWindow: true,
},
required: true, required: true,
displayOptions: { displayOptions: {
show: { show: {

View file

@ -99,9 +99,6 @@ export const companyFields: INodeProperties[] = [
displayName: 'About Us', displayName: 'About Us',
name: 'aboutUs', name: 'aboutUs',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {
@ -362,9 +359,6 @@ export const companyFields: INodeProperties[] = [
displayName: 'Twitter Bio', displayName: 'Twitter Bio',
name: 'twitterBio', name: 'twitterBio',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: 'The Twitter bio of the company or organization', description: 'The Twitter bio of the company or organization',
}, },
@ -459,9 +453,6 @@ export const companyFields: INodeProperties[] = [
displayName: 'About Us', displayName: 'About Us',
name: 'aboutUs', name: 'aboutUs',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {
@ -728,9 +719,6 @@ export const companyFields: INodeProperties[] = [
displayName: 'Twitter Bio', displayName: 'Twitter Bio',
name: 'twitterBio', name: 'twitterBio',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: 'The Twitter bio of the company or organization', description: 'The Twitter bio of the company or organization',
}, },

View file

@ -336,9 +336,6 @@ export const contactFields: INodeProperties[] = [
displayName: 'Membership Note', displayName: 'Membership Note',
name: 'membershipNote', name: 'membershipNote',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: "The notes relating to the contact's content membership", description: "The notes relating to the contact's content membership",
}, },
@ -346,9 +343,6 @@ export const contactFields: INodeProperties[] = [
displayName: 'Message', displayName: 'Message',
name: 'message', name: 'message',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: description:
'A default property to be used for any message or comments a contact may want to leave on a form', 'A default property to be used for any message or comments a contact may want to leave on a form',

View file

@ -166,9 +166,6 @@ export const ticketFields: INodeProperties[] = [
displayName: 'Description', displayName: 'Description',
name: 'description', name: 'description',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: 'Description of the ticket', description: 'Description of the ticket',
}, },
@ -299,9 +296,6 @@ export const ticketFields: INodeProperties[] = [
displayName: 'Description', displayName: 'Description',
name: 'description', name: 'description',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: 'Description of the ticket', description: 'Description of the ticket',
}, },

View file

@ -74,9 +74,6 @@ export const clientFields: INodeProperties[] = [
displayName: 'Private Notes', displayName: 'Private Notes',
name: 'privateNotes', name: 'privateNotes',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {

View file

@ -256,18 +256,12 @@ export const expenseFields: INodeProperties[] = [
displayName: 'Private Notes', displayName: 'Private Notes',
name: 'privateNotes', name: 'privateNotes',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {
displayName: 'Public Notes', displayName: 'Public Notes',
name: 'publicNotes', name: 'publicNotes',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {

View file

@ -186,18 +186,12 @@ export const invoiceFields: INodeProperties[] = [
displayName: 'Private Notes', displayName: 'Private Notes',
name: 'privateNotes', name: 'privateNotes',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {
displayName: 'Public Notes', displayName: 'Public Notes',
name: 'publicNotes', name: 'publicNotes',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {
@ -256,17 +250,11 @@ export const invoiceFields: INodeProperties[] = [
displayName: 'Description', displayName: 'Description',
name: 'description', name: 'description',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {
displayName: 'Service', displayName: 'Service',
name: 'service', name: 'service',
typeOptions: {
alwaysOpenEditWindow: true,
},
type: 'string', type: 'string',
default: '', default: '',
}, },

View file

@ -235,9 +235,6 @@ export const paymentFields: INodeProperties[] = [
{ {
displayName: 'Private Notes', displayName: 'Private Notes',
name: 'privateNotes', name: 'privateNotes',
typeOptions: {
alwaysOpenEditWindow: true,
},
type: 'string', type: 'string',
default: '', default: '',
}, },

View file

@ -186,18 +186,12 @@ export const quoteFields: INodeProperties[] = [
displayName: 'Private Notes', displayName: 'Private Notes',
name: 'privateNotes', name: 'privateNotes',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {
displayName: 'Public Notes', displayName: 'Public Notes',
name: 'publicNotes', name: 'publicNotes',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {
@ -256,17 +250,11 @@ export const quoteFields: INodeProperties[] = [
displayName: 'Description', displayName: 'Description',
name: 'description', name: 'description',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {
displayName: 'Service', displayName: 'Service',
name: 'service', name: 'service',
typeOptions: {
alwaysOpenEditWindow: true,
},
type: 'string', type: 'string',
default: '', default: '',
}, },

View file

@ -85,9 +85,6 @@ export const taskFields: INodeProperties[] = [
displayName: 'Description', displayName: 'Description',
name: 'description', name: 'description',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {

View file

@ -208,9 +208,6 @@ export class Jenkins implements INodeType {
displayName: 'XML', displayName: 'XML',
name: 'xml', name: 'xml',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
resource: ['job'], resource: ['job'],

View file

@ -678,9 +678,6 @@ export const issueFields: INodeProperties[] = [
name: 'jql', name: 'jql',
type: 'string', type: 'string',
default: '', default: '',
typeOptions: {
alwaysOpenEditWindow: true,
},
description: 'A JQL expression', description: 'A JQL expression',
}, },
], ],
@ -777,9 +774,6 @@ export const issueFields: INodeProperties[] = [
displayName: 'HTML Body', displayName: 'HTML Body',
name: 'htmlBody', name: 'htmlBody',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: 'The HTML body of the email notification for the issue', description: 'The HTML body of the email notification for the issue',
}, },
@ -795,9 +789,6 @@ export const issueFields: INodeProperties[] = [
displayName: 'Text Body', displayName: 'Text Body',
name: 'textBody', name: 'textBody',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: description:
'The subject of the email notification for the issue. If this is not specified, then the subject is set to the issue key and summary.', 'The subject of the email notification for the issue. If this is not specified, then the subject is set to the issue key and summary.',

View file

@ -285,9 +285,6 @@ export class JiraTrigger implements INodeType {
displayName: 'Filter', displayName: 'Filter',
name: 'filter', name: 'filter',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
placeholder: 'Project = JRA AND resolution = Fixed', placeholder: 'Project = JRA AND resolution = Fixed',
description: description:

View file

@ -69,9 +69,6 @@ export const companyFields: INodeProperties[] = [
displayName: 'Notes', displayName: 'Notes',
name: 'notes', name: 'notes',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {

View file

@ -97,9 +97,6 @@ export const contactNoteFields: INodeProperties[] = [
displayName: 'Body', displayName: 'Body',
name: 'body', name: 'body',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {
@ -276,9 +273,6 @@ export const contactNoteFields: INodeProperties[] = [
displayName: 'Body', displayName: 'Body',
name: 'body', name: 'body',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {

View file

@ -80,9 +80,6 @@ export const ecommerceProductFields: INodeProperties[] = [
{ {
displayName: 'Product Description', displayName: 'Product Description',
name: 'productDesc', name: 'productDesc',
typeOptions: {
alwaysOpenEditWindow: true,
},
type: 'string', type: 'string',
default: '', default: '',
}, },

View file

@ -383,9 +383,6 @@ export const emailFields: INodeProperties[] = [
displayName: 'File Data', displayName: 'File Data',
name: 'fileData', name: 'fileData',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: 'The content of the attachment, encoded in Base64', description: 'The content of the attachment, encoded in Base64',
}, },

View file

@ -127,9 +127,6 @@ export const fileFields: INodeProperties[] = [
displayName: 'File Data', displayName: 'File Data',
name: 'fileData', name: 'fileData',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
required: true, required: true,
displayOptions: { displayOptions: {
show: { show: {

View file

@ -110,9 +110,6 @@ export const workItemFields: INodeProperties[] = [
name: 'description', name: 'description',
type: 'string', type: 'string',
default: '', default: '',
typeOptions: {
alwaysOpenEditWindow: true,
},
description: 'Description of the item to create. Markdown supported.', description: 'Description of the item to create. Markdown supported.',
}, },
{ {
@ -288,9 +285,6 @@ export const workItemFields: INodeProperties[] = [
name: 'description', name: 'description',
type: 'string', type: 'string',
default: '', default: '',
typeOptions: {
alwaysOpenEditWindow: true,
},
description: 'Description of the item to update. Markdown supported.', description: 'Description of the item to update. Markdown supported.',
}, },
{ {

View file

@ -186,9 +186,6 @@ export const submissionFields: INodeProperties[] = [
name: 'filterJson', name: 'filterJson',
type: 'string', type: 'string',
default: '', default: '',
typeOptions: {
// alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
resource: ['submission'], resource: ['submission'],

View file

@ -110,9 +110,6 @@ export const issueFields: INodeProperties[] = [
displayName: 'Description', displayName: 'Description',
name: 'description', name: 'description',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {
@ -251,9 +248,6 @@ export const issueFields: INodeProperties[] = [
displayName: 'Description', displayName: 'Description',
name: 'description', name: 'description',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {

View file

@ -302,9 +302,6 @@ export function getSearchFilters(
displayName: 'Filters (JSON)', displayName: 'Filters (JSON)',
name: 'filterJson', name: 'filterJson',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
resource: [resource], resource: [resource],

View file

@ -74,7 +74,6 @@ export class Mailgun implements INodeType {
name: 'text', name: 'text',
type: 'string', type: 'string',
typeOptions: { typeOptions: {
alwaysOpenEditWindow: true,
rows: 5, rows: 5,
}, },
default: '', default: '',

View file

@ -75,9 +75,6 @@ export const emailFields: INodeProperties[] = [
displayName: 'Text', displayName: 'Text',
name: 'text', name: 'text',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
resource: ['email'], resource: ['email'],
@ -91,9 +88,6 @@ export const emailFields: INodeProperties[] = [
displayName: 'HTML', displayName: 'HTML',
name: 'html', name: 'html',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
resource: ['email'], resource: ['email'],
@ -221,9 +215,6 @@ export const emailFields: INodeProperties[] = [
displayName: 'Variables (JSON)', displayName: 'Variables (JSON)',
name: 'variablesJson', name: 'variablesJson',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
resource: ['email'], resource: ['email'],
@ -449,9 +440,6 @@ export const emailFields: INodeProperties[] = [
displayName: 'Variables (JSON)', displayName: 'Variables (JSON)',
name: 'variablesJson', name: 'variablesJson',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
resource: ['email'], resource: ['email'],

View file

@ -62,9 +62,6 @@ export const smsFields: INodeProperties[] = [
name: 'text', name: 'text',
type: 'string', type: 'string',
required: true, required: true,
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
displayOptions: { displayOptions: {
show: { show: {

View file

@ -67,9 +67,6 @@ export class Markdown implements INodeType {
displayName: 'Markdown', displayName: 'Markdown',
name: 'markdown', name: 'markdown',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
mode: ['markdownToHtml'], mode: ['markdownToHtml'],

View file

@ -56,9 +56,6 @@ export const messageFields: INodeProperties[] = [
displayName: 'Text', displayName: 'Text',
name: 'text', name: 'text',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
placeholder: 'Hello from n8n!', placeholder: 'Hello from n8n!',
displayOptions: { displayOptions: {
@ -136,9 +133,6 @@ export const messageFields: INodeProperties[] = [
}, },
}, },
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
description: description:
'A plain text message to display in case the HTML cannot be rendered by the Matrix client', 'A plain text message to display in case the HTML cannot be rendered by the Matrix client',
}, },

View file

@ -24,9 +24,6 @@ export const messagePostDescription: MessageProperties = [
displayName: 'Message', displayName: 'Message',
name: 'message', name: 'message',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
displayOptions: { displayOptions: {
show: { show: {
@ -229,9 +226,6 @@ export const messagePostDescription: MessageProperties = [
displayName: 'Author Icon', displayName: 'Author Icon',
name: 'author_icon', name: 'author_icon',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: 'Icon which should appear for the user', description: 'Icon which should appear for the user',
}, },
@ -239,9 +233,6 @@ export const messagePostDescription: MessageProperties = [
displayName: 'Author Link', displayName: 'Author Link',
name: 'author_link', name: 'author_link',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: 'Link for the author', description: 'Link for the author',
}, },
@ -263,9 +254,6 @@ export const messagePostDescription: MessageProperties = [
displayName: 'Fallback Text', displayName: 'Fallback Text',
name: 'fallback', name: 'fallback',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: 'Required plain-text summary of the attachment', description: 'Required plain-text summary of the attachment',
}, },
@ -313,9 +301,6 @@ export const messagePostDescription: MessageProperties = [
displayName: 'Footer', displayName: 'Footer',
name: 'footer', name: 'footer',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: 'Text of footer to add', description: 'Text of footer to add',
}, },
@ -323,9 +308,6 @@ export const messagePostDescription: MessageProperties = [
displayName: 'Footer Icon', displayName: 'Footer Icon',
name: 'footer_icon', name: 'footer_icon',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: 'Icon which should appear next to footer', description: 'Icon which should appear next to footer',
}, },
@ -333,9 +315,6 @@ export const messagePostDescription: MessageProperties = [
displayName: 'Image URL', displayName: 'Image URL',
name: 'image_url', name: 'image_url',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: 'URL of image', description: 'URL of image',
}, },
@ -343,9 +322,6 @@ export const messagePostDescription: MessageProperties = [
displayName: 'Pretext', displayName: 'Pretext',
name: 'pretext', name: 'pretext',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: 'Text which appears before the message block', description: 'Text which appears before the message block',
}, },
@ -353,9 +329,6 @@ export const messagePostDescription: MessageProperties = [
displayName: 'Text', displayName: 'Text',
name: 'text', name: 'text',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: 'Text to send', description: 'Text to send',
}, },
@ -363,9 +336,6 @@ export const messagePostDescription: MessageProperties = [
displayName: 'Thumbnail URL', displayName: 'Thumbnail URL',
name: 'thumb_url', name: 'thumb_url',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: 'URL of thumbnail', description: 'URL of thumbnail',
}, },
@ -373,9 +343,6 @@ export const messagePostDescription: MessageProperties = [
displayName: 'Title', displayName: 'Title',
name: 'title', name: 'title',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: 'Title of the message', description: 'Title of the message',
}, },
@ -383,9 +350,6 @@ export const messagePostDescription: MessageProperties = [
displayName: 'Title Link', displayName: 'Title Link',
name: 'title_link', name: 'title_link',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: 'Link of the title', description: 'Link of the title',
}, },

View file

@ -42,9 +42,6 @@ export const messagePostEphemeralDescription: MessageProperties = [
displayName: 'Message', displayName: 'Message',
name: 'message', name: 'message',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
displayOptions: { displayOptions: {
show: { show: {

View file

@ -182,9 +182,6 @@ export class Medium implements INodeType {
default: '', default: '',
placeholder: 'My open source contribution', placeholder: 'My open source contribution',
required: true, required: true,
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
operation: ['create'], operation: ['create'],

View file

@ -91,9 +91,6 @@ export class MicrosoftSql implements INodeType {
displayName: 'Query', displayName: 'Query',
name: 'query', name: 'query',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
operation: ['executeQuery'], operation: ['executeQuery'],

View file

@ -100,9 +100,6 @@ export const channelFields: INodeProperties[] = [
displayName: 'Description', displayName: 'Description',
name: 'description', name: 'description',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: "Channel's description", description: "Channel's description",
}, },
@ -322,9 +319,6 @@ export const channelFields: INodeProperties[] = [
displayName: 'Description', displayName: 'Description',
name: 'description', name: 'description',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: "Channel's description", description: "Channel's description",
}, },

View file

@ -98,9 +98,6 @@ export const channelMessageFields: INodeProperties[] = [
name: 'message', name: 'message',
required: true, required: true,
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
operation: ['create'], operation: ['create'],

View file

@ -86,9 +86,6 @@ export const chatMessageFields: INodeProperties[] = [
name: 'message', name: 'message',
required: true, required: true,
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
operation: ['create'], operation: ['create'],

View file

@ -130,9 +130,6 @@ export const activityFields: INodeProperties[] = [
type: 'string', type: 'string',
default: '', default: '',
description: 'Description of the activity - max 100,000 characters', description: 'Description of the activity - max 100,000 characters',
typeOptions: {
alwaysOpenEditWindow: true,
},
}, },
], ],
}, },
@ -261,9 +258,6 @@ export const activityFields: INodeProperties[] = [
type: 'string', type: 'string',
default: '', default: '',
description: 'Description to add more details on the activity - max 100,000 characters', description: 'Description to add more details on the activity - max 100,000 characters',
typeOptions: {
alwaysOpenEditWindow: true,
},
}, },
{ {
displayName: 'Happened At', displayName: 'Happened At',

View file

@ -83,9 +83,6 @@ export const callFields: INodeProperties[] = [
displayName: 'Description', displayName: 'Description',
name: 'content', name: 'content',
description: 'Description of the call - max 100,000 characters', description: 'Description of the call - max 100,000 characters',
typeOptions: {
alwaysOpenEditWindow: true,
},
type: 'string', type: 'string',
required: true, required: true,
default: '', default: '',

View file

@ -72,9 +72,6 @@ export const journalEntryFields: INodeProperties[] = [
type: 'string', type: 'string',
required: true, required: true,
default: '', default: '',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
resource: ['journalEntry'], resource: ['journalEntry'],
@ -189,9 +186,6 @@ export const journalEntryFields: INodeProperties[] = [
description: 'Content of the journal entry - max 100,000 characters', description: 'Content of the journal entry - max 100,000 characters',
type: 'string', type: 'string',
default: '', default: '',
typeOptions: {
alwaysOpenEditWindow: true,
},
}, },
{ {
displayName: 'Title', displayName: 'Title',

View file

@ -70,9 +70,6 @@ export const noteFields: INodeProperties[] = [
name: 'body', name: 'body',
description: 'Body of the note - max 100,000 characters', description: 'Body of the note - max 100,000 characters',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
required: true, required: true,
default: '', default: '',
displayOptions: { displayOptions: {
@ -210,9 +207,6 @@ export const noteFields: INodeProperties[] = [
name: 'body', name: 'body',
description: 'Body of the note - max 100,000 characters', description: 'Body of the note - max 100,000 characters',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
}, },
{ {

View file

@ -157,9 +157,6 @@ export const reminderFields: INodeProperties[] = [
type: 'string', type: 'string',
default: '', default: '',
description: 'Description about the reminder - Max 100,000 characters', description: 'Description about the reminder - Max 100,000 characters',
typeOptions: {
alwaysOpenEditWindow: true,
},
}, },
], ],
}, },
@ -277,9 +274,6 @@ export const reminderFields: INodeProperties[] = [
type: 'string', type: 'string',
default: '', default: '',
description: 'Description about the reminder - Max 100,000 characters', description: 'Description about the reminder - Max 100,000 characters',
typeOptions: {
alwaysOpenEditWindow: true,
},
}, },
{ {
displayName: 'Frequency Type', displayName: 'Frequency Type',

View file

@ -98,9 +98,6 @@ export const taskFields: INodeProperties[] = [
type: 'string', type: 'string',
default: '', default: '',
description: 'Description of the task - max 100,000 characters', description: 'Description of the task - max 100,000 characters',
typeOptions: {
alwaysOpenEditWindow: true,
},
}, },
], ],
}, },
@ -225,9 +222,6 @@ export const taskFields: INodeProperties[] = [
type: 'string', type: 'string',
default: '', default: '',
description: 'Description of the task - max 100,000 characters', description: 'Description of the task - max 100,000 characters',
typeOptions: {
alwaysOpenEditWindow: true,
},
}, },
{ {
displayName: 'Title', displayName: 'Title',

View file

@ -71,9 +71,6 @@ export class MySql implements INodeType {
displayName: 'Query', displayName: 'Query',
name: 'query', name: 'query',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
operation: ['executeQuery'], operation: ['executeQuery'],

View file

@ -900,9 +900,6 @@ export function getSearchFilters(resource: string) {
displayName: 'Filters (JSON)', displayName: 'Filters (JSON)',
name: 'filterJson', name: 'filterJson',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
version: [2], version: [2],

View file

@ -516,9 +516,6 @@ export const incidentFields: INodeProperties[] = [
displayName: 'Resolution', displayName: 'Resolution',
name: 'resolution', name: 'resolution',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '', default: '',
description: 'The resolution for this incident if status is set to resolved', description: 'The resolution for this incident if status is set to resolved',
}, },

View file

@ -51,9 +51,6 @@ export const incidentNoteFields: INodeProperties[] = [
displayName: 'Content', displayName: 'Content',
name: 'content', name: 'content',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
required: true, required: true,
default: '', default: '',
displayOptions: { displayOptions: {

View file

@ -675,7 +675,6 @@ export class Pipedrive implements INodeType {
name: 'note', name: 'note',
type: 'string', type: 'string',
typeOptions: { typeOptions: {
alwaysOpenEditWindow: true,
rows: 5, rows: 5,
}, },
default: '', default: '',
@ -848,7 +847,6 @@ export class Pipedrive implements INodeType {
name: 'note', name: 'note',
type: 'string', type: 'string',
typeOptions: { typeOptions: {
alwaysOpenEditWindow: true,
rows: 5, rows: 5,
}, },
default: '', default: '',

View file

@ -70,9 +70,6 @@ export class Postgres implements INodeType {
displayName: 'Query', displayName: 'Query',
name: 'query', name: 'query',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
operation: ['executeQuery'], operation: ['executeQuery'],

View file

@ -60,9 +60,6 @@ export class QuestDb implements INodeType {
displayName: 'Query', displayName: 'Query',
name: 'query', name: 'query',
type: 'string', type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: { displayOptions: {
show: { show: {
operation: ['executeQuery'], operation: ['executeQuery'],

View file

@ -102,9 +102,6 @@ export const billFields: INodeProperties[] = [
description: 'Textual description of the line item', description: 'Textual description of the line item',
type: 'string', type: 'string',
default: '', default: '',
typeOptions: {
alwaysOpenEditWindow: true,
},
}, },
{ {
displayName: 'Detail Type', displayName: 'Detail Type',
@ -242,9 +239,6 @@ export const billFields: INodeProperties[] = [
placeholder: "WHERE Metadata.LastUpdatedTime > '2021-01-01'", placeholder: "WHERE Metadata.LastUpdatedTime > '2021-01-01'",
description: 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.', '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,
},
}, },
], ],
displayOptions: { displayOptions: {

View file

@ -139,9 +139,6 @@ export const customerFields: INodeProperties[] = [
placeholder: "WHERE Metadata.LastUpdatedTime > '2021-01-01'", placeholder: "WHERE Metadata.LastUpdatedTime > '2021-01-01'",
description: description:
'The condition for selecting customers. 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.', 'The condition for selecting customers. 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,
},
}, },
], ],
displayOptions: { displayOptions: {

View file

@ -149,9 +149,6 @@ export const employeeFields: INodeProperties[] = [
placeholder: "WHERE Metadata.LastUpdatedTime > '2021-01-01'", placeholder: "WHERE Metadata.LastUpdatedTime > '2021-01-01'",
description: description:
'The condition for selecting employees. 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.', 'The condition for selecting employees. 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,
},
}, },
], ],
displayOptions: { displayOptions: {

View file

@ -101,9 +101,6 @@ export const estimateFields: INodeProperties[] = [
description: 'Textual description of the line item', description: 'Textual description of the line item',
type: 'string', type: 'string',
default: '', default: '',
typeOptions: {
alwaysOpenEditWindow: true,
},
}, },
{ {
displayName: 'Detail Type', displayName: 'Detail Type',
@ -293,9 +290,6 @@ export const estimateFields: INodeProperties[] = [
placeholder: "WHERE Metadata.LastUpdatedTime > '2021-01-01'", placeholder: "WHERE Metadata.LastUpdatedTime > '2021-01-01'",
description: description:
'The condition for selecting estimates. 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.', 'The condition for selecting estimates. 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,
},
}, },
], ],
displayOptions: { displayOptions: {

View file

@ -106,9 +106,6 @@ export const invoiceFields: INodeProperties[] = [
description: 'Textual description of the line item', description: 'Textual description of the line item',
type: 'string', type: 'string',
default: '', default: '',
typeOptions: {
alwaysOpenEditWindow: true,
},
}, },
{ {
displayName: 'Detail Type', displayName: 'Detail Type',
@ -298,9 +295,6 @@ export const invoiceFields: INodeProperties[] = [
placeholder: "WHERE Metadata.LastUpdatedTime > '2021-01-01'", placeholder: "WHERE Metadata.LastUpdatedTime > '2021-01-01'",
description: description:
'The condition for selecting invoices. 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.', 'The condition for selecting invoices. 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,
},
}, },
], ],
displayOptions: { displayOptions: {

View file

@ -95,9 +95,6 @@ export const itemFields: INodeProperties[] = [
placeholder: "WHERE Metadata.LastUpdatedTime > '2021-01-01'", placeholder: "WHERE Metadata.LastUpdatedTime > '2021-01-01'",
description: description:
'The condition for selecting items. 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.', 'The condition for selecting items. 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,
},
}, },
], ],
displayOptions: { displayOptions: {

View file

@ -234,9 +234,6 @@ export const paymentFields: INodeProperties[] = [
placeholder: "WHERE Metadata.LastUpdatedTime > '2021-01-01'", placeholder: "WHERE Metadata.LastUpdatedTime > '2021-01-01'",
description: description:
'The condition for selecting payments. 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.', 'The condition for selecting payments. 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,
},
}, },
], ],
displayOptions: { displayOptions: {

Some files were not shown because too many files have changed in this diff Show more