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