2022-08-01 13:47:55 -07:00
|
|
|
import { INodeProperties } from 'n8n-workflow';
|
2020-10-13 12:35:01 -07:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const listOperations: INodeProperties[] = [
|
2020-10-13 12:35:01 -07:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2020-10-13 12:35:01 -07:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
2020-10-13 12:35:01 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Create',
|
|
|
|
value: 'create',
|
|
|
|
description: 'Create a list',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Create a list',
|
2020-10-13 12:35:01 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Delete',
|
|
|
|
value: 'delete',
|
|
|
|
description: 'Delete a list',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Delete a list',
|
2020-10-13 12:35:01 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Get',
|
|
|
|
value: 'get',
|
|
|
|
description: 'Get a list',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Get a list',
|
2020-10-13 12:35:01 -07:00
|
|
|
},
|
|
|
|
{
|
2022-09-07 07:51:14 -07:00
|
|
|
name: 'Get Many',
|
2020-10-13 12:35:01 -07:00
|
|
|
value: 'getAll',
|
2022-09-13 03:36:36 -07:00
|
|
|
description: 'Get many lists',
|
2022-09-08 08:10:13 -07:00
|
|
|
action: 'Get many lists',
|
2020-10-13 12:35:01 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Update',
|
|
|
|
value: 'update',
|
|
|
|
description: 'Update a list',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Update a list',
|
2020-10-13 12:35:01 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'create',
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|
2020-10-13 12:35:01 -07:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const listFields: INodeProperties[] = [
|
2020-10-13 12:35:01 -07:00
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* list:create */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'Name',
|
|
|
|
name: 'name',
|
|
|
|
required: true,
|
|
|
|
type: 'string',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['create'],
|
|
|
|
resource: ['list'],
|
2020-10-13 12:35:01 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* list:delete */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'List ID',
|
|
|
|
name: 'listId',
|
|
|
|
required: true,
|
|
|
|
type: 'string',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['delete'],
|
|
|
|
resource: ['list'],
|
2020-10-13 12:35:01 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
},
|
2022-08-01 13:47:55 -07:00
|
|
|
/* -------------------------------------------------------------------------- */
|
2020-10-13 12:35:01 -07:00
|
|
|
/* list:get */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'List ID',
|
|
|
|
name: 'listId',
|
|
|
|
required: true,
|
|
|
|
type: 'string',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['get'],
|
|
|
|
resource: ['list'],
|
2020-10-13 12:35:01 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* contact:getAll */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'Return All',
|
|
|
|
name: 'returnAll',
|
|
|
|
type: 'boolean',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['getAll'],
|
|
|
|
resource: ['list'],
|
2020-10-13 12:35:01 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: false,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Whether to return all results or only up to a given limit',
|
2020-10-13 12:35:01 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Limit',
|
|
|
|
name: 'limit',
|
|
|
|
type: 'number',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['getAll'],
|
|
|
|
resource: ['list'],
|
|
|
|
returnAll: [false],
|
2020-10-13 12:35:01 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
minValue: 1,
|
|
|
|
maxValue: 500,
|
|
|
|
},
|
|
|
|
default: 100,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Max number of results to return',
|
2020-10-13 12:35:01 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
name: 'additionalFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['getAll'],
|
|
|
|
resource: ['list'],
|
2020-10-13 12:35:01 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: {},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Direction',
|
|
|
|
name: 'direction',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'ASC',
|
|
|
|
value: 'asc',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'DESC',
|
|
|
|
value: 'desc',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'desc',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Defines the direction in which search results are ordered. Default value is DESC. Note: It has to be using with the Sort By parameter',
|
2020-10-13 12:35:01 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Fields',
|
|
|
|
name: 'fields',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'A comma-separated list of attributes to include in the response',
|
2020-10-13 12:35:01 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Sort By',
|
|
|
|
name: 'sortBy',
|
|
|
|
type: 'string',
|
2022-08-01 13:47:55 -07:00
|
|
|
default:
|
|
|
|
'Defines the field in which search results are sort by. Note: It has to be using with the Direcction parameter',
|
2020-10-13 12:35:01 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* list:update */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'List ID',
|
|
|
|
name: 'listId',
|
|
|
|
required: true,
|
|
|
|
type: 'string',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['update'],
|
|
|
|
resource: ['list'],
|
2020-10-13 12:35:01 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Name',
|
|
|
|
name: 'name',
|
|
|
|
required: true,
|
|
|
|
type: 'string',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['update'],
|
|
|
|
resource: ['list'],
|
2020-10-13 12:35:01 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|