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