monorise 0.0.3 → 0.0.4
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/core/index.js +1 -1
- package/dist/core/index.js.map +1 -1
- package/dist/react/actions/core.action.d.ts +2 -0
- package/dist/react/actions/core.action.d.ts.map +1 -1
- package/dist/react/index.d.ts +4 -0
- package/dist/react/index.d.ts.map +1 -1
- package/dist/react/index.js +12 -6
- package/dist/react/index.js.map +1 -1
- package/package.json +1 -1
package/dist/core/index.js
CHANGED
|
@@ -6960,7 +6960,7 @@ var ListEntitiesController = class {
|
|
|
6960
6960
|
}
|
|
6961
6961
|
const results = yield this.entityRepository.listEntities(__spreadValues({
|
|
6962
6962
|
entityType,
|
|
6963
|
-
limit: Number(limit),
|
|
6963
|
+
limit: limit ? Number(limit) : void 0,
|
|
6964
6964
|
options: {
|
|
6965
6965
|
lastKey
|
|
6966
6966
|
}
|