@fctc/interface-logic 5.0.8 → 5.1.0

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.
@@ -629,6 +629,12 @@ declare const serviceFactories: readonly [(env: any) => {
629
629
  service?: string;
630
630
  xNode?: string;
631
631
  }) => any;
632
+ }, (env: any) => {
633
+ getEInvoiceInfo: ({ xNode, service, uid }: {
634
+ service?: string;
635
+ xNode?: string;
636
+ uid: number;
637
+ }) => Promise<any>;
632
638
  }, (env: any) => {
633
639
  appAuthenticate: ({ xNode, service, appKey, activationCode, clientId, clientSecret, }: {
634
640
  appKey: string;
@@ -912,6 +918,11 @@ declare const serviceFactories: readonly [(env: any) => {
912
918
  deleteProductSupabase: (values: {
913
919
  product_id: number;
914
920
  }) => Promise<number[] | null>;
921
+ }, () => {
922
+ togglePosRestaurantSupabase: (values: {
923
+ config_id: number;
924
+ module_pos_restaurant: boolean;
925
+ }) => Promise<number[] | null>;
915
926
  }];
916
927
  type ServiceFactories = (typeof serviceFactories)[number];
917
928
  type ServiceReturn<T extends ServiceFactories> = ReturnType<T>;
@@ -629,6 +629,12 @@ declare const serviceFactories: readonly [(env: any) => {
629
629
  service?: string;
630
630
  xNode?: string;
631
631
  }) => any;
632
+ }, (env: any) => {
633
+ getEInvoiceInfo: ({ xNode, service, uid }: {
634
+ service?: string;
635
+ xNode?: string;
636
+ uid: number;
637
+ }) => Promise<any>;
632
638
  }, (env: any) => {
633
639
  appAuthenticate: ({ xNode, service, appKey, activationCode, clientId, clientSecret, }: {
634
640
  appKey: string;
@@ -912,6 +918,11 @@ declare const serviceFactories: readonly [(env: any) => {
912
918
  deleteProductSupabase: (values: {
913
919
  product_id: number;
914
920
  }) => Promise<number[] | null>;
921
+ }, () => {
922
+ togglePosRestaurantSupabase: (values: {
923
+ config_id: number;
924
+ module_pos_restaurant: boolean;
925
+ }) => Promise<number[] | null>;
915
926
  }];
916
927
  type ServiceFactories = (typeof serviceFactories)[number];
917
928
  type ServiceReturn<T extends ServiceFactories> = ReturnType<T>;