@effect/platform-node-shared 4.0.0-beta.72 → 4.0.0-beta.74

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.
@@ -44,7 +44,7 @@ export interface FlattenedPipeline {
44
44
  * Flattens a `Command` into an array of `StandardCommand`s along with pipe
45
45
  * options for each connection.
46
46
  *
47
- * @category utils
47
+ * @category transforming
48
48
  * @since 4.0.0
49
49
  */
50
50
  export declare const flattenCommand: (command: ChildProcess.Command) => FlattenedPipeline;
@@ -500,7 +500,7 @@ export const layer = /*#__PURE__*/Layer.effect(ChildProcessSpawner, make);
500
500
  * Flattens a `Command` into an array of `StandardCommand`s along with pipe
501
501
  * options for each connection.
502
502
  *
503
- * @category utils
503
+ * @category transforming
504
504
  * @since 4.0.0
505
505
  */
506
506
  export const flattenCommand = command => {
@@ -45,7 +45,7 @@ declare const NetSocket_base: Context.ServiceClass<NetSocket, "@effect/platform-
45
45
  * Service tag for the underlying Node `net.Socket` associated with the current
46
46
  * socket connection.
47
47
  *
48
- * @category tags
48
+ * @category services
49
49
  * @since 4.0.0
50
50
  */
51
51
  export declare class NetSocket extends NetSocket_base {
@@ -19,7 +19,7 @@ export * as NodeWS from "ws";
19
19
  * Service tag for the underlying Node `net.Socket` associated with the current
20
20
  * socket connection.
21
21
  *
22
- * @category tags
22
+ * @category services
23
23
  * @since 4.0.0
24
24
  */
25
25
  export class NetSocket extends /*#__PURE__*/Context.Service()("@effect/platform-node/NodeSocket/NetSocket") {}
@@ -13,7 +13,7 @@ declare const IncomingMessage_base: Context.ServiceClass<IncomingMessage, "@effe
13
13
  * Service tag for the Node `IncomingMessage` associated with the current
14
14
  * WebSocket server connection.
15
15
  *
16
- * @category tags
16
+ * @category services
17
17
  * @since 4.0.0
18
18
  */
19
19
  export declare class IncomingMessage extends IncomingMessage_base {
@@ -17,7 +17,7 @@ import { NodeWS } from "./NodeSocket.js";
17
17
  * Service tag for the Node `IncomingMessage` associated with the current
18
18
  * WebSocket server connection.
19
19
  *
20
- * @category tags
20
+ * @category services
21
21
  * @since 4.0.0
22
22
  */
23
23
  export class IncomingMessage extends /*#__PURE__*/Context.Service()("@effect/platform-node-shared/NodeSocketServer/IncomingMessage") {}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@effect/platform-node-shared",
3
3
  "type": "module",
4
- "version": "4.0.0-beta.72",
4
+ "version": "4.0.0-beta.74",
5
5
  "license": "MIT",
6
6
  "description": "Unified interfaces for common platform-specific services",
7
7
  "homepage": "https://effect.website",
@@ -46,12 +46,12 @@
46
46
  "provenance": true
47
47
  },
48
48
  "peerDependencies": {
49
- "effect": "^4.0.0-beta.72"
49
+ "effect": "^4.0.0-beta.74"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@types/node": "^25.7.0",
53
53
  "tar": "^7.5.15",
54
- "effect": "^4.0.0-beta.72"
54
+ "effect": "^4.0.0-beta.74"
55
55
  },
56
56
  "dependencies": {
57
57
  "@types/ws": "^8.18.1",
@@ -669,7 +669,7 @@ export interface FlattenedPipeline {
669
669
  * Flattens a `Command` into an array of `StandardCommand`s along with pipe
670
670
  * options for each connection.
671
671
  *
672
- * @category utils
672
+ * @category transforming
673
673
  * @since 4.0.0
674
674
  */
675
675
  export const flattenCommand = (
package/src/NodeSocket.ts CHANGED
@@ -51,7 +51,7 @@ export * as NodeWS from "ws"
51
51
  * Service tag for the underlying Node `net.Socket` associated with the current
52
52
  * socket connection.
53
53
  *
54
- * @category tags
54
+ * @category services
55
55
  * @since 4.0.0
56
56
  */
57
57
  export class NetSocket extends Context.Service<NetSocket, Net.Socket>()(
@@ -58,7 +58,7 @@ import { NodeWS } from "./NodeSocket.ts"
58
58
  * Service tag for the Node `IncomingMessage` associated with the current
59
59
  * WebSocket server connection.
60
60
  *
61
- * @category tags
61
+ * @category services
62
62
  * @since 4.0.0
63
63
  */
64
64
  export class IncomingMessage extends Context.Service<