asv-hlps-market 1.0.4 → 1.0.5

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.
@@ -0,0 +1,10 @@
1
+ import CartProduct from "../../pos/CartProduct";
2
+ import Sale from "./Sale";
3
+ export default interface SaleItems {
4
+ sale?: Sale;
5
+ items?: CartProduct[];
6
+ clientId?: number;
7
+ fromMobile?: boolean;
8
+ isWaiting?: boolean;
9
+ inCredit?: boolean;
10
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,10 @@
1
+ import CartProduct from "../../pos/CartProduct";
2
+ import Sale from "./Sale";
3
+ export default interface SaleItems {
4
+ sale?: Sale;
5
+ items?: CartProduct[];
6
+ clientId?: number;
7
+ fromMobile?: boolean;
8
+ isWaiting?: boolean;
9
+ inCredit?: boolean;
10
+ }
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asv-hlps-market",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "helpers for markets app",
5
5
  "main": "./lib/cjs/index.js",
6
6
  "module": "./lib/esm/index.js",