mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 08:34:07 -08:00
62c096710f
- Fix autofixable violations - Remove unused directives - Allow for PascalCased variables - needed for dynamically imported or assigned classes, decorators, routers, etc.
43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
import type { IExecuteFunctions, INodeExecutionData, INodeProperties } from 'n8n-workflow';
|
|
import { theHiveApiRequest } from '../../transport';
|
|
import { caseRLC } from '../../descriptions';
|
|
import { updateDisplayOptions, wrapData } from '@utils/utilities';
|
|
|
|
const properties: INodeProperties[] = [
|
|
caseRLC,
|
|
{
|
|
displayName: 'Attachment Name or ID',
|
|
name: 'attachmentId',
|
|
type: 'options',
|
|
default: '',
|
|
required: true,
|
|
description:
|
|
'ID of the attachment. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'loadCaseAttachments',
|
|
},
|
|
},
|
|
];
|
|
|
|
const displayOptions = {
|
|
show: {
|
|
resource: ['case'],
|
|
operation: ['deleteAttachment'],
|
|
},
|
|
};
|
|
|
|
export const description = updateDisplayOptions(displayOptions, properties);
|
|
|
|
export async function execute(this: IExecuteFunctions, i: number): Promise<INodeExecutionData[]> {
|
|
const caseId = this.getNodeParameter('caseId', i, '', { extractValue: true }) as string;
|
|
const attachmentId = this.getNodeParameter('attachmentId', i) as string;
|
|
|
|
await theHiveApiRequest.call(this, 'DELETE', `/v1/case/${caseId}/attachment/${attachmentId}`);
|
|
|
|
const executionData = this.helpers.constructExecutionMetaData(wrapData({ success: true }), {
|
|
itemData: { item: i },
|
|
});
|
|
|
|
return executionData;
|
|
}
|