@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.
- package/dist/users/index.d.ts +12 -2
- package/package.json +1 -1
package/dist/users/index.d.ts
CHANGED
|
@@ -152,6 +152,16 @@ export interface Permissions {
|
|
|
152
152
|
owner: boolean;
|
|
153
153
|
};
|
|
154
154
|
}
|
|
155
|
-
export interface
|
|
156
|
-
alerts:
|
|
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