cozy-pouch-link 49.6.0 → 49.6.1

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/remote.js CHANGED
@@ -65,7 +65,8 @@ var fetchRemoteInstance = /*#__PURE__*/function () {
65
65
  headers.append('Authorization', access.toAuthHeader());
66
66
  _context.next = 10;
67
67
  return fetch(fetchUrl, {
68
- headers: headers
68
+ headers: headers,
69
+ credentials: 'include'
69
70
  });
70
71
 
71
72
  case 10:
@@ -39,7 +39,8 @@ describe('remote', () => {
39
39
  expect(fetch).toHaveBeenCalledWith(
40
40
  'https://claude.mycozy.cloud/data/io.cozy.accounts/_changes',
41
41
  {
42
- headers: expectedHeaders
42
+ headers: expectedHeaders,
43
+ credentials: 'include'
43
44
  }
44
45
  )
45
46
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cozy-pouch-link",
3
- "version": "49.6.0",
3
+ "version": "49.6.1",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "types/index.d.ts",
@@ -39,5 +39,5 @@
39
39
  "typecheck": "tsc -p tsconfig.json"
40
40
  },
41
41
  "sideEffects": false,
42
- "gitHead": "ca70ddbfd2c7a5e942a5625fec57f1c96d467460"
42
+ "gitHead": "b4ca0cc319d1aacb9d1e286a13240055d1ab68d3"
43
43
  }