2023-01-27 03:22:44 -08:00
|
|
|
import type { INodeProperties } from 'n8n-workflow';
|
2021-01-28 10:00:47 -08:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const categoryOperations: INodeProperties[] = [
|
2021-01-28 10:00:47 -08:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2021-01-28 10:00:47 -08:00
|
|
|
description: 'Choose an operation',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['category'],
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Create',
|
|
|
|
value: 'create',
|
|
|
|
description: 'Create a category',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Create a category',
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
{
|
2022-09-07 07:51:14 -07:00
|
|
|
name: 'Get Many',
|
2021-01-28 10:00:47 -08:00
|
|
|
value: 'getAll',
|
2022-09-13 03:36:36 -07:00
|
|
|
description: 'Get many categories',
|
2022-09-08 08:10:13 -07:00
|
|
|
action: 'Get many categories',
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Update',
|
|
|
|
value: 'update',
|
|
|
|
description: 'Update a category',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Update a category',
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'create',
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|
2021-01-28 10:00:47 -08:00
|
|
|
|
|
|
|
export const categoryFields: INodeProperties[] = [
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* category:create */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'Name',
|
|
|
|
name: 'name',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['category'],
|
|
|
|
operation: ['create'],
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Name of the category',
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Color',
|
|
|
|
name: 'color',
|
|
|
|
type: 'color',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['category'],
|
|
|
|
operation: ['create'],
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '0000FF',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Color of the category',
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Text Color',
|
|
|
|
name: 'textColor',
|
|
|
|
type: 'color',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['category'],
|
|
|
|
operation: ['create'],
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '0000FF',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Text color of the category',
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* category:getAll */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'Return All',
|
|
|
|
name: 'returnAll',
|
|
|
|
type: 'boolean',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['category'],
|
|
|
|
operation: ['getAll'],
|
2021-01-28 10:00:47 -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',
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Limit',
|
|
|
|
name: 'limit',
|
|
|
|
type: 'number',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['category'],
|
|
|
|
operation: ['getAll'],
|
|
|
|
returnAll: [false],
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
minValue: 1,
|
|
|
|
maxValue: 100,
|
|
|
|
},
|
|
|
|
default: 50,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Max number of results to return',
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* category:update */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'Category ID',
|
|
|
|
name: 'categoryId',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['category'],
|
|
|
|
operation: ['update'],
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the category',
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Name',
|
|
|
|
name: 'name',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['category'],
|
|
|
|
operation: ['update'],
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'New name of the category',
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Update Fields',
|
|
|
|
name: 'updateFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['category'],
|
|
|
|
operation: ['update'],
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Color',
|
|
|
|
name: 'color',
|
|
|
|
type: 'color',
|
|
|
|
default: '0000FF',
|
|
|
|
description: 'Color of the category',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Text Color',
|
|
|
|
name: 'textColor',
|
|
|
|
type: 'color',
|
|
|
|
default: '0000FF',
|
|
|
|
description: 'Text color of the category',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
];
|