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

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