ggez-banking-sdk 0.1.193 → 0.1.194

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.
@@ -286,7 +286,11 @@ class CookiesHelper {
286
286
  });
287
287
  }
288
288
  async REMOVE(key) {
289
- await this.Cookies.delete(key);
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.193",
3
+ "version": "0.1.194",
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",