mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
70ae90fa3c
* ⚡ Update `lintfix` script * 👕 Remove unneeded lint exceptions * 👕 Run baseline `lintfix` * 👕 Apply `node-param-description-miscased-url` (#3441) * 👕 Apply `rule node-param-placeholder-miscased-id` (#3443) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-name-wrong-for-upsert` (#3446) * 👕 Apply `node-param-min-value-wrong-for-limit` (#3442) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * Apply `node-param-display-name-wrong-for-dynamic-options` (#3454) * 🔨 fix * ⚡ Fix `Assigned To` fields Co-authored-by: Michael Kret <michael.k@radency.com> * 👕 Apply `rule node-param-default-wrong-for-number` (#3453) * 👕 Apply `node-param-default-wrong-for-string` (#3452) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * Apply `node-param-display-name-miscased` (#3449) * 🔨 fix * 🔨 exceptions * ⚡ review fixes * 👕 Apply `node-param-description-lowercase-first-char` (#3451) * ⚡ fix * ⚡ review fixes * ⚡ fix Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-description-wrong-for-dynamic-options` (#3456) * Rule working as intended * Add rule * 🔥 Remove repetitions * 👕 Add exceptions Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Small fix for `node-param-description-wrong-for-dynamic-options` * 👕 Apply `node-param-default-wrong-for-fixed-collection` (#3460) * 👕 Apply `node-param-description-line-break-html-tag` (#3462) * 👕 Run baseline `lintfix` * 👕 Apply `node-param-options-type-unsorted-items` (#3459) * ⚡ fix * 🔨 exceptions * Add exception for Salesmate and Zoom Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * ⚡ Restore `lintfix` command Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com> Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com> Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: brianinoa <54530642+brianinoa@users.noreply.github.com>
327 lines
7.9 KiB
TypeScript
327 lines
7.9 KiB
TypeScript
import {
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export const formOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'form',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Get Fields',
|
|
value: 'getFields',
|
|
description: 'Get all fields from a form',
|
|
},
|
|
{
|
|
name: 'Submit',
|
|
value: 'submit',
|
|
description: 'Submit data to a form',
|
|
},
|
|
],
|
|
default: 'getFields',
|
|
},
|
|
];
|
|
|
|
export const formFields: INodeProperties[] = [
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* form:submit */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Form Name or ID',
|
|
name: 'formId',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getForms',
|
|
},
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'form',
|
|
],
|
|
operation: [
|
|
'submit',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'The ID of the form you\'re sending data to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
|
},
|
|
{
|
|
displayName: 'Additional Fields',
|
|
name: 'additionalFields',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'form',
|
|
],
|
|
operation: [
|
|
'submit',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Skip Validation',
|
|
name: 'skipValidation',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Whether or not to skip validation based on the form settings',
|
|
},
|
|
{
|
|
displayName: 'Submitted At',
|
|
name: 'submittedAt',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'Time of the form submission',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'Context',
|
|
name: 'contextUi',
|
|
placeholder: 'Add Context',
|
|
type: 'fixedCollection',
|
|
typeOptions: {
|
|
multipleValues: false,
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'form',
|
|
],
|
|
operation: [
|
|
'submit',
|
|
],
|
|
},
|
|
},
|
|
default: {},
|
|
options: [
|
|
{
|
|
displayName: 'Context',
|
|
name: 'contextValue',
|
|
values: [
|
|
{
|
|
displayName: 'HubSpot Usertoken',
|
|
name: 'hutk',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Include this parameter and set it to the hubspotutk cookie value to enable cookie tracking on your submission',
|
|
},
|
|
{
|
|
displayName: 'IP Address',
|
|
name: 'ipAddress',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The IP address of the visitor filling out the form',
|
|
},
|
|
{
|
|
displayName: 'Page URI',
|
|
name: 'pageUri',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The URI of the page the submission happened on',
|
|
},
|
|
{
|
|
displayName: 'Page Name',
|
|
name: 'pageName',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The name or title of the page the submission happened on',
|
|
},
|
|
{
|
|
displayName: 'Page ID',
|
|
name: 'pageId',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The ID of a page created on the HubSpot CMS',
|
|
},
|
|
{
|
|
displayName: 'SFDC Campaign ID',
|
|
name: 'sfdcCampaignId',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'If the form is for an account using the HubSpot Salesforce Integration, you can include the ID of a Salesforce campaign to add the contact to the specified campaign',
|
|
},
|
|
{
|
|
displayName: 'Go to Webinar Webinar ID',
|
|
name: 'goToWebinarWebinarKey',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'If the form is for an account using the HubSpot GoToWebinar Integration, you can include the ID of a webinar to enroll the contact in that webinar when they submit the form',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'Legal Consent',
|
|
name: 'lengalConsentUi',
|
|
placeholder: 'Add Legal Consent',
|
|
type: 'fixedCollection',
|
|
typeOptions: {
|
|
multipleValues: false,
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'form',
|
|
],
|
|
operation: [
|
|
'submit',
|
|
],
|
|
},
|
|
},
|
|
default: {},
|
|
options: [
|
|
{
|
|
displayName: 'Consent',
|
|
name: 'lengalConsentValues',
|
|
values: [
|
|
{
|
|
displayName: 'Consent To Process',
|
|
name: 'consentToProcess',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Whether or not the visitor checked the Consent to process checkbox',
|
|
},
|
|
{
|
|
displayName: 'Text',
|
|
name: 'text',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The text displayed to the visitor for the Consent to process checkbox',
|
|
},
|
|
{
|
|
displayName: 'Communications',
|
|
name: 'communicationsUi',
|
|
placeholder: 'Add Communication',
|
|
type: 'fixedCollection',
|
|
typeOptions: {
|
|
multipleValues: true,
|
|
},
|
|
default: {},
|
|
options: [
|
|
{
|
|
displayName: 'Communication',
|
|
name: 'communicationValues',
|
|
values: [
|
|
{
|
|
displayName: 'Subcription Type Name or ID',
|
|
name: 'subscriptionTypeId',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getSubscriptionTypes',
|
|
},
|
|
default: '',
|
|
description: 'The ID of the specific subscription type. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
|
},
|
|
{
|
|
displayName: 'Value',
|
|
name: 'value',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Whether or not the visitor checked the checkbox for this subscription type',
|
|
},
|
|
{
|
|
displayName: 'Text',
|
|
name: 'text',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The text displayed to the visitor for this specific subscription checkbox',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'Legitimate Interest',
|
|
name: 'legitimateInterestValues',
|
|
values: [
|
|
{
|
|
displayName: 'Subcription Type Name or ID',
|
|
name: 'subscriptionTypeId',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getSubscriptionTypes',
|
|
},
|
|
default: '',
|
|
description: 'The ID of the specific subscription type that this forms indicates interest to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
|
},
|
|
{
|
|
displayName: 'Value',
|
|
name: 'value',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'This must be true when using the \'legitimateInterest\' option, as it reflects the consent indicated by the visitor when submitting the form',
|
|
},
|
|
{
|
|
displayName: 'Legal Basis',
|
|
name: 'legalBasis',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Customer',
|
|
value: 'CUSTOMER',
|
|
},
|
|
{
|
|
name: 'Lead',
|
|
value: 'LEAD',
|
|
},
|
|
],
|
|
default: '',
|
|
description: 'The privacy text displayed to the visitor',
|
|
},
|
|
{
|
|
displayName: 'Text',
|
|
name: 'text',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The privacy text displayed to the visitor',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* form:getFields */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Form Name or ID',
|
|
name: 'formId',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getForms',
|
|
},
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'form',
|
|
],
|
|
operation: [
|
|
'getFields',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'The ID of the form. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
|
},
|
|
];
|