@inceptionbg/main 2.0.228 → 2.0.231
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 +3 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/global.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1275,7 +1275,7 @@ interface IConditionIndexData {
|
|
|
1275
1275
|
}
|
|
1276
1276
|
|
|
1277
1277
|
type IEnv = 'DEV' | 'TEST' | 'PROD' | 'LOCAL' | 'UAT' | 'TEST_PPLCG' | 'PROD_PPLCG';
|
|
1278
|
-
type IServiceApi = 'auth' | 'idm' | 'codebook' | 'auditLog' | 'notifications' | 'indexData' | 'registration' | 'reportTemplates' | 'procurement' | 'archive' | 'invoice' | 'delivery' | 'edms' | 'rif' | 'cashRegister' | 'jisuszProxy' | 'fosterCare' | 'article' | 'approval' | 'messenger' | 'veosp' | 'fixedAssets';
|
|
1278
|
+
type IServiceApi = 'auth' | 'idm' | 'codebook' | 'auditLog' | 'notifications' | 'indexData' | 'registration' | 'reportTemplates' | 'procurement' | 'archive' | 'invoice' | 'delivery' | 'edms' | 'rif' | 'cashRegister' | 'jisuszProxy' | 'fosterCare' | 'article' | 'approval' | 'messenger' | 'veosp' | 'fixedAssets' | 'dispatchAdvice';
|
|
1279
1279
|
type IEnvVar = {
|
|
1280
1280
|
[env in IEnv]: {
|
|
1281
1281
|
serviceApiUrl: {
|
|
@@ -1382,6 +1382,8 @@ interface IUserOrgContext {
|
|
|
1382
1382
|
userSettingsByOrg: IAnyObject;
|
|
1383
1383
|
updateUserSettingsByOrg: (data: IOrganizationSettings) => void;
|
|
1384
1384
|
moduleIds: IModuleIdsObj;
|
|
1385
|
+
hasMultipleOrganizations: boolean;
|
|
1386
|
+
setHasMultipleOrganizations: (hasMultiple: boolean) => void;
|
|
1385
1387
|
}
|
|
1386
1388
|
declare const UserOrgContext: react.Context<IUserOrgContext>;
|
|
1387
1389
|
interface IProps {
|