@botpress/runtime 1.2.1 → 1.2.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.
@@ -11,24 +11,24 @@ export declare function uninstallStructuredLogging(): void;
11
11
  */
12
12
  export declare const originalConsoleLogger: {
13
13
  log: {
14
- (...data: any[]): void;
15
14
  (message?: any, ...optionalParams: any[]): void;
15
+ (...data: any[]): void;
16
16
  };
17
17
  error: {
18
- (...data: any[]): void;
19
18
  (message?: any, ...optionalParams: any[]): void;
19
+ (...data: any[]): void;
20
20
  };
21
21
  warn: {
22
- (...data: any[]): void;
23
22
  (message?: any, ...optionalParams: any[]): void;
23
+ (...data: any[]): void;
24
24
  };
25
25
  info: {
26
- (...data: any[]): void;
27
26
  (message?: any, ...optionalParams: any[]): void;
27
+ (...data: any[]): void;
28
28
  };
29
29
  debug: {
30
- (...data: any[]): void;
31
30
  (message?: any, ...optionalParams: any[]): void;
31
+ (...data: any[]): void;
32
32
  };
33
33
  };
34
34
  //# sourceMappingURL=structured-logging.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botpress/runtime",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "Lightweight runtime library for ADK-based Botpress agents",
5
5
  "type": "module",
6
6
  "files": [
@@ -95,14 +95,16 @@
95
95
  "@types/glob": "^8.1.0",
96
96
  "@types/lodash": "^4.17.20",
97
97
  "@types/ms": "^2.1.0",
98
- "@types/node": "^22.0.0",
99
- "typescript": "^5.9.2",
98
+ "@types/node": "^22.18.7",
99
+ "typescript": "^5.9.3",
100
100
  "vitest": "^2.1.8"
101
101
  },
102
102
  "peerDependencies": {
103
103
  "typescript": ">=4.5.0"
104
104
  },
105
105
  "engines": {
106
- "node": ">=22.0.0"
107
- }
106
+ "node": ">=22.0.0",
107
+ "bun": ">=1.3.0"
108
+ },
109
+ "packageManager": "bun@1.3.0"
108
110
  }