@vendasta/billing 14.54.0 → 14.56.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/interfaces/invoice.interface.mjs +1 -1
- package/esm2022/lib/_internal/interfaces/retail-subscription-group.interface.mjs +1 -1
- package/esm2022/lib/_internal/objects/billable-item.mjs +7 -1
- package/esm2022/lib/_internal/objects/invoice.mjs +1 -1
- package/esm2022/lib/_internal/objects/retail-subscription-group.mjs +7 -1
- package/fesm2022/vendasta-billing.mjs +12 -0
- package/fesm2022/vendasta-billing.mjs.map +1 -1
- package/lib/_internal/interfaces/billable-item.interface.d.ts +2 -0
- package/lib/_internal/interfaces/retail-subscription-group.interface.d.ts +2 -0
- package/lib/_internal/objects/billable-item.d.ts +2 -0
- package/lib/_internal/objects/retail-subscription-group.d.ts +2 -0
- package/package.json +1 -1
|
@@ -100,6 +100,7 @@ export interface ListSubscriptionsRequestFiltersInterface {
|
|
|
100
100
|
expiredDateGte?: Date;
|
|
101
101
|
expiredDateLte?: Date;
|
|
102
102
|
frequencies?: e.Frequency[];
|
|
103
|
+
retailSubscriptionGroupIds?: string[];
|
|
103
104
|
}
|
|
104
105
|
export interface GetBillableItemRequestInterface {
|
|
105
106
|
merchantId?: string;
|
|
@@ -158,6 +159,7 @@ export interface UpdateSubscriptionRequestSubscriptionInterface {
|
|
|
158
159
|
subscriptionId?: string;
|
|
159
160
|
description?: string;
|
|
160
161
|
billingCycleAnchor?: Date;
|
|
162
|
+
retailSubscriptionGroupId?: string;
|
|
161
163
|
}
|
|
162
164
|
export interface SubscriptionProjectionFilterInterface {
|
|
163
165
|
price?: boolean;
|
|
@@ -20,6 +20,8 @@ export interface RetailSubscriptionGroupInterface {
|
|
|
20
20
|
export interface UpdateRetailSubscriptionGroupRequestInterface {
|
|
21
21
|
retailSubscriptionGroup?: RetailSubscriptionGroupInterface;
|
|
22
22
|
fieldMask?: FieldMaskInterface;
|
|
23
|
+
merchantId?: string;
|
|
24
|
+
customerId?: string;
|
|
23
25
|
}
|
|
24
26
|
export interface UpdateRetailSubscriptionGroupResponseInterface {
|
|
25
27
|
retailSubscriptionGroup?: RetailSubscriptionGroupInterface;
|
|
@@ -135,6 +135,7 @@ export declare class ListSubscriptionsRequestFilters implements i.ListSubscripti
|
|
|
135
135
|
expiredDateGte: Date;
|
|
136
136
|
expiredDateLte: Date;
|
|
137
137
|
frequencies: e.Frequency[];
|
|
138
|
+
retailSubscriptionGroupIds: string[];
|
|
138
139
|
static fromProto(proto: any): ListSubscriptionsRequestFilters;
|
|
139
140
|
constructor(kwargs?: i.ListSubscriptionsRequestFiltersInterface);
|
|
140
141
|
toApiJson(): object;
|
|
@@ -229,6 +230,7 @@ export declare class UpdateSubscriptionRequestSubscription implements i.UpdateSu
|
|
|
229
230
|
subscriptionId: string;
|
|
230
231
|
description: string;
|
|
231
232
|
billingCycleAnchor: Date;
|
|
233
|
+
retailSubscriptionGroupId: string;
|
|
232
234
|
static fromProto(proto: any): UpdateSubscriptionRequestSubscription;
|
|
233
235
|
constructor(kwargs?: i.UpdateSubscriptionRequestSubscriptionInterface);
|
|
234
236
|
toApiJson(): object;
|
|
@@ -37,6 +37,8 @@ export declare class RetailSubscriptionGroup implements i.RetailSubscriptionGrou
|
|
|
37
37
|
export declare class UpdateRetailSubscriptionGroupRequest implements i.UpdateRetailSubscriptionGroupRequestInterface {
|
|
38
38
|
retailSubscriptionGroup: RetailSubscriptionGroup;
|
|
39
39
|
fieldMask: FieldMask;
|
|
40
|
+
merchantId: string;
|
|
41
|
+
customerId: string;
|
|
40
42
|
static fromProto(proto: any): UpdateRetailSubscriptionGroupRequest;
|
|
41
43
|
constructor(kwargs?: i.UpdateRetailSubscriptionGroupRequestInterface);
|
|
42
44
|
toApiJson(): object;
|