import type { INodeProperties } from 'n8n-workflow'; export const workItemOperations: INodeProperties[] = [ { displayName: 'Operation', name: 'operation', type: 'options', noDataExpression: true, default: 'get', options: [ { name: 'Create', value: 'create', action: 'Create a work item', }, { name: 'Get', value: 'get', action: 'Get a work item', }, { name: 'Get Many', value: 'getAll', action: 'Get many work items', }, { name: 'Update', value: 'update', action: 'Update a work item', }, ], displayOptions: { show: { resource: ['workItem'], }, }, }, ]; export const workItemFields: INodeProperties[] = [ // ---------------------------------- // workItem: create // ---------------------------------- { displayName: 'Title', name: 'title', type: 'string', default: '', required: true, description: 'Title of the work item to create', displayOptions: { show: { resource: ['workItem'], operation: ['create'], }, }, }, { displayName: 'Space Name or ID', name: 'spaceId', type: 'options', typeOptions: { loadOptionsMethod: 'getSpaces', }, default: [], required: true, description: 'ID of the space to retrieve the work items from. Choose from the list, or specify an ID using an expression.', displayOptions: { show: { resource: ['workItem'], operation: ['create'], }, }, }, { displayName: 'Status Name or ID', name: 'statusId', type: 'options', typeOptions: { loadOptionsDependsOn: ['spaceId'], loadOptionsMethod: 'getStatuses', }, default: [], required: true, description: 'ID of the status to set on the item to create. Choose from the list, or specify an ID using an expression.', displayOptions: { show: { resource: ['workItem'], operation: ['create'], }, }, }, { displayName: 'Additional Fields', name: 'additionalFields', type: 'collection', placeholder: 'Add Field', default: {}, displayOptions: { show: { resource: ['workItem'], operation: ['create'], }, }, options: [ { displayName: 'Description', name: 'description', type: 'string', default: '', description: 'Description of the item to create. Markdown supported.', }, { displayName: 'Effort', name: 'effort', type: 'options', default: 'SMALL', description: 'Effort to set for the item to create', options: [ { name: 'Small', value: 'SMALL', }, { name: 'Medium', value: 'MEDIUM', }, { name: 'Large', value: 'LARGE', }, ], }, { displayName: 'Impact', name: 'impact', type: 'options', default: 'SMALL', description: 'Impact to set for the item to create', options: [ { name: 'Small', value: 'SMALL', }, { name: 'Medium', value: 'MEDIUM', }, { name: 'Large', value: 'LARGE', }, ], }, { displayName: 'Label Names or IDs', name: 'labelIds', type: 'multiOptions', typeOptions: { loadOptionsMethod: 'getLabels', }, default: [], description: 'ID of the label to set on the item to create. Choose from the list, or specify IDs using an expression.', }, { displayName: 'Member Names or IDs', name: 'memberIds', type: 'multiOptions', typeOptions: { loadOptionsMethod: 'getUsers', }, default: [], description: 'ID of the user to assign to the item to create. Choose from the list, or specify IDs using an expression.', }, ], }, // ---------------------------------- // workItem: get // ---------------------------------- { displayName: 'Work Item ID', name: 'workItemId', type: 'string', default: '', required: true, description: 'ID of the work item to retrieve', displayOptions: { show: { resource: ['workItem'], operation: ['get'], }, }, }, // ---------------------------------- // workItem: getAll // ---------------------------------- { displayName: 'Space Name or ID', name: 'spaceId', type: 'options', typeOptions: { loadOptionsMethod: 'getSpaces', }, default: [], required: true, description: 'ID of the space to retrieve the work items from. Choose from the list, or specify an ID using an expression.', displayOptions: { show: { resource: ['workItem'], operation: ['getAll'], }, }, }, { displayName: 'Return All', name: 'returnAll', type: 'boolean', default: false, description: 'Whether to return all results or only up to a given limit', displayOptions: { show: { resource: ['workItem'], operation: ['getAll'], }, }, }, { displayName: 'Limit', name: 'limit', type: 'number', default: 5, description: 'Max number of results to return', typeOptions: { minValue: 1, maxValue: 1000, }, displayOptions: { show: { resource: ['workItem'], operation: ['getAll'], returnAll: [false], }, }, }, // ---------------------------------- // workItem: update // ---------------------------------- { displayName: 'Work Item ID', name: 'workItemId', type: 'string', default: '', required: true, description: 'ID of the work item to update', displayOptions: { show: { resource: ['workItem'], operation: ['update'], }, }, }, { displayName: 'Update Fields', name: 'updateFields', type: 'collection', placeholder: 'Add Field', default: {}, displayOptions: { show: { resource: ['workItem'], operation: ['update'], }, }, options: [ { displayName: 'Description', name: 'description', type: 'string', default: '', description: 'Description of the item to update. Markdown supported.', }, { displayName: 'Effort', name: 'effort', type: 'options', default: 'SMALL', description: 'Effort to set for the item to update', options: [ { name: 'Small', value: 'SMALL', }, { name: 'Medium', value: 'MEDIUM', }, { name: 'Large', value: 'LARGE', }, ], }, { displayName: 'Impact', name: 'impact', type: 'options', default: 'SMALL', description: 'Impact to set for the item to update', options: [ { name: 'Small', value: 'SMALL', }, { name: 'Medium', value: 'MEDIUM', }, { name: 'Large', value: 'LARGE', }, ], }, { displayName: 'Status Name or ID', name: 'statusId', type: 'options', typeOptions: { loadOptionsMethod: 'getStatuses', }, default: [], description: 'ID of the status to set on the item to update. Choose from the list, or specify an ID using an expression.', }, { displayName: 'Title', name: 'title', type: 'string', default: '', description: 'Title to set for the work item to update', }, ], }, ];