@managemint-solutions/entities 1.1.16 → 1.1.17
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.
|
@@ -5,6 +5,7 @@ export declare enum BillingStatus {
|
|
|
5
5
|
PENDING_SUBSCRIPTION_CREATION = "pending_subscription_creation",
|
|
6
6
|
ACTIVE = "active",
|
|
7
7
|
PAYMENT_FAILED = "payment_failed",
|
|
8
|
+
PAYMENT_RETRY_PROCESSING = "payment_retry_processing",
|
|
8
9
|
CANCELLATION_SCHEDULED = "cancellation_scheduled",
|
|
9
10
|
CANCELLED = "cancelled"
|
|
10
11
|
}
|
|
@@ -9,6 +9,7 @@ var BillingStatus;
|
|
|
9
9
|
BillingStatus["PENDING_SUBSCRIPTION_CREATION"] = "pending_subscription_creation";
|
|
10
10
|
BillingStatus["ACTIVE"] = "active";
|
|
11
11
|
BillingStatus["PAYMENT_FAILED"] = "payment_failed";
|
|
12
|
+
BillingStatus["PAYMENT_RETRY_PROCESSING"] = "payment_retry_processing";
|
|
12
13
|
BillingStatus["CANCELLATION_SCHEDULED"] = "cancellation_scheduled";
|
|
13
14
|
BillingStatus["CANCELLED"] = "cancelled";
|
|
14
15
|
})(BillingStatus || (exports.BillingStatus = BillingStatus = {}));
|
package/dist/users/index.d.ts
CHANGED
|
@@ -153,15 +153,16 @@ export interface Permissions {
|
|
|
153
153
|
};
|
|
154
154
|
}
|
|
155
155
|
export interface Alerts {
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
156
|
+
pending_customer_creation: boolean;
|
|
157
|
+
pending_plan_creation: boolean;
|
|
158
|
+
pending_initial_payment: boolean;
|
|
159
|
+
initial_payment_processing: boolean;
|
|
160
|
+
subscription_creation_failed: boolean;
|
|
161
|
+
payment_failed: boolean;
|
|
162
|
+
payment_retry_processing: boolean;
|
|
163
|
+
pending_cancellation: boolean;
|
|
164
|
+
cancelled: boolean;
|
|
165
165
|
}
|
|
166
|
-
export interface LoggedInUser extends UserEntity, Permissions
|
|
166
|
+
export interface LoggedInUser extends UserEntity, Permissions {
|
|
167
|
+
alerts: Alerts | null;
|
|
167
168
|
}
|
package/package.json
CHANGED