@effect/cluster 0.38.0 → 0.38.2

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.
@@ -148,7 +148,6 @@ export const config: Config.Config<ShardingConfig["Type"]> = Config.all({
148
148
  }).pipe(Config.map((options) => RunnerAddress.make(options)), Config.option),
149
149
  runnerListenAddress: Config.all({
150
150
  host: Config.string("listenHost").pipe(
151
- Config.withDefault(defaultRunnerAddress.host),
152
151
  Config.withDescription("The host to listen on.")
153
152
  ),
154
153
  port: Config.integer("listenPort").pipe(
package/src/index.ts CHANGED
@@ -43,6 +43,16 @@ export * as EntityAddress from "./EntityAddress.js"
43
43
  */
44
44
  export * as EntityId from "./EntityId.js"
45
45
 
46
+ /**
47
+ * @since 1.0.0
48
+ */
49
+ export * as EntityProxy from "./EntityProxy.js"
50
+
51
+ /**
52
+ * @since 1.0.0
53
+ */
54
+ export * as EntityProxyServer from "./EntityProxyServer.js"
55
+
46
56
  /**
47
57
  * @since 1.0.0
48
58
  */