meemup-library 1.0.22 → 1.0.24

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,7 +1,8 @@
1
+ import ICustomerFacingDisplayPacketProduct from "./ICustomerFacingDisplayPacketProduct";
1
2
  interface ICustomerFacingDisplayPacket {
2
3
  r: string;
3
4
  c: string;
4
- d: any[];
5
+ d: ICustomerFacingDisplayPacketProduct[];
5
6
  }
6
7
  export default ICustomerFacingDisplayPacket;
7
8
  export declare const initCustomerFacingDisplaySetting: ICustomerFacingDisplayPacket;
@@ -0,0 +1,6 @@
1
+ interface ICustomerFacingDisplayPacketExtra {
2
+ q: number;
3
+ t: string;
4
+ p: number;
5
+ }
6
+ export default ICustomerFacingDisplayPacketExtra;
@@ -0,0 +1,7 @@
1
+ import ICustomerFacingDisplayPacketExtra from "./ICustomerFacingDisplayPacketExtra";
2
+ interface ICustomerFacingDisplayPacketProduct {
3
+ q: number;
4
+ t: string;
5
+ e: ICustomerFacingDisplayPacketExtra[];
6
+ }
7
+ export default ICustomerFacingDisplayPacketProduct;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.0.22",
3
+ "version": "1.0.24",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",