@justbrunasso/n8n-nodes-glpi 1.0.3 → 1.0.6
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 +2 -2
- package/dist/index.js +5 -16
- package/dist/index.js.map +1 -1
- package/package.json +1 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
1
|
+
export { Glpi } from './nodes/Glpi/Glpi.node';
|
|
2
|
+
export { GlpiApi } from './nodes/Glpi/GlpiApi.credentials';
|
package/dist/index.js
CHANGED
|
@@ -1,19 +1,8 @@
|
|
|
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
|
-
};
|
|
16
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
|
|
18
|
-
|
|
3
|
+
exports.GlpiApi = exports.Glpi = void 0;
|
|
4
|
+
var Glpi_node_1 = require("./nodes/Glpi/Glpi.node");
|
|
5
|
+
Object.defineProperty(exports, "Glpi", { enumerable: true, get: function () { return Glpi_node_1.Glpi; } });
|
|
6
|
+
var GlpiApi_credentials_1 = require("./nodes/Glpi/GlpiApi.credentials");
|
|
7
|
+
Object.defineProperty(exports, "GlpiApi", { enumerable: true, get: function () { return GlpiApi_credentials_1.GlpiApi; } });
|
|
19
8
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;AAAA,oDAA8C;AAArC,iGAAA,IAAI,OAAA;AACb,wEAA2D;AAAlD,8GAAA,OAAO,OAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justbrunasso/n8n-nodes-glpi",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
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",
|
|
@@ -26,7 +26,6 @@
|
|
|
26
26
|
"author": "Bruno Eduardo Santos",
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"repository": {
|
|
29
|
-
"type": "git",
|
|
30
29
|
"url": "git+https://github.com/justbrunasso/n8n-nodes-glpi.git"
|
|
31
30
|
},
|
|
32
31
|
"bugs": {
|