n8n-nodes-couchbase 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.
Files changed (33) hide show
  1. package/LICENSE.md +19 -0
  2. package/README.md +47 -0
  3. package/dist/credentials/CouchbaseCredentialsApi.credentials.d.ts +8 -0
  4. package/dist/credentials/CouchbaseCredentialsApi.credentials.js +46 -0
  5. package/dist/credentials/CouchbaseCredentialsApi.credentials.js.map +1 -0
  6. package/dist/credentials/ExampleCredentialsApi.credentials.d.ts +8 -0
  7. package/dist/credentials/ExampleCredentialsApi.credentials.js +46 -0
  8. package/dist/credentials/ExampleCredentialsApi.credentials.js.map +1 -0
  9. package/dist/credentials/HttpBinApi.credentials.d.ts +9 -0
  10. package/dist/credentials/HttpBinApi.credentials.js +40 -0
  11. package/dist/credentials/HttpBinApi.credentials.js.map +1 -0
  12. package/dist/nodes/CouchbaseDB/CBLogomark.svg +350 -0
  13. package/dist/nodes/CouchbaseDB/CouchbaseDB.node.d.ts +6 -0
  14. package/dist/nodes/CouchbaseDB/CouchbaseDB.node.js +274 -0
  15. package/dist/nodes/CouchbaseDB/CouchbaseDB.node.js.map +1 -0
  16. package/dist/nodes/CouchbaseNode/CBLogomark.svg +350 -0
  17. package/dist/nodes/CouchbaseNode/CouchbaseDb.node.d.ts +6 -0
  18. package/dist/nodes/CouchbaseNode/CouchbaseDb.node.js +274 -0
  19. package/dist/nodes/CouchbaseNode/CouchbaseDb.node.js.map +1 -0
  20. package/dist/nodes/CouchbaseNode/CouchbaseNode.node.d.ts +6 -0
  21. package/dist/nodes/CouchbaseNode/CouchbaseNode.node.js +274 -0
  22. package/dist/nodes/CouchbaseNode/CouchbaseNode.node.js.map +1 -0
  23. package/dist/nodes/ExampleNode/CBLogomark.svg +350 -0
  24. package/dist/nodes/ExampleNode/CouchbaseNode.node.d.ts +6 -0
  25. package/dist/nodes/ExampleNode/CouchbaseNode.node.js +234 -0
  26. package/dist/nodes/ExampleNode/CouchbaseNode.node.js.map +1 -0
  27. package/dist/nodes/ExampleNode/ExampleNode.node.d.ts +6 -0
  28. package/dist/nodes/ExampleNode/ExampleNode.node.js +234 -0
  29. package/dist/nodes/ExampleNode/ExampleNode.node.js.map +1 -0
  30. package/dist/package.json +54 -0
  31. package/dist/tsconfig.tsbuildinfo +1 -0
  32. package/index.js +0 -0
  33. package/package.json +54 -0
@@ -0,0 +1,6 @@
1
+ import { IExecuteFunctions } from 'n8n-core';
2
+ import { INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
3
+ export declare class ExampleNode implements INodeType {
4
+ description: INodeTypeDescription;
5
+ execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
6
+ }
@@ -0,0 +1,234 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ExampleNode = void 0;
4
+ const n8n_workflow_1 = require("n8n-workflow");
5
+ const couchbase_1 = require("couchbase");
6
+ class ExampleNode {
7
+ constructor() {
8
+ this.description = {
9
+ displayName: 'Couchbase',
10
+ name: 'couchbaseDB',
11
+ icon: 'file:CBLogomark.svg',
12
+ group: ['transform'],
13
+ version: 1,
14
+ description: 'Couchbase Node to add, update and delete data from couchbase',
15
+ defaults: {
16
+ name: 'Couchbase',
17
+ },
18
+ inputs: ['main'],
19
+ outputs: ['main'],
20
+ properties: [
21
+ {
22
+ displayName: 'Operation',
23
+ name: 'operation',
24
+ type: 'options',
25
+ noDataExpression: true,
26
+ options: [
27
+ {
28
+ name: 'Insert',
29
+ value: 'insert',
30
+ description: 'Insert document in couchbase',
31
+ action: 'Insert document in couchbase',
32
+ },
33
+ {
34
+ name: 'Update',
35
+ value: 'update',
36
+ description: 'Update document in couchbase',
37
+ action: 'Update document in couchbase',
38
+ },
39
+ {
40
+ name: 'Remove',
41
+ value: 'remove',
42
+ description: 'Remove document in couchbase',
43
+ action: 'Remove document in couchbase',
44
+ },
45
+ ],
46
+ default: 'insert',
47
+ },
48
+ {
49
+ displayName: 'Username',
50
+ name: 'myUsername',
51
+ type: 'string',
52
+ displayOptions: {
53
+ show: {
54
+ operation: ['insert', 'update', 'remove'],
55
+ },
56
+ },
57
+ default: '',
58
+ placeholder: 'Enter Your Username',
59
+ description: 'The description text',
60
+ },
61
+ {
62
+ displayName: 'Password',
63
+ name: 'myPassword',
64
+ type: 'string',
65
+ displayOptions: {
66
+ show: {
67
+ operation: ['insert', 'update', 'remove'],
68
+ },
69
+ },
70
+ default: '',
71
+ placeholder: 'Enter Your Password',
72
+ description: 'The description text',
73
+ },
74
+ {
75
+ displayName: 'Bucket',
76
+ name: 'myBucket',
77
+ type: 'string',
78
+ displayOptions: {
79
+ show: {
80
+ operation: ['insert', 'update', 'remove'],
81
+ },
82
+ },
83
+ default: '',
84
+ placeholder: 'Enter Bucket Name',
85
+ description: 'The description text',
86
+ },
87
+ {
88
+ displayName: 'Scope',
89
+ name: 'myScope',
90
+ type: 'string',
91
+ displayOptions: {
92
+ show: {
93
+ operation: ['insert', 'update', 'remove'],
94
+ },
95
+ },
96
+ default: '',
97
+ placeholder: 'Enter Scope Name',
98
+ description: 'The description text',
99
+ },
100
+ {
101
+ displayName: 'Colection',
102
+ name: 'myCollection',
103
+ type: 'string',
104
+ displayOptions: {
105
+ show: {
106
+ operation: ['insert', 'update', 'remove'],
107
+ },
108
+ },
109
+ default: '',
110
+ placeholder: 'Enter Collection Name',
111
+ description: 'The description text',
112
+ },
113
+ {
114
+ displayName: 'Value',
115
+ name: 'myDocument',
116
+ type: 'string',
117
+ displayOptions: {
118
+ show: {
119
+ operation: ['insert'],
120
+ },
121
+ },
122
+ default: '',
123
+ placeholder: 'Placeholder value',
124
+ description: 'The description text',
125
+ },
126
+ {
127
+ displayName: 'ID',
128
+ name: 'myDocument',
129
+ type: 'string',
130
+ displayOptions: {
131
+ show: {
132
+ operation: ['update'],
133
+ },
134
+ },
135
+ default: '',
136
+ placeholder: 'Placeholder value',
137
+ description: 'The description text',
138
+ },
139
+ {
140
+ displayName: 'Value',
141
+ name: 'myValue',
142
+ type: 'string',
143
+ displayOptions: {
144
+ show: {
145
+ operation: ['update'],
146
+ },
147
+ },
148
+ default: '',
149
+ placeholder: 'Placeholder value',
150
+ description: 'The description text',
151
+ },
152
+ {
153
+ displayName: 'ID',
154
+ name: 'myDocument',
155
+ type: 'string',
156
+ displayOptions: {
157
+ show: {
158
+ operation: ['remove'],
159
+ },
160
+ },
161
+ default: '',
162
+ placeholder: 'Placeholder value',
163
+ description: 'The description text',
164
+ },
165
+ ],
166
+ };
167
+ }
168
+ async execute() {
169
+ const items = this.getInputData();
170
+ let item;
171
+ let item2;
172
+ let myDocument;
173
+ let myNewValue;
174
+ let myUsername;
175
+ let myPassword;
176
+ let myBucket;
177
+ let myScope;
178
+ let myCollection;
179
+ for (let itemIndex = 0; itemIndex < items.length; itemIndex++) {
180
+ try {
181
+ myNewValue = this.getNodeParameter('myValue', itemIndex, '');
182
+ myDocument = this.getNodeParameter('myDocument', itemIndex, '');
183
+ myUsername = this.getNodeParameter('myUsername', itemIndex, '');
184
+ myPassword = this.getNodeParameter('myPassword', itemIndex, '');
185
+ myBucket = this.getNodeParameter('myBucket', itemIndex, '');
186
+ myScope = this.getNodeParameter('myScope', itemIndex, '');
187
+ myCollection = this.getNodeParameter('myCollection', itemIndex, '');
188
+ const clusterConnStr = "couchbase://127.0.0.1/?connectionTimeout=1200";
189
+ const username = myUsername;
190
+ const password = myPassword;
191
+ const bucketName = myBucket;
192
+ const cluster = await (0, couchbase_1.connect)(clusterConnStr, {
193
+ username: username,
194
+ password: password,
195
+ });
196
+ const bucket = cluster.bucket(bucketName);
197
+ const collection = bucket
198
+ .scope(myScope)
199
+ .collection(myCollection);
200
+ item = items[itemIndex];
201
+ item.json['myDocument'] = myDocument;
202
+ const operation = this.getNodeParameter('operation', 0);
203
+ if (operation === 'insert') {
204
+ await collection.insert(myDocument, item.json);
205
+ }
206
+ else if (operation === 'update') {
207
+ item2 = items[itemIndex];
208
+ item2.json['myDocument'] = myNewValue;
209
+ await collection.upsert(myDocument, item2.json);
210
+ }
211
+ else if (operation === 'remove') {
212
+ await collection.remove(myDocument);
213
+ }
214
+ }
215
+ catch (error) {
216
+ if (this.continueOnFail()) {
217
+ items.push({ json: this.getInputData(itemIndex)[0].json, error, pairedItem: itemIndex });
218
+ }
219
+ else {
220
+ if (error.context) {
221
+ error.context.itemIndex = itemIndex;
222
+ throw error;
223
+ }
224
+ throw new n8n_workflow_1.NodeOperationError(this.getNode(), error, {
225
+ itemIndex,
226
+ });
227
+ }
228
+ }
229
+ }
230
+ return this.prepareOutputData(items);
231
+ }
232
+ }
233
+ exports.ExampleNode = ExampleNode;
234
+ //# sourceMappingURL=ExampleNode.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ExampleNode.node.js","sourceRoot":"","sources":["../../../nodes/ExampleNode/ExampleNode.node.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "n8n-nodes-couchbase",
3
+ "version": "0.1.0",
4
+ "description": "N8N Node to add, get, update and delete data to couchbase",
5
+ "keywords": [
6
+ "n8n-community-node-package"
7
+ ],
8
+ "license": "MIT",
9
+ "homepage": "",
10
+ "author": {
11
+ "name": "marloaquino",
12
+ "email": "marloauino080621@gmail.com"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/maruakinu/n8n-nodes-couchbase.git"
17
+ },
18
+ "main": "index.js",
19
+ "scripts": {
20
+ "build": "tsc && gulp build:icons",
21
+ "dev": "tsc --watch",
22
+ "format": "prettier nodes credentials --write",
23
+ "lint": "eslint nodes credentials package.json",
24
+ "lintfix": "eslint nodes credentials package.json --fix",
25
+ "prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
26
+ },
27
+ "files": [
28
+ "dist"
29
+ ],
30
+ "n8n": {
31
+ "n8nNodesApiVersion": 1,
32
+ "credentials": [
33
+ "dist/credentials/CouchbaseCredentialsApi.credentials.js"
34
+ ],
35
+ "nodes": [
36
+ "dist/nodes/CouchbaseNode/CouchbaseDB.node.js"
37
+ ]
38
+ },
39
+ "devDependencies": {
40
+ "@types/express": "^4.17.6",
41
+ "@types/request-promise-native": "~1.0.15",
42
+ "@typescript-eslint/parser": "~5.45",
43
+ "eslint-plugin-n8n-nodes-base": "^1.11.0",
44
+ "gulp": "^4.0.2",
45
+ "n8n-core": "*",
46
+ "n8n-workflow": "*",
47
+ "prettier": "^2.7.1",
48
+ "typescript": "~4.8.4"
49
+ },
50
+ "dependencies": {
51
+ "couchbase": "^4.2.4",
52
+ "link": "^1.5.1"
53
+ }
54
+ }
@@ -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/@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/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/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/cron.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/index.d.ts","../credentials/couchbasecredentialsapi.credentials.ts","../node_modules/n8n-core/dist/eventemitter.d.ts","../node_modules/n8n-core/dist/nodeexecutefunctions.d.ts","../node_modules/n8n-core/dist/interfaces.d.ts","../node_modules/n8n-core/dist/usersettings.d.ts","../node_modules/n8n-core/dist/activeworkflows.d.ts","../node_modules/n8n-core/dist/activewebhooks.d.ts","../node_modules/n8n-core/dist/binarydatamanager/index.d.ts","../node_modules/n8n-core/dist/classloader.d.ts","../node_modules/n8n-core/dist/constants.d.ts","../node_modules/n8n-core/dist/credentials.d.ts","../node_modules/n8n-core/dist/directoryloader.d.ts","../node_modules/n8n-core/dist/loadnodedetails.d.ts","../node_modules/n8n-core/dist/loadnodeparameteroptions.d.ts","../node_modules/n8n-core/dist/loadnodelistsearch.d.ts","../node_modules/p-cancelable/index.d.ts","../node_modules/n8n-core/dist/workflowexecute.d.ts","../node_modules/n8n-core/dist/index.d.ts","../node_modules/couchbase/dist/generaltypes.d.ts","../node_modules/couchbase/dist/utilities.d.ts","../node_modules/couchbase/dist/analyticsindexmanager.d.ts","../node_modules/couchbase/dist/analyticstypes.d.ts","../node_modules/couchbase/dist/authenticators.d.ts","../node_modules/couchbase/dist/binding.d.ts","../node_modules/couchbase/dist/mutationstate.d.ts","../node_modules/couchbase/dist/crudoptypes.d.ts","../node_modules/couchbase/dist/binarycollection.d.ts","../node_modules/couchbase/dist/datastructures.d.ts","../node_modules/couchbase/dist/queryindexmanager.d.ts","../node_modules/couchbase/dist/querytypes.d.ts","../node_modules/couchbase/dist/streamablepromises.d.ts","../node_modules/couchbase/dist/transcoders.d.ts","../node_modules/couchbase/dist/scope.d.ts","../node_modules/couchbase/dist/sdspecs.d.ts","../node_modules/couchbase/dist/collection.d.ts","../node_modules/couchbase/dist/collectionmanager.d.ts","../node_modules/couchbase/dist/diagnosticstypes.d.ts","../node_modules/couchbase/dist/viewindexmanager.d.ts","../node_modules/couchbase/dist/viewtypes.d.ts","../node_modules/couchbase/dist/bucket.d.ts","../node_modules/couchbase/dist/bucketmanager.d.ts","../node_modules/couchbase/dist/eventingfunctionmanager.d.ts","../node_modules/couchbase/dist/searchindexmanager.d.ts","../node_modules/couchbase/dist/searchquery.d.ts","../node_modules/couchbase/dist/searchfacet.d.ts","../node_modules/couchbase/dist/searchsort.d.ts","../node_modules/couchbase/dist/searchtypes.d.ts","../node_modules/couchbase/dist/transactions.d.ts","../node_modules/couchbase/dist/usermanager.d.ts","../node_modules/couchbase/dist/cluster.d.ts","../node_modules/couchbase/dist/errorcontexts.d.ts","../node_modules/couchbase/dist/errors.d.ts","../node_modules/couchbase/dist/viewexecutor.d.ts","../node_modules/couchbase/dist/couchbase.d.ts","../nodes/couchbasedb/couchbasedb.node.ts","../package.json","../node_modules/@types/json-schema/index.d.ts","../../../../node_modules/@types/http-errors/index.d.ts","../../../../node_modules/@types/semver/classes/semver.d.ts","../../../../node_modules/@types/semver/functions/parse.d.ts","../../../../node_modules/@types/semver/functions/valid.d.ts","../../../../node_modules/@types/semver/functions/clean.d.ts","../../../../node_modules/@types/semver/functions/inc.d.ts","../../../../node_modules/@types/semver/functions/diff.d.ts","../../../../node_modules/@types/semver/functions/major.d.ts","../../../../node_modules/@types/semver/functions/minor.d.ts","../../../../node_modules/@types/semver/functions/patch.d.ts","../../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../../node_modules/@types/semver/functions/compare.d.ts","../../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../../node_modules/@types/semver/functions/sort.d.ts","../../../../node_modules/@types/semver/functions/rsort.d.ts","../../../../node_modules/@types/semver/functions/gt.d.ts","../../../../node_modules/@types/semver/functions/lt.d.ts","../../../../node_modules/@types/semver/functions/eq.d.ts","../../../../node_modules/@types/semver/functions/neq.d.ts","../../../../node_modules/@types/semver/functions/gte.d.ts","../../../../node_modules/@types/semver/functions/lte.d.ts","../../../../node_modules/@types/semver/functions/cmp.d.ts","../../../../node_modules/@types/semver/functions/coerce.d.ts","../../../../node_modules/@types/semver/classes/comparator.d.ts","../../../../node_modules/@types/semver/classes/range.d.ts","../../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../../node_modules/@types/semver/ranges/valid.d.ts","../../../../node_modules/@types/semver/ranges/outside.d.ts","../../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../../node_modules/@types/semver/ranges/subset.d.ts","../../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../../node_modules/@types/semver/index.d.ts","../../../../node_modules/@types/mime/index.d.ts","../../../../node_modules/@types/send/index.d.ts","../../../../node_modules/@types/node/ts4.8/util.d.ts","../../../../node_modules/@types/node/ts4.8/index.d.ts","../../../../node_modules/@types/node/ts4.8/fs.d.ts","../../../../node_modules/@types/node/ts4.8/stream.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},"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","e91ad231af87f864b3f07cd0e39b1cf6c133988156f087c1c3ccb0a5491c9115","5343f3c160282dfbaab9af350119a0c3b59b7076ef0117bb5995a66e240dab28","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","bf0b1297461549a0e32cd57dffb992c63d7c7134fe0f9e15d359abcc88dbd28c","7467a3a9a7941b98dc80713e03b474a1d5e0ce25701a9f1b3c96db00aed9880a","c4299421b95e09c0fe92cf8cead37a8a9af1b8920cb185bfaee76537657f3cab","17532c1339da07d0388a56cfac9fb9eb2af3caaaf550f9bd17f1bf984517ffdf","47ca0fb9673aaebf19c75837ecd7e075c8a65663d0b5755cf2b4c8dd6f92493f","0d0d319489059ab6959d08ac6c1b013220da4dbc28dc4d2aa4919e4bed1eedc1","2b352ff7ffb7b07bdc0b7b6b02e8e04fc467636548b1997efa46c1e8d9f8885a","ce80715b3df13eb906356c80cd931b64e63ad38f7a68180acff9cc808a1e542a","98d28f891aa926233020c9f3acdb5a707aebfea4bc94c9d8339903863f68c4a3","14782d232b3fff9ee9e4c29983328bae6674922c8e10e6e68b1eff6112be1896","2935ef7de3f720df3b30f2a249688de3cf87b523167734ccfdb6251a9301bd4c","b7b3958334f8bff712551362cabd7cc0e9484c512423ba1066137361b4a11093","b049f4ddcb18089e939a714ad93f29dbe9c811ceb44c21bf123a332505291a31","4d59c8b99874b651b0d5b436750090a9955bb65eea14974c91d364c476d21cbd","b359615f90221520f669a288bb72471dce2473f2b229fee0a9fe1e5a04a07bcf","556b4ef8c0f4040631dd9c1553358d16af6ab742dbfebe0559e455a01646071b","c1c5bddcba6fe35c1541f7a00d147825e5f88ee8e400b8d7d1be1cdfe08419c4","51bf9f55b74f7493c2f8fc7d383fb7f1529825d22e02ae0fd777d4f741984c96","24f7c94ed00767e830eb54713b2090237fad94a24b1732302f7e3ccdac58b4ae","eb4abb197fcb43aedab5346fdfa687ea630c570f7b6c3c9c473401e2ce483e09","951baa882e6e3e5026cb8a16f80a8bebec1caa35c3fa016c9a3ce6a338bd3123","0ccaac66a72368e2d95406df3ecdb2ff3e181f2a8cb9e9147165c5fe62aa543f","2645155e6973548b03fcc9b0cce8ab8e32c0d67fec9a2746b3e07551e23ce09a",{"version":"7fb369395579fd6ee8dda88fde722a543296c2eb98eb702db93465b3d35689be","signature":"6ed856b9feb9d92c89bf1512b8be5e14da168f6922a7059314f91c296bb86d5a"},"2e1229c84de62a5acadb51792a4384664405fc1191407530e47c7e20cefaf34f","9b2e66653a4b7a46bfad6ee86d36bdb3c7c434c9a0a0888ab6ae3d0f7f314163","1e5fcb9efdfb84e06fbb9e090521a45e2bb6a599e7c07ebaa2366e99f9d08b33","dbd8ec8dedb32e373b0b044e77cdff2b37e7c544c3858623b85ea599c122c9d0","cdcb6d2eb54a9d5ae958de74665ad0ce0f835a1351893a900df256858441c77f","2b74f2fef8c81de87e87199e1cfa135f76756a338606552224e748966a21f958","1fc0d6dacc4914bf2b30e941c324d655e5562a288425dea4463c71ce2681016f","4bfdad139574f13b03a7cb18cce8d3e2bb1acf30b226aa59d2f75de6abb11aa6","a890eccd3a34ba90f7691d7896e6a4cb76dcbb430bf54ab18859c96a364d8b8e","a5fcc36856b09ee8da5d0f3fd05afe27505ed095cf085697fd40da812bd76a13","70c8ceb03e679d1bfa16483cef8ea9d82351878392524151d86fc363d74d8015","3d8165bbdd508d694e864a499ac6eb359b4476fc030c52af4679ed585bc76831","f14dabf60c92d6764e1d24f99a306dc375d118d9b15c1ceec175246a1e47e852","2ce321f1ae14b928877d9ed07c4bdcb4da3910d367f7f7088ac78c7234816123","6bc64e37d72e60ec298911f260518ad11a875b236c237a4b4319a2c8f76a6467","d375096186dd86247adb9ae4520fc43b59ff3fdfcb61932a1f9cb5a7e9f3b664","423407843748b45dfe0ec3239ec11d68c9cad38fcd03a0ae07f1c5131ef4a0aa","d00ae9609f620f35fa53d407bf0390147abfd735e9f52fc6889d4a43823c9060","4f58527593e0ffa5ae5def4cca7ac08966dadc6ba6263391f217cf70d45e8a7c","debd282169df3b1853d99cd02b83dce024681011fb6f16197417a7f8bbff8ecd","e26991c62447c8ebf4420ccce184aba151ec5284f5374bb8390ccb651c070c5c","ab7c10446789218981e38bc44b6747c27858f23bb65ed009dc3e33cb455fdd77","9c3608087f7376a2706ad16ef85d1767cd4e621aba7d25d933d5388fd0be2fa2","96b60014420e283a4b473f98750db29d492e2491dff7620d6307cb1b0b877cdd","6c4ea466ab01b0ae30df6a1b3e4e5d70d8e329681ac311d53bb222f15f6e3502","5d9ae03c83be1e83aadfe46fde59ebb3f9a981a46d729e87340e8db58c2f0501","c99a4eb01d338e4595eaf5251cb1eba2b735d7657b15da6f23b2d8d95174331d","5b6bbc791c02aea7da08bcddf9b46d78315214543d8fa514a0b755dd3e6b9249","b6158ef7d3470e802b7b7ec061834c3e48d846dc38695b6e90246ee4d3686b49","13d8f6c3ecdc373a16a2463f8565da3513eb9a6860c26ca0df8913183f7f751f","cc1ca19c3b634cfc6aefba19f57ae516861a2ef6c7e42ff51a59647854f30517","7c0a43a5d3df987e2205f9a1d231cef5a23f7e3052039ef30560b97fa42d9f1b","9386a6658d9a070c17b70ffc9d0f8b21907842d0cefb0f987cb3fc3e7345953c","11bae6a44eac77effa4f21df758ef81728d69157ed8113db2249c571e644aa2a","97c379763c9561624ac91af5c360a4ce6fb481425fc53176e13bfeb038fc9c65","0b8c242a12773df4410a8b53dd8e25ad40dd98602863fd56b19d87cd0a216b6d","e2c60d3ae68b98306048984da84a67e68776a15d3f2aeeea385619d16df25280","8b3c82ae1b2880e0513cf2f4a802fff8a588038f805fdd6100680bf8cd0f46e7","619b72110d66936db6ab320a865ee4355487a5af628bebadb88b10204b19c557","04bc5b8810a2a1a60c403fc7d1a7bf47db7c425e86373ab430bbac323ec870d3","5bca389f86c736fc22a4f46e8f8c8172c01236a23455faa62fe891a469881848","35b74cf75907910af2d8f19d94fd4bf94ba10d6227cf430a5dd1686ec33f7333","a9d5024a1622ed7b7fd909207a409b4178907d38c0656af51ca206aac5bc5b69","e1f9bd6f2c920c6b82adfc416b2498ff769adfdfbba9a557ca7ee9746773ca36","d2a2c3875ec035049865de0418eb9954d8ee43f19aa40cdcf974408386f59df7","863760cb6eeeefa16f40606bc60ba6707b92015eb7c335e93c256caa107c6c78","4b7039945ed79f029b1ee5f004bb5975c29585cf1fee923573a6999957b545bf","8109887cfa286d659ca5cfc4ee68d83139bb35d01f04f42125ea1630ef92b5d0","f2883eed99d3585d9296bf1fc77a1034c2163f0daa0b6a00947575c43e62c2c9","c0eaf3b776869bed0f9a1348e6bd85aac0af10cadd279c584bbf99bf0b3a3db1","860c843375a4c2056451d5ae862adc057b029ada742fc0f507d9d6916edf753f","20a8026b83cde5246e9cf2243c59e121e8e41c9cfce2464ffc53be239d3b5444","e1fe4e4c6523e2965f02d901c693d49b4c623657cff8498dab79da9c04c9da0c",{"version":"314ef4ff17e3e3139c55b4375439b18913d81dfcee0873008869be304ade8235","signature":"01a9b3d7802e56568fc6746d508ac34bc2086244c172ae30253d5f5d8ff934d1"},{"version":"eb06740449ed2671907cb95f66fa83c5ef693ddd4e876cd877e8d04befc865cb","signature":"45c9a3b258e38411a2a7d2de8934b909fcc0c96332490260201252d7b0913720"},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","f463d61cf39c3a6a5f96cdf7adfdb72a0b1d663f7b5d5b6dd042adba835430c2","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","aad5ffa61406b8e19524738fcf0e6fda8b3485bba98626268fdf252d1b2b630a"],"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":[[86,127],[60,86,93,99,145],[86],[60,86,93,145],[57,60,86,93,94,95,145],[86,95,96,98,100],[42,86],[45,86],[46,51,86],[47,57,58,65,74,85,86],[47,48,57,65,86],[49,86],[50,51,58,66,86],[51,74,82,86],[52,54,57,65,86],[53,86],[54,55,86],[56,57,86],[57,86],[57,58,59,74,85,86],[57,58,59,74,77,86],[86,90],[60,65,74,85,86,145],[57,58,60,61,65,74,82,85,86],[60,62,74,82,85,86],[42,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],[57,63,86],[64,85,86],[54,57,65,74,86],[66,86],[67,86],[45,68,86],[69,84,86,90],[70,86],[71,86],[57,72,86],[72,73,86,88],[57,74,75,76,77,86],[74,76,86],[74,75,86],[77,86],[78,86],[57,80,81,86],[80,81,86],[51,65,74,82,86],[83,86],[65,84,86],[46,60,71,85,86],[51,86],[74,86,87],[86,88],[86,89],[46,51,57,59,68,74,85,86,88,90],[74,86,91],[60,86,105,145],[58,60,62,65,74,85,86,93,102,103,104,145],[60,86,93,97,145],[86,93,147,177],[86,93,146,147,153,162],[86,93],[86,147,151,158,159,160,162,163,164,165,166,177],[86,146,147,177],[86,147,148,149,150,151,156,157,158,159,164,167,168,169,170,171,174,175,176],[86,93,146,147,151,153,154,155,156,158,159,160,161,177],[86,147,167],[86,146,147,148,149,150,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,147,152],[86,147,162],[86,146],[86,147],[86,178],[86,147,157,177],[86,151],[86,147,162,177],[86,152],[86,147,149,151,157,158,159,162,167,177],[86,147,177],[86,152,172,173],[57,86,93],[86,146,147,151,157,160,162,177],[86,158,166,167,177],[60,74,86,93,145],[86,127,131],[86,93,127,131],[60,86,93,129,130,131,132,133,134,135,136,137,138,139,141,142,144],[86,93,127],[86,127,140],[86,93,105,106,127],[86,131],[86,127,143],[86,117],[86,109,115],[86,111],[86,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126],[60,85,86,93,101,102,105,106,107,109,110,111,112,113,114,145],[86,115],[86,108,115],[86,111,115],[86,127,145,181],[86,186,225],[86,186,210,225],[86,225],[86,186],[86,186,211,225],[86,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224],[86,211,225],[58,74,86,93,97],[127],[127,145],[228],[186,225,228],[186,210,225,228],[225,228],[186,228],[186,211,225,228],[186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,228],[211,225,228],[226,228,229,230,231]],"referencedMap":[[128,1],[100,2],[103,3],[99,4],[96,5],[101,6],[184,3],[97,3],[42,7],[43,7],[45,8],[46,9],[47,10],[48,11],[49,12],[50,13],[51,14],[52,15],[53,16],[54,17],[55,17],[56,18],[57,19],[58,20],[59,21],[44,22],[92,3],[60,23],[61,24],[62,25],[93,26],[63,27],[64,28],[65,29],[66,30],[67,31],[68,32],[69,33],[70,34],[71,35],[72,36],[73,37],[74,38],[76,39],[75,40],[77,41],[78,42],[79,3],[80,43],[81,44],[82,45],[83,46],[84,47],[85,48],[86,49],[87,50],[88,51],[89,52],[90,53],[91,54],[95,3],[94,3],[106,55],[105,56],[98,57],[104,3],[148,58],[149,3],[150,3],[154,59],[151,60],[167,61],[168,62],[177,63],[162,64],[163,65],[181,66],[153,67],[155,68],[164,69],[178,70],[179,71],[169,72],[146,3],[152,73],[156,74],[157,75],[160,76],[161,73],[172,3],[170,77],[171,3],[173,3],[174,78],[158,79],[175,80],[159,60],[176,77],[147,69],[180,81],[165,65],[166,3],[102,82],[134,1],[133,83],[135,84],[136,3],[137,3],[138,1],[139,83],[129,79],[145,85],[131,86],[140,1],[142,87],[141,87],[130,88],[132,89],[144,90],[122,3],[107,3],[118,91],[108,92],[114,93],[127,94],[115,95],[116,96],[111,96],[119,92],[120,96],[123,92],[121,96],[126,96],[117,96],[125,96],[109,97],[112,98],[124,92],[113,96],[110,96],[143,3],[9,3],[8,3],[2,3],[10,3],[11,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[3,3],[4,3],[21,3],[18,3],[19,3],[20,3],[22,3],[23,3],[24,3],[5,3],[25,3],[26,3],[27,3],[28,3],[6,3],[29,3],[30,3],[31,3],[32,3],[7,3],[33,3],[38,3],[39,3],[34,3],[35,3],[36,3],[37,3],[40,3],[1,3],[41,3],[182,99],[183,3],[185,3],[226,3],[210,100],[211,101],[186,102],[189,102],[208,100],[209,100],[199,100],[198,103],[196,100],[191,100],[204,100],[202,100],[206,100],[190,100],[203,100],[207,100],[192,100],[193,100],[205,100],[187,100],[194,100],[195,100],[197,100],[201,100],[212,104],[200,100],[188,100],[225,105],[224,3],[219,104],[221,106],[220,104],[213,104],[214,104],[216,104],[218,104],[222,106],[223,106],[215,106],[217,106],[227,107]],"exportedModulesMap":[[128,108],[100,2],[103,3],[99,4],[96,5],[101,6],[184,3],[97,3],[42,7],[43,7],[45,8],[46,9],[47,10],[48,11],[49,12],[50,13],[51,14],[52,15],[53,16],[54,17],[55,17],[56,18],[57,19],[58,20],[59,21],[44,22],[92,3],[60,23],[61,24],[62,25],[93,26],[63,27],[64,28],[65,29],[66,30],[67,31],[68,32],[69,33],[70,34],[71,35],[72,36],[73,37],[74,38],[76,39],[75,40],[77,41],[78,42],[79,3],[80,43],[81,44],[82,45],[83,46],[84,47],[85,48],[86,49],[87,50],[88,51],[89,52],[90,53],[91,54],[95,3],[94,3],[106,55],[105,56],[98,57],[104,3],[148,58],[149,3],[150,3],[154,59],[151,60],[167,61],[168,62],[177,63],[162,64],[163,65],[181,66],[153,67],[155,68],[164,69],[178,70],[179,71],[169,72],[146,3],[152,73],[156,74],[157,75],[160,76],[161,73],[172,3],[170,77],[171,3],[173,3],[174,78],[158,79],[175,80],[159,60],[176,77],[147,69],[180,81],[165,65],[166,3],[102,82],[134,1],[133,83],[135,84],[136,3],[137,3],[138,1],[139,83],[129,79],[145,85],[131,86],[140,1],[142,87],[141,87],[130,88],[132,89],[144,90],[122,3],[107,3],[118,91],[108,92],[114,93],[127,94],[115,95],[116,96],[111,96],[119,92],[120,96],[123,92],[121,96],[126,96],[117,96],[125,96],[109,97],[112,98],[124,92],[113,96],[110,96],[143,3],[9,3],[8,3],[2,3],[10,3],[11,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[3,3],[4,3],[21,3],[18,3],[19,3],[20,3],[22,3],[23,3],[24,3],[5,3],[25,3],[26,3],[27,3],[28,3],[6,3],[29,3],[30,3],[31,3],[32,3],[7,3],[33,3],[38,3],[39,3],[34,3],[35,3],[36,3],[37,3],[40,3],[1,3],[41,3],[182,109],[185,110],[226,110],[210,111],[211,112],[186,113],[189,113],[208,111],[209,111],[199,111],[198,114],[196,111],[191,111],[204,111],[202,111],[206,111],[190,111],[203,111],[207,111],[192,111],[193,111],[205,111],[187,111],[194,111],[195,111],[197,111],[201,111],[212,115],[200,111],[188,111],[225,116],[224,110],[219,115],[221,117],[220,115],[213,115],[214,115],[216,115],[218,115],[222,117],[223,117],[215,117],[217,117],[227,118]],"semanticDiagnosticsPerFile":[128,100,103,99,96,101,184,97,42,43,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,44,92,60,61,62,93,63,64,65,66,67,68,69,70,71,72,73,74,76,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,95,94,106,105,98,104,148,149,150,154,151,167,168,177,162,163,181,153,155,164,178,179,169,146,152,156,157,160,161,172,170,171,173,174,158,175,159,176,147,180,165,166,102,134,133,135,136,137,138,139,129,145,131,140,142,141,130,132,144,122,107,118,108,114,127,115,116,111,119,120,123,121,126,117,125,109,112,124,113,110,143,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,182,183,185,226,210,211,186,189,208,209,199,198,196,191,204,202,206,190,203,207,192,193,205,187,194,195,197,201,212,200,188,225,224,219,221,220,213,214,216,218,222,223,215,217,227]},"version":"4.8.4"}
package/index.js ADDED
File without changes
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "n8n-nodes-couchbase",
3
+ "version": "0.1.0",
4
+ "description": "N8N Node to add, get, update and delete data to couchbase",
5
+ "keywords": [
6
+ "n8n-community-node-package"
7
+ ],
8
+ "license": "MIT",
9
+ "homepage": "",
10
+ "author": {
11
+ "name": "marloaquino",
12
+ "email": "marloauino080621@gmail.com"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/maruakinu/n8n-nodes-couchbase.git"
17
+ },
18
+ "main": "index.js",
19
+ "scripts": {
20
+ "build": "tsc && gulp build:icons",
21
+ "dev": "tsc --watch",
22
+ "format": "prettier nodes credentials --write",
23
+ "lint": "eslint nodes credentials package.json",
24
+ "lintfix": "eslint nodes credentials package.json --fix",
25
+ "prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
26
+ },
27
+ "files": [
28
+ "dist"
29
+ ],
30
+ "n8n": {
31
+ "n8nNodesApiVersion": 1,
32
+ "credentials": [
33
+ "dist/credentials/CouchbaseCredentialsApi.credentials.js"
34
+ ],
35
+ "nodes": [
36
+ "dist/nodes/CouchbaseNode/CouchbaseDB.node.js"
37
+ ]
38
+ },
39
+ "devDependencies": {
40
+ "@types/express": "^4.17.6",
41
+ "@types/request-promise-native": "~1.0.15",
42
+ "@typescript-eslint/parser": "~5.45",
43
+ "eslint-plugin-n8n-nodes-base": "^1.11.0",
44
+ "gulp": "^4.0.2",
45
+ "n8n-core": "*",
46
+ "n8n-workflow": "*",
47
+ "prettier": "^2.7.1",
48
+ "typescript": "~4.8.4"
49
+ },
50
+ "dependencies": {
51
+ "couchbase": "^4.2.4",
52
+ "link": "^1.5.1"
53
+ }
54
+ }