sjs-base-model
Advanced tools
Comparing version 2.0.0 to 2.0.1
@@ -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 @@ |
155232
351