n8n-nodes-firecrawl
Version:
FireCrawl nodes for n8n
32 lines • 1.09 kB
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 = 'Crawl Url With Websocket Monitoring';
const rawOption = {
name: 'Crawl Url With Websocket Monitoring',
value: 'Crawl Url With Websocket Monitoring',
action: 'Crawl Url With Websocket Monitoring',
description: 'Initiate a crawl and monitor progress in real-time using WebSocket',
routing: {
request: {
method: 'POST',
url: '=/crawl/websocket',
},
output: {
postReceive: [
{
type: 'setKeyValue',
properties: {
data: '={{$response.body}}',
},
},
],
},
},
};
const { properties, option } = (0, hooks_1.runHooks)(rawOption, properties_1.properties);
exports.properties = properties;
exports.option = option;
//# sourceMappingURL=index.js.map