ggez-banking-sdk 0.1.29 → 0.1.30
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.
@@ -143,6 +143,10 @@ declare const Data: () => {
|
|
143
143
|
is_primary: number;
|
144
144
|
verification_status: number;
|
145
145
|
}[];
|
146
|
+
authentication: {
|
147
|
+
type: number;
|
148
|
+
code: string;
|
149
|
+
}[];
|
146
150
|
security: {
|
147
151
|
password: string;
|
148
152
|
security_code: number;
|
@@ -214,7 +218,6 @@ declare const Data: () => {
|
|
214
218
|
activity: any;
|
215
219
|
notes: any;
|
216
220
|
last_activity: any;
|
217
|
-
authentication: any;
|
218
221
|
validate: any;
|
219
222
|
function_code: any;
|
220
223
|
response_time: any;
|
@@ -153,10 +153,10 @@ const Data = () => {
|
|
153
153
|
},
|
154
154
|
],
|
155
155
|
authentication: [
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
156
|
+
{
|
157
|
+
type: 10,
|
158
|
+
code: values.mobileAuthenticationCode,
|
159
|
+
},
|
160
160
|
{
|
161
161
|
type: 9,
|
162
162
|
code: values.emailAuthenticationCode,
|
@@ -261,12 +261,12 @@ const Data = () => {
|
|
261
261
|
verification_status: 1,
|
262
262
|
},
|
263
263
|
],
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
264
|
+
authentication: [
|
265
|
+
{
|
266
|
+
type: 10,
|
267
|
+
code: values.mobileAuthenticationCode,
|
268
|
+
},
|
269
|
+
],
|
270
270
|
security: {
|
271
271
|
password: values.password,
|
272
272
|
security_code: values.securityCode,
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "ggez-banking-sdk",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.30",
|
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",
|