mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
⚡ Add custom fields for Salesforce case create/update and alphabetize fields for update (#1688)
This commit is contained in:
@@ -111,6 +111,42 @@ export const caseFields = [
|
||||
default: '',
|
||||
description: 'ID of the associated Contact.',
|
||||
},
|
||||
{
|
||||
displayName: 'Custom Fields',
|
||||
name: 'customFieldsUi',
|
||||
placeholder: 'Add Custom Field',
|
||||
type: 'fixedCollection',
|
||||
typeOptions: {
|
||||
multipleValues: true,
|
||||
},
|
||||
description: 'Filter by custom fields ',
|
||||
default: {},
|
||||
options: [
|
||||
{
|
||||
name: 'customFieldsValues',
|
||||
displayName: 'Custom Field',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Field ID',
|
||||
name: 'fieldId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getCustomFields',
|
||||
},
|
||||
default: '',
|
||||
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.',
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
displayName: 'Description',
|
||||
name: 'description',
|
||||
@@ -259,14 +295,68 @@ export const caseFields = [
|
||||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Type',
|
||||
name: 'type',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getCaseTypes',
|
||||
},
|
||||
displayName: 'Account ID',
|
||||
name: 'accountId',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The type of case',
|
||||
description: 'ID of the account associated with this case.',
|
||||
},
|
||||
{
|
||||
displayName: 'Contact ID',
|
||||
name: 'contactId',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'ID of the associated Contact.',
|
||||
},
|
||||
{
|
||||
displayName: 'Custom Fields',
|
||||
name: 'customFieldsUi',
|
||||
placeholder: 'Add Custom Field',
|
||||
type: 'fixedCollection',
|
||||
typeOptions: {
|
||||
multipleValues: true,
|
||||
},
|
||||
description: 'Filter by custom fields ',
|
||||
default: {},
|
||||
options: [
|
||||
{
|
||||
name: 'customFieldsValues',
|
||||
displayName: 'Custom Field',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Field ID',
|
||||
name: 'fieldId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getCustomFields',
|
||||
},
|
||||
default: '',
|
||||
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.',
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
displayName: 'Description',
|
||||
name: 'description',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'A text description of the case. Limit: 32 KB.',
|
||||
},
|
||||
{
|
||||
displayName: 'Is Escalated',
|
||||
name: 'isEscalated',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Indicates whether the case has been escalated (true) or not.',
|
||||
},
|
||||
{
|
||||
displayName: 'Origin',
|
||||
@@ -278,6 +368,33 @@ export const caseFields = [
|
||||
default: '',
|
||||
description: 'The source of the case, such as Email, Phone, or Web. Label is Case Origin.',
|
||||
},
|
||||
{
|
||||
displayName: 'Owner',
|
||||
name: 'owner',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getCaseOwners',
|
||||
},
|
||||
default: '',
|
||||
description: 'The owner of the case.',
|
||||
},
|
||||
{
|
||||
displayName: 'Parent ID',
|
||||
name: 'ParentId',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The ID of the parent case in the hierarchy. The label is Parent Case.',
|
||||
},
|
||||
{
|
||||
displayName: 'Priority',
|
||||
name: 'priority',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getCasePriorities',
|
||||
},
|
||||
default: '',
|
||||
description: 'The importance or urgency of the case, such as High, Medium, or Low.',
|
||||
},
|
||||
{
|
||||
displayName: 'Reason',
|
||||
name: 'reason',
|
||||
@@ -298,16 +415,6 @@ export const caseFields = [
|
||||
default: '',
|
||||
description: 'The status of the case, such as “New,” “Closed,” or “Escalated.” This field directly controls the IsClosed flag',
|
||||
},
|
||||
{
|
||||
displayName: 'Owner',
|
||||
name: 'owner',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getCaseOwners',
|
||||
},
|
||||
default: '',
|
||||
description: 'The owner of the case.',
|
||||
},
|
||||
{
|
||||
displayName: 'Subject',
|
||||
name: 'subject',
|
||||
@@ -316,56 +423,11 @@ export const caseFields = [
|
||||
description: 'The subject of the case. Limit: 255 characters.',
|
||||
},
|
||||
{
|
||||
displayName: 'Parent ID',
|
||||
name: 'ParentId',
|
||||
displayName: 'Supplied Company',
|
||||
name: 'suppliedCompany',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The ID of the parent case in the hierarchy. The label is Parent Case.',
|
||||
},
|
||||
{
|
||||
displayName: 'Priority',
|
||||
name: 'priority',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getCasePriorities',
|
||||
},
|
||||
default: '',
|
||||
description: 'The importance or urgency of the case, such as High, Medium, or Low.',
|
||||
},
|
||||
{
|
||||
displayName: 'Account ID',
|
||||
name: 'accountId',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'ID of the account associated with this case.',
|
||||
},
|
||||
{
|
||||
displayName: 'Contact ID',
|
||||
name: 'contactId',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'ID of the associated Contact.',
|
||||
},
|
||||
{
|
||||
displayName: 'Description',
|
||||
name: 'description',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'A text description of the case. Limit: 32 KB.',
|
||||
},
|
||||
{
|
||||
displayName: 'Is Escalated',
|
||||
name: 'isEscalated',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Indicates whether the case has been escalated (true) or not.',
|
||||
},
|
||||
{
|
||||
displayName: 'Supplied Name',
|
||||
name: 'suppliedName',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: `The name that was entered when the case was created. This field can't be updated after the case has been created`,
|
||||
description: `The company name that was entered when the case was created. This field can't be updated after the case has been created..`,
|
||||
},
|
||||
{
|
||||
displayName: 'Supplied Email',
|
||||
@@ -374,6 +436,13 @@ export const caseFields = [
|
||||
default: '',
|
||||
description: `The email address that was entered when the case was created. This field can't be updated after the case has been created.`,
|
||||
},
|
||||
{
|
||||
displayName: 'Supplied Name',
|
||||
name: 'suppliedName',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: `The name that was entered when the case was created. This field can't be updated after the case has been created`,
|
||||
},
|
||||
{
|
||||
displayName: 'Supplied Phone',
|
||||
name: 'suppliedPhone',
|
||||
@@ -382,11 +451,14 @@ export const caseFields = [
|
||||
description: `The phone number that was entered when the case was created. This field can't be updated after the case has been created.`,
|
||||
},
|
||||
{
|
||||
displayName: 'Supplied Company',
|
||||
name: 'suppliedCompany',
|
||||
type: 'string',
|
||||
displayName: 'Type',
|
||||
name: 'type',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getCaseTypes',
|
||||
},
|
||||
default: '',
|
||||
description: `The company name that was entered when the case was created. This field can't be updated after the case has been created..`,
|
||||
description: 'The type of case',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user