n8n-nodes-digitalsac 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/icons/digitalsac.svg +3 -0
- package/dist/icons/n8n-nodes-digitalsac/dist/nodes/digitalsac/digitalsac.svg +3 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/nodes/Digitalsac/digitalsac.svg +3 -0
- package/dist/nodes/digitalsac.svg +3 -0
- package/package.json +42 -14
- package/index.ts +0 -5
- package/nodes/Digitalsac/Digitalsac.credentials.ts +0 -25
- package/nodes/Digitalsac/Digitalsac.node.ts +0 -150
- /package/dist/{nodes/Digitalsac/Digitalsac.credentials.d.ts → credentials/DigitalsacApi.credentials.d.ts} +0 -0
- /package/dist/{nodes/Digitalsac/Digitalsac.credentials.js → credentials/DigitalsacApi.credentials.js} +0 -0
- /package/{nodes/Digitalsac → dist}/digitalsac.svg +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { Digitalsac } from './nodes/Digitalsac/Digitalsac.node';
|
|
2
|
-
import { DigitalsacApi } from './
|
|
2
|
+
import { DigitalsacApi } from './credentials/DigitalsacApi.credentials';
|
|
3
3
|
export declare const nodes: (typeof Digitalsac)[];
|
|
4
4
|
export declare const credentials: (typeof DigitalsacApi)[];
|
package/dist/index.js
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.credentials = exports.nodes = void 0;
|
|
4
4
|
const Digitalsac_node_1 = require("./nodes/Digitalsac/Digitalsac.node");
|
|
5
|
-
const
|
|
5
|
+
const DigitalsacApi_credentials_1 = require("./credentials/DigitalsacApi.credentials");
|
|
6
6
|
exports.nodes = [Digitalsac_node_1.Digitalsac];
|
|
7
|
-
exports.credentials = [
|
|
7
|
+
exports.credentials = [DigitalsacApi_credentials_1.DigitalsacApi];
|