n8n/packages/nodes-base/nodes/SyncroMSP/v1/actions/ticket/index.ts
Iván Ovejero 6f95121fac
refactor: Add action to all operations on all nodes (#3655)
* 👕 Add `action` to `INodePropertyOptions`

* 👕 Apply `node-param-operation-option-without-action`

* ✏️ Fix add/remove phrasing

* ✏️ Fix email template phrasing

* ✏️ Fix add/remove phrasing

* ✏️ Fix custom fields phrasing

* ✏️ Fix job report phrasing

* ✏️ Fix query phrasing

* ✏️ Various phrasing fixes

* ✏️ Fix final phrasings

* ✏️ Remove `conversation`

* ✏️ Fix plural
2022-07-10 23:50:51 +03:00

71 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 { 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 All',
value: 'getAll',
description: 'Retrieve all tickets',
action: 'Get all 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[];