mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
* 🎨 Change current defualt ressource to contact
* Change display name for list membership
* 🎨 Change display name for ressource properties
* 🔥 Remove Name & ID in Display name
* 🐛 Fix simplify data where behavior was wrong
* 🎨 Move simplfy output to additional fields
* Change data type from string to number for IDs
* Add tooltip for contact ID
* 🎨 Change tooltip for list of Id's
* Change name of fields and reorgaized options
* 🥅 Add clearer errors for some specific cases
* 🎨 changed filters in Deal get all
* Deprecate form ressource
* ✨ add pipeline dropdown to auto fetch
* 🎨 Change direction's name
* 🎨 Change description of filter groups
* 🎨 Add validation and errors for maximum filters
* ✨ Add ressource locator to all ressources
* 🎨 add tooltip for timestamp when using expressions
* ✨add versioning
* 🐛 fixes small bugs and ui problems
* remove show options that was breaking custom prop
* ✨ add ownership to deals
* ✨ add notice for credential depreciation
* 🎨 Refactor names for RLC
* 🎨 Fixes to Deal
* ✨ Inprove delete confirmation message
* 🎨 Fixe titles of fields
* 🎨 Fixe correct ressource hint
* 🎨 Improve error when requesting non existing ressource
* ⚡️ Improve get deal
* ✨ Improve search by domain for companies
* ✨ Improve getting recently created deals
* 🎨 Improve versioning file structure
* 🥅 Improve error for unknown ids
* ✨ Add filters to recently search for companies
* ✨ Uniformize including properties for contact
* ✨ Improve get all operation for Companies
* 🎨 Change filters name
* 🎨 Remove useless descriptions
* 🎨Improve description
* ✨ Dynamically retrieve the correct operator for the properties
* 🥅 Improve error handeling
* 🥅 improve error when not finding the id
* ⚡️Add searchable feature to Deal and contacts
* 🚨 Fix linting issues
* 🚨 Fix linting issues for V1 Hubspot
* 🐛 Fix pairedItem for v2 hubspot
* 🚨 Fix linting in HubSpot Description
* 🚨 More linting fixes
* Fix error handling
* Update endpoint for deleting object
* Fix label for recent actions
* 🐛 fix listMemberships typo in V1 and V2
* docs: Stop assuming the user's gender in code comments (after merge)
c87262a312
* fixing V1 GenericFunctions.ts api query limit as number
* Update description for ticket
* Add type to RLC
* Revert "Add type to RLC"
This reverts commit 578dacfb97bb631df7edb6e62ac1abfedad096d3.
* Add type to RLC engagement
---------
Co-authored-by: Marcus <marcus@n8n.io>
316 lines
8.1 KiB
TypeScript
316 lines
8.1 KiB
TypeScript
import type { 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',
|
|
action: 'Get all fields from a form',
|
|
},
|
|
{
|
|
name: 'Submit',
|
|
value: 'submit',
|
|
description: 'Submit data to a form',
|
|
action: 'Submit 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/code-examples/expressions/">expression</a>.',
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'additionalFields',
|
|
type: 'collection',
|
|
placeholder: 'Add Option',
|
|
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. When using expressions, the time should be specified in YYYY-MM-DD hh-mm-ss format.',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
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: 'number',
|
|
default: '',
|
|
description: 'The ID of a page created on the HubSpot CMS',
|
|
},
|
|
{
|
|
displayName: 'SFDC Campaign ID',
|
|
name: 'sfdcCampaignId',
|
|
type: 'number',
|
|
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: 'number',
|
|
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/code-examples/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/code-examples/expressions/">expression</a>.',
|
|
},
|
|
{
|
|
displayName: 'Value',
|
|
name: 'value',
|
|
type: 'boolean',
|
|
default: false,
|
|
// eslint-disable-next-line n8n-nodes-base/node-param-description-boolean-without-whether
|
|
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/code-examples/expressions/">expression</a>.',
|
|
},
|
|
];
|