@zenstackhq/runtime 0.3.17 → 0.3.19
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/client/index.js +5 -0
- package/package.json +1 -1
package/client/index.js
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
|
+
// needed for importing from client-side code
|
|
2
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
3
|
+
|
|
1
4
|
const request = require('../lib/request');
|
|
5
|
+
const types = require('../lib/types');
|
|
2
6
|
|
|
3
7
|
module.exports = {
|
|
4
8
|
...require('.zenstack/lib/hooks'),
|
|
5
9
|
...require('../lib/validation'),
|
|
10
|
+
ServerErrorCode: types.ServerErrorCode,
|
|
6
11
|
request,
|
|
7
12
|
};
|
package/package.json
CHANGED