@gjsify/http 0.4.28 → 0.4.30

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.
@@ -1,3 +1,4 @@
1
+ import type { Socket } from 'node:net';
1
2
  import { EventEmitter } from 'node:events';
2
3
  import { Writable } from 'node:stream';
3
4
  import { type Response as BridgeResponse } from '@gjsify/http-soup-bridge';
@@ -10,7 +11,7 @@ export declare class OutgoingMessage extends Writable {
10
11
  headersSent: boolean;
11
12
  sendDate: boolean;
12
13
  finished: boolean;
13
- socket: import('net').Socket | null;
14
+ socket: Socket | null;
14
15
  protected _headers: Map<string, string | string[]>;
15
16
  /** Set a header. */
16
17
  setHeader(name: string, value: string | number | string[]): this;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gjsify/http",
3
- "version": "0.4.28",
3
+ "version": "0.4.30",
4
4
  "description": "Node.js http module for Gjs",
5
5
  "module": "lib/esm/index.js",
6
6
  "types": "lib/types/index.d.ts",
@@ -37,8 +37,8 @@
37
37
  "http"
38
38
  ],
39
39
  "devDependencies": {
40
- "@gjsify/cli": "^0.4.28",
41
- "@gjsify/unit": "^0.4.28",
40
+ "@gjsify/cli": "^0.4.30",
41
+ "@gjsify/unit": "^0.4.30",
42
42
  "@types/node": "^25.9.1",
43
43
  "typescript": "^6.0.3"
44
44
  },
@@ -46,12 +46,12 @@
46
46
  "@girs/gio-2.0": "2.88.0-4.0.1",
47
47
  "@girs/glib-2.0": "2.88.0-4.0.1",
48
48
  "@girs/soup-3.0": "3.6.6-4.0.1",
49
- "@gjsify/buffer": "^0.4.28",
50
- "@gjsify/events": "^0.4.28",
51
- "@gjsify/http-soup-bridge": "^0.4.28",
52
- "@gjsify/net": "^0.4.28",
53
- "@gjsify/stream": "^0.4.28",
54
- "@gjsify/url": "^0.4.28",
55
- "@gjsify/utils": "^0.4.28"
49
+ "@gjsify/buffer": "^0.4.30",
50
+ "@gjsify/events": "^0.4.30",
51
+ "@gjsify/http-soup-bridge": "^0.4.30",
52
+ "@gjsify/net": "^0.4.30",
53
+ "@gjsify/stream": "^0.4.30",
54
+ "@gjsify/url": "^0.4.30",
55
+ "@gjsify/utils": "^0.4.30"
56
56
  }
57
57
  }