n8n-nodes-firecrawl
Version:
FireCrawl nodes for n8n
22 lines • 796 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 = 'Check Crawl Job Status';
const rawOption = {
name: 'Check Crawl Job Status',
value: 'Check Crawl Job Status',
action: 'Check Crawl Job Status',
description: 'Check the status of a crawl job by its ID and retrieve the result',
routing: {
request: {
method: 'GET',
url: '=/crawl/{{$parameter["crawl_id"]}}',
},
},
};
const { properties, option } = (0, hooks_1.runHooks)(rawOption, properties_1.properties);
exports.properties = properties;
exports.option = option;
//# sourceMappingURL=index.js.map