zod 3.23.6 → 3.23.7
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/README.md +4 -0
- package/lib/helpers/util.d.ts +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
- [Gold](#gold)
|
|
54
54
|
- [Silver](#silver)
|
|
55
55
|
- [Bronze](#bronze)
|
|
56
|
+
- [Copper](#copper)
|
|
56
57
|
- [Ecosystem](#ecosystem)
|
|
57
58
|
- [Resources](#resources)
|
|
58
59
|
- [API libraries](#api-libraries)
|
|
@@ -323,6 +324,9 @@ Sponsorship at any level is appreciated and encouraged. For individual developer
|
|
|
323
324
|
<td>Mohammad-Ali A'râbi</td>
|
|
324
325
|
<td>Supatool</td>
|
|
325
326
|
</tr>
|
|
327
|
+
<tr>
|
|
328
|
+
<td>Social Crow</td>
|
|
329
|
+
</tr>
|
|
326
330
|
</table>
|
|
327
331
|
|
|
328
332
|
### Ecosystem
|
package/lib/helpers/util.d.ts
CHANGED
|
@@ -50,7 +50,9 @@ export declare namespace objectUtil {
|
|
|
50
50
|
}>;
|
|
51
51
|
export const mergeShapes: <U, T>(first: U, second: T) => T & U;
|
|
52
52
|
export type extendShape<A extends object, B extends object> = {
|
|
53
|
-
[K in keyof A
|
|
53
|
+
[K in keyof A as K extends keyof B ? never : K]: A[K];
|
|
54
|
+
} & {
|
|
55
|
+
[K in keyof B]: B[K];
|
|
54
56
|
};
|
|
55
57
|
export {};
|
|
56
58
|
}
|