@effect-app/vue 4.0.0-beta.18 → 4.0.0-beta.181

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 (100) hide show
  1. package/CHANGELOG.md +1275 -0
  2. package/dist/commander.d.ts +450 -0
  3. package/dist/commander.d.ts.map +1 -0
  4. package/dist/commander.js +687 -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 -290
  22. package/dist/makeClient.d.ts.map +1 -1
  23. package/dist/makeClient.js +231 -361
  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 +57 -25
  32. package/dist/mutate.d.ts.map +1 -1
  33. package/dist/mutate.js +160 -33
  34. package/dist/query.d.ts +11 -15
  35. package/dist/query.d.ts.map +1 -1
  36. package/dist/query.js +19 -27
  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 +49 -0
  47. package/eslint.config.mjs +2 -2
  48. package/examples/streamMutation.ts +85 -0
  49. package/package.json +48 -48
  50. package/src/{experimental/commander.ts → commander.ts} +1158 -275
  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 +670 -1038
  57. package/src/{experimental/makeUseCommand.ts → makeUseCommand.ts} +4 -4
  58. package/src/mutate.ts +306 -72
  59. package/src/query.ts +39 -50
  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} +15 -6
  63. package/test/Mutation.test.ts +130 -10
  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/stubs.d.ts +3220 -117
  68. package/test/dist/stubs.d.ts.map +1 -1
  69. package/test/dist/stubs.js +132 -25
  70. package/test/form-validation-errors.test.ts +23 -19
  71. package/test/form.test.ts +20 -2
  72. package/test/lib.test.ts +240 -0
  73. package/test/makeClient.test.ts +240 -38
  74. package/test/streamFinal.test.ts +110 -0
  75. package/test/stubs.ts +172 -42
  76. package/tsconfig.examples.json +20 -0
  77. package/tsconfig.json +0 -1
  78. package/tsconfig.json.bak +5 -2
  79. package/tsconfig.src.json +34 -34
  80. package/tsconfig.test.json +2 -2
  81. package/vitest.config.ts +5 -5
  82. package/dist/experimental/commander.d.ts +0 -359
  83. package/dist/experimental/commander.d.ts.map +0 -1
  84. package/dist/experimental/commander.js +0 -557
  85. package/dist/experimental/confirm.d.ts +0 -19
  86. package/dist/experimental/confirm.d.ts.map +0 -1
  87. package/dist/experimental/confirm.js +0 -28
  88. package/dist/experimental/intl.d.ts +0 -16
  89. package/dist/experimental/intl.d.ts.map +0 -1
  90. package/dist/experimental/intl.js +0 -5
  91. package/dist/experimental/makeUseCommand.d.ts +0 -8
  92. package/dist/experimental/makeUseCommand.d.ts.map +0 -1
  93. package/dist/experimental/makeUseCommand.js +0 -13
  94. package/dist/experimental/toast.d.ts +0 -47
  95. package/dist/experimental/toast.d.ts.map +0 -1
  96. package/dist/experimental/toast.js +0 -41
  97. package/dist/experimental/withToast.d.ts +0 -25
  98. package/dist/experimental/withToast.d.ts.map +0 -1
  99. package/dist/experimental/withToast.js +0 -45
  100. package/src/experimental/intl.ts +0 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,1280 @@
1
1
  # @effect-app/vue
2
2
 
3
+ ## 4.0.0-beta.181
4
+
5
+ ### Minor Changes
6
+
7
+ - 4bbeb19: Add `wrapStream` support to `Command` with separate `result` and `running` props.
8
+
9
+ **Key design:**
10
+
11
+ - `result` is always the command's own execution outcome (from `asResult`)
12
+ - `running` holds the stream's live `AsyncResult` ref for progress tracking
13
+
14
+ **New behaviour:**
15
+
16
+ - `CommanderImpl.wrapStream(mutation)` returns a callable like `wrap` — `wrapStream(mutation)()` gives `CommandOut`.
17
+ - Accepts either `{ id, mutateStream: [...] }` or the augmented tuple directly (when `.id` is attached).
18
+ - `Command.wrap` now accepts `{ mutateStream, id }` and the augmented tuple — both delegate to `wrapStream`.
19
+ - `FnOptions.progress` — pass a `ComputedRef<AsyncResult>` to any `fn`-created command; surfaces as `running`.
20
+ - `StreamMutationWithExtensions` now includes `.id` on the tuple.
21
+ - Stream client entries expose `wrapStream` (callable), `fn`, and `mutateStream` (with `.id`).
22
+ - Stream mutation helpers also carry `.fn` and `.id`.
23
+
24
+ ```ts
25
+ // Via client entry:
26
+ const exportCmd = Command.wrapStream(client.myExport)();
27
+ // exportCmd.result = own execution result; exportCmd.running = live stream AsyncResult
28
+
29
+ // Via mutateStream tuple (id is attached):
30
+ const exportCmd = Command.wrapStream(client.myExport.mutateStream)();
31
+
32
+ // wrap also accepts the tuple:
33
+ const exportCmd = Command.wrap(client.myExport.mutateStream)();
34
+
35
+ // fn with external progress:
36
+ const cmd = Command.fn({
37
+ id: "myExport",
38
+ progress: client.myExport.mutateStream[0],
39
+ })(function* (arg) {
40
+ yield* client.myExport.mutateStream[1](arg);
41
+ });
42
+ // cmd.running === the stream AsyncResult ref
43
+ ```
44
+
45
+ ### Patch Changes
46
+
47
+ - 583393f: Default the stream `mutateStream` execute resolved value to the request's success type when no `final` schema is declared.
48
+
49
+ 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.
50
+
51
+ - Updated dependencies [583393f]
52
+ - effect-app@4.0.0-beta.181
53
+
54
+ ## 4.0.0-beta.180
55
+
56
+ ### Minor Changes
57
+
58
+ - 7fa3045: V1/V2/V3: stream and command requests carry invalidation metadata
59
+
60
+ **V1** – stream final response includes metadata
61
+
62
+ - `Invalidation.StreamResponseChunk` wraps each stream item as `{ _tag: "value", value }` and appends `{ _tag: "done", metadata }` at the end carrying all accumulated invalidation keys.
63
+
64
+ **V2** – invalidation keys included in failures
65
+
66
+ - `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.
67
+ - `InvalidationMiddlewareLive` wraps command failures; `routing.ts` wraps stream failures.
68
+ - `apiClientFactory.ts` unwraps both on the client side, forwarding keys before re-failing with the original error.
69
+
70
+ **V3** – mid-stream metadata chunks
71
+
72
+ - `Invalidation.StreamResponseChunk` now also includes `{ _tag: "metadata", metadata }` for mid-stream invalidation.
73
+ - 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`).
74
+ - `apiClientFactory.ts` processes "metadata" chunks the same as "done" chunks, forwarding keys to `InvalidationKeysFromServer` immediately.
75
+ - `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.
76
+
77
+ ### Patch Changes
78
+
79
+ - Updated dependencies [7fa3045]
80
+ - effect-app@4.0.0-beta.180
81
+
82
+ ## 4.0.0-beta.179
83
+
84
+ ### Minor Changes
85
+
86
+ - 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`.
87
+
88
+ ```ts
89
+ class MyStream extends SomethingStream<MyStream>()(
90
+ "MyStream",
91
+ { id: S.String },
92
+ {
93
+ success: S.Union([OperationProgress, ExportComplete]),
94
+ final: ExportComplete, // execute now resolves with ExportComplete
95
+ }
96
+ ) {}
97
+ ```
98
+
99
+ ### Patch Changes
100
+
101
+ - Updated dependencies [828d264]
102
+ - effect-app@4.0.0-beta.179
103
+
104
+ ## 4.0.0-beta.178
105
+
106
+ ### Minor Changes
107
+
108
+ - 07dd7b9: Add `asStreamResult` utility and stream-based mutation example.
109
+
110
+ `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`.
111
+
112
+ 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.
113
+
114
+ ### Patch Changes
115
+
116
+ - effect-app@4.0.0-beta.178
117
+
118
+ ## 4.0.0-beta.177
119
+
120
+ ### Patch Changes
121
+
122
+ - Updated dependencies [89d8b3a]
123
+ - effect-app@4.0.0-beta.177
124
+
125
+ ## 4.0.0-beta.176
126
+
127
+ ### Patch Changes
128
+
129
+ - pass options
130
+ - Updated dependencies
131
+ - effect-app@4.0.0-beta.176
132
+
133
+ ## 4.0.0-beta.175
134
+
135
+ ### Minor Changes
136
+
137
+ - 28777c1: Add `select` option to `MutationOptionsBase` for a second cache invalidation after long-running operations.
138
+
139
+ When `select` is provided, cache invalidation fires twice:
140
+
141
+ 1. Immediately when the mutation completes (existing behaviour).
142
+ 2. Again after the `select` effect finishes — useful for polling or waiting for a background job before refreshing data.
143
+
144
+ ```ts
145
+ useMutation(startExportCommand, {
146
+ select: (result) => pollUntilDone(result.jobId),
147
+ });
148
+ ```
149
+
150
+ ### Patch Changes
151
+
152
+ - 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.
153
+ - effect-app@4.0.0-beta.175
154
+
155
+ ## 4.0.0-beta.174
156
+
157
+ ### Minor Changes
158
+
159
+ - 821468d: Add server-driven cache invalidation via RPC response headers.
160
+
161
+ - `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.
162
+ - `effect-app/middleware`: new `InvalidationMiddleware` RPC middleware tag; included in `DefaultGenericMiddlewares`.
163
+ - `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`.
164
+ - `@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.
165
+ - `@effect-app/vue`: `invalidateQueries` / `useMutation` now reads server-provided invalidation keys from `InvalidationKeysFromServer` after each mutation and applies them alongside the client-side invalidation.
166
+
167
+ ### Patch Changes
168
+
169
+ - 1b38043: Fix lint: use typescript ~6.0.3 instead of native-preview for ESLint compatibility; keep tsgo for compilation
170
+ - 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.
171
+ - Updated dependencies [821468d]
172
+ - effect-app@4.0.0-beta.174
173
+
174
+ ## 4.0.0-beta.173
175
+
176
+ ### Patch Changes
177
+
178
+ - 4149577: fix queryresources
179
+ - effect-app@4.0.0-beta.173
180
+
181
+ ## 4.0.0-beta.172
182
+
183
+ ### Patch Changes
184
+
185
+ - effect-app@4.0.0-beta.172
186
+
187
+ ## 4.0.0-beta.171
188
+
189
+ ### Patch Changes
190
+
191
+ - d71d976: fix
192
+ - Updated dependencies [d71d976]
193
+ - effect-app@4.0.0-beta.171
194
+
195
+ ## 4.0.0-beta.170
196
+
197
+ ### Patch Changes
198
+
199
+ - 8f09f77: fix
200
+ - Updated dependencies [8f09f77]
201
+ - effect-app@4.0.0-beta.170
202
+
203
+ ## 4.0.0-beta.169
204
+
205
+ ### Patch Changes
206
+
207
+ - 8ae8b53: input mess
208
+ - Updated dependencies [8ae8b53]
209
+ - effect-app@4.0.0-beta.169
210
+
211
+ ## 4.0.0-beta.168
212
+
213
+ ### Patch Changes
214
+
215
+ - Updated dependencies [178480a]
216
+ - effect-app@4.0.0-beta.168
217
+
218
+ ## 4.0.0-beta.167
219
+
220
+ ### Patch Changes
221
+
222
+ - 140e192: Relax invalidation resource value constraints to allow arbitrary values while preserving query-only filtering in invalidation handling.
223
+ - Updated dependencies [140e192]
224
+ - effect-app@4.0.0-beta.167
225
+
226
+ ## 4.0.0-beta.166
227
+
228
+ ### Patch Changes
229
+
230
+ - 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.
231
+ - Updated dependencies [dbcc53b]
232
+ - effect-app@4.0.0-beta.166
233
+
234
+ ## 4.0.0-beta.165
235
+
236
+ ### Patch Changes
237
+
238
+ - 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.
239
+ - 66fd718: Require `clientFor` invalidation resources when any command in the client configures them.
240
+ - Updated dependencies [f88ea34]
241
+ - effect-app@4.0.0-beta.165
242
+
243
+ ## 4.0.0-beta.164
244
+
245
+ ### Minor Changes
246
+
247
+ - 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.
248
+
249
+ ### Patch Changes
250
+
251
+ - Updated dependencies [8cb3de4]
252
+ - effect-app@4.0.0-beta.164
253
+
254
+ ## 4.0.0-beta.163
255
+
256
+ ### Patch Changes
257
+
258
+ - b952f19: bye cruft
259
+ - Updated dependencies [b952f19]
260
+ - effect-app@4.0.0-beta.163
261
+
262
+ ## 4.0.0-beta.162
263
+
264
+ ### Patch Changes
265
+
266
+ - Updated dependencies [b52b424]
267
+ - effect-app@4.0.0-beta.162
268
+
269
+ ## 4.0.0-beta.161
270
+
271
+ ### Patch Changes
272
+
273
+ - 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.
274
+ - effect-app@4.0.0-beta.161
275
+
276
+ ## 4.0.0-beta.160
277
+
278
+ ### Patch Changes
279
+
280
+ - 505bfa9: Add concurrent decode helper APIs and migrate decode callsites to use them.
281
+
282
+ - Add `withDefaultParseOptions` and keep `DefaultParseOptions` centralized.
283
+ - Export `decodeEffectConcurrently` and `decodeUnknownEffectConcurrently` from Schema and SchemaParser modules.
284
+ - Update repository, queue, client, form, and CLI decode paths to use concurrent decode helpers.
285
+ - Keep schema constructors free of hardcoded parse concurrency overrides.
286
+
287
+ - Updated dependencies [505bfa9]
288
+ - effect-app@4.0.0-beta.160
289
+
290
+ ## 4.0.0-beta.159
291
+
292
+ ### Patch Changes
293
+
294
+ - c1e73de:
295
+ - Updated dependencies [c1e73de]
296
+ - effect-app@4.0.0-beta.159
297
+
298
+ ## 4.0.0-beta.158
299
+
300
+ ### Patch Changes
301
+
302
+ - Updated dependencies [3c1f52d]
303
+ - Updated dependencies [6ae3050]
304
+ - effect-app@4.0.0-beta.158
305
+
306
+ ## 4.0.0-beta.157
307
+
308
+ ### Patch Changes
309
+
310
+ - Updated dependencies [6fff09c]
311
+ - effect-app@4.0.0-beta.157
312
+
313
+ ## 4.0.0-beta.156
314
+
315
+ ### Patch Changes
316
+
317
+ - 4bc4a27: Constrain `project` schema to require matching `Encoded` type with original success schema
318
+ - effect-app@4.0.0-beta.156
319
+
320
+ ## 4.0.0-beta.155
321
+
322
+ ### Patch Changes
323
+
324
+ - 2e4c018: feat: add client projection
325
+ - Updated dependencies [c215db8]
326
+ - effect-app@4.0.0-beta.155
327
+
328
+ ## 4.0.0-beta.154
329
+
330
+ ### Patch Changes
331
+
332
+ - 3200fa8: apply the remaining formatting and autofix cleanup across the vue packages
333
+ - effect-app@4.0.0-beta.154
334
+
335
+ ## 4.0.0-beta.153
336
+
337
+ ### Patch Changes
338
+
339
+ - effect-app@4.0.0-beta.153
340
+
341
+ ## 4.0.0-beta.152
342
+
343
+ ### Patch Changes
344
+
345
+ - effect-app@4.0.0-beta.152
346
+
347
+ ## 4.0.0-beta.151
348
+
349
+ ### Patch Changes
350
+
351
+ - effect-app@4.0.0-beta.151
352
+
353
+ ## 4.0.0-beta.150
354
+
355
+ ### Patch Changes
356
+
357
+ - Updated dependencies [85a8275]
358
+ - effect-app@4.0.0-beta.150
359
+
360
+ ## 4.0.0-beta.149
361
+
362
+ ### Patch Changes
363
+
364
+ - Updated dependencies [f317c5e]
365
+ - effect-app@4.0.0-beta.149
366
+
367
+ ## 4.0.0-beta.148
368
+
369
+ ### Patch Changes
370
+
371
+ - Updated dependencies [199e9a5]
372
+ - effect-app@4.0.0-beta.148
373
+
374
+ ## 4.0.0-beta.147
375
+
376
+ ### Patch Changes
377
+
378
+ - Updated dependencies [47e3742]
379
+ - effect-app@4.0.0-beta.147
380
+
381
+ ## 4.0.0-beta.146
382
+
383
+ ### Patch Changes
384
+
385
+ - Updated dependencies [a4dff57]
386
+ - effect-app@4.0.0-beta.146
387
+
388
+ ## 4.0.0-beta.145
389
+
390
+ ### Patch Changes
391
+
392
+ - Updated dependencies [12abb55]
393
+ - effect-app@4.0.0-beta.145
394
+
395
+ ## 4.0.0-beta.144
396
+
397
+ ### Patch Changes
398
+
399
+ - 11422f8: Update request helper typing and runtime invocation to rely on schema `.make` instead of class constructors, avoiding `new`-based assumptions for request schemas.
400
+ - Updated dependencies [11422f8]
401
+ - Updated dependencies [d31253f]
402
+ - effect-app@4.0.0-beta.144
403
+
404
+ ## 4.0.0-beta.143
405
+
406
+ ### Patch Changes
407
+
408
+ - Updated dependencies [79eb019]
409
+ - effect-app@4.0.0-beta.143
410
+
411
+ ## 4.0.0-beta.142
412
+
413
+ ### Patch Changes
414
+
415
+ - Updated dependencies [3436d44]
416
+ - Updated dependencies [025de47]
417
+ - effect-app@4.0.0-beta.142
418
+
419
+ ## 4.0.0-beta.141
420
+
421
+ ### Patch Changes
422
+
423
+ - Updated dependencies [7c25dbb]
424
+ - effect-app@4.0.0-beta.141
425
+
426
+ ## 4.0.0-beta.140
427
+
428
+ ### Patch Changes
429
+
430
+ - effect-app@4.0.0-beta.140
431
+
432
+ ## 4.0.0-beta.139
433
+
434
+ ### Patch Changes
435
+
436
+ - ba61aad: raw dog
437
+ - effect-app@4.0.0-beta.139
438
+
439
+ ## 4.0.0-beta.138
440
+
441
+ ### Patch Changes
442
+
443
+ - 9be71e1: fix: double guard
444
+ - effect-app@4.0.0-beta.138
445
+
446
+ ## 4.0.0-beta.137
447
+
448
+ ### Patch Changes
449
+
450
+ - effect-app@4.0.0-beta.137
451
+
452
+ ## 4.0.0-beta.136
453
+
454
+ ### Patch Changes
455
+
456
+ - effect-app@4.0.0-beta.136
457
+
458
+ ## 4.0.0-beta.135
459
+
460
+ ### Patch Changes
461
+
462
+ - Updated dependencies [c7bbc41]
463
+ - effect-app@4.0.0-beta.135
464
+
465
+ ## 4.0.0-beta.134
466
+
467
+ ### Patch Changes
468
+
469
+ - Updated dependencies [9d3495e]
470
+ - Updated dependencies [f353d48]
471
+ - effect-app@4.0.0-beta.134
472
+
473
+ ## 4.0.0-beta.133
474
+
475
+ ### Patch Changes
476
+
477
+ - 99a2e9b: Use warning toasts for expected commander failures, while keeping unexpected errors as error toasts.
478
+ - c3299f7: update packages
479
+ - Updated dependencies [c3299f7]
480
+ - effect-app@4.0.0-beta.133
481
+
482
+ ## 4.0.0-beta.132
483
+
484
+ ### Patch Changes
485
+
486
+ - 8753c52: render
487
+ - effect-app@4.0.0-beta.132
488
+
489
+ ## 4.0.0-beta.131
490
+
491
+ ### Patch Changes
492
+
493
+ - 1b57aa4: Add a `Commander` error-renderer registry via `Context.Reference` and apply registered guarded renderers before default error formatting.
494
+ - effect-app@4.0.0-beta.131
495
+
496
+ ## 4.0.0-beta.130
497
+
498
+ ### Patch Changes
499
+
500
+ - fc41dcf: add trace id and span id to toasts
501
+ - Updated dependencies [ea1bd46]
502
+ - effect-app@4.0.0-beta.130
503
+
504
+ ## 4.0.0-beta.129
505
+
506
+ ### Patch Changes
507
+
508
+ - 34f6a97: fix missing fn
509
+ - effect-app@4.0.0-beta.129
510
+
511
+ ## 4.0.0-beta.128
512
+
513
+ ### Patch Changes
514
+
515
+ - 57db551: Split `TaggedRequestFor` into `Query` and `Command` factories, and mark generated request classes with `type: "query" | "command"`.
516
+
517
+ Vue client helpers now expose query-only helpers (`query`, `suspense`, `fetch`) for query requests and mutation-only helpers (`mutate`, `fetch`) for command requests.
518
+
519
+ - Updated dependencies [57db551]
520
+ - effect-app@4.0.0-beta.128
521
+
522
+ ## 4.0.0-beta.127
523
+
524
+ ### Minor Changes
525
+
526
+ - 6a3d364: Client entries are now plain objects; use `.request` to invoke the request.
527
+
528
+ `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.
529
+
530
+ ### Patch Changes
531
+
532
+ - effect-app@4.0.0-beta.127
533
+
534
+ ## 4.0.0-beta.126
535
+
536
+ ### Patch Changes
537
+
538
+ - Updated dependencies [458bb1b]
539
+ - effect-app@4.0.0-beta.126
540
+
541
+ ## 4.0.0-beta.125
542
+
543
+ ### Patch Changes
544
+
545
+ - effect-app@4.0.0-beta.125
546
+
547
+ ## 4.0.0-beta.124
548
+
549
+ ### Patch Changes
550
+
551
+ - 256ae85: cleanup
552
+ - Updated dependencies [256ae85]
553
+ - effect-app@4.0.0-beta.124
554
+
555
+ ## 4.0.0-beta.123
556
+
557
+ ### Patch Changes
558
+
559
+ - Updated dependencies [14aba14]
560
+ - effect-app@4.0.0-beta.123
561
+
562
+ ## 4.0.0-beta.122
563
+
564
+ ### Patch Changes
565
+
566
+ - 07a57b6: Limit `client.method.mutate` extensions to only expose the mutation call and `wrap`.
567
+ - f052d38: Replace `(...) => Effect.gen` with `Effect.fnUntraced` in commander `withDefaultToast`.
568
+ - Updated dependencies [f052d38]
569
+ - effect-app@4.0.0-beta.122
570
+
571
+ ## 4.0.0-beta.121
572
+
573
+ ### Patch Changes
574
+
575
+ - Updated dependencies [5ac46cb]
576
+ - effect-app@4.0.0-beta.121
577
+
578
+ ## 4.0.0-beta.120
579
+
580
+ ### Patch Changes
581
+
582
+ - Updated dependencies [f21190c]
583
+ - effect-app@4.0.0-beta.120
584
+
585
+ ## 4.0.0-beta.119
586
+
587
+ ### Patch Changes
588
+
589
+ - effect-app@4.0.0-beta.119
590
+
591
+ ## 4.0.0-beta.118
592
+
593
+ ### Patch Changes
594
+
595
+ - Update effect packages to 4.0.0-beta.52
596
+ - Updated dependencies [bd26832]
597
+ - Updated dependencies [08d2e70]
598
+ - Updated dependencies
599
+ - effect-app@4.0.0-beta.118
600
+
601
+ ## 4.0.0-beta.117
602
+
603
+ ### Patch Changes
604
+
605
+ - effect-app@4.0.0-beta.117
606
+
607
+ ## 4.0.0-beta.116
608
+
609
+ ### Patch Changes
610
+
611
+ - effect-app@4.0.0-beta.116
612
+
613
+ ## 4.0.0-beta.115
614
+
615
+ ### Patch Changes
616
+
617
+ - effect-app@4.0.0-beta.115
618
+
619
+ ## 4.0.0-beta.114
620
+
621
+ ### Patch Changes
622
+
623
+ - effect-app@4.0.0-beta.114
624
+
625
+ ## 4.0.0-beta.113
626
+
627
+ ### Patch Changes
628
+
629
+ - effect-app@4.0.0-beta.113
630
+
631
+ ## 4.0.0-beta.112
632
+
633
+ ### Patch Changes
634
+
635
+ - effect-app@4.0.0-beta.112
636
+
637
+ ## 4.0.0-beta.111
638
+
639
+ ### Patch Changes
640
+
641
+ - Updated dependencies [ca94edf]
642
+ - effect-app@4.0.0-beta.111
643
+
644
+ ## 4.0.0-beta.110
645
+
646
+ ### Patch Changes
647
+
648
+ - effect-app@4.0.0-beta.110
649
+
650
+ ## 4.0.0-beta.109
651
+
652
+ ### Patch Changes
653
+
654
+ - effect-app@4.0.0-beta.109
655
+
656
+ ## 4.0.0-beta.108
657
+
658
+ ### Patch Changes
659
+
660
+ - Updated dependencies [3e46e7b]
661
+ - effect-app@4.0.0-beta.108
662
+
663
+ ## 4.0.0-beta.107
664
+
665
+ ### Patch Changes
666
+
667
+ - effect-app@4.0.0-beta.107
668
+
669
+ ## 4.0.0-beta.106
670
+
671
+ ### Patch Changes
672
+
673
+ - effect-app@4.0.0-beta.106
674
+
675
+ ## 4.0.0-beta.105
676
+
677
+ ### Patch Changes
678
+
679
+ - effect-app@4.0.0-beta.105
680
+
681
+ ## 4.0.0-beta.104
682
+
683
+ ### Patch Changes
684
+
685
+ - Updated dependencies [e944bca]
686
+ - effect-app@4.0.0-beta.104
687
+
688
+ ## 4.0.0-beta.103
689
+
690
+ ### Patch Changes
691
+
692
+ - Updated dependencies [7119320]
693
+ - effect-app@4.0.0-beta.103
694
+
695
+ ## 4.0.0-beta.102
696
+
697
+ ### Patch Changes
698
+
699
+ - effect-app@4.0.0-beta.102
700
+
701
+ ## 4.0.0-beta.101
702
+
703
+ ### Patch Changes
704
+
705
+ - effect-app@4.0.0-beta.101
706
+
707
+ ## 4.0.0-beta.100
708
+
709
+ ### Patch Changes
710
+
711
+ - effect-app@4.0.0-beta.100
712
+
713
+ ## 4.0.0-beta.99
714
+
715
+ ### Patch Changes
716
+
717
+ - effect-app@4.0.0-beta.99
718
+
719
+ ## 4.0.0-beta.98
720
+
721
+ ### Patch Changes
722
+
723
+ - effect-app@4.0.0-beta.98
724
+
725
+ ## 4.0.0-beta.97
726
+
727
+ ### Patch Changes
728
+
729
+ - effect-app@4.0.0-beta.97
730
+
731
+ ## 4.0.0-beta.96
732
+
733
+ ### Patch Changes
734
+
735
+ - Updated dependencies [5615e47]
736
+ - effect-app@4.0.0-beta.96
737
+
738
+ ## 4.0.0-beta.95
739
+
740
+ ### Patch Changes
741
+
742
+ - Updated dependencies [88838fb]
743
+ - effect-app@4.0.0-beta.95
744
+
745
+ ## 4.0.0-beta.94
746
+
747
+ ### Patch Changes
748
+
749
+ - effect-app@4.0.0-beta.94
750
+
751
+ ## 4.0.0-beta.93
752
+
753
+ ### Patch Changes
754
+
755
+ - effect-app@4.0.0-beta.93
756
+
757
+ ## 4.0.0-beta.92
758
+
759
+ ### Patch Changes
760
+
761
+ - effect-app@4.0.0-beta.92
762
+
763
+ ## 4.0.0-beta.91
764
+
765
+ ### Patch Changes
766
+
767
+ - Updated dependencies [738b482]
768
+ - effect-app@4.0.0-beta.91
769
+
770
+ ## 4.0.0-beta.90
771
+
772
+ ### Patch Changes
773
+
774
+ - effect-app@4.0.0-beta.90
775
+
776
+ ## 4.0.0-beta.89
777
+
778
+ ### Patch Changes
779
+
780
+ - effect-app@4.0.0-beta.89
781
+
782
+ ## 4.0.0-beta.88
783
+
784
+ ### Patch Changes
785
+
786
+ - effect-app@4.0.0-beta.88
787
+
788
+ ## 4.0.0-beta.87
789
+
790
+ ### Patch Changes
791
+
792
+ - effect-app@4.0.0-beta.87
793
+
794
+ ## 4.0.0-beta.86
795
+
796
+ ### Patch Changes
797
+
798
+ - effect-app@4.0.0-beta.86
799
+
800
+ ## 4.0.0-beta.85
801
+
802
+ ### Patch Changes
803
+
804
+ - effect-app@4.0.0-beta.85
805
+
806
+ ## 4.0.0-beta.84
807
+
808
+ ### Patch Changes
809
+
810
+ - effect-app@4.0.0-beta.84
811
+
812
+ ## 4.0.0-beta.83
813
+
814
+ ### Patch Changes
815
+
816
+ - effect-app@4.0.0-beta.83
817
+
818
+ ## 4.0.0-beta.82
819
+
820
+ ### Patch Changes
821
+
822
+ - effect-app@4.0.0-beta.82
823
+
824
+ ## 4.0.0-beta.81
825
+
826
+ ### Patch Changes
827
+
828
+ - effect-app@4.0.0-beta.81
829
+
830
+ ## 4.0.0-beta.80
831
+
832
+ ### Patch Changes
833
+
834
+ - effect-app@4.0.0-beta.80
835
+
836
+ ## 4.0.0-beta.79
837
+
838
+ ### Patch Changes
839
+
840
+ - 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).
841
+ - Updated dependencies [d16845e]
842
+ - effect-app@4.0.0-beta.79
843
+
844
+ ## 4.0.0-beta.78
845
+
846
+ ### Patch Changes
847
+
848
+ - effect-app@4.0.0-beta.78
849
+
850
+ ## 4.0.0-beta.77
851
+
852
+ ### Patch Changes
853
+
854
+ - Updated dependencies [3613e87]
855
+ - effect-app@4.0.0-beta.77
856
+
857
+ ## 4.0.0-beta.76
858
+
859
+ ### Patch Changes
860
+
861
+ - 08d30af: Fix Commander combinator type inference for void Arg and withDefaultToast callbacks
862
+
863
+ - Use `ArgForCombinator` helper to properly resolve `void` args to `undefined` in combinator positions, enabling correct type inference for `withDefaultToast` and other curried combinators
864
+ - Use explicit positional params in `withDefaultToast` options callbacks instead of rest spread, allowing users to omit trailing parameters
865
+
866
+ - fac725d: update effect to latest beta
867
+ - Updated dependencies [a5248a9]
868
+ - Updated dependencies [fac725d]
869
+ - effect-app@4.0.0-beta.76
870
+
871
+ ## 4.0.0-beta.75
872
+
873
+ ### Patch Changes
874
+
875
+ - Updated dependencies [24f0a5a]
876
+ - effect-app@4.0.0-beta.75
877
+
878
+ ## 4.0.0-beta.74
879
+
880
+ ### Patch Changes
881
+
882
+ - Updated dependencies [54ec1ef]
883
+ - effect-app@4.0.0-beta.74
884
+
885
+ ## 4.0.0-beta.73
886
+
887
+ ### Patch Changes
888
+
889
+ - effect-app@4.0.0-beta.73
890
+
891
+ ## 4.0.0-beta.72
892
+
893
+ ### Patch Changes
894
+
895
+ - Updated dependencies [0541f0d]
896
+ - effect-app@4.0.0-beta.72
897
+
898
+ ## 4.0.0-beta.71
899
+
900
+ ### Patch Changes
901
+
902
+ - Updated dependencies [beae3a0]
903
+ - effect-app@4.0.0-beta.71
904
+
905
+ ## 4.0.0-beta.70
906
+
907
+ ### Patch Changes
908
+
909
+ - effect-app@4.0.0-beta.70
910
+
911
+ ## 4.0.0-beta.69
912
+
913
+ ### Patch Changes
914
+
915
+ - dc465e3: update to latest effect beta
916
+ - Updated dependencies [dc465e3]
917
+ - effect-app@4.0.0-beta.69
918
+
919
+ ## 4.0.0-beta.68
920
+
921
+ ### Patch Changes
922
+
923
+ - Updated dependencies [e6f2341]
924
+ - effect-app@4.0.0-beta.68
925
+
926
+ ## 4.0.0-beta.67
927
+
928
+ ### Patch Changes
929
+
930
+ - effect-app@4.0.0-beta.67
931
+
932
+ ## 4.0.0-beta.66
933
+
934
+ ### Patch Changes
935
+
936
+ - Updated dependencies [edc52e4]
937
+ - effect-app@4.0.0-beta.66
938
+
939
+ ## 4.0.0-beta.65
940
+
941
+ ### Minor Changes
942
+
943
+ - 1f103b2: Replace `proxify` with explicit service accessor helpers: `accessFn`, `accessEffectFn`, `accessCn`, `accessEffectCn`.
944
+
945
+ ### Patch Changes
946
+
947
+ - Updated dependencies [31739d7]
948
+ - Updated dependencies [1f103b2]
949
+ - effect-app@4.0.0-beta.65
950
+
951
+ ## 4.0.0-beta.64
952
+
953
+ ### Patch Changes
954
+
955
+ - Updated dependencies [c1a6fdc]
956
+ - effect-app@4.0.0-beta.64
957
+
958
+ ## 4.0.0-beta.63
959
+
960
+ ### Minor Changes
961
+
962
+ - b3ed68a: Remove `legacy` from `makeClient` return and clean up `LegacyMutation`, `LegacyMutationImpl`, and related types.
963
+
964
+ ### Patch Changes
965
+
966
+ - effect-app@4.0.0-beta.63
967
+
968
+ ## 4.0.0-beta.62
969
+
970
+ ### Patch Changes
971
+
972
+ - Updated dependencies [0b21a02]
973
+ - effect-app@4.0.0-beta.62
974
+
975
+ ## 4.0.0-beta.61
976
+
977
+ ### Patch Changes
978
+
979
+ - effect-app@4.0.0-beta.61
980
+
981
+ ## 4.0.0-beta.60
982
+
983
+ ### Patch Changes
984
+
985
+ - effect-app@4.0.0-beta.60
986
+
987
+ ## 4.0.0-beta.59
988
+
989
+ ### Patch Changes
990
+
991
+ - cec026d: update packages
992
+ - Updated dependencies [cec026d]
993
+ - effect-app@4.0.0-beta.59
994
+
995
+ ## 4.0.0-beta.58
996
+
997
+ ### Patch Changes
998
+
999
+ - 7fd35e4: update tanstack/query
1000
+ - effect-app@4.0.0-beta.58
1001
+
1002
+ ## 4.0.0-beta.57
1003
+
1004
+ ### Patch Changes
1005
+
1006
+ - effect-app@4.0.0-beta.57
1007
+
1008
+ ## 4.0.0-beta.56
1009
+
1010
+ ### Patch Changes
1011
+
1012
+ - effect-app@4.0.0-beta.56
1013
+
1014
+ ## 4.0.0-beta.55
1015
+
1016
+ ### Patch Changes
1017
+
1018
+ - eceb3a3: align CauseException
1019
+ - effect-app@4.0.0-beta.55
1020
+
1021
+ ## 4.0.0-beta.54
1022
+
1023
+ ### Patch Changes
1024
+
1025
+ - d867272: the return of `Context`
1026
+ - Updated dependencies [d867272]
1027
+ - effect-app@4.0.0-beta.54
1028
+
1029
+ ## 4.0.0-beta.53
1030
+
1031
+ ### Patch Changes
1032
+
1033
+ - Updated dependencies [ee9694e]
1034
+ - effect-app@4.0.0-beta.53
1035
+
1036
+ ## 4.0.0-beta.52
1037
+
1038
+ ### Patch Changes
1039
+
1040
+ - Updated dependencies [6252808]
1041
+ - effect-app@4.0.0-beta.52
1042
+
1043
+ ## 4.0.0-beta.51
1044
+
1045
+ ### Patch Changes
1046
+
1047
+ - effect-app@4.0.0-beta.51
1048
+
1049
+ ## 4.0.0-beta.50
1050
+
1051
+ ### Patch Changes
1052
+
1053
+ - effect-app@4.0.0-beta.50
1054
+
1055
+ ## 4.0.0-beta.49
1056
+
1057
+ ### Patch Changes
1058
+
1059
+ - Updated dependencies [e585c9c]
1060
+ - effect-app@4.0.0-beta.49
1061
+
1062
+ ## 4.0.0-beta.48
1063
+
1064
+ ### Patch Changes
1065
+
1066
+ - Updated dependencies [0c88f78]
1067
+ - effect-app@4.0.0-beta.48
1068
+
1069
+ ## 4.0.0-beta.47
1070
+
1071
+ ### Patch Changes
1072
+
1073
+ - Updated dependencies [3365758]
1074
+ - effect-app@4.0.0-beta.47
1075
+
1076
+ ## 4.0.0-beta.46
1077
+
1078
+ ### Patch Changes
1079
+
1080
+ - 28a0b29: expose Input
1081
+ - 0c42d67: move out Commander and friends from experimental
1082
+ - effect-app@4.0.0-beta.46
1083
+
1084
+ ## 4.0.0-beta.45
1085
+
1086
+ ### Patch Changes
1087
+
1088
+ - 10b55ff: update packages
1089
+ - Updated dependencies [10b55ff]
1090
+ - effect-app@4.0.0-beta.45
1091
+
1092
+ ## 4.0.0-beta.44
1093
+
1094
+ ### Patch Changes
1095
+
1096
+ - a37aa38: Update to effect beta 43
1097
+ - Updated dependencies [a37aa38]
1098
+ - effect-app@4.0.0-beta.44
1099
+
1100
+ ## 4.0.0-beta.43
1101
+
1102
+ ### Patch Changes
1103
+
1104
+ - effect-app@4.0.0-beta.43
1105
+
1106
+ ## 4.0.0-beta.42
1107
+
1108
+ ### Patch Changes
1109
+
1110
+ - 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.
1111
+ - effect-app@4.0.0-beta.42
1112
+
1113
+ ## 4.0.0-beta.41
1114
+
1115
+ ### Patch Changes
1116
+
1117
+ - 702d51c: also make runSync version available\
1118
+ - effect-app@4.0.0-beta.41
1119
+
1120
+ ## 4.0.0-beta.40
1121
+
1122
+ ### Patch Changes
1123
+
1124
+ - 18fd1df: unify runPromise
1125
+ - effect-app@4.0.0-beta.40
1126
+
1127
+ ## 4.0.0-beta.39
1128
+
1129
+ ### Patch Changes
1130
+
1131
+ - Updated dependencies [10e90d5]
1132
+ - effect-app@4.0.0-beta.39
1133
+
1134
+ ## 4.0.0-beta.38
1135
+
1136
+ ### Patch Changes
1137
+
1138
+ - Updated dependencies [0b3e00e]
1139
+ - effect-app@4.0.0-beta.38
1140
+
1141
+ ## 4.0.0-beta.37
1142
+
1143
+ ### Patch Changes
1144
+
1145
+ - 04fc985: Fixes error handling
1146
+ - Updated dependencies [947fe20]
1147
+ - effect-app@4.0.0-beta.37
1148
+
1149
+ ## 4.0.0-beta.36
1150
+
1151
+ ### Patch Changes
1152
+
1153
+ - effect-app@4.0.0-beta.36
1154
+
1155
+ ## 4.0.0-beta.35
1156
+
1157
+ ### Patch Changes
1158
+
1159
+ - effect-app@4.0.0-beta.35
1160
+
1161
+ ## 4.0.0-beta.34
1162
+
1163
+ ### Patch Changes
1164
+
1165
+ - 8c645d5: update to latest effect
1166
+ - Updated dependencies [8c645d5]
1167
+ - effect-app@4.0.0-beta.34
1168
+
1169
+ ## 4.0.0-beta.33
1170
+
1171
+ ### Patch Changes
1172
+
1173
+ - 4b95009: use Finite instead of Number
1174
+ - 7328c76: add deprecation notices
1175
+ - Updated dependencies [4b95009]
1176
+ - effect-app@4.0.0-beta.33
1177
+
1178
+ ## 4.0.0-beta.32
1179
+
1180
+ ### Patch Changes
1181
+
1182
+ - Updated dependencies [01d862a]
1183
+ - effect-app@4.0.0-beta.32
1184
+
1185
+ ## 4.0.0-beta.31
1186
+
1187
+ ### Patch Changes
1188
+
1189
+ - Updated dependencies [6b6d601]
1190
+ - effect-app@4.0.0-beta.31
1191
+
1192
+ ## 4.0.0-beta.30
1193
+
1194
+ ### Patch Changes
1195
+
1196
+ - Updated dependencies [5ec1f45]
1197
+ - effect-app@4.0.0-beta.30
1198
+
1199
+ ## 4.0.0-beta.29
1200
+
1201
+ ### Patch Changes
1202
+
1203
+ - Updated dependencies [a899d46]
1204
+ - effect-app@4.0.0-beta.29
1205
+
1206
+ ## 4.0.0-beta.28
1207
+
1208
+ ### Patch Changes
1209
+
1210
+ - Updated dependencies [0099208]
1211
+ - effect-app@4.0.0-beta.28
1212
+
1213
+ ## 4.0.0-beta.27
1214
+
1215
+ ### Patch Changes
1216
+
1217
+ - 601a1ff: update effect to 4.0.0-beta.37 and drop the Schema Class disableValidation workaround now that the patched effect schema covers it
1218
+ - Updated dependencies [601a1ff]
1219
+ - effect-app@4.0.0-beta.27
1220
+
1221
+ ## 4.0.0-beta.26
1222
+
1223
+ ### Patch Changes
1224
+
1225
+ - Updated dependencies [4da28e2]
1226
+ - effect-app@4.0.0-beta.26
1227
+
1228
+ ## 4.0.0-beta.25
1229
+
1230
+ ### Patch Changes
1231
+
1232
+ - Updated dependencies [6282d4b]
1233
+ - effect-app@4.0.0-beta.25
1234
+
1235
+ ## 4.0.0-beta.24
1236
+
1237
+ ### Patch Changes
1238
+
1239
+ - Updated dependencies [32f71bf]
1240
+ - effect-app@4.0.0-beta.24
1241
+
1242
+ ## 4.0.0-beta.23
1243
+
1244
+ ### Patch Changes
1245
+
1246
+ - Updated dependencies [ea08a79]
1247
+ - effect-app@4.0.0-beta.23
1248
+
1249
+ ## 4.0.0-beta.22
1250
+
1251
+ ### Patch Changes
1252
+
1253
+ - effect-app@4.0.0-beta.22
1254
+
1255
+ ## 4.0.0-beta.21
1256
+
1257
+ ### Patch Changes
1258
+
1259
+ - 75c72ee: update effect to 4.0.0-beta.36, adapt to Option<A> revert from A | undefined
1260
+ - Updated dependencies [0d349e7]
1261
+ - Updated dependencies [75c72ee]
1262
+ - effect-app@4.0.0-beta.21
1263
+
1264
+ ## 4.0.0-beta.20
1265
+
1266
+ ### Patch Changes
1267
+
1268
+ - Updated dependencies [aa921db]
1269
+ - effect-app@4.0.0-beta.20
1270
+
1271
+ ## 4.0.0-beta.19
1272
+
1273
+ ### Patch Changes
1274
+
1275
+ - Updated dependencies [ffc10a4]
1276
+ - effect-app@4.0.0-beta.19
1277
+
3
1278
  ## 4.0.0-beta.18
4
1279
 
5
1280
  ### Patch Changes