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