mario-core 2.9.159-level → 2.9.160-level
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.
- package/dist/index.js +15 -14
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +15 -14
- package/dist/index.modern.js.map +1 -1
- package/dist/services/userService.d.ts +0 -3
- package/package.json +1 -1
|
@@ -4,9 +4,6 @@ export declare const get: (filter: Filter) => Promise<import("axios").AxiosRespo
|
|
|
4
4
|
export declare const getRosterUser: (filter: UserFilter) => Promise<import("axios").AxiosResponse<any>>;
|
|
5
5
|
export declare const getRosterUserExport: (filter: UserFilter) => Promise<import("axios").AxiosResponse<any>>;
|
|
6
6
|
export declare const getById: (id: string) => Promise<import("axios").AxiosResponse<any>>;
|
|
7
|
-
export declare const getRosterUserById: (id: string) => Promise<import("axios").AxiosResponse<any>>;
|
|
8
|
-
export declare const createRosterUser: (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
9
|
-
export declare const updateRosterUser: (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
10
7
|
export declare const create: (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
11
8
|
export declare const update: (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
12
9
|
export declare const remove: (id: string) => Promise<import("axios").AxiosResponse<any>>;
|