@vendasta/billing 14.43.0 → 14.44.0
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/esm2022/lib/_internal/interfaces/payment.interface.mjs +1 -1
- package/esm2022/lib/_internal/objects/payment.mjs +7 -1
- package/fesm2022/vendasta-billing.mjs +6 -0
- package/fesm2022/vendasta-billing.mjs.map +1 -1
- package/lib/_internal/interfaces/payment.interface.d.ts +1 -0
- package/lib/_internal/objects/payment.d.ts +1 -0
- package/package.json +1 -1
|
@@ -253,6 +253,7 @@ export interface RetailPaymentInterface {
|
|
|
253
253
|
acssDebitDetails?: RetailPaymentACSSDetailsInterface;
|
|
254
254
|
paymentFacilitatorFee?: number;
|
|
255
255
|
paymentFacilitatorType?: e.PaymentFacilitatorType;
|
|
256
|
+
settledAt?: Date;
|
|
256
257
|
}
|
|
257
258
|
export interface RetailPaymentsEnabledRequestInterface {
|
|
258
259
|
merchantId?: string;
|
|
@@ -378,6 +378,7 @@ export declare class RetailPayment implements i.RetailPaymentInterface {
|
|
|
378
378
|
acssDebitDetails: RetailPaymentACSSDetails;
|
|
379
379
|
paymentFacilitatorFee: number;
|
|
380
380
|
paymentFacilitatorType: e.PaymentFacilitatorType;
|
|
381
|
+
settledAt: Date;
|
|
381
382
|
static fromProto(proto: any): RetailPayment;
|
|
382
383
|
constructor(kwargs?: i.RetailPaymentInterface);
|
|
383
384
|
toApiJson(): object;
|