@trackunit/react-core-contexts-api 0.2.20 → 0.2.21
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
@@ -1,3 +1,4 @@
|
|
1
|
+
import { UserSubscriptionPackageType } from "./userSubscriptionContext";
|
1
2
|
export interface ICurrentUserContext {
|
2
3
|
tasUserId: string | undefined;
|
3
4
|
/**
|
@@ -44,4 +45,8 @@ export interface ICurrentUserContext {
|
|
44
45
|
* Is user is account owner
|
45
46
|
*/
|
46
47
|
isAccountOwner: boolean | undefined;
|
48
|
+
/**
|
49
|
+
* accounts subscription package name
|
50
|
+
*/
|
51
|
+
subscriptionPackage: UserSubscriptionPackageType | undefined;
|
47
52
|
}
|