@posx/core 5.5.107 → 5.5.109

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
@@ -1983,6 +1983,15 @@ declare module '@posx/core/types/config.type' {
1983
1983
  kiosk: IKioskSystemConfig;
1984
1984
  /** Online order setting */
1985
1985
  online_order: IOnlineOrderConfig;
1986
+ /** Loyalty program setting */
1987
+ loyalty_program: ILoyaltyProgram & Record<string, any>;
1988
+ }
1989
+ export interface ILoyaltyProgram {
1990
+ enable_price_tiers: boolean;
1991
+ }
1992
+ export class LoyaltyProgram implements ILoyaltyProgram {
1993
+ enable_price_tiers: boolean;
1994
+ constructor();
1986
1995
  }
1987
1996
  export interface ICustomerDisplaySystemConfig {
1988
1997
  enabled: boolean;
@@ -2070,6 +2079,7 @@ declare module '@posx/core/types/config.type' {
2070
2079
  cds: CustomerDisplaySystemConfig;
2071
2080
  kiosk: KioskSystemConfig;
2072
2081
  online_order: OnlineOrderConfig;
2082
+ loyalty_program: LoyaltyProgram;
2073
2083
  constructor();
2074
2084
  }
2075
2085
  export interface IOnlineOrderConfig {