meemup-library 1.0.61 → 1.0.63

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,4 @@
1
- export default interface IKitchenServerOptionZone {
1
+ export default interface IKitchenZone {
2
2
  id: number;
3
3
  additionalDeliveryTime: number;
4
4
  name: string;
package/dist/statics.d.ts CHANGED
@@ -25,3 +25,10 @@ export declare const AGENT_SIGNALR: {
25
25
  export declare const CFDS_SIGNALR: {
26
26
  data_changes: string;
27
27
  };
28
+ export declare const KDS_SIGNALR: {
29
+ new_order: string;
30
+ order_status_changed: string;
31
+ orderChanged: string;
32
+ informationChanged: string;
33
+ };
34
+ export declare const REFRESH_TOKEN_EVERY_MINUTE = 60;
package/dist/statics.js CHANGED
@@ -27,3 +27,10 @@ export const AGENT_SIGNALR = {
27
27
  export const CFDS_SIGNALR = {
28
28
  data_changes: "DataChanges"
29
29
  };
30
+ export const KDS_SIGNALR = {
31
+ new_order: "NewOrder",
32
+ order_status_changed: "OrderStatusChanged",
33
+ orderChanged: "OrderChanged",
34
+ informationChanged: "InformationChanged"
35
+ };
36
+ export const REFRESH_TOKEN_EVERY_MINUTE = 60;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.0.61",
3
+ "version": "1.0.63",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,11 +0,0 @@
1
- import IKitchenServerOptionZone from "./IKitchenServerOptionZone";
2
- export default interface IKitchenServerOption {
3
- zones: IKitchenServerOptionZone[];
4
- deliveryMinimumTime: number;
5
- deliveryDelayTime: number;
6
- pickupMinimumTime: number;
7
- pickupDelayTime: number;
8
- diningMinimumTime: number;
9
- diningDelayTime: number;
10
- }
11
- export declare const initKitchenServerOption: IKitchenServerOption;
@@ -1,9 +0,0 @@
1
- export const initKitchenServerOption = {
2
- zones: [],
3
- deliveryMinimumTime: 0,
4
- deliveryDelayTime: 0,
5
- pickupMinimumTime: 0,
6
- pickupDelayTime: 0,
7
- diningMinimumTime: 0,
8
- diningDelayTime: 0,
9
- };
@@ -1,4 +0,0 @@
1
- export default interface IKitchenServerOptionZone {
2
- id: number;
3
- additionalDeliveryTime: number;
4
- }
@@ -1 +0,0 @@
1
- export {};