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

@karmaniverous/entity-tools

Package Overview
Dependencies
Maintainers
0
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@karmaniverous/entity-tools - npm Package Compare versions

Comparing version 0.4.3 to 0.4.4

12

dist/index.d.ts

@@ -154,2 +154,12 @@ /**

/**
* Makes specified properties of T optional.
*
* @typeParam T - The type to make properties optional.
* @typeParam U - The properties to make optional.
*
* @category Utilities
*/
type MakeOptional<T, U extends keyof T> = Omit<T, U> & Partial<Pick<T, U>>;
/**
* A `null` or `undefined` value.

@@ -275,2 +285,2 @@ *

export { type DefaultTranscodeMap, type Entity, type Exactify, type Nil, type PartialTranscodable, type PropertiesNotOfType, type PropertiesOfType, type SortOrder, type TranscodableProperties, type TranscodeMap, type Transcodes, type UntranscodableProperties, type WithRequiredAndNonNullable, defaultTranscodes, isNil, sort };
export { type DefaultTranscodeMap, type Entity, type Exactify, type MakeOptional, type Nil, type PartialTranscodable, type PropertiesNotOfType, type PropertiesOfType, type SortOrder, type TranscodableProperties, type TranscodeMap, type Transcodes, type UntranscodableProperties, type WithRequiredAndNonNullable, defaultTranscodes, isNil, sort };

2

package.json

@@ -129,3 +129,3 @@ {

"types": "dist/index.d.ts",
"version": "0.4.3",
"version": "0.4.4",
"dependencies": {

@@ -132,0 +132,0 @@ "radash": "^12.1.0"

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