feat(Salesforce Node): Add country field (#3314)

This commit is contained in:
Michael Kret
2022-05-24 09:56:33 +03:00
committed by GitHub
parent 5c5de0c92c
commit 90a1bc120b
9 changed files with 102 additions and 88 deletions

View File

@@ -24,6 +24,11 @@ export const caseOperations: INodeProperties[] = [
value: 'create',
description: 'Create a case',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete a case',
},
{
name: 'Get',
value: 'get',
@@ -39,11 +44,6 @@ export const caseOperations: INodeProperties[] = [
value: 'getSummary',
description: 'Returns an overview of case\'s metadata',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete a case',
},
{
name: 'Update',
value: 'update',
@@ -159,7 +159,7 @@ export const caseFields: INodeProperties[] = [
name: 'isEscalated',
type: 'boolean',
default: false,
description: 'Indicates whether the case has been escalated (true) or not',
description: 'Whether indicates whether the case has been escalated (true) or not',
},
{
displayName: 'Origin',
@@ -365,7 +365,7 @@ export const caseFields: INodeProperties[] = [
name: 'isEscalated',
type: 'boolean',
default: false,
description: 'Indicates whether the case has been escalated (true) or not',
description: 'Whether the case has been escalated (true) or not',
},
{
displayName: 'Origin',
@@ -713,7 +713,7 @@ export const caseFields: INodeProperties[] = [
name: 'isPublished',
type: 'boolean',
default: false,
description: 'Indicates whether the CaseComment is visible to customers in the Self-Service portal (true) or not (false)',
description: 'Whether the CaseComment is visible to customers in the Self-Service portal (true) or not (false)',
},
],
},