@feedmepos/mf-common 1.3.0 → 1.4.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.
@@ -1,8 +1,9 @@
1
- import { FdoBusiness, FdoPermissionRule, FdoRestaurant } from '@feedmepos/core/entity';
1
+ import { FdoAgent, FdoBusiness, FdoPermissionRule, FdoRestaurant } from '@feedmepos/core/entity';
2
2
  import { type AxiosInstance } from 'axios';
3
3
  export declare function readUserAdminPermission(): Promise<FdoPermissionRule[]>;
4
4
  export declare function readUserBusinessPermission(businessId: string): Promise<FdoPermissionRule[]>;
5
5
  export declare function readManagableBusinesses(): Promise<FdoBusiness[]>;
6
6
  export declare function readBusinessRestaurants(businessId: string): Promise<FdoRestaurant[]>;
7
7
  export declare function readBusinessRestaurant(restaurantId: string): Promise<FdoRestaurant>;
8
+ export declare function readAvailableAgents(): Promise<FdoAgent[]>;
8
9
  export declare const baseClientInstance: (url: string) => AxiosInstance;