@vendasta/billing 14.53.0 → 14.54.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/billable-item.interface.mjs +1 -1
- package/esm2022/lib/_internal/objects/billable-item.mjs +4 -1
- package/fesm2022/vendasta-billing.mjs +3 -0
- package/fesm2022/vendasta-billing.mjs.map +1 -1
- package/lib/_internal/interfaces/billable-item.interface.d.ts +1 -0
- package/lib/_internal/objects/billable-item.d.ts +1 -0
- package/package.json +1 -1
|
@@ -162,6 +162,7 @@ export interface UpdateSubscriptionRequestSubscriptionInterface {
|
|
|
162
162
|
export interface SubscriptionProjectionFilterInterface {
|
|
163
163
|
price?: boolean;
|
|
164
164
|
includeDeleted?: boolean;
|
|
165
|
+
includeRetailSubscriptionGroups?: boolean;
|
|
165
166
|
}
|
|
166
167
|
export interface UnexpireBillableItemRequestInterface {
|
|
167
168
|
merchantId?: string;
|
|
@@ -236,6 +236,7 @@ export declare class UpdateSubscriptionRequestSubscription implements i.UpdateSu
|
|
|
236
236
|
export declare class SubscriptionProjectionFilter implements i.SubscriptionProjectionFilterInterface {
|
|
237
237
|
price: boolean;
|
|
238
238
|
includeDeleted: boolean;
|
|
239
|
+
includeRetailSubscriptionGroups: boolean;
|
|
239
240
|
static fromProto(proto: any): SubscriptionProjectionFilter;
|
|
240
241
|
constructor(kwargs?: i.SubscriptionProjectionFilterInterface);
|
|
241
242
|
toApiJson(): object;
|