@wix/auto_sdk_stores_subscription-options 1.0.35 → 1.0.36
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/build/cjs/index.d.ts +45 -45
- package/build/cjs/index.js +274 -274
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +168 -168
- package/build/cjs/index.typings.js +233 -233
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +119 -119
- package/build/cjs/meta.js +205 -205
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +45 -45
- package/build/es/index.mjs +274 -274
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +168 -168
- package/build/es/index.typings.mjs +233 -233
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +119 -119
- package/build/es/meta.mjs +205 -205
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +45 -45
- package/build/internal/cjs/index.js +274 -274
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +168 -168
- package/build/internal/cjs/index.typings.js +233 -233
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +119 -119
- package/build/internal/cjs/meta.js +205 -205
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +45 -45
- package/build/internal/es/index.mjs +274 -274
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +168 -168
- package/build/internal/es/index.typings.mjs +233 -233
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +119 -119
- package/build/internal/es/meta.mjs +205 -205
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { GetSubscriptionOptionRequest as GetSubscriptionOptionRequest$1, GetSubscriptionOptionResponse as GetSubscriptionOptionResponse$1, GetSubscriptionOptionsForProductRequest as GetSubscriptionOptionsForProductRequest$1, GetSubscriptionOptionsForProductResponse as GetSubscriptionOptionsForProductResponse$1, GetProductIdsForSubscriptionOptionRequest as GetProductIdsForSubscriptionOptionRequest$1, GetProductIdsForSubscriptionOptionResponse as GetProductIdsForSubscriptionOptionResponse$1, GetOneTimePurchasesStatusRequest as GetOneTimePurchasesStatusRequest$1, GetOneTimePurchasesStatusResponse as GetOneTimePurchasesStatusResponse$1, CreateSubscriptionOptionRequest as CreateSubscriptionOptionRequest$1, CreateSubscriptionOptionResponse as CreateSubscriptionOptionResponse$1, UpdateSubscriptionOptionRequest as UpdateSubscriptionOptionRequest$1, UpdateSubscriptionOptionResponse as UpdateSubscriptionOptionResponse$1, DeleteSubscriptionOptionRequest as DeleteSubscriptionOptionRequest$1, DeleteSubscriptionOptionResponse as DeleteSubscriptionOptionResponse$1, BulkCreateSubscriptionOptionsRequest as BulkCreateSubscriptionOptionsRequest$1, BulkCreateSubscriptionOptionsResponse as BulkCreateSubscriptionOptionsResponse$1, BulkUpdateSubscriptionOptionsRequest as BulkUpdateSubscriptionOptionsRequest$1, BulkUpdateSubscriptionOptionsResponse as BulkUpdateSubscriptionOptionsResponse$1, BulkDeleteSubscriptionOptionsRequest as BulkDeleteSubscriptionOptionsRequest$1, BulkDeleteSubscriptionOptionsResponse as BulkDeleteSubscriptionOptionsResponse$1, AssignSubscriptionOptionsToProductRequest as AssignSubscriptionOptionsToProductRequest$1, AssignSubscriptionOptionsToProductResponse as AssignSubscriptionOptionsToProductResponse$1, AllowOneTimePurchasesRequest as AllowOneTimePurchasesRequest$1, AllowOneTimePurchasesResponse as AllowOneTimePurchasesResponse$1, EnableCustomerCancellationRequest as EnableCustomerCancellationRequest$1, EnableCustomerCancellationResponse as EnableCustomerCancellationResponse$1 } from './index.typings.js';
|
|
2
2
|
import '@wix/sdk-types';
|
|
3
3
|
|
|
4
4
|
interface SubscriptionOption {
|
|
@@ -62,75 +62,30 @@ declare enum DiscountType {
|
|
|
62
62
|
}
|
|
63
63
|
/** @enumType */
|
|
64
64
|
type DiscountTypeWithLiterals = DiscountType | 'UNDEFINED' | 'AMOUNT' | 'PERCENT';
|
|
65
|
-
interface
|
|
66
|
-
/** Subscription option info. */
|
|
67
|
-
subscriptionOption: SubscriptionOption;
|
|
68
|
-
}
|
|
69
|
-
interface CreateSubscriptionOptionResponse {
|
|
70
|
-
/** Newly created subscription option. */
|
|
71
|
-
subscriptionOption?: SubscriptionOption;
|
|
72
|
-
}
|
|
73
|
-
interface UpdateSubscriptionOptionRequest {
|
|
74
|
-
/** Subscription option info. Only the passed parameters will be updated. */
|
|
75
|
-
subscriptionOption: SubscriptionOption;
|
|
76
|
-
}
|
|
77
|
-
interface UpdateSubscriptionOptionResponse {
|
|
78
|
-
/** Updated subscription option. */
|
|
79
|
-
subscriptionOption?: SubscriptionOption;
|
|
80
|
-
}
|
|
81
|
-
interface DeleteSubscriptionOptionRequest {
|
|
65
|
+
interface GetSubscriptionOptionRequest {
|
|
82
66
|
/**
|
|
83
|
-
*
|
|
67
|
+
* Subscription option ID.
|
|
84
68
|
* @minLength 1
|
|
85
69
|
* @format GUID
|
|
86
70
|
*/
|
|
87
71
|
id: string;
|
|
88
72
|
}
|
|
89
|
-
interface
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
/**
|
|
93
|
-
* Subscription options info.
|
|
94
|
-
* @maxSize 100
|
|
95
|
-
*/
|
|
96
|
-
subscriptionOptions: SubscriptionOption[];
|
|
97
|
-
}
|
|
98
|
-
interface BulkCreateSubscriptionOptionsResponse {
|
|
99
|
-
/** Newly created subscription options. */
|
|
100
|
-
subscriptionOptions?: SubscriptionOption[];
|
|
101
|
-
}
|
|
102
|
-
interface BulkUpdateSubscriptionOptionsRequest {
|
|
103
|
-
/**
|
|
104
|
-
* Subscription options info. Only the passed parameters in each subscription option will be updated.
|
|
105
|
-
* @maxSize 100
|
|
106
|
-
*/
|
|
107
|
-
subscriptionOptions: SubscriptionOption[];
|
|
108
|
-
}
|
|
109
|
-
interface BulkUpdateSubscriptionOptionsResponse {
|
|
110
|
-
/** Updated subscription options. */
|
|
111
|
-
subscriptionOptions?: SubscriptionOption[];
|
|
112
|
-
}
|
|
113
|
-
interface BulkDeleteSubscriptionOptionsRequest {
|
|
114
|
-
/**
|
|
115
|
-
* IDs of the subscription options to delete.
|
|
116
|
-
* @maxSize 100
|
|
117
|
-
* @format GUID
|
|
118
|
-
*/
|
|
119
|
-
ids: string[];
|
|
120
|
-
}
|
|
121
|
-
interface BulkDeleteSubscriptionOptionsResponse {
|
|
73
|
+
interface GetSubscriptionOptionResponse {
|
|
74
|
+
/** Subscription option. */
|
|
75
|
+
subscriptionOption?: SubscriptionOption;
|
|
122
76
|
}
|
|
123
|
-
interface
|
|
77
|
+
interface GetSubscriptionOptionsForProductRequest {
|
|
124
78
|
/**
|
|
125
79
|
* Product ID.
|
|
126
80
|
* @minLength 1
|
|
127
81
|
*/
|
|
128
82
|
productId: string;
|
|
129
|
-
/**
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
83
|
+
/** Whether to include hidden subscription options in the results. */
|
|
84
|
+
includeHiddenSubscriptionOptions?: boolean;
|
|
85
|
+
}
|
|
86
|
+
interface GetSubscriptionOptionsForProductResponse {
|
|
87
|
+
/** Subscription options. */
|
|
88
|
+
subscriptionOptions?: SubscriptionOptionInProduct[];
|
|
134
89
|
}
|
|
135
90
|
interface SubscriptionOptionInProduct {
|
|
136
91
|
/**
|
|
@@ -164,55 +119,6 @@ interface SubscriptionOptionInProduct {
|
|
|
164
119
|
*/
|
|
165
120
|
discount?: Discount;
|
|
166
121
|
}
|
|
167
|
-
interface AssignSubscriptionOptionsToProductResponse {
|
|
168
|
-
}
|
|
169
|
-
interface AllowOneTimePurchasesRequest {
|
|
170
|
-
/**
|
|
171
|
-
* Product ID.
|
|
172
|
-
* @minLength 1
|
|
173
|
-
*/
|
|
174
|
-
productId: string;
|
|
175
|
-
/** Pass `true` to offer product by subscription and as one-time purchase. Pass `false` to offer product as subscription only. */
|
|
176
|
-
allowed: boolean | null;
|
|
177
|
-
}
|
|
178
|
-
interface AllowOneTimePurchasesResponse {
|
|
179
|
-
}
|
|
180
|
-
interface EnableCustomerCancellationRequest {
|
|
181
|
-
/**
|
|
182
|
-
* Product ID.
|
|
183
|
-
* @minLength 1
|
|
184
|
-
*/
|
|
185
|
-
productId: string;
|
|
186
|
-
/** Pass `true` to enable cancellation option of plans for the customer, pass `false` to disable it. */
|
|
187
|
-
allowed: boolean | null;
|
|
188
|
-
}
|
|
189
|
-
interface EnableCustomerCancellationResponse {
|
|
190
|
-
}
|
|
191
|
-
interface GetSubscriptionOptionRequest {
|
|
192
|
-
/**
|
|
193
|
-
* Subscription option ID.
|
|
194
|
-
* @minLength 1
|
|
195
|
-
* @format GUID
|
|
196
|
-
*/
|
|
197
|
-
id: string;
|
|
198
|
-
}
|
|
199
|
-
interface GetSubscriptionOptionResponse {
|
|
200
|
-
/** Subscription option. */
|
|
201
|
-
subscriptionOption?: SubscriptionOption;
|
|
202
|
-
}
|
|
203
|
-
interface GetSubscriptionOptionsForProductRequest {
|
|
204
|
-
/**
|
|
205
|
-
* Product ID.
|
|
206
|
-
* @minLength 1
|
|
207
|
-
*/
|
|
208
|
-
productId: string;
|
|
209
|
-
/** Whether to include hidden subscription options in the results. */
|
|
210
|
-
includeHiddenSubscriptionOptions?: boolean;
|
|
211
|
-
}
|
|
212
|
-
interface GetSubscriptionOptionsForProductResponse {
|
|
213
|
-
/** Subscription options. */
|
|
214
|
-
subscriptionOptions?: SubscriptionOptionInProduct[];
|
|
215
|
-
}
|
|
216
122
|
interface ListSubscriptionOptionsRequest {
|
|
217
123
|
/**
|
|
218
124
|
* Subscription option IDs.
|
|
@@ -370,6 +276,100 @@ interface GetOneTimePurchasesStatusResponse {
|
|
|
370
276
|
/** Whether the specified product is available for one-time purchase */
|
|
371
277
|
allowed?: boolean;
|
|
372
278
|
}
|
|
279
|
+
interface CreateSubscriptionOptionRequest {
|
|
280
|
+
/** Subscription option info. */
|
|
281
|
+
subscriptionOption: SubscriptionOption;
|
|
282
|
+
}
|
|
283
|
+
interface CreateSubscriptionOptionResponse {
|
|
284
|
+
/** Newly created subscription option. */
|
|
285
|
+
subscriptionOption?: SubscriptionOption;
|
|
286
|
+
}
|
|
287
|
+
interface UpdateSubscriptionOptionRequest {
|
|
288
|
+
/** Subscription option info. Only the passed parameters will be updated. */
|
|
289
|
+
subscriptionOption: SubscriptionOption;
|
|
290
|
+
}
|
|
291
|
+
interface UpdateSubscriptionOptionResponse {
|
|
292
|
+
/** Updated subscription option. */
|
|
293
|
+
subscriptionOption?: SubscriptionOption;
|
|
294
|
+
}
|
|
295
|
+
interface DeleteSubscriptionOptionRequest {
|
|
296
|
+
/**
|
|
297
|
+
* ID of the subscription option to delete.
|
|
298
|
+
* @minLength 1
|
|
299
|
+
* @format GUID
|
|
300
|
+
*/
|
|
301
|
+
id: string;
|
|
302
|
+
}
|
|
303
|
+
interface DeleteSubscriptionOptionResponse {
|
|
304
|
+
}
|
|
305
|
+
interface BulkCreateSubscriptionOptionsRequest {
|
|
306
|
+
/**
|
|
307
|
+
* Subscription options info.
|
|
308
|
+
* @maxSize 100
|
|
309
|
+
*/
|
|
310
|
+
subscriptionOptions: SubscriptionOption[];
|
|
311
|
+
}
|
|
312
|
+
interface BulkCreateSubscriptionOptionsResponse {
|
|
313
|
+
/** Newly created subscription options. */
|
|
314
|
+
subscriptionOptions?: SubscriptionOption[];
|
|
315
|
+
}
|
|
316
|
+
interface BulkUpdateSubscriptionOptionsRequest {
|
|
317
|
+
/**
|
|
318
|
+
* Subscription options info. Only the passed parameters in each subscription option will be updated.
|
|
319
|
+
* @maxSize 100
|
|
320
|
+
*/
|
|
321
|
+
subscriptionOptions: SubscriptionOption[];
|
|
322
|
+
}
|
|
323
|
+
interface BulkUpdateSubscriptionOptionsResponse {
|
|
324
|
+
/** Updated subscription options. */
|
|
325
|
+
subscriptionOptions?: SubscriptionOption[];
|
|
326
|
+
}
|
|
327
|
+
interface BulkDeleteSubscriptionOptionsRequest {
|
|
328
|
+
/**
|
|
329
|
+
* IDs of the subscription options to delete.
|
|
330
|
+
* @maxSize 100
|
|
331
|
+
* @format GUID
|
|
332
|
+
*/
|
|
333
|
+
ids: string[];
|
|
334
|
+
}
|
|
335
|
+
interface BulkDeleteSubscriptionOptionsResponse {
|
|
336
|
+
}
|
|
337
|
+
interface AssignSubscriptionOptionsToProductRequest {
|
|
338
|
+
/**
|
|
339
|
+
* Product ID.
|
|
340
|
+
* @minLength 1
|
|
341
|
+
*/
|
|
342
|
+
productId: string;
|
|
343
|
+
/**
|
|
344
|
+
* Ordered array of subscription options that will be assigned to the product. Pass an empty array to remove all subscription options from the product.
|
|
345
|
+
* @maxSize 6
|
|
346
|
+
*/
|
|
347
|
+
assignedSubscriptionOptions?: SubscriptionOptionInProduct[];
|
|
348
|
+
}
|
|
349
|
+
interface AssignSubscriptionOptionsToProductResponse {
|
|
350
|
+
}
|
|
351
|
+
interface AllowOneTimePurchasesRequest {
|
|
352
|
+
/**
|
|
353
|
+
* Product ID.
|
|
354
|
+
* @minLength 1
|
|
355
|
+
*/
|
|
356
|
+
productId: string;
|
|
357
|
+
/** Pass `true` to offer product by subscription and as one-time purchase. Pass `false` to offer product as subscription only. */
|
|
358
|
+
allowed: boolean | null;
|
|
359
|
+
}
|
|
360
|
+
interface AllowOneTimePurchasesResponse {
|
|
361
|
+
}
|
|
362
|
+
interface EnableCustomerCancellationRequest {
|
|
363
|
+
/**
|
|
364
|
+
* Product ID.
|
|
365
|
+
* @minLength 1
|
|
366
|
+
*/
|
|
367
|
+
productId: string;
|
|
368
|
+
/** Pass `true` to enable cancellation option of plans for the customer, pass `false` to disable it. */
|
|
369
|
+
allowed: boolean | null;
|
|
370
|
+
}
|
|
371
|
+
interface EnableCustomerCancellationResponse {
|
|
372
|
+
}
|
|
373
373
|
|
|
374
374
|
type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
|
|
375
375
|
getUrl: (context: any) => string;
|
|
@@ -381,6 +381,18 @@ type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q
|
|
|
381
381
|
__responseType: Q;
|
|
382
382
|
__originalResponseType: R;
|
|
383
383
|
};
|
|
384
|
+
declare function getSubscriptionOption(): __PublicMethodMetaInfo<'GET', {
|
|
385
|
+
id: string;
|
|
386
|
+
}, GetSubscriptionOptionRequest$1, GetSubscriptionOptionRequest, GetSubscriptionOptionResponse$1, GetSubscriptionOptionResponse>;
|
|
387
|
+
declare function getSubscriptionOptionsForProduct(): __PublicMethodMetaInfo<'GET', {
|
|
388
|
+
productId: string;
|
|
389
|
+
}, GetSubscriptionOptionsForProductRequest$1, GetSubscriptionOptionsForProductRequest, GetSubscriptionOptionsForProductResponse$1, GetSubscriptionOptionsForProductResponse>;
|
|
390
|
+
declare function getProductIdsForSubscriptionOption(): __PublicMethodMetaInfo<'GET', {
|
|
391
|
+
id: string;
|
|
392
|
+
}, GetProductIdsForSubscriptionOptionRequest$1, GetProductIdsForSubscriptionOptionRequest, GetProductIdsForSubscriptionOptionResponse$1, GetProductIdsForSubscriptionOptionResponse>;
|
|
393
|
+
declare function getOneTimePurchasesStatus(): __PublicMethodMetaInfo<'GET', {
|
|
394
|
+
productId: string;
|
|
395
|
+
}, GetOneTimePurchasesStatusRequest$1, GetOneTimePurchasesStatusRequest, GetOneTimePurchasesStatusResponse$1, GetOneTimePurchasesStatusResponse>;
|
|
384
396
|
declare function createSubscriptionOption(): __PublicMethodMetaInfo<'POST', {}, CreateSubscriptionOptionRequest$1, CreateSubscriptionOptionRequest, CreateSubscriptionOptionResponse$1, CreateSubscriptionOptionResponse>;
|
|
385
397
|
declare function updateSubscriptionOption(): __PublicMethodMetaInfo<'PATCH', {
|
|
386
398
|
subscriptionOptionId: string;
|
|
@@ -400,17 +412,5 @@ declare function allowOneTimePurchases(): __PublicMethodMetaInfo<'PATCH', {
|
|
|
400
412
|
declare function enableCustomerCancellation(): __PublicMethodMetaInfo<'PATCH', {
|
|
401
413
|
productId: string;
|
|
402
414
|
}, EnableCustomerCancellationRequest$1, EnableCustomerCancellationRequest, EnableCustomerCancellationResponse$1, EnableCustomerCancellationResponse>;
|
|
403
|
-
declare function getSubscriptionOption(): __PublicMethodMetaInfo<'GET', {
|
|
404
|
-
id: string;
|
|
405
|
-
}, GetSubscriptionOptionRequest$1, GetSubscriptionOptionRequest, GetSubscriptionOptionResponse$1, GetSubscriptionOptionResponse>;
|
|
406
|
-
declare function getSubscriptionOptionsForProduct(): __PublicMethodMetaInfo<'GET', {
|
|
407
|
-
productId: string;
|
|
408
|
-
}, GetSubscriptionOptionsForProductRequest$1, GetSubscriptionOptionsForProductRequest, GetSubscriptionOptionsForProductResponse$1, GetSubscriptionOptionsForProductResponse>;
|
|
409
|
-
declare function getProductIdsForSubscriptionOption(): __PublicMethodMetaInfo<'GET', {
|
|
410
|
-
id: string;
|
|
411
|
-
}, GetProductIdsForSubscriptionOptionRequest$1, GetProductIdsForSubscriptionOptionRequest, GetProductIdsForSubscriptionOptionResponse$1, GetProductIdsForSubscriptionOptionResponse>;
|
|
412
|
-
declare function getOneTimePurchasesStatus(): __PublicMethodMetaInfo<'GET', {
|
|
413
|
-
productId: string;
|
|
414
|
-
}, GetOneTimePurchasesStatusRequest$1, GetOneTimePurchasesStatusRequest, GetOneTimePurchasesStatusResponse$1, GetOneTimePurchasesStatusResponse>;
|
|
415
415
|
|
|
416
416
|
export { type AllowOneTimePurchasesRequest as AllowOneTimePurchasesRequestOriginal, type AllowOneTimePurchasesResponse as AllowOneTimePurchasesResponseOriginal, type AssignSubscriptionOptionsToProductRequest as AssignSubscriptionOptionsToProductRequestOriginal, type AssignSubscriptionOptionsToProductResponse as AssignSubscriptionOptionsToProductResponseOriginal, type BulkCalculatePricesRequestItem as BulkCalculatePricesRequestItemOriginal, type BulkCalculatePricesRequest as BulkCalculatePricesRequestOriginal, type BulkCalculatePricesRequestV2 as BulkCalculatePricesRequestV2Original, type BulkCalculatePricesResponseItem as BulkCalculatePricesResponseItemOriginal, type BulkCalculatePricesResponse as BulkCalculatePricesResponseOriginal, type BulkCalculatePricesResponseV2 as BulkCalculatePricesResponseV2Original, type BulkCreateSubscriptionOptionsRequest as BulkCreateSubscriptionOptionsRequestOriginal, type BulkCreateSubscriptionOptionsResponse as BulkCreateSubscriptionOptionsResponseOriginal, type BulkDeleteSubscriptionOptionsRequest as BulkDeleteSubscriptionOptionsRequestOriginal, type BulkDeleteSubscriptionOptionsResponse as BulkDeleteSubscriptionOptionsResponseOriginal, type BulkUpdateSubscriptionOptionsRequest as BulkUpdateSubscriptionOptionsRequestOriginal, type BulkUpdateSubscriptionOptionsResponse as BulkUpdateSubscriptionOptionsResponseOriginal, type CalculatePricesRequest as CalculatePricesRequestOriginal, type CalculatePricesResponse as CalculatePricesResponseOriginal, type CreateSubscriptionOptionRequest as CreateSubscriptionOptionRequestOriginal, type CreateSubscriptionOptionResponse as CreateSubscriptionOptionResponseOriginal, type DeleteSubscriptionOptionRequest as DeleteSubscriptionOptionRequestOriginal, type DeleteSubscriptionOptionResponse as DeleteSubscriptionOptionResponseOriginal, type Discount as DiscountOriginal, DiscountType as DiscountTypeOriginal, type DiscountTypeWithLiterals as DiscountTypeWithLiteralsOriginal, type EnableCustomerCancellationRequest as EnableCustomerCancellationRequestOriginal, type EnableCustomerCancellationResponse as EnableCustomerCancellationResponseOriginal, type GetOneTimePurchasesStatusRequest as GetOneTimePurchasesStatusRequestOriginal, type GetOneTimePurchasesStatusResponse as GetOneTimePurchasesStatusResponseOriginal, type GetProductIdsForSubscriptionOptionRequest as GetProductIdsForSubscriptionOptionRequestOriginal, type GetProductIdsForSubscriptionOptionResponse as GetProductIdsForSubscriptionOptionResponseOriginal, type GetSubscriptionOptionRequest as GetSubscriptionOptionRequestOriginal, type GetSubscriptionOptionResponse as GetSubscriptionOptionResponseOriginal, type GetSubscriptionOptionsForProductRequest as GetSubscriptionOptionsForProductRequestOriginal, type GetSubscriptionOptionsForProductResponse as GetSubscriptionOptionsForProductResponseOriginal, type ListSubscriptionOptionsRequest as ListSubscriptionOptionsRequestOriginal, type ListSubscriptionOptionsResponse as ListSubscriptionOptionsResponseOriginal, type PagingMetadata as PagingMetadataOriginal, type Paging as PagingOriginal, SubscriptionFrequency as SubscriptionFrequencyOriginal, type SubscriptionFrequencyWithLiterals as SubscriptionFrequencyWithLiteralsOriginal, type SubscriptionOptionInProduct as SubscriptionOptionInProductOriginal, type SubscriptionOption as SubscriptionOptionOriginal, type SubscriptionOptionPriceData as SubscriptionOptionPriceDataOriginal, type SubscriptionOptionPrices as SubscriptionOptionPricesOriginal, type SubscriptionSettings as SubscriptionSettingsOriginal, type UpdateSubscriptionOptionRequest as UpdateSubscriptionOptionRequestOriginal, type UpdateSubscriptionOptionResponse as UpdateSubscriptionOptionResponseOriginal, type __PublicMethodMetaInfo, allowOneTimePurchases, assignSubscriptionOptionsToProduct, bulkCreateSubscriptionOptions, bulkDeleteSubscriptionOptions, bulkUpdateSubscriptionOptions, createSubscriptionOption, deleteSubscriptionOption, enableCustomerCancellation, getOneTimePurchasesStatus, getProductIdsForSubscriptionOption, getSubscriptionOption, getSubscriptionOptionsForProduct, updateSubscriptionOption };
|