@vendasta/billing 14.24.0 → 14.26.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.
@@ -147,6 +147,7 @@ export interface ListSubscriptionsResponseInterface {
147
147
  export interface UpdateSubscriptionRequestSubscriptionInterface {
148
148
  subscriptionId?: string;
149
149
  description?: string;
150
+ billingCycleAnchor?: Date;
150
151
  }
151
152
  export interface SubscriptionProjectionFilterInterface {
152
153
  price?: boolean;
@@ -2,6 +2,7 @@ import * as e from '../enums';
2
2
  export interface CreatePaymentCardRequestInterface {
3
3
  merchantId?: string;
4
4
  stripeToken?: string;
5
+ recaptchaToken?: string;
5
6
  }
6
7
  export interface DeletePaymentCardRequestInterface {
7
8
  merchantId?: string;
@@ -37,4 +38,5 @@ export interface SetDefaultPaymentMethodRequestInterface {
37
38
  export interface UpdatePaymentCardRequestInterface {
38
39
  merchantId?: string;
39
40
  stripeToken?: string;
41
+ recaptchaToken?: string;
40
42
  }
@@ -56,6 +56,7 @@ export interface CreateSubscriptionRequestInterface {
56
56
  expiry?: Date;
57
57
  autoBillable?: boolean;
58
58
  subscriptionId?: string;
59
+ billingCycleAnchor?: Date;
59
60
  }
60
61
  export interface CreateSubscriptionResponseInterface {
61
62
  subscriptionId?: string;
@@ -108,6 +109,7 @@ export interface SubscriptionInterface {
108
109
  expiry?: Date;
109
110
  autoBillable?: boolean;
110
111
  subscriptionId?: string;
112
+ billingCycleAnchor?: Date;
111
113
  }
112
114
  export interface CanCreateSubscriptionsRequestSubscriptionItemInterface {
113
115
  sku?: string;
@@ -215,6 +215,7 @@ export declare class ListSubscriptionsResponse implements i.ListSubscriptionsRes
215
215
  export declare class UpdateSubscriptionRequestSubscription implements i.UpdateSubscriptionRequestSubscriptionInterface {
216
216
  subscriptionId: string;
217
217
  description: string;
218
+ billingCycleAnchor: Date;
218
219
  static fromProto(proto: any): UpdateSubscriptionRequestSubscription;
219
220
  constructor(kwargs?: i.UpdateSubscriptionRequestSubscriptionInterface);
220
221
  toApiJson(): object;
@@ -4,6 +4,7 @@ export declare function enumStringToValue<E>(enumRef: any, value: string): E;
4
4
  export declare class CreatePaymentCardRequest implements i.CreatePaymentCardRequestInterface {
5
5
  merchantId: string;
6
6
  stripeToken: string;
7
+ recaptchaToken: string;
7
8
  static fromProto(proto: any): CreatePaymentCardRequest;
8
9
  constructor(kwargs?: i.CreatePaymentCardRequestInterface);
9
10
  toApiJson(): object;
@@ -57,6 +58,7 @@ export declare class SetDefaultPaymentMethodRequest implements i.SetDefaultPayme
57
58
  export declare class UpdatePaymentCardRequest implements i.UpdatePaymentCardRequestInterface {
58
59
  merchantId: string;
59
60
  stripeToken: string;
61
+ recaptchaToken: string;
60
62
  static fromProto(proto: any): UpdatePaymentCardRequest;
61
63
  constructor(kwargs?: i.UpdatePaymentCardRequestInterface);
62
64
  toApiJson(): object;
@@ -76,6 +76,7 @@ export declare class CreateSubscriptionRequest implements i.CreateSubscriptionRe
76
76
  expiry: Date;
77
77
  autoBillable: boolean;
78
78
  subscriptionId: string;
79
+ billingCycleAnchor: Date;
79
80
  static fromProto(proto: any): CreateSubscriptionRequest;
80
81
  constructor(kwargs?: i.CreateSubscriptionRequestInterface);
81
82
  toApiJson(): object;
@@ -152,6 +153,7 @@ export declare class Subscription implements i.SubscriptionInterface {
152
153
  expiry: Date;
153
154
  autoBillable: boolean;
154
155
  subscriptionId: string;
156
+ billingCycleAnchor: Date;
155
157
  static fromProto(proto: any): Subscription;
156
158
  constructor(kwargs?: i.SubscriptionInterface);
157
159
  toApiJson(): object;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/billing",
3
- "version": "14.24.0",
3
+ "version": "14.26.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=16.2.12",
6
6
  "@angular/core": ">=16.2.12"