@vendasta/billing 14.26.0 → 14.28.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/invoice.interface.mjs +1 -1
- package/esm2022/lib/_internal/objects/invoice.mjs +13 -1
- package/fesm2022/vendasta-billing.mjs +12 -0
- package/fesm2022/vendasta-billing.mjs.map +1 -1
- package/lib/_internal/interfaces/invoice.interface.d.ts +2 -0
- package/lib/_internal/objects/invoice.d.ts +2 -0
- package/package.json +1 -1
|
@@ -99,6 +99,7 @@ export interface ListInvoicesRequestFiltersInterface {
|
|
|
99
99
|
dateFilter?: ListInvoicesRequestFiltersDateFilterInterface;
|
|
100
100
|
origins?: string[];
|
|
101
101
|
collectionMethods?: string[];
|
|
102
|
+
lastPaymentStatuses?: e.LastPaymentStatus[];
|
|
102
103
|
}
|
|
103
104
|
export interface GetInvoiceRequestInterface {
|
|
104
105
|
merchantId?: string;
|
|
@@ -240,6 +241,7 @@ export interface UpdateLineItemRequestInterface {
|
|
|
240
241
|
discounts?: AppliedDiscountInterface[];
|
|
241
242
|
servicePeriodStart?: Date;
|
|
242
243
|
servicePeriodEnd?: Date;
|
|
244
|
+
fieldMask?: FieldMaskInterface;
|
|
243
245
|
}
|
|
244
246
|
export interface UpdateLineItemResponseInterface {
|
|
245
247
|
invoice?: InvoiceInterface;
|
|
@@ -152,6 +152,7 @@ export declare class ListInvoicesRequestFilters implements i.ListInvoicesRequest
|
|
|
152
152
|
dateFilter: ListInvoicesRequestFiltersDateFilter;
|
|
153
153
|
origins: string[];
|
|
154
154
|
collectionMethods: string[];
|
|
155
|
+
lastPaymentStatuses: e.LastPaymentStatus[];
|
|
155
156
|
static fromProto(proto: any): ListInvoicesRequestFilters;
|
|
156
157
|
constructor(kwargs?: i.ListInvoicesRequestFiltersInterface);
|
|
157
158
|
toApiJson(): object;
|
|
@@ -353,6 +354,7 @@ export declare class UpdateLineItemRequest implements i.UpdateLineItemRequestInt
|
|
|
353
354
|
discounts: AppliedDiscount[];
|
|
354
355
|
servicePeriodStart: Date;
|
|
355
356
|
servicePeriodEnd: Date;
|
|
357
|
+
fieldMask: FieldMask;
|
|
356
358
|
static fromProto(proto: any): UpdateLineItemRequest;
|
|
357
359
|
constructor(kwargs?: i.UpdateLineItemRequestInterface);
|
|
358
360
|
toApiJson(): object;
|