@posx/core 5.5.82 → 5.5.84

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
@@ -2025,9 +2025,13 @@ declare module '@posx/core/types/config.type' {
2025
2025
  constructor();
2026
2026
  }
2027
2027
  export interface IOnlineOrderConfig {
2028
+ enable_membership: boolean;
2029
+ login_call_to_action_text: string;
2028
2030
  menu_banner_image_url: string;
2029
2031
  }
2030
2032
  export class OnlineOrderConfig implements IOnlineOrderConfig {
2033
+ enable_membership: boolean;
2034
+ login_call_to_action_text: string;
2031
2035
  menu_banner_image_url: string;
2032
2036
  constructor();
2033
2037
  }