ggez-banking-sdk 0.0.100 → 0.1.2
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.
|
@@ -29,14 +29,6 @@ declare const Data: () => {
|
|
|
29
29
|
is_primary: number;
|
|
30
30
|
verification_status: number;
|
|
31
31
|
}[];
|
|
32
|
-
phone: {
|
|
33
|
-
id: number;
|
|
34
|
-
type: number;
|
|
35
|
-
country_code: string;
|
|
36
|
-
number: string;
|
|
37
|
-
is_primary: number;
|
|
38
|
-
verification_status: number;
|
|
39
|
-
}[];
|
|
40
32
|
authentication: {
|
|
41
33
|
type: number;
|
|
42
34
|
code: string;
|
|
@@ -80,6 +72,7 @@ declare const Data: () => {
|
|
|
80
72
|
geo_coordinates: import("../interfaces").IGeoCoordinates;
|
|
81
73
|
result: any;
|
|
82
74
|
addresses: any;
|
|
75
|
+
phone: any;
|
|
83
76
|
identification: any;
|
|
84
77
|
bank_account: any;
|
|
85
78
|
credit_card: any;
|
|
@@ -110,16 +110,16 @@ const Data = () => {
|
|
|
110
110
|
verification_status: 1,
|
|
111
111
|
},
|
|
112
112
|
],
|
|
113
|
-
phone: [
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
],
|
|
113
|
+
// phone: [
|
|
114
|
+
// {
|
|
115
|
+
// id: 0,
|
|
116
|
+
// type: 1,
|
|
117
|
+
// country_code: values.mobileNumberCountry,
|
|
118
|
+
// number: values.mobileNumber,
|
|
119
|
+
// is_primary: 1,
|
|
120
|
+
// verification_status: 0, // 1
|
|
121
|
+
// },
|
|
122
|
+
// ],
|
|
123
123
|
authentication: [
|
|
124
124
|
// {
|
|
125
125
|
// type: 10,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ggez-banking-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.2",
|
|
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",
|