@vendasta/billing 14.7.0 → 14.9.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.
@@ -42,7 +42,8 @@ export declare enum PaymentStatus {
42
42
  PAYMENT_STATUS_SUCCEEDED = 1,
43
43
  PAYMENT_STATUS_FAILED = 2,
44
44
  PAYMENT_STATUS_REFUNDED = 3,
45
- PAYMENT_STATUS_PARTIALLY_REFUNDED = 4
45
+ PAYMENT_STATUS_PARTIALLY_REFUNDED = 4,
46
+ PAYMENT_STATUS_PENDING = 5
46
47
  }
47
48
  export declare enum RetailPaymentReferenceType {
48
49
  RETAIL_PAYMENT_REFERENCE_TYPE_UNSET = 0,
@@ -9,9 +9,11 @@ export interface ListPaymentMethodsResponseInterface {
9
9
  }
10
10
  export interface PaymentACHDebitInterface {
11
11
  lastFourDigits?: string;
12
+ id?: string;
12
13
  }
13
14
  export interface PaymentACSSDebitInterface {
14
15
  lastFourDigits?: string;
16
+ id?: string;
15
17
  }
16
18
  export interface PaymentMethodInterface {
17
19
  type?: e.PaymentMethodType;
@@ -17,12 +17,14 @@ export declare class ListPaymentMethodsResponse implements i.ListPaymentMethodsR
17
17
  }
18
18
  export declare class PaymentACHDebit implements i.PaymentACHDebitInterface {
19
19
  lastFourDigits: string;
20
+ id: string;
20
21
  static fromProto(proto: any): PaymentACHDebit;
21
22
  constructor(kwargs?: i.PaymentACHDebitInterface);
22
23
  toApiJson(): object;
23
24
  }
24
25
  export declare class PaymentACSSDebit implements i.PaymentACSSDebitInterface {
25
26
  lastFourDigits: string;
27
+ id: string;
26
28
  static fromProto(proto: any): PaymentACSSDebit;
27
29
  constructor(kwargs?: i.PaymentACSSDebitInterface);
28
30
  toApiJson(): object;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/billing",
3
- "version": "14.7.0",
3
+ "version": "14.9.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=16.2.12",
6
6
  "@angular/core": ">=16.2.12"