@inceptionbg/main 2.0.89 → 2.0.91
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 +1 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/global.d.ts +3 -2
- package/package.json +1 -1
package/dist/types/global.d.ts
CHANGED
|
@@ -17,12 +17,14 @@ type IModuleId = (typeof ModuleIds)[number];
|
|
|
17
17
|
|
|
18
18
|
type IEnv = 'DEV' | 'TEST' | 'PROD' | 'LOCAL' | 'UAT' | 'TEST_PPLCG';
|
|
19
19
|
type IServiceApi =
|
|
20
|
+
| 'auth'
|
|
20
21
|
| 'idm'
|
|
21
22
|
| 'codebook'
|
|
22
23
|
| 'auditLog'
|
|
23
24
|
| 'notifications'
|
|
24
25
|
| 'indexData'
|
|
25
|
-
| 'registration'
|
|
26
|
+
| 'registration'
|
|
27
|
+
| 'reportTemplates';
|
|
26
28
|
|
|
27
29
|
// TypeScript Version: 4.7
|
|
28
30
|
type AxiosHeaderValue = AxiosHeaders | string | string[] | number | boolean | null;
|
|
@@ -643,7 +645,6 @@ declare global {
|
|
|
643
645
|
var api: {
|
|
644
646
|
apiUrl: string;
|
|
645
647
|
clientId: string;
|
|
646
|
-
authApiUrl?: string;
|
|
647
648
|
authScope?: string;
|
|
648
649
|
additionalScopes?: string[];
|
|
649
650
|
redirectUrl?: string;
|