ggez-banking-sdk 0.1.4 → 0.1.5

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.
@@ -126,14 +126,7 @@ declare const Data: () => {
126
126
  is_primary: number;
127
127
  verification_status: number;
128
128
  }[];
129
- phone: {
130
- id: number;
131
- type: number;
132
- country_code: string;
133
- number: string;
134
- is_primary: number;
135
- verification_status: number;
136
- }[];
129
+ phone: any[];
137
130
  security: {
138
131
  password: string;
139
132
  security_code: number;
@@ -147,7 +147,7 @@ const Data = () => {
147
147
  {
148
148
  id: 0,
149
149
  code: values.currency,
150
- is_primary: 1,
150
+ is_primary: 0,
151
151
  },
152
152
  ],
153
153
  terms_conditions: {
@@ -220,14 +220,14 @@ const Data = () => {
220
220
  },
221
221
  ],
222
222
  phone: [
223
- {
224
- id: 0,
225
- type: 1,
226
- country_code: values.mobileNumberCountry,
227
- number: values.mobileNumber,
228
- is_primary: 1,
229
- verification_status: 1,
230
- },
223
+ // {
224
+ // id: 0,
225
+ // type: 1,
226
+ // country_code: values.mobileNumberCountry,
227
+ // number: values.mobileNumber,
228
+ // is_primary: 1,
229
+ // verification_status: 1,
230
+ // },
231
231
  ],
232
232
  // authentication: [
233
233
  // {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ggez-banking-sdk",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
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",