meemup-library 1.0.62 → 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.
- package/dist/statics.d.ts +7 -0
- package/dist/statics.js +7 -0
- package/package.json +1 -1
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;
|