@podium/client
Advanced tools
Comparing version 5.0.22 to 5.0.23
@@ -0,1 +1,8 @@ | ||
## [5.0.23](https://github.com/podium-lib/client/compare/v5.0.22...v5.0.23) (2024-05-15) | ||
### Bug Fixes | ||
* make response toJSON return type serializable ([026a723](https://github.com/podium-lib/client/commit/026a723b545c6b3b0c622851b7d164be2674e8a2)) | ||
## [5.0.22](https://github.com/podium-lib/client/compare/v5.0.21...v5.0.22) (2024-05-15) | ||
@@ -2,0 +9,0 @@ |
@@ -62,4 +62,4 @@ const inspect = Symbol.for('nodejs.util.inspect.custom'); | ||
headers: this.headers, | ||
css: this.css, | ||
js: this.js, | ||
css: this.css.map((a) => a.toJSON()), | ||
js: this.js.map((a) => a.toJSON()), | ||
}; | ||
@@ -66,0 +66,0 @@ } |
{ | ||
"name": "@podium/client", | ||
"version": "5.0.22", | ||
"version": "5.0.23", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -24,4 +24,4 @@ /** | ||
headers: any; | ||
css: import("@podium/utils").AssetCss[]; | ||
js: import("@podium/utils").AssetJs[]; | ||
css: import("@podium/utils/types/asset-css.js").CssAsset[]; | ||
js: import("@podium/utils/types/asset-js.js").JavaScriptAsset[]; | ||
}; | ||
@@ -28,0 +28,0 @@ toString(): string; |
160571