@vendasta/billing 11.5.0 → 11.7.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.
@@ -88,6 +88,8 @@ export interface ListInvoicesRequestFiltersInterface {
88
88
  pastDue?: boolean;
89
89
  number?: string;
90
90
  dateFilter?: ListInvoicesRequestFiltersDateFilterInterface;
91
+ origins?: string[];
92
+ collectionMethods?: string[];
91
93
  }
92
94
  export interface GetInvoiceRequestInterface {
93
95
  merchantId?: string;
@@ -49,6 +49,7 @@ export interface RecurringInvoiceInterface {
49
49
  endsAt?: Date;
50
50
  customerName?: string;
51
51
  customerAddress?: RecurringInvoiceCustomerAddressInterface;
52
+ netD?: number;
52
53
  }
53
54
  export interface RecurringInvoiceBundleInterface {
54
55
  name?: string;
@@ -138,6 +138,8 @@ export declare class ListInvoicesRequestFilters implements i.ListInvoicesRequest
138
138
  pastDue: boolean;
139
139
  number: string;
140
140
  dateFilter: ListInvoicesRequestFiltersDateFilter;
141
+ origins: string[];
142
+ collectionMethods: string[];
141
143
  static fromProto(proto: any): ListInvoicesRequestFilters;
142
144
  constructor(kwargs?: i.ListInvoicesRequestFiltersInterface);
143
145
  toApiJson(): object;
@@ -69,6 +69,7 @@ export declare class RecurringInvoice implements i.RecurringInvoiceInterface {
69
69
  endsAt: Date;
70
70
  customerName: string;
71
71
  customerAddress: RecurringInvoiceCustomerAddress;
72
+ netD: number;
72
73
  static fromProto(proto: any): RecurringInvoice;
73
74
  constructor(kwargs?: i.RecurringInvoiceInterface);
74
75
  toApiJson(): object;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/billing",
3
- "version": "11.5.0",
3
+ "version": "11.7.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"