@mendable/n8n-nodes-firecrawl 1.0.5 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. package/README.md +122 -7
  2. package/dist/nodes/Firecrawl/Firecrawl.node.js +2 -1
  3. package/dist/nodes/Firecrawl/Firecrawl.node.js.map +1 -1
  4. package/dist/nodes/Firecrawl/api/{form → agent}/index.d.ts +2 -3
  5. package/dist/nodes/Firecrawl/api/agent/index.js +364 -0
  6. package/dist/nodes/Firecrawl/api/agent/index.js.map +1 -0
  7. package/dist/nodes/Firecrawl/api/agentAsync/index.d.ts +5 -0
  8. package/dist/nodes/Firecrawl/api/agentAsync/index.js +262 -0
  9. package/dist/nodes/Firecrawl/api/agentAsync/index.js.map +1 -0
  10. package/dist/nodes/Firecrawl/api/batchScrape/index.d.ts +7 -0
  11. package/dist/nodes/Firecrawl/api/batchScrape/index.js +173 -0
  12. package/dist/nodes/Firecrawl/api/batchScrape/index.js.map +1 -0
  13. package/dist/nodes/Firecrawl/api/batchScrapeErrors/index.d.ts +6 -0
  14. package/dist/nodes/Firecrawl/api/batchScrapeErrors/index.js +40 -0
  15. package/dist/nodes/Firecrawl/api/batchScrapeErrors/index.js.map +1 -0
  16. package/dist/nodes/Firecrawl/api/batchScrapeStatus/index.d.ts +6 -0
  17. package/dist/nodes/Firecrawl/api/batchScrapeStatus/index.js +40 -0
  18. package/dist/nodes/Firecrawl/api/batchScrapeStatus/index.js.map +1 -0
  19. package/dist/nodes/Firecrawl/api/cancelBatchScrape/index.d.ts +6 -0
  20. package/dist/nodes/Firecrawl/api/cancelBatchScrape/index.js +40 -0
  21. package/dist/nodes/Firecrawl/api/cancelBatchScrape/index.js.map +1 -0
  22. package/dist/nodes/Firecrawl/api/cancelCrawl/index.d.ts +6 -0
  23. package/dist/nodes/Firecrawl/api/cancelCrawl/index.js +40 -0
  24. package/dist/nodes/Firecrawl/api/cancelCrawl/index.js.map +1 -0
  25. package/dist/nodes/Firecrawl/api/common.d.ts +8 -5
  26. package/dist/nodes/Firecrawl/api/common.js +324 -35
  27. package/dist/nodes/Firecrawl/api/common.js.map +1 -1
  28. package/dist/nodes/Firecrawl/api/crawl/index.d.ts +2 -1
  29. package/dist/nodes/Firecrawl/api/crawl/index.js +24 -23
  30. package/dist/nodes/Firecrawl/api/crawl/index.js.map +1 -1
  31. package/dist/nodes/Firecrawl/api/crawlActive/index.d.ts +6 -0
  32. package/dist/nodes/Firecrawl/api/crawlActive/index.js +20 -0
  33. package/dist/nodes/Firecrawl/api/crawlActive/index.js.map +1 -0
  34. package/dist/nodes/Firecrawl/api/crawlParamsPreview/index.d.ts +6 -0
  35. package/dist/nodes/Firecrawl/api/crawlParamsPreview/index.js +42 -0
  36. package/dist/nodes/Firecrawl/api/crawlParamsPreview/index.js.map +1 -0
  37. package/dist/nodes/Firecrawl/api/creditUsageHistorical/index.d.ts +6 -0
  38. package/dist/nodes/Firecrawl/api/creditUsageHistorical/index.js +20 -0
  39. package/dist/nodes/Firecrawl/api/creditUsageHistorical/index.js.map +1 -0
  40. package/dist/nodes/Firecrawl/api/extract/index.d.ts +1 -0
  41. package/dist/nodes/Firecrawl/api/extract/index.js +20 -19
  42. package/dist/nodes/Firecrawl/api/extract/index.js.map +1 -1
  43. package/dist/nodes/Firecrawl/api/getAgentStatus/index.d.ts +5 -0
  44. package/dist/nodes/Firecrawl/api/getAgentStatus/index.js +52 -0
  45. package/dist/nodes/Firecrawl/api/getAgentStatus/index.js.map +1 -0
  46. package/dist/nodes/Firecrawl/api/getCrawlErrors/index.d.ts +6 -0
  47. package/dist/nodes/Firecrawl/api/getCrawlErrors/index.js +40 -0
  48. package/dist/nodes/Firecrawl/api/getCrawlErrors/index.js.map +1 -0
  49. package/dist/nodes/Firecrawl/api/getCrawlStatus/index.d.ts +1 -0
  50. package/dist/nodes/Firecrawl/api/getCrawlStatus/index.js +4 -3
  51. package/dist/nodes/Firecrawl/api/getCrawlStatus/index.js.map +1 -1
  52. package/dist/nodes/Firecrawl/api/getExtractStatus/index.d.ts +1 -0
  53. package/dist/nodes/Firecrawl/api/getExtractStatus/index.js +4 -3
  54. package/dist/nodes/Firecrawl/api/getExtractStatus/index.js.map +1 -1
  55. package/dist/nodes/Firecrawl/api/index.d.ts +62 -4
  56. package/dist/nodes/Firecrawl/api/index.js +241 -20
  57. package/dist/nodes/Firecrawl/api/index.js.map +1 -1
  58. package/dist/nodes/Firecrawl/api/map/index.d.ts +2 -1
  59. package/dist/nodes/Firecrawl/api/map/index.js +15 -14
  60. package/dist/nodes/Firecrawl/api/map/index.js.map +1 -1
  61. package/dist/nodes/Firecrawl/api/scrape/index.d.ts +2 -1
  62. package/dist/nodes/Firecrawl/api/scrape/index.js +56 -7
  63. package/dist/nodes/Firecrawl/api/scrape/index.js.map +1 -1
  64. package/dist/nodes/Firecrawl/api/search/index.d.ts +2 -1
  65. package/dist/nodes/Firecrawl/api/search/index.js +13 -9
  66. package/dist/nodes/Firecrawl/api/search/index.js.map +1 -1
  67. package/dist/nodes/Firecrawl/api/teamCreditUsage/index.d.ts +6 -0
  68. package/dist/nodes/Firecrawl/api/teamCreditUsage/index.js +20 -0
  69. package/dist/nodes/Firecrawl/api/teamCreditUsage/index.js.map +1 -0
  70. package/dist/nodes/Firecrawl/api/teamQueueStatus/index.d.ts +6 -0
  71. package/dist/nodes/Firecrawl/api/teamQueueStatus/index.js +20 -0
  72. package/dist/nodes/Firecrawl/api/teamQueueStatus/index.js.map +1 -0
  73. package/dist/nodes/Firecrawl/api/teamTokenUsage/index.d.ts +6 -0
  74. package/dist/nodes/Firecrawl/api/teamTokenUsage/index.js +20 -0
  75. package/dist/nodes/Firecrawl/api/teamTokenUsage/index.js.map +1 -0
  76. package/dist/nodes/Firecrawl/api/teamTokenUsageHistorical/index.d.ts +6 -0
  77. package/dist/nodes/Firecrawl/api/teamTokenUsageHistorical/index.js +20 -0
  78. package/dist/nodes/Firecrawl/api/teamTokenUsageHistorical/index.js.map +1 -0
  79. package/dist/nodes/Firecrawl/methods.js +17 -2
  80. package/dist/nodes/Firecrawl/methods.js.map +1 -1
  81. package/dist/nodes/Firecrawl/properties.js +40 -63
  82. package/dist/nodes/Firecrawl/properties.js.map +1 -1
  83. package/dist/package.json +3 -3
  84. package/dist/tsconfig.tsbuildinfo +1 -1
  85. package/package.json +3 -3
  86. package/dist/nodes/Firecrawl/api/form/index.js +0 -163
  87. package/dist/nodes/Firecrawl/api/form/index.js.map +0 -1
  88. package/dist/nodes/Firecrawl/helpers/http/debug.d.ts +0 -2
  89. package/dist/nodes/Firecrawl/helpers/http/debug.js +0 -18
  90. package/dist/nodes/Firecrawl/helpers/http/debug.js.map +0 -1
  91. package/dist/nodes/Firecrawl/openapi.json +0 -2744
  92. package/dist/nodes/Firecrawl/v1-openapi.json +0 -1915
@@ -0,0 +1,52 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.properties = exports.options = exports.resourceName = exports.operationName = void 0;
4
+ const common_1 = require("../common");
5
+ const name = 'getAgentStatus';
6
+ const displayName = 'Get Agent Status';
7
+ exports.operationName = 'getAgentStatus';
8
+ exports.resourceName = 'Agent';
9
+ function createAgentIdProperty() {
10
+ return {
11
+ displayName: 'Agent Job ID',
12
+ name: 'agentId',
13
+ type: 'string',
14
+ required: true,
15
+ default: '',
16
+ description: 'ID of the agent job to get status for. Returns status (processing, completed, failed), extracted data, credits used, and expiration time. Job results are available for 24 hours after completion.',
17
+ placeholder: '1234abcd-5678-efgh-9012-ijklmnopqrst',
18
+ routing: {
19
+ request: {
20
+ url: '=/agent/{{$value}}',
21
+ },
22
+ },
23
+ displayOptions: {
24
+ show: {
25
+ resource: [exports.resourceName],
26
+ operation: [exports.operationName],
27
+ },
28
+ },
29
+ };
30
+ }
31
+ function createGetAgentStatusProperties() {
32
+ return [(0, common_1.createOperationNotice)(exports.resourceName, name, 'GET'), createAgentIdProperty()];
33
+ }
34
+ const { options, properties } = (0, common_1.buildApiProperties)(name, displayName, createGetAgentStatusProperties());
35
+ exports.options = options;
36
+ exports.properties = properties;
37
+ options.routing = {
38
+ request: {
39
+ method: 'GET',
40
+ },
41
+ output: {
42
+ postReceive: [
43
+ {
44
+ type: 'setKeyValue',
45
+ properties: {
46
+ data: '={{$response.body}}',
47
+ },
48
+ },
49
+ ],
50
+ },
51
+ };
52
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Firecrawl/api/getAgentStatus/index.ts"],"names":[],"mappings":";;;AACA,sCAAsE;AAEtE,MAAM,IAAI,GAAG,gBAAgB,CAAC;AAC9B,MAAM,WAAW,GAAG,kBAAkB,CAAC;AAC1B,QAAA,aAAa,GAAG,gBAAgB,CAAC;AACjC,QAAA,YAAY,GAAG,OAAO,CAAC;AAMpC,SAAS,qBAAqB;IAC7B,OAAO;QACN,WAAW,EAAE,cAAc;QAC3B,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,IAAI;QACd,OAAO,EAAE,EAAE;QACX,WAAW,EACV,oMAAoM;QACrM,WAAW,EAAE,sCAAsC;QACnD,OAAO,EAAE;YACR,OAAO,EAAE;gBACR,GAAG,EAAE,oBAAoB;aACzB;SACD;QACD,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,oBAAY,CAAC;gBACxB,SAAS,EAAE,CAAC,qBAAa,CAAC;aAC1B;SACD;KACD,CAAC;AACH,CAAC;AAMD,SAAS,8BAA8B;IACtC,OAAO,CAAC,IAAA,8BAAqB,EAAC,oBAAY,EAAE,IAAI,EAAE,KAAK,CAAC,EAAE,qBAAqB,EAAE,CAAC,CAAC;AACpF,CAAC;AAGD,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,GAAG,IAAA,2BAAkB,EACjD,IAAI,EACJ,WAAW,EACX,8BAA8B,EAAE,CAChC,CAAC;AAmBO,0BAAO;AAAE,gCAAU;AAhB5B,OAAO,CAAC,OAAO,GAAG;IACjB,OAAO,EAAE;QACR,MAAM,EAAE,KAAK;KACb;IACD,MAAM,EAAE;QACP,WAAW,EAAE;YACZ;gBACC,IAAI,EAAE,aAAa;gBACnB,UAAU,EAAE;oBACX,IAAI,EAAE,qBAAqB;iBAC3B;aACD;SACD;KACD;CACD,CAAC"}
@@ -0,0 +1,6 @@
1
+ import { INodeProperties } from 'n8n-workflow';
2
+ export declare const name = "getCrawlErrors";
3
+ export declare const displayName = "Get crawl errors";
4
+ export declare const resourceName = "Crawling";
5
+ declare const options: import("n8n-workflow").INodePropertyOptions, properties: INodeProperties[];
6
+ export { options, properties };
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.properties = exports.options = exports.resourceName = exports.displayName = exports.name = void 0;
4
+ const common_1 = require("../common");
5
+ exports.name = 'getCrawlErrors';
6
+ exports.displayName = 'Get crawl errors';
7
+ exports.resourceName = 'Crawling';
8
+ function createCrawlIdProperty() {
9
+ return {
10
+ displayName: 'Crawl ID',
11
+ name: 'crawlId',
12
+ type: 'string',
13
+ required: true,
14
+ default: '',
15
+ description: 'ID of the crawl job',
16
+ routing: {
17
+ request: {
18
+ url: '=/crawl/{{$value}}/errors',
19
+ },
20
+ },
21
+ displayOptions: {
22
+ show: {
23
+ resource: [exports.resourceName],
24
+ operation: [exports.name],
25
+ },
26
+ },
27
+ };
28
+ }
29
+ function createProperties() {
30
+ return [(0, common_1.createOperationNotice)(exports.resourceName, exports.name, 'GET'), createCrawlIdProperty()];
31
+ }
32
+ const { options, properties } = (0, common_1.buildApiProperties)(exports.name, exports.displayName, createProperties());
33
+ exports.options = options;
34
+ exports.properties = properties;
35
+ options.routing = {
36
+ request: {
37
+ method: 'GET',
38
+ },
39
+ };
40
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Firecrawl/api/getCrawlErrors/index.ts"],"names":[],"mappings":";;;AACA,sCAAsE;AAEzD,QAAA,IAAI,GAAG,gBAAgB,CAAC;AACxB,QAAA,WAAW,GAAG,kBAAkB,CAAC;AACjC,QAAA,YAAY,GAAG,UAAU,CAAC;AAEvC,SAAS,qBAAqB;IAC7B,OAAO;QACN,WAAW,EAAE,UAAU;QACvB,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,IAAI;QACd,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,qBAAqB;QAClC,OAAO,EAAE;YACR,OAAO,EAAE;gBACR,GAAG,EAAE,2BAA2B;aAChC;SACD;QACD,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,oBAAY,CAAC;gBACxB,SAAS,EAAE,CAAC,YAAI,CAAC;aACjB;SACD;KACD,CAAC;AACH,CAAC;AAED,SAAS,gBAAgB;IACxB,OAAO,CAAC,IAAA,8BAAqB,EAAC,oBAAY,EAAE,YAAI,EAAE,KAAK,CAAC,EAAE,qBAAqB,EAAE,CAAC,CAAC;AACpF,CAAC;AAED,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,GAAG,IAAA,2BAAkB,EAAC,YAAI,EAAE,mBAAW,EAAE,gBAAgB,EAAE,CAAC,CAAC;AAQjF,0BAAO;AAAE,gCAAU;AAN5B,OAAO,CAAC,OAAO,GAAG;IACjB,OAAO,EAAE;QACR,MAAM,EAAE,KAAK;KACb;CACD,CAAC"}
@@ -2,5 +2,6 @@ import { INodeProperties } from 'n8n-workflow';
2
2
  export declare const name = "getCrawlStatus";
3
3
  export declare const displayName = "Get crawl status";
4
4
  export declare const operationName = "getCrawlStatus";
5
+ export declare const resourceName = "Crawling";
5
6
  declare const options: import("n8n-workflow").INodePropertyOptions, properties: INodeProperties[];
6
7
  export { options, properties };
@@ -1,10 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.properties = exports.options = exports.operationName = exports.displayName = exports.name = void 0;
3
+ exports.properties = exports.options = exports.resourceName = exports.operationName = exports.displayName = exports.name = void 0;
4
4
  const common_1 = require("../common");
5
5
  exports.name = 'getCrawlStatus';
6
6
  exports.displayName = 'Get crawl status';
7
7
  exports.operationName = 'getCrawlStatus';
8
+ exports.resourceName = 'Crawling';
8
9
  function createCrawlIdProperty() {
9
10
  return {
10
11
  displayName: 'Crawl ID',
@@ -21,7 +22,7 @@ function createCrawlIdProperty() {
21
22
  },
22
23
  displayOptions: {
23
24
  show: {
24
- resource: ['Default'],
25
+ resource: [exports.resourceName],
25
26
  operation: [exports.operationName],
26
27
  },
27
28
  },
@@ -29,7 +30,7 @@ function createCrawlIdProperty() {
29
30
  }
30
31
  function createGetCrawlStatusProperties() {
31
32
  return [
32
- (0, common_1.createOperationNotice)('Default', exports.name, 'GET'),
33
+ (0, common_1.createOperationNotice)(exports.resourceName, exports.name, 'GET'),
33
34
  createCrawlIdProperty(),
34
35
  ];
35
36
  }
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Firecrawl/api/getCrawlStatus/index.ts"],"names":[],"mappings":";;;AACA,sCAA8F;AAGjF,QAAA,IAAI,GAAG,gBAAgB,CAAC;AACxB,QAAA,WAAW,GAAG,kBAAkB,CAAC;AAEjC,QAAA,aAAa,GAAG,gBAAgB,CAAC;AAM9C,SAAS,qBAAqB;IAC7B,OAAO;QACN,WAAW,EAAE,UAAU;QACvB,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,IAAI;QACd,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,uCAAuC;QACpD,WAAW,EAAE,sCAAsC;QACnD,OAAO,EAAE;YACR,OAAO,EAAE;gBACR,GAAG,EAAE,oBAAoB;aACzB;SACD;QACD,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,qBAAa,CAAC;aAC1B;SACD;KACD,CAAC;AACH,CAAC;AAKD,SAAS,8BAA8B;IACtC,OAAO;QAEN,IAAA,8BAAqB,EAAC,SAAS,EAAE,YAAI,EAAE,KAAK,CAAC;QAG7C,qBAAqB,EAAE;KACvB,CAAC;AACH,CAAC;AAGD,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,GAAG,IAAA,2BAAkB,EACjD,YAAI,EACJ,mBAAW,EACX,8BAA8B,EAAE,CAChC,CAAC;AAmBO,0BAAO;AAAE,gCAAU;AAhB5B,OAAO,CAAC,OAAO,GAAG;IACjB,OAAO,EAAE;QACR,MAAM,EAAE,KAAK;KACb;IACD,MAAM,EAAE;QACP,WAAW,EAAE;YACZ;gBACC,IAAI,EAAE,aAAa;gBACnB,UAAU,EAAE;oBACX,IAAI,EAAE,qBAAqB;iBAC3B;aACD;SACD;KACD;CACD,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Firecrawl/api/getCrawlStatus/index.ts"],"names":[],"mappings":";;;AACA,sCAA8F;AAGjF,QAAA,IAAI,GAAG,gBAAgB,CAAC;AACxB,QAAA,WAAW,GAAG,kBAAkB,CAAC;AACjC,QAAA,aAAa,GAAG,gBAAgB,CAAC;AACjC,QAAA,YAAY,GAAG,UAAU,CAAC;AAMvC,SAAS,qBAAqB;IAC7B,OAAO;QACN,WAAW,EAAE,UAAU;QACvB,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,IAAI;QACd,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,uCAAuC;QACpD,WAAW,EAAE,sCAAsC;QACnD,OAAO,EAAE;YACR,OAAO,EAAE;gBACR,GAAG,EAAE,oBAAoB;aACzB;SACD;QACD,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,oBAAY,CAAC;gBACxB,SAAS,EAAE,CAAC,qBAAa,CAAC;aAC1B;SACD;KACD,CAAC;AACH,CAAC;AAKD,SAAS,8BAA8B;IACtC,OAAO;QAEN,IAAA,8BAAqB,EAAC,oBAAY,EAAE,YAAI,EAAE,KAAK,CAAC;QAGhD,qBAAqB,EAAE;KACvB,CAAC;AACH,CAAC;AAGD,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,GAAG,IAAA,2BAAkB,EACjD,YAAI,EACJ,mBAAW,EACX,8BAA8B,EAAE,CAChC,CAAC;AAmBO,0BAAO;AAAE,gCAAU;AAhB5B,OAAO,CAAC,OAAO,GAAG;IACjB,OAAO,EAAE;QACR,MAAM,EAAE,KAAK;KACb;IACD,MAAM,EAAE;QACP,WAAW,EAAE;YACZ;gBACC,IAAI,EAAE,aAAa;gBACnB,UAAU,EAAE;oBACX,IAAI,EAAE,qBAAqB;iBAC3B;aACD;SACD;KACD;CACD,CAAC"}
@@ -1,4 +1,5 @@
1
1
  import { INodeProperties } from 'n8n-workflow';
2
2
  export declare const operationName = "getExtractStatus";
3
+ export declare const resourceName = "Extract";
3
4
  declare const options: import("n8n-workflow").INodePropertyOptions, properties: INodeProperties[];
4
5
  export { options, properties };
@@ -1,10 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.properties = exports.options = exports.operationName = void 0;
3
+ exports.properties = exports.options = exports.resourceName = exports.operationName = void 0;
4
4
  const common_1 = require("../common");
5
5
  const name = 'getExtractStatus';
6
6
  const displayName = 'Get Extract Status';
7
7
  exports.operationName = 'getExtractStatus';
8
+ exports.resourceName = 'Extract';
8
9
  function createExtractIdProperty() {
9
10
  return {
10
11
  displayName: 'Extract ID',
@@ -21,14 +22,14 @@ function createExtractIdProperty() {
21
22
  },
22
23
  displayOptions: {
23
24
  show: {
24
- resource: ['Default'],
25
+ resource: [exports.resourceName],
25
26
  operation: [exports.operationName],
26
27
  },
27
28
  },
28
29
  };
29
30
  }
30
31
  function createGetExtractStatusProperties() {
31
- return [(0, common_1.createOperationNotice)('Default', name, 'GET'), createExtractIdProperty()];
32
+ return [(0, common_1.createOperationNotice)(exports.resourceName, name, 'GET'), createExtractIdProperty()];
32
33
  }
33
34
  const { options, properties } = (0, common_1.buildApiProperties)(name, displayName, createGetExtractStatusProperties());
34
35
  exports.options = options;
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Firecrawl/api/getExtractStatus/index.ts"],"names":[],"mappings":";;;AACA,sCAAsE;AAEtE,MAAM,IAAI,GAAG,kBAAkB,CAAC;AAChC,MAAM,WAAW,GAAG,oBAAoB,CAAC;AAC5B,QAAA,aAAa,GAAG,kBAAkB,CAAC;AAMhD,SAAS,uBAAuB;IAC/B,OAAO;QACN,WAAW,EAAE,YAAY;QACzB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,IAAI;QACd,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,yCAAyC;QACtD,WAAW,EAAE,sCAAsC;QACnD,OAAO,EAAE;YACR,OAAO,EAAE;gBACR,GAAG,EAAE,sBAAsB;aAC3B;SACD;QACD,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,qBAAa,CAAC;aAC1B;SACD;KACD,CAAC;AACH,CAAC;AAMD,SAAS,gCAAgC;IACxC,OAAO,CAAC,IAAA,8BAAqB,EAAC,SAAS,EAAE,IAAI,EAAE,KAAK,CAAC,EAAE,uBAAuB,EAAE,CAAC,CAAC;AACnF,CAAC;AAGD,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,GAAG,IAAA,2BAAkB,EACjD,IAAI,EACJ,WAAW,EACX,gCAAgC,EAAE,CAClC,CAAC;AAmBO,0BAAO;AAAE,gCAAU;AAhB5B,OAAO,CAAC,OAAO,GAAG;IACjB,OAAO,EAAE;QACR,MAAM,EAAE,KAAK;KACb;IACD,MAAM,EAAE;QACP,WAAW,EAAE;YACZ;gBACC,IAAI,EAAE,aAAa;gBACnB,UAAU,EAAE;oBACX,IAAI,EAAE,qBAAqB;iBAC3B;aACD;SACD;KACD;CACD,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Firecrawl/api/getExtractStatus/index.ts"],"names":[],"mappings":";;;AACA,sCAAsE;AAEtE,MAAM,IAAI,GAAG,kBAAkB,CAAC;AAChC,MAAM,WAAW,GAAG,oBAAoB,CAAC;AAC5B,QAAA,aAAa,GAAG,kBAAkB,CAAC;AACnC,QAAA,YAAY,GAAG,SAAS,CAAC;AAMtC,SAAS,uBAAuB;IAC/B,OAAO;QACN,WAAW,EAAE,YAAY;QACzB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,IAAI;QACd,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,yCAAyC;QACtD,WAAW,EAAE,sCAAsC;QACnD,OAAO,EAAE;YACR,OAAO,EAAE;gBACR,GAAG,EAAE,sBAAsB;aAC3B;SACD;QACD,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,oBAAY,CAAC;gBACxB,SAAS,EAAE,CAAC,qBAAa,CAAC;aAC1B;SACD;KACD,CAAC;AACH,CAAC;AAMD,SAAS,gCAAgC;IACxC,OAAO,CAAC,IAAA,8BAAqB,EAAC,oBAAY,EAAE,IAAI,EAAE,KAAK,CAAC,EAAE,uBAAuB,EAAE,CAAC,CAAC;AACtF,CAAC;AAGD,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,GAAG,IAAA,2BAAkB,EACjD,IAAI,EACJ,WAAW,EACX,gCAAgC,EAAE,CAClC,CAAC;AAmBO,0BAAO;AAAE,gCAAU;AAhB5B,OAAO,CAAC,OAAO,GAAG;IACjB,OAAO,EAAE;QACR,MAAM,EAAE,KAAK;KACb;IACD,MAAM,EAAE;QACP,WAAW,EAAE;YACZ;gBACC,IAAI,EAAE,aAAa;gBACnB,UAAU,EAAE;oBACX,IAAI,EAAE,qBAAqB;iBAC3B;aACD;SACD;KACD;CACD,CAAC"}
@@ -1,22 +1,80 @@
1
1
  import { INodeProperties } from 'n8n-workflow';
2
2
  export declare const apiProperties: INodeProperties[];
3
3
  export declare const apiMethods: {
4
- Default: {
5
- search: {
4
+ Scraping: {
5
+ scrape: {
6
6
  execute(this: any): any;
7
7
  };
8
- map: {
8
+ batchScrape: {
9
9
  execute(this: any): any;
10
10
  };
11
- scrape: {
11
+ batchScrapeStatus: {
12
+ execute(this: any): any;
13
+ };
14
+ batchScrapeErrors: {
12
15
  execute(this: any): any;
13
16
  };
17
+ cancelBatchScrape: {
18
+ execute(this: any): any;
19
+ };
20
+ };
21
+ Crawling: {
14
22
  crawl: {
15
23
  execute(this: any): any;
16
24
  };
17
25
  getCrawlStatus: {
18
26
  execute(this: any): any;
19
27
  };
28
+ cancelCrawl: {
29
+ execute(this: any): any;
30
+ };
31
+ getCrawlErrors: {
32
+ execute(this: any): any;
33
+ };
34
+ crawlActive: {
35
+ execute(this: any): any;
36
+ };
37
+ crawlParamsPreview: {
38
+ execute(this: any): any;
39
+ };
40
+ };
41
+ Agent: {
42
+ agent: {
43
+ execute(this: any): any;
44
+ };
45
+ agentAsync: {
46
+ execute(this: any): any;
47
+ };
48
+ getAgentStatus: {
49
+ execute(this: any): any;
50
+ };
51
+ };
52
+ MapSearch: {
53
+ map: {
54
+ execute(this: any): any;
55
+ };
56
+ search: {
57
+ execute(this: any): any;
58
+ };
59
+ };
60
+ Account: {
61
+ teamCreditUsage: {
62
+ execute(this: any): any;
63
+ };
64
+ creditUsageHistorical: {
65
+ execute(this: any): any;
66
+ };
67
+ teamTokenUsage: {
68
+ execute(this: any): any;
69
+ };
70
+ teamTokenUsageHistorical: {
71
+ execute(this: any): any;
72
+ };
73
+ teamQueueStatus: {
74
+ execute(this: any): any;
75
+ };
76
+ };
77
+ Extract: {
20
78
  extract: {
21
79
  execute(this: any): any;
22
80
  };
@@ -5,58 +5,201 @@ const search_1 = require("./search");
5
5
  const map_1 = require("./map");
6
6
  const scrape_1 = require("./scrape");
7
7
  const crawl_1 = require("./crawl");
8
+ const batchScrape_1 = require("./batchScrape");
9
+ const batchScrapeStatus_1 = require("./batchScrapeStatus");
10
+ const batchScrapeErrors_1 = require("./batchScrapeErrors");
11
+ const crawlActive_1 = require("./crawlActive");
12
+ const crawlParamsPreview_1 = require("./crawlParamsPreview");
13
+ const cancelCrawl_1 = require("./cancelCrawl");
14
+ const getCrawlErrors_1 = require("./getCrawlErrors");
8
15
  const getCrawlStatus_1 = require("./getCrawlStatus");
9
16
  const extract_1 = require("./extract");
10
17
  const getExtractStatus_1 = require("./getExtractStatus");
11
- const operationOptions = [
12
- search_1.options,
13
- map_1.options,
18
+ const agent_1 = require("./agent");
19
+ const agentAsync_1 = require("./agentAsync");
20
+ const getAgentStatus_1 = require("./getAgentStatus");
21
+ const teamTokenUsage_1 = require("./teamTokenUsage");
22
+ const creditUsageHistorical_1 = require("./creditUsageHistorical");
23
+ const cancelBatchScrape_1 = require("./cancelBatchScrape");
24
+ const teamCreditUsage_1 = require("./teamCreditUsage");
25
+ const teamTokenUsageHistorical_1 = require("./teamTokenUsageHistorical");
26
+ const teamQueueStatus_1 = require("./teamQueueStatus");
27
+ const scrapingOperationOptions = [
14
28
  scrape_1.options,
29
+ batchScrape_1.options,
30
+ batchScrapeStatus_1.options,
31
+ batchScrapeErrors_1.options,
32
+ cancelBatchScrape_1.options,
33
+ ];
34
+ const crawlingOperationOptions = [
15
35
  crawl_1.options,
16
36
  getCrawlStatus_1.options,
37
+ cancelCrawl_1.options,
38
+ getCrawlErrors_1.options,
39
+ crawlActive_1.options,
40
+ crawlParamsPreview_1.options,
41
+ ];
42
+ const agentOperationOptions = [
43
+ agent_1.options,
44
+ agentAsync_1.options,
45
+ getAgentStatus_1.options,
46
+ ];
47
+ const mapSearchOperationOptions = [
48
+ map_1.options,
49
+ search_1.options,
50
+ ];
51
+ const accountOperationOptions = [
52
+ teamCreditUsage_1.options,
53
+ creditUsageHistorical_1.options,
54
+ teamTokenUsage_1.options,
55
+ teamTokenUsageHistorical_1.options,
56
+ teamQueueStatus_1.options,
57
+ ];
58
+ const extractOperationOptions = [
17
59
  extract_1.options,
18
60
  getExtractStatus_1.options,
19
61
  ];
20
- const rawProperties = [
21
- ...search_1.properties,
22
- ...map_1.properties,
23
- ...scrape_1.properties,
24
- ...crawl_1.properties,
25
- ...getCrawlStatus_1.properties,
26
- ...extract_1.properties,
27
- ...getExtractStatus_1.properties,
28
- ];
29
- const operationSelector = {
62
+ const scrapingOperationSelector = {
63
+ displayName: 'Operation',
64
+ name: 'operation',
65
+ type: 'options',
66
+ noDataExpression: true,
67
+ displayOptions: {
68
+ show: {
69
+ resource: ['Scraping'],
70
+ },
71
+ },
72
+ default: 'scrape',
73
+ options: scrapingOperationOptions,
74
+ };
75
+ const crawlingOperationSelector = {
76
+ displayName: 'Operation',
77
+ name: 'operation',
78
+ type: 'options',
79
+ noDataExpression: true,
80
+ displayOptions: {
81
+ show: {
82
+ resource: ['Crawling'],
83
+ },
84
+ },
85
+ default: 'crawl',
86
+ options: crawlingOperationOptions,
87
+ };
88
+ const agentOperationSelector = {
89
+ displayName: 'Operation',
90
+ name: 'operation',
91
+ type: 'options',
92
+ noDataExpression: true,
93
+ displayOptions: {
94
+ show: {
95
+ resource: ['Agent'],
96
+ },
97
+ },
98
+ default: 'agent',
99
+ options: agentOperationOptions,
100
+ };
101
+ const mapSearchOperationSelector = {
30
102
  displayName: 'Operation',
31
103
  name: 'operation',
32
104
  type: 'options',
33
105
  noDataExpression: true,
34
106
  displayOptions: {
35
107
  show: {
36
- resource: ['Default'],
108
+ resource: ['MapSearch'],
37
109
  },
38
110
  },
39
111
  default: 'map',
40
- options: operationOptions,
112
+ options: mapSearchOperationOptions,
41
113
  };
42
- exports.apiProperties = [operationSelector, ...rawProperties];
114
+ const accountOperationSelector = {
115
+ displayName: 'Operation',
116
+ name: 'operation',
117
+ type: 'options',
118
+ noDataExpression: true,
119
+ displayOptions: {
120
+ show: {
121
+ resource: ['Account'],
122
+ },
123
+ },
124
+ default: 'teamCreditUsage',
125
+ options: accountOperationOptions,
126
+ };
127
+ const extractOperationSelector = {
128
+ displayName: 'Operation',
129
+ name: 'operation',
130
+ type: 'options',
131
+ noDataExpression: true,
132
+ displayOptions: {
133
+ show: {
134
+ resource: ['Extract'],
135
+ },
136
+ },
137
+ default: 'extract',
138
+ options: extractOperationOptions,
139
+ };
140
+ const rawProperties = [
141
+ ...scrape_1.properties,
142
+ ...batchScrape_1.properties,
143
+ ...batchScrapeStatus_1.properties,
144
+ ...batchScrapeErrors_1.properties,
145
+ ...cancelBatchScrape_1.properties,
146
+ ...crawl_1.properties,
147
+ ...getCrawlStatus_1.properties,
148
+ ...cancelCrawl_1.properties,
149
+ ...getCrawlErrors_1.properties,
150
+ ...crawlActive_1.properties,
151
+ ...crawlParamsPreview_1.properties,
152
+ ...agent_1.properties,
153
+ ...agentAsync_1.properties,
154
+ ...getAgentStatus_1.properties,
155
+ ...map_1.properties,
156
+ ...search_1.properties,
157
+ ...teamCreditUsage_1.properties,
158
+ ...creditUsageHistorical_1.properties,
159
+ ...teamTokenUsage_1.properties,
160
+ ...teamTokenUsageHistorical_1.properties,
161
+ ...teamQueueStatus_1.properties,
162
+ ...extract_1.properties,
163
+ ...getExtractStatus_1.properties,
164
+ ];
165
+ exports.apiProperties = [
166
+ scrapingOperationSelector,
167
+ crawlingOperationSelector,
168
+ agentOperationSelector,
169
+ mapSearchOperationSelector,
170
+ accountOperationSelector,
171
+ extractOperationSelector,
172
+ ...rawProperties,
173
+ ];
43
174
  exports.apiMethods = {
44
- Default: {
45
- search: {
175
+ Scraping: {
176
+ scrape: {
46
177
  execute() {
47
178
  return this.helpers.httpRequest;
48
179
  },
49
180
  },
50
- map: {
181
+ batchScrape: {
51
182
  execute() {
52
183
  return this.helpers.httpRequest;
53
184
  },
54
185
  },
55
- scrape: {
186
+ batchScrapeStatus: {
187
+ execute() {
188
+ return this.helpers.httpRequest;
189
+ },
190
+ },
191
+ batchScrapeErrors: {
56
192
  execute() {
57
193
  return this.helpers.httpRequest;
58
194
  },
59
195
  },
196
+ cancelBatchScrape: {
197
+ execute() {
198
+ return this.helpers.httpRequest;
199
+ },
200
+ },
201
+ },
202
+ Crawling: {
60
203
  crawl: {
61
204
  execute() {
62
205
  return this.helpers.httpRequest;
@@ -67,6 +210,84 @@ exports.apiMethods = {
67
210
  return this.helpers.httpRequest;
68
211
  },
69
212
  },
213
+ cancelCrawl: {
214
+ execute() {
215
+ return this.helpers.httpRequest;
216
+ },
217
+ },
218
+ getCrawlErrors: {
219
+ execute() {
220
+ return this.helpers.httpRequest;
221
+ },
222
+ },
223
+ crawlActive: {
224
+ execute() {
225
+ return this.helpers.httpRequest;
226
+ },
227
+ },
228
+ crawlParamsPreview: {
229
+ execute() {
230
+ return this.helpers.httpRequest;
231
+ },
232
+ },
233
+ },
234
+ Agent: {
235
+ agent: {
236
+ execute() {
237
+ return this.helpers.httpRequest;
238
+ },
239
+ },
240
+ agentAsync: {
241
+ execute() {
242
+ return this.helpers.httpRequest;
243
+ },
244
+ },
245
+ getAgentStatus: {
246
+ execute() {
247
+ return this.helpers.httpRequest;
248
+ },
249
+ },
250
+ },
251
+ MapSearch: {
252
+ map: {
253
+ execute() {
254
+ return this.helpers.httpRequest;
255
+ },
256
+ },
257
+ search: {
258
+ execute() {
259
+ return this.helpers.httpRequest;
260
+ },
261
+ },
262
+ },
263
+ Account: {
264
+ teamCreditUsage: {
265
+ execute() {
266
+ return this.helpers.httpRequest;
267
+ },
268
+ },
269
+ creditUsageHistorical: {
270
+ execute() {
271
+ return this.helpers.httpRequest;
272
+ },
273
+ },
274
+ teamTokenUsage: {
275
+ execute() {
276
+ return this.helpers.httpRequest;
277
+ },
278
+ },
279
+ teamTokenUsageHistorical: {
280
+ execute() {
281
+ return this.helpers.httpRequest;
282
+ },
283
+ },
284
+ teamQueueStatus: {
285
+ execute() {
286
+ return this.helpers.httpRequest;
287
+ },
288
+ },
289
+ },
290
+ Extract: {
70
291
  extract: {
71
292
  execute() {
72
293
  return this.helpers.httpRequest;
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../nodes/Firecrawl/api/index.ts"],"names":[],"mappings":";;;AAGA,qCAAoF;AACpF,+BAA2E;AAC3E,qCAAoF;AACpF,mCAAiF;AACjF,qDAG0B;AAC1B,uCAAuF;AACvF,yDAG4B;AAK5B,MAAM,gBAAgB,GAA2B;IAChD,gBAAa;IACb,aAAU;IACV,gBAAa;IACb,eAAY;IACZ,wBAAqB;IACrB,iBAAc;IACd,0BAAuB;CACvB,CAAC;AAKF,MAAM,aAAa,GAAsB;IACxC,GAAG,mBAAgB;IACnB,GAAG,gBAAa;IAChB,GAAG,mBAAgB;IACnB,GAAG,kBAAe;IAClB,GAAG,2BAAwB;IAC3B,GAAG,oBAAiB;IACpB,GAAG,6BAA0B;CAC7B,CAAC;AAKF,MAAM,iBAAiB,GAAoB;IAC1C,WAAW,EAAE,WAAW;IACxB,IAAI,EAAE,WAAW;IACjB,IAAI,EAAE,SAAS;IACf,gBAAgB,EAAE,IAAI;IACtB,cAAc,EAAE;QACf,IAAI,EAAE;YACL,QAAQ,EAAE,CAAC,SAAS,CAAC;SACrB;KACD;IACD,OAAO,EAAE,KAAK;IACd,OAAO,EAAE,gBAAgB;CACzB,CAAC;AAKW,QAAA,aAAa,GAAsB,CAAC,iBAAiB,EAAE,GAAG,aAAa,CAAC,CAAC;AAKzE,QAAA,UAAU,GAAG;IACzB,OAAO,EAAE;QACR,MAAM,EAAE;YACP,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;QACD,GAAG,EAAE;YACJ,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;QACD,MAAM,EAAE;YACP,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;QACD,KAAK,EAAE;YACN,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;QACD,cAAc,EAAE;YACf,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;QACD,OAAO,EAAE;YACR,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;QACD,gBAAgB,EAAE;YACjB,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;KACD;CACD,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../nodes/Firecrawl/api/index.ts"],"names":[],"mappings":";;;AAGA,qCAAoF;AACpF,+BAA2E;AAC3E,qCAAoF;AACpF,mCAAiF;AACjF,+CAAmG;AACnG,2DAG6B;AAC7B,2DAG6B;AAC7B,+CAAmG;AACnG,6DAG8B;AAC9B,+CAAmG;AACnG,qDAG0B;AAC1B,qDAG0B;AAC1B,uCAAuF;AACvF,yDAG4B;AAC5B,mCAAiF;AACjF,6CAAgG;AAChG,qDAG0B;AAC1B,qDAG0B;AAC1B,mEAGiC;AACjC,2DAG6B;AAC7B,uDAG2B;AAC3B,yEAGoC;AACpC,uDAG2B;AAK3B,MAAM,wBAAwB,GAA2B;IACxD,gBAAa;IACb,qBAAkB;IAClB,2BAAwB;IACxB,2BAAwB;IACxB,2BAAwB;CACxB,CAAC;AAEF,MAAM,wBAAwB,GAA2B;IACxD,eAAY;IACZ,wBAAqB;IACrB,qBAAkB;IAClB,wBAAqB;IACrB,qBAAkB;IAClB,4BAAyB;CACzB,CAAC;AAEF,MAAM,qBAAqB,GAA2B;IACrD,eAAY;IACZ,oBAAiB;IACjB,wBAAqB;CACrB,CAAC;AAEF,MAAM,yBAAyB,GAA2B;IACzD,aAAU;IACV,gBAAa;CACb,CAAC;AAEF,MAAM,uBAAuB,GAA2B;IACvD,yBAAsB;IACtB,+BAA4B;IAC5B,wBAAqB;IACrB,kCAA+B;IAC/B,yBAAsB;CACtB,CAAC;AAEF,MAAM,uBAAuB,GAA2B;IACvD,iBAAc;IACd,0BAAuB;CACvB,CAAC;AAKF,MAAM,yBAAyB,GAAoB;IAClD,WAAW,EAAE,WAAW;IACxB,IAAI,EAAE,WAAW;IACjB,IAAI,EAAE,SAAS;IACf,gBAAgB,EAAE,IAAI;IACtB,cAAc,EAAE;QACf,IAAI,EAAE;YACL,QAAQ,EAAE,CAAC,UAAU,CAAC;SACtB;KACD;IACD,OAAO,EAAE,QAAQ;IACjB,OAAO,EAAE,wBAAwB;CACjC,CAAC;AAEF,MAAM,yBAAyB,GAAoB;IAClD,WAAW,EAAE,WAAW;IACxB,IAAI,EAAE,WAAW;IACjB,IAAI,EAAE,SAAS;IACf,gBAAgB,EAAE,IAAI;IACtB,cAAc,EAAE;QACf,IAAI,EAAE;YACL,QAAQ,EAAE,CAAC,UAAU,CAAC;SACtB;KACD;IACD,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,wBAAwB;CACjC,CAAC;AAEF,MAAM,sBAAsB,GAAoB;IAC/C,WAAW,EAAE,WAAW;IACxB,IAAI,EAAE,WAAW;IACjB,IAAI,EAAE,SAAS;IACf,gBAAgB,EAAE,IAAI;IACtB,cAAc,EAAE;QACf,IAAI,EAAE;YACL,QAAQ,EAAE,CAAC,OAAO,CAAC;SACnB;KACD;IACD,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,qBAAqB;CAC9B,CAAC;AAEF,MAAM,0BAA0B,GAAoB;IACnD,WAAW,EAAE,WAAW;IACxB,IAAI,EAAE,WAAW;IACjB,IAAI,EAAE,SAAS;IACf,gBAAgB,EAAE,IAAI;IACtB,cAAc,EAAE;QACf,IAAI,EAAE;YACL,QAAQ,EAAE,CAAC,WAAW,CAAC;SACvB;KACD;IACD,OAAO,EAAE,KAAK;IACd,OAAO,EAAE,yBAAyB;CAClC,CAAC;AAEF,MAAM,wBAAwB,GAAoB;IACjD,WAAW,EAAE,WAAW;IACxB,IAAI,EAAE,WAAW;IACjB,IAAI,EAAE,SAAS;IACf,gBAAgB,EAAE,IAAI;IACtB,cAAc,EAAE;QACf,IAAI,EAAE;YACL,QAAQ,EAAE,CAAC,SAAS,CAAC;SACrB;KACD;IACD,OAAO,EAAE,iBAAiB;IAC1B,OAAO,EAAE,uBAAuB;CAChC,CAAC;AAEF,MAAM,wBAAwB,GAAoB;IACjD,WAAW,EAAE,WAAW;IACxB,IAAI,EAAE,WAAW;IACjB,IAAI,EAAE,SAAS;IACf,gBAAgB,EAAE,IAAI;IACtB,cAAc,EAAE;QACf,IAAI,EAAE;YACL,QAAQ,EAAE,CAAC,SAAS,CAAC;SACrB;KACD;IACD,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,uBAAuB;CAChC,CAAC;AAKF,MAAM,aAAa,GAAsB;IAExC,GAAG,mBAAgB;IACnB,GAAG,wBAAqB;IACxB,GAAG,8BAA2B;IAC9B,GAAG,8BAA2B;IAC9B,GAAG,8BAA2B;IAE9B,GAAG,kBAAe;IAClB,GAAG,2BAAwB;IAC3B,GAAG,wBAAqB;IACxB,GAAG,2BAAwB;IAC3B,GAAG,wBAAqB;IACxB,GAAG,+BAA4B;IAE/B,GAAG,kBAAe;IAClB,GAAG,uBAAoB;IACvB,GAAG,2BAAwB;IAE3B,GAAG,gBAAa;IAChB,GAAG,mBAAgB;IAEnB,GAAG,4BAAyB;IAC5B,GAAG,kCAA+B;IAClC,GAAG,2BAAwB;IAC3B,GAAG,qCAAkC;IACrC,GAAG,4BAAyB;IAE5B,GAAG,oBAAiB;IACpB,GAAG,6BAA0B;CAC7B,CAAC;AAKW,QAAA,aAAa,GAAsB;IAC/C,yBAAyB;IACzB,yBAAyB;IACzB,sBAAsB;IACtB,0BAA0B;IAC1B,wBAAwB;IACxB,wBAAwB;IACxB,GAAG,aAAa;CAChB,CAAC;AAKW,QAAA,UAAU,GAAG;IACzB,QAAQ,EAAE;QACT,MAAM,EAAE;YACP,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;QACD,WAAW,EAAE;YACZ,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;QACD,iBAAiB,EAAE;YAClB,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;QACD,iBAAiB,EAAE;YAClB,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;QACD,iBAAiB,EAAE;YAClB,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;KACD;IACD,QAAQ,EAAE;QACT,KAAK,EAAE;YACN,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;QACD,cAAc,EAAE;YACf,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;QACD,WAAW,EAAE;YACZ,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;QACD,cAAc,EAAE;YACf,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;QACD,WAAW,EAAE;YACZ,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;QACD,kBAAkB,EAAE;YACnB,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;KACD;IACD,KAAK,EAAE;QACN,KAAK,EAAE;YACN,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;QACD,UAAU,EAAE;YACX,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;QACD,cAAc,EAAE;YACf,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;KACD;IACD,SAAS,EAAE;QACV,GAAG,EAAE;YACJ,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;QACD,MAAM,EAAE;YACP,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;KACD;IACD,OAAO,EAAE;QACR,eAAe,EAAE;YAChB,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;QACD,qBAAqB,EAAE;YACtB,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;QACD,cAAc,EAAE;YACf,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;QACD,wBAAwB,EAAE;YACzB,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;QACD,eAAe,EAAE;YAChB,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;KACD;IACD,OAAO,EAAE;QACR,OAAO,EAAE;YACR,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;QACD,gBAAgB,EAAE;YACjB,OAAO;gBACN,OAAO,IAAI,CAAC,OAAO,CAAC,WAAkB,CAAC;YACxC,CAAC;SACD;KACD;CACD,CAAC"}
@@ -1,6 +1,7 @@
1
1
  import { INodeProperties } from 'n8n-workflow';
2
2
  export declare const name = "map";
3
- export declare const displayName = "Map a website and get urls";
3
+ export declare const displayName = "Map a website to discover all URLs";
4
4
  export declare const operationName = "map";
5
+ export declare const resourceName = "MapSearch";
5
6
  declare const options: import("n8n-workflow").INodePropertyOptions, properties: INodeProperties[];
6
7
  export { options, properties };