@justbrunasso/n8n-nodes-glpi 1.0.6 → 1.0.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/index.d.ts CHANGED
@@ -1,2 +1,5 @@
1
- export { Glpi } from './nodes/Glpi/Glpi.node';
2
- export { GlpiApi } from './nodes/Glpi/GlpiApi.credentials';
1
+ import { Glpi } from './nodes/Glpi/Glpi.node';
2
+ import { GlpiApi } from './nodes/Glpi/GlpiApi.credentials';
3
+ export { Glpi, GlpiApi };
4
+ export declare const nodes: (typeof Glpi)[];
5
+ export declare const credentials: (typeof GlpiApi)[];
package/dist/index.js CHANGED
@@ -1,8 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GlpiApi = exports.Glpi = void 0;
4
- var Glpi_node_1 = require("./nodes/Glpi/Glpi.node");
3
+ exports.credentials = exports.nodes = exports.GlpiApi = exports.Glpi = void 0;
4
+ const Glpi_node_1 = require("./nodes/Glpi/Glpi.node");
5
5
  Object.defineProperty(exports, "Glpi", { enumerable: true, get: function () { return Glpi_node_1.Glpi; } });
6
- var GlpiApi_credentials_1 = require("./nodes/Glpi/GlpiApi.credentials");
6
+ const GlpiApi_credentials_1 = require("./nodes/Glpi/GlpiApi.credentials");
7
7
  Object.defineProperty(exports, "GlpiApi", { enumerable: true, get: function () { return GlpiApi_credentials_1.GlpiApi; } });
8
+ // Exports explícitos que o n8n busca ao carregar pacotes externos
9
+ exports.nodes = [Glpi_node_1.Glpi];
10
+ exports.credentials = [GlpiApi_credentials_1.GlpiApi];
8
11
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;AAAA,oDAA8C;AAArC,iGAAA,IAAI,OAAA;AACb,wEAA2D;AAAlD,8GAAA,OAAO,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;AAAA,sDAA8C;AAGrC,qFAHA,gBAAI,OAGA;AAFb,0EAA2D;AAE5C,wFAFN,6BAAO,OAEM;AAEtB,kEAAkE;AACrD,QAAA,KAAK,GAAG,CAAC,gBAAI,CAAC,CAAC;AACf,QAAA,WAAW,GAAG,CAAC,6BAAO,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@justbrunasso/n8n-nodes-glpi",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "description": "GLPI REST API node for n8n (GLPI 10.x) with Criteria Builder and automatic session handling (no cache).",
5
5
  "keywords": [
6
6
  "n8n",
@@ -12,13 +12,13 @@
12
12
  "automation",
13
13
  "workflow"
14
14
  ],
15
+ "main": "dist/index.js",
16
+ "types": "dist/index.d.ts",
15
17
  "files": [
16
18
  "dist",
17
19
  "README.md",
18
20
  "LICENSE"
19
21
  ],
20
- "main": "dist/index.js",
21
- "types": "dist/index.d.ts",
22
22
  "scripts": {
23
23
  "build": "tsc",
24
24
  "prepare": "npm run build"