mario-core 2.9.63-beta → 2.9.67-beta
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/containers/User/hooks/useUserList.d.ts +1 -0
- package/dist/index.d.ts +2 -3
- package/dist/index.js +756 -798
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +754 -797
- package/dist/index.modern.js.map +1 -1
- package/dist/services/questionCategoryService.d.ts +1 -3
- package/dist/services/userService.d.ts +1 -0
- package/dist/utils/constants.d.ts +3 -1
- package/package.json +1 -1
|
@@ -1,3 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const get: (parentCategoryId?: number | undefined) => Promise<import("axios").AxiosResponse<any>>;
|
|
3
|
-
export declare const getByFilter: (filter?: Filter | undefined) => Promise<import("axios").AxiosResponse<any>>;
|
|
1
|
+
export declare const get: () => Promise<import("axios").AxiosResponse<any>>;
|
|
@@ -7,3 +7,4 @@ export declare const remove: (id: string) => Promise<import("axios").AxiosRespon
|
|
|
7
7
|
export declare const getAllStudent: (filter?: Filter | undefined) => Promise<import("axios").AxiosResponse<any>>;
|
|
8
8
|
export declare const changePassword: (formData: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
9
9
|
export declare const forgotChangePassword: (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
10
|
+
export declare const switchAccountUser: (id: string) => Promise<import("axios").AxiosResponse<any>>;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Filter } from "../types/Filter";
|
|
2
2
|
export declare const TINY_MCE_API_KEY = "adpshj9swgsscf83gw4gs2f74nx0vicpd5ydka20iqjd7l8r";
|
|
3
3
|
export declare const GOOGLE_RECAPTCHA_KEY = "6LfNtLUaAAAAAL24lbBV11jS-gBtt1mhtxb4NXs0";
|
|
4
|
-
export declare const
|
|
4
|
+
export declare const INIT_AMPLITUDE_KEY_PROD = "860fa99c52ae79d98e904b4c862ddaac";
|
|
5
|
+
export declare const INIT_AMPLITUDE_KEY_STAGE = "c617d0950cfdcae12953907273a1920f";
|
|
5
6
|
export declare const ACCESS_TOKEN = "ACCESS_TOKEN";
|
|
6
7
|
export declare const DEFAULT_PAGE_SIZE_VALUES: {
|
|
7
8
|
label: string;
|
|
@@ -25,6 +26,7 @@ export declare const FULL_DATE_FORMAT = "yyyy-MM-dd HH:mm";
|
|
|
25
26
|
export declare const DATE_MIN_VALUE = "0001-01-01T00:00:00";
|
|
26
27
|
export declare const LICENSE_AGGRID = "Alhanko&Johnson_BASE23_single_1_Devs__22_November_2020_[v2]_MTYwNjAwMzIwMDAwMA==d452f38afc893671cad92795e95d52a1";
|
|
27
28
|
export declare const BASE_URL: string;
|
|
29
|
+
export declare const isLocalhost: boolean;
|
|
28
30
|
export declare const QUESTION_TYPES_OPTIONS: {
|
|
29
31
|
label: string;
|
|
30
32
|
value: string;
|