@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.
@@ -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
  }