@effect/platform-bun 4.0.0-beta.66 → 4.0.0-beta.67
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/dist/BunChildProcessSpawner.d.ts +1 -1
- package/dist/BunChildProcessSpawner.js +1 -1
- package/dist/BunClusterHttp.d.ts +41 -4
- package/dist/BunClusterHttp.d.ts.map +1 -1
- package/dist/BunClusterHttp.js +7 -3
- package/dist/BunClusterHttp.js.map +1 -1
- package/dist/BunClusterSocket.d.ts +44 -5
- package/dist/BunClusterSocket.d.ts.map +1 -1
- package/dist/BunClusterSocket.js +44 -5
- package/dist/BunClusterSocket.js.map +1 -1
- package/dist/BunFileSystem.d.ts +3 -1
- package/dist/BunFileSystem.d.ts.map +1 -1
- package/dist/BunFileSystem.js +26 -2
- package/dist/BunFileSystem.js.map +1 -1
- package/dist/BunHttpClient.d.ts +2 -2
- package/dist/BunHttpClient.js +2 -2
- package/dist/BunHttpPlatform.d.ts +3 -1
- package/dist/BunHttpPlatform.d.ts.map +1 -1
- package/dist/BunHttpPlatform.js +4 -2
- package/dist/BunHttpPlatform.js.map +1 -1
- package/dist/BunHttpServer.d.ts +53 -8
- package/dist/BunHttpServer.d.ts.map +1 -1
- package/dist/BunHttpServer.js +18 -6
- package/dist/BunHttpServer.js.map +1 -1
- package/dist/BunHttpServerRequest.d.ts +26 -2
- package/dist/BunHttpServerRequest.d.ts.map +1 -1
- package/dist/BunHttpServerRequest.js +3 -1
- package/dist/BunHttpServerRequest.js.map +1 -1
- package/dist/BunMultipart.d.ts +26 -3
- package/dist/BunMultipart.d.ts.map +1 -1
- package/dist/BunMultipart.js +6 -2
- package/dist/BunMultipart.js.map +1 -1
- package/dist/BunPath.d.ts +9 -3
- package/dist/BunPath.d.ts.map +1 -1
- package/dist/BunPath.js +27 -4
- package/dist/BunPath.js.map +1 -1
- package/dist/BunRedis.d.ts +34 -4
- package/dist/BunRedis.d.ts.map +1 -1
- package/dist/BunRedis.js +34 -4
- package/dist/BunRedis.js.map +1 -1
- package/dist/BunRuntime.d.ts +3 -3
- package/dist/BunRuntime.d.ts.map +1 -1
- package/dist/BunRuntime.js +18 -2
- package/dist/BunRuntime.js.map +1 -1
- package/dist/BunServices.d.ts +29 -3
- package/dist/BunServices.d.ts.map +1 -1
- package/dist/BunServices.js +4 -1
- package/dist/BunServices.js.map +1 -1
- package/dist/BunSink.d.ts +2 -2
- package/dist/BunSink.js +2 -2
- package/dist/BunSocket.d.ts +30 -4
- package/dist/BunSocket.d.ts.map +1 -1
- package/dist/BunSocket.js +10 -3
- package/dist/BunSocket.js.map +1 -1
- package/dist/BunSocketServer.d.ts +2 -2
- package/dist/BunSocketServer.js +2 -2
- package/dist/BunStdio.d.ts +4 -1
- package/dist/BunStdio.d.ts.map +1 -1
- package/dist/BunStdio.js +23 -2
- package/dist/BunStdio.js.map +1 -1
- package/dist/BunStream.d.ts +2 -2
- package/dist/BunStream.d.ts.map +1 -1
- package/dist/BunStream.js +24 -3
- package/dist/BunStream.js.map +1 -1
- package/dist/BunTerminal.d.ts +8 -2
- package/dist/BunTerminal.d.ts.map +1 -1
- package/dist/BunTerminal.js +23 -3
- package/dist/BunTerminal.js.map +1 -1
- package/dist/BunWorker.d.ts +9 -2
- package/dist/BunWorker.d.ts.map +1 -1
- package/dist/BunWorker.js +28 -3
- package/dist/BunWorker.js.map +1 -1
- package/dist/BunWorkerRunner.d.ts +5 -1
- package/dist/BunWorkerRunner.d.ts.map +1 -1
- package/dist/BunWorkerRunner.js +24 -2
- package/dist/BunWorkerRunner.js.map +1 -1
- package/dist/index.d.ts +22 -22
- package/dist/index.js +22 -22
- package/package.json +5 -5
- package/src/BunChildProcessSpawner.ts +1 -1
- package/src/BunClusterHttp.ts +41 -4
- package/src/BunClusterSocket.ts +44 -5
- package/src/BunFileSystem.ts +26 -2
- package/src/BunHttpClient.ts +2 -2
- package/src/BunHttpPlatform.ts +27 -3
- package/src/BunHttpServer.ts +53 -8
- package/src/BunHttpServerRequest.ts +26 -2
- package/src/BunMultipart.ts +26 -3
- package/src/BunPath.ts +27 -4
- package/src/BunRedis.ts +34 -4
- package/src/BunRuntime.ts +20 -4
- package/src/BunServices.ts +29 -3
- package/src/BunSink.ts +2 -2
- package/src/BunSocket.ts +30 -4
- package/src/BunSocketServer.ts +2 -2
- package/src/BunStdio.ts +23 -2
- package/src/BunStream.ts +24 -3
- package/src/BunTerminal.ts +23 -3
- package/src/BunWorker.ts +28 -3
- package/src/BunWorkerRunner.ts +24 -2
- package/src/index.ts +22 -22
package/src/index.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @since
|
|
2
|
+
* @since 4.0.0
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
5
|
// @barrel: Auto-generated exports. Do not edit manually.
|
|
@@ -7,106 +7,106 @@
|
|
|
7
7
|
/**
|
|
8
8
|
* Node.js implementation of `ChildProcessSpawner`.
|
|
9
9
|
*
|
|
10
|
-
* @since
|
|
10
|
+
* @since 4.0.0
|
|
11
11
|
*/
|
|
12
12
|
export * as BunChildProcessSpawner from "./BunChildProcessSpawner.ts"
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
|
-
* @since
|
|
15
|
+
* @since 4.0.0
|
|
16
16
|
*/
|
|
17
17
|
export * as BunClusterHttp from "./BunClusterHttp.ts"
|
|
18
18
|
|
|
19
19
|
/**
|
|
20
|
-
* @since
|
|
20
|
+
* @since 4.0.0
|
|
21
21
|
*/
|
|
22
22
|
export * as BunClusterSocket from "./BunClusterSocket.ts"
|
|
23
23
|
|
|
24
24
|
/**
|
|
25
|
-
* @since
|
|
25
|
+
* @since 4.0.0
|
|
26
26
|
*/
|
|
27
27
|
export * as BunFileSystem from "./BunFileSystem.ts"
|
|
28
28
|
|
|
29
29
|
/**
|
|
30
|
-
* @since
|
|
30
|
+
* @since 4.0.0
|
|
31
31
|
*/
|
|
32
32
|
export * as BunHttpClient from "./BunHttpClient.ts"
|
|
33
33
|
|
|
34
34
|
/**
|
|
35
|
-
* @since
|
|
35
|
+
* @since 4.0.0
|
|
36
36
|
*/
|
|
37
37
|
export * as BunHttpPlatform from "./BunHttpPlatform.ts"
|
|
38
38
|
|
|
39
39
|
/**
|
|
40
|
-
* @since
|
|
40
|
+
* @since 4.0.0
|
|
41
41
|
*/
|
|
42
42
|
export * as BunHttpServer from "./BunHttpServer.ts"
|
|
43
43
|
|
|
44
44
|
/**
|
|
45
|
-
* @since
|
|
45
|
+
* @since 4.0.0
|
|
46
46
|
*/
|
|
47
47
|
export * as BunHttpServerRequest from "./BunHttpServerRequest.ts"
|
|
48
48
|
|
|
49
49
|
/**
|
|
50
|
-
* @since
|
|
50
|
+
* @since 4.0.0
|
|
51
51
|
*/
|
|
52
52
|
export * as BunMultipart from "./BunMultipart.ts"
|
|
53
53
|
|
|
54
54
|
/**
|
|
55
|
-
* @since
|
|
55
|
+
* @since 4.0.0
|
|
56
56
|
*/
|
|
57
57
|
export * as BunPath from "./BunPath.ts"
|
|
58
58
|
|
|
59
59
|
/**
|
|
60
|
-
* @since
|
|
60
|
+
* @since 4.0.0
|
|
61
61
|
*/
|
|
62
62
|
export * as BunRedis from "./BunRedis.ts"
|
|
63
63
|
|
|
64
64
|
/**
|
|
65
|
-
* @since
|
|
65
|
+
* @since 4.0.0
|
|
66
66
|
*/
|
|
67
67
|
export * as BunRuntime from "./BunRuntime.ts"
|
|
68
68
|
|
|
69
69
|
/**
|
|
70
|
-
* @since
|
|
70
|
+
* @since 4.0.0
|
|
71
71
|
*/
|
|
72
72
|
export * as BunServices from "./BunServices.ts"
|
|
73
73
|
|
|
74
74
|
/**
|
|
75
|
-
* @since
|
|
75
|
+
* @since 4.0.0
|
|
76
76
|
*/
|
|
77
77
|
export * as BunSink from "./BunSink.ts"
|
|
78
78
|
|
|
79
79
|
/**
|
|
80
|
-
* @since
|
|
80
|
+
* @since 4.0.0
|
|
81
81
|
*/
|
|
82
82
|
export * as BunSocket from "./BunSocket.ts"
|
|
83
83
|
|
|
84
84
|
/**
|
|
85
|
-
* @since
|
|
85
|
+
* @since 4.0.0
|
|
86
86
|
*/
|
|
87
87
|
export * as BunSocketServer from "./BunSocketServer.ts"
|
|
88
88
|
|
|
89
89
|
/**
|
|
90
|
-
* @since
|
|
90
|
+
* @since 4.0.0
|
|
91
91
|
*/
|
|
92
92
|
export * as BunStdio from "./BunStdio.ts"
|
|
93
93
|
|
|
94
94
|
/**
|
|
95
|
-
* @since
|
|
95
|
+
* @since 4.0.0
|
|
96
96
|
*/
|
|
97
97
|
export * as BunStream from "./BunStream.ts"
|
|
98
98
|
|
|
99
99
|
/**
|
|
100
|
-
* @since
|
|
100
|
+
* @since 4.0.0
|
|
101
101
|
*/
|
|
102
102
|
export * as BunTerminal from "./BunTerminal.ts"
|
|
103
103
|
|
|
104
104
|
/**
|
|
105
|
-
* @since
|
|
105
|
+
* @since 4.0.0
|
|
106
106
|
*/
|
|
107
107
|
export * as BunWorker from "./BunWorker.ts"
|
|
108
108
|
|
|
109
109
|
/**
|
|
110
|
-
* @since
|
|
110
|
+
* @since 4.0.0
|
|
111
111
|
*/
|
|
112
112
|
export * as BunWorkerRunner from "./BunWorkerRunner.ts"
|