@fctc/interface-logic 4.8.0 → 4.8.2

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.
@@ -768,6 +768,23 @@ declare const serviceFactories: readonly [(env: any) => {
768
768
  service?: string;
769
769
  xNode?: string;
770
770
  }) => Promise<any>;
771
+ }, () => {
772
+ addPaymentMethodSupabase: (values: {
773
+ name: string;
774
+ image?: string;
775
+ is_cash_count?: boolean;
776
+ is_online_payment?: boolean;
777
+ payment_method_type?: string;
778
+ payment_type?: string;
779
+ type?: string;
780
+ sequence?: number;
781
+ active?: boolean;
782
+ }) => Promise<[number, string][] | null>;
783
+ }, () => {
784
+ updateSessionPaymentMethodsSupabase: (values: {
785
+ session_id: number;
786
+ payment_method_ids: number[];
787
+ }) => Promise<number[] | null>;
771
788
  }];
772
789
  type ServiceFactories = (typeof serviceFactories)[number];
773
790
  type ServiceReturn<T extends ServiceFactories> = ReturnType<T>;