@inceptionbg/main 1.0.75 → 1.0.77
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 +2 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1392,7 +1392,7 @@ interface IOrganizationPrivileges {
|
|
|
1392
1392
|
eDelivery?: boolean;
|
|
1393
1393
|
selfManagedWidgets?: boolean;
|
|
1394
1394
|
contractOrunRequired?: boolean;
|
|
1395
|
-
workHourStart?:
|
|
1395
|
+
workHourStart?: string;
|
|
1396
1396
|
workHourEnd?: string;
|
|
1397
1397
|
costCenterAdditionalCodebook?: {
|
|
1398
1398
|
uuid: string;
|
|
@@ -1473,7 +1473,7 @@ interface IUserOrgContext {
|
|
|
1473
1473
|
userPreferences: IUserPreferences;
|
|
1474
1474
|
userPrivileges: IUserPrivileges;
|
|
1475
1475
|
reloadUser: (callback?: () => void) => void;
|
|
1476
|
-
updateUserPreferences: (data: IUserPreferences) => void;
|
|
1476
|
+
updateUserPreferences: (data: IUserPreferences, showToast?: boolean) => void;
|
|
1477
1477
|
organization: IOrganization | null;
|
|
1478
1478
|
orgPrivileges: IOrganizationPrivileges;
|
|
1479
1479
|
changeOrganization: (orgUuid: string, callback?: () => void) => void;
|