@posx/core 5.5.67 → 5.5.68

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/build/index.d.ts CHANGED
@@ -2483,6 +2483,17 @@ declare module '@posx/core/types/employee.type' {
2483
2483
  constructor();
2484
2484
  }
2485
2485
 
2486
+ }
2487
+ declare module '@posx/core/types/hub.message.type' {
2488
+ export enum HubMessageType {
2489
+ PaynowEvent = "paynow_event",
2490
+ SmoochPaymentEvent = "smooch_payment_event"
2491
+ }
2492
+ export type HubMessage = {
2493
+ type: HubMessageType | string;
2494
+ data: any;
2495
+ };
2496
+
2486
2497
  }
2487
2498
  declare module '@posx/core/types/invoice.type' {
2488
2499
  import { IAppCoreModel, AppCoreModel } from '@posx/core/types/abstract.type';