@inceptionbg/main 2.0.84 → 2.0.86
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.d.ts +11 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/global.d.ts +7 -8
- package/package.json +2 -2
package/dist/types/global.d.ts
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { NavigateFunction, Location, LinkProps } from 'react-router-dom';
|
|
2
|
-
|
|
3
1
|
declare const ModuleIds = [
|
|
4
2
|
'ADMIN',
|
|
5
3
|
'EARCHIVE',
|
|
@@ -16,7 +14,13 @@ declare const ModuleIds = [
|
|
|
16
14
|
type IModuleId = (typeof ModuleIds)[number];
|
|
17
15
|
|
|
18
16
|
type IEnv = 'DEV' | 'TEST' | 'PROD' | 'LOCAL' | 'UAT' | 'TEST_PPLCG';
|
|
19
|
-
type IServiceApi =
|
|
17
|
+
type IServiceApi =
|
|
18
|
+
| 'idm'
|
|
19
|
+
| 'codebook'
|
|
20
|
+
| 'auditLog'
|
|
21
|
+
| 'notifications'
|
|
22
|
+
| 'indexData'
|
|
23
|
+
| 'registration';
|
|
20
24
|
|
|
21
25
|
// TypeScript Version: 4.7
|
|
22
26
|
type AxiosHeaderValue = AxiosHeaders | string | string[] | number | boolean | null;
|
|
@@ -628,11 +632,6 @@ declare global {
|
|
|
628
632
|
[id in IModuleId]?: string;
|
|
629
633
|
};
|
|
630
634
|
var axiosInstance: AxiosInstance;
|
|
631
|
-
var useNavigate: () => NavigateFunction;
|
|
632
|
-
var useLocation: () => Location;
|
|
633
|
-
var Link: React.ForwardRefExoticComponent<
|
|
634
|
-
LinkProps & React.RefAttributes<HTMLAnchorElement>
|
|
635
|
-
>;
|
|
636
635
|
var appVersion: string | undefined;
|
|
637
636
|
var api: {
|
|
638
637
|
apiUrl: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inceptionbg/main",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.86",
|
|
4
4
|
"description": "Main app wrapper for Inception ecosystem",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"tslib": "^2.6.1"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"@inceptionbg/iui": "^1.0.
|
|
42
|
+
"@inceptionbg/iui": "^1.0.181",
|
|
43
43
|
"react": "^18.2.0",
|
|
44
44
|
"react-dom": "^18.2.0",
|
|
45
45
|
"sass": "^1.63.6"
|