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

sjs-base-model

Package Overview
Dependencies
Maintainers
2
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sjs-base-model - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

2

dist/types/BaseModel.types.d.ts

@@ -18,3 +18,3 @@ import { BaseObject } from './BaseObject';

export declare type RecursivePartial<T> = {
[P in keyof T]?: T[P] extends (infer U)[] ? RecursivePartial<U>[] : T[P] extends Record<string, unknown> ? RecursivePartial<T[P]> : T[P];
[P in keyof T]?: T[P] extends (infer U)[] ? RecursivePartial<U>[] : T[P] extends Record<string, any> ? RecursivePartial<T[P]> : T[P];
};
{
"name": "sjs-base-model",
"version": "2.0.0",
"version": "2.0.1",
"description": "BaseModel helps translate data to models",

@@ -5,0 +5,0 @@ "keywords": [

@@ -316,4 +316,6 @@ <p align="center">

- 2022-04-26 v2.0.1 Fix RecursivePartial Type.
-
- 2022-04-20 v2.0.0 Remove `sjsId`, Move `sjsOptions` out of BaseModel, Add return type to `.toJSON()`, Change return type of `.clone()`, Change types exported paths.
-
- 2020-07-29 v1.9.1 Fix deletePropertyFromObject bug; If null was inside an array would cause the code to break.

@@ -320,0 +322,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