mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +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:
@@ -66,7 +66,7 @@ export const webinarFields: INodeProperties[] = [
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'User ID or email ID.',
|
||||
description: 'User ID or email ID',
|
||||
},
|
||||
{
|
||||
displayName: 'Additional Fields',
|
||||
@@ -91,14 +91,14 @@ export const webinarFields: INodeProperties[] = [
|
||||
name: 'agenda',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Webinar agenda.',
|
||||
description: 'Webinar agenda',
|
||||
},
|
||||
{
|
||||
displayName: 'Alternative Hosts',
|
||||
name: 'alternativeHosts',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Alternative hosts email IDs.',
|
||||
description: 'Alternative hosts email IDs',
|
||||
},
|
||||
{
|
||||
displayName: 'Approval Type',
|
||||
@@ -140,7 +140,7 @@ export const webinarFields: INodeProperties[] = [
|
||||
|
||||
],
|
||||
default: 'both',
|
||||
description: 'Determine how participants can join audio portion of the webinar.',
|
||||
description: 'Determine how participants can join audio portion of the webinar',
|
||||
},
|
||||
{
|
||||
displayName: 'Auto Recording',
|
||||
@@ -173,28 +173,28 @@ export const webinarFields: INodeProperties[] = [
|
||||
name: 'hostVideo',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Start video when host joins the webinar.',
|
||||
description: 'Start video when host joins the webinar',
|
||||
},
|
||||
{
|
||||
displayName: 'Panelists Video',
|
||||
name: 'panelistsVideo',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Start video when panelists joins the webinar.',
|
||||
description: 'Start video when panelists joins the webinar',
|
||||
},
|
||||
{
|
||||
displayName: 'Password',
|
||||
name: 'password',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Password to join the webinar with maximum 10 characters.',
|
||||
description: 'Password to join the webinar with maximum 10 characters',
|
||||
},
|
||||
{
|
||||
displayName: 'Practice Session',
|
||||
name: 'practiceSession',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Enable Practice session.',
|
||||
description: 'Enable Practice session',
|
||||
},
|
||||
{
|
||||
displayName: 'Registration Type',
|
||||
@@ -232,7 +232,7 @@ export const webinarFields: INodeProperties[] = [
|
||||
loadOptionsMethod: 'getTimezones',
|
||||
},
|
||||
default: '',
|
||||
description: `Time zone used in the response. The default is the time zone of the calendar.`,
|
||||
description: 'Time zone used in the response. The default is the time zone of the calendar.',
|
||||
},
|
||||
{
|
||||
displayName: 'Webinar Topic',
|
||||
@@ -306,14 +306,14 @@ export const webinarFields: INodeProperties[] = [
|
||||
name: 'occurrenceId',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'To view webinar details of a particular occurrence of the recurring webinar.',
|
||||
description: 'To view webinar details of a particular occurrence of the recurring webinar',
|
||||
},
|
||||
{
|
||||
displayName: 'Show Previous Occurrences',
|
||||
name: 'showPreviousOccurrences',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'To view webinar details of all previous occurrences of the recurring webinar.',
|
||||
description: 'To view webinar details of all previous occurrences of the recurring webinar',
|
||||
},
|
||||
],
|
||||
},
|
||||
@@ -336,7 +336,7 @@ export const webinarFields: INodeProperties[] = [
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'User ID or email-ID.',
|
||||
description: 'User ID or email-ID',
|
||||
},
|
||||
{
|
||||
displayName: 'Return All',
|
||||
@@ -353,7 +353,7 @@ export const webinarFields: 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',
|
||||
@@ -377,7 +377,7 @@ export const webinarFields: INodeProperties[] = [
|
||||
maxValue: 300,
|
||||
},
|
||||
default: 30,
|
||||
description: 'How many results to return.',
|
||||
description: 'Max number of results to return',
|
||||
},
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* webinar:delete */
|
||||
@@ -421,7 +421,7 @@ export const webinarFields: INodeProperties[] = [
|
||||
name: 'occurrenceId',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Webinar occurrence ID.',
|
||||
description: 'Webinar occurrence ID',
|
||||
},
|
||||
|
||||
],
|
||||
@@ -446,7 +446,7 @@ export const webinarFields: INodeProperties[] = [
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'User ID or email address of user.',
|
||||
description: 'User ID or email address of user',
|
||||
},
|
||||
{
|
||||
displayName: 'Additional Fields',
|
||||
@@ -471,14 +471,14 @@ export const webinarFields: INodeProperties[] = [
|
||||
name: 'agenda',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Webinar agenda.',
|
||||
description: 'Webinar agenda',
|
||||
},
|
||||
{
|
||||
displayName: 'Alternative Hosts',
|
||||
name: 'alternativeHosts',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Alternative hosts email IDs.',
|
||||
description: 'Alternative hosts email IDs',
|
||||
},
|
||||
{
|
||||
displayName: 'Approval Type',
|
||||
@@ -540,7 +540,7 @@ export const webinarFields: INodeProperties[] = [
|
||||
|
||||
],
|
||||
default: 'both',
|
||||
description: 'Determine how participants can join audio portion of the webinar.',
|
||||
description: 'Determine how participants can join audio portion of the webinar',
|
||||
},
|
||||
{
|
||||
displayName: 'Duration',
|
||||
@@ -553,35 +553,35 @@ export const webinarFields: INodeProperties[] = [
|
||||
name: 'hostVideo',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Start video when host joins the webinar.',
|
||||
description: 'Start video when host joins the webinar',
|
||||
},
|
||||
{
|
||||
displayName: 'Occurrence ID',
|
||||
name: 'occurrenceId',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: `Webinar occurrence ID.`,
|
||||
description: 'Webinar occurrence ID',
|
||||
},
|
||||
{
|
||||
displayName: 'Password',
|
||||
name: 'password',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Password to join the webinar with maximum 10 characters.',
|
||||
description: 'Password to join the webinar with maximum 10 characters',
|
||||
},
|
||||
{
|
||||
displayName: 'Panelists Video',
|
||||
name: 'panelistsVideo',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Start video when panelists joins the webinar.',
|
||||
description: 'Start video when panelists joins the webinar',
|
||||
},
|
||||
{
|
||||
displayName: 'Practice Session',
|
||||
name: 'practiceSession',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Enable Practice session.',
|
||||
description: 'Enable Practice session',
|
||||
},
|
||||
{
|
||||
displayName: 'Registration Type',
|
||||
@@ -609,7 +609,7 @@ export const webinarFields: INodeProperties[] = [
|
||||
name: 'startTime',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
description: 'Start time should be used only for scheduled or recurring webinar with fixed time.',
|
||||
description: 'Start time should be used only for scheduled or recurring webinar with fixed time',
|
||||
},
|
||||
{
|
||||
displayName: 'Timezone',
|
||||
@@ -619,7 +619,7 @@ export const webinarFields: INodeProperties[] = [
|
||||
loadOptionsMethod: 'getTimezones',
|
||||
},
|
||||
default: '',
|
||||
description: `Time zone used in the response. The default is the time zone of the calendar.`,
|
||||
description: 'Time zone used in the response. The default is the time zone of the calendar.',
|
||||
},
|
||||
{
|
||||
displayName: 'Webinar Topic',
|
||||
|
||||
Reference in New Issue
Block a user