n8n-nodes-digit 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.
- package/dist/credentials/index.d.ts +1 -2
- package/dist/credentials/index.js +15 -3
- package/package.json +12 -45
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export { DIGITApi };
|
|
1
|
+
export * from './DIGITApi.credentials';
|
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
2
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
|
|
4
|
-
const DIGITApi_credentials_1 = require("./DIGITApi.credentials");
|
|
5
|
-
Object.defineProperty(exports, "DIGITApi", { enumerable: true, get: function () { return DIGITApi_credentials_1.DIGITApi; } });
|
|
17
|
+
__exportStar(require("./DIGITApi.credentials"), exports);
|
package/package.json
CHANGED
|
@@ -1,58 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-digit",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "DIGIT
|
|
5
|
-
"keywords": [
|
|
6
|
-
"n8n-community-node-package"
|
|
7
|
-
],
|
|
8
|
-
"license": "MIT",
|
|
9
|
-
"homepage": "https://github.com/srujana-egov/n8n-nodes-digit",
|
|
10
|
-
"author": {
|
|
11
|
-
"name": "Srujana Dadi (eGov)"
|
|
12
|
-
},
|
|
13
|
-
"repository": {
|
|
14
|
-
"type": "git",
|
|
15
|
-
"url": "https://github.com/srujana-egov/n8n-nodes-digit.git"
|
|
16
|
-
},
|
|
3
|
+
"version": "0.1.8",
|
|
4
|
+
"description": "DIGIT Platform nodes for n8n",
|
|
17
5
|
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
18
7
|
"files": [
|
|
19
|
-
"dist
|
|
20
|
-
"dist/index.d.ts",
|
|
21
|
-
"dist/nodes",
|
|
22
|
-
"dist/credentials",
|
|
23
|
-
"README.md",
|
|
24
|
-
"LICENSE.md"
|
|
8
|
+
"dist"
|
|
25
9
|
],
|
|
26
|
-
"scripts": {
|
|
27
|
-
"build": "tsc && gulp build:icons",
|
|
28
|
-
"dev": "tsc --watch",
|
|
29
|
-
"format": "prettier nodes credentials --write",
|
|
30
|
-
"lint": "eslint nodes credentials package.json",
|
|
31
|
-
"lintfix": "eslint nodes credentials package.json --fix",
|
|
32
|
-
"prepublishOnly": "npm run build"
|
|
33
|
-
},
|
|
34
10
|
"n8n": {
|
|
35
|
-
"n8nNodesApiVersion": 1,
|
|
36
|
-
"credentials": [
|
|
37
|
-
"dist/credentials/DigitApi.credentials.js"
|
|
38
|
-
],
|
|
39
11
|
"nodes": [
|
|
40
|
-
"dist/nodes
|
|
12
|
+
"dist/nodes"
|
|
13
|
+
],
|
|
14
|
+
"credentials": [
|
|
15
|
+
"dist/credentials"
|
|
41
16
|
]
|
|
42
17
|
},
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
},
|
|
46
|
-
"peerDependencies": {
|
|
47
|
-
"n8n-workflow": "*"
|
|
48
|
-
},
|
|
49
|
-
"dependencies": {
|
|
50
|
-
"gulp": "^5.0.1"
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "tsc && gulp build:icons"
|
|
51
20
|
},
|
|
21
|
+
"license": "MIT",
|
|
52
22
|
"devDependencies": {
|
|
53
|
-
"
|
|
54
|
-
"@typescript-eslint/eslint-plugin": "^8.46.1",
|
|
55
|
-
"@typescript-eslint/parser": "^8.46.1",
|
|
56
|
-
"eslint": "^8.57.0"
|
|
23
|
+
"typescript": "^5.9.3"
|
|
57
24
|
}
|
|
58
25
|
}
|