@spytecgps/nova-orm 0.0.160 → 0.0.162
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/types/billing.d.ts
CHANGED
|
@@ -242,8 +242,9 @@ export interface UpsertBillingKlarnaCustomerParams {
|
|
|
242
242
|
createdAt?: Date | null;
|
|
243
243
|
}
|
|
244
244
|
export interface UpsertBillingKlarnaOrderParams {
|
|
245
|
-
|
|
245
|
+
deviceId: string;
|
|
246
246
|
klarnaCustomerId: string;
|
|
247
|
+
orderId: string;
|
|
247
248
|
planId?: string | null;
|
|
248
249
|
createdAt?: Date | null;
|
|
249
250
|
subscriptionStart?: Date | null;
|
|
@@ -256,5 +257,4 @@ export interface UpsertBillingKlarnaOrderParams {
|
|
|
256
257
|
addons?: object | null;
|
|
257
258
|
nextBillingPeriodAmount?: number | null;
|
|
258
259
|
paymentMethodToken?: string | null;
|
|
259
|
-
deviceId?: string | null;
|
|
260
260
|
}
|