fix: Fix broken links in nodes (#3716)

This commit is contained in:
Mutasem Aldmour
2022-07-14 22:05:11 +02:00
committed by GitHub
parent 56a7ad4070
commit c9b7b6d30f
398 changed files with 1637 additions and 1637 deletions

View File

@@ -114,7 +114,7 @@ export const contactFields: INodeProperties[] = [
displayName: 'Contact Type Name or ID',
name: 'contactType',
type: 'options',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
typeOptions: {
loadOptionsMethod: 'getContactTypes',
},
@@ -166,7 +166,7 @@ export const contactFields: INodeProperties[] = [
displayName: 'Owner Name or ID',
name: 'ownerId',
type: 'options',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
typeOptions: {
loadOptionsMethod: 'getUsers',
},
@@ -227,7 +227,7 @@ export const contactFields: INodeProperties[] = [
displayName: 'Timezone Name or ID',
name: 'timezone',
type: 'options',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
typeOptions: {
loadOptionsMethod: 'getTimezones',
},
@@ -289,7 +289,7 @@ export const contactFields: INodeProperties[] = [
displayName: 'Country Code Name or ID',
name: 'countryCode',
type: 'options',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
typeOptions: {
loadOptionsMethod: 'getCountries',
},

View File

@@ -74,7 +74,7 @@ export const contactNoteFields: INodeProperties[] = [
},
},
default: '',
description: 'The infusionsoft user to create the note on behalf of. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
description: 'The infusionsoft user to create the note on behalf of. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
},
{
displayName: 'Contact ID',
@@ -272,7 +272,7 @@ export const contactNoteFields: INodeProperties[] = [
displayName: 'User Name or ID',
name: 'userId',
type: 'options',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
typeOptions: {
loadOptionsMethod: 'getUsers',
},
@@ -381,7 +381,7 @@ export const contactNoteFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: '',
description: 'The infusionsoft user to create the note on behalf of. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
description: 'The infusionsoft user to create the note on behalf of. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
},
],
},

View File

@@ -65,7 +65,7 @@ export const contactTagFields: INodeProperties[] = [
displayName: 'Tag Names or IDs',
name: 'tagIds',
type: 'multiOptions',
description: 'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
description: 'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
typeOptions: {
loadOptionsMethod: 'getTags',
},

View File

@@ -206,7 +206,7 @@ export const ecommerceOrderFields: INodeProperties[] = [
displayName: 'Country Code Name or ID',
name: 'countryCode',
type: 'options',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
typeOptions: {
loadOptionsMethod: 'getCountries',
},

View File

@@ -328,7 +328,7 @@ export const emailFields: INodeProperties[] = [
},
},
default: '',
description: 'The infusionsoft user to send the email on behalf of. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
description: 'The infusionsoft user to send the email on behalf of. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
},
{
displayName: 'Contact IDs',

View File

@@ -54,7 +54,7 @@ export class KeapTrigger implements INodeType {
displayName: 'Event Name or ID',
name: 'eventId',
type: 'options',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
typeOptions: {
loadOptionsMethod: 'getEvents',
},