n8n/packages/nodes-base/nodes/SendGrid/ListDescription.ts
Michael Kret 91d7e16c81
n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
2022-08-17 17:50:24 +02:00

197 lines
4.3 KiB
TypeScript

import { INodeProperties } from 'n8n-workflow';
export const listOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['list'],
},
},
options: [
{
name: 'Create',
value: 'create',
description: 'Create a list',
action: 'Create a list',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete a list',
action: 'Delete a list',
},
{
name: 'Get',
value: 'get',
description: 'Get a list',
action: 'Get a list',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all lists',
action: 'Get all lists',
},
{
name: 'Update',
value: 'update',
description: 'Update a list',
action: 'Update a list',
},
],
default: 'create',
},
];
export const listFields: INodeProperties[] = [
/* -------------------------------------------------------------------------- */
/* list:getAll */
/* -------------------------------------------------------------------------- */
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
displayOptions: {
show: {
resource: ['list'],
operation: ['getAll'],
},
},
default: false,
description: 'Whether to return all results or only up to a given limit',
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
displayOptions: {
show: {
resource: ['list'],
operation: ['getAll'],
returnAll: [false],
},
},
typeOptions: {
minValue: 1,
maxValue: 1000,
},
default: 100,
description: 'Max number of results to return',
},
/* -------------------------------------------------------------------------- */
/* list:create */
/* -------------------------------------------------------------------------- */
{
displayName: 'Name',
name: 'name',
type: 'string',
required: true,
displayOptions: {
show: {
operation: ['create'],
resource: ['list'],
},
},
default: '',
description: 'Name of the list',
},
/* -------------------------------------------------------------------------- */
/* list:delete */
/* -------------------------------------------------------------------------- */
{
displayName: 'List ID',
name: 'listId',
type: 'string',
required: true,
displayOptions: {
show: {
operation: ['delete'],
resource: ['list'],
},
},
default: '',
description: 'ID of the list',
},
{
displayName: 'Delete Contacts',
name: 'deleteContacts',
type: 'boolean',
default: false,
displayOptions: {
show: {
operation: ['delete'],
resource: ['list'],
},
},
description: 'Whether to delete all contacts on the list',
},
/* -------------------------------------------------------------------------- */
/* list:get */
/* -------------------------------------------------------------------------- */
{
displayName: 'List ID',
name: 'listId',
type: 'string',
required: true,
displayOptions: {
show: {
operation: ['get'],
resource: ['list'],
},
},
default: '',
description: 'ID of the list',
},
{
displayName: 'Contact Sample',
name: 'contactSample',
type: 'boolean',
default: false,
displayOptions: {
show: {
operation: ['get'],
resource: ['list'],
},
},
description: 'Whether to return the contact sample',
},
/* -------------------------------------------------------------------------- */
/* list:update */
/* -------------------------------------------------------------------------- */
{
displayName: 'List ID',
name: 'listId',
type: 'string',
required: true,
displayOptions: {
show: {
operation: ['update'],
resource: ['list'],
},
},
default: '',
description: 'ID of the list',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
required: true,
displayOptions: {
show: {
operation: ['update'],
resource: ['list'],
},
},
default: '',
description: 'Name of the list',
},
];