@vendasta/billing 12.18.0 → 12.19.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.
@@ -53,6 +53,7 @@ export interface CreateSubscriptionRequestInterface {
53
53
  retailFrequency?: e.Frequency;
54
54
  consumer?: e.Consumer;
55
55
  renewalStart?: Date;
56
+ expiry?: Date;
56
57
  }
57
58
  export interface CreateSubscriptionsRequestInterface {
58
59
  merchantId?: string;
@@ -95,6 +96,7 @@ export interface SubscriptionInterface {
95
96
  retailFrequency?: e.Frequency;
96
97
  consumer?: e.Consumer;
97
98
  renewalStart?: Date;
99
+ expiry?: Date;
98
100
  }
99
101
  export interface CanCreateSubscriptionsRequestSubscriptionItemInterface {
100
102
  sku?: string;
@@ -73,6 +73,7 @@ export declare class CreateSubscriptionRequest implements i.CreateSubscriptionRe
73
73
  retailFrequency: e.Frequency;
74
74
  consumer: e.Consumer;
75
75
  renewalStart: Date;
76
+ expiry: Date;
76
77
  static fromProto(proto: any): CreateSubscriptionRequest;
77
78
  constructor(kwargs?: i.CreateSubscriptionRequestInterface);
78
79
  toApiJson(): object;
@@ -133,6 +134,7 @@ export declare class Subscription implements i.SubscriptionInterface {
133
134
  retailFrequency: e.Frequency;
134
135
  consumer: e.Consumer;
135
136
  renewalStart: Date;
137
+ expiry: Date;
136
138
  static fromProto(proto: any): Subscription;
137
139
  constructor(kwargs?: i.SubscriptionInterface);
138
140
  toApiJson(): object;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/billing",
3
- "version": "12.18.0",
3
+ "version": "12.19.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=16.2.12",
6
6
  "@angular/core": ">=16.2.12"