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

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