@feedmepos/mf-common 1.3.0 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/api/index.d.ts +2 -1
- package/dist/app.d.ts +1 -10651
- package/dist/app.js +11462 -11470
- package/dist/components/UserInfo.vue.d.ts +1 -1
- package/dist/logo.svg +15 -0
- package/dist/store.d.ts +8664 -1270
- package/dist/style.css +1 -1
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/api/index.d.ts
CHANGED
@@ -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;
|