n8n-nodes-digit 0.1.3 → 0.1.5
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.js +6 -0
- package/dist/index.js +1 -0
- package/dist/package.json +57 -0
- package/package.json +7 -7
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DIGITApi = void 0;
|
|
4
|
+
const DIGITApi_credentials_1 = require("./DIGITApi.credentials");
|
|
5
|
+
Object.defineProperty(exports, "DIGITApi", { enumerable: true, get: function () { return DIGITApi_credentials_1.DIGITApi; } });
|
|
6
|
+
//# sourceMappingURL=index.js.map
|
package/dist/index.js
CHANGED
|
@@ -15,4 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./nodes"), exports);
|
|
18
|
+
__exportStar(require("./credentials"), exports);
|
|
18
19
|
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-digit",
|
|
3
|
+
"version": "0.1.5",
|
|
4
|
+
"description": "DIGIT platform integration for workflow, boundary, filestore, registry, idgen and notification APIs",
|
|
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
|
+
},
|
|
17
|
+
"main": "dist/index.js",
|
|
18
|
+
"files": [
|
|
19
|
+
"dist/**/*.js",
|
|
20
|
+
"dist/**/*.json",
|
|
21
|
+
"dist/**/*.png",
|
|
22
|
+
"LICENSE.md",
|
|
23
|
+
"README.md"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "tsc && gulp build:icons",
|
|
27
|
+
"dev": "tsc --watch",
|
|
28
|
+
"format": "prettier nodes credentials --write",
|
|
29
|
+
"lint": "eslint nodes credentials package.json",
|
|
30
|
+
"lintfix": "eslint nodes credentials package.json --fix",
|
|
31
|
+
"prepublishOnly": "npm run build"
|
|
32
|
+
},
|
|
33
|
+
"n8n": {
|
|
34
|
+
"n8nNodesApiVersion": 1,
|
|
35
|
+
"credentials": [
|
|
36
|
+
"dist/credentials/DigitApi.credentials.js"
|
|
37
|
+
],
|
|
38
|
+
"nodes": [
|
|
39
|
+
"dist/nodes/DIGIT.node.js"
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
"engines": {
|
|
43
|
+
"node": ">=18"
|
|
44
|
+
},
|
|
45
|
+
"peerDependencies": {
|
|
46
|
+
"n8n-workflow": "*"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"gulp": "^5.0.1"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@types/node": "^25.0.10",
|
|
53
|
+
"@typescript-eslint/eslint-plugin": "^8.46.1",
|
|
54
|
+
"@typescript-eslint/parser": "^8.46.1",
|
|
55
|
+
"eslint": "^8.57.0"
|
|
56
|
+
}
|
|
57
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-digit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "DIGIT platform integration for workflow, boundary, filestore, registry, idgen and notification APIs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package"
|
|
@@ -16,12 +16,12 @@
|
|
|
16
16
|
},
|
|
17
17
|
"main": "dist/index.js",
|
|
18
18
|
"files": [
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
],
|
|
19
|
+
"dist/**/*.js",
|
|
20
|
+
"dist/**/*.json",
|
|
21
|
+
"dist/**/*.png",
|
|
22
|
+
"LICENSE.md",
|
|
23
|
+
"README.md"
|
|
24
|
+
],
|
|
25
25
|
"scripts": {
|
|
26
26
|
"build": "tsc && gulp build:icons",
|
|
27
27
|
"dev": "tsc --watch",
|