@managemint-solutions/entities 1.1.14 → 1.1.15

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.
@@ -152,6 +152,16 @@ export interface Permissions {
152
152
  owner: boolean;
153
153
  };
154
154
  }
155
- export interface LoggedInUser extends UserEntity, Permissions {
156
- alerts: Record<string, boolean>;
155
+ export interface Alerts {
156
+ alerts: {
157
+ pending_customer_creation: boolean;
158
+ pending_plan_creation: boolean;
159
+ pending_initial_payment: boolean;
160
+ initial_payment_processing: boolean;
161
+ subscription_creation_failed: boolean;
162
+ pending_cancellation: boolean;
163
+ cancelled: boolean;
164
+ };
165
+ }
166
+ export interface LoggedInUser extends UserEntity, Permissions, Alerts {
157
167
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@managemint-solutions/entities",
3
- "version": "1.1.14",
3
+ "version": "1.1.15",
4
4
  "description": "Entity types used by both the api and portal",
5
5
  "homepage": "https://github.com/ManageMint-Solutions/managemint-solutions-entities#readme",
6
6
  "bugs": {