mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 07:34:08 -08:00
65 lines
1.1 KiB
TypeScript
65 lines
1.1 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 { INodeProperties } from 'n8n-workflow';
|
||
|
|
||
|
export {
|
||
|
getAll,
|
||
|
create,
|
||
|
get,
|
||
|
del as delete,
|
||
|
update,
|
||
|
};
|
||
|
|
||
|
export const descriptions = [
|
||
|
{
|
||
|
displayName: 'Operation',
|
||
|
name: 'operation',
|
||
|
type: 'options',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'ticket',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
options: [
|
||
|
{
|
||
|
name: 'Create',
|
||
|
value: 'create',
|
||
|
description: 'Create new ticket',
|
||
|
},
|
||
|
{
|
||
|
name: 'Delete',
|
||
|
value: 'delete',
|
||
|
description: 'Delete ticket',
|
||
|
},
|
||
|
{
|
||
|
name: 'Get',
|
||
|
value: 'get',
|
||
|
description: 'Retrieve ticket',
|
||
|
},
|
||
|
{
|
||
|
name: 'Get All',
|
||
|
value: 'getAll',
|
||
|
description: 'Retrieve all tickets',
|
||
|
},
|
||
|
{
|
||
|
name: 'Update',
|
||
|
value: 'update',
|
||
|
description: 'Update ticket',
|
||
|
},
|
||
|
],
|
||
|
default: 'getAll',
|
||
|
},
|
||
|
...getAll.description,
|
||
|
...create.description,
|
||
|
...get.description,
|
||
|
...del.description,
|
||
|
...update.description,
|
||
|
] as INodeProperties[];
|