@open-tender/cloud 0.0.48 → 0.0.49

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.
@@ -1,4 +1,5 @@
1
1
  import { appReducer } from './app/store';
2
2
  import { useAppDispatch, useAppSelector } from './app/hooks';
3
3
  export * from './slices';
4
+ export * from './services';
4
5
  export { appReducer, useAppDispatch, useAppSelector };
package/dist/cjs/index.js CHANGED
@@ -8,3 +8,4 @@ const hooks_1 = require("./app/hooks");
8
8
  Object.defineProperty(exports, "useAppDispatch", { enumerable: true, get: function () { return hooks_1.useAppDispatch; } });
9
9
  Object.defineProperty(exports, "useAppSelector", { enumerable: true, get: function () { return hooks_1.useAppSelector; } });
10
10
  tslib_1.__exportStar(require("./slices"), exports);
11
+ tslib_1.__exportStar(require("./services"), exports);
@@ -1,2 +1,3 @@
1
1
  import PosAPI from './api';
2
2
  export { PosAPI };
3
+ export * from './errors';
@@ -4,3 +4,4 @@ exports.PosAPI = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const api_1 = tslib_1.__importDefault(require("./api"));
6
6
  exports.PosAPI = api_1.default;
7
+ tslib_1.__exportStar(require("./errors"), exports);
@@ -1,4 +1,5 @@
1
1
  import { appReducer } from './app/store';
2
2
  import { useAppDispatch, useAppSelector } from './app/hooks';
3
3
  export * from './slices';
4
+ export * from './services';
4
5
  export { appReducer, useAppDispatch, useAppSelector };
package/dist/esm/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  import { appReducer } from './app/store';
2
2
  import { useAppDispatch, useAppSelector } from './app/hooks';
3
3
  export * from './slices';
4
+ export * from './services';
4
5
  export { appReducer, useAppDispatch, useAppSelector };
@@ -1,2 +1,3 @@
1
1
  import PosAPI from './api';
2
2
  export { PosAPI };
3
+ export * from './errors';
@@ -1,2 +1,3 @@
1
1
  import PosAPI from './api';
2
2
  export { PosAPI };
3
+ export * from './errors';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/cloud",
3
- "version": "0.0.48",
3
+ "version": "0.0.49",
4
4
  "description": "A library of hooks, reducers, utility functions, and types for use with Open Tender applications that utilize our cloud-based Order API.",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",