@tavily/n8n-nodes-tavily 0.1.15 → 0.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 (27) hide show
  1. package/README.md +35 -2
  2. package/dist/credentials/TavilyApi.credentials.js +5 -0
  3. package/dist/credentials/TavilyApi.credentials.js.map +1 -1
  4. package/dist/nodes/Tavily/actions/crawl/crawl.operation.d.ts +36 -0
  5. package/dist/nodes/Tavily/actions/crawl/crawl.operation.js +54 -0
  6. package/dist/nodes/Tavily/actions/crawl/crawl.operation.js.map +1 -0
  7. package/dist/nodes/Tavily/actions/crawl/index.d.ts +4 -0
  8. package/dist/nodes/Tavily/actions/crawl/index.js +52 -0
  9. package/dist/nodes/Tavily/actions/crawl/index.js.map +1 -0
  10. package/dist/nodes/Tavily/actions/crawl/url.operation.d.ts +36 -0
  11. package/dist/nodes/Tavily/actions/crawl/url.operation.js +58 -0
  12. package/dist/nodes/Tavily/actions/crawl/url.operation.js.map +1 -0
  13. package/dist/nodes/Tavily/actions/extract/urls.operation.js +6 -1
  14. package/dist/nodes/Tavily/actions/extract/urls.operation.js.map +1 -1
  15. package/dist/nodes/Tavily/actions/node.description.js +7 -1
  16. package/dist/nodes/Tavily/actions/node.description.js.map +1 -1
  17. package/dist/nodes/Tavily/actions/node.type.d.ts +1 -0
  18. package/dist/nodes/Tavily/actions/router.js +5 -4
  19. package/dist/nodes/Tavily/actions/router.js.map +1 -1
  20. package/dist/nodes/Tavily/actions/search/query.operation.js +5 -0
  21. package/dist/nodes/Tavily/actions/search/query.operation.js.map +1 -1
  22. package/dist/nodes/Tavily/descriptions/common.descriptions.d.ts +1 -0
  23. package/dist/nodes/Tavily/descriptions/common.descriptions.js +131 -1
  24. package/dist/nodes/Tavily/descriptions/common.descriptions.js.map +1 -1
  25. package/dist/package.json +1 -1
  26. package/dist/tsconfig.tsbuildinfo +1 -1
  27. package/package.json +1 -1
package/README.md CHANGED
@@ -10,6 +10,9 @@ Tavily Search allows you to query the web with powerful filtering capabilities,
10
10
  ### Tavily Extract
11
11
  Tavily Extract allows you to effortlessly retrieve raw content from a list of websites, making it ideal for data collection, content analysis, and research. You can also combine Tavily Extract with our Search method: first, obtain a list of relevant documents, then perform further processing on selected links to gather additional information and use it as context for your research tasks.
12
12
 
13
+ ### Tavily Crawl
14
+ Tavily Crawl allows you to intelligently crawl a website from a starting URL to discover and extract content across multiple pages. Control depth, breadth, and apply filters to tailor your crawl for comprehensive analysis and content aggregation.
15
+
13
16
  ## Getting a Tavily API Key
14
17
 
15
18
  1. Go to the [Tavily website](https://tavily.com) and create an account
@@ -47,6 +50,17 @@ Tavily Search allows you to query the web with powerful filtering capabilities,
47
50
  - Configure any other extraction parameters (include images, extract depth)
48
51
  5. Run the workflow to extract the content
49
52
 
53
+ ### Tavily Crawl
54
+
55
+ 1. Add the "Tavily" node to your n8n workflow
56
+ 2. Connect it to the preceding node
57
+ 3. Click on 'Crawl'
58
+ 4. In the node's settings:
59
+ - Select your Tavily API credential
60
+ - Enter the root URL to begin the crawl
61
+ - Configure crawl parameters (max depth, limit, etc.)
62
+ 5. Run the workflow to crawl the website and extract content
63
+
50
64
  ## Parameters
51
65
 
52
66
  ### Tavily Search Parameters
@@ -75,6 +89,25 @@ Tavily Search allows you to query the web with powerful filtering capabilities,
75
89
  | Include Images | Include a list of images extracted from each URL |
76
90
  | Extract Depth | How deeply to parse each URL (Basic or Advanced) |
77
91
 
92
+ ### Tavily Crawl Parameters
93
+
94
+ | Parameter | Description |
95
+ |-----------|-------------|
96
+ | URL | The root URL to begin the crawl |
97
+ | Instructions | Natural language instructions for the crawler |
98
+ | Max Depth | Maximum depth of the crawl (≥ 1) |
99
+ | Max Breadth | Maximum number of links to follow per level (≥ 1) |
100
+ | Limit | Maximum number of results to return (≥ 1) |
101
+ | Categories | Filter URLs using predefined categories (About, Blog, Careers, etc.) |
102
+ | Select Paths | Regex patterns to select only URLs with specific path patterns |
103
+ | Select Domains | Regex patterns to select crawling to specific domains or subdomains |
104
+ | Exclude Paths | Regex patterns to exclude URLs with specific path patterns |
105
+ | Exclude Domains | Regex patterns to exclude specific domains or subdomains from crawling |
106
+ | Allow External | Whether to allow following links that go to external domains |
107
+ | Include Images | Whether to include images in the crawl results |
108
+ | Extract Depth | Extraction depth (Basic or Advanced) |
109
+ | Format | Format of the extracted web page content (Markdown or Text) |
110
+
78
111
  ## Troubleshooting
79
112
 
80
113
  ### Error Codes
@@ -84,8 +117,8 @@ Tavily Search allows you to query the web with powerful filtering capabilities,
84
117
  | 400 Bad Request | Invalid request parameters or unsupported values | Check all parameters and their formats |
85
118
  | 401 Unauthorized | Missing or invalid API key | Verify API key or generate a new one |
86
119
  | 429 Too Many Requests | Rate limit exceeded | Reduce request frequency or implement backoff |
87
- | 432 Plan Limit Exceeded | Exceeds plan limits | Upgrade your plan via [Tavily Dashboard](https://app.tavily.com/account/plan) |
88
- | 433 Pay-As-You-Go Limit Exceeded | Exceeds pay-as-you-go limit | Increase limit via [Tavily Dashboard](https://app.tavily.com/account/plan) |
120
+ | 432 Plan Limit Exceeded | Exceeds plan limits | Upgrade your plan via [Tavily Dashboard](https://app.tavily.com/billing) |
121
+ | 433 Pay-As-You-Go Limit Exceeded | Exceeds pay-as-you-go limit | Increase limit via [Tavily Dashboard](https://app.tavily.com/billing) |
89
122
  | 500 Internal Server Error | Server-side issue | Retry request after a few minutes |
90
123
 
91
124
  ## Cost
@@ -29,6 +29,7 @@ class TavilyApi {
29
29
  properties: {
30
30
  headers: {
31
31
  Authorization: '=Bearer {{$credentials.apiKey}}',
32
+ 'X-Client-Source': 'n8n'
32
33
  },
33
34
  },
34
35
  };
@@ -37,6 +38,10 @@ class TavilyApi {
37
38
  baseURL: 'https://api.tavily.com',
38
39
  url: '/search',
39
40
  method: 'POST',
41
+ headers: {
42
+ Authorization: '=Bearer {{$credentials.apiKey}}',
43
+ 'X-Client-Source': 'n8n'
44
+ },
40
45
  body: {
41
46
  query: 'Hello n8n!',
42
47
  },
@@ -1 +1 @@
1
- {"version":3,"file":"TavilyApi.credentials.js","sourceRoot":"","sources":["../../credentials/TavilyApi.credentials.ts"],"names":[],"mappings":";;;AAUA,MAAa,SAAS;IAAtB;QACC,SAAI,GAAG,WAAW,CAAC;QACnB,gBAAW,GAAG,YAAY,CAAC;QAC3B,qBAAgB,GACf,sCAAsC,CAAC;QACxC,SAAI,GAAS,oBAAoB,CAAC;QAClC,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,SAAS;gBACtB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;gBAC/B,WAAW,EAAE,mGAAmG;gBAChH,OAAO,EAAE,EAAE;aACX;YACD;gBACC,WAAW,EAAE,UAAU;gBACvB,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,0BAA0B;gBACvC,OAAO,EAAE,wBAAwB;aACjC;SACD,CAAC;QACF,iBAAY,GAAyB;YACpC,IAAI,EAAE,SAAS;YACf,UAAU,EAAE;gBACX,OAAO,EAAE;oBACR,aAAa,EAAE,iCAAiC;iBAChD;aACD;SACD,CAAC;QAEF,SAAI,GAA2B;YAC7B,OAAO,EAAE;gBACR,OAAO,EAAE,wBAAwB;gBACjC,GAAG,EAAE,SAAS;gBACd,MAAM,EAAE,MAAM;gBACd,IAAI,EAAE;oBACL,KAAK,EAAE,YAAY;iBACnB;aACD;SACD,CAAC;IACJ,CAAC;CAAA;AA1CD,8BA0CC"}
1
+ {"version":3,"file":"TavilyApi.credentials.js","sourceRoot":"","sources":["../../credentials/TavilyApi.credentials.ts"],"names":[],"mappings":";;;AAUA,MAAa,SAAS;IAAtB;QACC,SAAI,GAAG,WAAW,CAAC;QACnB,gBAAW,GAAG,YAAY,CAAC;QAC3B,qBAAgB,GACf,sCAAsC,CAAC;QACxC,SAAI,GAAS,oBAAoB,CAAC;QAClC,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,SAAS;gBACtB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;gBAC/B,WAAW,EAAE,mGAAmG;gBAChH,OAAO,EAAE,EAAE;aACX;YACD;gBACC,WAAW,EAAE,UAAU;gBACvB,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,0BAA0B;gBACvC,OAAO,EAAE,wBAAwB;aACjC;SACD,CAAC;QACF,iBAAY,GAAyB;YACpC,IAAI,EAAE,SAAS;YACf,UAAU,EAAE;gBACX,OAAO,EAAE;oBACR,aAAa,EAAE,iCAAiC;oBAChD,iBAAiB,EAAE,KAAK;iBACxB;aACD;SACD,CAAC;QAEF,SAAI,GAA2B;YAC7B,OAAO,EAAE;gBACR,OAAO,EAAE,wBAAwB;gBACjC,GAAG,EAAE,SAAS;gBACd,MAAM,EAAE,MAAM;gBACd,OAAO,EAAE;oBACR,aAAa,EAAE,iCAAiC;oBAChD,iBAAiB,EAAE,KAAK;iBACxB;gBACD,IAAI,EAAE;oBACL,KAAK,EAAE,YAAY;iBACnB;aACD;SACD,CAAC;IACJ,CAAC;CAAA;AA/CD,8BA+CC"}
@@ -0,0 +1,36 @@
1
+ import type { IExecuteFunctions, INodeProperties } from 'n8n-workflow';
2
+ export declare const properties: INodeProperties[];
3
+ export declare const description: {
4
+ displayOptions: {
5
+ hide?: {
6
+ [key: string]: (import("n8n-workflow").NodeParameterValue | import("n8n-workflow").DisplayCondition)[] | undefined;
7
+ } | undefined;
8
+ show?: {
9
+ [key: string]: (import("n8n-workflow").NodeParameterValue | import("n8n-workflow").DisplayCondition)[] | undefined;
10
+ '@version'?: (number | import("n8n-workflow").DisplayCondition)[] | undefined;
11
+ } | undefined;
12
+ hideOnCloud?: boolean | undefined;
13
+ };
14
+ displayName: string;
15
+ name: string;
16
+ type: import("n8n-workflow").NodePropertyTypes;
17
+ typeOptions?: import("n8n-workflow").INodePropertyTypeOptions | undefined;
18
+ default: import("n8n-workflow").NodeParameterValueType;
19
+ description?: string | undefined;
20
+ hint?: string | undefined;
21
+ disabledOptions?: import("n8n-workflow").IDisplayOptions | undefined;
22
+ options?: (INodeProperties | import("n8n-workflow").INodePropertyOptions | import("n8n-workflow").INodePropertyCollection)[] | undefined;
23
+ placeholder?: string | undefined;
24
+ isNodeSetting?: boolean | undefined;
25
+ noDataExpression?: boolean | undefined;
26
+ required?: boolean | undefined;
27
+ routing?: import("n8n-workflow").INodePropertyRouting | undefined;
28
+ credentialTypes?: ("extends:oAuth2Api" | "extends:oAuth1Api" | "has:authenticate" | "has:genericAuth")[] | undefined;
29
+ extractValue?: import("n8n-workflow").INodePropertyValueExtractorRegex | undefined;
30
+ modes?: import("n8n-workflow").INodePropertyMode[] | undefined;
31
+ requiresDataPath?: "single" | "multiple" | undefined;
32
+ doNotInherit?: boolean | undefined;
33
+ validateType?: keyof import("n8n-workflow").FieldTypeMap | undefined;
34
+ ignoreValidationDuringExecution?: boolean | undefined;
35
+ }[];
36
+ export declare function execute(this: IExecuteFunctions, index: number): Promise<import("n8n-workflow").INodeExecutionData[]>;
@@ -0,0 +1,54 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.execute = exports.description = exports.properties = void 0;
4
+ const transport_1 = require("../../transport");
5
+ const common_descriptions_1 = require("../../descriptions/common.descriptions");
6
+ const display_1 = require("../../display");
7
+ exports.properties = [
8
+ {
9
+ displayName: 'URL',
10
+ name: 'url',
11
+ type: 'string',
12
+ required: true,
13
+ default: '',
14
+ description: 'The root URL to begin the crawl',
15
+ placeholder: 'https://www.example.com',
16
+ displayOptions: {
17
+ show: {
18
+ resource: ['crawl'],
19
+ },
20
+ },
21
+ },
22
+ {
23
+ displayName: 'Options',
24
+ name: 'options',
25
+ type: 'collection',
26
+ placeholder: 'Add option',
27
+ default: {},
28
+ options: common_descriptions_1.crawlOptions.filter(option => option.name !== 'url'),
29
+ displayOptions: {
30
+ show: {
31
+ resource: ['crawl'],
32
+ },
33
+ },
34
+ },
35
+ ];
36
+ const displayOptions = {
37
+ show: {
38
+ resource: ['crawl'],
39
+ operation: ['crawl'],
40
+ },
41
+ };
42
+ exports.description = (0, display_1.updateDisplayOptions)(displayOptions, exports.properties);
43
+ async function execute(index) {
44
+ const url = this.getNodeParameter('url', index);
45
+ const options = this.getNodeParameter('options', index);
46
+ const body = {
47
+ url,
48
+ ...options,
49
+ };
50
+ const responseData = await transport_1.tavilyApiRequest.call(this, 'POST', '/crawl', body);
51
+ return this.helpers.returnJsonArray([responseData]);
52
+ }
53
+ exports.execute = execute;
54
+ //# sourceMappingURL=crawl.operation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"crawl.operation.js","sourceRoot":"","sources":["../../../../../nodes/Tavily/actions/crawl/crawl.operation.ts"],"names":[],"mappings":";;;AACA,+CAAmD;AACnD,gFAAsE;AACtE,2CAAqD;AAExC,QAAA,UAAU,GAAsB;IAC3C;QACE,WAAW,EAAE,KAAK;QAClB,IAAI,EAAE,KAAK;QACX,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,IAAI;QACd,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,iCAAiC;QAC9C,WAAW,EAAE,yBAAyB;QACtC,cAAc,EAAE;YACd,IAAI,EAAE;gBACJ,QAAQ,EAAE,CAAC,OAAO,CAAC;aACpB;SACF;KACF;IACD;QACE,WAAW,EAAE,SAAS;QACtB,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,YAAY;QACzB,OAAO,EAAE,EAAE;QACX,OAAO,EAAE,kCAAY,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,IAAI,KAAK,KAAK,CAAC;QAC7D,cAAc,EAAE;YACd,IAAI,EAAE;gBACJ,QAAQ,EAAE,CAAC,OAAO,CAAC;aACpB;SACF;KACF;CACF,CAAC;AAEF,MAAM,cAAc,GAAG;IACrB,IAAI,EAAE;QACJ,QAAQ,EAAE,CAAC,OAAO,CAAC;QACnB,SAAS,EAAE,CAAC,OAAO,CAAC;KACrB;CACF,CAAC;AAEW,QAAA,WAAW,GAAG,IAAA,8BAAoB,EAAC,cAAc,EAAE,kBAAU,CAAC,CAAC;AAErE,KAAK,UAAU,OAAO,CAA0B,KAAa;IAClE,MAAM,GAAG,GAAG,IAAI,CAAC,gBAAgB,CAAC,KAAK,EAAE,KAAK,CAAW,CAAC;IAC1D,MAAM,OAAO,GAAG,IAAI,CAAC,gBAAgB,CAAC,SAAS,EAAE,KAAK,CAAgB,CAAC;IAEvE,MAAM,IAAI,GAAgB;QACxB,GAAG;QACH,GAAG,OAAO;KACX,CAAC;IAEF,MAAM,YAAY,GAAG,MAAM,4BAAgB,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC;IAC/E,OAAO,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC;AACtD,CAAC;AAXD,0BAWC"}
@@ -0,0 +1,4 @@
1
+ import { INodeProperties } from 'n8n-workflow';
2
+ import * as url from './url.operation';
3
+ export { url };
4
+ export declare const description: INodeProperties[];
@@ -0,0 +1,52 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.description = exports.url = void 0;
27
+ const url = __importStar(require("./url.operation"));
28
+ exports.url = url;
29
+ exports.description = [
30
+ {
31
+ displayName: 'Operation',
32
+ name: 'operation',
33
+ type: 'options',
34
+ noDataExpression: true,
35
+ displayOptions: {
36
+ show: {
37
+ resource: ['crawl'],
38
+ },
39
+ },
40
+ options: [
41
+ {
42
+ name: 'URL',
43
+ value: 'url',
44
+ description: 'The root URL to begin the crawl',
45
+ action: 'Crawl',
46
+ },
47
+ ],
48
+ default: 'url',
49
+ },
50
+ ...url.description,
51
+ ];
52
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Tavily/actions/crawl/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AACA,qDAAuC;AAE9B,kBAAG;AAEC,QAAA,WAAW,GAAsB;IAC5C;QACE,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,gBAAgB,EAAE,IAAI;QACtB,cAAc,EAAE;YACd,IAAI,EAAE;gBACJ,QAAQ,EAAE,CAAC,OAAO,CAAC;aACpB;SACF;QACD,OAAO,EAAE;YACP;gBACE,IAAI,EAAE,KAAK;gBACX,KAAK,EAAE,KAAK;gBACZ,WAAW,EAAE,iCAAiC;gBAC9C,MAAM,EAAE,OAAO;aAChB;SACF;QACD,OAAO,EAAE,KAAK;KACf;IACD,GAAG,GAAG,CAAC,WAAW;CACnB,CAAC"}
@@ -0,0 +1,36 @@
1
+ import type { IExecuteFunctions, INodeProperties } from 'n8n-workflow';
2
+ export declare const properties: INodeProperties[];
3
+ export declare const description: {
4
+ displayOptions: {
5
+ hide?: {
6
+ [key: string]: (import("n8n-workflow").NodeParameterValue | import("n8n-workflow").DisplayCondition)[] | undefined;
7
+ } | undefined;
8
+ show?: {
9
+ [key: string]: (import("n8n-workflow").NodeParameterValue | import("n8n-workflow").DisplayCondition)[] | undefined;
10
+ '@version'?: (number | import("n8n-workflow").DisplayCondition)[] | undefined;
11
+ } | undefined;
12
+ hideOnCloud?: boolean | undefined;
13
+ };
14
+ displayName: string;
15
+ name: string;
16
+ type: import("n8n-workflow").NodePropertyTypes;
17
+ typeOptions?: import("n8n-workflow").INodePropertyTypeOptions | undefined;
18
+ default: import("n8n-workflow").NodeParameterValueType;
19
+ description?: string | undefined;
20
+ hint?: string | undefined;
21
+ disabledOptions?: import("n8n-workflow").IDisplayOptions | undefined;
22
+ options?: (INodeProperties | import("n8n-workflow").INodePropertyOptions | import("n8n-workflow").INodePropertyCollection)[] | undefined;
23
+ placeholder?: string | undefined;
24
+ isNodeSetting?: boolean | undefined;
25
+ noDataExpression?: boolean | undefined;
26
+ required?: boolean | undefined;
27
+ routing?: import("n8n-workflow").INodePropertyRouting | undefined;
28
+ credentialTypes?: ("extends:oAuth2Api" | "extends:oAuth1Api" | "has:authenticate" | "has:genericAuth")[] | undefined;
29
+ extractValue?: import("n8n-workflow").INodePropertyValueExtractorRegex | undefined;
30
+ modes?: import("n8n-workflow").INodePropertyMode[] | undefined;
31
+ requiresDataPath?: "single" | "multiple" | undefined;
32
+ doNotInherit?: boolean | undefined;
33
+ validateType?: keyof import("n8n-workflow").FieldTypeMap | undefined;
34
+ ignoreValidationDuringExecution?: boolean | undefined;
35
+ }[];
36
+ export declare function execute(this: IExecuteFunctions, index: number): Promise<import("n8n-workflow").INodeExecutionData[]>;
@@ -0,0 +1,58 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.execute = exports.description = exports.properties = void 0;
4
+ const transport_1 = require("../../transport");
5
+ const display_1 = require("../../display");
6
+ const common_descriptions_1 = require("../../descriptions/common.descriptions");
7
+ exports.properties = [
8
+ {
9
+ displayName: 'URL',
10
+ name: 'url',
11
+ description: 'The root URL to begin the crawl',
12
+ type: 'string',
13
+ required: true,
14
+ default: '',
15
+ placeholder: 'https://www.example.com',
16
+ displayOptions: {
17
+ show: {
18
+ resource: ['crawl'],
19
+ },
20
+ },
21
+ },
22
+ {
23
+ displayName: 'Options',
24
+ name: 'options',
25
+ type: 'collection',
26
+ placeholder: 'Add option',
27
+ default: {},
28
+ options: common_descriptions_1.crawlOptions
29
+ },
30
+ ];
31
+ const displayOptions = {
32
+ show: {
33
+ resource: ['crawl'],
34
+ operation: ['url'],
35
+ },
36
+ };
37
+ exports.description = (0, display_1.updateDisplayOptions)(displayOptions, exports.properties);
38
+ async function execute(index) {
39
+ const url = this.getNodeParameter('url', index);
40
+ const options = this.getNodeParameter('options', index);
41
+ const processedOptions = {};
42
+ for (const [key, value] of Object.entries(options)) {
43
+ if (typeof value === 'boolean') {
44
+ processedOptions[key] = value;
45
+ }
46
+ else {
47
+ processedOptions[key] = value;
48
+ }
49
+ }
50
+ const body = {
51
+ url,
52
+ ...processedOptions,
53
+ };
54
+ const responseData = await transport_1.tavilyApiRequest.call(this, 'POST', '/crawl', body);
55
+ return this.helpers.returnJsonArray([responseData]);
56
+ }
57
+ exports.execute = execute;
58
+ //# sourceMappingURL=url.operation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"url.operation.js","sourceRoot":"","sources":["../../../../../nodes/Tavily/actions/crawl/url.operation.ts"],"names":[],"mappings":";;;AACA,+CAAmD;AACnD,2CAAqD;AACrD,gFAAsE;AAEzD,QAAA,UAAU,GAAsB;IAC3C;QACE,WAAW,EAAE,KAAK;QAClB,IAAI,EAAE,KAAK;QACX,WAAW,EAAE,iCAAiC;QAC9C,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,IAAI;QACd,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,yBAAyB;QACtC,cAAc,EAAE;YACd,IAAI,EAAE;gBACJ,QAAQ,EAAE,CAAC,OAAO,CAAC;aACpB;SACF;KACF;IACD;QACE,WAAW,EAAE,SAAS;QACtB,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,YAAY;QACzB,OAAO,EAAE,EAAE;QACX,OAAO,EAAE,kCAAY;KACvB;CACD,CAAC;AAEF,MAAM,cAAc,GAAG;IACrB,IAAI,EAAE;QACJ,QAAQ,EAAE,CAAC,OAAO,CAAC;QACnB,SAAS,EAAE,CAAC,KAAK,CAAC;KACnB;CACF,CAAC;AAEW,QAAA,WAAW,GAAG,IAAA,8BAAoB,EAAC,cAAc,EAAE,kBAAU,CAAC,CAAC;AAErE,KAAK,UAAU,OAAO,CAA0B,KAAa;IAClE,MAAM,GAAG,GAAG,IAAI,CAAC,gBAAgB,CAAC,KAAK,EAAE,KAAK,CAAW,CAAC;IAC1D,MAAM,OAAO,GAAG,IAAI,CAAC,gBAAgB,CAAC,SAAS,EAAE,KAAK,CAAgB,CAAC;IAGvE,MAAM,gBAAgB,GAAgB,EAAE,CAAC;IACzC,KAAK,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE;QAClD,IAAI,OAAO,KAAK,KAAK,SAAS,EAAE;YAC9B,gBAAgB,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;SAC/B;aAAM;YACL,gBAAgB,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;SAC/B;KACF;IAED,MAAM,IAAI,GAAgB;QACxB,GAAG;QACH,GAAG,gBAAgB;KACpB,CAAC;IAEF,MAAM,YAAY,GAAG,MAAM,4BAAgB,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC;IAC/E,OAAO,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC;AACtD,CAAC;AArBD,0BAqBC"}
@@ -16,7 +16,12 @@ exports.properties = [
16
16
  },
17
17
  required: true,
18
18
  default: [],
19
- placeholder: 'e.g. https://tavily.com'
19
+ placeholder: 'e.g. https://tavily.com',
20
+ displayOptions: {
21
+ show: {
22
+ resource: ['extract'],
23
+ },
24
+ },
20
25
  },
21
26
  {
22
27
  displayName: 'Options',
@@ -1 +1 @@
1
- {"version":3,"file":"urls.operation.js","sourceRoot":"","sources":["../../../../../nodes/Tavily/actions/extract/urls.operation.ts"],"names":[],"mappings":";;;AACA,+CAAmD;AACnD,2CAAqD;AACrD,gFAAwE;AAG3D,QAAA,UAAU,GAAsB;IAC5C;QACC,WAAW,EAAE,MAAM;QACnB,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,wCAAwC;QACrD,IAAI,EAAE,QAAQ;QACd,WAAW,EAAE;YACZ,cAAc,EAAE,IAAI;YACpB,uBAAuB,EAAE,SAAS;SAClC;QACD,QAAQ,EAAE,IAAI;QACd,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,yBAAyB;KACtC;IACD;QACC,WAAW,EAAE,SAAS;QACtB,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,YAAY;QACzB,OAAO,EAAE,EAAE;QACX,OAAO,EAAE,oCAAc;KACvB;CACD,CAAC;AAEF,MAAM,cAAc,GAAG;IACtB,IAAI,EAAE;QACL,QAAQ,EAAE,CAAC,SAAS,CAAC;QACrB,SAAS,EAAE,CAAC,MAAM,CAAC;KACnB;CACD,CAAC;AAEW,QAAA,WAAW,GAAG,IAAA,8BAAoB,EAAC,cAAc,EAAE,kBAAU,CAAC,CAAC;AAErE,KAAK,UAAU,OAAO,CAA0B,KAAa;IACnE,MAAM,IAAI,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,KAAK,CAAa,CAAC;IAC9D,MAAM,OAAO,GAAG,IAAI,CAAC,gBAAgB,CAAC,SAAS,EAAE,KAAK,CAAgB,CAAC;IAGvE,MAAM,gBAAgB,GAAgB,EAAE,CAAC;IACzC,KAAK,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE;QACnD,IAAI,OAAO,KAAK,KAAK,SAAS,EAAE;YAC/B,gBAAgB,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;SAC9B;aAAM;YACN,gBAAgB,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;SAC9B;KACD;IAED,MAAM,IAAI,GAAgB;QACzB,MAAM,EAAE,IAAI;QACZ,GAAG,gBAAgB;KACnB,CAAC;IAEF,MAAM,QAAQ,GAAG,UAAU,CAAC;IAE5B,MAAM,YAAY,GAAG,MAAM,4BAAgB,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC;IAE/E,OAAO,IAAI,CAAC,OAAO,CAAC,0BAA0B,CAC7C,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,YAA6B,CAAC,EAC3D,EAAC,QAAQ,EAAE,EAAC,IAAI,EAAE,KAAK,EAAC,EAAC,CACzB,CAAC;AACH,CAAC;AA3BD,0BA2BC"}
1
+ {"version":3,"file":"urls.operation.js","sourceRoot":"","sources":["../../../../../nodes/Tavily/actions/extract/urls.operation.ts"],"names":[],"mappings":";;;AACA,+CAAmD;AACnD,2CAAqD;AACrD,gFAAwE;AAG3D,QAAA,UAAU,GAAsB;IAC5C;QACC,WAAW,EAAE,MAAM;QACnB,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,wCAAwC;QACrD,IAAI,EAAE,QAAQ;QACd,WAAW,EAAE;YACZ,cAAc,EAAE,IAAI;YACpB,uBAAuB,EAAE,SAAS;SAClC;QACD,QAAQ,EAAE,IAAI;QACd,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,yBAAyB;QACtC,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;aACrB;SACD;KACD;IACD;QACC,WAAW,EAAE,SAAS;QACtB,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,YAAY;QACzB,OAAO,EAAE,EAAE;QACX,OAAO,EAAE,oCAAc;KACvB;CACD,CAAC;AAEF,MAAM,cAAc,GAAG;IACtB,IAAI,EAAE;QACL,QAAQ,EAAE,CAAC,SAAS,CAAC;QACrB,SAAS,EAAE,CAAC,MAAM,CAAC;KACnB;CACD,CAAC;AAEW,QAAA,WAAW,GAAG,IAAA,8BAAoB,EAAC,cAAc,EAAE,kBAAU,CAAC,CAAC;AAErE,KAAK,UAAU,OAAO,CAA0B,KAAa;IACnE,MAAM,IAAI,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,KAAK,CAAa,CAAC;IAC9D,MAAM,OAAO,GAAG,IAAI,CAAC,gBAAgB,CAAC,SAAS,EAAE,KAAK,CAAgB,CAAC;IAGvE,MAAM,gBAAgB,GAAgB,EAAE,CAAC;IACzC,KAAK,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE;QACnD,IAAI,OAAO,KAAK,KAAK,SAAS,EAAE;YAC/B,gBAAgB,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;SAC9B;aAAM;YACN,gBAAgB,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;SAC9B;KACD;IAED,MAAM,IAAI,GAAgB;QACzB,MAAM,EAAE,IAAI;QACZ,GAAG,gBAAgB;KACnB,CAAC;IAEF,MAAM,QAAQ,GAAG,UAAU,CAAC;IAE5B,MAAM,YAAY,GAAG,MAAM,4BAAgB,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC;IAE/E,OAAO,IAAI,CAAC,OAAO,CAAC,0BAA0B,CAC7C,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,YAA6B,CAAC,EAC3D,EAAC,QAAQ,EAAE,EAAC,IAAI,EAAE,KAAK,EAAC,EAAC,CACzB,CAAC;AACH,CAAC;AA3BD,0BA2BC"}
@@ -26,6 +26,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.description = void 0;
27
27
  const search = __importStar(require("./search"));
28
28
  const extract = __importStar(require("./extract"));
29
+ const crawl = __importStar(require("./crawl"));
29
30
  exports.description = {
30
31
  displayName: 'Tavily',
31
32
  name: 'tavily',
@@ -61,11 +62,16 @@ exports.description = {
61
62
  {
62
63
  name: 'Extract',
63
64
  value: 'extract',
64
- }
65
+ },
66
+ {
67
+ name: 'Crawl',
68
+ value: 'crawl',
69
+ },
65
70
  ],
66
71
  },
67
72
  ...extract.description,
68
73
  ...search.description,
74
+ ...crawl.description
69
75
  ],
70
76
  };
71
77
  //# sourceMappingURL=node.description.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"node.description.js","sourceRoot":"","sources":["../../../../nodes/Tavily/actions/node.description.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAGA,iDAAmC;AACnC,mDAAqC;AAExB,QAAA,WAAW,GAAyB;IAChD,WAAW,EAAE,QAAQ;IACrB,IAAI,EAAE,QAAQ;IACd,KAAK,EAAE,CAAC,WAAW,CAAC;IACpB,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,CAAC;IACV,QAAQ,EAAE,8DAA8D;IACxE,WAAW,EAAE,YAAY;IACzB,QAAQ,EAAE;QACT,IAAI,EAAE,QAAQ;KACd;IACD,YAAY,EAAE,IAAI;IAClB,MAAM,EAAE,QAAyB;IACjC,OAAO,EAAE,eAAwB;IACjC,WAAW,EAAE;QACZ;YACC,IAAI,EAAE,WAAW;YACjB,QAAQ,EAAE,IAAI;SACd;KACD;IACD,UAAU,EAAE;QACX;YACC,WAAW,EAAE,UAAU;YACvB,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,SAAS;YACf,gBAAgB,EAAE,IAAI;YACtB,OAAO,EAAE,QAAQ;YACjB,OAAO,EAAE;gBACR;oBACC,IAAI,EAAE,QAAQ;oBACd,KAAK,EAAE,QAAQ;iBACf;gBACD;oBACC,IAAI,EAAE,SAAS;oBACf,KAAK,EAAE,SAAS;iBAChB;aACD;SACD;QACD,GAAG,OAAO,CAAC,WAAW;QACtB,GAAG,MAAM,CAAC,WAAW;KACrB;CACD,CAAC"}
1
+ {"version":3,"file":"node.description.js","sourceRoot":"","sources":["../../../../nodes/Tavily/actions/node.description.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAGA,iDAAmC;AACnC,mDAAqC;AACrC,+CAAiC;AAEpB,QAAA,WAAW,GAAyB;IAChD,WAAW,EAAE,QAAQ;IACrB,IAAI,EAAE,QAAQ;IACd,KAAK,EAAE,CAAC,WAAW,CAAC;IACpB,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,CAAC;IACV,QAAQ,EAAE,8DAA8D;IACxE,WAAW,EAAE,YAAY;IACzB,QAAQ,EAAE;QACT,IAAI,EAAE,QAAQ;KACd;IACD,YAAY,EAAE,IAAI;IAClB,MAAM,EAAE,QAAyB;IACjC,OAAO,EAAE,eAAwB;IACjC,WAAW,EAAE;QACZ;YACC,IAAI,EAAE,WAAW;YACjB,QAAQ,EAAE,IAAI;SACd;KACD;IACD,UAAU,EAAE;QACX;YACC,WAAW,EAAE,UAAU;YACvB,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,SAAS;YACf,gBAAgB,EAAE,IAAI;YACtB,OAAO,EAAE,QAAQ;YACjB,OAAO,EAAE;gBACR;oBACC,IAAI,EAAE,QAAQ;oBACd,KAAK,EAAE,QAAQ;iBACf;gBACD;oBACC,IAAI,EAAE,SAAS;oBACf,KAAK,EAAE,SAAS;iBAChB;gBACD;oBACC,IAAI,EAAE,OAAO;oBACb,KAAK,EAAE,OAAO;iBACd;aACD;SACD;QACD,GAAG,OAAO,CAAC,WAAW;QACtB,GAAG,MAAM,CAAC,WAAW;QACrB,GAAG,KAAK,CAAC,WAAW;KACpB;CACD,CAAC"}
@@ -2,6 +2,7 @@ import type { AllEntities } from 'n8n-workflow';
2
2
  declare type NodeMap = {
3
3
  search: 'query';
4
4
  extract: 'urls';
5
+ crawl: 'url';
5
6
  };
6
7
  export declare type Tavily = AllEntities<NodeMap>;
7
8
  export {};
@@ -27,6 +27,7 @@ exports.router = void 0;
27
27
  const n8n_workflow_1 = require("n8n-workflow");
28
28
  const search = __importStar(require("./search"));
29
29
  const extract = __importStar(require("./extract"));
30
+ const crawl = __importStar(require("./crawl"));
30
31
  async function router() {
31
32
  var _a;
32
33
  const items = this.getInputData();
@@ -34,10 +35,7 @@ async function router() {
34
35
  const resource = this.getNodeParameter('resource', 0);
35
36
  const operation = this.getNodeParameter('operation', 0);
36
37
  let responseData;
37
- const tavily = {
38
- resource,
39
- operation,
40
- };
38
+ const tavily = { resource, operation };
41
39
  for (let i = 0; i < items.length; i++) {
42
40
  try {
43
41
  switch (tavily.resource) {
@@ -47,6 +45,9 @@ async function router() {
47
45
  case 'extract':
48
46
  responseData = await extract[tavily.operation].execute.call(this, i);
49
47
  break;
48
+ case 'crawl':
49
+ responseData = await crawl[tavily.operation].execute.call(this, i);
50
+ break;
50
51
  default:
51
52
  throw new n8n_workflow_1.NodeOperationError(this.getNode(), `The resource "${resource}" is not known`);
52
53
  }
@@ -1 +1 @@
1
- {"version":3,"file":"router.js","sourceRoot":"","sources":["../../../../nodes/Tavily/actions/router.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AACA,+CAAgE;AAEhE,iDAAmC;AACnC,mDAAqC;AAI9B,KAAK,UAAU,MAAM;;IAC3B,MAAM,KAAK,GAAG,IAAI,CAAC,YAAY,EAAE,CAAC;IAElC,MAAM,UAAU,GAAyB,EAAE,CAAC;IAE5C,MAAM,QAAQ,GAAG,IAAI,CAAC,gBAAgB,CAAS,UAAU,EAAE,CAAC,CAAW,CAAC;IACxE,MAAM,SAAS,GAAG,IAAI,CAAC,gBAAgB,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC;IAExD,IAAI,YAAY,CAAC;IAEjB,MAAM,MAAM,GAAG;QACd,QAAQ;QACR,SAAS;KACC,CAAC;IAGZ,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;QACtC,IAAI;YACH,QAAQ,MAAM,CAAC,QAAQ,EAAE;gBACxB,KAAK,QAAQ;oBACZ,YAAY,GAAG,MAAM,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;oBACpE,MAAM;gBACP,KAAK,SAAS;oBACb,YAAY,GAAG,MAAM,OAAO,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;oBACrE,MAAM;gBACP;oBACC,MAAM,IAAI,iCAAkB,CAAC,IAAI,CAAC,OAAO,EAAE,EAAE,iBAAiB,QAAQ,gBAAgB,CAAC,CAAC;aACzF;YAED,UAAU,CAAC,IAAI,CAAC,GAAG,YAAY,CAAC,CAAC;SACjC;QAAC,OAAO,KAAK,EAAE;YACf,IAAI,IAAI,CAAC,cAAc,EAAE,EAAE;gBAC1B,MAAM,kBAAkB,GAAG,IAAI,CAAC,OAAO,CAAC,0BAA0B,CACjE,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,EAAE,KAAK,EAAE,KAAK,CAAC,OAAO,EAAE,CAAC,EACtD,EAAE,QAAQ,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,EAAE,CACzB,CAAC;gBACF,UAAU,CAAC,IAAI,CAAC,GAAG,kBAAkB,CAAC,CAAC;gBACvC,SAAS;aACT;YAED,IAAI,KAAK,YAAY,2BAAY,IAAI,CAAA,MAAA,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,OAAO,0CAAE,SAAS,MAAK,SAAS,EAAE;gBAC7E,IAAI,KAAK,CAAC,OAAO,KAAK,SAAS,EAAE;oBAChC,KAAK,CAAC,OAAO,GAAG,EAAE,CAAC;iBACnB;gBACD,KAAK,CAAC,OAAO,CAAC,SAAS,GAAG,CAAC,CAAC;aAC5B;YACD,MAAM,KAAK,CAAC;SACZ;KACD;IACD,OAAO,CAAC,UAAU,CAAC,CAAC;AACrB,CAAC;AAlDD,wBAkDC"}
1
+ {"version":3,"file":"router.js","sourceRoot":"","sources":["../../../../nodes/Tavily/actions/router.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AACA,+CAAgE;AAEhE,iDAAmC;AACnC,mDAAqC;AACrC,+CAAiC;AAI1B,KAAK,UAAU,MAAM;;IAC3B,MAAM,KAAK,GAAG,IAAI,CAAC,YAAY,EAAE,CAAC;IAElC,MAAM,UAAU,GAAyB,EAAE,CAAC;IAE5C,MAAM,QAAQ,GAAG,IAAI,CAAC,gBAAgB,CAAS,UAAU,EAAE,CAAC,CAAW,CAAC;IACxE,MAAM,SAAS,GAAG,IAAI,CAAC,gBAAgB,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC;IAExD,IAAI,YAAY,CAAC;IAEjB,MAAM,MAAM,GAA4C,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC;IAGhF,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;QACtC,IAAI;YACH,QAAQ,MAAM,CAAC,QAAQ,EAAE;gBACxB,KAAK,QAAQ;oBACZ,YAAY,GAAG,MAAO,MAAc,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;oBAC7E,MAAM;gBACP,KAAK,SAAS;oBACb,YAAY,GAAG,MAAO,OAAe,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;oBAC9E,MAAM;gBACP,KAAK,OAAO;oBACX,YAAY,GAAG,MAAO,KAAa,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;oBAC5E,MAAM;gBACP;oBACC,MAAM,IAAI,iCAAkB,CAAC,IAAI,CAAC,OAAO,EAAE,EAAE,iBAAiB,QAAQ,gBAAgB,CAAC,CAAC;aACzF;YAED,UAAU,CAAC,IAAI,CAAC,GAAG,YAAY,CAAC,CAAC;SACjC;QAAC,OAAO,KAAK,EAAE;YACf,IAAI,IAAI,CAAC,cAAc,EAAE,EAAE;gBAC1B,MAAM,kBAAkB,GAAG,IAAI,CAAC,OAAO,CAAC,0BAA0B,CACjE,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,EAAE,KAAK,EAAE,KAAK,CAAC,OAAO,EAAE,CAAC,EACtD,EAAE,QAAQ,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,EAAE,CACzB,CAAC;gBACF,UAAU,CAAC,IAAI,CAAC,GAAG,kBAAkB,CAAC,CAAC;gBACvC,SAAS;aACT;YAED,IAAI,KAAK,YAAY,2BAAY,IAAI,CAAA,MAAA,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,OAAO,0CAAE,SAAS,MAAK,SAAS,EAAE;gBAC7E,IAAI,KAAK,CAAC,OAAO,KAAK,SAAS,EAAE;oBAChC,KAAK,CAAC,OAAO,GAAG,EAAE,CAAC;iBACnB;gBACD,KAAK,CAAC,OAAO,CAAC,SAAS,GAAG,CAAC,CAAC;aAC5B;YACD,MAAM,KAAK,CAAC;SACZ;KACD;IACD,OAAO,CAAC,UAAU,CAAC,CAAC;AACrB,CAAC;AAlDD,wBAkDC"}
@@ -13,6 +13,11 @@ exports.properties = [
13
13
  required: true,
14
14
  default: '',
15
15
  placeholder: 'e.g. who is leo messi?',
16
+ displayOptions: {
17
+ show: {
18
+ resource: ['search'],
19
+ },
20
+ },
16
21
  },
17
22
  {
18
23
  displayName: 'Options',
@@ -1 +1 @@
1
- {"version":3,"file":"query.operation.js","sourceRoot":"","sources":["../../../../../nodes/Tavily/actions/search/query.operation.ts"],"names":[],"mappings":";;;AACA,+CAAmD;AACnD,2CAAqD;AACrD,qDAAkD;AAGrC,QAAA,UAAU,GAAsB;IAC5C;QACC,WAAW,EAAE,OAAO;QACpB,IAAI,EAAE,OAAO;QACb,WAAW,EAAE,iBAAiB;QAC9B,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,IAAI;QACd,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,wBAAwB;KACrC;IACD;QACC,WAAW,EAAE,SAAS;QACtB,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,YAAY;QACzB,OAAO,EAAE,EAAE;QACX,OAAO,EAAE,2BAAY;KACrB;CACD,CAAC;AAEF,MAAM,cAAc,GAAG;IACtB,IAAI,EAAE;QACL,QAAQ,EAAE,CAAC,QAAQ,CAAC;QACpB,SAAS,EAAE,CAAC,OAAO,CAAC;KACpB;CACD,CAAC;AAEW,QAAA,WAAW,GAAG,IAAA,8BAAoB,EAAC,cAAc,EAAE,kBAAU,CAAC,CAAC;AAErE,KAAK,UAAU,OAAO,CAA0B,KAAa;IACnE,MAAM,KAAK,GAAG,IAAI,CAAC,gBAAgB,CAAC,OAAO,EAAE,KAAK,CAAW,CAAC;IAC9D,MAAM,OAAO,GAAG,IAAI,CAAC,gBAAgB,CAAC,SAAS,EAAE,KAAK,CAAgB,CAAC;IAEvE,MAAM,IAAI,GAAgB;QACzB,OAAO,EAAE,KAAK;QACd,GAAG,OAAO;KACV,CAAC;IAEF,MAAM,QAAQ,GAAG,SAAS,CAAC;IAE3B,MAAM,YAAY,GAAG,MAAM,4BAAgB,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC;IAE/E,OAAO,IAAI,CAAC,OAAO,CAAC,0BAA0B,CAC7C,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,YAA6B,CAAC,EAC3D,EAAC,QAAQ,EAAE,EAAC,IAAI,EAAE,KAAK,EAAC,EAAC,CACzB,CAAC;AACH,CAAC;AAjBD,0BAiBC"}
1
+ {"version":3,"file":"query.operation.js","sourceRoot":"","sources":["../../../../../nodes/Tavily/actions/search/query.operation.ts"],"names":[],"mappings":";;;AACA,+CAAmD;AACnD,2CAAqD;AACrD,qDAAkD;AAGrC,QAAA,UAAU,GAAsB;IAC5C;QACC,WAAW,EAAE,OAAO;QACpB,IAAI,EAAE,OAAO;QACb,WAAW,EAAE,iBAAiB;QAC9B,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,IAAI;QACd,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,wBAAwB;QACrC,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,QAAQ,CAAC;aACpB;SACD;KACD;IACD;QACC,WAAW,EAAE,SAAS;QACtB,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,YAAY;QACzB,OAAO,EAAE,EAAE;QACX,OAAO,EAAE,2BAAY;KACrB;CACD,CAAC;AAEF,MAAM,cAAc,GAAG;IACtB,IAAI,EAAE;QACL,QAAQ,EAAE,CAAC,QAAQ,CAAC;QACpB,SAAS,EAAE,CAAC,OAAO,CAAC;KACpB;CACD,CAAC;AAEW,QAAA,WAAW,GAAG,IAAA,8BAAoB,EAAC,cAAc,EAAE,kBAAU,CAAC,CAAC;AAErE,KAAK,UAAU,OAAO,CAA0B,KAAa;IACnE,MAAM,KAAK,GAAG,IAAI,CAAC,gBAAgB,CAAC,OAAO,EAAE,KAAK,CAAW,CAAC;IAC9D,MAAM,OAAO,GAAG,IAAI,CAAC,gBAAgB,CAAC,SAAS,EAAE,KAAK,CAAgB,CAAC;IAEvE,MAAM,IAAI,GAAgB;QACzB,OAAO,EAAE,KAAK;QACd,GAAG,OAAO;KACV,CAAC;IAEF,MAAM,QAAQ,GAAG,SAAS,CAAC;IAE3B,MAAM,YAAY,GAAG,MAAM,4BAAgB,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC;IAE/E,OAAO,IAAI,CAAC,OAAO,CAAC,0BAA0B,CAC7C,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,YAA6B,CAAC,EAC3D,EAAC,QAAQ,EAAE,EAAC,IAAI,EAAE,KAAK,EAAC,EAAC,CACzB,CAAC;AACH,CAAC;AAjBD,0BAiBC"}
@@ -5,3 +5,4 @@ export declare const queryFields: {
5
5
  name: string;
6
6
  value: string;
7
7
  }[];
8
+ export declare const crawlOptions: INodeProperties[];
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.queryFields = exports.queryOptions = exports.extractOptions = void 0;
3
+ exports.crawlOptions = exports.queryFields = exports.queryOptions = exports.extractOptions = void 0;
4
4
  exports.extractOptions = [
5
5
  {
6
6
  displayName: 'Include Images',
@@ -26,6 +26,17 @@ exports.extractOptions = [
26
26
  ],
27
27
  description: 'The depth of the extraction process. advanced extraction retrieves more data, including tables and embedded content, with higher success but may increase latency.',
28
28
  },
29
+ {
30
+ displayName: 'Format',
31
+ name: 'format',
32
+ type: 'options',
33
+ default: 'markdown',
34
+ options: [
35
+ { name: 'Markdown', value: 'markdown' },
36
+ { name: 'Text', value: 'text' }
37
+ ],
38
+ description: 'The format of the extracted web page content. markdown returns content in markdown format. text returns plain text and may increase latency.'
39
+ },
29
40
  ];
30
41
  exports.queryOptions = [
31
42
  {
@@ -213,4 +224,123 @@ exports.queryFields = [
213
224
  value: 'unreadItemCount',
214
225
  },
215
226
  ];
227
+ exports.crawlOptions = [
228
+ {
229
+ displayName: 'Instructions',
230
+ name: 'instructions',
231
+ type: 'string',
232
+ default: '',
233
+ description: 'Natural language instructions for the crawler'
234
+ },
235
+ {
236
+ displayName: 'Max Depth',
237
+ name: 'max_depth',
238
+ type: 'number',
239
+ default: 1,
240
+ description: 'Max depth of the crawl',
241
+ typeOptions: { minValue: 1 }
242
+ },
243
+ {
244
+ displayName: 'Max Breadth',
245
+ name: 'max_breadth',
246
+ type: 'number',
247
+ default: 20,
248
+ description: 'Max number of links to follow per level',
249
+ typeOptions: { minValue: 1 }
250
+ },
251
+ {
252
+ displayName: 'Limit',
253
+ name: 'limit',
254
+ type: 'number',
255
+ default: 50,
256
+ description: 'Max number of results to return',
257
+ typeOptions: { minValue: 1 }
258
+ },
259
+ {
260
+ displayName: 'Categories',
261
+ name: 'categories',
262
+ type: 'multiOptions',
263
+ default: [],
264
+ options: [
265
+ { name: 'About', value: 'About' },
266
+ { name: 'Blog', value: 'Blog' },
267
+ { name: 'Careers', value: 'Careers' },
268
+ { name: 'Community', value: 'Community' },
269
+ { name: 'Contact', value: 'Contact' },
270
+ { name: 'Developers', value: 'Developers' },
271
+ { name: 'Documentation', value: 'Documentation' },
272
+ { name: 'Media', value: 'Media' },
273
+ { name: 'Pricing', value: 'Pricing' },
274
+ ],
275
+ description: 'Filter URLs using predefined categories'
276
+ },
277
+ {
278
+ displayName: 'Select Paths',
279
+ name: 'select_paths',
280
+ type: 'string',
281
+ typeOptions: { multipleValues: true },
282
+ default: [],
283
+ description: 'Regex patterns to select only URLs with specific path patterns'
284
+ },
285
+ {
286
+ displayName: 'Select Domains',
287
+ name: 'select_domains',
288
+ type: 'string',
289
+ typeOptions: { multipleValues: true },
290
+ default: [],
291
+ description: 'Regex patterns to select crawling to specific domains or subdomains'
292
+ },
293
+ {
294
+ displayName: 'Exclude Paths',
295
+ name: 'exclude_paths',
296
+ type: 'string',
297
+ typeOptions: { multipleValues: true },
298
+ default: [],
299
+ description: 'Regex patterns to exclude URLs with specific path patterns'
300
+ },
301
+ {
302
+ displayName: 'Exclude Domains',
303
+ name: 'exclude_domains',
304
+ type: 'string',
305
+ typeOptions: { multipleValues: true },
306
+ default: [],
307
+ description: 'Regex patterns to exclude specific domains or subdomains from crawling'
308
+ },
309
+ {
310
+ displayName: 'Allow External',
311
+ name: 'allow_external',
312
+ type: 'boolean',
313
+ default: false,
314
+ description: 'Whether to allow following links that go to external domains'
315
+ },
316
+ {
317
+ displayName: 'Include Images',
318
+ name: 'include_images',
319
+ type: 'boolean',
320
+ default: false,
321
+ description: 'Whether to include images in the crawl results'
322
+ },
323
+ {
324
+ displayName: 'Extract Depth',
325
+ name: 'extract_depth',
326
+ type: 'options',
327
+ default: 'basic',
328
+ options: [
329
+ { name: 'Basic', value: 'basic' },
330
+ { name: 'Advanced', value: 'advanced' }
331
+ ],
332
+ description: 'Extraction depth'
333
+ },
334
+ {
335
+ displayName: 'Format',
336
+ name: 'format',
337
+ type: 'options',
338
+ default: 'markdown',
339
+ options: [
340
+ { name: 'Markdown', value: 'markdown' },
341
+ { name: 'Text', value: 'text' }
342
+ ],
343
+ description: 'Format of the extracted web page content'
344
+ },
345
+ ];
216
346
  //# sourceMappingURL=common.descriptions.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"common.descriptions.js","sourceRoot":"","sources":["../../../../nodes/Tavily/descriptions/common.descriptions.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"common.descriptions.js","sourceRoot":"","sources":["../../../../nodes/Tavily/descriptions/common.descriptions.ts"],"names":[],"mappings":"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"}
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tavily/n8n-nodes-tavily",
3
- "version": "0.1.15",
3
+ "version": "0.2.1",
4
4
  "description": "A community node for n8n to integrate Tavily API for web search and content extraction.",
5
5
  "keywords": [
6
6
  "n8n-community-node-package"
@@ -1 +1 @@
1
- {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/axios/index.d.ts","../node_modules/form-data/index.d.ts","../node_modules/n8n-workflow/dist/constants.d.ts","../node_modules/n8n-workflow/dist/deferredpromise.d.ts","../node_modules/n8n-workflow/dist/errors/error.types.d.ts","../node_modules/n8n-workflow/dist/errors/base/base.error.d.ts","../node_modules/n8n-workflow/dist/errors/base/operational.error.d.ts","../node_modules/n8n-workflow/dist/errors/base/unexpected.error.d.ts","../node_modules/n8n-workflow/dist/errors/base/user.error.d.ts","../node_modules/n8n-workflow/dist/errors/application.error.d.ts","../node_modules/n8n-workflow/dist/errors/abstract/execution-base.error.d.ts","../node_modules/n8n-workflow/dist/errors/expression.error.d.ts","../node_modules/n8n-workflow/dist/errors/execution-cancelled.error.d.ts","../node_modules/n8n-workflow/dist/errors/abstract/node.error.d.ts","../node_modules/n8n-workflow/dist/errors/node-api.error.d.ts","../node_modules/n8n-workflow/dist/errors/node-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/node-ssl.error.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-activation.error.d.ts","../node_modules/n8n-workflow/dist/errors/webhook-taken.error.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-deactivation.error.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/cli-subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/trigger-close.error.d.ts","../node_modules/n8n-workflow/dist/errors/expression-extension.error.d.ts","../node_modules/n8n-workflow/dist/errors/db-connection-timeout-error.d.ts","../node_modules/n8n-workflow/dist/errors/ensure-error.d.ts","../node_modules/n8n-workflow/dist/errors/index.d.ts","../node_modules/n8n-workflow/dist/executionstatus.d.ts","../node_modules/n8n-workflow/dist/result.d.ts","../node_modules/n8n-workflow/dist/expression.d.ts","../node_modules/n8n-workflow/dist/workflow.d.ts","../node_modules/n8n-workflow/dist/workflowdataproxyenvprovider.d.ts","../node_modules/n8n-workflow/dist/interfaces.d.ts","../node_modules/n8n-workflow/dist/loggerproxy.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/types.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/namedtypes.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/kinds.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/builders.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/types.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/path.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/scope.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/node-path.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/path-visitor.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/visitor.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/main.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/options.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/parser.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/printer.d.ts","../node_modules/@n8n/tournament/node_modules/recast/main.d.ts","../node_modules/@n8n/tournament/dist/expressionsplitter.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/namedtypes.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/kinds.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/builders.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/types.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/path.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/scope.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/node-path.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/path-visitor.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/visitor.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/main.d.ts","../node_modules/@n8n/tournament/dist/ast.d.ts","../node_modules/@n8n/tournament/dist/expressionbuilder.d.ts","../node_modules/@n8n/tournament/dist/evaluator.d.ts","../node_modules/@n8n/tournament/dist/analysis.d.ts","../node_modules/@n8n/tournament/dist/index.d.ts","../node_modules/n8n-workflow/dist/expressionevaluatorproxy.d.ts","../node_modules/n8n-workflow/dist/nodehelpers.d.ts","../node_modules/n8n-workflow/dist/observableobject.d.ts","../node_modules/n8n-workflow/dist/telemetryhelpers.d.ts","../node_modules/n8n-workflow/dist/cron.d.ts","../node_modules/n8n-workflow/dist/globalstate.d.ts","../node_modules/n8n-workflow/dist/messageeventbus.d.ts","../node_modules/zod/lib/helpers/typealiases.d.ts","../node_modules/zod/lib/helpers/util.d.ts","../node_modules/zod/lib/zoderror.d.ts","../node_modules/zod/lib/locales/en.d.ts","../node_modules/zod/lib/errors.d.ts","../node_modules/zod/lib/helpers/parseutil.d.ts","../node_modules/zod/lib/helpers/enumutil.d.ts","../node_modules/zod/lib/helpers/errorutil.d.ts","../node_modules/zod/lib/helpers/partialutil.d.ts","../node_modules/zod/lib/standard-schema.d.ts","../node_modules/zod/lib/types.d.ts","../node_modules/zod/lib/external.d.ts","../node_modules/zod/lib/index.d.ts","../node_modules/zod/index.d.ts","../node_modules/n8n-workflow/dist/fromaiparseutils.d.ts","../node_modules/n8n-workflow/dist/metadatautils.d.ts","../node_modules/n8n-workflow/dist/workflowdataproxy.d.ts","../node_modules/n8n-workflow/dist/versionednodetype.d.ts","../node_modules/n8n-workflow/dist/typevalidation.d.ts","../node_modules/n8n-workflow/dist/utils.d.ts","../node_modules/n8n-workflow/dist/type-guards.d.ts","../node_modules/n8n-workflow/dist/extensions/extensions.d.ts","../node_modules/n8n-workflow/dist/extensions/expressionextension.d.ts","../node_modules/n8n-workflow/dist/extensions/index.d.ts","../node_modules/n8n-workflow/dist/extensions/expressionparser.d.ts","../node_modules/n8n-workflow/dist/nativemethods/index.d.ts","../node_modules/n8n-workflow/dist/nodeparameters/filterparameter.d.ts","../node_modules/n8n-workflow/dist/index.d.ts","../credentials/tavilyapi.credentials.ts","../nodes/tavily/transport/index.ts","../nodes/tavily/display/index.ts","../nodes/tavily/descriptions/common.descriptions.ts","../nodes/tavily/descriptions/index.ts","../nodes/tavily/actions/search/query.operation.ts","../nodes/tavily/actions/search/index.ts","../nodes/tavily/actions/extract/urls.operation.ts","../nodes/tavily/actions/extract/index.ts","../nodes/tavily/actions/node.description.ts","../nodes/tavily/actions/node.type.ts","../nodes/tavily/actions/router.ts","../nodes/tavily/tavily.node.ts","../nodes/tavily/descriptions/rlc.description.ts","../nodes/tavily/methods/debugrequest.ts","../nodes/tavily/tavily.node.json","../package.json","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"9b087de7268e4efc5f215347a62656663933d63c0b1d7b624913240367b999ea","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},"dc602ef9638db2163c461ec64133fe76f890f6e03b69b1c96f5c5e59592025e8","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","8093df4b6de7728cd3327b33ce2846cb808e3b738b55f380578ab47fb1a0a82f","a0981ee0c7ac06bdb575558bd09bac190e1c0c7888ddcb63d8bf648f23a30e8c","b047c5f4612ebd6f142d2eda135939c6808ac082b2251a36e9e002b96f04ca18","816c068d57010d183fa4dce821e6552a912cb654cf9f0e840f49f0a0fb3d2157","5ca59af607163e4c0b2350019394132c6fd5d643ecc13d5d2692084c23eb74fc","ebc356c4f81035935ebddc0e1c7818038b78043d349d58e1042aa1c0579b5600","fc73b467be17d21f268b1dae8e63c269e8eba711d6d3faf3c5e525383ac5b461","4ba081d644e7e33dc2fa68f4bf7b963cbf9838092a10f0f7d5dcc98095012bfb","7c1d9666b46748a09c7c290f2cad37d32d0a395c4fc49357f0f7b32cd2dc7d97","054eafa956d5592e6a91c2553e5657ee3032ed50121a65da1079c96d82631459","01d56fcd8d2968c9545f42ab80c1e6a43be249dadeb2d38262b888370ebbdf32","cf53b1ef37bdf9eacfe04a5c0977793a87fbdd8d6893aa513075fa656c2f7638","bfccff2a7a1a17431408d48ec6ef5f54c42d1a1650b97e291c63de8b07333ccb","ab8790af6d4be130bd0faaba17d6a1d6394b21a643af03be4827fd7f8664caac","37020cf15e16fa6e1c6e2485cd51d6cbe74adee3b860ab49fb7528ca7e8e518e","2f83df884805baffce941efa67d2e459f09d82ae5f03b35771eea7bb9875346b","1950d2a49c05c7aa6decfe409b552c4ea5fb156894cf0541b34999819bd778ea","32fe829960ff7120843f6dd20197e863aee3e81ecded415641a7500654d1bda7","0b8d5b22b236fff7e23f3a5d1ddeb80bee6630bd35b1bf1c3efae226f08a1c3d","393b1ed0dca4f0aac333e65f2e40dfedfa8b37ac60571e02b152d32d8c84d340","f46d50c283425bcc59d68ccf067b3672fb727f802652dc7d60d2e470fb956370","38e7ca4f87ae169831eee751ad1b043b672bc9f328c0d44ec5a1bed98756a0b4","0b4b6ca509cdb152e18ceeed526d17bb416e7e518508d859a0174977195f9a35","124e0f6c51420174212b8d23f9a53d5d781d4777995164f1fb64957eac658ce7","c7da212302d6bfa21317461599d24e8077b34664b4ed409c4c02a3d5fe31efaf","bf070df468371021e0dd0ad9ab7918b3f94254044136bf711c7e0e855f75309e","3226c2a2af36d14aa551babd4154ad18042c0deb1509a61058c6b066cfddc30a","191d027b3924d5046fbf118bae0987969b9e03eba478ad34d2572244720ddb3c","14f2edd0618d9adaf83d22b55155ec41faddac678b4d158c8380e4325c8b36b6","72c9243dfd255afefe50d511f215053083a79db363d12e7e394ba78462be9e1b","2fbcb6bb6ffd69437452ca3029458f3c81a92b72aa71922df931cc4d373fffc1","8515d09f98ff2e7251cc970e74af5a0790caa52abc02d412ae87cbc6e47239ca","6d5438d567004aa049a2cdcad7aa2c3d671c9e74a0209297935b12bc16c3cf38","e78705f977ecfcc36de9ab57841ad7a617ef649b07a995577fd857f1d175f730","5083850590c7890ffb680f0c9838f48b07eb8b2f7dbe02874858fcac0691705d","02a4a2284d423d8ccc3a77aa9257c34fdac28cddfb46f73178e60f6a1b1b31e9","3ee8e014aab37dbd755401967fbb9602221550038f6b8da6cedd5291a918ae0a","826f3c6a6d737e0d330522094a21cde94a202c5373448240ba483709cb829aec","7e4a23f6f3763da4a06900935d22acfd463c375cada5ab325e3980bd6c95d5b3","f3e045e81b47113fa02aaf9637b9ef84347610aaceda60a0d8316aabc3f03638","1bfe6db4f3dffacd1da82748cb8f0acec04e8a4d7bd36c09573d5d80a7dec28b","6a8d6deca8ec4250630fea4e5f23bd9bf0face98739ccd22e08a17173117155b","226dbfe4506447111bd898161d47850f8c57f04cbb6a3a6d487b7939dbf89b1b","13f846a45f738733c8a63a06eaa9f580e9c07eb7aed5d8a2c674114846a42175","9d14fcf0b69094271127c7b6acb36987be5d1bffa4eb948359549f040fb50349","e3a5287471fb08f053c06fd998632792aa5f022e45278f1e6dd55fb2fa9e7362","28a6c8eeb48e165920067b9193555649fc43c2a28c450f23f622e5eb043d9463","1147c3efa5a256bcd6a3d2cfaf764185b7120bf985f8412d9bae596a0348f77b","0494f89b64c5e8906ce5284194e09bad42b56837757d79cb9e62ce16aae88ab4","0295c7a5d5d956391ab9bf0410e73a89e25fe26810f9a1d823cc794d682cdafc","19826a846db870c2261a3c4cf0695df889d9fe3eebe7775f3f5bc76fe7ad07a7","e04cafd03370139cdb0c846273cb19eb4264be0073c7baf78e9b2c16ffb74813","7c01c77fb7d8664daa64819245d785e106e0a3cb6e43da64346e4400d7fa9401","8c2ca98f4713d989d610fbd38a44316bc43c50aa26983e62dc31002f32ce63fa","ee931610d1cf7a6e666fad138187751392fc88bee931b94ac8c4571208dc7370","53543b3b64e624a81fc5876da6d72c94dd87655e7afc10988cf82ce7cbc74180","967e68e99b8a80551837321442a0e2f12ef50aa1ce567ec991ac6bf062a0c7cf","144ab2f3ef7404caf39c6acc88d248d7e55ab3dd1c4c0d89367ad12169aec113","759002d4454b851c51b3585e0837c77d159c59957fc519c876449ee5d80a6643","1ff2be5eb8b9b508603019df9f851240e57360a9417e672bf4de9d3495833f81","8263aed8d77f5b9a10de995c8efd14ea0e5bc54e2b4525178b643f5b24f90f1d","a7e7df52af8795560306e4b354e6670d978c59a87dd78b81e58656890c5ed451","d6220bee7bd245bc2a377f1a8ef31c496132cc9c7e7e3937e7dd4cbbcec0b38d","7686d52e8cbd036b9ca265490c31e36945a52ef3a9e726523d36b02befec7331","0f55c8c4605355ddea9fdd104ea0cb089e6ce7f41165fdc72d08247665dba0d4","9cc46a5cf6e8b232bb86abfd0c0ed4e0fd25d95aa3d2930e4705b078d29e51ec","edd5e20e9eb8cb2eaf941d431af3ab69a9b94e7f5d8699b4c938fee1be8d53c4","edcb8d46132756662651f6a42656aaeced2e221d0929411fb0a62c906f9873dd","382d2239e60b72282adfeb672e22e6df4de3737ce7e5df2151823dab489496ba","304b0d21771513c0a36ed7179a9d1069bfa776e95f50b789ce898f3ef2b71514","a42e1c2eec0e747163afa705044664a39065215a8d66c930f8d43f118a9bc044","d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","b542939a35357458e62f8229c2d7578ae888d63d3ab837395d7bb8a3064c205e","3a5af4fba7b27b815bb40f52715aedebaa4b371da3e5a664e7e0798c9b638825","8485b6da53ec35637d072e516631d25dae53984500de70a6989058f24354666f","ebe80346928736532e4a822154eb77f57ef3389dbe2b3ba4e571366a15448ef2","49c632082dc8a916353288d3d8b2dc82b3471794249a381d090d960c8ceac908","f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","71addb585c2db7b8e53dc1b0bcfa58c6c67c6e4fa2b968942046749d66f82e7e","c76b0c5727302341d0bdfa2cc2cee4b19ff185b554edb6e8543f0661d8487116","25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","0320c5b275beb43649be5a818dfa83a2586ae110ac5bbb2c5eb7184e1fe3ca60","f5ef066942e4f0bd98200aa6a6694b831e73200c9b3ade77ad0aa2409e8fe1b1","b9e99cd94f4166a245f5158f7286c05406e2a4c694619bceb7a4f3519d1d768e","5568d7c32e5cf5f35e092649f4e5e168c3114c800b1d7545b7ae5e0415704802","378e26daa6ec402b81f5aea1ab47262d4f8ad8966037c26be75e8185366d09a1","4788f58342a67af140858e23a24cdf62457ec1ff79af68ac71b9d3c0c89bb53b","efb8488e3acac79cac5927eaa8069fffc1d37cc3b2c3213d0256e9e1be8276bc","951baa882e6e3e5026cb8a16f80a8bebec1caa35c3fa016c9a3ce6a338bd3123","361547594eb0fdbb5316523e4668c26ec483de464f53c4a0f65bbca573abae3e","afcef07b51d43cdd4e1bc0b92a3d84734cded5f12d764af090666afefb5a3676","3f6f70c077ed8d600aa24d8c0e83ba0dd5d2c5300d524cd2181efd30c0a62c72","b773bcdaeda86c0f58910cecd6c77a0bd60be763127c42cad5a64fe66799b1f6","0ca63470234437191f454f7f66b5815d79b59ebc636faa1de1194d282563e431","6d3b514475ee51ab5e99e4fc82ffcd6191d40c19dd197a1743111e0757c6f9c6","0494f89b64c5e8906ce5284194e09bad42b56837757d79cb9e62ce16aae88ab4","716c6fce977a188f23ee5165e4179944a63e8620784a7054fc0dd81f6c348bb4","cf2324583854e9b5dd489e537e2d46375ffb66169fbd947dea112898210ed9ff","b4b08a04e1861c2494437fad74c5c71f38a2f3d3cdd51fba70fcb072f3337b58",{"version":"69e39c9d3387d1ef43a7910809fce4351356ae6c470604da7c3f3d3d513d26a9","signature":"46adb13c2794e9d05fa2c5f96189f465035a2cd92da7569a58b8d153e20090c5"},{"version":"4d76522a94c021564133c0591306cb3566f389c7f3501923e88f8154ca350071","signature":"51f4d682f582cb222759f231ce19bc64e23776e7dd61733e9016b4373e5fb62a"},{"version":"f509e48aa485e10720697a6f7f47cfb120cfed86696ac7aec508ef30bf1c4ca8","signature":"dc5f0517fb47d1039b6202acf012954b787a5cb54b5aefd3b9b03e87259efdd0"},{"version":"141cc92e53358e89c7f046158734305021a9303d260ae3139fb971f73ede485c","signature":"1418a5bcae273b7b2ef07edc2b05c43c64c558546cf6f50b051d1d6e2c9d151d"},"bd4831c97fc0dbc9286902d7aa5911e61de88bcaa3603b9a8bbbaed978dc22fd",{"version":"21f07804180bc02640e57d21b3b1eb2001c400ae64a893ec8e662b7bdfcd3a17","signature":"7f3a2cddebbf30b27a57f9f8e2a21cee7ad2564ea39c12024ea811b93be3c709"},{"version":"62ef8edd244f658c04f08277f04a0ddb13ccfbaeeaf06f6f4a6a7adae479e282","signature":"ce6c31b7679d527724d7cdccef1680fcaa69df9fe5ea75e700d8a92c3136f9b2"},{"version":"8cb6ef488e3b758ce0a89f90e9b25cac1bc6c01f96ce7b6e06c27df09e40bfae","signature":"7f3a2cddebbf30b27a57f9f8e2a21cee7ad2564ea39c12024ea811b93be3c709"},{"version":"3f8b49de6d67853d953309f9f0ae3b395059dfe8fd6b7018623ecbee258a5204","signature":"2a19437834ca5bbeb66306e292ac0c0e84f167553964c8d502933f7d35c53676"},{"version":"715966df0fd3a3456c77b800fcd6dee3883e1d31e2ca08f5b3768d432fe6f271","signature":"4adbbea9a31fc7e2ce2bfa84100171d673f8ed748475ea16f81637543af6027b"},{"version":"d30d1e87d5006e9ec60529c97f75555e9355120f3d9d36aa950c124bc868f8ea","signature":"84a4d11529ed05d68a9925f86cb38494180dd8deb09dd11c3a88779ba8d590f9"},{"version":"e555d586ad6b5fa49809379b56bacfcb08b75b04c7004ff1feee6c9179aa15d8","signature":"7cc9ccd6e205d1ac4cbe01ad9000cd92684382ba9b6deb1b010b7f347cc3288a"},{"version":"965faf853caa9bc222ce99376fc406eec438ca40fe8fc4a0e81ef13e24b5289c","signature":"06f5ba4cd8a21d773de81995366b85235cf72dc1f1588304f2a9e230161eb429"},{"version":"75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},{"version":"47c499af1f12b958c4790d5b362548518bd55b77a6e599df8f58893e467c7338","signature":"263b353ad5486c0319217b51e7af96c4da88a8e2e17e5dd1ea9399b40f1ab3d6"},"8c81c9e5c56031c25726c1a22b72ef56042da395eb82831dee41d74a9f74e541",{"version":"0b275bbecde2139b0add44f173cf865bd0d34f4cbb9cc820fef6123e7e8a42f6","signature":"93f37ec7c5cf86e192068c4168a644eedc035f56e9a88639bf0c9414713b3cae"},"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","844ab83672160ca57a2a2ea46da4c64200d8c18d4ebb2087819649cad099ff0e"],"options":{"declaration":true,"esModuleInterop":true,"module":1,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":6,"useUnknownInCatchVariables":false},"fileIdsList":[[142],[104],[91,102],[107],[91,92,103],[103,104,105,106],[93,94],[93],[94,96],[93,99,100],[93,95,96,97,99,100,101],[96,97,98],[96,99,101],[96],[96,99],[93,95],[77],[88],[87,88,89,90],[78,79],[78],[77,79,81],[78,84,85],[77,81,82,83],[77,81,84,86],[77,81],[77,84],[77,78,80],[77,78,80,81,82,84,85,86],[161,200],[161,185,200],[200],[161],[161,186,200],[161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199],[186,200],[75],[46,51,75],[52,75],[46],[47],[63],[51],[52],[53],[46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68],[46,55,75],[55,56,75],[62],[59],[51,52,75],[73,75],[75,107],[136],[136,137],[128],[44,45,69,70,71,72,73,74,75,76,108,109,110,111,112,113,114,129,130,131,132,133,134,135,138,139,140,141],[42,43,44,45,53,56,57,59,62,69,70,71,73,74],[51,75],[72,75],[73,74,75],[127],[117,118],[115,116,117,119,120,125],[116,117],[126],[117],[115,116,117,120,121,122,123,124],[115,116,127],[142,150],[142,144,145,146],[142,149,151],[142,149,151,153],[142,148],[142,144,145,147],[146],[142,152,154]],"referencedMap":[[143,1],[106,2],[103,3],[105,4],[104,5],[107,6],[95,7],[94,8],[93,9],[101,10],[102,11],[99,12],[100,13],[97,14],[98,15],[96,16],[88,17],[89,18],[91,19],[80,20],[79,21],[78,22],[86,23],[84,24],[85,25],[82,26],[83,27],[81,28],[87,29],[185,30],[186,31],[161,32],[164,32],[183,30],[184,30],[174,30],[173,33],[171,30],[166,30],[179,30],[177,30],[181,30],[165,30],[178,30],[182,30],[167,30],[168,30],[180,30],[162,30],[169,30],[170,30],[172,30],[176,30],[187,34],[175,30],[163,30],[200,35],[194,34],[196,36],[195,34],[188,34],[189,34],[191,34],[193,34],[197,36],[198,36],[190,36],[192,36],[112,37],[52,38],[55,39],[47,40],[48,41],[49,41],[50,41],[64,42],[67,43],[54,44],[66,45],[53,44],[69,46],[56,47],[57,48],[58,44],[63,49],[65,38],[60,50],[59,51],[61,50],[62,39],[72,52],[108,53],[137,54],[138,55],[129,56],[142,57],[75,58],[76,37],[114,37],[130,1],[140,54],[109,52],[141,59],[110,37],[111,37],[135,37],[133,37],[134,37],[132,37],[73,60],[131,61],[128,62],[119,63],[126,64],[120,65],[123,62],[127,66],[118,67],[125,68],[117,69],[151,70],[150,71],[152,72],[153,1],[154,73],[149,74],[148,75],[146,1],[147,76],[145,1],[157,1],[155,77],[144,1]],"exportedModulesMap":[[143,1],[106,2],[103,3],[105,4],[104,5],[107,6],[95,7],[94,8],[93,9],[101,10],[102,11],[99,12],[100,13],[97,14],[98,15],[96,16],[88,17],[89,18],[91,19],[80,20],[79,21],[78,22],[86,23],[84,24],[85,25],[82,26],[83,27],[81,28],[87,29],[185,30],[186,31],[161,32],[164,32],[183,30],[184,30],[174,30],[173,33],[171,30],[166,30],[179,30],[177,30],[181,30],[165,30],[178,30],[182,30],[167,30],[168,30],[180,30],[162,30],[169,30],[170,30],[172,30],[176,30],[187,34],[175,30],[163,30],[200,35],[194,34],[196,36],[195,34],[188,34],[189,34],[191,34],[193,34],[197,36],[198,36],[190,36],[192,36],[112,37],[52,38],[55,39],[47,40],[48,41],[49,41],[50,41],[64,42],[67,43],[54,44],[66,45],[53,44],[69,46],[56,47],[57,48],[58,44],[63,49],[65,38],[60,50],[59,51],[61,50],[62,39],[72,52],[108,53],[137,54],[138,55],[129,56],[142,57],[75,58],[76,37],[114,37],[130,1],[140,54],[109,52],[141,59],[110,37],[111,37],[135,37],[133,37],[134,37],[132,37],[73,60],[131,61],[128,62],[119,63],[126,64],[120,65],[123,62],[127,66],[118,67],[125,68],[117,69],[151,70],[150,1],[152,1],[153,1],[154,1],[149,74],[148,1],[146,1],[147,76],[145,1],[157,1],[155,1],[144,1]],"semanticDiagnosticsPerFile":[143,106,103,105,104,92,107,95,94,93,101,102,99,100,97,98,96,88,89,90,91,80,79,78,86,84,85,82,83,81,87,77,160,185,186,161,164,183,184,174,173,171,166,179,177,181,165,178,182,167,168,180,162,169,170,172,176,187,175,163,200,199,194,196,195,188,189,191,193,197,198,190,192,42,43,44,112,45,52,55,51,47,48,49,50,64,67,68,46,54,66,53,69,56,57,58,63,65,60,59,61,62,70,72,108,137,139,136,138,129,113,142,75,76,114,130,140,109,141,110,71,111,135,133,134,132,73,131,74,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,34,39,40,35,36,37,38,41,1,128,119,126,121,122,120,123,115,116,127,118,124,125,117,151,150,152,153,154,149,148,146,147,156,145,157,158,155,144,159]},"version":"4.8.4"}
1
+ {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/axios/index.d.ts","../node_modules/form-data/index.d.ts","../node_modules/n8n-workflow/dist/constants.d.ts","../node_modules/n8n-workflow/dist/deferredpromise.d.ts","../node_modules/n8n-workflow/dist/errors/error.types.d.ts","../node_modules/n8n-workflow/dist/errors/base/base.error.d.ts","../node_modules/n8n-workflow/dist/errors/base/operational.error.d.ts","../node_modules/n8n-workflow/dist/errors/base/unexpected.error.d.ts","../node_modules/n8n-workflow/dist/errors/base/user.error.d.ts","../node_modules/n8n-workflow/dist/errors/application.error.d.ts","../node_modules/n8n-workflow/dist/errors/abstract/execution-base.error.d.ts","../node_modules/n8n-workflow/dist/errors/expression.error.d.ts","../node_modules/n8n-workflow/dist/errors/execution-cancelled.error.d.ts","../node_modules/n8n-workflow/dist/errors/abstract/node.error.d.ts","../node_modules/n8n-workflow/dist/errors/node-api.error.d.ts","../node_modules/n8n-workflow/dist/errors/node-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/node-ssl.error.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-activation.error.d.ts","../node_modules/n8n-workflow/dist/errors/webhook-taken.error.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-deactivation.error.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/cli-subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/trigger-close.error.d.ts","../node_modules/n8n-workflow/dist/errors/expression-extension.error.d.ts","../node_modules/n8n-workflow/dist/errors/db-connection-timeout-error.d.ts","../node_modules/n8n-workflow/dist/errors/ensure-error.d.ts","../node_modules/n8n-workflow/dist/errors/index.d.ts","../node_modules/n8n-workflow/dist/executionstatus.d.ts","../node_modules/n8n-workflow/dist/result.d.ts","../node_modules/n8n-workflow/dist/expression.d.ts","../node_modules/n8n-workflow/dist/workflow.d.ts","../node_modules/n8n-workflow/dist/workflowdataproxyenvprovider.d.ts","../node_modules/n8n-workflow/dist/interfaces.d.ts","../node_modules/n8n-workflow/dist/loggerproxy.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/types.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/namedtypes.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/kinds.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/builders.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/types.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/path.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/scope.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/node-path.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/path-visitor.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/visitor.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/main.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/options.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/parser.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/printer.d.ts","../node_modules/@n8n/tournament/node_modules/recast/main.d.ts","../node_modules/@n8n/tournament/dist/expressionsplitter.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/namedtypes.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/kinds.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/builders.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/types.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/path.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/scope.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/node-path.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/path-visitor.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/visitor.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/main.d.ts","../node_modules/@n8n/tournament/dist/ast.d.ts","../node_modules/@n8n/tournament/dist/expressionbuilder.d.ts","../node_modules/@n8n/tournament/dist/evaluator.d.ts","../node_modules/@n8n/tournament/dist/analysis.d.ts","../node_modules/@n8n/tournament/dist/index.d.ts","../node_modules/n8n-workflow/dist/expressionevaluatorproxy.d.ts","../node_modules/n8n-workflow/dist/nodehelpers.d.ts","../node_modules/n8n-workflow/dist/observableobject.d.ts","../node_modules/n8n-workflow/dist/telemetryhelpers.d.ts","../node_modules/n8n-workflow/dist/cron.d.ts","../node_modules/n8n-workflow/dist/globalstate.d.ts","../node_modules/n8n-workflow/dist/messageeventbus.d.ts","../node_modules/zod/lib/helpers/typealiases.d.ts","../node_modules/zod/lib/helpers/util.d.ts","../node_modules/zod/lib/zoderror.d.ts","../node_modules/zod/lib/locales/en.d.ts","../node_modules/zod/lib/errors.d.ts","../node_modules/zod/lib/helpers/parseutil.d.ts","../node_modules/zod/lib/helpers/enumutil.d.ts","../node_modules/zod/lib/helpers/errorutil.d.ts","../node_modules/zod/lib/helpers/partialutil.d.ts","../node_modules/zod/lib/standard-schema.d.ts","../node_modules/zod/lib/types.d.ts","../node_modules/zod/lib/external.d.ts","../node_modules/zod/lib/index.d.ts","../node_modules/zod/index.d.ts","../node_modules/n8n-workflow/dist/fromaiparseutils.d.ts","../node_modules/n8n-workflow/dist/metadatautils.d.ts","../node_modules/n8n-workflow/dist/workflowdataproxy.d.ts","../node_modules/n8n-workflow/dist/versionednodetype.d.ts","../node_modules/n8n-workflow/dist/typevalidation.d.ts","../node_modules/n8n-workflow/dist/utils.d.ts","../node_modules/n8n-workflow/dist/type-guards.d.ts","../node_modules/n8n-workflow/dist/extensions/extensions.d.ts","../node_modules/n8n-workflow/dist/extensions/expressionextension.d.ts","../node_modules/n8n-workflow/dist/extensions/index.d.ts","../node_modules/n8n-workflow/dist/extensions/expressionparser.d.ts","../node_modules/n8n-workflow/dist/nativemethods/index.d.ts","../node_modules/n8n-workflow/dist/nodeparameters/filterparameter.d.ts","../node_modules/n8n-workflow/dist/index.d.ts","../credentials/tavilyapi.credentials.ts","../nodes/tavily/transport/index.ts","../nodes/tavily/display/index.ts","../nodes/tavily/descriptions/common.descriptions.ts","../nodes/tavily/descriptions/index.ts","../nodes/tavily/actions/search/query.operation.ts","../nodes/tavily/actions/search/index.ts","../nodes/tavily/actions/extract/urls.operation.ts","../nodes/tavily/actions/extract/index.ts","../nodes/tavily/actions/crawl/url.operation.ts","../nodes/tavily/actions/crawl/index.ts","../nodes/tavily/actions/node.description.ts","../nodes/tavily/actions/node.type.ts","../nodes/tavily/actions/router.ts","../nodes/tavily/tavily.node.ts","../nodes/tavily/descriptions/rlc.description.ts","../nodes/tavily/methods/debugrequest.ts","../nodes/tavily/tavily.node.json","../package.json","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"9b087de7268e4efc5f215347a62656663933d63c0b1d7b624913240367b999ea","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},"dc602ef9638db2163c461ec64133fe76f890f6e03b69b1c96f5c5e59592025e8","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","8093df4b6de7728cd3327b33ce2846cb808e3b738b55f380578ab47fb1a0a82f","a0981ee0c7ac06bdb575558bd09bac190e1c0c7888ddcb63d8bf648f23a30e8c","b047c5f4612ebd6f142d2eda135939c6808ac082b2251a36e9e002b96f04ca18","816c068d57010d183fa4dce821e6552a912cb654cf9f0e840f49f0a0fb3d2157","5ca59af607163e4c0b2350019394132c6fd5d643ecc13d5d2692084c23eb74fc","ebc356c4f81035935ebddc0e1c7818038b78043d349d58e1042aa1c0579b5600","fc73b467be17d21f268b1dae8e63c269e8eba711d6d3faf3c5e525383ac5b461","4ba081d644e7e33dc2fa68f4bf7b963cbf9838092a10f0f7d5dcc98095012bfb","7c1d9666b46748a09c7c290f2cad37d32d0a395c4fc49357f0f7b32cd2dc7d97","054eafa956d5592e6a91c2553e5657ee3032ed50121a65da1079c96d82631459","01d56fcd8d2968c9545f42ab80c1e6a43be249dadeb2d38262b888370ebbdf32","cf53b1ef37bdf9eacfe04a5c0977793a87fbdd8d6893aa513075fa656c2f7638","bfccff2a7a1a17431408d48ec6ef5f54c42d1a1650b97e291c63de8b07333ccb","ab8790af6d4be130bd0faaba17d6a1d6394b21a643af03be4827fd7f8664caac","37020cf15e16fa6e1c6e2485cd51d6cbe74adee3b860ab49fb7528ca7e8e518e","2f83df884805baffce941efa67d2e459f09d82ae5f03b35771eea7bb9875346b","1950d2a49c05c7aa6decfe409b552c4ea5fb156894cf0541b34999819bd778ea","32fe829960ff7120843f6dd20197e863aee3e81ecded415641a7500654d1bda7","0b8d5b22b236fff7e23f3a5d1ddeb80bee6630bd35b1bf1c3efae226f08a1c3d","393b1ed0dca4f0aac333e65f2e40dfedfa8b37ac60571e02b152d32d8c84d340","f46d50c283425bcc59d68ccf067b3672fb727f802652dc7d60d2e470fb956370","38e7ca4f87ae169831eee751ad1b043b672bc9f328c0d44ec5a1bed98756a0b4","0b4b6ca509cdb152e18ceeed526d17bb416e7e518508d859a0174977195f9a35","124e0f6c51420174212b8d23f9a53d5d781d4777995164f1fb64957eac658ce7","c7da212302d6bfa21317461599d24e8077b34664b4ed409c4c02a3d5fe31efaf","bf070df468371021e0dd0ad9ab7918b3f94254044136bf711c7e0e855f75309e","3226c2a2af36d14aa551babd4154ad18042c0deb1509a61058c6b066cfddc30a","191d027b3924d5046fbf118bae0987969b9e03eba478ad34d2572244720ddb3c","14f2edd0618d9adaf83d22b55155ec41faddac678b4d158c8380e4325c8b36b6","72c9243dfd255afefe50d511f215053083a79db363d12e7e394ba78462be9e1b","2fbcb6bb6ffd69437452ca3029458f3c81a92b72aa71922df931cc4d373fffc1","8515d09f98ff2e7251cc970e74af5a0790caa52abc02d412ae87cbc6e47239ca","6d5438d567004aa049a2cdcad7aa2c3d671c9e74a0209297935b12bc16c3cf38","e78705f977ecfcc36de9ab57841ad7a617ef649b07a995577fd857f1d175f730","5083850590c7890ffb680f0c9838f48b07eb8b2f7dbe02874858fcac0691705d","02a4a2284d423d8ccc3a77aa9257c34fdac28cddfb46f73178e60f6a1b1b31e9","3ee8e014aab37dbd755401967fbb9602221550038f6b8da6cedd5291a918ae0a","826f3c6a6d737e0d330522094a21cde94a202c5373448240ba483709cb829aec","7e4a23f6f3763da4a06900935d22acfd463c375cada5ab325e3980bd6c95d5b3","f3e045e81b47113fa02aaf9637b9ef84347610aaceda60a0d8316aabc3f03638","1bfe6db4f3dffacd1da82748cb8f0acec04e8a4d7bd36c09573d5d80a7dec28b","6a8d6deca8ec4250630fea4e5f23bd9bf0face98739ccd22e08a17173117155b","226dbfe4506447111bd898161d47850f8c57f04cbb6a3a6d487b7939dbf89b1b","13f846a45f738733c8a63a06eaa9f580e9c07eb7aed5d8a2c674114846a42175","9d14fcf0b69094271127c7b6acb36987be5d1bffa4eb948359549f040fb50349","e3a5287471fb08f053c06fd998632792aa5f022e45278f1e6dd55fb2fa9e7362","28a6c8eeb48e165920067b9193555649fc43c2a28c450f23f622e5eb043d9463","1147c3efa5a256bcd6a3d2cfaf764185b7120bf985f8412d9bae596a0348f77b","0494f89b64c5e8906ce5284194e09bad42b56837757d79cb9e62ce16aae88ab4","0295c7a5d5d956391ab9bf0410e73a89e25fe26810f9a1d823cc794d682cdafc","19826a846db870c2261a3c4cf0695df889d9fe3eebe7775f3f5bc76fe7ad07a7","e04cafd03370139cdb0c846273cb19eb4264be0073c7baf78e9b2c16ffb74813","7c01c77fb7d8664daa64819245d785e106e0a3cb6e43da64346e4400d7fa9401","8c2ca98f4713d989d610fbd38a44316bc43c50aa26983e62dc31002f32ce63fa","ee931610d1cf7a6e666fad138187751392fc88bee931b94ac8c4571208dc7370","53543b3b64e624a81fc5876da6d72c94dd87655e7afc10988cf82ce7cbc74180","967e68e99b8a80551837321442a0e2f12ef50aa1ce567ec991ac6bf062a0c7cf","144ab2f3ef7404caf39c6acc88d248d7e55ab3dd1c4c0d89367ad12169aec113","759002d4454b851c51b3585e0837c77d159c59957fc519c876449ee5d80a6643","1ff2be5eb8b9b508603019df9f851240e57360a9417e672bf4de9d3495833f81","8263aed8d77f5b9a10de995c8efd14ea0e5bc54e2b4525178b643f5b24f90f1d","a7e7df52af8795560306e4b354e6670d978c59a87dd78b81e58656890c5ed451","d6220bee7bd245bc2a377f1a8ef31c496132cc9c7e7e3937e7dd4cbbcec0b38d","7686d52e8cbd036b9ca265490c31e36945a52ef3a9e726523d36b02befec7331","0f55c8c4605355ddea9fdd104ea0cb089e6ce7f41165fdc72d08247665dba0d4","9cc46a5cf6e8b232bb86abfd0c0ed4e0fd25d95aa3d2930e4705b078d29e51ec","edd5e20e9eb8cb2eaf941d431af3ab69a9b94e7f5d8699b4c938fee1be8d53c4","edcb8d46132756662651f6a42656aaeced2e221d0929411fb0a62c906f9873dd","382d2239e60b72282adfeb672e22e6df4de3737ce7e5df2151823dab489496ba","304b0d21771513c0a36ed7179a9d1069bfa776e95f50b789ce898f3ef2b71514","a42e1c2eec0e747163afa705044664a39065215a8d66c930f8d43f118a9bc044","d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","b542939a35357458e62f8229c2d7578ae888d63d3ab837395d7bb8a3064c205e","3a5af4fba7b27b815bb40f52715aedebaa4b371da3e5a664e7e0798c9b638825","8485b6da53ec35637d072e516631d25dae53984500de70a6989058f24354666f","ebe80346928736532e4a822154eb77f57ef3389dbe2b3ba4e571366a15448ef2","49c632082dc8a916353288d3d8b2dc82b3471794249a381d090d960c8ceac908","f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","71addb585c2db7b8e53dc1b0bcfa58c6c67c6e4fa2b968942046749d66f82e7e","c76b0c5727302341d0bdfa2cc2cee4b19ff185b554edb6e8543f0661d8487116","25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","0320c5b275beb43649be5a818dfa83a2586ae110ac5bbb2c5eb7184e1fe3ca60","f5ef066942e4f0bd98200aa6a6694b831e73200c9b3ade77ad0aa2409e8fe1b1","b9e99cd94f4166a245f5158f7286c05406e2a4c694619bceb7a4f3519d1d768e","5568d7c32e5cf5f35e092649f4e5e168c3114c800b1d7545b7ae5e0415704802","378e26daa6ec402b81f5aea1ab47262d4f8ad8966037c26be75e8185366d09a1","4788f58342a67af140858e23a24cdf62457ec1ff79af68ac71b9d3c0c89bb53b","efb8488e3acac79cac5927eaa8069fffc1d37cc3b2c3213d0256e9e1be8276bc","951baa882e6e3e5026cb8a16f80a8bebec1caa35c3fa016c9a3ce6a338bd3123","361547594eb0fdbb5316523e4668c26ec483de464f53c4a0f65bbca573abae3e","afcef07b51d43cdd4e1bc0b92a3d84734cded5f12d764af090666afefb5a3676","3f6f70c077ed8d600aa24d8c0e83ba0dd5d2c5300d524cd2181efd30c0a62c72","b773bcdaeda86c0f58910cecd6c77a0bd60be763127c42cad5a64fe66799b1f6","0ca63470234437191f454f7f66b5815d79b59ebc636faa1de1194d282563e431","6d3b514475ee51ab5e99e4fc82ffcd6191d40c19dd197a1743111e0757c6f9c6","0494f89b64c5e8906ce5284194e09bad42b56837757d79cb9e62ce16aae88ab4","716c6fce977a188f23ee5165e4179944a63e8620784a7054fc0dd81f6c348bb4","cf2324583854e9b5dd489e537e2d46375ffb66169fbd947dea112898210ed9ff","b4b08a04e1861c2494437fad74c5c71f38a2f3d3cdd51fba70fcb072f3337b58",{"version":"da1705610b7e0c857bc03555db697cd42e2a51f803b699edb2ae79c24898bc52","signature":"46adb13c2794e9d05fa2c5f96189f465035a2cd92da7569a58b8d153e20090c5"},{"version":"4d76522a94c021564133c0591306cb3566f389c7f3501923e88f8154ca350071","signature":"51f4d682f582cb222759f231ce19bc64e23776e7dd61733e9016b4373e5fb62a"},{"version":"f509e48aa485e10720697a6f7f47cfb120cfed86696ac7aec508ef30bf1c4ca8","signature":"dc5f0517fb47d1039b6202acf012954b787a5cb54b5aefd3b9b03e87259efdd0"},{"version":"7f2a99728601b9a8a88b96794c7bde13d4854b5e9cc4d9e5ece648076b7819e3","signature":"dcd1621d5e02b7b15345794b9d5bc8ead180c0993a170f6c545d51a1032e0f8e"},"bd4831c97fc0dbc9286902d7aa5911e61de88bcaa3603b9a8bbbaed978dc22fd",{"version":"4c53be80e07181ec4cef5689ad26c8c9c3559bb90312cc96802d88a859e2c1ff","signature":"7f3a2cddebbf30b27a57f9f8e2a21cee7ad2564ea39c12024ea811b93be3c709"},{"version":"62ef8edd244f658c04f08277f04a0ddb13ccfbaeeaf06f6f4a6a7adae479e282","signature":"ce6c31b7679d527724d7cdccef1680fcaa69df9fe5ea75e700d8a92c3136f9b2"},{"version":"78eff905c99565e369b294c757971f7084feecc2539127e5ec244a4832d04e0f","signature":"7f3a2cddebbf30b27a57f9f8e2a21cee7ad2564ea39c12024ea811b93be3c709"},{"version":"3f8b49de6d67853d953309f9f0ae3b395059dfe8fd6b7018623ecbee258a5204","signature":"2a19437834ca5bbeb66306e292ac0c0e84f167553964c8d502933f7d35c53676"},{"version":"d6117ce7e4ef568130180c8ce4c2502c050810072d936bf97500fe5b29564116","signature":"07b8b2686e112c68f847837e8d805d5e3b0996dd4043c4098a066b3ab9f0c017"},{"version":"5753ce141fd8efdf003bfacf8dc7b3496c7f4f3bbf1dbf4880f5b8ad1f1430ff","signature":"9d201793548f8c0a65bf8b5f449437717729a812c807ffb256539f39d04e876b"},{"version":"a03947e74caeb3fc24a04bce1eded83b20fb254f469ded767b35850d92eda6b6","signature":"4adbbea9a31fc7e2ce2bfa84100171d673f8ed748475ea16f81637543af6027b"},{"version":"03d90db2374af54f721c9d681cec0b9f57a63a64d190901966fceb25a1de5128","signature":"517fcf2bcda3ff15b29bba14a41aac7428f522e8084cd625d591061256a04b54"},{"version":"99124dbf2b763c5b4a2234f668ecae36dfc0edf60c75a9dbee309dc1b9dc5c3e","signature":"7cc9ccd6e205d1ac4cbe01ad9000cd92684382ba9b6deb1b010b7f347cc3288a"},{"version":"965faf853caa9bc222ce99376fc406eec438ca40fe8fc4a0e81ef13e24b5289c","signature":"06f5ba4cd8a21d773de81995366b85235cf72dc1f1588304f2a9e230161eb429"},{"version":"75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},{"version":"47c499af1f12b958c4790d5b362548518bd55b77a6e599df8f58893e467c7338","signature":"263b353ad5486c0319217b51e7af96c4da88a8e2e17e5dd1ea9399b40f1ab3d6"},"8c81c9e5c56031c25726c1a22b72ef56042da395eb82831dee41d74a9f74e541",{"version":"d93ec59c9d62b8af0c1e256b9bc9e8b5d24635199a50f1a16c3456447d44f173","signature":"93f37ec7c5cf86e192068c4168a644eedc035f56e9a88639bf0c9414713b3cae"},"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","844ab83672160ca57a2a2ea46da4c64200d8c18d4ebb2087819649cad099ff0e"],"options":{"declaration":true,"esModuleInterop":true,"module":1,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":6,"useUnknownInCatchVariables":false},"fileIdsList":[[142],[104],[91,102],[107],[91,92,103],[103,104,105,106],[93,94],[93],[94,96],[93,99,100],[93,95,96,97,99,100,101],[96,97,98],[96,99,101],[96],[96,99],[93,95],[77],[88],[87,88,89,90],[78,79],[78],[77,79,81],[78,84,85],[77,81,82,83],[77,81,84,86],[77,81],[77,84],[77,78,80],[77,78,80,81,82,84,85,86],[163,202],[163,187,202],[202],[163],[163,188,202],[163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201],[188,202],[75],[46,51,75],[52,75],[46],[47],[63],[51],[52],[53],[46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68],[46,55,75],[55,56,75],[62],[59],[51,52,75],[73,75],[75,107],[136],[136,137],[128],[44,45,69,70,71,72,73,74,75,76,108,109,110,111,112,113,114,129,130,131,132,133,134,135,138,139,140,141],[42,43,44,45,53,56,57,59,62,69,70,71,73,74],[51,75],[72,75],[73,74,75],[127],[117,118],[115,116,117,119,120,125],[116,117],[126],[117],[115,116,117,120,121,122,123,124],[115,116,127],[142,152],[142,144,145,146],[142,150],[142,149,151,153],[142,149,151,153,155],[142,148],[142,144,145,147],[146],[142,154,156]],"referencedMap":[[143,1],[106,2],[103,3],[105,4],[104,5],[107,6],[95,7],[94,8],[93,9],[101,10],[102,11],[99,12],[100,13],[97,14],[98,15],[96,16],[88,17],[89,18],[91,19],[80,20],[79,21],[78,22],[86,23],[84,24],[85,25],[82,26],[83,27],[81,28],[87,29],[187,30],[188,31],[163,32],[166,32],[185,30],[186,30],[176,30],[175,33],[173,30],[168,30],[181,30],[179,30],[183,30],[167,30],[180,30],[184,30],[169,30],[170,30],[182,30],[164,30],[171,30],[172,30],[174,30],[178,30],[189,34],[177,30],[165,30],[202,35],[196,34],[198,36],[197,34],[190,34],[191,34],[193,34],[195,34],[199,36],[200,36],[192,36],[194,36],[112,37],[52,38],[55,39],[47,40],[48,41],[49,41],[50,41],[64,42],[67,43],[54,44],[66,45],[53,44],[69,46],[56,47],[57,48],[58,44],[63,49],[65,38],[60,50],[59,51],[61,50],[62,39],[72,52],[108,53],[137,54],[138,55],[129,56],[142,57],[75,58],[76,37],[114,37],[130,1],[140,54],[109,52],[141,59],[110,37],[111,37],[135,37],[133,37],[134,37],[132,37],[73,60],[131,61],[128,62],[119,63],[126,64],[120,65],[123,62],[127,66],[118,67],[125,68],[117,69],[153,70],[152,71],[151,72],[150,71],[154,73],[155,1],[156,74],[149,75],[148,76],[146,1],[147,77],[145,1],[159,1],[157,78],[144,1]],"exportedModulesMap":[[143,1],[106,2],[103,3],[105,4],[104,5],[107,6],[95,7],[94,8],[93,9],[101,10],[102,11],[99,12],[100,13],[97,14],[98,15],[96,16],[88,17],[89,18],[91,19],[80,20],[79,21],[78,22],[86,23],[84,24],[85,25],[82,26],[83,27],[81,28],[87,29],[187,30],[188,31],[163,32],[166,32],[185,30],[186,30],[176,30],[175,33],[173,30],[168,30],[181,30],[179,30],[183,30],[167,30],[180,30],[184,30],[169,30],[170,30],[182,30],[164,30],[171,30],[172,30],[174,30],[178,30],[189,34],[177,30],[165,30],[202,35],[196,34],[198,36],[197,34],[190,34],[191,34],[193,34],[195,34],[199,36],[200,36],[192,36],[194,36],[112,37],[52,38],[55,39],[47,40],[48,41],[49,41],[50,41],[64,42],[67,43],[54,44],[66,45],[53,44],[69,46],[56,47],[57,48],[58,44],[63,49],[65,38],[60,50],[59,51],[61,50],[62,39],[72,52],[108,53],[137,54],[138,55],[129,56],[142,57],[75,58],[76,37],[114,37],[130,1],[140,54],[109,52],[141,59],[110,37],[111,37],[135,37],[133,37],[134,37],[132,37],[73,60],[131,61],[128,62],[119,63],[126,64],[120,65],[123,62],[127,66],[118,67],[125,68],[117,69],[153,70],[152,1],[151,72],[150,1],[154,1],[155,1],[156,1],[149,75],[148,1],[146,1],[147,77],[145,1],[159,1],[157,1],[144,1]],"semanticDiagnosticsPerFile":[143,106,103,105,104,92,107,95,94,93,101,102,99,100,97,98,96,88,89,90,91,80,79,78,86,84,85,82,83,81,87,77,162,187,188,163,166,185,186,176,175,173,168,181,179,183,167,180,184,169,170,182,164,171,172,174,178,189,177,165,202,201,196,198,197,190,191,193,195,199,200,192,194,42,43,44,112,45,52,55,51,47,48,49,50,64,67,68,46,54,66,53,69,56,57,58,63,65,60,59,61,62,70,72,108,137,139,136,138,129,113,142,75,76,114,130,140,109,141,110,71,111,135,133,134,132,73,131,74,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,34,39,40,35,36,37,38,41,1,128,119,126,121,122,120,123,115,116,127,118,124,125,117,153,152,151,150,154,155,156,149,148,146,147,158,145,159,160,157,144,161]},"version":"4.8.4"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tavily/n8n-nodes-tavily",
3
- "version": "0.1.15",
3
+ "version": "0.2.1",
4
4
  "description": "A community node for n8n to integrate Tavily API for web search and content extraction.",
5
5
  "keywords": [
6
6
  "n8n-community-node-package"