@hostwebhook/node-sdk 0.1.0 → 0.1.1

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
@@ -22,6 +22,7 @@
22
22
  * la api por `import type`. La dirección se invierte: los define el SDK y la
23
23
  * api los cumple.
24
24
  */
25
+ export * from "./dto/output-node.dto";
25
26
  export * from "./code-runner";
26
27
  export * from "./contratos";
27
28
  export * from "./ensure-meta";
package/dist/index.js CHANGED
@@ -39,6 +39,7 @@ exports.retryOnTransientError = void 0;
39
39
  * la api por `import type`. La dirección se invierte: los define el SDK y la
40
40
  * api los cumple.
41
41
  */
42
+ __exportStar(require("./dto/output-node.dto"), exports);
42
43
  __exportStar(require("./code-runner"), exports);
43
44
  __exportStar(require("./contratos"), exports);
44
45
  __exportStar(require("./ensure-meta"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hostwebhook/node-sdk",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "El SDK de un nodo de HostWebhook: ciclo de vida, ejecución con iteración, reintentos, filtros y validación de esquema — lo que comparten la api y el futuro servicio de nodos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -9,7 +9,8 @@
9
9
  ],
10
10
  "scripts": {
11
11
  "build": "npm --prefix ../node-types run build && npm --prefix ../template-engine run build && tsc",
12
- "prepublishOnly": "npm run build"
12
+ "prepublishOnly": "npm run build",
13
+ "test": "vitest run"
13
14
  },
14
15
  "keywords": [
15
16
  "hostwebhook",
@@ -30,6 +31,7 @@
30
31
  "class-validator": ">=0.14.0"
31
32
  },
32
33
  "devDependencies": {
33
- "typescript": "^5.0.0"
34
+ "typescript": "^5.0.0",
35
+ "vitest": "^3.0.0"
34
36
  }
35
37
  }