n8n-nodes-nsrestlet 0.1.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.
package/LICENSE.md ADDED
@@ -0,0 +1,19 @@
1
+ Copyright 2022 n8n
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
4
+ this software and associated documentation files (the "Software"), to deal in
5
+ the Software without restriction, including without limitation the rights to
6
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7
+ of the Software, and to permit persons to whom the Software is furnished to do
8
+ so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,76 @@
1
+ ![Banner image](https://b2sell.com/Admin/Images/Images/netsuite-banner-new.jpg)
2
+
3
+ # n8n-nodes-nsrestlet
4
+
5
+ [n8n](https://n8n.io/) is a [fair-code licensed](https://docs.n8n.io/reference/license/) workflow automation platform.
6
+
7
+ [Installation](#installation)
8
+ [Credentials](#credentials)
9
+ [Usage](#usage)
10
+ [Compatibility](#compatibility)
11
+ [Resources](#resources)
12
+
13
+ ## Installation
14
+
15
+ [Installation instructions for installing/deleting/updating community nodes your n8n instance can be found here.](https://docs.n8n.io/integrations/community-nodes/installation/) Our npm package name is @squaregrove/n8n-nodes-nsrestlet
16
+ .
17
+
18
+ ## Credentials
19
+
20
+ Set up credentials in Netsuite using the following steps
21
+
22
+ 1. [Create an integration record](https://docs.oracle.com/en/cloud/saas/netsuite/ns-online-help/section_1530099787.html)
23
+
24
+ * Go to Setup > Integration > Manage Integrations > New.
25
+
26
+ * Check the box for Token-Based Authentication.
27
+
28
+ IMPORTANT - After you click Save, make sure you take note of the Consumer Key and Consumer Secret. This is the only time you will be able to get those, so if you don't copy them down then a new integration record will need to be created. You will use these later on in n8n.
29
+
30
+ 2. [Create an access token](https://docs.oracle.com/en/cloud/saas/netsuite/ns-online-help/bridgehead_4254081947.html)
31
+
32
+ * Go to Setup > Users/Roles > Access Tokens.
33
+
34
+ * On the Access Tokens page, click New Access Token.
35
+
36
+ * Select the Application Name from the dropdown which will be the same name you chose for your integration record in step 1. Also fill out the User, Role, and adjust the Token Name if you want before clicking Save.
37
+
38
+ IMPORTANT - After you click Save, make sure you take note of the Token ID and Token Secret. This is the only time you will be able to get those, so if you don't copy them down then a new access token will need to be generated. You will use these later on in n8n.
39
+
40
+ 3. [Set up a restlet script record](https://docs.oracle.com/en/cloud/saas/netsuite/ns-online-help/section_4618431823.html)
41
+
42
+ * Go to Customization > Scripting > Scripts > New, and then select RESTlet as the script type.
43
+
44
+ * Enter a name and select the script file. [An example starter script can be found here.](https://github.com/SquareGrove/n8n-nodes-nsrestlet/blob/main/n8n_restlet_sample.js)
45
+
46
+ * Copy-paste the script's function names in their respective places depending on the method used to call the function (i.e. - handleGetRequest, handlePostRequest, handlePutRequest, handleDeleteRequest) and click Save.
47
+
48
+ * Click Deploy Script. Here you will also need to set the Status to Released, and we recommend setting the Log Level to Debug. Click Save.
49
+
50
+ IMPORTANT - Take a note of the External URL that gets generated on the confirmation screen. You will use this later on in n8n.
51
+
52
+ 4. The only other value you will need is your Netsuite Account ID - This will be the number that appears at the beginning of your Netsuite URLs. These are typically 7 digit numbers and can be seen at the beginning of every URL in your environment.
53
+
54
+ ## Usage
55
+
56
+ 1. Create your credentials in n8n by finding the NSRestletCreds credential in the credential manager and inputting the following fields that you noted down from the prerequisites section.
57
+
58
+ Consumer Key
59
+ Consumer Secret
60
+ Token ID
61
+ Token Secret
62
+ NetSuite Account
63
+
64
+ 2. Add the NSRestlet node to your workflow and specify the credentials you set up in the last step, along with the Restlet URL which you should have noted down from step 3 of the prerequisites above.
65
+
66
+ 3. Finally, specify the method that you are using to call your restlet. GET and DELETE will both use Query Parameters to communicate with Netsuite, where the POST and PUT will use the Body.
67
+
68
+ Note - Until you build out your restlet more on the Netsuite end, making these calls will just return a success message of "sample response data".
69
+
70
+ ## Compatability
71
+
72
+ This node has been installed/tested on the most recent production release of n8n at the time of writing n8n@0.228.2. There are no known compatability issues with previous versions.
73
+
74
+ ## Resources
75
+
76
+ * [n8n community nodes documentation](https://docs.n8n.io/integrations/community-nodes/)
@@ -0,0 +1,6 @@
1
+ import { ICredentialType, INodeProperties } from "n8n-workflow";
2
+ export declare class NSRestletApi implements ICredentialType {
3
+ name: string;
4
+ displayName: string;
5
+ properties: INodeProperties[];
6
+ }
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.NSRestletApi = void 0;
4
+ class NSRestletApi {
5
+ constructor() {
6
+ this.name = 'ns-restletApi';
7
+ this.displayName = 'NetSuite Restlet API';
8
+ this.properties = [
9
+ {
10
+ displayName: 'Consumer Key',
11
+ name: 'consumer_key',
12
+ type: 'string',
13
+ default: ''
14
+ },
15
+ {
16
+ displayName: 'Consumer Secret',
17
+ name: 'consumer_secret',
18
+ type: 'string',
19
+ default: ''
20
+ },
21
+ {
22
+ displayName: 'Token ID',
23
+ name: 'token_id',
24
+ type: 'string',
25
+ default: ''
26
+ },
27
+ {
28
+ displayName: 'Token Secret',
29
+ name: 'token_secret',
30
+ type: 'string',
31
+ default: ''
32
+ },
33
+ {
34
+ displayName: 'NetSuite Account',
35
+ name: 'realm',
36
+ type: 'string',
37
+ default: ''
38
+ },
39
+ ];
40
+ }
41
+ }
42
+ exports.NSRestletApi = NSRestletApi;
43
+ //# sourceMappingURL=NSRestletApi.credentials.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NSRestletApi.credentials.js","sourceRoot":"","sources":["../../credentials/NSRestletApi.credentials.ts"],"names":[],"mappings":";;;AAEA,MAAa,YAAY;IAAzB;QACC,SAAI,GAAG,eAAe,CAAC;QACvB,gBAAW,GAAG,sBAAsB,CAAC;QACrC,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,cAAc;gBAC3B,IAAI,EAAE,cAAc;gBACpB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;aACX;YACD;gBACC,WAAW,EAAE,iBAAiB;gBAC9B,IAAI,EAAE,iBAAiB;gBACvB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;aACX;YACD;gBACC,WAAW,EAAE,UAAU;gBACvB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;aACX;YACD;gBACC,WAAW,EAAE,cAAc;gBAC3B,IAAI,EAAE,cAAc;gBACpB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;aACX;YACD;gBACC,WAAW,EAAE,kBAAkB;gBAC/B,IAAI,EAAE,OAAO;gBACb,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;aACX;SACD,CAAC;IACH,CAAC;CAAA;AAnCD,oCAmCC"}
@@ -0,0 +1,5 @@
1
+ import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
2
+ export declare class NSRestlet implements INodeType {
3
+ description: INodeTypeDescription;
4
+ execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
5
+ }
@@ -0,0 +1,195 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.NSRestlet = void 0;
7
+ const oauth_1_0a_1 = __importDefault(require("oauth-1.0a"));
8
+ const crypto_1 = __importDefault(require("crypto"));
9
+ class NSRestlet {
10
+ constructor() {
11
+ this.description = {
12
+ displayName: 'NetSuite Restlet',
13
+ name: 'NSRestlet',
14
+ description: 'This package allows for a "single-node" method of connecting your n8n instance with your NetSuite Restlet',
15
+ icon: 'file:NSRestlet.svg',
16
+ group: ['transform'],
17
+ version: 1,
18
+ defaults: {
19
+ name: 'NetSuite Restlet',
20
+ },
21
+ inputs: ['main'],
22
+ outputs: ['main'],
23
+ credentials: [
24
+ {
25
+ name: 'ns-restletApi',
26
+ required: true,
27
+ },
28
+ ],
29
+ properties: [
30
+ {
31
+ displayName: 'Restlet URL',
32
+ name: 'restlet_url',
33
+ type: 'string',
34
+ required: true,
35
+ placeholder: "ex: https://1234567.restlets.api.netsuite.com/app/site/hosting/restlet.nl?script=1&deploy=1",
36
+ default: ''
37
+ },
38
+ {
39
+ displayName: 'Method',
40
+ name: 'request_method',
41
+ type: 'options',
42
+ required: true,
43
+ options: [
44
+ {
45
+ name: 'GET',
46
+ value: 'GET',
47
+ },
48
+ {
49
+ name: 'POST',
50
+ value: 'POST',
51
+ },
52
+ {
53
+ name: 'PUT',
54
+ value: 'PUT',
55
+ },
56
+ {
57
+ name: 'DELETE',
58
+ value: 'DELETE',
59
+ }
60
+ ],
61
+ default: 'POST'
62
+ },
63
+ {
64
+ displayName: 'Query Parameters',
65
+ name: 'queryParameters',
66
+ type: 'fixedCollection',
67
+ displayOptions: {
68
+ show: {
69
+ request_method: ["GET", "DELETE"]
70
+ },
71
+ },
72
+ typeOptions: {
73
+ multipleValues: true,
74
+ },
75
+ placeholder: 'Add Parameter',
76
+ default: {
77
+ parameters: [
78
+ {
79
+ name: '',
80
+ value: '',
81
+ },
82
+ ],
83
+ },
84
+ options: [
85
+ {
86
+ name: 'parameters',
87
+ displayName: 'Parameter',
88
+ values: [
89
+ {
90
+ displayName: 'Name',
91
+ name: 'name',
92
+ type: 'string',
93
+ default: '',
94
+ },
95
+ {
96
+ displayName: 'Value',
97
+ name: 'value',
98
+ type: 'string',
99
+ default: '',
100
+ },
101
+ ],
102
+ },
103
+ ],
104
+ },
105
+ {
106
+ displayName: 'Request Body',
107
+ name: 'request_body',
108
+ displayOptions: {
109
+ show: {
110
+ request_method: ["POST", "PUT"]
111
+ },
112
+ },
113
+ type: 'json',
114
+ default: '',
115
+ }
116
+ ]
117
+ };
118
+ }
119
+ async execute() {
120
+ const credentials = await this.getCredentials('ns-restletApi');
121
+ const consumer_key = credentials.consumer_key;
122
+ const consumer_secret = credentials.consumer_secret;
123
+ const token_id = credentials.token_id;
124
+ const token_secret = credentials.token_secret;
125
+ const realm = credentials.realm;
126
+ const request_method = this.getNodeParameter('request_method', 0);
127
+ let restlet_url = this.getNodeParameter('restlet_url', 0);
128
+ let body, query_params, query_string_array = [], query_string;
129
+ const items = this.getInputData();
130
+ const results = [];
131
+ for (let i = 0; i < items.length; i++) {
132
+ if (request_method === 'GET' || request_method === 'DELETE') {
133
+ body = {};
134
+ query_params = this.getNodeParameter('queryParameters', i);
135
+ query_params = JSON.parse(JSON.stringify(query_params)).parameters;
136
+ for (let x in query_params) {
137
+ let key = encodeURIComponent(query_params[x].name);
138
+ let value = encodeURIComponent(query_params[x].value);
139
+ if (key !== '' && value !== '') {
140
+ query_string_array.push(`${key}=${value}`);
141
+ }
142
+ }
143
+ if (query_string_array.length > 0) {
144
+ query_string = query_string_array.join('&');
145
+ restlet_url += `&${query_string}`;
146
+ }
147
+ }
148
+ if (request_method === 'POST' || request_method === 'PUT') {
149
+ body = this.getNodeParameter('request_body', i);
150
+ if (body === '') {
151
+ body = {};
152
+ }
153
+ }
154
+ const oauth = new oauth_1_0a_1.default({
155
+ consumer: {
156
+ key: consumer_key,
157
+ secret: consumer_secret,
158
+ },
159
+ signature_method: 'HMAC-SHA256',
160
+ realm: realm,
161
+ hash_function(base_string, key) {
162
+ return crypto_1.default
163
+ .createHmac('sha256', key)
164
+ .update(base_string)
165
+ .digest('base64');
166
+ }
167
+ });
168
+ const authRequest = {
169
+ url: restlet_url,
170
+ method: request_method
171
+ };
172
+ const tokenData = {
173
+ key: token_id,
174
+ secret: token_secret
175
+ };
176
+ const headers = {
177
+ 'Accept': 'application/json',
178
+ 'Prefer': 'transient',
179
+ 'Authorization': oauth.toHeader(oauth.authorize(authRequest, tokenData)).Authorization
180
+ };
181
+ const requestOptions = {
182
+ headers,
183
+ method: request_method,
184
+ body: body,
185
+ uri: restlet_url,
186
+ json: true,
187
+ };
188
+ const responseData = await this.helpers.request(requestOptions);
189
+ results.push(this.helpers.returnJsonArray(responseData)[0]);
190
+ }
191
+ return [results];
192
+ }
193
+ }
194
+ exports.NSRestlet = NSRestlet;
195
+ //# sourceMappingURL=NSRestlet.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NSRestlet.node.js","sourceRoot":"","sources":["../../../nodes/NSRestlet/NSRestlet.node.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,20 @@
1
+ {
2
+ "node": "n8n-nodes-base.NSRestlet",
3
+ "nodeVersion": "1.0",
4
+ "codexVersion": "1.0",
5
+ "categories": [
6
+ "Miscellaneous"
7
+ ],
8
+ "resources": {
9
+ "credentialDocumentation": [
10
+ {
11
+ "url": "https://docs.oracle.com/en/cloud/saas/netsuite/ns-online-help/chapter_1529417663.html"
12
+ }
13
+ ],
14
+ "primaryDocumentation": [
15
+ {
16
+ "url": "https://docs.oracle.com/en/cloud/saas/netsuite/ns-online-help/section_4618431823.html"
17
+ }
18
+ ]
19
+ }
20
+ }
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0.2 150 150" xmlns="http://www.w3.org/2000/svg" width="60px" height="60px"><path d="M0 .2h150v150H0z" fill="none"/><path d="M20.1 47.7h23.7V104h11.8v22H20.1zm109.7 51.8h-23.7V43.2H94.3v-22h35.5z" fill="#baccdb"/><path d="M14.6 15.8h74.9v64.3L60.7 43H14.6zm120.6 115.7H60.3V67.2l28.8 37.1h46.1" fill="#125580"/></svg>
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "n8n-nodes-nsrestlet",
3
+ "version": "0.1.1",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
7
+ "description": "This package allows for a \"single-node\" method of connecting your n8n instance with your NetSuite Restlet",
8
+ "keywords": [
9
+ "n8n-community-node-package"
10
+ ],
11
+ "license": "MIT",
12
+ "homepage": "",
13
+ "author": {
14
+ "name": "CallMeGram",
15
+ "email": "none@gmail.com"
16
+ },
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/CallMeGram/n8n-nodes-nsrestlet.git"
20
+ },
21
+ "main": "index.js",
22
+ "scripts": {
23
+ "build": "tsc && gulp build:icons",
24
+ "dev": "tsc --watch",
25
+ "format": "prettier nodes credentials --write",
26
+ "lint": "eslint nodes credentials package.json",
27
+ "lintfix": "eslint nodes credentials package.json --fix",
28
+ "prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
29
+ },
30
+ "files": [
31
+ "dist"
32
+ ],
33
+ "n8n": {
34
+ "n8nNodesApiVersion": 1,
35
+ "credentials": [
36
+ "dist/credentials/NSRestletApi.credentials.js"
37
+ ],
38
+ "nodes": [
39
+ "dist/nodes/NSRestlet/NSRestlet.node.js"
40
+ ]
41
+ },
42
+ "devDependencies": {
43
+ "@types/express": "^4.17.6",
44
+ "@types/request-promise-native": "~1.0.15",
45
+ "@typescript-eslint/parser": "~5.45",
46
+ "eslint-plugin-n8n-nodes-base": "^1.11.0",
47
+ "gulp": "^4.0.2",
48
+ "n8n-core": "^1.14.1",
49
+ "n8n-workflow": "^1.82.0",
50
+ "prettier": "^2.7.1",
51
+ "typescript": "~4.8.4"
52
+ },
53
+ "dependencies": {
54
+ "crypto": "^1.0.1",
55
+ "oauth-1.0a": "^2.2.6",
56
+ "request": "^2.88.2"
57
+ }
58
+ }
@@ -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.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/typescript/lib/lib.esnext.intl.d.ts","../node_modules/axios/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.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/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/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/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.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/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/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/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/range-parser/index.d.ts","../node_modules/@types/qs/index.d.ts","../node_modules/@types/express-serve-static-core/index.d.ts","../node_modules/@types/mime/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/n8n-workflow/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/nsrestletapi.credentials.ts","../node_modules/oauth-1.0a/oauth-1.0a.d.ts","../nodes/nsrestlet/nsrestlet.node.ts","../nodes/nsrestlet/nsrestlet.node.json","../package.json","../node_modules/@types/asn1/index.d.ts","../node_modules/@types/caseless/index.d.ts","../node_modules/@types/es-aggregate-error/implementation.d.ts","../node_modules/@types/es-aggregate-error/polyfill.d.ts","../node_modules/@types/es-aggregate-error/shim.d.ts","../node_modules/@types/es-aggregate-error/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/lodash/common/common.d.ts","../node_modules/@types/lodash/common/array.d.ts","../node_modules/@types/lodash/common/collection.d.ts","../node_modules/@types/lodash/common/date.d.ts","../node_modules/@types/lodash/common/function.d.ts","../node_modules/@types/lodash/common/lang.d.ts","../node_modules/@types/lodash/common/math.d.ts","../node_modules/@types/lodash/common/number.d.ts","../node_modules/@types/lodash/common/object.d.ts","../node_modules/@types/lodash/common/seq.d.ts","../node_modules/@types/lodash/common/string.d.ts","../node_modules/@types/lodash/common/util.d.ts","../node_modules/@types/lodash/index.d.ts","../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../node_modules/@types/node-fetch/externals.d.ts","../node_modules/@types/node-fetch/index.d.ts","../node_modules/@types/readable-stream/node_modules/safe-buffer/index.d.ts","../node_modules/@types/readable-stream/index.d.ts","../node_modules/form-data/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/@types/triple-beam/index.d.ts","../node_modules/@types/tunnel/index.d.ts","../node_modules/@types/uuid/index.d.ts","../node_modules/@types/webidl-conversions/index.d.ts","../node_modules/@types/whatwg-url/index.d.ts","../node_modules/n8n-core/node_modules/n8n-workflow/dist/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"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},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"dc602ef9638db2163c461ec64133fe76f890f6e03b69b1c96f5c5e59592025e8","9122ed7070e054b73ebab37c2373a196def2d90e7d1a9a7fcd9d46b0e51fae78","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"3e4624c306340ad303cc536a07004e81336c3f088308a9e4a9f4c957a3cda2fd","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","34ec1daf3566f26c43dbab380af0de1aac29166e57e4f9ef379a2f154e0cb290","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"249a2b90439cdfd51709539fbfa4dfe0791cbae6efce1e9b327ba8f8cd703f49","affectsGlobalScope":true},"2f60ac046e587e917d739f1edc77540eb0ec34f83090dae4ebd5f96c1c9578d4","a9b6b0f7b1e30359283b131ba6d1c51ee2d3601a2f12e1623141e6a1a60c92a5","aeee0090b38de0dd47ca9a79ad5c2d156e3e09d92306719b0b45a3e96098e564","7bac475dcdd9f7e4e9da934d32c305bc889c4ce3c8ac0ef45a93a8d670fff607","09416dd69576b03a3f485adf329a02f043e4a481e060ef5b208194e488d31fd9","8acf99b1c8682276a63ea5bb68433782715892726b97e4604a415e4e56bce41c",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"3b145a2351f5cf16abf999c8d5f4481c74dffdc54ec1e9a89992e2622e1226c5","a907bf91df26df2400858ef75f749498fb5cf00062bf90a737ac3949cc07978d","d270fd4b565eda11a0a737c181892316b7a1ace06c7988d0246219c3df11db06","4275d5f964e7fc7afc18538e26b3748c207dd772998346d17f409749aa1f3a63",{"version":"59a638a504490fecaacf0020b9814b6abee37edb66047eb1ab9f7c2274bf1da0","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","d1a78a3c5708807e8de3e399f91df4797c62e44b02195eefc2209b2e713e54ee","8c4c1a64db28930732033c31418f817dcb9d09d706766707ae6d38f23faf0c53","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","d4fc97ea27a8226c5429b73efe7f0d9d78c0269e2995f6dba8bac64fc1b132dc","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","29d613c3964ea75b2b4e0d17098245c34529282e9cc72b7e4eeb2a7b12c27cb7",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","a381f079c4804442f179d742fdb2e495fe28d67a47cac673485f75ae2e77aeca","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"bfe39beb986d2a2e512c091cbe924f1c415bc65de54de0e2f6a0dc6f84c183d9","affectsGlobalScope":true},"2af17363f8a062e3a8cd1b26030af0058b3f86e783f4fc6aa9f57247f240ebaa","06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","dfe08140492cdc135fb7fd9c4a652c05207b61a436906079b87da1d3111314bf","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","089e1f8603cbc35ab977c8dcc662eb754b82fca32ed1dfb16bd682726c2d5432","8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"82fc37849846a3a0264047621d5beb6ce2ddeb2f83bdee2c79523af3c3282d97","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"101eb8b4e972b9326f39591e2e40e967e3331e8d960f81248daeb266ea1affec","affectsGlobalScope":true},"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","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":"77d9be5d3e6b36813cbab319b7f3fd01b6fde8f9d0932d83c6202d5f0b8415c2","signature":"b533c0cdfe2d6a3a2a3f25a34c1e7697a854aae828d38a5ebe0f2154245e6380"},"a7755c2d99539fb62de0630fb339af59614846f4551daccf6cb26586a114e8ba",{"version":"512a06c7898e3cfeea132c738dfa0b924c633613d861afdadd07efb6ddf0b11b","signature":"b8432a9e9202ac26059cd0a5750b8ba90803d9a9d6c7b566e9de540d87c6bbdd"},"ec54acc31f22a8c2074f4f317d530daf1082e4ce3c2d580e8ff35af60a6c63cc",{"version":"913e640a3d29a7d8df1c8d3c85ae547463b4c7c2183465336336cb5528f9d975","signature":"df3c649cfde35d0cb8f4c05f9b9b3f734c6d2eba351a24690a558617c49258e4"},"21bfe934fb4e01d6270ce97f0b4a3c3a8c2e78b74d10eeb7101485e856f8bb26","5343f3c160282dfbaab9af350119a0c3b59b7076ef0117bb5995a66e240dab28","a270efc2555753efb71c5cf2d58aaa664b98a2af4208b95091543e4e690cafb0","b11add1376095578230549a528d25b036fec7afd17426cdde4e69fa4087e7070","86d173bb5885dcbb2b18fdb4195332c956dc6c8511549570bac536af16ff7de8","be35d0ad228610a21c84b97194546d88cfad3a4c9d2724df26b92254491be7ab","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","7220461ab7f6d600b313ce621346c315c3a0ebc65b5c6f268488c5c55b68d319","f90d4c1ae3af9afb35920b984ba3e41bdd43f0dc7bae890b89fbd52b978f0cac","fcf79300e5257a23ed3bacaa6861d7c645139c6f7ece134d15e6669447e5e6db","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","b88749bdb18fc1398370e33aa72bc4f88274118f4960e61ce26605f9b33c5ba2","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","a873c50d3e47c21aa09fbe1e2023d9a44efb07cc0cb8c72f418bf301b0771fd3","7c14ccd2eaa82619fffc1bfa877eb68a012e9fb723d07ee98db451fadb618906","49c36529ee09ea9ce19525af5bb84985ea8e782cb7ee8c493d9e36d027a3d019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","b70c7ea83a7d0de17a791d9b5283f664033a96362c42cc4d2b2e0bdaa65ef7d1","5e379df3d61561c2ed7789b5995b9ba2143bbba21a905e2381e16efe7d1fa424","456034b639962883cff4ee87243928b7cfe8c2841be4d3de8eba0203b9ffe616","e91ad231af87f864b3f07cd0e39b1cf6c133988156f087c1c3ccb0a5491c9115","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","bf0b1297461549a0e32cd57dffb992c63d7c7134fe0f9e15d359abcc88dbd28c","7467a3a9a7941b98dc80713e03b474a1d5e0ce25701a9f1b3c96db00aed9880a","908217c4f2244ec402b73533ebfcc46d6dcd34fc1c807ff403d7f98702abb3bc","882057f051daf834e4d01701066e1bac2d243b0c3eda702b25874402c1e0172d","f874ea4d0091b0a44362a5f74d26caab2e66dec306c2bf7e8965f5106e784c3b","f2f23fe34b735887db1d5597714ae37a6ffae530cafd6908c9d79d485667c956","67483628398336d0f9368578a9514bd8cc823a4f3b3ab784f3942077e5047335"],"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":[[87,202],[87,164],[87,151,162],[87,167],[87,151,152,163],[87],[87,163,164,165,166],[87,153,154],[87,153],[87,154,156],[87,153,159,160],[87,153,155,156,157,159,160,161],[87,156,157,158],[87,156,159,161],[87,156],[87,156,159],[87,153,155],[87,137],[87,148],[87,147,148,149,150],[87,138,139],[87,138],[87,137,139,141],[87,138,144,145],[87,137,141,142,143],[87,137,141,144,146],[87,137,141],[87,137,144],[87,137,138,140],[87,137,138,140,141,142,144,145,146],[87,94],[61,87,94,100,202],[61,87,94,202],[87,210,211,212],[87,210],[58,61,87,94,95,96,202],[87,96,97,99,101],[87,215,217,218,219,220,221,222,223,224,225,226,227],[87,215,216,218,219,220,221,222,223,224,225,226,227],[87,216,217,218,219,220,221,222,223,224,225,226,227],[87,215,216,217,219,220,221,222,223,224,225,226,227],[87,215,216,217,218,220,221,222,223,224,225,226,227],[87,215,216,217,218,219,221,222,223,224,225,226,227],[87,215,216,217,218,219,220,222,223,224,225,226,227],[87,215,216,217,218,219,220,221,223,224,225,226,227],[87,215,216,217,218,219,220,221,222,224,225,226,227],[87,215,216,217,218,219,220,221,222,223,225,226,227],[87,215,216,217,218,219,220,221,222,223,224,226,227],[87,215,216,217,218,219,220,221,222,223,224,225,227],[87,215,216,217,218,219,220,221,222,223,224,225,226],[61,86,87,94,202,228,229],[61,75,87,94,202],[43,87],[46,87],[47,52,87],[48,58,59,66,75,86,87],[48,49,58,66,87],[50,87],[51,52,59,67,87],[52,75,83,87],[53,55,58,66,87],[54,87],[55,56,87],[57,58,87],[58,87],[58,59,60,75,86,87],[58,59,60,75,78,87],[87,91],[61,66,75,86,87,202],[58,59,61,62,66,75,83,86,87],[61,63,75,83,86,87],[43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93],[58,64,87],[65,86,87],[55,58,66,75,87],[67,87],[68,87],[46,69,87],[70,85,87,91],[71,87],[72,87],[58,73,87],[73,74,87,89],[58,75,76,77,78,87],[75,77,87],[75,76,87],[78,87],[79,87],[58,81,82,87],[81,82,87],[52,66,75,83,87],[84,87],[66,85,87],[47,61,72,86,87],[52,87],[75,87,88],[87,89],[87,90],[47,52,58,60,69,75,86,87,89,91],[75,87,92],[75,87,94,231],[61,87,202,235],[59,61,63,66,75,86,87,94,202,209,233,234],[61,87,94,98,202],[61,63,87,94,202],[87,135],[87,106,111,135],[87,112,135],[87,106],[87,107],[87,123],[87,111],[87,112],[87,113],[87,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128],[87,106,115,135],[87,115,116,135],[87,122],[87,119],[87,111,112,135],[87,133,135],[87,135,167],[87,196],[87,196,197],[87,188],[61,87,104,105,129,130,131,132,133,134,135,136,168,169,170,171,172,173,174,189,190,191,192,193,194,195,198,199,200,201],[42,59,61,75,83,86,87,102,103,104,105,113,116,117,119,122,129,130,131,133,134,202],[87,111,135],[87,132,135],[87,133,134,135],[87,187],[87,177,178],[87,175,176,177,179,180,185],[87,176,177],[87,186],[87,177],[87,175,176,177,180,181,182,183,184],[87,175,176,187],[52,87,202,204],[202],[61,87,94,100,202,242],[61,87,94,202,242],[58,61,87,94,95,96,202,242],[61,86,87,94,202,228,229,242],[61,75,87,94,202,242],[61,66,75,86,87,202,242],[61,87,202,235,242],[59,61,63,66,75,86,87,94,202,209,233,234,242],[61,87,94,98,202,242],[61,63,87,94,202,242],[61,87,104,105,129,130,131,132,133,134,135,136,168,169,170,171,172,173,174,189,190,191,192,193,194,195,198,199,200,201,242],[42,59,61,75,83,86,87,102,103,104,105,113,116,117,119,122,129,130,131,133,134,202,242]],"referencedMap":[[203,1],[166,2],[163,3],[165,4],[164,5],[152,6],[167,7],[155,8],[154,9],[153,10],[161,11],[162,12],[159,13],[160,14],[157,15],[158,16],[156,17],[148,18],[149,19],[150,6],[151,20],[140,21],[139,22],[138,23],[146,24],[144,25],[145,26],[142,27],[143,28],[141,29],[147,30],[137,6],[208,31],[101,32],[209,6],[100,33],[210,31],[213,34],[211,35],[212,35],[97,36],[102,37],[214,6],[216,38],[217,39],[215,40],[218,41],[219,42],[220,43],[221,44],[222,45],[223,46],[224,47],[225,48],[226,49],[227,50],[98,6],[229,6],[230,51],[228,52],[43,53],[44,53],[46,54],[47,55],[48,56],[49,57],[50,58],[51,59],[52,60],[53,61],[54,62],[55,63],[56,63],[57,64],[58,65],[59,66],[60,67],[45,68],[93,6],[61,69],[62,70],[63,71],[94,72],[64,73],[65,74],[66,75],[67,76],[68,77],[69,78],[70,79],[71,80],[72,81],[73,82],[74,83],[75,84],[77,85],[76,86],[78,87],[79,88],[80,6],[81,89],[82,90],[83,91],[84,92],[85,93],[86,94],[87,95],[88,96],[89,97],[90,98],[91,99],[92,100],[96,6],[95,6],[232,101],[231,6],[236,102],[235,103],[99,104],[234,6],[237,6],[238,105],[239,6],[240,6],[241,31],[42,6],[233,52],[104,6],[172,106],[105,6],[112,107],[115,108],[111,6],[107,109],[108,110],[109,110],[110,110],[124,111],[127,112],[128,6],[106,6],[114,113],[126,114],[113,113],[129,115],[116,116],[117,117],[118,113],[123,118],[125,107],[120,119],[119,120],[121,119],[122,108],[130,6],[132,121],[168,122],[197,123],[199,6],[196,6],[198,124],[189,125],[173,6],[202,126],[135,127],[136,106],[174,106],[190,1],[200,123],[169,121],[201,128],[170,106],[131,6],[171,106],[195,106],[193,106],[194,106],[192,106],[133,129],[191,130],[134,6],[103,52],[204,6],[9,6],[8,6],[2,6],[10,6],[11,6],[12,6],[13,6],[14,6],[15,6],[16,6],[17,6],[3,6],[4,6],[21,6],[18,6],[19,6],[20,6],[22,6],[23,6],[24,6],[5,6],[25,6],[26,6],[27,6],[28,6],[6,6],[29,6],[30,6],[31,6],[32,6],[7,6],[33,6],[38,6],[39,6],[34,6],[35,6],[36,6],[37,6],[40,6],[1,6],[41,6],[188,131],[179,132],[186,133],[181,6],[182,6],[180,134],[183,131],[175,6],[176,6],[187,135],[178,136],[184,6],[185,137],[177,138],[206,6],[205,139],[207,6]],"exportedModulesMap":[[203,140],[166,2],[163,3],[165,4],[164,5],[152,6],[167,7],[155,8],[154,9],[153,10],[161,11],[162,12],[159,13],[160,14],[157,15],[158,16],[156,17],[148,18],[149,19],[150,6],[151,20],[140,21],[139,22],[138,23],[146,24],[144,25],[145,26],[142,27],[143,28],[141,29],[147,30],[137,6],[208,31],[101,141],[209,6],[100,142],[210,31],[213,34],[211,35],[212,35],[97,143],[102,37],[214,6],[216,38],[217,39],[215,40],[218,41],[219,42],[220,43],[221,44],[222,45],[223,46],[224,47],[225,48],[226,49],[227,50],[98,6],[229,6],[230,144],[228,145],[43,53],[44,53],[46,54],[47,55],[48,56],[49,57],[50,58],[51,59],[52,60],[53,61],[54,62],[55,63],[56,63],[57,64],[58,65],[59,66],[60,67],[45,68],[93,6],[61,146],[62,70],[63,71],[94,72],[64,73],[65,74],[66,75],[67,76],[68,77],[69,78],[70,79],[71,80],[72,81],[73,82],[74,83],[75,84],[77,85],[76,86],[78,87],[79,88],[80,6],[81,89],[82,90],[83,91],[84,92],[85,93],[86,94],[87,95],[88,96],[89,97],[90,98],[91,99],[92,100],[96,6],[95,6],[232,101],[231,6],[236,147],[235,148],[99,149],[234,6],[237,6],[238,150],[239,6],[240,6],[241,31],[42,6],[233,145],[104,6],[172,106],[105,6],[112,107],[115,108],[111,6],[107,109],[108,110],[109,110],[110,110],[124,111],[127,112],[128,6],[106,6],[114,113],[126,114],[113,113],[129,115],[116,116],[117,117],[118,113],[123,118],[125,107],[120,119],[119,120],[121,119],[122,108],[130,6],[132,121],[168,122],[197,123],[199,6],[196,6],[198,124],[189,125],[173,6],[202,151],[135,152],[136,106],[174,106],[190,1],[200,123],[169,121],[201,128],[170,106],[131,6],[171,106],[195,106],[193,106],[194,106],[192,106],[133,129],[191,130],[134,6],[103,145],[204,6],[9,6],[8,6],[2,6],[10,6],[11,6],[12,6],[13,6],[14,6],[15,6],[16,6],[17,6],[3,6],[4,6],[21,6],[18,6],[19,6],[20,6],[22,6],[23,6],[24,6],[5,6],[25,6],[26,6],[27,6],[28,6],[6,6],[29,6],[30,6],[31,6],[32,6],[7,6],[33,6],[38,6],[39,6],[34,6],[35,6],[36,6],[37,6],[40,6],[1,6],[41,6],[188,131],[179,132],[186,133],[181,6],[182,6],[180,134],[183,131],[175,6],[176,6],[187,135],[178,136],[184,6],[185,137],[177,138],[206,6],[205,140]],"semanticDiagnosticsPerFile":[203,166,163,165,164,152,167,155,154,153,161,162,159,160,157,158,156,148,149,150,151,140,139,138,146,144,145,142,143,141,147,137,208,101,209,100,210,213,211,212,97,102,214,216,217,215,218,219,220,221,222,223,224,225,226,227,98,229,230,228,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,45,93,61,62,63,94,64,65,66,67,68,69,70,71,72,73,74,75,77,76,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,96,95,232,231,236,235,99,234,237,238,239,240,241,42,233,104,172,105,112,115,111,107,108,109,110,124,127,128,106,114,126,113,129,116,117,118,123,125,120,119,121,122,130,132,168,197,199,196,198,189,173,202,135,136,174,190,200,169,201,170,131,171,195,193,194,192,133,191,134,103,204,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,7,33,38,39,34,35,36,37,40,1,41,188,179,186,181,182,180,183,175,176,187,178,184,185,177,206,205,207]},"version":"4.8.4"}
package/index.js ADDED
File without changes
package/package.json ADDED
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "n8n-nodes-nsrestlet",
3
+ "version": "0.1.1",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
7
+ "description": "This package allows for a \"single-node\" method of connecting your n8n instance with your NetSuite Restlet",
8
+ "keywords": [
9
+ "n8n-community-node-package"
10
+ ],
11
+ "license": "MIT",
12
+ "homepage": "",
13
+ "author": {
14
+ "name": "CallMeGram",
15
+ "email": "none@gmail.com"
16
+ },
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/CallMeGram/n8n-nodes-nsrestlet.git"
20
+ },
21
+ "main": "index.js",
22
+ "scripts": {
23
+ "build": "tsc && gulp build:icons",
24
+ "dev": "tsc --watch",
25
+ "format": "prettier nodes credentials --write",
26
+ "lint": "eslint nodes credentials package.json",
27
+ "lintfix": "eslint nodes credentials package.json --fix",
28
+ "prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
29
+ },
30
+ "files": [
31
+ "dist"
32
+ ],
33
+ "n8n": {
34
+ "n8nNodesApiVersion": 1,
35
+ "credentials": [
36
+ "dist/credentials/NSRestletApi.credentials.js"
37
+ ],
38
+ "nodes": [
39
+ "dist/nodes/NSRestlet/NSRestlet.node.js"
40
+ ]
41
+ },
42
+ "devDependencies": {
43
+ "@types/express": "^4.17.6",
44
+ "@types/request-promise-native": "~1.0.15",
45
+ "@typescript-eslint/parser": "~5.45",
46
+ "eslint-plugin-n8n-nodes-base": "^1.11.0",
47
+ "gulp": "^4.0.2",
48
+ "n8n-core": "^1.14.1",
49
+ "n8n-workflow": "^1.82.0",
50
+ "prettier": "^2.7.1",
51
+ "typescript": "~4.8.4"
52
+ },
53
+ "dependencies": {
54
+ "crypto": "^1.0.1",
55
+ "oauth-1.0a": "^2.2.6",
56
+ "request": "^2.88.2"
57
+ }
58
+ }