n8n/packages/nodes-base/nodes/HelpScout/MailboxDescription.ts
2020-03-16 22:02:57 -04:00

55 lines
1 KiB
TypeScript

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[];