@decaf-ts/for-http 0.3.47 → 0.3.48

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.
@@ -21,5 +21,5 @@ export * from "./event";
21
21
  * @summary Version identifier for the module
22
22
  * @const VERSION
23
23
  */
24
- export declare const VERSION = "0.3.46";
24
+ export declare const VERSION = "0.3.47";
25
25
  export declare const PACKAGE_NAME = "@decaf-ts/for-http";
package/lib/esm/index.js CHANGED
@@ -22,7 +22,7 @@ export * from "./event/index.js";
22
22
  * @summary Version identifier for the module
23
23
  * @const VERSION
24
24
  */
25
- export const VERSION = "0.3.46";
25
+ export const VERSION = "0.3.47";
26
26
  export const PACKAGE_NAME = "@decaf-ts/for-http";
27
27
  Metadata.registerLibrary(PACKAGE_NAME, VERSION);
28
28
  //# sourceMappingURL=index.js.map
@@ -13,7 +13,7 @@ export type HttpConfig = {
13
13
  host: string;
14
14
  parsers?: ResponseParser[];
15
15
  eventsListenerPath?: string;
16
- headers: boolean;
16
+ headers?: boolean;
17
17
  };
18
18
  /**
19
19
  * @description HTTP flags interface
package/lib/index.cjs CHANGED
@@ -39,7 +39,7 @@ __exportStar(require("./event/index.cjs"), exports);
39
39
  * @summary Version identifier for the module
40
40
  * @const VERSION
41
41
  */
42
- exports.VERSION = "0.3.46";
42
+ exports.VERSION = "0.3.47";
43
43
  exports.PACKAGE_NAME = "@decaf-ts/for-http";
44
44
  decoration_1.Metadata.registerLibrary(exports.PACKAGE_NAME, exports.VERSION);
45
45
  //# sourceMappingURL=index.js.map
package/lib/index.d.ts CHANGED
@@ -21,5 +21,5 @@ export * from "./event";
21
21
  * @summary Version identifier for the module
22
22
  * @const VERSION
23
23
  */
24
- export declare const VERSION = "0.3.46";
24
+ export declare const VERSION = "0.3.47";
25
25
  export declare const PACKAGE_NAME = "@decaf-ts/for-http";
package/lib/types.d.ts CHANGED
@@ -13,7 +13,7 @@ export type HttpConfig = {
13
13
  host: string;
14
14
  parsers?: ResponseParser[];
15
15
  eventsListenerPath?: string;
16
- headers: boolean;
16
+ headers?: boolean;
17
17
  };
18
18
  /**
19
19
  * @description HTTP flags interface
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decaf-ts/for-http",
3
- "version": "0.3.47",
3
+ "version": "0.3.48",
4
4
  "description": "http wrappers for decaf-ts",
5
5
  "type": "module",
6
6
  "exports": {