@wenex/sdk 1.0.8 → 1.0.9

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.
@@ -1,4 +1,3 @@
1
- import { DeepPartial } from './helper.interface';
2
1
  import { Core } from './core.interface';
3
2
  export type Data<T = any> = {
4
3
  data: T;
@@ -12,4 +11,4 @@ export type Total = {
12
11
  export type Result = {
13
12
  result: 'OK' | 'NOK';
14
13
  };
15
- export type Serializer<T extends Partial<Core> = Partial<Core>, Path extends object = object> = DeepPartial<Omit<T, keyof Path> & Path>;
14
+ export type Serializer<T extends Partial<Core> = Partial<Core>, Path extends object = object> = Partial<Omit<T, keyof Path> & Path>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wenex/sdk",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Wenex SDK",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",