@posx/core 5.3.95 → 5.3.96

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
@@ -1896,6 +1896,8 @@ declare module '@posx/core/types/config.type' {
1896
1896
  kds: IKdsConfig;
1897
1897
  /** Customer display system setting */
1898
1898
  cds: ICustomerDisplaySystemConfig;
1899
+ /** Kiosk system setting */
1900
+ kiosk: IKioskSystemConfig;
1899
1901
  }
1900
1902
  export interface ICustomerDisplaySystemConfig {
1901
1903
  full_screen_assets: string[];
@@ -1906,6 +1908,13 @@ declare module '@posx/core/types/config.type' {
1906
1908
  half_screen_assets: any[];
1907
1909
  constructor();
1908
1910
  }
1911
+ export interface IKioskSystemConfig {
1912
+ takeaway_only: boolean;
1913
+ }
1914
+ export class KioskSystemConfig implements IKioskSystemConfig {
1915
+ takeaway_only: boolean;
1916
+ constructor();
1917
+ }
1909
1918
  export interface IMarketing {
1910
1919
  /** Marketing Point Configuration */
1911
1920
  point: IPoint;
@@ -1962,6 +1971,7 @@ declare module '@posx/core/types/config.type' {
1962
1971
  charges: ChargeConfig;
1963
1972
  currency: CurrencyConfig;
1964
1973
  cds: CustomerDisplaySystemConfig;
1974
+ kiosk: KioskSystemConfig;
1965
1975
  constructor();
1966
1976
  }
1967
1977
  export interface IGeneralConfig {