Skip to content
This repository was archived by the owner on Jun 22, 2021. It is now read-only.

Commit 075538d

Browse files
authored
fix(deps): Updates to core v7. (#10)
BREAKING CHANGE: Updates to [core v7](https://github.com/js-entity-repos/core/releases/tag/v7.0.0).
1 parent 59b278d commit 075538d

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

package-lock.json

+11-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@
2525
"check-coverage": true
2626
},
2727
"dependencies": {
28-
"@js-entity-repos/core": "^6.0.2",
28+
"@js-entity-repos/core": "^7.1.0",
2929
"http-status-codes": "^1.3.0",
3030
"uuid": "^3.2.1"
3131
},
3232
"devDependencies": {
3333
"@ht2-labs/semantic-release": "1.0.31",
3434
"@ht2-labs/typescript-project": "1.0.9",
35-
"@js-entity-repos/axios": "3.0.1",
36-
"@js-entity-repos/memory": "3.0.1",
35+
"@js-entity-repos/axios": "4.0.0",
36+
"@js-entity-repos/memory": "4.0.1",
3737
"@types/dotenv": "4.0.2",
3838
"@types/express": "4.11.1",
3939
"@types/mocha": "2.2.48",

src/functions/getEntities.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default <E extends Entity>(config: FacadeConfig<E>) => {
1414
filter: config.constructFilter({ filter, req, res }),
1515
pagination: {
1616
cursor: req.query.cursor,
17-
forward: req.query.forward === 'true',
17+
direction: req.query.direction,
1818
limit,
1919
},
2020
sort: getJsonQueryParam(req.query, 'sort'),

0 commit comments

Comments
 (0)