@vendasta/billing 11.4.0 → 11.6.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/esm2020/lib/_internal/interfaces/invoice.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/invoice.mjs +7 -1
- package/fesm2015/vendasta-billing.mjs +6 -0
- package/fesm2015/vendasta-billing.mjs.map +1 -1
- package/fesm2020/vendasta-billing.mjs +6 -0
- package/fesm2020/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
|
@@ -4378,6 +4378,12 @@ class ListInvoicesRequestFilters {
|
|
|
4378
4378
|
if (typeof this.dateFilter !== 'undefined' && this.dateFilter !== null) {
|
|
4379
4379
|
toReturn['dateFilter'] = 'toApiJson' in this.dateFilter ? this.dateFilter.toApiJson() : this.dateFilter;
|
|
4380
4380
|
}
|
|
4381
|
+
if (typeof this.origins !== 'undefined') {
|
|
4382
|
+
toReturn['origins'] = this.origins;
|
|
4383
|
+
}
|
|
4384
|
+
if (typeof this.collectionMethods !== 'undefined') {
|
|
4385
|
+
toReturn['collectionMethods'] = this.collectionMethods;
|
|
4386
|
+
}
|
|
4381
4387
|
return toReturn;
|
|
4382
4388
|
}
|
|
4383
4389
|
}
|