ggez-banking-sdk 0.1.134 → 0.1.135

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,7 @@
1
1
  import { CustomField } from "../../../banking";
2
+ type DeepPartial<T> = {
3
+ [P in keyof T]?: T[P] extends object ? DeepPartial<T[P]> : T[P];
4
+ };
2
5
  interface ICreateUserData {
3
6
  firstName: string;
4
7
  lastName: string;
@@ -21,7 +24,7 @@ interface ICreateUserData {
21
24
  referralCodeType: string;
22
25
  mobileNumberCountry: string;
23
26
  preferredLanguageCode: string;
24
- customField: Partial<CustomField>;
27
+ customField: DeepPartial<CustomField>;
25
28
  }
26
29
  interface ICreateUserWithGoogleData extends ICreateUserData {
27
30
  loginId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ggez-banking-sdk",
3
- "version": "0.1.134",
3
+ "version": "0.1.135",
4
4
  "description": "A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",