@vendasta/billing 13.0.0 → 13.1.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.
@@ -8,6 +8,7 @@ export interface DeleteRetailPricingRequestInterface {
8
8
  sku?: string;
9
9
  groupId?: string;
10
10
  customerId?: string;
11
+ subscriptionId?: string;
11
12
  }
12
13
  export interface GenerateBillableItemsCSVRequestInterface {
13
14
  merchantId?: string;
@@ -158,4 +159,5 @@ export interface UpsertRetailPricingRequestInterface {
158
159
  };
159
160
  groupId?: string;
160
161
  customerId?: string;
162
+ subscriptionId?: string;
161
163
  }
@@ -8,4 +8,6 @@ export interface SubscriptionPresetInterface {
8
8
  subscriptionId?: string;
9
9
  autoBillable?: boolean;
10
10
  salesOrderId?: string;
11
+ paymentIntentId?: string;
12
+ merchantId?: string;
11
13
  }
@@ -10,6 +10,7 @@ export declare class DeleteRetailPricingRequest implements i.DeleteRetailPricing
10
10
  sku: string;
11
11
  groupId: string;
12
12
  customerId: string;
13
+ subscriptionId: string;
13
14
  static fromProto(proto: any): DeleteRetailPricingRequest;
14
15
  constructor(kwargs?: i.DeleteRetailPricingRequestInterface);
15
16
  toApiJson(): object;
@@ -250,6 +251,7 @@ export declare class UpsertRetailPricingRequest implements i.UpsertRetailPricing
250
251
  };
251
252
  groupId: string;
252
253
  customerId: string;
254
+ subscriptionId: string;
253
255
  static fromProto(proto: any): UpsertRetailPricingRequest;
254
256
  constructor(kwargs?: i.UpsertRetailPricingRequestInterface);
255
257
  toApiJson(): object;
@@ -16,6 +16,8 @@ export declare class SubscriptionPreset implements i.SubscriptionPresetInterface
16
16
  subscriptionId: string;
17
17
  autoBillable: boolean;
18
18
  salesOrderId: string;
19
+ paymentIntentId: string;
20
+ merchantId: string;
19
21
  static fromProto(proto: any): SubscriptionPreset;
20
22
  constructor(kwargs?: i.SubscriptionPresetInterface);
21
23
  toApiJson(): object;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/billing",
3
- "version": "13.0.0",
3
+ "version": "13.1.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=16.2.12",
6
6
  "@angular/core": ">=16.2.12"