New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

myzod

Package Overview
Dependencies
Maintainers
1
Versions
92
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

myzod - npm Package Compare versions

Comparing version 0.0.24 to 0.0.25

7

libs/index.d.ts

@@ -84,2 +84,5 @@ declare abstract class Type<T> {

};
declare type DeepPartialShape<T extends ObjectShape> = {
[key in keyof T]: T[key] extends ObjectType<infer K> ? UnionType<[ObjectType<DeepPartialShape<K>>, UndefinedType]> : UnionType<[T[key], UndefinedType]>;
};
declare class ObjectType<T extends ObjectShape> extends Type<Eval<InferObjectShape<T>>> {

@@ -94,3 +97,3 @@ private readonly objectShape;

deep: true;
} ? DeepPartial<PartialShape<T>> : PartialShape<T>>>;
} ? DeepPartialShape<T> : PartialShape<T>>>;
}

@@ -155,3 +158,3 @@ declare class RecordType<T extends AnyType> extends Type<Record<string, Infer<T>>> {

declare type DeepPartial<T> = {
[key in keyof T]?: T[key] extends Object ? DeepPartial<T[key]> : T[key];
[key in keyof T]?: T[key] extends Object ? Eval<DeepPartial<T[key]>> : T[key];
};

@@ -158,0 +161,0 @@ declare type PartialOpts = {

{
"name": "myzod",
"version": "0.0.24",
"version": "0.0.25",
"description": "",

@@ -5,0 +5,0 @@ "main": "./libs/index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc