@spytecgps/nova-orm 1.4.67 → 1.4.69
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/entities/billingCustomerStripe.d.ts +13 -0
- package/dist/entities/billingDunning.d.ts +16 -0
- package/dist/entities/billingSubscriptionStripe.d.ts +25 -0
- package/dist/entities/index.d.ts +4 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/enums.d.ts +9 -2
- package/package.json +1 -1
package/dist/types/enums.d.ts
CHANGED
|
@@ -150,7 +150,9 @@ export declare enum DevicePlatform {
|
|
|
150
150
|
klarna = "klarna",
|
|
151
151
|
amazon = "amazon",
|
|
152
152
|
braintree_amazon = "braintree_amazon",
|
|
153
|
-
demo = "demo"
|
|
153
|
+
demo = "demo",
|
|
154
|
+
stripe = "stripe",
|
|
155
|
+
stripe_amazon = "stripe_amazon"
|
|
154
156
|
}
|
|
155
157
|
export declare enum DeviceModels {
|
|
156
158
|
UNKNOWN = "UNKNOWN",
|
|
@@ -197,7 +199,12 @@ export declare enum SubscriptionStatus {
|
|
|
197
199
|
Pending = "Pending",
|
|
198
200
|
Canceled = "Canceled",
|
|
199
201
|
Expired = "Expired",
|
|
200
|
-
PastDue = "Past Due"
|
|
202
|
+
PastDue = "Past Due",
|
|
203
|
+
Incomplete = "Incomplete",
|
|
204
|
+
IncompleteExpired = "Incomplete Expired",
|
|
205
|
+
Trialing = "Trialing",
|
|
206
|
+
Unpaid = "Unpaid",
|
|
207
|
+
Paused = "Paused"
|
|
201
208
|
}
|
|
202
209
|
export declare enum DeactivationCode {
|
|
203
210
|
temporary = "temporary",
|