@anzar-auth/core 1.7.3 → 1.7.5

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.
package/dist/index.cjs CHANGED
@@ -36,4 +36,7 @@ module.exports = __toCommonJS(src_exports);
36
36
 
37
37
  // src/client.ts
38
38
  var import_openapi_fetch = __toESM(require("openapi-fetch"), 1);
39
- var api = (0, import_openapi_fetch.default)({ baseUrl: "http://localhost:3000" });
39
+ var api = (0, import_openapi_fetch.default)({
40
+ baseUrl: "http://localhost:3000",
41
+ credentials: "include"
42
+ });
package/dist/index.js CHANGED
@@ -1,6 +1,9 @@
1
1
  // src/client.ts
2
2
  import createClient from "openapi-fetch";
3
- var api = createClient({ baseUrl: "http://localhost:3000" });
3
+ var api = createClient({
4
+ baseUrl: "http://localhost:3000",
5
+ credentials: "include"
6
+ });
4
7
  export {
5
8
  api
6
9
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anzar-auth/core",
3
- "version": "1.7.3",
3
+ "version": "1.7.5",
4
4
  "description": "Anzar server middleware for verifying tokens",
5
5
  "author": "Hakou Guelfen <hakoudev@gmail.com>",
6
6
  "license": "GPL-3.0",