@posx/core 5.5.29 → 5.5.31

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
@@ -1974,6 +1974,14 @@ declare module '@posx/core/types/config.type' {
1974
1974
  currency: CurrencyConfig;
1975
1975
  cds: CustomerDisplaySystemConfig;
1976
1976
  kiosk: KioskSystemConfig;
1977
+ online_order: OnlineOrderConfig;
1978
+ constructor();
1979
+ }
1980
+ export interface IOnlineOrderConfig {
1981
+ menu_banner_image_url: string;
1982
+ }
1983
+ export class OnlineOrderConfig implements IOnlineOrderConfig {
1984
+ menu_banner_image_url: string;
1977
1985
  constructor();
1978
1986
  }
1979
1987
  export interface IGeneralConfig {