@wix/pricing-plans 1.0.11 → 1.0.13
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/src/pricing-plans-v2-order.http.d.ts +9 -43
- package/build/cjs/src/pricing-plans-v2-order.http.js +9 -43
- package/build/cjs/src/pricing-plans-v2-order.http.js.map +1 -1
- package/build/cjs/src/pricing-plans-v2-order.types.d.ts +3 -0
- package/build/cjs/src/pricing-plans-v2-order.types.js.map +1 -1
- package/build/cjs/src/pricing-plans-v2-order.universal.d.ts +54 -78
- package/build/cjs/src/pricing-plans-v2-order.universal.js +18 -59
- package/build/cjs/src/pricing-plans-v2-order.universal.js.map +1 -1
- package/build/es/src/pricing-plans-v2-order.http.d.ts +9 -43
- package/build/es/src/pricing-plans-v2-order.http.js +9 -43
- package/build/es/src/pricing-plans-v2-order.http.js.map +1 -1
- package/build/es/src/pricing-plans-v2-order.types.d.ts +3 -0
- package/build/es/src/pricing-plans-v2-order.types.js.map +1 -1
- package/build/es/src/pricing-plans-v2-order.universal.d.ts +54 -78
- package/build/es/src/pricing-plans-v2-order.universal.js +18 -59
- package/build/es/src/pricing-plans-v2-order.universal.js.map +1 -1
- package/package.json +2 -2
@@ -3,7 +3,7 @@ import { CancelOrderRequest, CancelOrderResponse, CreateOfflineOrderRequest, Cre
|
|
3
3
|
/**
|
4
4
|
* Gets an order by ID for the currently logged-in member.
|
5
5
|
*
|
6
|
-
* The `
|
6
|
+
* The `memberGetOrder()` function returns a Promise that resolves to information about a specified order for the currently logged-in member.
|
7
7
|
*/
|
8
8
|
export declare function memberGetOrder(payload: MemberGetOrderRequest): RequestOptionsFactory<MemberGetOrderResponse>;
|
9
9
|
/**
|
@@ -20,9 +20,8 @@ export declare function memberListOrders(payload: MemberListOrdersRequest): Requ
|
|
20
20
|
*
|
21
21
|
* For orders with recurring payments, a cancellation can be set to occur either immediately or at the next payment date. For orders with one-time payments, a cancellation occurs immediately after the request is processed.
|
22
22
|
*
|
23
|
-
* Requesting an order cancellation starts the cancellation process.
|
23
|
+
* Requesting an order cancellation starts the cancellation process. There may be some operations that continue to be processed before the status of the order is changed to `"CANCELED"`. For example, payments might need to be refunded before the order is fully canceled.
|
24
24
|
*
|
25
|
-
* The [`onOrderUpdated()`](https://www.wix.com/velo/reference/wix-pricing-plans-v2/events/onorderupdated) event handler runs when a cancellation is requested. The [`onOrderCanceled()`](https://www.wix.com/velo/reference/wix-pricing-plans-v2/events/onordercanceled) event handler runs when the cancellation is completed.
|
26
25
|
*/
|
27
26
|
export declare function requestCancellation(payload: RequestCancellationRequest): RequestOptionsFactory<RequestCancellationResponse>;
|
28
27
|
/**
|
@@ -32,7 +31,7 @@ export declare function requestCancellation(payload: RequestCancellationRequest)
|
|
32
31
|
*
|
33
32
|
* Payment of an offline order is handled in 1 of 2 ways.
|
34
33
|
* - When creating the order, select `true` in the `paid` request parameter.
|
35
|
-
* - After creation, with the [`markAsPaid()`](
|
34
|
+
* - After creation, with the [`markAsPaid()`](#markaspaid) function.
|
36
35
|
*
|
37
36
|
* When creating a non-free offline order:
|
38
37
|
* - The order's status is set to `"PENDING"` if the start date is in the future. Otherwise, the status is set to `"ACTIVE"`.
|
@@ -41,10 +40,6 @@ export declare function requestCancellation(payload: RequestCancellationRequest)
|
|
41
40
|
* When creating a free offline order:
|
42
41
|
* - The order's status is set to `"PENDING"` if the start date is in the future. Otherwise, the status is set to `"ACTIVE"`.
|
43
42
|
* - The order's last payment status is set to `"NOT_APPLICABLE"`.
|
44
|
-
*
|
45
|
-
* The [`onOrderCreated()`](https://www.wix.com/velo/reference/wix-pricing-plans-v2/events/onordercreated) event handler runs when an offline order is created.
|
46
|
-
*
|
47
|
-
* >**Note:** This function is restricted and only runs if you elevate permissions using the [`wix-auth.elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function. If `wix-auth.elevate()` is not used, only those with the "Manage Pricing Plans" and "Manage Subscriptions" permissions can create offline orders.
|
48
43
|
*/
|
49
44
|
export declare function createOfflineOrder(payload: CreateOfflineOrderRequest): RequestOptionsFactory<CreateOfflineOrderResponse>;
|
50
45
|
/**
|
@@ -56,9 +51,7 @@ export declare function createOfflineOrder(payload: CreateOfflineOrderRequest):
|
|
56
51
|
*
|
57
52
|
* If [taxes are configured](https://support.wix.com/en/article/pricing-plans-setting-up-tax-collection) for the site, taxes are applied to the preview. If not, `tax` previews as `null`.
|
58
53
|
*
|
59
|
-
* You can preview the order to check purchase limitations, but the limitations are not enforced for the preview. If a pricing plan has a limit on the amount of purchases per buyer, that limit is not considered for generating the preview. But, if that limit has been reached and this order would then exceed the amount of purchases permitted for this buyer, then `purchaseLimitExceeded` will return as `true`. Thus function is not available to the buyer. You specify the member ID for the buyer whose order should be previewed. To get a general price preview for a plan that's not buyer-specific, use the [`getPricePreview()`](
|
60
|
-
*
|
61
|
-
* >**Note:** This function is restricted and only runs if you elevate permissions using the [`wix-auth.elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function. If `wix-auth.elevate()` is not used, only those with the "Manage Pricing Plans" and "Manage Subscriptions" permissions can get offline order previews.
|
54
|
+
* You can preview the order to check purchase limitations, but the limitations are not enforced for the preview. If a pricing plan has a limit on the amount of purchases per buyer, that limit is not considered for generating the preview. But, if that limit has been reached and this order would then exceed the amount of purchases permitted for this buyer, then `purchaseLimitExceeded` will return as `true`. Thus function is not available to the buyer. You specify the member ID for the buyer whose order should be previewed. To get a general price preview for a plan that's not buyer-specific, use the [`getPricePreview()`](#getpricepreview) function.
|
62
55
|
*/
|
63
56
|
export declare function getOfflineOrderPreview(payload: GetOfflineOrderPreviewRequest): RequestOptionsFactory<GetOfflineOrderPreviewResponse>;
|
64
57
|
/**
|
@@ -66,17 +59,15 @@ export declare function getOfflineOrderPreview(payload: GetOfflineOrderPreviewRe
|
|
66
59
|
*
|
67
60
|
* The `getPricePreview()` function returns a Promise that resolves to a temporary preview of the order's price.
|
68
61
|
*
|
69
|
-
* The price preview uses the same logic for calculating prices as used when purchasing a plan, but the preview is not saved. If [taxes are configured](https://support.wix.com/en/article/pricing-plans-setting-up-tax-collection for the site, taxes are applied to the preview. If not, the `tax` previews as `null`.
|
62
|
+
* The price preview uses the same logic for calculating prices as used when purchasing a plan, but the preview is not saved. If [taxes are configured](https://support.wix.com/en/article/pricing-plans-setting-up-tax-collection) for the site, taxes are applied to the preview. If not, the `tax` previews as `null`.
|
70
63
|
*
|
71
|
-
* Buyers do not have to be logged in to preview the price, as such, the details returned by this function are not buyer-specific. To generate a preview of a purchase for a specific-buyer, use the [`getOfflineOrderPreview()`](
|
64
|
+
* Buyers do not have to be logged in to preview the price, as such, the details returned by this function are not buyer-specific. To generate a preview of a purchase for a specific-buyer, use the [`getOfflineOrderPreview()`](#getofflineorderpreview).
|
72
65
|
*/
|
73
66
|
export declare function getPricePreview(payload: GetPricePreviewRequest): RequestOptionsFactory<GetPricePreviewResponse>;
|
74
67
|
/**
|
75
68
|
* Retrieves an order by ID.
|
76
69
|
*
|
77
70
|
* The `managementGetOrder()` function returns a Promise that resolves to information about the specified order.
|
78
|
-
*
|
79
|
-
* >**Note:** Only users with the "Manage Pricing Plans" and "Manage Subscriptions" permissions can get orders.
|
80
71
|
*/
|
81
72
|
export declare function managementGetOrder(payload: GetOrderRequest): RequestOptionsFactory<GetOrderResponse>;
|
82
73
|
/**
|
@@ -84,9 +75,7 @@ export declare function managementGetOrder(payload: GetOrderRequest): RequestOpt
|
|
84
75
|
*
|
85
76
|
* The `managementListOrders()` function returns a Promise that resolves to a list of up to 50 pricing plan orders. You can specify options for filtering, sorting, and paginating the results.
|
86
77
|
*
|
87
|
-
* This function returns the orders on the site. To list orders for the currently logged-in member, use [`
|
88
|
-
*
|
89
|
-
* >**Note:** This function is restricted and only runs if you elevate permissions using the [`wix-auth.elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function. If `wix-auth.elevate()` is not used, only those with the “Manage Pricing Plans” and “Manage Subscriptions” permissions can list orders.
|
78
|
+
* This function returns the orders on the site. To list orders for the currently logged-in member, use [`memberListOrders()`](#memberlistorders).
|
90
79
|
*/
|
91
80
|
export declare function managementListOrders(payload: ListOrdersRequest): RequestOptionsFactory<ListOrdersResponse>;
|
92
81
|
/**
|
@@ -100,10 +89,6 @@ export declare function managementListOrders(payload: ListOrdersRequest): Reques
|
|
100
89
|
*
|
101
90
|
* Postponing an order causes the following changes:
|
102
91
|
* - The `endDate` for the order is adjusted to the new end date.
|
103
|
-
* The `onOrderEndDatePostponed()` and `onOrderUpdated()` event handlers run when an order's end date is postponed or made earlier.
|
104
|
-
*
|
105
|
-
* >**Note:** This function is restricted and only runs if you elevate permissions using the [`wix-auth.elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function. If `wix-auth.elevate()` is not used, only those with the “Manage Pricing Plans” and “Manage Subscriptions” permissions can postpone the end date of an order.
|
106
|
-
*
|
107
92
|
*/
|
108
93
|
export declare function postponeEndDate(payload: PostponeEndDateRequest): RequestOptionsFactory<PostponeEndDateResponse>;
|
109
94
|
/**
|
@@ -115,7 +100,6 @@ export declare function postponeEndDate(payload: PostponeEndDateRequest): Reques
|
|
115
100
|
* For orders with one-time payments, a cancellation occurs `IMMEDIATELY`.
|
116
101
|
*
|
117
102
|
* Canceling an order changes the order status to `"CANCELED"`.
|
118
|
-
* The [`onOrderCanceled()`](https://www.wix.com/velo/reference/wix-pricing-plans-v2/events/onordercanceled) event handler runs when an order is canceled.
|
119
103
|
*
|
120
104
|
* #### Canceling during the free trial period.
|
121
105
|
*
|
@@ -126,12 +110,6 @@ export declare function postponeEndDate(payload: PostponeEndDateRequest): Reques
|
|
126
110
|
* Canceling `IMMEDIATELY` will end the subscription for the buyer
|
127
111
|
* immediately, even during the free trial period and the buyer won't be billed.
|
128
112
|
* Canceling at the `NEXT_PAYMENT_DATE` allows the buyer to continue using the benefits of the subscription until the end of the free trial period. Then, the subscription ends and the buyer is not billed.
|
129
|
-
*
|
130
|
-
* >**Note:** This function is restricted and only runs if you elevate permissions using the [`wix-auth.elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function. If `wix-auth.elevate()` is not used, only users with the "Manage Pricing Plans" and "Manage Subscription" permissions can cancel orders.
|
131
|
-
*
|
132
|
-
*
|
133
|
-
*
|
134
|
-
*
|
135
113
|
*/
|
136
114
|
export declare function cancelOrder(payload: CancelOrderRequest): RequestOptionsFactory<CancelOrderResponse>;
|
137
115
|
/**
|
@@ -150,10 +128,6 @@ export declare function cancelOrder(payload: CancelOrderRequest): RequestOptions
|
|
150
128
|
* An error occurs if you attempt to:
|
151
129
|
* - Mark an already-paid, offline order as paid. You cannot make an offline order as paid twice.
|
152
130
|
* - Mark an online order as paid. The `markAsPaid()` function is supported for offline orders only.
|
153
|
-
*
|
154
|
-
* The [`onOrderMarkedAsPaid()`](https://www.wix.com/velo/reference/wix-pricing-plans-v2/events/onordermarkedaspaid) and [`onOrderUpdated()`](https://www.wix.com/velo/reference/wix-pricing-plans-v2/events/onorderupdated) event handlers run when an offline order is marked as paid.
|
155
|
-
*
|
156
|
-
* >**Note:** This function is restricted and only runs if you elevate permissions using the [`wix-auth.elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function. If `wix-auth.elevate()` is not used, only those with the “Manage Pricing Plans” and “Manage Subscriptions” permissions can mark offline orders as paid.
|
157
131
|
*/
|
158
132
|
export declare function markAsPaid(payload: MarkAsPaidRequest): RequestOptionsFactory<MarkAsPaidResponse>;
|
159
133
|
/**
|
@@ -169,11 +143,7 @@ export declare function markAsPaid(payload: MarkAsPaidRequest): RequestOptionsFa
|
|
169
143
|
*
|
170
144
|
* The `endDate` and the `earliestEndDate` for the order are adjusted to include the pause period when the order is resumed.
|
171
145
|
*
|
172
|
-
*
|
173
|
-
*
|
174
|
-
* Paused orders can be continued with the [`resumeOrder()`](https://www.wix.com/velo/reference/wix-pricing-plans-v2/orders/resumeorder) function.
|
175
|
-
*
|
176
|
-
* >**Note:** This function is restricted and only runs if you elevate permissions using the [`wix-auth.elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function. If `wix-auth.elevate()` is not used, only those with the “Manage Pricing Plans” and “Manage Subscriptions” permissions can pause orders.
|
146
|
+
* Paused orders can be continued with the [`resumeOrder()`](#resumeorder) function.
|
177
147
|
*/
|
178
148
|
export declare function pauseOrder(payload: PauseOrderRequest): RequestOptionsFactory<PauseOrderResponse>;
|
179
149
|
/**
|
@@ -187,10 +157,6 @@ export declare function pauseOrder(payload: PauseOrderRequest): RequestOptionsFa
|
|
187
157
|
* - The order status changes to `"ACTIVE"`.
|
188
158
|
* - The `pausePeriods` array is updated.
|
189
159
|
* - The `endDate` for the order is adjusted to include the pause period.
|
190
|
-
* - The `earliestEndDate` is adjusted to include the pause period. (This property is reserved for future use.
|
191
|
-
*
|
192
|
-
* The [`onOrderResumed()`](https://www.wix.com/velo/reference/wix-pricing-plans-v2/events/onorderresumed) and [`onOrderUpdated()`](https://www.wix.com/velo/reference/wix-pricing-plans-v2/events/onorderupdated) event handlers run when an order is resumed.
|
193
|
-
*
|
194
|
-
* >**Note:** This function is restricted and only runs if you elevate permissions using the [`wix-auth.elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function. If `wix-auth.elevate()` is not used, only those with the “Manage Pricing Plans” and “Manage Subscriptions” permissions can resume orders.
|
160
|
+
* - The `earliestEndDate` is adjusted to include the pause period. (This property is reserved for future use).
|
195
161
|
*/
|
196
162
|
export declare function resumeOrder(payload: ResumeOrderRequest): RequestOptionsFactory<ResumeOrderResponse>;
|
@@ -352,7 +352,7 @@ function resolveComWixpressMembershipV2OrdersMemberMemberOrdersServiceUrl(opts)
|
|
352
352
|
/**
|
353
353
|
* Gets an order by ID for the currently logged-in member.
|
354
354
|
*
|
355
|
-
* The `
|
355
|
+
* The `memberGetOrder()` function returns a Promise that resolves to information about a specified order for the currently logged-in member.
|
356
356
|
*/
|
357
357
|
function memberGetOrder(payload) {
|
358
358
|
const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_memberGetOrderRequest, {});
|
@@ -421,9 +421,8 @@ exports.memberListOrders = memberListOrders;
|
|
421
421
|
*
|
422
422
|
* For orders with recurring payments, a cancellation can be set to occur either immediately or at the next payment date. For orders with one-time payments, a cancellation occurs immediately after the request is processed.
|
423
423
|
*
|
424
|
-
* Requesting an order cancellation starts the cancellation process.
|
424
|
+
* Requesting an order cancellation starts the cancellation process. There may be some operations that continue to be processed before the status of the order is changed to `"CANCELED"`. For example, payments might need to be refunded before the order is fully canceled.
|
425
425
|
*
|
426
|
-
* The [`onOrderUpdated()`](https://www.wix.com/velo/reference/wix-pricing-plans-v2/events/onorderupdated) event handler runs when a cancellation is requested. The [`onOrderCanceled()`](https://www.wix.com/velo/reference/wix-pricing-plans-v2/events/onordercanceled) event handler runs when the cancellation is completed.
|
427
426
|
*/
|
428
427
|
function requestCancellation(payload) {
|
429
428
|
const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_requestCancellationRequest, {});
|
@@ -453,7 +452,7 @@ exports.requestCancellation = requestCancellation;
|
|
453
452
|
*
|
454
453
|
* Payment of an offline order is handled in 1 of 2 ways.
|
455
454
|
* - When creating the order, select `true` in the `paid` request parameter.
|
456
|
-
* - After creation, with the [`markAsPaid()`](
|
455
|
+
* - After creation, with the [`markAsPaid()`](#markaspaid) function.
|
457
456
|
*
|
458
457
|
* When creating a non-free offline order:
|
459
458
|
* - The order's status is set to `"PENDING"` if the start date is in the future. Otherwise, the status is set to `"ACTIVE"`.
|
@@ -462,10 +461,6 @@ exports.requestCancellation = requestCancellation;
|
|
462
461
|
* When creating a free offline order:
|
463
462
|
* - The order's status is set to `"PENDING"` if the start date is in the future. Otherwise, the status is set to `"ACTIVE"`.
|
464
463
|
* - The order's last payment status is set to `"NOT_APPLICABLE"`.
|
465
|
-
*
|
466
|
-
* The [`onOrderCreated()`](https://www.wix.com/velo/reference/wix-pricing-plans-v2/events/onordercreated) event handler runs when an offline order is created.
|
467
|
-
*
|
468
|
-
* >**Note:** This function is restricted and only runs if you elevate permissions using the [`wix-auth.elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function. If `wix-auth.elevate()` is not used, only those with the "Manage Pricing Plans" and "Manage Subscriptions" permissions can create offline orders.
|
469
464
|
*/
|
470
465
|
function createOfflineOrder(payload) {
|
471
466
|
const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_createOfflineOrderRequest, {});
|
@@ -503,9 +498,7 @@ exports.createOfflineOrder = createOfflineOrder;
|
|
503
498
|
*
|
504
499
|
* If [taxes are configured](https://support.wix.com/en/article/pricing-plans-setting-up-tax-collection) for the site, taxes are applied to the preview. If not, `tax` previews as `null`.
|
505
500
|
*
|
506
|
-
* You can preview the order to check purchase limitations, but the limitations are not enforced for the preview. If a pricing plan has a limit on the amount of purchases per buyer, that limit is not considered for generating the preview. But, if that limit has been reached and this order would then exceed the amount of purchases permitted for this buyer, then `purchaseLimitExceeded` will return as `true`. Thus function is not available to the buyer. You specify the member ID for the buyer whose order should be previewed. To get a general price preview for a plan that's not buyer-specific, use the [`getPricePreview()`](
|
507
|
-
*
|
508
|
-
* >**Note:** This function is restricted and only runs if you elevate permissions using the [`wix-auth.elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function. If `wix-auth.elevate()` is not used, only those with the "Manage Pricing Plans" and "Manage Subscriptions" permissions can get offline order previews.
|
501
|
+
* You can preview the order to check purchase limitations, but the limitations are not enforced for the preview. If a pricing plan has a limit on the amount of purchases per buyer, that limit is not considered for generating the preview. But, if that limit has been reached and this order would then exceed the amount of purchases permitted for this buyer, then `purchaseLimitExceeded` will return as `true`. Thus function is not available to the buyer. You specify the member ID for the buyer whose order should be previewed. To get a general price preview for a plan that's not buyer-specific, use the [`getPricePreview()`](#getpricepreview) function.
|
509
502
|
*/
|
510
503
|
function getOfflineOrderPreview(payload) {
|
511
504
|
const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_getOfflineOrderPreviewRequest, {});
|
@@ -539,9 +532,9 @@ exports.getOfflineOrderPreview = getOfflineOrderPreview;
|
|
539
532
|
*
|
540
533
|
* The `getPricePreview()` function returns a Promise that resolves to a temporary preview of the order's price.
|
541
534
|
*
|
542
|
-
* The price preview uses the same logic for calculating prices as used when purchasing a plan, but the preview is not saved. If [taxes are configured](https://support.wix.com/en/article/pricing-plans-setting-up-tax-collection for the site, taxes are applied to the preview. If not, the `tax` previews as `null`.
|
535
|
+
* The price preview uses the same logic for calculating prices as used when purchasing a plan, but the preview is not saved. If [taxes are configured](https://support.wix.com/en/article/pricing-plans-setting-up-tax-collection) for the site, taxes are applied to the preview. If not, the `tax` previews as `null`.
|
543
536
|
*
|
544
|
-
* Buyers do not have to be logged in to preview the price, as such, the details returned by this function are not buyer-specific. To generate a preview of a purchase for a specific-buyer, use the [`getOfflineOrderPreview()`](
|
537
|
+
* Buyers do not have to be logged in to preview the price, as such, the details returned by this function are not buyer-specific. To generate a preview of a purchase for a specific-buyer, use the [`getOfflineOrderPreview()`](#getofflineorderpreview).
|
545
538
|
*/
|
546
539
|
function getPricePreview(payload) {
|
547
540
|
const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_getPricePreviewRequest, {});
|
@@ -568,8 +561,6 @@ exports.getPricePreview = getPricePreview;
|
|
568
561
|
* Retrieves an order by ID.
|
569
562
|
*
|
570
563
|
* The `managementGetOrder()` function returns a Promise that resolves to information about the specified order.
|
571
|
-
*
|
572
|
-
* >**Note:** Only users with the "Manage Pricing Plans" and "Manage Subscriptions" permissions can get orders.
|
573
564
|
*/
|
574
565
|
function managementGetOrder(payload) {
|
575
566
|
const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_getOrderRequest, {});
|
@@ -603,9 +594,7 @@ exports.managementGetOrder = managementGetOrder;
|
|
603
594
|
*
|
604
595
|
* The `managementListOrders()` function returns a Promise that resolves to a list of up to 50 pricing plan orders. You can specify options for filtering, sorting, and paginating the results.
|
605
596
|
*
|
606
|
-
* This function returns the orders on the site. To list orders for the currently logged-in member, use [`
|
607
|
-
*
|
608
|
-
* >**Note:** This function is restricted and only runs if you elevate permissions using the [`wix-auth.elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function. If `wix-auth.elevate()` is not used, only those with the “Manage Pricing Plans” and “Manage Subscriptions” permissions can list orders.
|
597
|
+
* This function returns the orders on the site. To list orders for the currently logged-in member, use [`memberListOrders()`](#memberlistorders).
|
609
598
|
*/
|
610
599
|
function managementListOrders(payload) {
|
611
600
|
const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_listOrdersRequest, {});
|
@@ -645,10 +634,6 @@ exports.managementListOrders = managementListOrders;
|
|
645
634
|
*
|
646
635
|
* Postponing an order causes the following changes:
|
647
636
|
* - The `endDate` for the order is adjusted to the new end date.
|
648
|
-
* The `onOrderEndDatePostponed()` and `onOrderUpdated()` event handlers run when an order's end date is postponed or made earlier.
|
649
|
-
*
|
650
|
-
* >**Note:** This function is restricted and only runs if you elevate permissions using the [`wix-auth.elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function. If `wix-auth.elevate()` is not used, only those with the “Manage Pricing Plans” and “Manage Subscriptions” permissions can postpone the end date of an order.
|
651
|
-
*
|
652
637
|
*/
|
653
638
|
function postponeEndDate(payload) {
|
654
639
|
const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_postponeEndDateRequest, {});
|
@@ -680,7 +665,6 @@ exports.postponeEndDate = postponeEndDate;
|
|
680
665
|
* For orders with one-time payments, a cancellation occurs `IMMEDIATELY`.
|
681
666
|
*
|
682
667
|
* Canceling an order changes the order status to `"CANCELED"`.
|
683
|
-
* The [`onOrderCanceled()`](https://www.wix.com/velo/reference/wix-pricing-plans-v2/events/onordercanceled) event handler runs when an order is canceled.
|
684
668
|
*
|
685
669
|
* #### Canceling during the free trial period.
|
686
670
|
*
|
@@ -691,12 +675,6 @@ exports.postponeEndDate = postponeEndDate;
|
|
691
675
|
* Canceling `IMMEDIATELY` will end the subscription for the buyer
|
692
676
|
* immediately, even during the free trial period and the buyer won't be billed.
|
693
677
|
* Canceling at the `NEXT_PAYMENT_DATE` allows the buyer to continue using the benefits of the subscription until the end of the free trial period. Then, the subscription ends and the buyer is not billed.
|
694
|
-
*
|
695
|
-
* >**Note:** This function is restricted and only runs if you elevate permissions using the [`wix-auth.elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function. If `wix-auth.elevate()` is not used, only users with the "Manage Pricing Plans" and "Manage Subscription" permissions can cancel orders.
|
696
|
-
*
|
697
|
-
*
|
698
|
-
*
|
699
|
-
*
|
700
678
|
*/
|
701
679
|
function cancelOrder(payload) {
|
702
680
|
const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_cancelOrderRequest, {});
|
@@ -735,10 +713,6 @@ exports.cancelOrder = cancelOrder;
|
|
735
713
|
* An error occurs if you attempt to:
|
736
714
|
* - Mark an already-paid, offline order as paid. You cannot make an offline order as paid twice.
|
737
715
|
* - Mark an online order as paid. The `markAsPaid()` function is supported for offline orders only.
|
738
|
-
*
|
739
|
-
* The [`onOrderMarkedAsPaid()`](https://www.wix.com/velo/reference/wix-pricing-plans-v2/events/onordermarkedaspaid) and [`onOrderUpdated()`](https://www.wix.com/velo/reference/wix-pricing-plans-v2/events/onorderupdated) event handlers run when an offline order is marked as paid.
|
740
|
-
*
|
741
|
-
* >**Note:** This function is restricted and only runs if you elevate permissions using the [`wix-auth.elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function. If `wix-auth.elevate()` is not used, only those with the “Manage Pricing Plans” and “Manage Subscriptions” permissions can mark offline orders as paid.
|
742
716
|
*/
|
743
717
|
function markAsPaid(payload) {
|
744
718
|
const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_markAsPaidRequest, {});
|
@@ -774,11 +748,7 @@ exports.markAsPaid = markAsPaid;
|
|
774
748
|
*
|
775
749
|
* The `endDate` and the `earliestEndDate` for the order are adjusted to include the pause period when the order is resumed.
|
776
750
|
*
|
777
|
-
*
|
778
|
-
*
|
779
|
-
* Paused orders can be continued with the [`resumeOrder()`](https://www.wix.com/velo/reference/wix-pricing-plans-v2/orders/resumeorder) function.
|
780
|
-
*
|
781
|
-
* >**Note:** This function is restricted and only runs if you elevate permissions using the [`wix-auth.elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function. If `wix-auth.elevate()` is not used, only those with the “Manage Pricing Plans” and “Manage Subscriptions” permissions can pause orders.
|
751
|
+
* Paused orders can be continued with the [`resumeOrder()`](#resumeorder) function.
|
782
752
|
*/
|
783
753
|
function pauseOrder(payload) {
|
784
754
|
const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_pauseOrderRequest, {});
|
@@ -812,11 +782,7 @@ exports.pauseOrder = pauseOrder;
|
|
812
782
|
* - The order status changes to `"ACTIVE"`.
|
813
783
|
* - The `pausePeriods` array is updated.
|
814
784
|
* - The `endDate` for the order is adjusted to include the pause period.
|
815
|
-
* - The `earliestEndDate` is adjusted to include the pause period. (This property is reserved for future use.
|
816
|
-
*
|
817
|
-
* The [`onOrderResumed()`](https://www.wix.com/velo/reference/wix-pricing-plans-v2/events/onorderresumed) and [`onOrderUpdated()`](https://www.wix.com/velo/reference/wix-pricing-plans-v2/events/onorderupdated) event handlers run when an order is resumed.
|
818
|
-
*
|
819
|
-
* >**Note:** This function is restricted and only runs if you elevate permissions using the [`wix-auth.elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function. If `wix-auth.elevate()` is not used, only those with the “Manage Pricing Plans” and “Manage Subscriptions” permissions can resume orders.
|
785
|
+
* - The `earliestEndDate` is adjusted to include the pause period. (This property is reserved for future use).
|
820
786
|
*/
|
821
787
|
function resumeOrder(payload) {
|
822
788
|
const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_resumeOrderRequest, {});
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"pricing-plans-v2-order.http.js","sourceRoot":"","sources":["../../../src/pricing-plans-v2-order.http.ts"],"names":[],"mappings":"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"}
|
1
|
+
{"version":3,"file":"pricing-plans-v2-order.http.js","sourceRoot":"","sources":["../../../src/pricing-plans-v2-order.http.ts"],"names":[],"mappings":"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"}
|
@@ -531,6 +531,7 @@ export interface MemberListOrdersRequest {
|
|
531
531
|
offset?: number | null;
|
532
532
|
/** Sorting direction (defaults to ASC) and field to sort by. [See available fields here](https://dev.wix.com/api/rest/pricing-plans/pricing-plans/order-v2/filter-and-sort). */
|
533
533
|
sorting?: Sorting;
|
534
|
+
fieldSet?: Set;
|
534
535
|
}
|
535
536
|
export interface Sorting {
|
536
537
|
/** Name of the field to sort by. */
|
@@ -914,6 +915,8 @@ export interface ListOrdersRequest {
|
|
914
915
|
* Default: `DESC`
|
915
916
|
*/
|
916
917
|
sorting?: Sorting;
|
918
|
+
/** Parameter to define amount of fields to return. FULL returns each order's submission data. Supported values: UNKNOWN_SET, BASIC, FULL */
|
919
|
+
fieldSet?: Set;
|
917
920
|
}
|
918
921
|
export interface ListOrdersResponse {
|
919
922
|
/** List of orders. */
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"pricing-plans-v2-order.types.js","sourceRoot":"","sources":["../../../src/pricing-plans-v2-order.types.ts"],"names":[],"mappings":";;;AA4PA,IAAY,UAMX;AAND,WAAY,UAAU;IACpB,qCAAuB,CAAA;IACvB,yBAAW,CAAA;IACX,2BAAa,CAAA;IACb,6BAAe,CAAA;IACf,2BAAa,CAAA;AACf,CAAC,EANW,UAAU,GAAV,kBAAU,KAAV,kBAAU,QAMrB;AAmGD,IAAY,SAMX;AAND,WAAY,SAAS;IACnB,oCAAuB,CAAA;IACvB,iCAAiC;IACjC,8BAAiB,CAAA;IACjB,kDAAkD;IAClD,gCAAmB,CAAA;AACrB,CAAC,EANW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAMpB;AAED,IAAY,WAMX;AAND,WAAY,WAAW;IACrB,kCAAmB,CAAA;IACnB,+CAA+C;IAC/C,4BAAa,CAAA;IACb,gCAAgC;IAChC,0BAAW,CAAA;AACb,CAAC,EANW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAMtB;AAED,IAAY,WAeX;AAfD,WAAY,WAAW;IACrB,6BAA6B;IAC7B,sCAAuB,CAAA;IACvB,mGAAmG;IACnG,8BAAe,CAAA;IACf,mEAAmE;IACnE,kCAAmB,CAAA;IACnB,sBAAsB;IACtB,gCAAiB,CAAA;IACjB,kDAAkD;IAClD,gCAAiB,CAAA;IACjB,sBAAsB;IACtB,8BAAe,CAAA;IACf,8BAA8B;IAC9B,oCAAqB,CAAA;AACvB,CAAC,EAfW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAetB;AAsBD,IAAY,iBAaX;AAbD,WAAY,iBAAiB;IAC3B,uCAAuC;IACvC,4CAAuB,CAAA;IACvB,yFAAyF;IACzF,kDAA6B,CAAA;IAC7B,4EAA4E;IAC5E,oDAA+B,CAAA;IAC/B,oDAAoD;IACpD,wDAAmC,CAAA;IACnC,0DAA0D;IAC1D,oEAA+C,CAAA;IAC/C,+HAA+H;IAC/H,wCAAmB,CAAA;AACrB,CAAC,EAbW,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAa5B;AAED,IAAY,uBAOX;AAPD,WAAY,uBAAuB;IACjC,kCAAkC;IAClC,kDAAuB,CAAA;IACvB,4EAA4E;IAC5E,sDAA2B,CAAA;IAC3B,gFAAgF;IAChF,kEAAuC,CAAA;AACzC,CAAC,EAPW,uBAAuB,GAAvB,+BAAuB,KAAvB,+BAAuB,QAOlC;AAED,IAAY,aAeX;AAfD,WAAY,aAAa;IACvB,+BAA+B;IAC/B,wCAAuB,CAAA;IACvB,4BAA4B;IAC5B,8BAAa,CAAA;IACb,gCAAgC;IAChC,sCAAqB,CAAA;IACrB,mCAAmC;IACnC,kCAAiB,CAAA;IACjB,gCAAgC;IAChC,kCAAiB,CAAA;IACjB,8GAA8G;IAC9G,oCAAmB,CAAA;IACnB,2CAA2C;IAC3C,kDAAiC,CAAA;AACnC,CAAC,EAfW,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAexB;AAoBD,IAAY,MAMX;AAND,WAAY,MAAM;IAChB,iCAAuB,CAAA;IACvB,iCAAiC;IACjC,2BAAiB,CAAA;IACjB,iCAAiC;IACjC,yBAAe,CAAA;AACjB,CAAC,EANW,MAAM,GAAN,cAAM,KAAN,cAAM,QAMjB;AAoDD,IAAY,GAaX;AAbD,WAAY,GAAG;IACb,6BAA6B;IAC7B,kCAA2B,CAAA;IAC3B;;;OAGG;IACH,sBAAe,CAAA;IACf;;;OAGG;IACH,oBAAa,CAAA;AACf,CAAC,EAbW,GAAG,GAAH,WAAG,KAAH,WAAG,QAad;
|
1
|
+
{"version":3,"file":"pricing-plans-v2-order.types.js","sourceRoot":"","sources":["../../../src/pricing-plans-v2-order.types.ts"],"names":[],"mappings":"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"}
|