mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 07:34:08 -08:00
b03e358a12
* 👕 Enable `consistent-type-imports` for nodes-base
* 👕 Apply to nodes-base
* ⏪ Undo unrelated changes
* 🚚 Move to `.eslintrc.js` in nodes-base
* ⏪ Revert "Enable `consistent-type-imports` for nodes-base"
This reverts commit 529ad72b05
.
* 👕 Fix severity
62 lines
1.2 KiB
TypeScript
62 lines
1.2 KiB
TypeScript
import * as getAll from './getAll';
|
|
import * as create from './create';
|
|
import * as get from './get';
|
|
import * as del from './del';
|
|
import * as update from './update';
|
|
|
|
import type { INodeProperties } from 'n8n-workflow';
|
|
|
|
export { getAll, create, get, del as delete, update };
|
|
|
|
export const descriptions = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['ticket'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Create',
|
|
value: 'create',
|
|
description: 'Create new ticket',
|
|
action: 'Create a ticket',
|
|
},
|
|
{
|
|
name: 'Delete',
|
|
value: 'delete',
|
|
description: 'Delete ticket',
|
|
action: 'Delete a ticket',
|
|
},
|
|
{
|
|
name: 'Get',
|
|
value: 'get',
|
|
description: 'Retrieve ticket',
|
|
action: 'Get a ticket',
|
|
},
|
|
{
|
|
name: 'Get Many',
|
|
value: 'getAll',
|
|
description: 'Retrieve many tickets',
|
|
action: 'Get many tickets',
|
|
},
|
|
{
|
|
name: 'Update',
|
|
value: 'update',
|
|
description: 'Update ticket',
|
|
action: 'Update a ticket',
|
|
},
|
|
],
|
|
default: 'getAll',
|
|
},
|
|
...getAll.description,
|
|
...create.description,
|
|
...get.description,
|
|
...del.description,
|
|
...update.description,
|
|
] as INodeProperties[];
|