@feedmepos/mf-common 1.2.0 → 1.3.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 -0
- package/dist/app.d.ts +478 -0
- package/dist/app.js +5407 -5313
- package/dist/components/AllStoreDialog.vue.d.ts +2 -0
- package/dist/components/UserInfo.vue.d.ts +13 -234
- package/dist/store.d.ts +5 -3
- package/dist/style.css +1 -1
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/api/index.d.ts
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
import { FdoBusiness, FdoPermissionRule, FdoRestaurant } from '@feedmepos/core/entity';
|
2
|
+
import { type AxiosInstance } from 'axios';
|
2
3
|
export declare function readUserAdminPermission(): Promise<FdoPermissionRule[]>;
|
3
4
|
export declare function readUserBusinessPermission(businessId: string): Promise<FdoPermissionRule[]>;
|
4
5
|
export declare function readManagableBusinesses(): Promise<FdoBusiness[]>;
|
5
6
|
export declare function readBusinessRestaurants(businessId: string): Promise<FdoRestaurant[]>;
|
6
7
|
export declare function readBusinessRestaurant(restaurantId: string): Promise<FdoRestaurant>;
|
8
|
+
export declare const baseClientInstance: (url: string) => AxiosInstance;
|