@ez4/gateway 0.33.0 → 0.34.0

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.
@@ -27,6 +27,7 @@ export type ClientRequest = RequestOptions & {
27
27
  */
28
28
  export type ClientResponse = {
29
29
  status: number;
30
+ headers?: Record<string, string | undefined>;
30
31
  body?: unknown;
31
32
  };
32
33
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ez4/gateway",
3
3
  "description": "EZ4: Components to build gateway services",
4
- "version": "0.33.0",
4
+ "version": "0.34.0",
5
5
  "author": "Silas B.",
6
6
  "license": "MIT",
7
7
  "type": "module",
@@ -51,12 +51,12 @@
51
51
  "live:publish": "npm run build && npm publish --access public"
52
52
  },
53
53
  "dependencies": {
54
- "@ez4/common": "^0.33.0",
55
- "@ez4/project": "^0.33.0",
56
- "@ez4/reflection": "^0.33.0",
57
- "@ez4/schema": "^0.33.0",
58
- "@ez4/transform": "^0.33.0",
59
- "@ez4/utils": "^0.33.0",
60
- "@ez4/validator": "^0.33.0"
54
+ "@ez4/common": "^0.34.0",
55
+ "@ez4/project": "^0.34.0",
56
+ "@ez4/reflection": "^0.34.0",
57
+ "@ez4/schema": "^0.34.0",
58
+ "@ez4/transform": "^0.34.0",
59
+ "@ez4/utils": "^0.34.0",
60
+ "@ez4/validator": "^0.34.0"
61
61
  }
62
62
  }