2023-01-27 03:22:44 -08:00
|
|
|
|
import type { INodeProperties } from 'n8n-workflow';
|
2020-01-28 06:46:38 -08:00
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
|
const resource = ['client'];
|
2020-01-31 05:43:40 -08:00
|
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
|
export const clientOperations: INodeProperties[] = [
|
2020-01-28 07:50:15 -08:00
|
|
|
|
{
|
|
|
|
|
displayName: 'Operation',
|
|
|
|
|
name: 'operation',
|
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
|
noDataExpression: true,
|
2020-01-28 07:50:15 -08:00
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2020-01-31 06:06:10 -08:00
|
|
|
|
resource,
|
2020-01-28 07:50:15 -08:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
options: [
|
2020-02-07 20:38:13 -08:00
|
|
|
|
{
|
|
|
|
|
name: 'Create',
|
|
|
|
|
value: 'create',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'Create a client',
|
2022-07-10 13:50:51 -07:00
|
|
|
|
action: 'Create a client',
|
2020-02-07 20:38:13 -08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Delete',
|
|
|
|
|
value: 'delete',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'Delete a client',
|
2022-07-10 13:50:51 -07:00
|
|
|
|
action: 'Delete a client',
|
2020-02-07 20:38:13 -08:00
|
|
|
|
},
|
2020-01-28 07:50:15 -08:00
|
|
|
|
{
|
|
|
|
|
name: 'Get',
|
|
|
|
|
value: 'get',
|
|
|
|
|
description: 'Get data of a client',
|
2022-07-10 13:50:51 -07:00
|
|
|
|
action: 'Get data of a client',
|
2020-01-28 07:50:15 -08:00
|
|
|
|
},
|
|
|
|
|
{
|
2022-09-07 07:51:14 -07:00
|
|
|
|
name: 'Get Many',
|
2020-01-28 07:50:15 -08:00
|
|
|
|
value: 'getAll',
|
2022-09-13 03:36:36 -07:00
|
|
|
|
description: 'Get data of many clients',
|
2022-07-10 13:50:51 -07:00
|
|
|
|
action: 'Get data of all clients',
|
2020-01-28 07:50:15 -08:00
|
|
|
|
},
|
2020-02-07 20:38:13 -08:00
|
|
|
|
|
2020-02-03 03:57:39 -08:00
|
|
|
|
{
|
|
|
|
|
name: 'Update',
|
|
|
|
|
value: 'update',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'Update a client',
|
2022-07-10 13:50:51 -07:00
|
|
|
|
action: 'Update a client',
|
2020-02-03 03:57:39 -08:00
|
|
|
|
},
|
2020-01-28 07:50:15 -08:00
|
|
|
|
],
|
2020-01-28 23:04:52 -08:00
|
|
|
|
default: 'getAll',
|
2020-01-28 07:50:15 -08:00
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
|
];
|
2020-01-28 06:46:38 -08:00
|
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
|
export const clientFields: INodeProperties[] = [
|
2020-02-03 04:55:21 -08:00
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2021-04-02 08:56:45 -07:00
|
|
|
|
/* client:getAll */
|
2020-02-03 04:55:21 -08:00
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2020-01-28 07:50:15 -08:00
|
|
|
|
|
2020-02-03 04:55:21 -08:00
|
|
|
|
{
|
|
|
|
|
displayName: 'Return All',
|
|
|
|
|
name: 'returnAll',
|
|
|
|
|
type: 'boolean',
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
|
|
|
|
resource,
|
2022-08-17 08:50:24 -07:00
|
|
|
|
operation: ['getAll'],
|
2020-02-03 04:55:21 -08:00
|
|
|
|
},
|
2020-01-28 07:50:15 -08:00
|
|
|
|
},
|
2020-02-03 04:55:21 -08: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-01-28 07:50:15 -08:00
|
|
|
|
},
|
2020-02-03 04:55:21 -08:00
|
|
|
|
{
|
|
|
|
|
displayName: 'Limit',
|
|
|
|
|
name: 'limit',
|
|
|
|
|
type: 'number',
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
|
|
|
|
resource,
|
2022-08-17 08:50:24 -07:00
|
|
|
|
operation: ['getAll'],
|
|
|
|
|
returnAll: [false],
|
2020-02-03 04:55:21 -08:00
|
|
|
|
},
|
2020-01-28 07:50:15 -08:00
|
|
|
|
},
|
2020-02-03 04:55:21 -08:00
|
|
|
|
typeOptions: {
|
|
|
|
|
minValue: 1,
|
|
|
|
|
maxValue: 100,
|
2020-01-28 07:50:15 -08:00
|
|
|
|
},
|
2020-02-03 04:55:21 -08:00
|
|
|
|
default: 100,
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'Max number of results to return',
|
2020-01-28 07:50:15 -08:00
|
|
|
|
},
|
2020-02-03 04:55:21 -08:00
|
|
|
|
{
|
|
|
|
|
displayName: 'Filters',
|
|
|
|
|
name: 'filters',
|
|
|
|
|
type: 'collection',
|
|
|
|
|
placeholder: 'Add Filter',
|
|
|
|
|
default: {},
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
|
|
|
|
resource,
|
2022-08-17 08:50:24 -07:00
|
|
|
|
operation: ['getAll'],
|
2020-02-03 04:55:21 -08:00
|
|
|
|
},
|
2020-01-28 07:50:15 -08:00
|
|
|
|
},
|
2020-02-03 04:55:21 -08:00
|
|
|
|
options: [
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Is Active',
|
|
|
|
|
name: 'is_active',
|
|
|
|
|
type: 'boolean',
|
|
|
|
|
default: true,
|
2022-06-20 07:54:01 -07:00
|
|
|
|
description: 'Whether to only return active clients and false to return inactive clients',
|
2020-02-03 04:55:21 -08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Updated Since',
|
|
|
|
|
name: 'updated_since',
|
|
|
|
|
type: 'dateTime',
|
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'Only return clients that have been updated since the given date and time',
|
2020-10-22 06:46:03 -07:00
|
|
|
|
},
|
|
|
|
|
],
|
2020-02-03 04:55:21 -08:00
|
|
|
|
},
|
2020-01-28 07:50:15 -08:00
|
|
|
|
|
2020-02-03 04:55:21 -08:00
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2021-04-02 08:56:45 -07:00
|
|
|
|
/* client:get */
|
2020-02-03 04:55:21 -08:00
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
|
{
|
2022-05-20 14:47:24 -07:00
|
|
|
|
displayName: 'Client ID',
|
2020-02-03 04:55:21 -08:00
|
|
|
|
name: 'id',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
required: true,
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
operation: ['get'],
|
2020-10-22 06:46:03 -07:00
|
|
|
|
resource,
|
2020-02-03 04:55:21 -08:00
|
|
|
|
},
|
2020-01-28 07:50:15 -08:00
|
|
|
|
},
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'The ID of the client you are retrieving',
|
2020-01-28 07:50:15 -08:00
|
|
|
|
},
|
2020-01-31 04:47:20 -08:00
|
|
|
|
|
2020-02-03 04:55:21 -08:00
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2021-04-02 08:56:45 -07:00
|
|
|
|
/* client:delete */
|
2020-02-03 04:55:21 -08:00
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
|
{
|
2022-05-20 14:47:24 -07:00
|
|
|
|
displayName: 'Client ID',
|
2020-02-03 04:55:21 -08:00
|
|
|
|
name: 'id',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
required: true,
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
operation: ['delete'],
|
2020-10-22 06:46:03 -07:00
|
|
|
|
resource,
|
2020-02-03 04:55:21 -08:00
|
|
|
|
},
|
2020-01-31 04:47:20 -08:00
|
|
|
|
},
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'The ID of the client you want to delete',
|
2020-01-31 04:47:20 -08:00
|
|
|
|
},
|
2020-02-03 04:36:51 -08:00
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2021-04-02 08:56:45 -07:00
|
|
|
|
/* client:create */
|
2020-02-03 04:36:51 -08:00
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
|
{
|
2020-02-03 04:55:21 -08:00
|
|
|
|
displayName: 'Name',
|
2020-02-03 04:36:51 -08:00
|
|
|
|
name: 'name',
|
|
|
|
|
type: 'string',
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
operation: ['create'],
|
2020-02-03 04:36:51 -08:00
|
|
|
|
resource,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
default: '',
|
|
|
|
|
required: true,
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'The name of the client',
|
2020-02-03 04:36:51 -08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
|
name: 'additionalFields',
|
|
|
|
|
type: 'collection',
|
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
operation: ['create'],
|
2020-02-03 04:36:51 -08:00
|
|
|
|
resource,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
default: {},
|
|
|
|
|
options: [
|
|
|
|
|
{
|
2020-02-03 04:55:21 -08:00
|
|
|
|
displayName: 'Address',
|
2020-02-03 04:36:51 -08:00
|
|
|
|
name: 'address',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
2022-08-17 08:50:24 -07:00
|
|
|
|
description:
|
|
|
|
|
'A textual representation of the client’s physical address. May include new line characters.',
|
2020-02-03 04:36:51 -08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Currency',
|
|
|
|
|
name: 'currency',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
2022-08-17 08:50:24 -07:00
|
|
|
|
description:
|
|
|
|
|
'The currency used by the estimate. If not provided, the client’s currency will be used. See a list of supported currencies',
|
2020-02-03 04:36:51 -08:00
|
|
|
|
},
|
2021-04-02 09:10:22 -07:00
|
|
|
|
{
|
|
|
|
|
displayName: 'Is Active',
|
|
|
|
|
name: 'is_active',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
description: 'Whether the client is active, or archived. Defaults to true.',
|
|
|
|
|
},
|
2020-02-03 04:36:51 -08:00
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
|
2020-02-03 04:55:21 -08:00
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2021-04-02 08:56:45 -07:00
|
|
|
|
/* client:update */
|
2020-02-03 04:36:51 -08:00
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
|
{
|
2022-05-20 14:47:24 -07:00
|
|
|
|
displayName: 'Client ID',
|
2020-02-03 04:36:51 -08:00
|
|
|
|
name: 'id',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
required: true,
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
operation: ['update'],
|
2020-02-03 04:36:51 -08:00
|
|
|
|
resource,
|
|
|
|
|
},
|
|
|
|
|
},
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'The ID of the client want to update',
|
2020-02-03 04:36:51 -08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Update Fields',
|
|
|
|
|
name: 'updateFields',
|
|
|
|
|
type: 'collection',
|
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
operation: ['update'],
|
2020-02-03 04:36:51 -08:00
|
|
|
|
resource,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
default: {},
|
|
|
|
|
options: [
|
|
|
|
|
{
|
2020-02-03 04:55:21 -08:00
|
|
|
|
displayName: 'Address',
|
2020-02-03 04:36:51 -08:00
|
|
|
|
name: 'address',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
2022-08-17 08:50:24 -07:00
|
|
|
|
description:
|
|
|
|
|
'A textual representation of the client’s physical address. May include new line characters.',
|
2020-02-03 04:36:51 -08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Currency',
|
|
|
|
|
name: 'currency',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
2022-08-17 08:50:24 -07:00
|
|
|
|
description:
|
|
|
|
|
'The currency used by the estimate. If not provided, the client’s currency will be used. See a list of supported currencies',
|
2020-02-03 04:36:51 -08:00
|
|
|
|
},
|
2020-02-07 20:38:13 -08:00
|
|
|
|
{
|
|
|
|
|
displayName: 'Is Active',
|
|
|
|
|
name: 'is_active',
|
|
|
|
|
type: 'boolean',
|
|
|
|
|
default: true,
|
2020-10-22 06:46:03 -07:00
|
|
|
|
description: 'Whether the client is active, or archived. Defaults to true.',
|
2020-02-07 20:38:13 -08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Name',
|
|
|
|
|
name: 'name',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
2020-10-22 06:46:03 -07:00
|
|
|
|
description: 'Whether the client is active, or archived. Defaults to true.',
|
2020-02-07 20:38:13 -08:00
|
|
|
|
},
|
2020-02-03 04:36:51 -08:00
|
|
|
|
],
|
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
|
];
|