mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +00:00
refactor: Apply more eslint-plugin-n8n-nodes-base autofixable rules (#3243)
* ✏️ Alphabetize rules * 🔖 Update version * ⚡ Update lintfix command * ⚡ Run baseline lintfix * 📦 Update package-lock.json * 👕 Apply `node-param-description-untrimmed` (#3200) * Removing unneeded backticks (#3249) * 👕 Apply node-param-description-wrong-for-return-all (#3253) * 👕 Apply node-param-description-missing-limit (#3252) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-description-excess-final-period (#3250) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-description-unencoded-angle-brackets (#3256) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-description-url-missing-protocol (#3258) * 👕 Apply `node-param-description-miscased-id` (#3254) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-description-wrong-for-limit (#3257) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-description-wrong-for-ignore-ssl-issues (#3261) * 👕 Apply rule * ⚡ Restore lintfix script * ⚡ Restore lintfix script Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com> Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com>
This commit is contained in:
@@ -38,7 +38,7 @@ export const taskOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Summary',
|
||||
value: 'getSummary',
|
||||
description: `Returns an overview of task's metadata`,
|
||||
description: 'Returns an overview of task\'s metadata',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
@@ -75,7 +75,7 @@ export const taskFields: INodeProperties[] = [
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getTaskStatuses',
|
||||
},
|
||||
description: 'The current status of the task, such as In Progress or Completed.',
|
||||
description: 'The current status of the task, such as In Progress or Completed',
|
||||
},
|
||||
{
|
||||
displayName: 'Additional Fields',
|
||||
@@ -99,7 +99,7 @@ export const taskFields: INodeProperties[] = [
|
||||
name: 'activityDate',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
description: `Represents the due date of the task. This field has a timestamp that is always set to midnight in the Coordinated Universal Time (UTC) time zone.`,
|
||||
description: 'Represents the due date of the task. This field has a timestamp that is always set to midnight in the Coordinated Universal Time (UTC) time zone.',
|
||||
},
|
||||
{
|
||||
displayName: 'Call Disposition',
|
||||
@@ -116,7 +116,7 @@ export const taskFields: INodeProperties[] = [
|
||||
name: 'callDurationInSeconds',
|
||||
type: 'number',
|
||||
default: '',
|
||||
description: 'Duration of the call in seconds. Not subject to field-level security, available for any user in an organization with Salesforce CRM Call Center',
|
||||
description: 'Duration of the call in seconds. Not subject to field-level security, available for any user in an organization with Salesforce CRM Call Center.',
|
||||
},
|
||||
{
|
||||
displayName: 'Call Object',
|
||||
@@ -126,7 +126,7 @@ export const taskFields: INodeProperties[] = [
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: `Name of a call center. Limit is 255 characters. Not subject to field-level security, available for any user in an organization with Salesforce CRM Call Center.`,
|
||||
description: 'Name of a call center. Limit is 255 characters. Not subject to field-level security, available for any user in an organization with Salesforce CRM Call Center.',
|
||||
},
|
||||
{
|
||||
displayName: 'Call Type',
|
||||
@@ -136,7 +136,7 @@ export const taskFields: INodeProperties[] = [
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getTaskCallTypes',
|
||||
},
|
||||
description: 'The type of call being answered: Inbound, Internal, or Outbound.',
|
||||
description: 'The type of call being answered: Inbound, Internal, or Outbound',
|
||||
},
|
||||
{
|
||||
displayName: 'Custom Fields',
|
||||
@@ -146,7 +146,7 @@ export const taskFields: INodeProperties[] = [
|
||||
typeOptions: {
|
||||
multipleValues: true,
|
||||
},
|
||||
description: 'Filter by custom fields ',
|
||||
description: 'Filter by custom fields',
|
||||
default: {},
|
||||
options: [
|
||||
{
|
||||
@@ -161,14 +161,14 @@ export const taskFields: INodeProperties[] = [
|
||||
loadOptionsMethod: 'getCustomFields',
|
||||
},
|
||||
default: '',
|
||||
description: 'The ID of the field to add custom field to.',
|
||||
description: 'The ID of the field to add custom field to',
|
||||
},
|
||||
{
|
||||
displayName: 'Value',
|
||||
name: 'value',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The value to set on custom field.',
|
||||
description: 'The value to set on custom field',
|
||||
},
|
||||
],
|
||||
},
|
||||
@@ -182,14 +182,14 @@ export const taskFields: INodeProperties[] = [
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
description: 'Contains a text description of the task.',
|
||||
description: 'Contains a text description of the task',
|
||||
},
|
||||
{
|
||||
displayName: 'Is ReminderSet',
|
||||
name: 'isReminderSet',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Indicates whether a popup reminder has been set for the task (true) or not (false).',
|
||||
description: 'Indicates whether a popup reminder has been set for the task (true) or not (false)',
|
||||
},
|
||||
{
|
||||
displayName: 'Owner',
|
||||
@@ -199,7 +199,7 @@ export const taskFields: INodeProperties[] = [
|
||||
loadOptionsMethod: 'getUsers',
|
||||
},
|
||||
default: '',
|
||||
description: 'ID of the User who owns the record.',
|
||||
description: 'ID of the User who owns the record',
|
||||
},
|
||||
{
|
||||
displayName: 'Priority',
|
||||
@@ -209,7 +209,7 @@ export const taskFields: INodeProperties[] = [
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getTaskPriorities',
|
||||
},
|
||||
description: `Indicates the importance or urgency of a task, such as high or low.`,
|
||||
description: 'Indicates the importance or urgency of a task, such as high or low',
|
||||
},
|
||||
{
|
||||
displayName: 'Recurrence Type',
|
||||
@@ -219,7 +219,7 @@ export const taskFields: INodeProperties[] = [
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getTaskRecurrenceTypes',
|
||||
},
|
||||
description: 'Recurrence Type of the task.',
|
||||
description: 'Recurrence Type of the task',
|
||||
},
|
||||
{
|
||||
displayName: 'Recurrence Instance',
|
||||
@@ -236,21 +236,21 @@ export const taskFields: INodeProperties[] = [
|
||||
name: 'recurrenceInterval',
|
||||
type: 'number',
|
||||
default: '',
|
||||
description: 'The interval between recurring tasks.',
|
||||
description: 'The interval between recurring tasks',
|
||||
},
|
||||
{
|
||||
displayName: 'Recurrence Day Of Month',
|
||||
name: 'recurrenceDayOfMonth',
|
||||
type: 'number',
|
||||
default: '',
|
||||
description: 'The day of the month in which the task repeats.',
|
||||
description: 'The day of the month in which the task repeats',
|
||||
},
|
||||
{
|
||||
displayName: 'Recurrence Day Of Week Mask',
|
||||
name: 'recurrenceDayOfWeekMask',
|
||||
type: 'number',
|
||||
default: '',
|
||||
description: `The day or days of the week on which the task repeats. This field contains a bitmask. The values are as follows: Sunday = 1 Monday = 2 Tuesday = 4 Wednesday = 8 Thursday = 16 Friday = 32 Saturday = 64 Multiple days are represented as the sum of their numerical values. For example, Tuesday and Thursday = 4 + 16 = 20.`,
|
||||
description: 'The day or days of the week on which the task repeats. This field contains a bitmask. The values are as follows: Sunday = 1 Monday = 2 Tuesday = 4 Wednesday = 8 Thursday = 16 Friday = 32 Saturday = 64 Multiple days are represented as the sum of their numerical values. For example, Tuesday and Thursday = 4 + 16 = 20.',
|
||||
},
|
||||
{
|
||||
displayName: 'Recurrence End Date Only',
|
||||
@@ -314,7 +314,7 @@ export const taskFields: INodeProperties[] = [
|
||||
},
|
||||
],
|
||||
default: '',
|
||||
description: 'The month of the year in which the task repeats.',
|
||||
description: 'The month of the year in which the task repeats',
|
||||
},
|
||||
{
|
||||
displayName: 'Recurrence Regenerated Type',
|
||||
@@ -335,21 +335,21 @@ export const taskFields: INodeProperties[] = [
|
||||
value: 'RecurrenceRegenerated',
|
||||
},
|
||||
],
|
||||
description: `Represents what triggers a repeating task to repeat. Add this field to a page layout together with the RecurrenceInterval field, which determines the number of days between the triggering date (due date or close date) and the due date of the next repeating task in the series. Label is Repeat This Task.`,
|
||||
description: 'Represents what triggers a repeating task to repeat. Add this field to a page layout together with the RecurrenceInterval field, which determines the number of days between the triggering date (due date or close date) and the due date of the next repeating task in the series. Label is Repeat This Task.',
|
||||
},
|
||||
{
|
||||
displayName: 'Recurrence Start Date Only',
|
||||
name: 'recurrenceEndDateOnly',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
description: `The date when the recurring task begins. Must be a date and time before RecurrenceEndDateOnly.`,
|
||||
description: 'The date when the recurring task begins. Must be a date and time before RecurrenceEndDateOnly.',
|
||||
},
|
||||
{
|
||||
displayName: 'Recurrence TimeZone SidKey',
|
||||
name: 'recurrenceTimeZoneSidKey',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: `The time zone associated with the recurring task. For example, “UTC-8:00” for Pacific Standard Time.`,
|
||||
description: 'The time zone associated with the recurring task. For example, “UTC-8:00” for Pacific Standard Time.',
|
||||
},
|
||||
{
|
||||
displayName: 'Reminder Date Time',
|
||||
@@ -366,7 +366,7 @@ export const taskFields: INodeProperties[] = [
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getTaskSubjects',
|
||||
},
|
||||
description: 'The subject line of the task, such as “Call” or “Send Quote.” Limit: 255 characters.',
|
||||
description: 'The subject line of the task, such as “Call” or “Send Quote.” Limit: 255 characters',
|
||||
},
|
||||
{
|
||||
displayName: 'Type',
|
||||
@@ -376,7 +376,7 @@ export const taskFields: INodeProperties[] = [
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getTaskTypes',
|
||||
},
|
||||
description: `Represents Type of the task, such as Call or Meeting.`,
|
||||
description: 'Represents Type of the task, such as Call or Meeting',
|
||||
},
|
||||
{
|
||||
displayName: 'What Id',
|
||||
@@ -390,7 +390,7 @@ export const taskFields: INodeProperties[] = [
|
||||
name: 'whoId',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: `The WhoId represents a human such as a lead or a contact. WhoIds are polymorphic. Polymorphic means a WhoId is equivalent to a contact’s ID or a lead’s ID.`,
|
||||
description: 'The WhoId represents a human such as a lead or a contact. WhoIds are polymorphic. Polymorphic means a WhoId is equivalent to a contact’s ID or a lead’s ID.',
|
||||
},
|
||||
],
|
||||
},
|
||||
@@ -414,7 +414,7 @@ export const taskFields: INodeProperties[] = [
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'ID of task that needs to be fetched.',
|
||||
description: 'ID of task that needs to be fetched',
|
||||
},
|
||||
{
|
||||
displayName: 'Update Fields',
|
||||
@@ -438,7 +438,7 @@ export const taskFields: INodeProperties[] = [
|
||||
name: 'activityDate',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
description: `Represents the due date of the task. This field has a timestamp that is always set to midnight in the Coordinated Universal Time (UTC) time zone.`,
|
||||
description: 'Represents the due date of the task. This field has a timestamp that is always set to midnight in the Coordinated Universal Time (UTC) time zone.',
|
||||
},
|
||||
{
|
||||
displayName: 'Call Disposition',
|
||||
@@ -455,7 +455,7 @@ export const taskFields: INodeProperties[] = [
|
||||
name: 'callDurationInSeconds',
|
||||
type: 'number',
|
||||
default: '',
|
||||
description: 'Duration of the call in seconds. Not subject to field-level security, available for any user in an organization with Salesforce CRM Call Center',
|
||||
description: 'Duration of the call in seconds. Not subject to field-level security, available for any user in an organization with Salesforce CRM Call Center.',
|
||||
},
|
||||
{
|
||||
displayName: 'Call Object',
|
||||
@@ -465,7 +465,7 @@ export const taskFields: INodeProperties[] = [
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: `Name of a call center. Limit is 255 characters. Not subject to field-level security, available for any user in an organization with Salesforce CRM Call Center.`,
|
||||
description: 'Name of a call center. Limit is 255 characters. Not subject to field-level security, available for any user in an organization with Salesforce CRM Call Center.',
|
||||
},
|
||||
{
|
||||
displayName: 'Call Type',
|
||||
@@ -475,7 +475,7 @@ export const taskFields: INodeProperties[] = [
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getTaskCallTypes',
|
||||
},
|
||||
description: 'The type of call being answered: Inbound, Internal, or Outbound.',
|
||||
description: 'The type of call being answered: Inbound, Internal, or Outbound',
|
||||
},
|
||||
{
|
||||
displayName: 'Custom Fields',
|
||||
@@ -485,7 +485,7 @@ export const taskFields: INodeProperties[] = [
|
||||
typeOptions: {
|
||||
multipleValues: true,
|
||||
},
|
||||
description: 'Filter by custom fields ',
|
||||
description: 'Filter by custom fields',
|
||||
default: {},
|
||||
options: [
|
||||
{
|
||||
@@ -500,14 +500,14 @@ export const taskFields: INodeProperties[] = [
|
||||
loadOptionsMethod: 'getCustomFields',
|
||||
},
|
||||
default: '',
|
||||
description: 'The ID of the field to add custom field to.',
|
||||
description: 'The ID of the field to add custom field to',
|
||||
},
|
||||
{
|
||||
displayName: 'Value',
|
||||
name: 'value',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The value to set on custom field.',
|
||||
description: 'The value to set on custom field',
|
||||
},
|
||||
],
|
||||
},
|
||||
@@ -521,14 +521,14 @@ export const taskFields: INodeProperties[] = [
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
description: 'Contains a text description of the task.',
|
||||
description: 'Contains a text description of the task',
|
||||
},
|
||||
{
|
||||
displayName: 'Is ReminderSet',
|
||||
name: 'isReminderSet',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Indicates whether a popup reminder has been set for the task (true) or not (false).',
|
||||
description: 'Indicates whether a popup reminder has been set for the task (true) or not (false)',
|
||||
},
|
||||
{
|
||||
displayName: 'Owner',
|
||||
@@ -538,7 +538,7 @@ export const taskFields: INodeProperties[] = [
|
||||
loadOptionsMethod: 'getUsers',
|
||||
},
|
||||
default: '',
|
||||
description: 'ID of the User who owns the record.',
|
||||
description: 'ID of the User who owns the record',
|
||||
},
|
||||
{
|
||||
displayName: 'Priority',
|
||||
@@ -548,7 +548,7 @@ export const taskFields: INodeProperties[] = [
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getTaskPriorities',
|
||||
},
|
||||
description: `Indicates the importance or urgency of a task, such as high or low.`,
|
||||
description: 'Indicates the importance or urgency of a task, such as high or low',
|
||||
},
|
||||
{
|
||||
displayName: 'Status',
|
||||
@@ -558,7 +558,7 @@ export const taskFields: INodeProperties[] = [
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getTaskStatuses',
|
||||
},
|
||||
description: 'The current status of the task, such as In Progress or Completed.',
|
||||
description: 'The current status of the task, such as In Progress or Completed',
|
||||
},
|
||||
{
|
||||
displayName: 'Subject',
|
||||
@@ -568,21 +568,21 @@ export const taskFields: INodeProperties[] = [
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getTaskSubjects',
|
||||
},
|
||||
description: 'The subject line of the task, such as “Call” or “Send Quote.” Limit: 255 characters.',
|
||||
description: 'The subject line of the task, such as “Call” or “Send Quote.” Limit: 255 characters',
|
||||
},
|
||||
{
|
||||
displayName: 'Recurrence Day Of Month',
|
||||
name: 'recurrenceDayOfMonth',
|
||||
type: 'number',
|
||||
default: '',
|
||||
description: 'The day of the month in which the task repeats.',
|
||||
description: 'The day of the month in which the task repeats',
|
||||
},
|
||||
{
|
||||
displayName: 'Recurrence Day Of Week Mask',
|
||||
name: 'recurrenceDayOfWeekMask',
|
||||
type: 'number',
|
||||
default: '',
|
||||
description: `The day or days of the week on which the task repeats. This field contains a bitmask. The values are as follows: Sunday = 1 Monday = 2 Tuesday = 4 Wednesday = 8 Thursday = 16 Friday = 32 Saturday = 64. Multiple days are represented as the sum of their numerical values. For example, Tuesday and Thursday = 4 + 16 = 20.`,
|
||||
description: 'The day or days of the week on which the task repeats. This field contains a bitmask. The values are as follows: Sunday = 1 Monday = 2 Tuesday = 4 Wednesday = 8 Thursday = 16 Friday = 32 Saturday = 64. Multiple days are represented as the sum of their numerical values. For example, Tuesday and Thursday = 4 + 16 = 20.',
|
||||
},
|
||||
{
|
||||
displayName: 'Recurrence End Date Only',
|
||||
@@ -606,7 +606,7 @@ export const taskFields: INodeProperties[] = [
|
||||
name: 'recurrenceInterval',
|
||||
type: 'number',
|
||||
default: '',
|
||||
description: 'The interval between recurring tasks.',
|
||||
description: 'The interval between recurring tasks',
|
||||
},
|
||||
{
|
||||
displayName: 'Recurrence Month Of Year',
|
||||
@@ -663,14 +663,14 @@ export const taskFields: INodeProperties[] = [
|
||||
},
|
||||
],
|
||||
default: '',
|
||||
description: 'The month of the year in which the task repeats.',
|
||||
description: 'The month of the year in which the task repeats',
|
||||
},
|
||||
{
|
||||
displayName: 'Recurrence Start Date Only',
|
||||
name: 'recurrenceEndDateOnly',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
description: `The date when the recurring task begins. Must be a date and time before RecurrenceEndDateOnly.`,
|
||||
description: 'The date when the recurring task begins. Must be a date and time before RecurrenceEndDateOnly.',
|
||||
},
|
||||
{
|
||||
displayName: 'Recurrence Regenerated Type',
|
||||
@@ -691,7 +691,7 @@ export const taskFields: INodeProperties[] = [
|
||||
value: 'RecurrenceRegenerated',
|
||||
},
|
||||
],
|
||||
description: `Represents what triggers a repeating task to repeat. Add this field to a page layout together with the RecurrenceInterval field, which determines the number of days between the triggering date (due date or close date) and the due date of the next repeating task in the series. Label is Repeat This Task.`,
|
||||
description: 'Represents what triggers a repeating task to repeat. Add this field to a page layout together with the RecurrenceInterval field, which determines the number of days between the triggering date (due date or close date) and the due date of the next repeating task in the series. Label is Repeat This Task.',
|
||||
},
|
||||
{
|
||||
displayName: 'Recurrence Type',
|
||||
@@ -701,14 +701,14 @@ export const taskFields: INodeProperties[] = [
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getTaskRecurrenceTypes',
|
||||
},
|
||||
description: 'Website for the task.',
|
||||
description: 'Website for the task',
|
||||
},
|
||||
{
|
||||
displayName: 'Recurrence TimeZone SidKey',
|
||||
name: 'recurrenceTimeZoneSidKey',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: `The time zone associated with the recurring task. For example, “UTC-8:00” for Pacific Standard Time.`,
|
||||
description: 'The time zone associated with the recurring task. For example, “UTC-8:00” for Pacific Standard Time.',
|
||||
},
|
||||
{
|
||||
displayName: 'Reminder Date Time',
|
||||
@@ -725,7 +725,7 @@ export const taskFields: INodeProperties[] = [
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getTaskTypes',
|
||||
},
|
||||
description: `Represents Type of the task, such as Call or Meeting.`,
|
||||
description: 'Represents Type of the task, such as Call or Meeting',
|
||||
},
|
||||
{
|
||||
displayName: 'What Id',
|
||||
@@ -739,7 +739,7 @@ export const taskFields: INodeProperties[] = [
|
||||
name: 'whoId',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: `The WhoId represents a human such as a lead or a contact. WhoIds are polymorphic. Polymorphic means a WhoId is equivalent to a contact’s ID or a lead’s ID.`,
|
||||
description: 'The WhoId represents a human such as a lead or a contact. WhoIds are polymorphic. Polymorphic means a WhoId is equivalent to a contact’s ID or a lead’s ID.',
|
||||
},
|
||||
],
|
||||
},
|
||||
@@ -763,7 +763,7 @@ export const taskFields: INodeProperties[] = [
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'ID of task that needs to be fetched.',
|
||||
description: 'ID of task that needs to be fetched',
|
||||
},
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
@@ -785,7 +785,7 @@ export const taskFields: INodeProperties[] = [
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'ID of task that needs to be fetched.',
|
||||
description: 'ID of task that needs to be fetched',
|
||||
},
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
@@ -806,7 +806,7 @@ export const taskFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
default: false,
|
||||
description: 'If all results should be returned or only up to a given limit.',
|
||||
description: 'Whether to return all results or only up to a given limit',
|
||||
},
|
||||
{
|
||||
displayName: 'Limit',
|
||||
@@ -830,7 +830,7 @@ export const taskFields: INodeProperties[] = [
|
||||
maxValue: 100,
|
||||
},
|
||||
default: 50,
|
||||
description: 'How many results to return.',
|
||||
description: 'Max number of results to return',
|
||||
},
|
||||
{
|
||||
displayName: 'Options',
|
||||
@@ -857,7 +857,7 @@ export const taskFields: INodeProperties[] = [
|
||||
typeOptions: {
|
||||
multipleValues: true,
|
||||
},
|
||||
description: 'The condition to set.',
|
||||
description: 'The condition to set',
|
||||
default: {},
|
||||
options: [
|
||||
{
|
||||
@@ -872,7 +872,7 @@ export const taskFields: INodeProperties[] = [
|
||||
loadOptionsMethod: 'getTaskFields',
|
||||
},
|
||||
default: '',
|
||||
description: 'For date, number, or boolean, please use expressions.',
|
||||
description: 'For date, number, or boolean, please use expressions',
|
||||
},
|
||||
{
|
||||
displayName: 'Operation',
|
||||
|
||||
Reference in New Issue
Block a user