@effect-app/vue 4.0.0-beta.19 → 4.0.0-beta.190

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 (103) hide show
  1. package/CHANGELOG.md +1383 -0
  2. package/dist/commander.d.ts +620 -0
  3. package/dist/commander.d.ts.map +1 -0
  4. package/dist/commander.js +1056 -0
  5. package/dist/confirm.d.ts +19 -0
  6. package/dist/confirm.d.ts.map +1 -0
  7. package/dist/confirm.js +24 -0
  8. package/dist/errorReporter.d.ts +4 -4
  9. package/dist/errorReporter.d.ts.map +1 -1
  10. package/dist/errorReporter.js +12 -18
  11. package/dist/form.d.ts +13 -4
  12. package/dist/form.d.ts.map +1 -1
  13. package/dist/form.js +41 -12
  14. package/dist/index.d.ts +1 -1
  15. package/dist/intl.d.ts +15 -0
  16. package/dist/intl.d.ts.map +1 -0
  17. package/dist/intl.js +9 -0
  18. package/dist/lib.d.ts +6 -8
  19. package/dist/lib.d.ts.map +1 -1
  20. package/dist/lib.js +34 -7
  21. package/dist/makeClient.d.ts +191 -292
  22. package/dist/makeClient.d.ts.map +1 -1
  23. package/dist/makeClient.js +217 -369
  24. package/dist/makeContext.d.ts +1 -1
  25. package/dist/makeContext.d.ts.map +1 -1
  26. package/dist/makeIntl.d.ts +1 -1
  27. package/dist/makeIntl.d.ts.map +1 -1
  28. package/dist/makeUseCommand.d.ts +8 -0
  29. package/dist/makeUseCommand.d.ts.map +1 -0
  30. package/dist/makeUseCommand.js +13 -0
  31. package/dist/mutate.d.ts +56 -25
  32. package/dist/mutate.d.ts.map +1 -1
  33. package/dist/mutate.js +132 -33
  34. package/dist/query.d.ts +24 -16
  35. package/dist/query.d.ts.map +1 -1
  36. package/dist/query.js +119 -37
  37. package/dist/routeParams.d.ts +1 -1
  38. package/dist/runtime.d.ts +5 -2
  39. package/dist/runtime.d.ts.map +1 -1
  40. package/dist/runtime.js +27 -17
  41. package/dist/toast.d.ts +46 -0
  42. package/dist/toast.d.ts.map +1 -0
  43. package/dist/toast.js +32 -0
  44. package/dist/withToast.d.ts +26 -0
  45. package/dist/withToast.d.ts.map +1 -0
  46. package/dist/withToast.js +54 -0
  47. package/eslint.config.mjs +2 -2
  48. package/examples/streamMutation.ts +70 -0
  49. package/package.json +48 -48
  50. package/src/commander.ts +3378 -0
  51. package/src/{experimental/confirm.ts → confirm.ts} +10 -14
  52. package/src/errorReporter.ts +62 -74
  53. package/src/form.ts +55 -16
  54. package/src/intl.ts +12 -0
  55. package/src/lib.ts +46 -13
  56. package/src/makeClient.ts +623 -1043
  57. package/src/{experimental/makeUseCommand.ts → makeUseCommand.ts} +6 -4
  58. package/src/mutate.ts +273 -72
  59. package/src/query.ts +181 -68
  60. package/src/runtime.ts +39 -18
  61. package/src/{experimental/toast.ts → toast.ts} +11 -25
  62. package/src/{experimental/withToast.ts → withToast.ts} +28 -10
  63. package/test/Mutation.test.ts +105 -11
  64. package/test/dist/form.test.d.ts.map +1 -1
  65. package/test/dist/lib.test.d.ts.map +1 -0
  66. package/test/dist/streamFinal.test.d.ts.map +1 -0
  67. package/test/dist/streamFn.test.d.ts.map +1 -0
  68. package/test/dist/stubs.d.ts +3289 -114
  69. package/test/dist/stubs.d.ts.map +1 -1
  70. package/test/dist/stubs.js +152 -25
  71. package/test/form-validation-errors.test.ts +23 -19
  72. package/test/form.test.ts +20 -2
  73. package/test/lib.test.ts +240 -0
  74. package/test/makeClient.test.ts +286 -38
  75. package/test/streamFinal.test.ts +63 -0
  76. package/test/streamFn.test.ts +436 -0
  77. package/test/stubs.ts +192 -42
  78. package/tsconfig.examples.json +20 -0
  79. package/tsconfig.json +0 -1
  80. package/tsconfig.json.bak +5 -2
  81. package/tsconfig.src.json +34 -34
  82. package/tsconfig.test.json +2 -2
  83. package/vitest.config.ts +5 -5
  84. package/dist/experimental/commander.d.ts +0 -359
  85. package/dist/experimental/commander.d.ts.map +0 -1
  86. package/dist/experimental/commander.js +0 -557
  87. package/dist/experimental/confirm.d.ts +0 -19
  88. package/dist/experimental/confirm.d.ts.map +0 -1
  89. package/dist/experimental/confirm.js +0 -28
  90. package/dist/experimental/intl.d.ts +0 -16
  91. package/dist/experimental/intl.d.ts.map +0 -1
  92. package/dist/experimental/intl.js +0 -5
  93. package/dist/experimental/makeUseCommand.d.ts +0 -8
  94. package/dist/experimental/makeUseCommand.d.ts.map +0 -1
  95. package/dist/experimental/makeUseCommand.js +0 -13
  96. package/dist/experimental/toast.d.ts +0 -47
  97. package/dist/experimental/toast.d.ts.map +0 -1
  98. package/dist/experimental/toast.js +0 -41
  99. package/dist/experimental/withToast.d.ts +0 -25
  100. package/dist/experimental/withToast.d.ts.map +0 -1
  101. package/dist/experimental/withToast.js +0 -45
  102. package/src/experimental/commander.ts +0 -1835
  103. package/src/experimental/intl.ts +0 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,1388 @@
1
1
  # @effect-app/vue
2
2
 
3
+ ## 4.0.0-beta.190
4
+
5
+ ### Patch Changes
6
+
7
+ - 985176b: Align request handler input typing with the request's `make` signature. Handlers are now classified as no-input only when the request schema declares no payload fields; any payload (even fully-optional) yields a function handler whose input matches `make`'s first parameter. Adds `HandlerInput<I>` and threads it through `CommandFromRequest`.
8
+ - Updated dependencies [985176b]
9
+ - effect-app@4.0.0-beta.190
10
+
11
+ ## 4.0.0-beta.189
12
+
13
+ ### Patch Changes
14
+
15
+ - d23e3f6: Delay the in-progress (waiting) toast by 1 second in `withToast` and `withDefaultToastStream`. Fast operations that produce a success/failure (or, for streams, a progress event or terminal state) within the delay window never show a waiting toast at all. Any subsequent waiting/progress/success/failure toast aborts the pending delayed toast so it never flashes after the terminal state.
16
+ - f44800c: In-progress toasts (`withToast` waiting toast and `withDefaultToastStream` waiting/progress toasts) now persist indefinitely (`timeout: Infinity`) until replaced by the success/failure toast or dismissed. Previously they used the underlying toast adapter's default duration and could disappear before the operation finished.
17
+ - Updated dependencies [ea32222]
18
+ - effect-app@4.0.0-beta.189
19
+
20
+ ## 4.0.0-beta.188
21
+
22
+ ### Minor Changes
23
+
24
+ - f16e766: Remove legacy `mutateToResult` stream mutation factory, `wrapStream` command builder, and standard command progress reporting (`running`/`progress` from the old stream factory path). Keep only the `mutate` path for use with `streamFn` combinators. Remove obsolete types (`StreamMutationWithExtensions`, `StreamCommandWithExtensions`, `StreamFnExtension`, `MutateStreamCallOptions`) and the internal `makeStreamMutation` function. Rename `mutate.wrapStream` shorthand to `mutate.wrap` to match the non-stream convention.
25
+
26
+ ### Patch Changes
27
+
28
+ - ed1b8a9: `mutate.wrap` on stream handlers now works the same as on command/query handlers: it can be called without arguments or with only combinators, with the underlying stream handler pre-baked in.
29
+ - b2e438f: Remove Operations service and repo
30
+ - Updated dependencies [b2e438f]
31
+ - effect-app@4.0.0-beta.188
32
+
33
+ ## 4.0.0-beta.187
34
+
35
+ ### Patch Changes
36
+
37
+ - 0d4e0b8: Fix `isGeneratorFunction` using `isObject` instead of `isFunction`: generator functions have `typeof === "function"`, not `"object"`, so the check always returned `false`. This caused `Command.streamFn` generator-form handlers to silently pass a raw `Generator` object rather than an `Effect<Stream>`, meaning the mutation was never executed.
38
+ - Updated dependencies [0d4e0b8]
39
+ - effect-app@4.0.0-beta.187
40
+
41
+ ## 4.0.0-beta.186
42
+
43
+ ### Patch Changes
44
+
45
+ - 89b7d2f: `Command.withDefaultToastStream`: add `progress` option to update the waiting toast with progress text on each stream element
46
+ - effect-app@4.0.0-beta.186
47
+
48
+ ## 4.0.0-beta.185
49
+
50
+ ### Patch Changes
51
+
52
+ - ddd9505: Rename stream mutation helpers: `mutateStream` → `mutateToResult`, `mutateStream2` → `mutate`.
53
+ - effect-app@4.0.0-beta.185
54
+
55
+ ## 4.0.0-beta.184
56
+
57
+ ### Minor Changes
58
+
59
+ - d4bf24a: Add `Command.withDefaultToastStream` — a stream-aware combinator for `streamFn` that properly handles the full stream lifecycle (waiting/success/failure toasts). Unlike `withDefaultToast`, it waits for the stream to drain before showing the success toast and correctly handles stream errors.
60
+
61
+ Strongly type `CommandBase` with `RA`/`RE` type params for `result`, and update `CommandButton`'s `mapProgress` prop to be typed as `(result: AsyncResult<RA, RE>) => Progress | undefined`.
62
+
63
+ ### Patch Changes
64
+
65
+ - effect-app@4.0.0-beta.184
66
+
67
+ ## 4.0.0-beta.183
68
+
69
+ ### Minor Changes
70
+
71
+ - 8ff0bf9: Add `Command.streamFn` — a stream-backed variant of `Command.fn`.
72
+
73
+ The body generator (or plain function) returns a `Stream` instead of an `Effect`. The command's `waiting` state stays `true` while the stream is running and updates the reactive `result` ref for every emitted value.
74
+
75
+ Three handler shapes are accepted:
76
+
77
+ 1. **Generator returning a Stream** (primary):
78
+ ```ts
79
+ Command.streamFn("exportData")(function* (arg, ctx) {
80
+ const token = yield* getAuthToken;
81
+ return Stream.fromEffect(startExport(token, arg.id)).pipe(
82
+ Stream.flatMap((job) => pollProgress(job.id))
83
+ );
84
+ });
85
+ ```
86
+ 2. Function returning a `Stream` directly.
87
+ 3. Function returning `Effect<Stream>` (unwrapped automatically).
88
+
89
+ - 8ff0bf9: - `CommandButton`: add optional `:map-progress` prop to compute progress from `command.result` via a custom mapper function
90
+ - `CommandBase`: add optional `result` field exposing reactive `AsyncResult` state
91
+ - Export `Progress` type from `@effect-app/vue`
92
+ - `streamFn`: pipe operators now receive the initial `Effect<Stream>` (or `Stream`) value unchanged; `Stream.unwrap` is deferred until after all combinators, enabling use of `withDefaultToast` and other Effect-level combinators
93
+ - Add `makeStreamMutation2`: like `makeStreamMutation` but returns `Effect<Stream>` per invocation (with invalidation via `Stream.ensuring`), for use with `streamFn` combinators
94
+ - Expose `streamFn` on `XClient.Y` stream handlers and on the `Command` object
95
+ - Expose `mutateStream2` on `XClient.Y` stream handlers, with a `wrapStream` helper that calls `streamFn` with the handler and provided combinators
96
+ - fc98fb7: Add `streamQuery` support for stream-type Rpc handlers. When an Rpc is of type `"stream"`, the client now exposes a `.streamQuery` property (and `...StreamQuery` in helpers) that uses `streamedQuery` from `@tanstack/query-core` to accumulate chunks reactively as an `AsyncResult<A[], E>`.
97
+
98
+ ### Patch Changes
99
+
100
+ - effect-app@4.0.0-beta.183
101
+
102
+ ## 4.0.0-beta.182
103
+
104
+ ### Minor Changes
105
+
106
+ - b9586f8: Refine `mutateStream` shape and progress reporting.
107
+
108
+ - `mutateStream(options?)` now returns the `execute` callable directly, with `id`, `running?`, and `progress?` attached as properties. Tuple form `[ref, execute]` is gone — invoke the callable to run the stream, or pass it (or the factory) to `Command.fn` / `Command.wrap` / `Command.wrapStream`.
109
+ - `progress` formatter return type widened from `string | undefined` to `Progress | undefined`, where `Progress = string | { text: string; percentage: number }`.
110
+ - Stream failures now bubble through the execute effect's typed error channel `E` instead of being swallowed. The reactive `AsyncResult` ref still mirrors the failure for live progress UI.
111
+ - `CommandBase.progress?: Progress` replaces `progressText?: string`. `CommandButton` overrides the Vuetify `loader` slot when `progress` is set, rendering a `v-progress-circular` (bound to `model-value` when a `percentage` is supplied, otherwise `indeterminate`) alongside the formatted text.
112
+ - Factories and callables are branded with `_streamFactory` / `_streamCallable` so `Command.fn` / `Command.wrap` can disambiguate them from plain mutate functions.
113
+
114
+ ### Patch Changes
115
+
116
+ - effect-app@4.0.0-beta.182
117
+
118
+ ## 4.0.0-beta.181
119
+
120
+ ### Minor Changes
121
+
122
+ - 4bbeb19: Add `wrapStream` support to `Command` with separate `result` and `running` props.
123
+
124
+ **Key design:**
125
+
126
+ - `result` is always the command's own execution outcome (from `asResult`)
127
+ - `running` holds the stream's live `AsyncResult` ref for progress tracking
128
+
129
+ **New behaviour:**
130
+
131
+ - `CommanderImpl.wrapStream(mutation)` returns a callable like `wrap` — `wrapStream(mutation)()` gives `CommandOut`.
132
+ - Accepts either `{ id, mutateStream: [...] }` or the augmented tuple directly (when `.id` is attached).
133
+ - `Command.wrap` now accepts `{ mutateStream, id }` and the augmented tuple — both delegate to `wrapStream`.
134
+ - `FnOptions.progress` — pass a `ComputedRef<AsyncResult>` to any `fn`-created command; surfaces as `running`.
135
+ - `StreamMutationWithExtensions` now includes `.id` on the tuple.
136
+ - Stream client entries expose `wrapStream` (callable), `fn`, and `mutateStream` (with `.id`).
137
+ - Stream mutation helpers also carry `.fn` and `.id`.
138
+
139
+ ```ts
140
+ // Via client entry:
141
+ const exportCmd = Command.wrapStream(client.myExport)();
142
+ // exportCmd.result = own execution result; exportCmd.running = live stream AsyncResult
143
+
144
+ // Via mutateStream tuple (id is attached):
145
+ const exportCmd = Command.wrapStream(client.myExport.mutateStream)();
146
+
147
+ // wrap also accepts the tuple:
148
+ const exportCmd = Command.wrap(client.myExport.mutateStream)();
149
+
150
+ // fn with external progress:
151
+ const cmd = Command.fn({
152
+ id: "myExport",
153
+ progress: client.myExport.mutateStream[0],
154
+ })(function* (arg) {
155
+ yield* client.myExport.mutateStream[1](arg);
156
+ });
157
+ // cmd.running === the stream AsyncResult ref
158
+ ```
159
+
160
+ ### Patch Changes
161
+
162
+ - 583393f: Default the stream `mutateStream` execute resolved value to the request's success type when no `final` schema is declared.
163
+
164
+ Previously the type defaulted to `void`, but the runtime already resolves with the last emitted value. Types now match runtime behaviour: `execute` returns `Final` if a `final` schema is set, otherwise the success type.
165
+
166
+ - Updated dependencies [583393f]
167
+ - effect-app@4.0.0-beta.181
168
+
169
+ ## 4.0.0-beta.180
170
+
171
+ ### Minor Changes
172
+
173
+ - 7fa3045: V1/V2/V3: stream and command requests carry invalidation metadata
174
+
175
+ **V1** – stream final response includes metadata
176
+
177
+ - `Invalidation.StreamResponseChunk` wraps each stream item as `{ _tag: "value", value }` and appends `{ _tag: "done", metadata }` at the end carrying all accumulated invalidation keys.
178
+
179
+ **V2** – invalidation keys included in failures
180
+
181
+ - `Invalidation.CommandFailureWithMetaData` and `Invalidation.StreamFailureChunk` carry keys accumulated up to the point of failure, so clients can invalidate queries even when a command or stream errors.
182
+ - `InvalidationMiddlewareLive` wraps command failures; `routing.ts` wraps stream failures.
183
+ - `apiClientFactory.ts` unwraps both on the client side, forwarding keys before re-failing with the original error.
184
+
185
+ **V3** – mid-stream metadata chunks
186
+
187
+ - `Invalidation.StreamResponseChunk` now also includes `{ _tag: "metadata", metadata }` for mid-stream invalidation.
188
+ - After each emitted value, the server drains accumulated keys and emits a "metadata" chunk if any keys were collected since the last drain (bucket reset via `InvalidationSet.drain`).
189
+ - `apiClientFactory.ts` processes "metadata" chunks the same as "done" chunks, forwarding keys to `InvalidationKeysFromServer` immediately.
190
+ - `makeInvalidationKeysService` accepts an optional `onAdded` callback that fires after each key addition, enabling `mutate.ts` to trigger query invalidation mid-stream without waiting for the stream to complete.
191
+
192
+ ### Patch Changes
193
+
194
+ - Updated dependencies [7fa3045]
195
+ - effect-app@4.0.0-beta.180
196
+
197
+ ## 4.0.0-beta.179
198
+
199
+ ### Minor Changes
200
+
201
+ - 828d264: Stream requests now support an optional `final` schema that models the final success type of the stream. When declared, `mutateStream`'s execute effect resolves with the last emitted value typed as `Final` instead of `void`.
202
+
203
+ ```ts
204
+ class MyStream extends SomethingStream<MyStream>()(
205
+ "MyStream",
206
+ { id: S.String },
207
+ {
208
+ success: S.Union([OperationProgress, ExportComplete]),
209
+ final: ExportComplete, // execute now resolves with ExportComplete
210
+ }
211
+ ) {}
212
+ ```
213
+
214
+ ### Patch Changes
215
+
216
+ - Updated dependencies [828d264]
217
+ - effect-app@4.0.0-beta.179
218
+
219
+ ## 4.0.0-beta.178
220
+
221
+ ### Minor Changes
222
+
223
+ - 07dd7b9: Add `asStreamResult` utility and stream-based mutation example.
224
+
225
+ `asStreamResult` mirrors `asResult` but accepts a `Stream<A, E, R>` (or a factory function that returns one). The reactive ref is updated with each emitted value (`waiting: true`) and finalised once the stream ends (`waiting: false`). Errors surface as `AsyncResult.failure`.
226
+
227
+ The included example (`examples/streamMutation.ts`) shows how to model a long-running export operation that streams `OperationProgress | ExportComplete` events into a readonly Vue ref.
228
+
229
+ ### Patch Changes
230
+
231
+ - effect-app@4.0.0-beta.178
232
+
233
+ ## 4.0.0-beta.177
234
+
235
+ ### Patch Changes
236
+
237
+ - Updated dependencies [89d8b3a]
238
+ - effect-app@4.0.0-beta.177
239
+
240
+ ## 4.0.0-beta.176
241
+
242
+ ### Patch Changes
243
+
244
+ - pass options
245
+ - Updated dependencies
246
+ - effect-app@4.0.0-beta.176
247
+
248
+ ## 4.0.0-beta.175
249
+
250
+ ### Minor Changes
251
+
252
+ - 28777c1: Add `select` option to `MutationOptionsBase` for a second cache invalidation after long-running operations.
253
+
254
+ When `select` is provided, cache invalidation fires twice:
255
+
256
+ 1. Immediately when the mutation completes (existing behaviour).
257
+ 2. Again after the `select` effect finishes — useful for polling or waiting for a background job before refreshing data.
258
+
259
+ ```ts
260
+ useMutation(startExportCommand, {
261
+ select: (result) => pollUntilDone(result.jobId),
262
+ });
263
+ ```
264
+
265
+ ### Patch Changes
266
+
267
+ - 37089ea: Consolidate multiple `invalidateQueries` calls into a single call per group using a `predicate`, reducing the number of TanStack Query invalidation calls in the common case from N to 1.
268
+ - effect-app@4.0.0-beta.175
269
+
270
+ ## 4.0.0-beta.174
271
+
272
+ ### Minor Changes
273
+
274
+ - 821468d: Add server-driven cache invalidation via RPC response headers.
275
+
276
+ - `effect-app/rpc`: new `Invalidation` module with `InvalidationKey` / `InvalidationKeys` schemas, `Invalidates` annotation (for declaring static invalidation on Rpc definitions), `InvalidationSet` reference (request-scoped accumulator), and `makeInvalidationSet` helper.
277
+ - `effect-app/middleware`: new `InvalidationMiddleware` RPC middleware tag; included in `DefaultGenericMiddlewares`.
278
+ - `effect-app/client`: new `InvalidationKeys` module with `InvalidationKeysFromServer` reference and `makeInvalidationKeysService` helper; `apiClientFactory` now taps HTTP responses to read the `x-invalidate` header and forward keys to `InvalidationKeysFromServer`.
279
+ - `@effect-app/infra`: new `InvalidationMiddlewareLive` RPC middleware implementation that owns the full lifecycle — creates a request-scoped `InvalidationSet` (backed by a `Ref`), pre-populates it from the `Invalidates` annotation, provides it to the handler, and after the handler completes registers an HTTP pre-response handler (via `appendPreResponseHandlerUnsafe`) to write the accumulated keys as an `x-invalidate` response header. No separate HTTP middleware is needed.
280
+ - `@effect-app/vue`: `invalidateQueries` / `useMutation` now reads server-provided invalidation keys from `InvalidationKeysFromServer` after each mutation and applies them alongside the client-side invalidation.
281
+
282
+ ### Patch Changes
283
+
284
+ - 1b38043: Fix lint: use typescript ~6.0.3 instead of native-preview for ESLint compatibility; keep tsgo for compilation
285
+ - b241ae5: Merge client and server-driven cache invalidation keys into a single `Effect.forEach` pass so server keys always run regardless of whether client targets are empty or custom invalidation options are used.
286
+ - Updated dependencies [821468d]
287
+ - effect-app@4.0.0-beta.174
288
+
289
+ ## 4.0.0-beta.173
290
+
291
+ ### Patch Changes
292
+
293
+ - 4149577: fix queryresources
294
+ - effect-app@4.0.0-beta.173
295
+
296
+ ## 4.0.0-beta.172
297
+
298
+ ### Patch Changes
299
+
300
+ - effect-app@4.0.0-beta.172
301
+
302
+ ## 4.0.0-beta.171
303
+
304
+ ### Patch Changes
305
+
306
+ - d71d976: fix
307
+ - Updated dependencies [d71d976]
308
+ - effect-app@4.0.0-beta.171
309
+
310
+ ## 4.0.0-beta.170
311
+
312
+ ### Patch Changes
313
+
314
+ - 8f09f77: fix
315
+ - Updated dependencies [8f09f77]
316
+ - effect-app@4.0.0-beta.170
317
+
318
+ ## 4.0.0-beta.169
319
+
320
+ ### Patch Changes
321
+
322
+ - 8ae8b53: input mess
323
+ - Updated dependencies [8ae8b53]
324
+ - effect-app@4.0.0-beta.169
325
+
326
+ ## 4.0.0-beta.168
327
+
328
+ ### Patch Changes
329
+
330
+ - Updated dependencies [178480a]
331
+ - effect-app@4.0.0-beta.168
332
+
333
+ ## 4.0.0-beta.167
334
+
335
+ ### Patch Changes
336
+
337
+ - 140e192: Relax invalidation resource value constraints to allow arbitrary values while preserving query-only filtering in invalidation handling.
338
+ - Updated dependencies [140e192]
339
+ - effect-app@4.0.0-beta.167
340
+
341
+ ## 4.0.0-beta.166
342
+
343
+ ### Patch Changes
344
+
345
+ - dbcc53b: Refactor command invalidation typing: declare resources via `Command<Self, Resources>()`, pass `invalidatesQueries` as the optional 4th argument, and enforce exact `clientFor` invalidation resources when required.
346
+ - Updated dependencies [dbcc53b]
347
+ - effect-app@4.0.0-beta.166
348
+
349
+ ## 4.0.0-beta.165
350
+
351
+ ### Patch Changes
352
+
353
+ - f88ea34: Move `makeQueryKey` into `effect-app/client` and update Vue source and tests to import it from the shared client module. Vue still re-exports `makeQueryKey` from `src/lib` for compatibility.
354
+ - 66fd718: Require `clientFor` invalidation resources when any command in the client configures them.
355
+ - Updated dependencies [f88ea34]
356
+ - effect-app@4.0.0-beta.165
357
+
358
+ ## 4.0.0-beta.164
359
+
360
+ ### Minor Changes
361
+
362
+ - 8cb3de4: Add command invalidation helpers that preserve query-only resource types and pass mutation input and `Exit` results into invalidation callbacks. Update Vue `clientFor` to merge request-level invalidation config with call-site invalidation and require matching invalidation resources.
363
+
364
+ ### Patch Changes
365
+
366
+ - Updated dependencies [8cb3de4]
367
+ - effect-app@4.0.0-beta.164
368
+
369
+ ## 4.0.0-beta.163
370
+
371
+ ### Patch Changes
372
+
373
+ - b952f19: bye cruft
374
+ - Updated dependencies [b952f19]
375
+ - effect-app@4.0.0-beta.163
376
+
377
+ ## 4.0.0-beta.162
378
+
379
+ ### Patch Changes
380
+
381
+ - Updated dependencies [b52b424]
382
+ - effect-app@4.0.0-beta.162
383
+
384
+ ## 4.0.0-beta.161
385
+
386
+ ### Patch Changes
387
+
388
+ - aa5ef5c: Improve `deepToRaw` to support any root input type, correctly unwrap refs/computed values, and preserve collection/date shapes (`Array`, `Map`, `Set`, `Date`) while deeply removing Vue reactivity wrappers.
389
+ - effect-app@4.0.0-beta.161
390
+
391
+ ## 4.0.0-beta.160
392
+
393
+ ### Patch Changes
394
+
395
+ - 505bfa9: Add concurrent decode helper APIs and migrate decode callsites to use them.
396
+
397
+ - Add `withDefaultParseOptions` and keep `DefaultParseOptions` centralized.
398
+ - Export `decodeEffectConcurrently` and `decodeUnknownEffectConcurrently` from Schema and SchemaParser modules.
399
+ - Update repository, queue, client, form, and CLI decode paths to use concurrent decode helpers.
400
+ - Keep schema constructors free of hardcoded parse concurrency overrides.
401
+
402
+ - Updated dependencies [505bfa9]
403
+ - effect-app@4.0.0-beta.160
404
+
405
+ ## 4.0.0-beta.159
406
+
407
+ ### Patch Changes
408
+
409
+ - c1e73de:
410
+ - Updated dependencies [c1e73de]
411
+ - effect-app@4.0.0-beta.159
412
+
413
+ ## 4.0.0-beta.158
414
+
415
+ ### Patch Changes
416
+
417
+ - Updated dependencies [3c1f52d]
418
+ - Updated dependencies [6ae3050]
419
+ - effect-app@4.0.0-beta.158
420
+
421
+ ## 4.0.0-beta.157
422
+
423
+ ### Patch Changes
424
+
425
+ - Updated dependencies [6fff09c]
426
+ - effect-app@4.0.0-beta.157
427
+
428
+ ## 4.0.0-beta.156
429
+
430
+ ### Patch Changes
431
+
432
+ - 4bc4a27: Constrain `project` schema to require matching `Encoded` type with original success schema
433
+ - effect-app@4.0.0-beta.156
434
+
435
+ ## 4.0.0-beta.155
436
+
437
+ ### Patch Changes
438
+
439
+ - 2e4c018: feat: add client projection
440
+ - Updated dependencies [c215db8]
441
+ - effect-app@4.0.0-beta.155
442
+
443
+ ## 4.0.0-beta.154
444
+
445
+ ### Patch Changes
446
+
447
+ - 3200fa8: apply the remaining formatting and autofix cleanup across the vue packages
448
+ - effect-app@4.0.0-beta.154
449
+
450
+ ## 4.0.0-beta.153
451
+
452
+ ### Patch Changes
453
+
454
+ - effect-app@4.0.0-beta.153
455
+
456
+ ## 4.0.0-beta.152
457
+
458
+ ### Patch Changes
459
+
460
+ - effect-app@4.0.0-beta.152
461
+
462
+ ## 4.0.0-beta.151
463
+
464
+ ### Patch Changes
465
+
466
+ - effect-app@4.0.0-beta.151
467
+
468
+ ## 4.0.0-beta.150
469
+
470
+ ### Patch Changes
471
+
472
+ - Updated dependencies [85a8275]
473
+ - effect-app@4.0.0-beta.150
474
+
475
+ ## 4.0.0-beta.149
476
+
477
+ ### Patch Changes
478
+
479
+ - Updated dependencies [f317c5e]
480
+ - effect-app@4.0.0-beta.149
481
+
482
+ ## 4.0.0-beta.148
483
+
484
+ ### Patch Changes
485
+
486
+ - Updated dependencies [199e9a5]
487
+ - effect-app@4.0.0-beta.148
488
+
489
+ ## 4.0.0-beta.147
490
+
491
+ ### Patch Changes
492
+
493
+ - Updated dependencies [47e3742]
494
+ - effect-app@4.0.0-beta.147
495
+
496
+ ## 4.0.0-beta.146
497
+
498
+ ### Patch Changes
499
+
500
+ - Updated dependencies [a4dff57]
501
+ - effect-app@4.0.0-beta.146
502
+
503
+ ## 4.0.0-beta.145
504
+
505
+ ### Patch Changes
506
+
507
+ - Updated dependencies [12abb55]
508
+ - effect-app@4.0.0-beta.145
509
+
510
+ ## 4.0.0-beta.144
511
+
512
+ ### Patch Changes
513
+
514
+ - 11422f8: Update request helper typing and runtime invocation to rely on schema `.make` instead of class constructors, avoiding `new`-based assumptions for request schemas.
515
+ - Updated dependencies [11422f8]
516
+ - Updated dependencies [d31253f]
517
+ - effect-app@4.0.0-beta.144
518
+
519
+ ## 4.0.0-beta.143
520
+
521
+ ### Patch Changes
522
+
523
+ - Updated dependencies [79eb019]
524
+ - effect-app@4.0.0-beta.143
525
+
526
+ ## 4.0.0-beta.142
527
+
528
+ ### Patch Changes
529
+
530
+ - Updated dependencies [3436d44]
531
+ - Updated dependencies [025de47]
532
+ - effect-app@4.0.0-beta.142
533
+
534
+ ## 4.0.0-beta.141
535
+
536
+ ### Patch Changes
537
+
538
+ - Updated dependencies [7c25dbb]
539
+ - effect-app@4.0.0-beta.141
540
+
541
+ ## 4.0.0-beta.140
542
+
543
+ ### Patch Changes
544
+
545
+ - effect-app@4.0.0-beta.140
546
+
547
+ ## 4.0.0-beta.139
548
+
549
+ ### Patch Changes
550
+
551
+ - ba61aad: raw dog
552
+ - effect-app@4.0.0-beta.139
553
+
554
+ ## 4.0.0-beta.138
555
+
556
+ ### Patch Changes
557
+
558
+ - 9be71e1: fix: double guard
559
+ - effect-app@4.0.0-beta.138
560
+
561
+ ## 4.0.0-beta.137
562
+
563
+ ### Patch Changes
564
+
565
+ - effect-app@4.0.0-beta.137
566
+
567
+ ## 4.0.0-beta.136
568
+
569
+ ### Patch Changes
570
+
571
+ - effect-app@4.0.0-beta.136
572
+
573
+ ## 4.0.0-beta.135
574
+
575
+ ### Patch Changes
576
+
577
+ - Updated dependencies [c7bbc41]
578
+ - effect-app@4.0.0-beta.135
579
+
580
+ ## 4.0.0-beta.134
581
+
582
+ ### Patch Changes
583
+
584
+ - Updated dependencies [9d3495e]
585
+ - Updated dependencies [f353d48]
586
+ - effect-app@4.0.0-beta.134
587
+
588
+ ## 4.0.0-beta.133
589
+
590
+ ### Patch Changes
591
+
592
+ - 99a2e9b: Use warning toasts for expected commander failures, while keeping unexpected errors as error toasts.
593
+ - c3299f7: update packages
594
+ - Updated dependencies [c3299f7]
595
+ - effect-app@4.0.0-beta.133
596
+
597
+ ## 4.0.0-beta.132
598
+
599
+ ### Patch Changes
600
+
601
+ - 8753c52: render
602
+ - effect-app@4.0.0-beta.132
603
+
604
+ ## 4.0.0-beta.131
605
+
606
+ ### Patch Changes
607
+
608
+ - 1b57aa4: Add a `Commander` error-renderer registry via `Context.Reference` and apply registered guarded renderers before default error formatting.
609
+ - effect-app@4.0.0-beta.131
610
+
611
+ ## 4.0.0-beta.130
612
+
613
+ ### Patch Changes
614
+
615
+ - fc41dcf: add trace id and span id to toasts
616
+ - Updated dependencies [ea1bd46]
617
+ - effect-app@4.0.0-beta.130
618
+
619
+ ## 4.0.0-beta.129
620
+
621
+ ### Patch Changes
622
+
623
+ - 34f6a97: fix missing fn
624
+ - effect-app@4.0.0-beta.129
625
+
626
+ ## 4.0.0-beta.128
627
+
628
+ ### Patch Changes
629
+
630
+ - 57db551: Split `TaggedRequestFor` into `Query` and `Command` factories, and mark generated request classes with `type: "query" | "command"`.
631
+
632
+ Vue client helpers now expose query-only helpers (`query`, `suspense`, `fetch`) for query requests and mutation-only helpers (`mutate`, `fetch`) for command requests.
633
+
634
+ - Updated dependencies [57db551]
635
+ - effect-app@4.0.0-beta.128
636
+
637
+ ## 4.0.0-beta.127
638
+
639
+ ### Minor Changes
640
+
641
+ - 6a3d364: Client entries are now plain objects; use `.request` to invoke the request.
642
+
643
+ `client.Xxx` no longer is callable or an `Effect` itself. Call `client.Xxx.request(input)` (or `client.Xxx.request` for input-less requests) instead. `.mutate`, `.query`, `.suspense`, `.wrap`, and `.fn` are unchanged.
644
+
645
+ ### Patch Changes
646
+
647
+ - effect-app@4.0.0-beta.127
648
+
649
+ ## 4.0.0-beta.126
650
+
651
+ ### Patch Changes
652
+
653
+ - Updated dependencies [458bb1b]
654
+ - effect-app@4.0.0-beta.126
655
+
656
+ ## 4.0.0-beta.125
657
+
658
+ ### Patch Changes
659
+
660
+ - effect-app@4.0.0-beta.125
661
+
662
+ ## 4.0.0-beta.124
663
+
664
+ ### Patch Changes
665
+
666
+ - 256ae85: cleanup
667
+ - Updated dependencies [256ae85]
668
+ - effect-app@4.0.0-beta.124
669
+
670
+ ## 4.0.0-beta.123
671
+
672
+ ### Patch Changes
673
+
674
+ - Updated dependencies [14aba14]
675
+ - effect-app@4.0.0-beta.123
676
+
677
+ ## 4.0.0-beta.122
678
+
679
+ ### Patch Changes
680
+
681
+ - 07a57b6: Limit `client.method.mutate` extensions to only expose the mutation call and `wrap`.
682
+ - f052d38: Replace `(...) => Effect.gen` with `Effect.fnUntraced` in commander `withDefaultToast`.
683
+ - Updated dependencies [f052d38]
684
+ - effect-app@4.0.0-beta.122
685
+
686
+ ## 4.0.0-beta.121
687
+
688
+ ### Patch Changes
689
+
690
+ - Updated dependencies [5ac46cb]
691
+ - effect-app@4.0.0-beta.121
692
+
693
+ ## 4.0.0-beta.120
694
+
695
+ ### Patch Changes
696
+
697
+ - Updated dependencies [f21190c]
698
+ - effect-app@4.0.0-beta.120
699
+
700
+ ## 4.0.0-beta.119
701
+
702
+ ### Patch Changes
703
+
704
+ - effect-app@4.0.0-beta.119
705
+
706
+ ## 4.0.0-beta.118
707
+
708
+ ### Patch Changes
709
+
710
+ - Update effect packages to 4.0.0-beta.52
711
+ - Updated dependencies [bd26832]
712
+ - Updated dependencies [08d2e70]
713
+ - Updated dependencies
714
+ - effect-app@4.0.0-beta.118
715
+
716
+ ## 4.0.0-beta.117
717
+
718
+ ### Patch Changes
719
+
720
+ - effect-app@4.0.0-beta.117
721
+
722
+ ## 4.0.0-beta.116
723
+
724
+ ### Patch Changes
725
+
726
+ - effect-app@4.0.0-beta.116
727
+
728
+ ## 4.0.0-beta.115
729
+
730
+ ### Patch Changes
731
+
732
+ - effect-app@4.0.0-beta.115
733
+
734
+ ## 4.0.0-beta.114
735
+
736
+ ### Patch Changes
737
+
738
+ - effect-app@4.0.0-beta.114
739
+
740
+ ## 4.0.0-beta.113
741
+
742
+ ### Patch Changes
743
+
744
+ - effect-app@4.0.0-beta.113
745
+
746
+ ## 4.0.0-beta.112
747
+
748
+ ### Patch Changes
749
+
750
+ - effect-app@4.0.0-beta.112
751
+
752
+ ## 4.0.0-beta.111
753
+
754
+ ### Patch Changes
755
+
756
+ - Updated dependencies [ca94edf]
757
+ - effect-app@4.0.0-beta.111
758
+
759
+ ## 4.0.0-beta.110
760
+
761
+ ### Patch Changes
762
+
763
+ - effect-app@4.0.0-beta.110
764
+
765
+ ## 4.0.0-beta.109
766
+
767
+ ### Patch Changes
768
+
769
+ - effect-app@4.0.0-beta.109
770
+
771
+ ## 4.0.0-beta.108
772
+
773
+ ### Patch Changes
774
+
775
+ - Updated dependencies [3e46e7b]
776
+ - effect-app@4.0.0-beta.108
777
+
778
+ ## 4.0.0-beta.107
779
+
780
+ ### Patch Changes
781
+
782
+ - effect-app@4.0.0-beta.107
783
+
784
+ ## 4.0.0-beta.106
785
+
786
+ ### Patch Changes
787
+
788
+ - effect-app@4.0.0-beta.106
789
+
790
+ ## 4.0.0-beta.105
791
+
792
+ ### Patch Changes
793
+
794
+ - effect-app@4.0.0-beta.105
795
+
796
+ ## 4.0.0-beta.104
797
+
798
+ ### Patch Changes
799
+
800
+ - Updated dependencies [e944bca]
801
+ - effect-app@4.0.0-beta.104
802
+
803
+ ## 4.0.0-beta.103
804
+
805
+ ### Patch Changes
806
+
807
+ - Updated dependencies [7119320]
808
+ - effect-app@4.0.0-beta.103
809
+
810
+ ## 4.0.0-beta.102
811
+
812
+ ### Patch Changes
813
+
814
+ - effect-app@4.0.0-beta.102
815
+
816
+ ## 4.0.0-beta.101
817
+
818
+ ### Patch Changes
819
+
820
+ - effect-app@4.0.0-beta.101
821
+
822
+ ## 4.0.0-beta.100
823
+
824
+ ### Patch Changes
825
+
826
+ - effect-app@4.0.0-beta.100
827
+
828
+ ## 4.0.0-beta.99
829
+
830
+ ### Patch Changes
831
+
832
+ - effect-app@4.0.0-beta.99
833
+
834
+ ## 4.0.0-beta.98
835
+
836
+ ### Patch Changes
837
+
838
+ - effect-app@4.0.0-beta.98
839
+
840
+ ## 4.0.0-beta.97
841
+
842
+ ### Patch Changes
843
+
844
+ - effect-app@4.0.0-beta.97
845
+
846
+ ## 4.0.0-beta.96
847
+
848
+ ### Patch Changes
849
+
850
+ - Updated dependencies [5615e47]
851
+ - effect-app@4.0.0-beta.96
852
+
853
+ ## 4.0.0-beta.95
854
+
855
+ ### Patch Changes
856
+
857
+ - Updated dependencies [88838fb]
858
+ - effect-app@4.0.0-beta.95
859
+
860
+ ## 4.0.0-beta.94
861
+
862
+ ### Patch Changes
863
+
864
+ - effect-app@4.0.0-beta.94
865
+
866
+ ## 4.0.0-beta.93
867
+
868
+ ### Patch Changes
869
+
870
+ - effect-app@4.0.0-beta.93
871
+
872
+ ## 4.0.0-beta.92
873
+
874
+ ### Patch Changes
875
+
876
+ - effect-app@4.0.0-beta.92
877
+
878
+ ## 4.0.0-beta.91
879
+
880
+ ### Patch Changes
881
+
882
+ - Updated dependencies [738b482]
883
+ - effect-app@4.0.0-beta.91
884
+
885
+ ## 4.0.0-beta.90
886
+
887
+ ### Patch Changes
888
+
889
+ - effect-app@4.0.0-beta.90
890
+
891
+ ## 4.0.0-beta.89
892
+
893
+ ### Patch Changes
894
+
895
+ - effect-app@4.0.0-beta.89
896
+
897
+ ## 4.0.0-beta.88
898
+
899
+ ### Patch Changes
900
+
901
+ - effect-app@4.0.0-beta.88
902
+
903
+ ## 4.0.0-beta.87
904
+
905
+ ### Patch Changes
906
+
907
+ - effect-app@4.0.0-beta.87
908
+
909
+ ## 4.0.0-beta.86
910
+
911
+ ### Patch Changes
912
+
913
+ - effect-app@4.0.0-beta.86
914
+
915
+ ## 4.0.0-beta.85
916
+
917
+ ### Patch Changes
918
+
919
+ - effect-app@4.0.0-beta.85
920
+
921
+ ## 4.0.0-beta.84
922
+
923
+ ### Patch Changes
924
+
925
+ - effect-app@4.0.0-beta.84
926
+
927
+ ## 4.0.0-beta.83
928
+
929
+ ### Patch Changes
930
+
931
+ - effect-app@4.0.0-beta.83
932
+
933
+ ## 4.0.0-beta.82
934
+
935
+ ### Patch Changes
936
+
937
+ - effect-app@4.0.0-beta.82
938
+
939
+ ## 4.0.0-beta.81
940
+
941
+ ### Patch Changes
942
+
943
+ - effect-app@4.0.0-beta.81
944
+
945
+ ## 4.0.0-beta.80
946
+
947
+ ### Patch Changes
948
+
949
+ - effect-app@4.0.0-beta.80
950
+
951
+ ## 4.0.0-beta.79
952
+
953
+ ### Patch Changes
954
+
955
+ - d16845e: Remove `TaggedRequest` from `makeRpcClient`, now only `TaggedRequestFor` is returned. Remove all legacy `meta.moduleName` support — `id` and `moduleName` are now required on `Req` type. Remove `makeRpcGroup` (use `makeRpcGroupFromRequestsAndModuleName` instead).
956
+ - Updated dependencies [d16845e]
957
+ - effect-app@4.0.0-beta.79
958
+
959
+ ## 4.0.0-beta.78
960
+
961
+ ### Patch Changes
962
+
963
+ - effect-app@4.0.0-beta.78
964
+
965
+ ## 4.0.0-beta.77
966
+
967
+ ### Patch Changes
968
+
969
+ - Updated dependencies [3613e87]
970
+ - effect-app@4.0.0-beta.77
971
+
972
+ ## 4.0.0-beta.76
973
+
974
+ ### Patch Changes
975
+
976
+ - 08d30af: Fix Commander combinator type inference for void Arg and withDefaultToast callbacks
977
+
978
+ - Use `ArgForCombinator` helper to properly resolve `void` args to `undefined` in combinator positions, enabling correct type inference for `withDefaultToast` and other curried combinators
979
+ - Use explicit positional params in `withDefaultToast` options callbacks instead of rest spread, allowing users to omit trailing parameters
980
+
981
+ - fac725d: update effect to latest beta
982
+ - Updated dependencies [a5248a9]
983
+ - Updated dependencies [fac725d]
984
+ - effect-app@4.0.0-beta.76
985
+
986
+ ## 4.0.0-beta.75
987
+
988
+ ### Patch Changes
989
+
990
+ - Updated dependencies [24f0a5a]
991
+ - effect-app@4.0.0-beta.75
992
+
993
+ ## 4.0.0-beta.74
994
+
995
+ ### Patch Changes
996
+
997
+ - Updated dependencies [54ec1ef]
998
+ - effect-app@4.0.0-beta.74
999
+
1000
+ ## 4.0.0-beta.73
1001
+
1002
+ ### Patch Changes
1003
+
1004
+ - effect-app@4.0.0-beta.73
1005
+
1006
+ ## 4.0.0-beta.72
1007
+
1008
+ ### Patch Changes
1009
+
1010
+ - Updated dependencies [0541f0d]
1011
+ - effect-app@4.0.0-beta.72
1012
+
1013
+ ## 4.0.0-beta.71
1014
+
1015
+ ### Patch Changes
1016
+
1017
+ - Updated dependencies [beae3a0]
1018
+ - effect-app@4.0.0-beta.71
1019
+
1020
+ ## 4.0.0-beta.70
1021
+
1022
+ ### Patch Changes
1023
+
1024
+ - effect-app@4.0.0-beta.70
1025
+
1026
+ ## 4.0.0-beta.69
1027
+
1028
+ ### Patch Changes
1029
+
1030
+ - dc465e3: update to latest effect beta
1031
+ - Updated dependencies [dc465e3]
1032
+ - effect-app@4.0.0-beta.69
1033
+
1034
+ ## 4.0.0-beta.68
1035
+
1036
+ ### Patch Changes
1037
+
1038
+ - Updated dependencies [e6f2341]
1039
+ - effect-app@4.0.0-beta.68
1040
+
1041
+ ## 4.0.0-beta.67
1042
+
1043
+ ### Patch Changes
1044
+
1045
+ - effect-app@4.0.0-beta.67
1046
+
1047
+ ## 4.0.0-beta.66
1048
+
1049
+ ### Patch Changes
1050
+
1051
+ - Updated dependencies [edc52e4]
1052
+ - effect-app@4.0.0-beta.66
1053
+
1054
+ ## 4.0.0-beta.65
1055
+
1056
+ ### Minor Changes
1057
+
1058
+ - 1f103b2: Replace `proxify` with explicit service accessor helpers: `accessFn`, `accessEffectFn`, `accessCn`, `accessEffectCn`.
1059
+
1060
+ ### Patch Changes
1061
+
1062
+ - Updated dependencies [31739d7]
1063
+ - Updated dependencies [1f103b2]
1064
+ - effect-app@4.0.0-beta.65
1065
+
1066
+ ## 4.0.0-beta.64
1067
+
1068
+ ### Patch Changes
1069
+
1070
+ - Updated dependencies [c1a6fdc]
1071
+ - effect-app@4.0.0-beta.64
1072
+
1073
+ ## 4.0.0-beta.63
1074
+
1075
+ ### Minor Changes
1076
+
1077
+ - b3ed68a: Remove `legacy` from `makeClient` return and clean up `LegacyMutation`, `LegacyMutationImpl`, and related types.
1078
+
1079
+ ### Patch Changes
1080
+
1081
+ - effect-app@4.0.0-beta.63
1082
+
1083
+ ## 4.0.0-beta.62
1084
+
1085
+ ### Patch Changes
1086
+
1087
+ - Updated dependencies [0b21a02]
1088
+ - effect-app@4.0.0-beta.62
1089
+
1090
+ ## 4.0.0-beta.61
1091
+
1092
+ ### Patch Changes
1093
+
1094
+ - effect-app@4.0.0-beta.61
1095
+
1096
+ ## 4.0.0-beta.60
1097
+
1098
+ ### Patch Changes
1099
+
1100
+ - effect-app@4.0.0-beta.60
1101
+
1102
+ ## 4.0.0-beta.59
1103
+
1104
+ ### Patch Changes
1105
+
1106
+ - cec026d: update packages
1107
+ - Updated dependencies [cec026d]
1108
+ - effect-app@4.0.0-beta.59
1109
+
1110
+ ## 4.0.0-beta.58
1111
+
1112
+ ### Patch Changes
1113
+
1114
+ - 7fd35e4: update tanstack/query
1115
+ - effect-app@4.0.0-beta.58
1116
+
1117
+ ## 4.0.0-beta.57
1118
+
1119
+ ### Patch Changes
1120
+
1121
+ - effect-app@4.0.0-beta.57
1122
+
1123
+ ## 4.0.0-beta.56
1124
+
1125
+ ### Patch Changes
1126
+
1127
+ - effect-app@4.0.0-beta.56
1128
+
1129
+ ## 4.0.0-beta.55
1130
+
1131
+ ### Patch Changes
1132
+
1133
+ - eceb3a3: align CauseException
1134
+ - effect-app@4.0.0-beta.55
1135
+
1136
+ ## 4.0.0-beta.54
1137
+
1138
+ ### Patch Changes
1139
+
1140
+ - d867272: the return of `Context`
1141
+ - Updated dependencies [d867272]
1142
+ - effect-app@4.0.0-beta.54
1143
+
1144
+ ## 4.0.0-beta.53
1145
+
1146
+ ### Patch Changes
1147
+
1148
+ - Updated dependencies [ee9694e]
1149
+ - effect-app@4.0.0-beta.53
1150
+
1151
+ ## 4.0.0-beta.52
1152
+
1153
+ ### Patch Changes
1154
+
1155
+ - Updated dependencies [6252808]
1156
+ - effect-app@4.0.0-beta.52
1157
+
1158
+ ## 4.0.0-beta.51
1159
+
1160
+ ### Patch Changes
1161
+
1162
+ - effect-app@4.0.0-beta.51
1163
+
1164
+ ## 4.0.0-beta.50
1165
+
1166
+ ### Patch Changes
1167
+
1168
+ - effect-app@4.0.0-beta.50
1169
+
1170
+ ## 4.0.0-beta.49
1171
+
1172
+ ### Patch Changes
1173
+
1174
+ - Updated dependencies [e585c9c]
1175
+ - effect-app@4.0.0-beta.49
1176
+
1177
+ ## 4.0.0-beta.48
1178
+
1179
+ ### Patch Changes
1180
+
1181
+ - Updated dependencies [0c88f78]
1182
+ - effect-app@4.0.0-beta.48
1183
+
1184
+ ## 4.0.0-beta.47
1185
+
1186
+ ### Patch Changes
1187
+
1188
+ - Updated dependencies [3365758]
1189
+ - effect-app@4.0.0-beta.47
1190
+
1191
+ ## 4.0.0-beta.46
1192
+
1193
+ ### Patch Changes
1194
+
1195
+ - 28a0b29: expose Input
1196
+ - 0c42d67: move out Commander and friends from experimental
1197
+ - effect-app@4.0.0-beta.46
1198
+
1199
+ ## 4.0.0-beta.45
1200
+
1201
+ ### Patch Changes
1202
+
1203
+ - 10b55ff: update packages
1204
+ - Updated dependencies [10b55ff]
1205
+ - effect-app@4.0.0-beta.45
1206
+
1207
+ ## 4.0.0-beta.44
1208
+
1209
+ ### Patch Changes
1210
+
1211
+ - a37aa38: Update to effect beta 43
1212
+ - Updated dependencies [a37aa38]
1213
+ - effect-app@4.0.0-beta.44
1214
+
1215
+ ## 4.0.0-beta.43
1216
+
1217
+ ### Patch Changes
1218
+
1219
+ - effect-app@4.0.0-beta.43
1220
+
1221
+ ## 4.0.0-beta.42
1222
+
1223
+ ### Patch Changes
1224
+
1225
+ - d195003: Fix numeric field type detection in `getMetadataFromSchema` for Effect v4 JSON schema output. `S.Number` now emits `anyOf` instead of a top-level `type: "number"`, causing fields to fall back to `"text"`. Detection now recurses through `anyOf`/`oneOf`/`allOf` to find the underlying numeric type.
1226
+ - effect-app@4.0.0-beta.42
1227
+
1228
+ ## 4.0.0-beta.41
1229
+
1230
+ ### Patch Changes
1231
+
1232
+ - 702d51c: also make runSync version available\
1233
+ - effect-app@4.0.0-beta.41
1234
+
1235
+ ## 4.0.0-beta.40
1236
+
1237
+ ### Patch Changes
1238
+
1239
+ - 18fd1df: unify runPromise
1240
+ - effect-app@4.0.0-beta.40
1241
+
1242
+ ## 4.0.0-beta.39
1243
+
1244
+ ### Patch Changes
1245
+
1246
+ - Updated dependencies [10e90d5]
1247
+ - effect-app@4.0.0-beta.39
1248
+
1249
+ ## 4.0.0-beta.38
1250
+
1251
+ ### Patch Changes
1252
+
1253
+ - Updated dependencies [0b3e00e]
1254
+ - effect-app@4.0.0-beta.38
1255
+
1256
+ ## 4.0.0-beta.37
1257
+
1258
+ ### Patch Changes
1259
+
1260
+ - 04fc985: Fixes error handling
1261
+ - Updated dependencies [947fe20]
1262
+ - effect-app@4.0.0-beta.37
1263
+
1264
+ ## 4.0.0-beta.36
1265
+
1266
+ ### Patch Changes
1267
+
1268
+ - effect-app@4.0.0-beta.36
1269
+
1270
+ ## 4.0.0-beta.35
1271
+
1272
+ ### Patch Changes
1273
+
1274
+ - effect-app@4.0.0-beta.35
1275
+
1276
+ ## 4.0.0-beta.34
1277
+
1278
+ ### Patch Changes
1279
+
1280
+ - 8c645d5: update to latest effect
1281
+ - Updated dependencies [8c645d5]
1282
+ - effect-app@4.0.0-beta.34
1283
+
1284
+ ## 4.0.0-beta.33
1285
+
1286
+ ### Patch Changes
1287
+
1288
+ - 4b95009: use Finite instead of Number
1289
+ - 7328c76: add deprecation notices
1290
+ - Updated dependencies [4b95009]
1291
+ - effect-app@4.0.0-beta.33
1292
+
1293
+ ## 4.0.0-beta.32
1294
+
1295
+ ### Patch Changes
1296
+
1297
+ - Updated dependencies [01d862a]
1298
+ - effect-app@4.0.0-beta.32
1299
+
1300
+ ## 4.0.0-beta.31
1301
+
1302
+ ### Patch Changes
1303
+
1304
+ - Updated dependencies [6b6d601]
1305
+ - effect-app@4.0.0-beta.31
1306
+
1307
+ ## 4.0.0-beta.30
1308
+
1309
+ ### Patch Changes
1310
+
1311
+ - Updated dependencies [5ec1f45]
1312
+ - effect-app@4.0.0-beta.30
1313
+
1314
+ ## 4.0.0-beta.29
1315
+
1316
+ ### Patch Changes
1317
+
1318
+ - Updated dependencies [a899d46]
1319
+ - effect-app@4.0.0-beta.29
1320
+
1321
+ ## 4.0.0-beta.28
1322
+
1323
+ ### Patch Changes
1324
+
1325
+ - Updated dependencies [0099208]
1326
+ - effect-app@4.0.0-beta.28
1327
+
1328
+ ## 4.0.0-beta.27
1329
+
1330
+ ### Patch Changes
1331
+
1332
+ - 601a1ff: update effect to 4.0.0-beta.37 and drop the Schema Class disableValidation workaround now that the patched effect schema covers it
1333
+ - Updated dependencies [601a1ff]
1334
+ - effect-app@4.0.0-beta.27
1335
+
1336
+ ## 4.0.0-beta.26
1337
+
1338
+ ### Patch Changes
1339
+
1340
+ - Updated dependencies [4da28e2]
1341
+ - effect-app@4.0.0-beta.26
1342
+
1343
+ ## 4.0.0-beta.25
1344
+
1345
+ ### Patch Changes
1346
+
1347
+ - Updated dependencies [6282d4b]
1348
+ - effect-app@4.0.0-beta.25
1349
+
1350
+ ## 4.0.0-beta.24
1351
+
1352
+ ### Patch Changes
1353
+
1354
+ - Updated dependencies [32f71bf]
1355
+ - effect-app@4.0.0-beta.24
1356
+
1357
+ ## 4.0.0-beta.23
1358
+
1359
+ ### Patch Changes
1360
+
1361
+ - Updated dependencies [ea08a79]
1362
+ - effect-app@4.0.0-beta.23
1363
+
1364
+ ## 4.0.0-beta.22
1365
+
1366
+ ### Patch Changes
1367
+
1368
+ - effect-app@4.0.0-beta.22
1369
+
1370
+ ## 4.0.0-beta.21
1371
+
1372
+ ### Patch Changes
1373
+
1374
+ - 75c72ee: update effect to 4.0.0-beta.36, adapt to Option<A> revert from A | undefined
1375
+ - Updated dependencies [0d349e7]
1376
+ - Updated dependencies [75c72ee]
1377
+ - effect-app@4.0.0-beta.21
1378
+
1379
+ ## 4.0.0-beta.20
1380
+
1381
+ ### Patch Changes
1382
+
1383
+ - Updated dependencies [aa921db]
1384
+ - effect-app@4.0.0-beta.20
1385
+
3
1386
  ## 4.0.0-beta.19
4
1387
 
5
1388
  ### Patch Changes