@posx/core 5.5.68 → 5.5.70

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
@@ -2487,11 +2487,12 @@ declare module '@posx/core/types/employee.type' {
2487
2487
  declare module '@posx/core/types/hub.message.type' {
2488
2488
  export enum HubMessageType {
2489
2489
  PaynowEvent = "paynow_event",
2490
- SmoochPaymentEvent = "smooch_payment_event"
2490
+ SmoochPaymentEvent = "smooch_payment_event",
2491
+ SyncInvoice = "sync_invoice"
2491
2492
  }
2492
- export type HubMessage = {
2493
+ export type HubMessage<T> = {
2493
2494
  type: HubMessageType | string;
2494
- data: any;
2495
+ data: T;
2495
2496
  };
2496
2497
 
2497
2498
  }