ggez-banking-sdk 0.1.88 → 0.1.90

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.
@@ -15,6 +15,7 @@ AxiosHelper.GetAxiosConfig = (token, baseURL, lang, installationId) => {
15
15
  [HeaderKeys.GenerateJwt]: "true",
16
16
  },
17
17
  baseURL: baseURL,
18
+ withCredentials: true,
18
19
  };
19
20
  if (token) {
20
21
  config.headers.Authorization = `Bearer ${token}`;
@@ -33,6 +34,7 @@ AxiosHelper.GetAuthAxiosConfig = (baseURL, lang, installationId) => {
33
34
  [HeaderKeys.GenerateJwt]: "true",
34
35
  },
35
36
  baseURL: baseURL,
37
+ withCredentials: true,
36
38
  };
37
39
  return config;
38
40
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ggez-banking-sdk",
3
- "version": "0.1.88",
3
+ "version": "0.1.90",
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",