effect-app 4.0.0-beta.144 → 4.0.0-beta.146
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.
- package/CHANGELOG.md +12 -0
- package/dist/Operations.d.ts +969 -9
- package/dist/Operations.d.ts.map +1 -1
- package/dist/Schema/Class.d.ts +2 -2
- package/dist/Schema/Class.d.ts.map +1 -1
- package/dist/Schema.d.ts +9 -5
- package/dist/Schema.d.ts.map +1 -1
- package/dist/Schema.js +6 -6
- package/dist/utils.js +1 -1
- package/package.json +1 -1
- package/src/Schema.ts +16 -10
- package/src/utils.ts +1 -1
- package/test/special.test.ts +48 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @effect-app/prelude
|
|
2
2
|
|
|
3
|
+
## 4.0.0-beta.146
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a4dff57: Adjust Struct and TaggedStruct copy typing to follow class-style widening constraints while keeping structural copy runtime behavior.
|
|
8
|
+
|
|
9
|
+
## 4.0.0-beta.145
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 12abb55: Refine schema copy behavior by keeping class copy constructor-based while using structural copy for Struct and TaggedStruct helpers.
|
|
14
|
+
|
|
3
15
|
## 4.0.0-beta.144
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|