mario-core 2.9.233-layout → 2.9.235-layout

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.
@@ -1,3 +1,4 @@
1
+ import { LogLevel } from "@azure/msal-browser";
1
2
  /**
2
3
  * Configuration object to be passed to MSAL instance on creation.
3
4
  * For a full list of MSAL.js configuration parameters, visit:
@@ -15,7 +16,7 @@ export declare const msalConfig: {
15
16
  };
16
17
  system: {
17
18
  loggerOptions: {
18
- loggerCallback: (level: any, message: string, containsPii: any) => void;
19
+ loggerCallback: (level: LogLevel, message: string, containsPii: any) => void;
19
20
  };
20
21
  };
21
22
  };
@@ -8,7 +8,7 @@ declare const useUserList: () => {
8
8
  removeData: (id: string) => void;
9
9
  changeFilters: (updatedFilters: any) => void;
10
10
  reDirectDetailPage: (id?: number | undefined) => void;
11
- swicthUser: (id: string) => Promise<void>;
11
+ switchUser: (id: string) => Promise<void>;
12
12
  handleSyncRosterUsers: () => Promise<void>;
13
13
  rosterUserInfo: (record: any) => string;
14
14
  };