ggez-banking-sdk 0.1.193 → 0.1.195
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.
|
@@ -17,7 +17,7 @@ const FillCreateUserData = (data) => {
|
|
|
17
17
|
verification_status: EntityVerificationStatus.Verified,
|
|
18
18
|
},
|
|
19
19
|
address: {
|
|
20
|
-
|
|
20
|
+
country_code: data.country,
|
|
21
21
|
state_region: data.state,
|
|
22
22
|
verification_status: EntityVerificationStatus.Not_Verified,
|
|
23
23
|
},
|
|
@@ -286,7 +286,11 @@ class CookiesHelper {
|
|
|
286
286
|
});
|
|
287
287
|
}
|
|
288
288
|
async REMOVE(key) {
|
|
289
|
-
await this.Cookies.delete(
|
|
289
|
+
await this.Cookies.delete({
|
|
290
|
+
name: key,
|
|
291
|
+
domain: this.domain,
|
|
292
|
+
path: "/",
|
|
293
|
+
});
|
|
290
294
|
}
|
|
291
295
|
// #endregion
|
|
292
296
|
// #region "Cookie Change Event Listener"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ggez-banking-sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.195",
|
|
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",
|