ggez-banking-sdk 0.1.77 → 0.1.78

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.
@@ -1018,6 +1018,7 @@ declare const Data: () => {
1018
1018
  id: any;
1019
1019
  number: any;
1020
1020
  verification_status: number;
1021
+ country_code: string;
1021
1022
  }[];
1022
1023
  geo_coordinates: import("../interfaces").IGeoCoordinates;
1023
1024
  result: any;
@@ -870,6 +870,7 @@ const Data = () => {
870
870
  id: values.id,
871
871
  number: values.number,
872
872
  verification_status: 0,
873
+ country_code: values.countryCode,
873
874
  },
874
875
  ],
875
876
  geo_coordinates: values.geoCoordinates,
@@ -17,6 +17,7 @@ export interface MakePrimaryUserEmailInterface {
17
17
  export interface UpdateUserPhoneInterface {
18
18
  id: any;
19
19
  number: any;
20
+ countryCode?: string;
20
21
  geoCoordinates?: IGeoCoordinates | null;
21
22
  }
22
23
  export interface MakeUserPhonePrimaryInterface {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ggez-banking-sdk",
3
- "version": "0.1.77",
3
+ "version": "0.1.78",
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
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",