@trackunit/react-core-contexts-api 0.2.24 → 0.2.25
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/package.json
CHANGED
@@ -33,6 +33,14 @@ export interface ICurrentUserContext {
|
|
33
33
|
email: string | undefined;
|
34
34
|
name: string | undefined;
|
35
35
|
jobTitle: string | undefined;
|
36
|
+
/**
|
37
|
+
* Is the user currently assuming a different user
|
38
|
+
*/
|
39
|
+
isAssuming: boolean;
|
40
|
+
/**
|
41
|
+
* Is the user a Trackunit user
|
42
|
+
*/
|
43
|
+
isTrackunitUser: boolean;
|
36
44
|
/**
|
37
45
|
* Is there an authenticated user or not
|
38
46
|
*/
|