@relayfx/sdk 0.2.10 → 0.2.11
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.
|
@@ -2093,10 +2093,12 @@ var layerFromRuntime = Layer.effect(Service, Effect.gen(function* () {
|
|
|
2093
2093
|
return coordinated.accepted;
|
|
2094
2094
|
}),
|
|
2095
2095
|
createChildFanOut: Effect.fn("Client.runtime.createChildFanOut")(function* (input) {
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2096
|
+
if (Option.isNone(childFanOutRuntime)) {
|
|
2097
|
+
return yield* new ClientError({
|
|
2098
|
+
message: "Child fan-out runtime unavailable; provide ChildFanOutRuntime.Service to Client.layerFromRuntime"
|
|
2099
|
+
});
|
|
2100
|
+
}
|
|
2101
|
+
return yield* childFanOutRuntime.value.create(input).pipe(Effect.mapError(toClientError));
|
|
2100
2102
|
}),
|
|
2101
2103
|
cancelChildFanOut: Effect.fn("Client.runtime.cancelChildFanOut")(function* (input) {
|
|
2102
2104
|
return yield* cancelFanOut(input);
|
package/dist/index.js
CHANGED
package/dist/sqlite.js
CHANGED
package/package.json
CHANGED