HelpScout Integration

This commit is contained in:
ricardo
2020-03-16 22:02:48 -04:00
parent 24670cb7ee
commit 07246a0b15
15 changed files with 4085 additions and 3 deletions

View File

@@ -0,0 +1,54 @@
import { INodeProperties } from "n8n-workflow";
export const mailboxOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'mailbox',
],
},
},
options: [
{
name: 'Get',
value: 'get',
description: 'Get data of a mailbox',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all mailboxes',
},
],
default: 'get',
description: 'The operation to perform.',
},
] as INodeProperties[];
export const mailboxFields = [
/* -------------------------------------------------------------------------- */
/* mailbox:get */
/* -------------------------------------------------------------------------- */
{
displayName: 'Mailbox ID',
name: 'mailboxId',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: [
'mailbox',
],
operation: [
'get',
],
},
},
},
] as INodeProperties[];