n8n-nodes-digitalsac 0.1.1 → 0.1.3
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/index.d.ts +4 -0
- package/dist/index.js +7 -0
- package/package.json +6 -1
- package/tsconfig.json +0 -14
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.credentials = exports.nodes = void 0;
|
|
4
|
+
const Digitalsac_node_1 = require("./nodes/Digitalsac/Digitalsac.node");
|
|
5
|
+
const Digitalsac_credentials_1 = require("./nodes/Digitalsac/Digitalsac.credentials");
|
|
6
|
+
exports.nodes = [Digitalsac_node_1.Digitalsac];
|
|
7
|
+
exports.credentials = [Digitalsac_credentials_1.DigitalsacApi];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-digitalsac",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Izing Pro Digitalsac",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -11,6 +11,11 @@
|
|
|
11
11
|
"n8n",
|
|
12
12
|
"n8n-community-node-package"
|
|
13
13
|
],
|
|
14
|
+
"files": [
|
|
15
|
+
"dist",
|
|
16
|
+
"index.ts",
|
|
17
|
+
"nodes"
|
|
18
|
+
],
|
|
14
19
|
"author": "Digitalsac.io",
|
|
15
20
|
"license": "MIT",
|
|
16
21
|
"devDependencies": {
|
package/tsconfig.json
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"lib": ["es2019"],
|
|
4
|
-
"target": "es2019",
|
|
5
|
-
"module": "commonjs",
|
|
6
|
-
"declaration": true,
|
|
7
|
-
"outDir": "dist",
|
|
8
|
-
"rootDir": ".",
|
|
9
|
-
"strict": true,
|
|
10
|
-
"esModuleInterop": true,
|
|
11
|
-
"skipLibCheck": true
|
|
12
|
-
},
|
|
13
|
-
"include": ["nodes/**/*"]
|
|
14
|
-
}
|