@posx/core 5.5.67 → 5.5.69
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 +12 -0
- package/build/index.js +1 -1
- package/package.json +1 -1
- package/package.publish.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -2483,6 +2483,18 @@ 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
|
+
SyncInvoice = "sync_invoice"
|
|
2492
|
+
}
|
|
2493
|
+
export type HubMessage<T> = {
|
|
2494
|
+
type: HubMessageType | string;
|
|
2495
|
+
data: T;
|
|
2496
|
+
};
|
|
2497
|
+
|
|
2486
2498
|
}
|
|
2487
2499
|
declare module '@posx/core/types/invoice.type' {
|
|
2488
2500
|
import { IAppCoreModel, AppCoreModel } from '@posx/core/types/abstract.type';
|