@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
|
@@ -7551,6 +7551,9 @@ class ListInvoicesRequestFilters {
|
|
|
7551
7551
|
if (typeof this.lastPaymentStatuses !== 'undefined') {
|
|
7552
7552
|
toReturn['lastPaymentStatuses'] = this.lastPaymentStatuses;
|
|
7553
7553
|
}
|
|
7554
|
+
if (typeof this.orderId !== 'undefined') {
|
|
7555
|
+
toReturn['orderId'] = this.orderId;
|
|
7556
|
+
}
|
|
7554
7557
|
return toReturn;
|
|
7555
7558
|
}
|
|
7556
7559
|
}
|