@botpress/sdk 2.0.1 → 2.0.2

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/serve.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  import { Server } from 'node:http';
3
2
  export type Request = {
4
3
  body?: string;
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  export type ValueOf<T> = T[keyof T];
3
2
  export type Merge<A extends object, B extends object> = Omit<A, keyof B> & B;
4
3
  export type Cast<T, U> = T extends U ? T : U;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botpress/sdk",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Botpress SDK",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -14,14 +14,11 @@
14
14
  "author": "",
15
15
  "license": "MIT",
16
16
  "dependencies": {
17
- "@botpress/client": "0.36.2",
17
+ "@botpress/client": "0.37.0",
18
18
  "@bpinternal/zui": "0.12.0"
19
19
  },
20
20
  "devDependencies": {
21
- "@types/node": "^18.11.17",
22
- "esbuild": "^0.16.10",
23
- "ts-node": "^10.9.1",
24
- "tsup": "^8.0.2",
25
- "typescript": "^4.9.4"
21
+ "esbuild": "^0.16.12",
22
+ "tsup": "^8.0.2"
26
23
  }
27
24
  }