acsi-core 1.2.40 → 1.2.41

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.
@@ -10,3 +10,4 @@ export declare const setTenant: import("@reduxjs/toolkit").ActionCreatorWithPayl
10
10
  export declare const setAddTenant: import("@reduxjs/toolkit").ActionCreatorWithPayload<any, string>;
11
11
  export declare const setTeam: import("@reduxjs/toolkit").ActionCreatorWithPayload<any, string>;
12
12
  export declare const setIsFirstCalendar: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean | undefined, string>;
13
+ export declare const setStandards: import("@reduxjs/toolkit").ActionCreatorWithPayload<any, string>;
@@ -1,7 +1,7 @@
1
1
  import { LoginAccessTokenRequest, LoginRequest } from "../utils/types/login";
2
- export declare const getInfo: (role: string) => Promise<import("axios").AxiosResponse<any, any, {}>>;
3
- export declare const getSuperAdminInfoFromWeb: () => Promise<import("axios").AxiosResponse<any, any, {}>>;
4
- export declare const apiLoginGoogle: (body: LoginRequest) => Promise<import("axios").AxiosResponse<any, any, {}>>;
5
- export declare const apiLoginGoogleSuperAdmin: (body: LoginRequest) => Promise<import("axios").AxiosResponse<any, any, {}>>;
6
- export declare const apiLoginWithAccessToken: (body: LoginAccessTokenRequest, domain?: string | undefined) => Promise<import("axios").AxiosResponse<any, any, {}>>;
7
- export declare const checkToken: (token: string) => Promise<import("axios").AxiosResponse<any, any, {}>>;
2
+ export declare const getInfo: (role: string) => Promise<import("axios").AxiosResponse<any, any>>;
3
+ export declare const getSuperAdminInfoFromWeb: () => Promise<import("axios").AxiosResponse<any, any>>;
4
+ export declare const apiLoginGoogle: (body: LoginRequest) => Promise<import("axios").AxiosResponse<any, any>>;
5
+ export declare const apiLoginGoogleSuperAdmin: (body: LoginRequest) => Promise<import("axios").AxiosResponse<any, any>>;
6
+ export declare const apiLoginWithAccessToken: (body: LoginAccessTokenRequest, domain?: string | undefined) => Promise<import("axios").AxiosResponse<any, any>>;
7
+ export declare const checkToken: (token: string) => Promise<import("axios").AxiosResponse<any, any>>;
package/package.json CHANGED
@@ -1,19 +1,16 @@
1
1
  {
2
2
  "name": "acsi-core",
3
- "version": "1.2.40",
3
+ "version": "1.2.41",
4
4
  "description": "Contains core components && functions for acsi-core project",
5
5
  "author": "brss",
6
6
  "license": "MIT",
7
- "repository": "edusfere/front-end/acsi-core",
7
+ "repository": "brss/acsi-core",
8
8
  "main": "dist/index.js",
9
9
  "module": "dist/index.modern.js",
10
10
  "source": "src/index.tsx",
11
11
  "engines": {
12
12
  "node": ">=10"
13
13
  },
14
- "publishConfig": {
15
- "registry": "https://registry.npmjs.org/"
16
- },
17
14
  "dependencies": {
18
15
  "@amplitude/analytics-browser": "^2.17.10",
19
16
  "@azure/msal-browser": "^4.20.0",