@vendasta/billing 14.42.0 → 14.44.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.
@@ -13,7 +13,7 @@ export { PaymentCardCARD_TYPE, PaymentCardFUNDING_TYPE, } from './payment-card.e
13
13
  export { PaymentMethodType, } from './payment-method.enum';
14
14
  export { PaymentProcessor, } from './payment-processor.enum';
15
15
  export { CollectionMethod, Interval, RecurringInvoiceStatus, } from './recurring-invoice.enum';
16
- export { ListInvoicesRequestFiltersDateFilterDateField, InvoiceStatus, LastPaymentStatus, } from './invoice.enum';
16
+ export { ListInvoicesRequestFiltersDateFilterDateField, InvoiceStatus, LastPaymentStatus, Origin, } from './invoice.enum';
17
17
  export { PayoutStatus, PayoutType, } from './payout.enum';
18
18
  export { SortDirection, } from './sort-direction.enum';
19
19
  export { MerchantType, SearchMerchantsRequestSortBy, } from './merchant.enum';
@@ -14,3 +14,10 @@ export declare enum LastPaymentStatus {
14
14
  PAYMENT_PENDING = 2,
15
15
  PAYMENT_FAILED = 3
16
16
  }
17
+ export declare enum Origin {
18
+ UNSET = 0,
19
+ MANUAL = 1,
20
+ SALES_ORDER = 2,
21
+ RENEWAL = 3,
22
+ TEMPLATE = 4
23
+ }
@@ -49,6 +49,7 @@ export interface CreateInvoiceRequestInterface {
49
49
  defaultPaymentMethod?: string;
50
50
  contactId?: string;
51
51
  collectionMethod?: e.CollectionMethod;
52
+ origin?: e.Origin;
52
53
  }
53
54
  export interface CreateInvoiceResponseInterface {
54
55
  invoiceId?: string;
@@ -58,6 +58,7 @@ export interface DisputeInterface {
58
58
  paymentReferenceType?: e.RetailPaymentReferenceType;
59
59
  paymentDescription?: string;
60
60
  paymentReceivedAt?: Date;
61
+ resolvedAt?: Date;
61
62
  }
62
63
  export interface DisputeEvidenceInterface {
63
64
  customerCommunication?: FileInterface;
@@ -252,6 +253,7 @@ export interface RetailPaymentInterface {
252
253
  acssDebitDetails?: RetailPaymentACSSDetailsInterface;
253
254
  paymentFacilitatorFee?: number;
254
255
  paymentFacilitatorType?: e.PaymentFacilitatorType;
256
+ settledAt?: Date;
255
257
  }
256
258
  export interface RetailPaymentsEnabledRequestInterface {
257
259
  merchantId?: string;
@@ -69,6 +69,7 @@ export declare class CreateInvoiceRequest implements i.CreateInvoiceRequestInter
69
69
  defaultPaymentMethod: string;
70
70
  contactId: string;
71
71
  collectionMethod: e.CollectionMethod;
72
+ origin: e.Origin;
72
73
  static fromProto(proto: any): CreateInvoiceRequest;
73
74
  constructor(kwargs?: i.CreateInvoiceRequestInterface);
74
75
  toApiJson(): object;
@@ -84,6 +84,7 @@ export declare class Dispute implements i.DisputeInterface {
84
84
  paymentReferenceType: e.RetailPaymentReferenceType;
85
85
  paymentDescription: string;
86
86
  paymentReceivedAt: Date;
87
+ resolvedAt: Date;
87
88
  static fromProto(proto: any): Dispute;
88
89
  constructor(kwargs?: i.DisputeInterface);
89
90
  toApiJson(): object;
@@ -377,6 +378,7 @@ export declare class RetailPayment implements i.RetailPaymentInterface {
377
378
  acssDebitDetails: RetailPaymentACSSDetails;
378
379
  paymentFacilitatorFee: number;
379
380
  paymentFacilitatorType: e.PaymentFacilitatorType;
381
+ settledAt: Date;
380
382
  static fromProto(proto: any): RetailPayment;
381
383
  constructor(kwargs?: i.RetailPaymentInterface);
382
384
  toApiJson(): object;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/billing",
3
- "version": "14.42.0",
3
+ "version": "14.44.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=16.2.12",
6
6
  "@angular/core": ">=16.2.12"