@vendasta/billing 15.0.0 → 15.1.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 +4 -1
- package/fesm2022/vendasta-billing.mjs +3 -0
- package/fesm2022/vendasta-billing.mjs.map +1 -1
- package/lib/_internal/interfaces/invoice.interface.d.ts +1 -0
- package/lib/_internal/objects/invoice.d.ts +1 -0
- package/package.json +1 -1
|
@@ -109,6 +109,7 @@ export interface ListInvoicesRequestFiltersInterface {
|
|
|
109
109
|
origins?: string[];
|
|
110
110
|
collectionMethods?: string[];
|
|
111
111
|
lastPaymentStatuses?: e.LastPaymentStatus[];
|
|
112
|
+
orderId?: string;
|
|
112
113
|
}
|
|
113
114
|
export interface GetInvoiceRequestInterface {
|
|
114
115
|
merchantId?: string;
|
|
@@ -162,6 +162,7 @@ export declare class ListInvoicesRequestFilters implements i.ListInvoicesRequest
|
|
|
162
162
|
origins: string[];
|
|
163
163
|
collectionMethods: string[];
|
|
164
164
|
lastPaymentStatuses: e.LastPaymentStatus[];
|
|
165
|
+
orderId: string;
|
|
165
166
|
static fromProto(proto: any): ListInvoicesRequestFilters;
|
|
166
167
|
constructor(kwargs?: i.ListInvoicesRequestFiltersInterface);
|
|
167
168
|
toApiJson(): object;
|