@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.
- package/esm2022/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2022/lib/_internal/interfaces/subscription-preset.interface.mjs +1 -1
- package/esm2022/lib/_internal/objects/api.mjs +7 -1
- package/esm2022/lib/_internal/objects/subscription-preset.mjs +7 -1
- package/fesm2022/vendasta-billing.mjs +12 -0
- package/fesm2022/vendasta-billing.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +2 -0
- package/lib/_internal/interfaces/subscription-preset.interface.d.ts +2 -0
- package/lib/_internal/objects/api.d.ts +2 -0
- package/lib/_internal/objects/subscription-preset.d.ts +2 -0
- package/package.json +1 -1
|
@@ -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
|
}
|
|
@@ -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;
|