mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
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:
parent
7e1a13f9b2
commit
fbb8611ae2
|
@ -891,7 +891,7 @@ export default mixins(
|
|||
return;
|
||||
}
|
||||
|
||||
if (['json', 'string'].includes(this.parameter.type) && this.getArgument('alwaysOpenEditWindow')) {
|
||||
if (['json'].includes(this.parameter.type) && this.getArgument('alwaysOpenEditWindow')) {
|
||||
this.displayEditDialog();
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -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.
|
||||
|
||||
- **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
|
||||
- **maxValue** [type: number]: Maximum value of the number
|
||||
- **minValue** [type: number]: Minimum value of the number
|
||||
|
|
|
@ -59,7 +59,6 @@ export class MySql implements ICredentialType {
|
|||
displayName: 'CA Certificate',
|
||||
name: 'caCertificate',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
password: true,
|
||||
},
|
||||
displayOptions: {
|
||||
|
@ -74,7 +73,6 @@ export class MySql implements ICredentialType {
|
|||
displayName: 'Client Private Key',
|
||||
name: 'clientPrivateKey',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
password: true,
|
||||
},
|
||||
displayOptions: {
|
||||
|
@ -89,7 +87,6 @@ export class MySql implements ICredentialType {
|
|||
displayName: 'Client Certificate',
|
||||
name: 'clientCertificate',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
password: true,
|
||||
},
|
||||
displayOptions: {
|
||||
|
|
|
@ -42,9 +42,6 @@ export class Sftp implements ICredentialType {
|
|||
displayName: 'Private Key',
|
||||
name: 'privateKey',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description:
|
||||
'String that contains a private key for either key-based or hostbased user authentication (OpenSSH format)',
|
||||
|
|
|
@ -37,9 +37,6 @@ export class WiseApi implements ICredentialType {
|
|||
default: '',
|
||||
description:
|
||||
'Optional private key used for Strong Customer Authentication (SCA). Only needed to retrieve statements, and execute transfers.',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -266,9 +266,6 @@ export const companyFields: INodeProperties[] = [
|
|||
displayName: 'Filters (JSON)',
|
||||
name: 'filterJson',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['company'],
|
||||
|
|
|
@ -266,9 +266,6 @@ export const contactFields: INodeProperties[] = [
|
|||
displayName: 'Filters (JSON)',
|
||||
name: 'filterJson',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['contact'],
|
||||
|
|
|
@ -258,7 +258,6 @@ export class Asana implements INodeType {
|
|||
name: 'notes',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
rows: 5,
|
||||
},
|
||||
default: '',
|
||||
|
@ -742,7 +741,6 @@ export class Asana implements INodeType {
|
|||
name: 'text',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
rows: 5,
|
||||
},
|
||||
default: '',
|
||||
|
@ -841,7 +839,6 @@ export class Asana implements INodeType {
|
|||
name: 'notes',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
rows: 5,
|
||||
},
|
||||
default: '',
|
||||
|
@ -929,9 +926,6 @@ export class Asana implements INodeType {
|
|||
type: 'string',
|
||||
default: '',
|
||||
required: true,
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: ['add'],
|
||||
|
@ -947,9 +941,6 @@ export class Asana implements INodeType {
|
|||
type: 'string',
|
||||
default: '',
|
||||
required: true,
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: ['add'],
|
||||
|
|
|
@ -114,9 +114,6 @@ export class AwsLambda implements INodeType {
|
|||
},
|
||||
default: '',
|
||||
description: 'The JSON that you want to provide to your Lambda function as input',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
|
|
|
@ -184,9 +184,6 @@ export class AwsSns implements INodeType {
|
|||
},
|
||||
},
|
||||
required: true,
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'The message you want to send',
|
||||
},
|
||||
|
|
|
@ -133,9 +133,6 @@ export class AwsComprehend implements INodeType {
|
|||
displayName: 'Text',
|
||||
name: 'text',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
displayOptions: {
|
||||
show: {
|
||||
|
@ -175,9 +172,6 @@ export class AwsComprehend implements INodeType {
|
|||
displayName: 'Endpoint Arn',
|
||||
name: 'endpointArn',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description:
|
||||
'The Amazon Resource Name of an endpoint that is associated with a custom entity recognition model',
|
||||
|
|
|
@ -143,9 +143,6 @@ export class AwsSes implements INodeType {
|
|||
displayName: 'Template Content',
|
||||
name: 'templateContent',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['customVerificationEmail'],
|
||||
|
@ -307,9 +304,6 @@ export class AwsSes implements INodeType {
|
|||
displayName: 'Template Content',
|
||||
name: 'templateContent',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
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',
|
||||
default: '',
|
||||
|
@ -407,9 +401,6 @@ export class AwsSes implements INodeType {
|
|||
displayName: 'Body',
|
||||
name: 'body',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['email'],
|
||||
|
|
|
@ -108,9 +108,6 @@ export class AwsSqs implements INodeType {
|
|||
},
|
||||
},
|
||||
required: true,
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'Message to send to the queue',
|
||||
},
|
||||
|
|
|
@ -95,7 +95,6 @@ export class CalTrigger implements INodeType {
|
|||
description: 'Template to customize the webhook payload',
|
||||
default: '',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
rows: 4,
|
||||
},
|
||||
},
|
||||
|
|
|
@ -105,9 +105,6 @@ export const goalFields: INodeProperties[] = [
|
|||
displayName: 'Description',
|
||||
name: 'description',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
@ -249,9 +246,6 @@ export const goalFields: INodeProperties[] = [
|
|||
displayName: 'Description',
|
||||
name: 'description',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -218,9 +218,6 @@ export const goalKeyResultFields: INodeProperties[] = [
|
|||
displayName: 'Note',
|
||||
name: 'note',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -169,9 +169,6 @@ export const listFields: INodeProperties[] = [
|
|||
displayName: 'Content',
|
||||
name: 'content',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
@ -776,9 +773,6 @@ export const listFields: INodeProperties[] = [
|
|||
displayName: 'Content',
|
||||
name: 'content',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -228,9 +228,6 @@ export const taskFields: INodeProperties[] = [
|
|||
displayName: 'Content',
|
||||
name: 'content',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
@ -360,9 +357,6 @@ export const taskFields: INodeProperties[] = [
|
|||
displayName: 'Content',
|
||||
name: 'content',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -119,9 +119,6 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
displayName: 'Description',
|
||||
name: 'description',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
@ -304,9 +301,6 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
displayName: 'Description',
|
||||
name: 'description',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -105,9 +105,6 @@ export const collectionFields: INodeProperties[] = [
|
|||
name: 'fields',
|
||||
type: 'string',
|
||||
default: '',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
placeholder: '_id,name',
|
||||
description: 'Comma-separated list of fields to get',
|
||||
},
|
||||
|
|
|
@ -323,9 +323,6 @@ export const tableFields: INodeProperties[] = [
|
|||
displayName: 'Query',
|
||||
name: 'query',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
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").',
|
||||
|
|
|
@ -234,9 +234,6 @@ export const viewFields: INodeProperties[] = [
|
|||
displayName: 'Query',
|
||||
name: 'query',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
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").',
|
||||
|
|
|
@ -73,9 +73,6 @@ export class CrateDb implements INodeType {
|
|||
displayName: 'Query',
|
||||
name: 'query',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: ['executeQuery'],
|
||||
|
|
|
@ -339,9 +339,6 @@ export class Crypto implements INodeType {
|
|||
},
|
||||
},
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
description: 'Private key to use when signing the string',
|
||||
default: '',
|
||||
required: true,
|
||||
|
|
|
@ -8,9 +8,6 @@ export const textOperations: INodeProperties[] = [
|
|||
default: '',
|
||||
description: 'Input text to translate',
|
||||
required: true,
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: ['translate'],
|
||||
|
|
|
@ -28,9 +28,6 @@ export class Discord implements INodeType {
|
|||
displayName: 'Webhook URL',
|
||||
name: 'webhookUri',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
required: true,
|
||||
default: '',
|
||||
placeholder: 'https://discord.com/api/webhooks/ID/TOKEN',
|
||||
|
@ -41,7 +38,6 @@ export class Discord implements INodeType {
|
|||
type: 'string',
|
||||
typeOptions: {
|
||||
maxValue: 2000,
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
placeholder: 'Hello World!',
|
||||
|
|
|
@ -65,9 +65,6 @@ export const postFields: INodeProperties[] = [
|
|||
name: 'content',
|
||||
type: 'string',
|
||||
required: true,
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['post'],
|
||||
|
@ -191,9 +188,6 @@ export const postFields: INodeProperties[] = [
|
|||
displayName: 'Content',
|
||||
name: 'content',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
required: true,
|
||||
displayOptions: {
|
||||
show: {
|
||||
|
|
|
@ -73,7 +73,6 @@ export class EmailSend implements INodeType {
|
|||
name: 'text',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
rows: 5,
|
||||
},
|
||||
default: '',
|
||||
|
|
|
@ -99,7 +99,6 @@ export class ExecuteWorkflow implements INodeType {
|
|||
name: 'workflowJson',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
editor: 'json',
|
||||
rows: 10,
|
||||
},
|
||||
|
|
|
@ -135,9 +135,6 @@ export const taskFields: INodeProperties[] = [
|
|||
displayName: 'Note Content',
|
||||
name: 'noteContent',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: "Provide the content for the task's note",
|
||||
},
|
||||
|
@ -315,9 +312,6 @@ export const taskFields: INodeProperties[] = [
|
|||
displayName: 'Note Content',
|
||||
name: 'noteContent',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: "Provide the content for the task's note",
|
||||
},
|
||||
|
|
|
@ -394,7 +394,6 @@ export class Freshdesk implements INodeType {
|
|||
default: '',
|
||||
typeOptions: {
|
||||
rows: 5,
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
description: 'HTML content of the ticket',
|
||||
},
|
||||
|
|
|
@ -122,9 +122,6 @@ export const postFields: INodeProperties[] = [
|
|||
displayName: 'Content',
|
||||
name: 'content',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
source: ['adminApi'],
|
||||
|
@ -695,9 +692,6 @@ export const postFields: INodeProperties[] = [
|
|||
'/contentFormat': ['html'],
|
||||
},
|
||||
},
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1449,9 +1449,6 @@ export class Github implements INodeType {
|
|||
displayName: 'Body',
|
||||
name: 'body',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: ['create'],
|
||||
|
@ -1491,9 +1488,6 @@ export class Github implements INodeType {
|
|||
displayName: 'Body',
|
||||
name: 'body',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: ['update'],
|
||||
|
|
|
@ -115,9 +115,6 @@ export const webinarFields: INodeProperties[] = [
|
|||
name: 'description',
|
||||
type: 'string',
|
||||
default: '',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Experience Type',
|
||||
|
@ -378,9 +375,6 @@ export const webinarFields: INodeProperties[] = [
|
|||
name: 'description',
|
||||
type: 'string',
|
||||
default: '',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Experience Type',
|
||||
|
@ -453,9 +447,6 @@ export const webinarFields: INodeProperties[] = [
|
|||
type: 'string',
|
||||
default: '',
|
||||
description: 'Name or topic of the webinar',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Timezone Name or ID',
|
||||
|
|
|
@ -230,9 +230,6 @@ export const eventFields: INodeProperties[] = [
|
|||
displayName: 'Description',
|
||||
name: 'description',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
@ -859,9 +856,6 @@ export const eventFields: INodeProperties[] = [
|
|||
displayName: 'Description',
|
||||
name: 'description',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -364,9 +364,6 @@ export const contactFields: INodeProperties[] = [
|
|||
displayName: 'Notes',
|
||||
name: 'biographies',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
@ -1377,9 +1374,6 @@ export const contactFields: INodeProperties[] = [
|
|||
displayName: 'Notes',
|
||||
name: 'biographies',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -613,9 +613,6 @@ export const documentFields: INodeProperties[] = [
|
|||
},
|
||||
description: 'JSON query to execute',
|
||||
required: true,
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
placeholder:
|
||||
'{"structuredQuery": {"where": {"fieldFilter": {"field": {"fieldPath": "age"},"op": "EQUAL", "value": {"integerValue": 28}}}, "from": [{"collectionId": "users-collection"}]}}',
|
||||
},
|
||||
|
|
|
@ -115,9 +115,6 @@ export class GmailTrigger implements INodeType {
|
|||
displayName: 'Search',
|
||||
name: 'q',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
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>.',
|
||||
|
|
|
@ -427,9 +427,6 @@ export const messageFields: INodeProperties[] = [
|
|||
displayName: 'Query',
|
||||
name: 'q',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
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:<somemsgid@example.com> is:unread". Parameter cannot be used when accessing the api using the gmail.metadata scope.',
|
||||
|
|
|
@ -429,9 +429,6 @@ export const taskFields: INodeProperties[] = [
|
|||
displayName: 'Notes',
|
||||
name: 'notes',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'Additional Notes',
|
||||
},
|
||||
|
|
|
@ -397,9 +397,6 @@ export const channelFields: INodeProperties[] = [
|
|||
displayName: 'Keywords',
|
||||
name: 'keywords',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
placeholder: 'tech,news',
|
||||
description:
|
||||
'Keywords associated with your channel. The value is a space-separated list of strings.',
|
||||
|
|
|
@ -98,9 +98,6 @@ export const clientFields: INodeProperties[] = [
|
|||
displayName: 'Notes',
|
||||
name: 'notes',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
@ -323,9 +320,6 @@ export const clientFields: INodeProperties[] = [
|
|||
displayName: 'Notes',
|
||||
name: 'notes',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -134,9 +134,6 @@ export const siteFields: INodeProperties[] = [
|
|||
displayName: 'Notes',
|
||||
name: 'notes',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
@ -306,9 +303,6 @@ export const siteFields: INodeProperties[] = [
|
|||
displayName: 'Notes',
|
||||
name: 'notes',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -106,9 +106,6 @@ export const userFields: INodeProperties[] = [
|
|||
displayName: 'Notes',
|
||||
name: 'notes',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
@ -287,9 +284,6 @@ export const userFields: INodeProperties[] = [
|
|||
displayName: 'Notes',
|
||||
name: 'notes',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -96,9 +96,6 @@ export const conversationFields: INodeProperties[] = [
|
|||
name: 'subject',
|
||||
type: 'string',
|
||||
required: true,
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: ['create'],
|
||||
|
@ -284,9 +281,6 @@ export const conversationFields: INodeProperties[] = [
|
|||
displayName: 'Text',
|
||||
name: 'text',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'The message text',
|
||||
},
|
||||
|
@ -471,9 +465,6 @@ export const conversationFields: INodeProperties[] = [
|
|||
displayName: 'Query',
|
||||
name: 'query',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description:
|
||||
'Advanced search <a href="https://developer.helpscout.com/mailbox-api/endpoints/conversations/list/#query">Examples</a>',
|
||||
|
|
|
@ -143,9 +143,6 @@ export const customerFields: INodeProperties[] = [
|
|||
displayName: 'Notes',
|
||||
name: 'background',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
@ -651,9 +648,6 @@ export const customerFields: INodeProperties[] = [
|
|||
displayName: 'Query',
|
||||
name: 'query',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description:
|
||||
'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',
|
||||
name: 'background',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -86,9 +86,6 @@ export const threadFields: INodeProperties[] = [
|
|||
name: 'text',
|
||||
type: 'string',
|
||||
default: '',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
required: true,
|
||||
displayOptions: {
|
||||
show: {
|
||||
|
|
|
@ -99,9 +99,6 @@ export const companyFields: INodeProperties[] = [
|
|||
displayName: 'About Us',
|
||||
name: 'aboutUs',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
@ -362,9 +359,6 @@ export const companyFields: INodeProperties[] = [
|
|||
displayName: 'Twitter Bio',
|
||||
name: 'twitterBio',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'The Twitter bio of the company or organization',
|
||||
},
|
||||
|
@ -459,9 +453,6 @@ export const companyFields: INodeProperties[] = [
|
|||
displayName: 'About Us',
|
||||
name: 'aboutUs',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
@ -728,9 +719,6 @@ export const companyFields: INodeProperties[] = [
|
|||
displayName: 'Twitter Bio',
|
||||
name: 'twitterBio',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'The Twitter bio of the company or organization',
|
||||
},
|
||||
|
|
|
@ -336,9 +336,6 @@ export const contactFields: INodeProperties[] = [
|
|||
displayName: 'Membership Note',
|
||||
name: 'membershipNote',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: "The notes relating to the contact's content membership",
|
||||
},
|
||||
|
@ -346,9 +343,6 @@ export const contactFields: INodeProperties[] = [
|
|||
displayName: 'Message',
|
||||
name: 'message',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description:
|
||||
'A default property to be used for any message or comments a contact may want to leave on a form',
|
||||
|
|
|
@ -166,9 +166,6 @@ export const ticketFields: INodeProperties[] = [
|
|||
displayName: 'Description',
|
||||
name: 'description',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'Description of the ticket',
|
||||
},
|
||||
|
@ -299,9 +296,6 @@ export const ticketFields: INodeProperties[] = [
|
|||
displayName: 'Description',
|
||||
name: 'description',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'Description of the ticket',
|
||||
},
|
||||
|
|
|
@ -74,9 +74,6 @@ export const clientFields: INodeProperties[] = [
|
|||
displayName: 'Private Notes',
|
||||
name: 'privateNotes',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -256,18 +256,12 @@ export const expenseFields: INodeProperties[] = [
|
|||
displayName: 'Private Notes',
|
||||
name: 'privateNotes',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Public Notes',
|
||||
name: 'publicNotes',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -186,18 +186,12 @@ export const invoiceFields: INodeProperties[] = [
|
|||
displayName: 'Private Notes',
|
||||
name: 'privateNotes',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Public Notes',
|
||||
name: 'publicNotes',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
@ -256,17 +250,11 @@ export const invoiceFields: INodeProperties[] = [
|
|||
displayName: 'Description',
|
||||
name: 'description',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Service',
|
||||
name: 'service',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
type: 'string',
|
||||
default: '',
|
||||
},
|
||||
|
|
|
@ -235,9 +235,6 @@ export const paymentFields: INodeProperties[] = [
|
|||
{
|
||||
displayName: 'Private Notes',
|
||||
name: 'privateNotes',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
type: 'string',
|
||||
default: '',
|
||||
},
|
||||
|
|
|
@ -186,18 +186,12 @@ export const quoteFields: INodeProperties[] = [
|
|||
displayName: 'Private Notes',
|
||||
name: 'privateNotes',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Public Notes',
|
||||
name: 'publicNotes',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
@ -256,17 +250,11 @@ export const quoteFields: INodeProperties[] = [
|
|||
displayName: 'Description',
|
||||
name: 'description',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Service',
|
||||
name: 'service',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
type: 'string',
|
||||
default: '',
|
||||
},
|
||||
|
|
|
@ -85,9 +85,6 @@ export const taskFields: INodeProperties[] = [
|
|||
displayName: 'Description',
|
||||
name: 'description',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -208,9 +208,6 @@ export class Jenkins implements INodeType {
|
|||
displayName: 'XML',
|
||||
name: 'xml',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['job'],
|
||||
|
|
|
@ -678,9 +678,6 @@ export const issueFields: INodeProperties[] = [
|
|||
name: 'jql',
|
||||
type: 'string',
|
||||
default: '',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
description: 'A JQL expression',
|
||||
},
|
||||
],
|
||||
|
@ -777,9 +774,6 @@ export const issueFields: INodeProperties[] = [
|
|||
displayName: 'HTML Body',
|
||||
name: 'htmlBody',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'The HTML body of the email notification for the issue',
|
||||
},
|
||||
|
@ -795,9 +789,6 @@ export const issueFields: INodeProperties[] = [
|
|||
displayName: 'Text Body',
|
||||
name: 'textBody',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
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.',
|
||||
|
|
|
@ -285,9 +285,6 @@ export class JiraTrigger implements INodeType {
|
|||
displayName: 'Filter',
|
||||
name: 'filter',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
placeholder: 'Project = JRA AND resolution = Fixed',
|
||||
description:
|
||||
|
|
|
@ -69,9 +69,6 @@ export const companyFields: INodeProperties[] = [
|
|||
displayName: 'Notes',
|
||||
name: 'notes',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -97,9 +97,6 @@ export const contactNoteFields: INodeProperties[] = [
|
|||
displayName: 'Body',
|
||||
name: 'body',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
@ -276,9 +273,6 @@ export const contactNoteFields: INodeProperties[] = [
|
|||
displayName: 'Body',
|
||||
name: 'body',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -80,9 +80,6 @@ export const ecommerceProductFields: INodeProperties[] = [
|
|||
{
|
||||
displayName: 'Product Description',
|
||||
name: 'productDesc',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
type: 'string',
|
||||
default: '',
|
||||
},
|
||||
|
|
|
@ -383,9 +383,6 @@ export const emailFields: INodeProperties[] = [
|
|||
displayName: 'File Data',
|
||||
name: 'fileData',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'The content of the attachment, encoded in Base64',
|
||||
},
|
||||
|
|
|
@ -127,9 +127,6 @@ export const fileFields: INodeProperties[] = [
|
|||
displayName: 'File Data',
|
||||
name: 'fileData',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
required: true,
|
||||
displayOptions: {
|
||||
show: {
|
||||
|
|
|
@ -110,9 +110,6 @@ export const workItemFields: INodeProperties[] = [
|
|||
name: 'description',
|
||||
type: 'string',
|
||||
default: '',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
description: 'Description of the item to create. Markdown supported.',
|
||||
},
|
||||
{
|
||||
|
@ -288,9 +285,6 @@ export const workItemFields: INodeProperties[] = [
|
|||
name: 'description',
|
||||
type: 'string',
|
||||
default: '',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
description: 'Description of the item to update. Markdown supported.',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -186,9 +186,6 @@ export const submissionFields: INodeProperties[] = [
|
|||
name: 'filterJson',
|
||||
type: 'string',
|
||||
default: '',
|
||||
typeOptions: {
|
||||
// alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['submission'],
|
||||
|
|
|
@ -110,9 +110,6 @@ export const issueFields: INodeProperties[] = [
|
|||
displayName: 'Description',
|
||||
name: 'description',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
@ -251,9 +248,6 @@ export const issueFields: INodeProperties[] = [
|
|||
displayName: 'Description',
|
||||
name: 'description',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -302,9 +302,6 @@ export function getSearchFilters(
|
|||
displayName: 'Filters (JSON)',
|
||||
name: 'filterJson',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [resource],
|
||||
|
|
|
@ -74,7 +74,6 @@ export class Mailgun implements INodeType {
|
|||
name: 'text',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
rows: 5,
|
||||
},
|
||||
default: '',
|
||||
|
|
|
@ -75,9 +75,6 @@ export const emailFields: INodeProperties[] = [
|
|||
displayName: 'Text',
|
||||
name: 'text',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['email'],
|
||||
|
@ -91,9 +88,6 @@ export const emailFields: INodeProperties[] = [
|
|||
displayName: 'HTML',
|
||||
name: 'html',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['email'],
|
||||
|
@ -221,9 +215,6 @@ export const emailFields: INodeProperties[] = [
|
|||
displayName: 'Variables (JSON)',
|
||||
name: 'variablesJson',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['email'],
|
||||
|
@ -449,9 +440,6 @@ export const emailFields: INodeProperties[] = [
|
|||
displayName: 'Variables (JSON)',
|
||||
name: 'variablesJson',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['email'],
|
||||
|
|
|
@ -62,9 +62,6 @@ export const smsFields: INodeProperties[] = [
|
|||
name: 'text',
|
||||
type: 'string',
|
||||
required: true,
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
displayOptions: {
|
||||
show: {
|
||||
|
|
|
@ -67,9 +67,6 @@ export class Markdown implements INodeType {
|
|||
displayName: 'Markdown',
|
||||
name: 'markdown',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
mode: ['markdownToHtml'],
|
||||
|
|
|
@ -56,9 +56,6 @@ export const messageFields: INodeProperties[] = [
|
|||
displayName: 'Text',
|
||||
name: 'text',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
placeholder: 'Hello from n8n!',
|
||||
displayOptions: {
|
||||
|
@ -136,9 +133,6 @@ export const messageFields: INodeProperties[] = [
|
|||
},
|
||||
},
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
description:
|
||||
'A plain text message to display in case the HTML cannot be rendered by the Matrix client',
|
||||
},
|
||||
|
|
|
@ -24,9 +24,6 @@ export const messagePostDescription: MessageProperties = [
|
|||
displayName: 'Message',
|
||||
name: 'message',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
displayOptions: {
|
||||
show: {
|
||||
|
@ -229,9 +226,6 @@ export const messagePostDescription: MessageProperties = [
|
|||
displayName: 'Author Icon',
|
||||
name: 'author_icon',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'Icon which should appear for the user',
|
||||
},
|
||||
|
@ -239,9 +233,6 @@ export const messagePostDescription: MessageProperties = [
|
|||
displayName: 'Author Link',
|
||||
name: 'author_link',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'Link for the author',
|
||||
},
|
||||
|
@ -263,9 +254,6 @@ export const messagePostDescription: MessageProperties = [
|
|||
displayName: 'Fallback Text',
|
||||
name: 'fallback',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'Required plain-text summary of the attachment',
|
||||
},
|
||||
|
@ -313,9 +301,6 @@ export const messagePostDescription: MessageProperties = [
|
|||
displayName: 'Footer',
|
||||
name: 'footer',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'Text of footer to add',
|
||||
},
|
||||
|
@ -323,9 +308,6 @@ export const messagePostDescription: MessageProperties = [
|
|||
displayName: 'Footer Icon',
|
||||
name: 'footer_icon',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'Icon which should appear next to footer',
|
||||
},
|
||||
|
@ -333,9 +315,6 @@ export const messagePostDescription: MessageProperties = [
|
|||
displayName: 'Image URL',
|
||||
name: 'image_url',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'URL of image',
|
||||
},
|
||||
|
@ -343,9 +322,6 @@ export const messagePostDescription: MessageProperties = [
|
|||
displayName: 'Pretext',
|
||||
name: 'pretext',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'Text which appears before the message block',
|
||||
},
|
||||
|
@ -353,9 +329,6 @@ export const messagePostDescription: MessageProperties = [
|
|||
displayName: 'Text',
|
||||
name: 'text',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'Text to send',
|
||||
},
|
||||
|
@ -363,9 +336,6 @@ export const messagePostDescription: MessageProperties = [
|
|||
displayName: 'Thumbnail URL',
|
||||
name: 'thumb_url',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'URL of thumbnail',
|
||||
},
|
||||
|
@ -373,9 +343,6 @@ export const messagePostDescription: MessageProperties = [
|
|||
displayName: 'Title',
|
||||
name: 'title',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'Title of the message',
|
||||
},
|
||||
|
@ -383,9 +350,6 @@ export const messagePostDescription: MessageProperties = [
|
|||
displayName: 'Title Link',
|
||||
name: 'title_link',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'Link of the title',
|
||||
},
|
||||
|
|
|
@ -42,9 +42,6 @@ export const messagePostEphemeralDescription: MessageProperties = [
|
|||
displayName: 'Message',
|
||||
name: 'message',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
displayOptions: {
|
||||
show: {
|
||||
|
|
|
@ -182,9 +182,6 @@ export class Medium implements INodeType {
|
|||
default: '',
|
||||
placeholder: 'My open source contribution',
|
||||
required: true,
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: ['create'],
|
||||
|
|
|
@ -91,9 +91,6 @@ export class MicrosoftSql implements INodeType {
|
|||
displayName: 'Query',
|
||||
name: 'query',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: ['executeQuery'],
|
||||
|
|
|
@ -100,9 +100,6 @@ export const channelFields: INodeProperties[] = [
|
|||
displayName: 'Description',
|
||||
name: 'description',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: "Channel's description",
|
||||
},
|
||||
|
@ -322,9 +319,6 @@ export const channelFields: INodeProperties[] = [
|
|||
displayName: 'Description',
|
||||
name: 'description',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: "Channel's description",
|
||||
},
|
||||
|
|
|
@ -98,9 +98,6 @@ export const channelMessageFields: INodeProperties[] = [
|
|||
name: 'message',
|
||||
required: true,
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: ['create'],
|
||||
|
|
|
@ -86,9 +86,6 @@ export const chatMessageFields: INodeProperties[] = [
|
|||
name: 'message',
|
||||
required: true,
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: ['create'],
|
||||
|
|
|
@ -130,9 +130,6 @@ export const activityFields: INodeProperties[] = [
|
|||
type: 'string',
|
||||
default: '',
|
||||
description: 'Description of the activity - max 100,000 characters',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
|
@ -261,9 +258,6 @@ export const activityFields: INodeProperties[] = [
|
|||
type: 'string',
|
||||
default: '',
|
||||
description: 'Description to add more details on the activity - max 100,000 characters',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Happened At',
|
||||
|
|
|
@ -83,9 +83,6 @@ export const callFields: INodeProperties[] = [
|
|||
displayName: 'Description',
|
||||
name: 'content',
|
||||
description: 'Description of the call - max 100,000 characters',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
type: 'string',
|
||||
required: true,
|
||||
default: '',
|
||||
|
|
|
@ -72,9 +72,6 @@ export const journalEntryFields: INodeProperties[] = [
|
|||
type: 'string',
|
||||
required: true,
|
||||
default: '',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['journalEntry'],
|
||||
|
@ -189,9 +186,6 @@ export const journalEntryFields: INodeProperties[] = [
|
|||
description: 'Content of the journal entry - max 100,000 characters',
|
||||
type: 'string',
|
||||
default: '',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Title',
|
||||
|
|
|
@ -70,9 +70,6 @@ export const noteFields: INodeProperties[] = [
|
|||
name: 'body',
|
||||
description: 'Body of the note - max 100,000 characters',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
required: true,
|
||||
default: '',
|
||||
displayOptions: {
|
||||
|
@ -210,9 +207,6 @@ export const noteFields: INodeProperties[] = [
|
|||
name: 'body',
|
||||
description: 'Body of the note - max 100,000 characters',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -157,9 +157,6 @@ export const reminderFields: INodeProperties[] = [
|
|||
type: 'string',
|
||||
default: '',
|
||||
description: 'Description about the reminder - Max 100,000 characters',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
|
@ -277,9 +274,6 @@ export const reminderFields: INodeProperties[] = [
|
|||
type: 'string',
|
||||
default: '',
|
||||
description: 'Description about the reminder - Max 100,000 characters',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Frequency Type',
|
||||
|
|
|
@ -98,9 +98,6 @@ export const taskFields: INodeProperties[] = [
|
|||
type: 'string',
|
||||
default: '',
|
||||
description: 'Description of the task - max 100,000 characters',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
|
@ -225,9 +222,6 @@ export const taskFields: INodeProperties[] = [
|
|||
type: 'string',
|
||||
default: '',
|
||||
description: 'Description of the task - max 100,000 characters',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Title',
|
||||
|
|
|
@ -71,9 +71,6 @@ export class MySql implements INodeType {
|
|||
displayName: 'Query',
|
||||
name: 'query',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: ['executeQuery'],
|
||||
|
|
|
@ -900,9 +900,6 @@ export function getSearchFilters(resource: string) {
|
|||
displayName: 'Filters (JSON)',
|
||||
name: 'filterJson',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
version: [2],
|
||||
|
|
|
@ -516,9 +516,6 @@ export const incidentFields: INodeProperties[] = [
|
|||
displayName: 'Resolution',
|
||||
name: 'resolution',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'The resolution for this incident if status is set to resolved',
|
||||
},
|
||||
|
|
|
@ -51,9 +51,6 @@ export const incidentNoteFields: INodeProperties[] = [
|
|||
displayName: 'Content',
|
||||
name: 'content',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
required: true,
|
||||
default: '',
|
||||
displayOptions: {
|
||||
|
|
|
@ -675,7 +675,6 @@ export class Pipedrive implements INodeType {
|
|||
name: 'note',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
rows: 5,
|
||||
},
|
||||
default: '',
|
||||
|
@ -848,7 +847,6 @@ export class Pipedrive implements INodeType {
|
|||
name: 'note',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
rows: 5,
|
||||
},
|
||||
default: '',
|
||||
|
|
|
@ -70,9 +70,6 @@ export class Postgres implements INodeType {
|
|||
displayName: 'Query',
|
||||
name: 'query',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: ['executeQuery'],
|
||||
|
|
|
@ -60,9 +60,6 @@ export class QuestDb implements INodeType {
|
|||
displayName: 'Query',
|
||||
name: 'query',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: ['executeQuery'],
|
||||
|
|
|
@ -102,9 +102,6 @@ export const billFields: INodeProperties[] = [
|
|||
description: 'Textual description of the line item',
|
||||
type: 'string',
|
||||
default: '',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Detail Type',
|
||||
|
@ -242,9 +239,6 @@ export const billFields: INodeProperties[] = [
|
|||
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,
|
||||
},
|
||||
},
|
||||
],
|
||||
displayOptions: {
|
||||
|
|
|
@ -139,9 +139,6 @@ export const customerFields: INodeProperties[] = [
|
|||
placeholder: "WHERE Metadata.LastUpdatedTime > '2021-01-01'",
|
||||
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.',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
},
|
||||
],
|
||||
displayOptions: {
|
||||
|
|
|
@ -149,9 +149,6 @@ export const employeeFields: INodeProperties[] = [
|
|||
placeholder: "WHERE Metadata.LastUpdatedTime > '2021-01-01'",
|
||||
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.',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
},
|
||||
],
|
||||
displayOptions: {
|
||||
|
|
|
@ -101,9 +101,6 @@ export const estimateFields: INodeProperties[] = [
|
|||
description: 'Textual description of the line item',
|
||||
type: 'string',
|
||||
default: '',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Detail Type',
|
||||
|
@ -293,9 +290,6 @@ export const estimateFields: INodeProperties[] = [
|
|||
placeholder: "WHERE Metadata.LastUpdatedTime > '2021-01-01'",
|
||||
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.',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
},
|
||||
],
|
||||
displayOptions: {
|
||||
|
|
|
@ -106,9 +106,6 @@ export const invoiceFields: INodeProperties[] = [
|
|||
description: 'Textual description of the line item',
|
||||
type: 'string',
|
||||
default: '',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Detail Type',
|
||||
|
@ -298,9 +295,6 @@ export const invoiceFields: INodeProperties[] = [
|
|||
placeholder: "WHERE Metadata.LastUpdatedTime > '2021-01-01'",
|
||||
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.',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
},
|
||||
],
|
||||
displayOptions: {
|
||||
|
|
|
@ -95,9 +95,6 @@ export const itemFields: INodeProperties[] = [
|
|||
placeholder: "WHERE Metadata.LastUpdatedTime > '2021-01-01'",
|
||||
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.',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
},
|
||||
],
|
||||
displayOptions: {
|
||||
|
|
|
@ -234,9 +234,6 @@ export const paymentFields: INodeProperties[] = [
|
|||
placeholder: "WHERE Metadata.LastUpdatedTime > '2021-01-01'",
|
||||
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.',
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
},
|
||||
],
|
||||
displayOptions: {
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue