@apify/n8n-nodes-apify
Version:
n8n nodes for Apify
22 lines • 761 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.properties = exports.option = exports.name = void 0;
const properties_1 = require("./properties");
const hooks_1 = require("./hooks");
exports.name = 'Delete task';
const rawOption = {
name: 'Delete Task',
value: 'Delete task',
action: 'Delete task',
description: 'Delete the task specified through the actorTaskId parameter',
routing: {
request: {
method: 'DELETE',
url: '=/v2/actor-tasks/{{$parameter["actorTaskId"]}}',
},
},
};
const { properties, option } = (0, hooks_1.runHooks)(rawOption, properties_1.properties);
exports.properties = properties;
exports.option = option;
//# sourceMappingURL=index.js.map