@sera4/essentia 1.0.7 → 1.0.9
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/hal/{REAMDE.md → README.md} +1 -1
- package/hal/index.js +0 -1
- package/package.json +1 -1
- package/package.tar.gz +0 -0
- package/paginator/README.md +1 -1
- package/paginator/sql-pagination.js +1 -1
|
@@ -7,7 +7,7 @@ A module to add HAL decoration to JSON responses in Sequelize ORM based projects
|
|
|
7
7
|
In your model definition, set decoration on your model
|
|
8
8
|
|
|
9
9
|
```
|
|
10
|
-
const decorator = require("@sera4/essentia).halDecorator;
|
|
10
|
+
const decorator = require("@sera4/essentia").halDecorator;
|
|
11
11
|
...
|
|
12
12
|
|
|
13
13
|
module.exports = (sequelize, DataTypes) => {
|
package/hal/index.js
CHANGED
package/package.json
CHANGED
package/package.tar.gz
CHANGED
|
Binary file
|
package/paginator/README.md
CHANGED
|
@@ -7,7 +7,7 @@ This is a module to add pagination to Sequelize ORM based projects.
|
|
|
7
7
|
In your model definition, set pagination on your model
|
|
8
8
|
|
|
9
9
|
```
|
|
10
|
-
const paginator = require("@sera4/essentia).sqlPaginator;
|
|
10
|
+
const paginator = require("@sera4/essentia").sqlPaginator;
|
|
11
11
|
...
|
|
12
12
|
|
|
13
13
|
module.exports = (sequelize, DataTypes) => {
|