@podium/podlet 5.1.3 → 5.1.4

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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [5.1.4](https://github.com/podium-lib/podlet/compare/v5.1.3...v5.1.4) (2024-05-13)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update all dependencies (non-major) ([8c9d9a0](https://github.com/podium-lib/podlet/commit/8c9d9a0c709f54edeef094914a7b51109bd7a4c7))
7
+
1
8
  ## [5.1.3](https://github.com/podium-lib/podlet/compare/v5.1.2...v5.1.3) (2024-05-06)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@podium/podlet",
3
- "version": "5.1.3",
3
+ "version": "5.1.4",
4
4
  "type": "module",
5
5
  "description": "Module for building page fragment servers in a micro frontend architecture.",
6
6
  "license": "MIT",
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@metrics/client": "2.5.2",
34
- "@podium/proxy": "5.0.12",
34
+ "@podium/proxy": "5.0.14",
35
35
  "@podium/schemas": "5.0.1",
36
- "@podium/utils": "5.0.4",
36
+ "@podium/utils": "5.0.6",
37
37
  "abslog": "2.4.4",
38
38
  "ajv": "8.13.0",
39
39
  "objobj": "1.0.0"
package/types/podlet.d.ts CHANGED
@@ -650,7 +650,10 @@ export type AssetJsLike = {
650
650
  [key: string]: any;
651
651
  };
652
652
  import Proxy from '@podium/proxy';
653
+ import { AssetCss } from '@podium/utils';
654
+ import { AssetJs } from '@podium/utils';
653
655
  import Metrics from '@metrics/client';
656
+ import { HttpIncoming } from '@podium/utils';
654
657
  declare global {
655
658
  namespace Express {
656
659
  interface Response {