cozy-pouch-link 29.1.2 → 30.0.0

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.
@@ -328,12 +328,12 @@ describe('CozyPouchLink', () => {
328
328
  .where({ label: { $gt: null }, done: true })
329
329
  .indexFields(['done', 'label'])
330
330
  .sortBy([{ done: 'asc' }, { label: 'asc' }])
331
- .select(['label'])
331
+ .select(['label', 'done'])
332
332
  await link.request(query)
333
333
  expect(find).toHaveBeenLastCalledWith(
334
334
  expect.anything(),
335
335
  expect.objectContaining({
336
- fields: ['label', '_id', '_type', 'class']
336
+ fields: ['label', 'done', '_id', '_type', 'class']
337
337
  })
338
338
  )
339
339
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cozy-pouch-link",
3
- "version": "29.1.2",
3
+ "version": "30.0.0",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -11,7 +11,7 @@
11
11
  "url": "git+https://github.com/cozy/cozy-client.git"
12
12
  },
13
13
  "dependencies": {
14
- "cozy-client": "^29.1.2",
14
+ "cozy-client": "^30.0.0",
15
15
  "pouchdb-browser": "^7.2.2",
16
16
  "pouchdb-find": "^7.2.2"
17
17
  },
@@ -35,5 +35,5 @@
35
35
  "prepublishOnly": "yarn run build"
36
36
  },
37
37
  "sideEffects": false,
38
- "gitHead": "cadb0cef49e5c744190fcf335800211850bc2e97"
38
+ "gitHead": "eb60edf72cb815882e8adb04e52a70c31f090e67"
39
39
  }