@connectorx/n8n-nodes-cortex 0.1.6 → 0.1.8
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.
|
@@ -36,7 +36,7 @@ class CortexApi {
|
|
|
36
36
|
this.test = {
|
|
37
37
|
request: {
|
|
38
38
|
baseURL: '={{$credentials.apiBaseUrl.replace(/\\/$/, "")}}',
|
|
39
|
-
url: '/auth/me',
|
|
39
|
+
url: '/functions/v1/api/auth/me',
|
|
40
40
|
method: 'GET',
|
|
41
41
|
headers: {
|
|
42
42
|
Authorization: '={{ "Bearer " + $credentials.accessToken }}',
|
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@connectorx/n8n-nodes-cortex",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "n8n nodes for Cortex API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package"
|
|
7
7
|
],
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"author": {
|
|
10
|
-
"name": "Adriano",
|
|
11
|
-
"email": "adriano@
|
|
10
|
+
"name": "Adriano Azevedo",
|
|
11
|
+
"email": "adriano@connectorx.com.br"
|
|
12
12
|
},
|
|
13
13
|
"main": "index.js",
|
|
14
14
|
"scripts": {
|
|
15
15
|
"build": "node node_modules/typescript/lib/tsc.js && npm run copy-files",
|
|
16
|
-
"copy-files": "copyfiles -u 1 \"nodes/**/*.svg\" \"nodes/**/*.png\" dist/nodes && copyfiles -u 1 \"credentials/**/*.svg\" \"credentials/**/*.png\" dist/credentials",
|
|
16
|
+
"copy-files": "node node_modules/copyfiles/index.js -u 1 \"nodes/**/*.svg\" \"nodes/**/*.png\" dist/nodes && node node_modules/copyfiles/index.js -u 1 \"credentials/**/*.svg\" \"credentials/**/*.png\" dist/credentials",
|
|
17
17
|
"dev": "tsc --watch",
|
|
18
18
|
"lint": "eslint nodes credentials --ext .ts",
|
|
19
19
|
"prepublishOnly": "npm run build"
|
|
@@ -44,4 +44,4 @@
|
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"n8n-workflow": "*"
|
|
46
46
|
}
|
|
47
|
-
}
|
|
47
|
+
}
|