@vendasta/billing 14.42.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/enums/index.mjs +2 -2
- package/esm2022/lib/_internal/enums/invoice.enum.mjs +9 -1
- package/esm2022/lib/_internal/interfaces/invoice.interface.mjs +1 -1
- package/esm2022/lib/_internal/interfaces/payment.interface.mjs +1 -1
- package/esm2022/lib/_internal/objects/invoice.mjs +7 -1
- package/esm2022/lib/_internal/objects/payment.mjs +13 -1
- package/fesm2022/vendasta-billing.mjs +27 -1
- package/fesm2022/vendasta-billing.mjs.map +1 -1
- package/lib/_internal/enums/index.d.ts +1 -1
- package/lib/_internal/enums/invoice.enum.d.ts +7 -0
- package/lib/_internal/interfaces/invoice.interface.d.ts +1 -0
- package/lib/_internal/interfaces/payment.interface.d.ts +2 -0
- package/lib/_internal/objects/invoice.d.ts +1 -0
- package/lib/_internal/objects/payment.d.ts +2 -0
- package/package.json +1 -1
|
@@ -13,7 +13,7 @@ export { PaymentCardCARD_TYPE, PaymentCardFUNDING_TYPE, } from './payment-card.e
|
|
|
13
13
|
export { PaymentMethodType, } from './payment-method.enum';
|
|
14
14
|
export { PaymentProcessor, } from './payment-processor.enum';
|
|
15
15
|
export { CollectionMethod, Interval, RecurringInvoiceStatus, } from './recurring-invoice.enum';
|
|
16
|
-
export { ListInvoicesRequestFiltersDateFilterDateField, InvoiceStatus, LastPaymentStatus, } from './invoice.enum';
|
|
16
|
+
export { ListInvoicesRequestFiltersDateFilterDateField, InvoiceStatus, LastPaymentStatus, Origin, } from './invoice.enum';
|
|
17
17
|
export { PayoutStatus, PayoutType, } from './payout.enum';
|
|
18
18
|
export { SortDirection, } from './sort-direction.enum';
|
|
19
19
|
export { MerchantType, SearchMerchantsRequestSortBy, } from './merchant.enum';
|
|
@@ -58,6 +58,7 @@ export interface DisputeInterface {
|
|
|
58
58
|
paymentReferenceType?: e.RetailPaymentReferenceType;
|
|
59
59
|
paymentDescription?: string;
|
|
60
60
|
paymentReceivedAt?: Date;
|
|
61
|
+
resolvedAt?: Date;
|
|
61
62
|
}
|
|
62
63
|
export interface DisputeEvidenceInterface {
|
|
63
64
|
customerCommunication?: FileInterface;
|
|
@@ -252,6 +253,7 @@ export interface RetailPaymentInterface {
|
|
|
252
253
|
acssDebitDetails?: RetailPaymentACSSDetailsInterface;
|
|
253
254
|
paymentFacilitatorFee?: number;
|
|
254
255
|
paymentFacilitatorType?: e.PaymentFacilitatorType;
|
|
256
|
+
settledAt?: Date;
|
|
255
257
|
}
|
|
256
258
|
export interface RetailPaymentsEnabledRequestInterface {
|
|
257
259
|
merchantId?: string;
|
|
@@ -69,6 +69,7 @@ export declare class CreateInvoiceRequest implements i.CreateInvoiceRequestInter
|
|
|
69
69
|
defaultPaymentMethod: string;
|
|
70
70
|
contactId: string;
|
|
71
71
|
collectionMethod: e.CollectionMethod;
|
|
72
|
+
origin: e.Origin;
|
|
72
73
|
static fromProto(proto: any): CreateInvoiceRequest;
|
|
73
74
|
constructor(kwargs?: i.CreateInvoiceRequestInterface);
|
|
74
75
|
toApiJson(): object;
|
|
@@ -84,6 +84,7 @@ export declare class Dispute implements i.DisputeInterface {
|
|
|
84
84
|
paymentReferenceType: e.RetailPaymentReferenceType;
|
|
85
85
|
paymentDescription: string;
|
|
86
86
|
paymentReceivedAt: Date;
|
|
87
|
+
resolvedAt: Date;
|
|
87
88
|
static fromProto(proto: any): Dispute;
|
|
88
89
|
constructor(kwargs?: i.DisputeInterface);
|
|
89
90
|
toApiJson(): object;
|
|
@@ -377,6 +378,7 @@ export declare class RetailPayment implements i.RetailPaymentInterface {
|
|
|
377
378
|
acssDebitDetails: RetailPaymentACSSDetails;
|
|
378
379
|
paymentFacilitatorFee: number;
|
|
379
380
|
paymentFacilitatorType: e.PaymentFacilitatorType;
|
|
381
|
+
settledAt: Date;
|
|
380
382
|
static fromProto(proto: any): RetailPayment;
|
|
381
383
|
constructor(kwargs?: i.RetailPaymentInterface);
|
|
382
384
|
toApiJson(): object;
|