n8n-nodes-huarp 0.1.0

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.
package/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # Huarp Nodes for n8n
2
+
3
+ This package provides custom n8n nodes to integrate with the Huarp RPA platform.
4
+
5
+ ## Architecture: The Builder Pattern
6
+
7
+ Since Huarp executes workflows as a cohesive unit, these nodes work by **accumulating steps** and then executing them all at once.
8
+
9
+ ### Typical Workflow Structure:
10
+ 1. **Huarp RPA Node (Operation: Start Workflow)**:
11
+ - Initializes an empty list of steps.
12
+ - Connect this to the start of your chain.
13
+
14
+ 2. **Huarp RPA Node (Operation: Add Step)**:
15
+ - Choose actions like `Navigate`, `Click`, `Type`, `Extract Text`.
16
+ - Each node adds a step to the list passed from the previous node.
17
+ - You can chain as many of these as you needed.
18
+
19
+ 3. **Huarp RPA Node (Operation: Execute Workflow)**:
20
+ - Must be the LAST node in the chain.
21
+ - Sends the accumulated steps to the Huarp API.
22
+ - Returns the execution results (including extracted data and logs).
23
+
24
+ ## Installation
25
+
26
+ 1. Copy this folder `n8n-nodes-huarp` to your local machine or server.
27
+ 2. Run `npm install` to install dependencies.
28
+ 3. Run `npm run build` to compile the TypeScript code.
29
+ 4. Link to your n8n instance:
30
+ - In this folder: `npm link`
31
+ - In your n8n root folder (usually `~/.n8n` or wherever n8n is installed): `npm link n8n-nodes-huarp`
32
+ 5. Restart n8n.
33
+
34
+ ## Credentials
35
+
36
+ You will need a **Huarp API Key**.
37
+ 1. Go to your Huarp Dashboard.
38
+ 2. Generate an API Token.
39
+ 3. In n8n, create a new "Huarp API" credential and paste the key.
@@ -0,0 +1,7 @@
1
+ import { ICredentialType, INodeProperties } from 'n8n-workflow';
2
+ export declare class HuarpApi implements ICredentialType {
3
+ name: string;
4
+ displayName: string;
5
+ properties: INodeProperties[];
6
+ }
7
+ //# sourceMappingURL=HuarpApi.credentials.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HuarpApi.credentials.d.ts","sourceRoot":"","sources":["../../credentials/HuarpApi.credentials.ts"],"names":[],"mappings":"AACA,OAAO,EACH,eAAe,EACf,eAAe,EAClB,MAAM,cAAc,CAAC;AAEtB,qBAAa,QAAS,YAAW,eAAe;IAC5C,IAAI,SAAc;IAClB,WAAW,SAAe;IAE1B,UAAU,EAAE,eAAe,EAAE,CAa3B;CACL"}
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.HuarpApi = void 0;
4
+ class HuarpApi {
5
+ constructor() {
6
+ this.name = 'huarpApi';
7
+ this.displayName = 'Huarp API';
8
+ // documentationUrl = 'https://huarp.com/docs/api';
9
+ this.properties = [
10
+ {
11
+ displayName: 'API Key',
12
+ name: 'apiKey',
13
+ type: 'string',
14
+ default: '',
15
+ },
16
+ {
17
+ displayName: 'Base URL',
18
+ name: 'baseUrl',
19
+ type: 'string',
20
+ default: 'http://localhost:3000/api',
21
+ },
22
+ ];
23
+ }
24
+ }
25
+ exports.HuarpApi = HuarpApi;
26
+ //# sourceMappingURL=HuarpApi.credentials.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HuarpApi.credentials.js","sourceRoot":"","sources":["../../credentials/HuarpApi.credentials.ts"],"names":[],"mappings":";;;AAMA,MAAa,QAAQ;IAArB;QACI,SAAI,GAAG,UAAU,CAAC;QAClB,gBAAW,GAAG,WAAW,CAAC;QAC1B,mDAAmD;QACnD,eAAU,GAAsB;YAC5B;gBACI,WAAW,EAAE,SAAS;gBACtB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;aACd;YACD;gBACI,WAAW,EAAE,UAAU;gBACvB,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,2BAA2B;aACvC;SACJ,CAAC;IACN,CAAC;CAAA;AAlBD,4BAkBC"}
@@ -0,0 +1,6 @@
1
+ import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
2
+ export declare class Huarp implements INodeType {
3
+ description: INodeTypeDescription;
4
+ execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
5
+ }
6
+ //# sourceMappingURL=Huarp.node.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Huarp.node.d.ts","sourceRoot":"","sources":["../../../nodes/Huarp/Huarp.node.ts"],"names":[],"mappings":"AACA,OAAO,EACH,iBAAiB,EACjB,kBAAkB,EAClB,SAAS,EACT,oBAAoB,EACvB,MAAM,cAAc,CAAC;AAItB,qBAAa,KAAM,YAAW,SAAS;IACnC,WAAW,EAAE,oBAAoB,CAkN/B;IAEI,OAAO,CAAC,IAAI,EAAE,iBAAiB,GAAG,OAAO,CAAC,kBAAkB,EAAE,EAAE,CAAC;CA+F1E"}
@@ -0,0 +1,310 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Huarp = void 0;
4
+ class Huarp {
5
+ constructor() {
6
+ this.description = {
7
+ displayName: 'Huarp RPA',
8
+ name: 'huarpRpa',
9
+ icon: 'file:huarp.svg',
10
+ group: ['transform'],
11
+ version: 1,
12
+ description: 'Build and execute Huarp RPA workflows',
13
+ defaults: {
14
+ name: 'Huarp RPA',
15
+ },
16
+ inputs: ['main'],
17
+ outputs: ['main'],
18
+ credentials: [
19
+ {
20
+ name: 'huarpApi',
21
+ required: true,
22
+ },
23
+ ],
24
+ properties: [
25
+ {
26
+ displayName: 'Operation',
27
+ name: 'operation',
28
+ type: 'options',
29
+ noDataExpression: true,
30
+ options: [
31
+ {
32
+ name: 'Start Workflow',
33
+ value: 'start',
34
+ description: 'Initialize a new RPA workflow context',
35
+ },
36
+ {
37
+ name: 'Add Step: Navigate',
38
+ value: 'step_navigate',
39
+ description: 'Add a navigation step',
40
+ },
41
+ {
42
+ name: 'Add Step: Click',
43
+ value: 'step_click',
44
+ description: 'Add a click step',
45
+ },
46
+ {
47
+ name: 'Add Step: Type',
48
+ value: 'step_type',
49
+ description: 'Add a type step',
50
+ },
51
+ {
52
+ name: 'Add Step: Extract Text',
53
+ value: 'step_extract',
54
+ description: 'Add a text extraction step',
55
+ },
56
+ {
57
+ name: 'Add Step: Extract Attribute',
58
+ value: 'step_extract_attr',
59
+ description: 'Add an attribute extraction step',
60
+ },
61
+ {
62
+ name: 'Add Step: Wait (Delay)',
63
+ value: 'step_wait',
64
+ description: 'Wait for a fixed amount of time',
65
+ },
66
+ {
67
+ name: 'Add Step: Wait For Element',
68
+ value: 'step_wait_for',
69
+ description: 'Wait for an element to appear',
70
+ },
71
+ {
72
+ name: 'Add Step: Screenshot',
73
+ value: 'step_screenshot',
74
+ description: 'Capture a screenshot',
75
+ },
76
+ {
77
+ name: 'Add Step: Get HTML',
78
+ value: 'step_html',
79
+ description: 'Get the full page HTML',
80
+ },
81
+ {
82
+ name: 'Add Step: If / Else',
83
+ value: 'step_if',
84
+ description: 'Conditional execution (Advanced)',
85
+ },
86
+ {
87
+ name: 'Execute Workflow',
88
+ value: 'run',
89
+ description: 'Run the accumulated workflow on Huarp',
90
+ },
91
+ ],
92
+ default: 'step_navigate',
93
+ },
94
+ // --- Navigation Fields ---
95
+ {
96
+ displayName: 'URL',
97
+ name: 'url',
98
+ type: 'string',
99
+ default: '',
100
+ displayOptions: {
101
+ show: {
102
+ operation: ['step_navigate'],
103
+ },
104
+ },
105
+ description: 'The URL to navigate to',
106
+ },
107
+ // --- Selector Fields (Shared) ---
108
+ {
109
+ displayName: 'Selector',
110
+ name: 'selector',
111
+ type: 'string',
112
+ default: '',
113
+ displayOptions: {
114
+ show: {
115
+ operation: ['step_click', 'step_type', 'step_extract', 'step_extract_attr', 'step_wait_for'],
116
+ },
117
+ },
118
+ description: 'CSS Selector or XPath to the element',
119
+ },
120
+ // --- Type Fields ---
121
+ {
122
+ displayName: 'Text to Type',
123
+ name: 'text',
124
+ type: 'string',
125
+ default: '',
126
+ displayOptions: {
127
+ show: {
128
+ operation: ['step_type'],
129
+ },
130
+ },
131
+ description: 'The text to type into the element',
132
+ },
133
+ // --- Extraction Fields ---
134
+ {
135
+ displayName: 'Variable Name',
136
+ name: 'variable',
137
+ type: 'string',
138
+ default: 'output',
139
+ displayOptions: {
140
+ show: {
141
+ operation: ['step_extract', 'step_extract_attr', 'step_html'],
142
+ },
143
+ },
144
+ description: 'Name of the variable to store the extracted data',
145
+ },
146
+ {
147
+ displayName: 'Attribute Name',
148
+ name: 'attribute',
149
+ type: 'string',
150
+ default: 'href',
151
+ displayOptions: {
152
+ show: {
153
+ operation: ['step_extract_attr'],
154
+ },
155
+ },
156
+ description: 'Name of the attribute to extract (e.g. href, src, value)',
157
+ },
158
+ // --- Wait Fields ---
159
+ {
160
+ displayName: 'Wait Duration (ms)',
161
+ name: 'duration',
162
+ type: 'number',
163
+ default: 1000,
164
+ displayOptions: {
165
+ show: {
166
+ operation: ['step_wait', 'step_wait_for'],
167
+ },
168
+ },
169
+ description: 'Time to wait (or timeout for waiting for element)',
170
+ },
171
+ // --- Description Field (Shared) ---
172
+ {
173
+ displayName: 'Description',
174
+ name: 'description',
175
+ type: 'string',
176
+ default: '',
177
+ displayOptions: {
178
+ show: {
179
+ operation: [
180
+ 'step_navigate',
181
+ 'step_click',
182
+ 'step_type',
183
+ 'step_extract',
184
+ 'step_extract_attr',
185
+ 'step_wait',
186
+ 'step_wait_for',
187
+ 'step_screenshot',
188
+ 'step_html',
189
+ 'step_if',
190
+ ],
191
+ },
192
+ },
193
+ description: 'Optional description for this step',
194
+ },
195
+ // --- Run Fields ---
196
+ {
197
+ displayName: 'Timeout (Seconds)',
198
+ name: 'timeout',
199
+ type: 'number',
200
+ default: 60,
201
+ displayOptions: {
202
+ show: {
203
+ operation: ['run'],
204
+ },
205
+ },
206
+ description: 'Maximum time to wait for execution',
207
+ },
208
+ ],
209
+ };
210
+ }
211
+ async execute() {
212
+ const items = this.getInputData();
213
+ const returnData = [];
214
+ for (let i = 0; i < items.length; i++) {
215
+ const operation = this.getNodeParameter('operation', i);
216
+ let item = items[i];
217
+ let steps = item.json.huarp_steps ? item.json.huarp_steps : [];
218
+ if (operation === 'start') {
219
+ steps = [];
220
+ }
221
+ else if (operation.startsWith('step_')) {
222
+ const action = operation.replace('step_', '');
223
+ let step = { action }; // Default action name matches except for special cases below
224
+ if (action === 'navigate') {
225
+ step.action = 'goto';
226
+ step.url = this.getNodeParameter('url', i);
227
+ }
228
+ else if (action === 'click') {
229
+ step.selector = this.getNodeParameter('selector', i);
230
+ }
231
+ else if (action === 'type') {
232
+ step.selector = this.getNodeParameter('selector', i);
233
+ step.text = this.getNodeParameter('text', i);
234
+ }
235
+ else if (action === 'extract') {
236
+ step.action = 'extract_text';
237
+ step.selector = this.getNodeParameter('selector', i);
238
+ step.var = this.getNodeParameter('variable', i);
239
+ }
240
+ else if (action === 'extract_attr') {
241
+ step.action = 'extract_attribute';
242
+ step.selector = this.getNodeParameter('selector', i);
243
+ step.attribute = this.getNodeParameter('attribute', i);
244
+ step.var = this.getNodeParameter('variable', i);
245
+ }
246
+ else if (action === 'wait') {
247
+ step.duration = this.getNodeParameter('duration', i);
248
+ }
249
+ else if (action === 'wait_for') {
250
+ step.action = 'wait_for';
251
+ step.selector = this.getNodeParameter('selector', i);
252
+ step.duration = this.getNodeParameter('duration', i); // Using duration as timeout
253
+ }
254
+ else if (action === 'screenshot') {
255
+ // No additional params needed, just action name
256
+ }
257
+ else if (action === 'html') {
258
+ step.action = 'get_html';
259
+ step.var = this.getNodeParameter('variable', i);
260
+ }
261
+ // Add description if provided
262
+ const description = this.getNodeParameter('description', i, '');
263
+ if (description) {
264
+ step.description = description;
265
+ }
266
+ steps.push(step);
267
+ }
268
+ else if (operation === 'run') {
269
+ const timeout = this.getNodeParameter('timeout', i);
270
+ const credentials = await this.getCredentials('huarpApi');
271
+ const options = {
272
+ method: 'POST',
273
+ uri: `${credentials.baseUrl}/rpa/run`,
274
+ body: {
275
+ steps,
276
+ timeout_seconds: timeout,
277
+ return_vars: steps.filter((s) => s.var).map((s) => s.var),
278
+ },
279
+ json: true,
280
+ headers: {
281
+ 'Authorization': `Bearer ${credentials.apiKey}`,
282
+ },
283
+ };
284
+ try {
285
+ const response = await this.helpers.request(options);
286
+ returnData.push({ json: response });
287
+ }
288
+ catch (error) {
289
+ if (this.continueOnFail()) {
290
+ returnData.push({ json: { error: error.message } });
291
+ }
292
+ else {
293
+ throw error;
294
+ }
295
+ }
296
+ continue; // Skip adding to returnData below since we handled it
297
+ }
298
+ // For non-run operations, just pass the accumulated steps
299
+ returnData.push({
300
+ json: {
301
+ ...item.json,
302
+ huarp_steps: steps,
303
+ },
304
+ });
305
+ }
306
+ return [returnData];
307
+ }
308
+ }
309
+ exports.Huarp = Huarp;
310
+ //# sourceMappingURL=Huarp.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Huarp.node.js","sourceRoot":"","sources":["../../../nodes/Huarp/Huarp.node.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2" viewBox="0 0 182 156"><path d="M139.672 155.667c-23.407 0-42.381-18.975-42.381-42.381V42.381C97.291 18.975 116.265 0 139.672 0c23.406 0 42.381 18.975 42.381 42.381v70.905c0 23.406-18.975 42.381-42.381 42.381" style="fill:#a7a7a6;fill-rule:nonzero"/><path d="M91.027 155.667c-23.406 0-42.381-18.975-42.381-42.381V42.381C48.646 18.975 67.621 0 91.027 0s42.381 18.975 42.381 42.381v70.905c0 23.406-18.975 42.381-42.381 42.381" style="fill:#cecdce;fill-rule:nonzero"/><path d="M42.381 155.667C18.975 155.667 0 136.692 0 113.286V42.381C0 18.975 18.975 0 42.381 0s42.381 18.975 42.381 42.381v70.905c0 23.406-18.975 42.381-42.381 42.381" style="fill:#e7e7e8;fill-rule:nonzero"/></svg>
@@ -0,0 +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/@types/node/ts5.6/compatibility/float16array.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/web-globals/abortcontroller.d.ts","../node_modules/@types/node/web-globals/blob.d.ts","../node_modules/@types/node/web-globals/console.d.ts","../node_modules/@types/node/web-globals/crypto.d.ts","../node_modules/@types/node/web-globals/domexception.d.ts","../node_modules/@types/node/web-globals/encoding.d.ts","../node_modules/@types/node/web-globals/events.d.ts","../node_modules/buffer/index.d.ts","../node_modules/undici-types/utility.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client-stats.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/h2c-client.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-call-history.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/snapshot-agent.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cache-interceptor.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/web-globals/fetch.d.ts","../node_modules/@types/node/web-globals/importmeta.d.ts","../node_modules/@types/node/web-globals/messaging.d.ts","../node_modules/@types/node/web-globals/navigator.d.ts","../node_modules/@types/node/web-globals/performance.d.ts","../node_modules/@types/node/web-globals/storage.d.ts","../node_modules/@types/node/web-globals/streams.d.ts","../node_modules/@types/node/web-globals/timers.d.ts","../node_modules/@types/node/web-globals/url.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/inspector.generated.d.ts","../node_modules/@types/node/inspector/promises.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/path/posix.d.ts","../node_modules/@types/node/path/win32.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/quic.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/sqlite.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/test/reporters.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/util/types.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/ts5.6/index.d.ts","../node_modules/@types/send/index.d.ts","../node_modules/@types/qs/index.d.ts","../node_modules/@types/range-parser/index.d.ts","../node_modules/@types/express-serve-static-core/index.d.ts","../node_modules/@types/http-errors/index.d.ts","../node_modules/@types/mime/index.d.ts","../node_modules/@types/serve-static/node_modules/@types/send/index.d.ts","../node_modules/@types/serve-static/index.d.ts","../node_modules/@types/connect/index.d.ts","../node_modules/@types/body-parser/index.d.ts","../node_modules/@types/express/index.d.ts","../node_modules/form-data/index.d.ts","../node_modules/@types/caseless/index.d.ts","../node_modules/@types/tough-cookie/index.d.ts","../node_modules/@types/request/index.d.ts","../node_modules/@types/request-promise-native/index.d.ts","../node_modules/n8n-workflow/dist/deferredpromise.d.ts","../node_modules/n8n-workflow/dist/expression.d.ts","../node_modules/n8n-workflow/dist/workflow.d.ts","../node_modules/n8n-workflow/dist/workflowhooks.d.ts","../node_modules/n8n-workflow/dist/nodeerrors.d.ts","../node_modules/n8n-workflow/dist/workflowactivationerror.d.ts","../node_modules/n8n-workflow/dist/workflowerrors.d.ts","../node_modules/n8n-workflow/dist/expressionerror.d.ts","../node_modules/n8n-workflow/dist/executionstatus.d.ts","../node_modules/n8n-workflow/dist/authentication.d.ts","../node_modules/n8n-workflow/dist/interfaces.d.ts","../node_modules/n8n-workflow/dist/loggerproxy.d.ts","../node_modules/n8n-workflow/dist/utils.d.ts","../node_modules/n8n-workflow/dist/errorreporterproxy.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/constants.d.ts","../node_modules/n8n-workflow/dist/cron.d.ts","../node_modules/n8n-workflow/dist/messageeventbus.d.ts","../node_modules/n8n-workflow/dist/routingnode.d.ts","../node_modules/n8n-workflow/dist/workflowdataproxy.d.ts","../node_modules/n8n-workflow/dist/versionednodetype.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/nativemethods/index.d.ts","../node_modules/n8n-workflow/dist/index.d.ts","../credentials/huarpapi.credentials.ts","../nodes/huarp/huarp.node.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/semver/functions/inc.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/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","../node_modules/n8n-workflow/dist/esm/index.d.ts","../node_modules/n8n-core/dist/execution-engine/index.d.ts","../node_modules/n8n-core/dist/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":"394fda71d5d6bd00a372437dff510feab37b92f345861e592f956d6995e9c1ce","affectsGlobalScope":true},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true},{"version":"6f2442c0ca5e7fcb9d51ebbd7d43079844bcbfd947bb679b9419900745f871d5","affectsGlobalScope":true},{"version":"903f7d218c85fc92fae02ba14efc9a8df9da4467b9ded26da203193ead10f4b4","affectsGlobalScope":true},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true},"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce","ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","2931540c47ee0ff8a62860e61782eb17b155615db61e36986e54645ec67f67c2","ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","f6faf5f74e4c4cc309a6c6a6c4da02dbb840be5d3e92905a23dcd7b2b0bd1986","ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","3bacf516d686d08682751a3bd2519ea3b8041a164bfb4f1d35728993e70a2426","7fb266686238369442bd1719bc0d7edd0199da4fb8540354e1ff7f16669b4323","0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","c183b931b68ad184bc8e8372bf663f3d33304772fb482f29fb91b3c391031f3e","5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790","adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","e1528ca65ac90f6fa0e4a247eb656b4263c470bb22d9033e466463e13395e599","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","866078923a56d026e39243b4392e282c1c63159723996fa89243140e1388a98d",{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true},"435b3711465425770ed2ee2f1cf00ce071835265e0851a7dc4600ab4b007550e","7e49f52a159435fc8df4de9dc377ef5860732ca2dc9efec1640531d3cf5da7a3","dd4bde4bdc2e5394aed6855e98cf135dfdf5dd6468cad842e03116d31bbcc9bc",{"version":"4d4e879009a84a47c05350b8dca823036ba3a29a3038efed1be76c9f81e45edf","affectsGlobalScope":true},"237ba5ac2a95702a114a309e39c53a5bddff5f6333b325db9764df9b34f3502b","9ba13b47cb450a438e3076c4a3f6afb9dc85e17eae50f26d4b2d72c0688c9251","b64cd4401633ea4ecadfd700ddc8323a13b63b106ac7127c1d2726f32424622c","37c6e5fe5715814412b43cc9b50b24c67a63c4e04e753e0d1305970d65417a60","1d024184fb57c58c5c91823f9d10b4915a4867b7934e89115fd0d861a9df27c8","ee0e4946247f842c6dd483cbb60a5e6b484fee07996e3a7bc7343dfb68a04c5d","ef051f42b7e0ef5ca04552f54c4552eac84099d64b6c5ad0ef4033574b6035b8","853a43154f1d01b0173d9cbd74063507ece57170bad7a3b68f3fa1229ad0a92f","56231e3c39a031bfb0afb797690b20ed4537670c93c0318b72d5180833d98b72","5cc7c39031bfd8b00ad58f32143d59eb6ffc24f5d41a20931269011dccd36c5e",{"version":"b0b69c61b0f0ec8ca15db4c8c41f6e77f4cacb784d42bca948f42dea33e8757e","affectsGlobalScope":true},"f96a48183254c00d24575401f1a761b4ce4927d927407e7862a83e06ce5d6964","cc25940cfb27aa538e60d465f98bb5068d4d7d33131861ace43f04fe6947d68f","f83fb2b1338afbb3f9d733c7d6e8b135826c41b0518867df0c0ace18ae1aa270","01ff95aa1443e3f7248974e5a771f513cb2ac158c8898f470a1792f817bee497","757227c8b345c57d76f7f0e3bbad7a91ffca23f1b2547cbed9e10025816c9cb7","42a05d8f239f74587d4926aba8cc54792eed8e8a442c7adc9b38b516642aadfe","5d21b58d60383cc6ab9ad3d3e265d7d25af24a2c9b506247e0e50b0a884920be","101f482fd48cb4c7c0468dcc6d62c843d842977aea6235644b1edd05e81fbf22",{"version":"ae6757460f37078884b1571a3de3ebaf724d827d7e1d53626c02b3c2a408ac63","affectsGlobalScope":true},"9451a46a89ed209e2e08329e6cac59f89356eae79a7230f916d8cc38725407c7","3ef397f12387eff17f550bc484ea7c27d21d43816bbe609d495107f44b97e933","1023282e2ba810bc07905d3668349fbd37a26411f0c8f94a70ef3c05fe523fcf","b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","e236b5eba291f51bdf32c231673e6cab81b5410850e61f51a7a524dddadc0f95",{"version":"f7ba0e839daa0702e3ff1a1a871c0d8ea2d586ce684dd8a72c786c36a680b1d9","affectsGlobalScope":true},"7f2c62938251b45715fd2a9887060ec4fbc8724727029d1cbce373747252bdd7","e3ace08b6bbd84655d41e244677b474fd995923ffef7149ddb68af8848b60b05","132580b0e86c48fab152bab850fc57a4b74fe915c8958d2ccb052b809a44b61c","af4ab0aa8908fc9a655bb833d3bc28e117c4f0e1038c5a891546158beb25accb","69c9a5a9392e8564bd81116e1ed93b13205201fb44cb35a7fde8c9f9e21c4b23","5f8fc37f8434691ffac1bfd8fc2634647da2c0e84253ab5d2dd19a7718915b35","5981c2340fd8b076cae8efbae818d42c11ffc615994cb060b1cd390795f1be2b","f64deb26664af64dc274637343bde8d82f930c77af05a412c7d310b77207a448",{"version":"ed4f674fc8c0c993cc7e145069ac44129e03519b910c62be206a0cc777bdc60b","affectsGlobalScope":true},"0250da3eb85c99624f974e77ef355cdf86f43980251bc371475c2b397ba55bcd","f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","3d3a5f27ffbc06c885dd4d5f9ee20de61faf877fe2c3a7051c4825903d9a7fdc","12806f9f085598ef930edaf2467a5fa1789a878fba077cd27e85dc5851e11834","17d06eb5709839c7ce719f0c38ada6f308fb433f2cd6d8c87b35856e07400950","a43fe41c33d0a192a0ecaf9b92e87bef3709c9972e6d53c42c49251ccb962d69",{"version":"a177959203c017fad3ecc4f3d96c8757a840957a4959a3ae00dab9d35961ca6c","affectsGlobalScope":true},"6fc727ccf9b36e257ff982ea0badeffbfc2c151802f741bddff00c6af3b784cf","2a00d005e3af99cd1cfa75220e60c61b04bfb6be7ca7453bfe2ef6cca37cc03c","4844a4c9b4b1e812b257676ed8a80b3f3be0e29bf05e742cc2ea9c3c6865e6c6","064878a60367e0407c42fb7ba02a2ea4d83257357dc20088e549bd4d89433e9c","14d4bd22d1b05824971b98f7e91b2484c90f1a684805c330476641417c3d9735","c3877fef8a43cd434f9728f25a97575b0eb73d92f38b5c87c840daccc3e21d97","b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","1dbd83860e7634f9c236647f45dbc5d3c4f9eba8827d87209d6e9826fdf4dbd5","41ef7992c555671a8fe54db302788adefa191ded810a50329b79d20a6772d14c","041a7781b9127ab568d2cdcce62c58fdea7c7407f40b8c50045d7866a2727130","b37f83e7deea729aa9ce5593f78905afb45b7532fdff63041d374f60059e7852","e1cb68f3ef3a8dd7b2a9dfb3de482ed6c0f1586ba0db4e7d73c1d2147b6ffc51","c28690b16de19870684ec3b78b87d9198e3c2bf5171b66ab3f353dfa935483ec","d34aa8df2d0b18fb56b1d772ff9b3c7aea7256cf0d692f969be6e1d27b74d660","baac9896d29bcc55391d769e408ff400d61273d832dd500f21de766205255acb","2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed",{"version":"90407bbaa24977b8a6a90861148ac98d8652afe69992a90d823f29e9807fe2d7","affectsGlobalScope":true},"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","cb90077223cc1365fa21ef0911a1f9b8f2f878943523d97350dc557973ca3823","18f1541b81b80d806120a3489af683edfb811deb91aeca19735d9bb2613e6311","104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","232f118ae64ab84dcd26ddb60eaed5a6e44302d36249abf05e9e3fc2cbb701a2","e91ad231af87f864b3f07cd0e39b1cf6c133988156f087c1c3ccb0a5491c9115","2174e20517788d2a1379fc0aaacd87899a70f9e0197b4295edabfe75c4db03d8","03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","319c37263037e8d9481a3dc7eadf6afa6a5f5c002189ebe28776ac1a62a38e15","1be2d0ed4aa430cdb701033d3a740010f3e80935ff01ec3d9e894b2e4327cc7e","8b9e20585ff8d1664c6cd14d4b02ccc46300a7cf30871fae19436a5babedd86d","b73ef1ccaad3896839055bda96b3fa23e1bf64e0652a87a102c3c152455a6119","5d920591dfcd3b1467ced64fb9f000d4089751c7cf6ff295bc98c05c876bd52c","c2e81cdcaaaacf8fb582b2dba7dd20e61d69137aa4334592818cdd00cc9be2ee","9390a166195fc6abe56d2a57b67d099d8c0edfcb903789dc138e345479bc0965","3fd20ce4d7c8c2e388bc14c745fb9885ea24eab6451bbef4b6a2b01a441129b6","e793ba3683fc3c7e7708a5e00cf2a18115c3c2140f61e3390a5f960a66468e37","759b9a791a7d8fcd08ec4e95754062f6792e12359ab2b8938b0ed5fe16885d8e","e0c6580bc67ee43c8ca81a3b1531a7ccf4e69a5825ae597930edad1ad8b3cbcf","9ffc29217a231ceacfc98fd2c7ab10a0b985a9ccdba344d7ae5ae5bbb131380f","3a97c512cd903302a1c7aa8c44697e7340b37c4c5a50f822cc60f19a5ae0d122","3735c6d4f47344fb7e5f1f806af6a3b318a8001cb155a92dbe4a7615ed4ff57c","0887a75e86c4398ccfe603998d8daec69ccf0352631a0982ad1efa4ff4126bfb","3026ffe8ed2103258b0a25823715656eca63694485afb3848a510371635444a5","a6c64923287970134ed781651350b730196dd1fe70439ba766c22e7498e73469","edd5e20e9eb8cb2eaf941d431af3ab69a9b94e7f5d8699b4c938fee1be8d53c4","ac3cc90f9fa90ed3dfc9f3ec16e6082be364af9f9054afa924241aa017e42369","10a4ce9c034416b338e23c286645019b894bbfafc71cf6e28e09c63be0b53563","0234584eaf3c5c21e7d3b79e1a9d71551e2a6fa5ca25bdc39c544f00e6e52b1e","8ed62c6a2b723a6651121e314c75784adb0c6071fca2dbc069c2d114238f8f0b","280c72d8d6a18e47b89a18e5d37d9070537096e6868994fcd59ee4f5a4d69cfb","cf6c4a3968683a226342403f0ba60060dd277c08097c28f78b2664cb0a6e56fc","951baa882e6e3e5026cb8a16f80a8bebec1caa35c3fa016c9a3ce6a338bd3123","3a710da4a0c4535f9de1d249379d5ca3998ce2c63aba7834398a0b019046513d","e38804187e84fd7b87a19aa9215d69cfad48a10511c4e6ffe2d87bcc4e29957c","5067e5ccf5e8a516f6bd8668ac660bace0b953298740dbb675d38e7ff00f482a","31720c5266808c8a63203a56ae9bb7238c8788395937f203680d007e3f9ffcc7","1f981721ece2d049f9dbd84a00b906915fa358aa1397419546501b866a38b982","abeb445eda8fc6fa862c0f45e79353e7ffcb3c4dbb6ba698a4ee7a4146bb0a76",{"version":"4c6f30f6fbc5898124efc3125362b86cf65b7310f94a13e18dc748810b84d5ec","signature":"066ed2e678eb9cd289a0895d08c7e6faa513f0ca2b35deb9ebb9ae1750816c45"},{"version":"3ae37fc81e609a5052a2bc0c3ae9454f654bcf6d4dc6dc43c9797213264a2a08","signature":"d09e46ef339aec9decbecda192dbb790db1c976c7b0019ba1874102183ea5aab"},"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","ce6a3f09b8db73a7e9701aca91a04b4fabaf77436dd35b24482f9ee816016b17","20e086e5b64fdd52396de67761cc0e94693494deadb731264aac122adf08de3f","6e78f75403b3ec65efb41c70d392aeda94360f11cedc9fb2c039c9ea23b30962","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","eefd2bbc8edb14c3bd1246794e5c070a80f9b8f3730bd42efb80df3cc50b9039","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","a56fe175741cc8841835eb72e61fa5a34adcbc249ede0e3494c229f0750f6b85"],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":1,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":6,"useUnknownInCatchVariables":false},"fileIdsList":[[44,107,115,119,122,124,125,126,138,208],[44,107,115,119,121,122,124,125,126,138,163,172,208],[44,107,115,119,122,124,125,126,138],[44,107,115,119,121,122,124,125,126,138,163,208],[44,107,115,118,119,121,122,124,125,126,138,163,164,165,166,208],[44,107,115,119,122,124,125,126,138,165,167,171,173],[44,104,105,107,115,119,122,124,125,126,138],[44,106,107,115,119,122,124,125,126,138],[44,107,115,119,122,124,125,126,138,146],[44,107,108,113,115,118,119,122,124,125,126,128,138,143,155],[44,107,108,109,115,118,119,122,124,125,126,138],[44,107,110,115,119,122,124,125,126,138,156],[44,107,111,112,115,119,122,124,125,126,129,138],[44,107,112,115,119,122,124,125,126,138,143,152],[44,107,113,115,118,119,122,124,125,126,128,138],[44,106,107,114,115,119,122,124,125,126,138],[44,107,115,116,119,122,124,125,126,138],[44,107,115,117,118,119,122,124,125,126,138],[44,106,107,115,118,119,122,124,125,126,138],[44,107,115,118,119,120,122,124,125,126,138,143,155],[44,107,115,118,119,120,122,124,125,126,138,143,146],[44,94,107,115,118,119,121,122,124,125,126,128,138,143,155],[44,107,115,118,119,121,122,124,125,126,128,138,143,152,155],[44,107,115,119,121,122,123,124,125,126,138,143,152,155],[44,107,115,118,119,122,124,125,126,138],[44,107,115,119,122,124,126,138],[44,107,115,119,122,124,125,126,127,138,155],[44,107,115,118,119,122,124,125,126,128,138,143],[44,107,115,119,122,124,125,126,129,138],[44,107,115,119,122,124,125,126,130,138],[44,107,115,118,119,122,124,125,126,133,138],[44,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,208],[44,107,115,119,122,124,125,126,135,138],[44,107,115,119,122,124,125,126,136,138],[44,107,112,115,119,122,124,125,126,128,138,146],[44,107,115,118,119,122,124,125,126,138,139],[44,107,115,119,122,124,125,126,138,140,156,159],[44,107,115,118,119,122,124,125,126,138,143,145,146],[44,107,115,119,122,124,125,126,138,144,146],[44,107,115,119,122,124,125,126,138,146,156],[44,107,115,119,122,124,125,126,138,147],[44,104,107,115,119,122,124,125,126,138,143,149],[44,107,115,119,122,124,125,126,138,143,148],[44,107,115,118,119,122,124,125,126,138,150,151],[44,107,115,119,122,124,125,126,138,150,151],[44,107,112,115,119,122,124,125,126,128,138,143,152],[44,107,115,119,122,124,125,126,138,153],[107,115,119,122,124,125,126,138],[41,42,43,44,45,46,47,48,49,50,51,52,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162],[44,107,115,119,122,124,125,126,128,138,154],[44,107,115,119,121,122,124,125,126,136,138,155],[44,107,115,119,122,124,125,126,138,156,157],[44,107,112,115,119,122,124,125,126,138,157],[44,107,115,119,122,124,125,126,138,143,158],[44,107,115,119,122,124,125,126,127,138,159],[44,107,115,119,122,124,125,126,138,160],[44,107,110,115,119,122,124,125,126,138],[44,107,112,115,119,122,124,125,126,138],[44,107,115,119,122,124,125,126,138,156],[44,94,107,115,119,122,124,125,126,138],[44,107,115,119,122,124,125,126,138,155],[44,107,115,119,122,124,125,126,138,161],[44,107,115,119,122,124,125,126,133,138],[44,107,115,119,122,124,125,126,138,151],[44,94,107,115,118,119,120,122,124,125,126,133,138,143,146,155,158,159,161],[44,107,115,119,122,124,125,126,138,143,162],[44,107,115,119,121,122,124,125,126,138,178,208],[44,107,115,119,121,122,123,124,125,126,128,138,143,155,163,175,176,177,208],[44,107,115,119,122,124,125,126,138,213,251],[44,107,115,119,122,124,125,126,138,213,236,251],[44,107,115,119,122,124,125,126,138,212,251],[44,107,115,119,122,124,125,126,138,251],[44,107,115,119,122,124,125,126,138,213],[44,107,115,119,122,124,125,126,138,213,237,251],[44,107,115,119,122,124,125,126,138,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250],[44,107,115,119,122,124,125,126,138,237,251],[44,107,115,119,122,124,125,126,138,143,163],[44,107,115,119,121,122,124,125,126,138,163,168,170,208],[44,107,115,119,122,124,125,126,138,143,163,169],[44,107,115,119,121,122,124,125,126,138,143,163,208],[44,107,115,119,122,124,125,126,138,192],[44,107,115,119,122,124,125,126,138,182,190],[44,107,115,119,122,124,125,126,138,184],[44,107,115,119,122,124,125,126,138,204],[44,107,115,119,122,124,125,126,138,204,205],[44,107,115,119,121,122,124,125,126,138,163,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,206,207],[44,107,115,119,121,122,124,125,126,138,143,155,163,174,175,178,179,180,182,183,184,185,186,187,188,189,208],[44,107,115,119,122,124,125,126,138,190],[44,107,115,119,122,124,125,126,138,181,190],[44,107,115,119,122,124,125,126,138,184,190],[44,60,63,66,67,107,115,119,122,124,125,126,138,155],[44,63,107,115,119,122,124,125,126,138,143,155],[44,63,67,107,115,119,122,124,125,126,138,155],[44,107,115,119,122,124,125,126,138,143],[44,57,107,115,119,122,124,125,126,138],[44,61,107,115,119,122,124,125,126,138],[44,59,60,63,107,115,119,122,124,125,126,138,155],[44,107,115,119,122,124,125,126,128,138,152],[44,107,115,119,122,124,125,126,138,163],[44,57,107,115,119,122,124,125,126,138,163],[44,59,63,107,115,119,122,124,125,126,128,138,155],[44,54,55,56,58,62,107,115,118,119,122,124,125,126,138,143,155],[44,63,71,79,107,115,119,122,124,125,126,138],[44,55,61,107,115,119,122,124,125,126,138],[44,63,88,89,107,115,119,122,124,125,126,138],[44,55,58,63,107,115,119,122,124,125,126,138,146,155,163],[44,63,107,115,119,122,124,125,126,138],[44,59,63,107,115,119,122,124,125,126,138,155],[44,54,107,115,119,122,124,125,126,138],[44,57,58,59,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,89,90,91,92,93,107,115,119,122,124,125,126,138],[44,63,81,84,107,115,119,122,124,125,126,138],[44,63,71,72,73,107,115,119,122,124,125,126,138],[44,61,63,72,74,107,115,119,122,124,125,126,138],[44,62,107,115,119,122,124,125,126,138],[44,55,57,63,107,115,119,122,124,125,126,138],[44,63,67,72,74,107,115,119,122,124,125,126,138],[44,67,107,115,119,122,124,125,126,138],[44,61,63,66,107,115,119,122,124,125,126,138,155],[44,55,59,63,71,107,115,119,122,124,125,126,138],[44,63,81,107,115,119,122,124,125,126,138],[44,74,107,115,119,122,124,125,126,138],[44,57,63,88,107,115,119,122,124,125,126,138,146,161,163],[44,107,115,119,122,124,125,126,138,178,208],[252,253],[44,107,115,119,121,122,124,125,126,138,163,172,252],[44,107,115,119,121,122,124,125,126,138,163,252],[44,107,115,118,119,121,122,124,125,126,138,163,164,165,166,252],[44,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,252],[44,107,115,119,121,122,124,125,126,138,178,252],[44,107,115,119,121,122,123,124,125,126,128,138,143,155,163,175,176,177,252],[44,107,115,119,121,122,124,125,126,138,163,168,170,252],[44,107,115,119,121,122,124,125,126,138,143,163,252],[44,107,115,119,121,122,124,125,126,138,163,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,206,207,254],[44,107,115,119,121,122,124,125,126,138,143,155,163,174,175,178,179,180,182,183,184,185,186,187,188,189,208,254],[208]],"referencedMap":[[209,1],[173,2],[176,3],[172,4],[167,5],[174,6],[168,3],[211,3],[169,3],[104,7],[105,7],[106,8],[107,9],[108,10],[109,11],[42,3],[110,12],[111,13],[112,14],[113,15],[114,16],[115,17],[116,17],[117,18],[118,19],[119,20],[120,21],[45,3],[121,22],[122,23],[123,24],[124,25],[125,26],[126,25],[127,27],[128,28],[129,29],[130,30],[131,30],[132,30],[133,31],[134,32],[135,33],[136,34],[137,35],[138,36],[139,36],[140,37],[141,3],[142,3],[143,38],[144,39],[145,38],[146,40],[147,41],[148,42],[149,43],[150,44],[151,45],[152,46],[153,47],[44,48],[41,3],[43,3],[163,49],[154,50],[155,51],[156,52],[157,53],[158,54],[159,55],[160,56],[46,25],[47,3],[48,57],[49,58],[50,3],[51,59],[52,3],[95,60],[96,61],[97,62],[98,62],[99,63],[100,3],[101,9],[102,64],[103,61],[161,65],[162,66],[165,3],[166,3],[179,67],[178,68],[236,69],[237,70],[213,71],[216,72],[234,69],[235,69],[225,69],[224,73],[222,69],[217,69],[230,69],[228,69],[232,69],[212,69],[229,69],[233,69],[218,69],[219,69],[231,69],[214,69],[220,69],[221,69],[223,69],[227,69],[238,74],[226,69],[215,69],[251,75],[250,3],[245,74],[247,76],[246,74],[239,74],[240,74],[242,74],[244,74],[248,76],[249,76],[241,76],[243,76],[164,77],[171,78],[170,79],[177,3],[53,3],[175,80],[189,3],[197,3],[198,3],[180,3],[193,81],[188,3],[181,82],[187,83],[205,84],[204,3],[206,85],[208,86],[190,87],[191,88],[199,88],[207,3],[184,88],[194,82],[195,88],[200,82],[196,88],[203,88],[192,88],[202,88],[182,89],[185,90],[201,82],[186,88],[183,88],[8,3],[10,3],[9,3],[2,3],[11,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[3,3],[4,3],[22,3],[19,3],[20,3],[21,3],[23,3],[24,3],[25,3],[5,3],[26,3],[27,3],[28,3],[29,3],[6,3],[30,3],[31,3],[32,3],[33,3],[7,3],[34,3],[39,3],[40,3],[35,3],[36,3],[37,3],[38,3],[1,3],[71,91],[83,92],[69,93],[84,94],[93,95],[60,96],[61,97],[59,98],[92,99],[87,100],[91,101],[63,102],[80,103],[62,104],[90,105],[57,106],[58,100],[64,107],[65,3],[70,108],[68,107],[55,109],[94,110],[85,111],[74,112],[73,107],[75,113],[78,114],[72,115],[76,116],[88,99],[66,117],[67,118],[79,119],[56,94],[82,120],[81,107],[77,121],[86,3],[54,3],[89,122],[210,123]],"exportedModulesMap":[[209,124],[173,125],[176,3],[172,126],[167,127],[174,6],[168,3],[211,3],[169,3],[104,7],[105,7],[106,8],[107,9],[108,10],[109,11],[42,3],[110,12],[111,13],[112,14],[113,15],[114,16],[115,17],[116,17],[117,18],[118,19],[119,20],[120,21],[45,3],[121,22],[122,23],[123,24],[124,25],[125,26],[126,25],[127,27],[128,28],[129,29],[130,30],[131,30],[132,30],[133,31],[134,128],[135,33],[136,34],[137,35],[138,36],[139,36],[140,37],[141,3],[142,3],[143,38],[144,39],[145,38],[146,40],[147,41],[148,42],[149,43],[150,44],[151,45],[152,46],[153,47],[44,48],[41,3],[43,3],[163,49],[154,50],[155,51],[156,52],[157,53],[158,54],[159,55],[160,56],[46,25],[47,3],[48,57],[49,58],[50,3],[51,59],[52,3],[95,60],[96,61],[97,62],[98,62],[99,63],[100,3],[101,9],[102,64],[103,61],[161,65],[162,66],[165,3],[166,3],[179,129],[178,130],[236,69],[237,70],[213,71],[216,72],[234,69],[235,69],[225,69],[224,73],[222,69],[217,69],[230,69],[228,69],[232,69],[212,69],[229,69],[233,69],[218,69],[219,69],[231,69],[214,69],[220,69],[221,69],[223,69],[227,69],[238,74],[226,69],[215,69],[251,75],[250,3],[245,74],[247,76],[246,74],[239,74],[240,74],[242,74],[244,74],[248,76],[249,76],[241,76],[243,76],[164,77],[171,131],[170,79],[177,3],[53,3],[175,132],[189,3],[197,3],[198,3],[180,3],[193,81],[188,3],[181,82],[187,83],[205,84],[204,3],[206,85],[208,133],[190,134],[191,88],[199,88],[207,3],[184,88],[194,82],[195,88],[200,82],[196,88],[203,88],[192,88],[202,88],[182,89],[185,90],[201,82],[186,88],[183,88],[8,3],[10,3],[9,3],[2,3],[11,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[3,3],[4,3],[22,3],[19,3],[20,3],[21,3],[23,3],[24,3],[25,3],[5,3],[26,3],[27,3],[28,3],[29,3],[6,3],[30,3],[31,3],[32,3],[33,3],[7,3],[34,3],[39,3],[40,3],[35,3],[36,3],[37,3],[38,3],[1,3],[71,91],[83,92],[69,93],[84,94],[93,95],[60,96],[61,97],[59,98],[92,99],[87,100],[91,101],[63,102],[80,103],[62,104],[90,105],[57,106],[58,100],[64,107],[65,3],[70,108],[68,107],[55,109],[94,110],[85,111],[74,112],[73,107],[75,113],[78,114],[72,115],[76,116],[88,99],[66,117],[67,118],[79,119],[56,94],[82,120],[81,107],[77,121],[86,3],[54,3],[89,122],[210,135]],"semanticDiagnosticsPerFile":[209,173,176,172,167,174,168,211,169,104,105,106,107,108,109,42,110,111,112,113,114,115,116,117,118,119,120,45,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,44,41,43,163,154,155,156,157,158,159,160,46,47,48,49,50,51,52,95,96,97,98,99,100,101,102,103,161,162,165,166,179,178,236,237,213,216,234,235,225,224,222,217,230,228,232,212,229,233,218,219,231,214,220,221,223,227,238,226,215,251,250,245,247,246,239,240,242,244,248,249,241,243,164,171,170,177,53,175,189,197,198,180,193,188,181,187,205,204,206,208,190,191,199,207,184,194,195,200,196,203,192,202,182,185,201,186,183,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,1,71,83,69,84,93,60,61,59,92,87,91,63,80,62,90,57,58,64,65,70,68,55,94,85,74,73,75,78,72,76,88,66,67,79,56,82,81,77,86,54,89,210],"latestChangedDtsFile":"./nodes/Huarp/Huarp.node.d.ts"},"version":"4.8.4"}
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "n8n-nodes-huarp",
3
+ "version": "0.1.0",
4
+ "description": "Huarp RPA nodes for n8n",
5
+ "keywords": [
6
+ "n8n-community-node-package"
7
+ ],
8
+ "license": "MIT",
9
+ "author": {
10
+ "name": "Gabriel Oliveira",
11
+ "email": "gabriel@sensa.tec.br"
12
+ },
13
+ "main": "index.js",
14
+ "scripts": {
15
+ "build": "tsc && gulp",
16
+ "dev": "tsc --watch",
17
+ "format": "prettier ONE_LINE_r 'nodes/**/*.ts' 'credentials/**/*.ts' --write",
18
+ "lint": "eslint nodes credentials package.json",
19
+ "lintfix": "eslint nodes credentials package.json --fix",
20
+ "prepublishOnly": "npm run build && npm run lint"
21
+ },
22
+ "files": [
23
+ "dist"
24
+ ],
25
+ "n8n": {
26
+ "nodes": [
27
+ "dist/nodes/Huarp/Huarp.node.js"
28
+ ],
29
+ "credentials": [
30
+ "dist/credentials/HuarpApi.credentials.js"
31
+ ]
32
+ },
33
+ "devDependencies": {
34
+ "@types/express": "^4.17.6",
35
+ "@types/request-promise-native": "~1.0.15",
36
+ "@typescript-eslint/eslint-plugin": "5.45.1",
37
+ "@typescript-eslint/parser": "5.45.1",
38
+ "eslint-plugin-n8n-nodes-base": "^1.11.0",
39
+ "gulp": "^4.0.2",
40
+ "n8n-core": "0.148.0",
41
+ "n8n-workflow": "0.148.0",
42
+ "prettier": "^2.7.1",
43
+ "typescript": "~4.8.4"
44
+ },
45
+ "peerDependencies": {
46
+ "n8n-core": "*",
47
+ "n8n-workflow": "*"
48
+ }
49
+ }