n8n-nodes-nedzo 1.0.0 → 1.0.2
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.
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
1
|
+
import type { IAuthenticateGeneric, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
2
2
|
export declare class NedzoApi implements ICredentialType {
|
|
3
3
|
name: string;
|
|
4
4
|
displayName: string;
|
|
5
5
|
documentationUrl: string;
|
|
6
6
|
properties: INodeProperties[];
|
|
7
|
+
authenticate: IAuthenticateGeneric;
|
|
8
|
+
test: ICredentialTestRequest;
|
|
7
9
|
}
|
|
8
10
|
//# sourceMappingURL=NedzoApi.credentials.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NedzoApi.credentials.d.ts","sourceRoot":"","sources":["../../credentials/NedzoApi.credentials.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"NedzoApi.credentials.d.ts","sourceRoot":"","sources":["../../credentials/NedzoApi.credentials.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACX,oBAAoB,EACpB,sBAAsB,EACtB,eAAe,EACf,eAAe,EACf,MAAM,cAAc,CAAC;AAEtB,qBAAa,QAAS,YAAW,eAAe;IAC/C,IAAI,SAAc;IAElB,WAAW,SAAe;IAE1B,gBAAgB,SAAW;IAE3B,UAAU,EAAE,eAAe,EAAE,CAQ3B;IAEF,YAAY,EAAE,oBAAoB,CAOhC;IAEF,IAAI,EAAE,sBAAsB,CAM1B;CACF"}
|
|
@@ -14,6 +14,21 @@ class NedzoApi {
|
|
|
14
14
|
default: '',
|
|
15
15
|
},
|
|
16
16
|
];
|
|
17
|
+
authenticate = {
|
|
18
|
+
type: 'generic',
|
|
19
|
+
properties: {
|
|
20
|
+
headers: {
|
|
21
|
+
Authorization: '={{$credentials.apiKey}}',
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
};
|
|
25
|
+
test = {
|
|
26
|
+
request: {
|
|
27
|
+
baseURL: 'https://api.nedzo.ai',
|
|
28
|
+
url: '/workspaces',
|
|
29
|
+
method: 'GET',
|
|
30
|
+
},
|
|
31
|
+
};
|
|
17
32
|
}
|
|
18
33
|
exports.NedzoApi = NedzoApi;
|
|
19
34
|
//# sourceMappingURL=NedzoApi.credentials.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NedzoApi.credentials.js","sourceRoot":"","sources":["../../credentials/NedzoApi.credentials.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"NedzoApi.credentials.js","sourceRoot":"","sources":["../../credentials/NedzoApi.credentials.ts"],"names":[],"mappings":";;;AAOA,MAAa,QAAQ;IACpB,IAAI,GAAG,UAAU,CAAC;IAElB,WAAW,GAAG,WAAW,CAAC;IAE1B,gBAAgB,GAAG,OAAO,CAAC;IAE3B,UAAU,GAAsB;QAC/B;YACC,WAAW,EAAE,SAAS;YACtB,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;YAC/B,OAAO,EAAE,EAAE;SACX;KACD,CAAC;IAEF,YAAY,GAAyB;QACpC,IAAI,EAAE,SAAS;QACf,UAAU,EAAE;YACX,OAAO,EAAE;gBACR,aAAa,EAAE,0BAA0B;aACzC;SACD;KACD,CAAC;IAEF,IAAI,GAA2B;QAC9B,OAAO,EAAE;YACR,OAAO,EAAE,sBAAsB;YAC/B,GAAG,EAAE,aAAa;YAClB,MAAM,EAAE,KAAK;SACb;KACD,CAAC;CACF;AAjCD,4BAiCC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-nedzo",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "n8n node for Nedzo AI voice agent automation platform",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package",
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"format": "prettier nodes credentials --write",
|
|
30
30
|
"lint": "echo 'Linting skipped for initial release'",
|
|
31
31
|
"lintfix": "echo 'Linting skipped for initial release'",
|
|
32
|
+
"test": "echo 'No tests defined yet' && exit 0",
|
|
32
33
|
"prepublishOnly": "npm run build"
|
|
33
34
|
},
|
|
34
35
|
"files": [
|