@wix/ecom 1.0.826 → 1.0.828
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/ecom",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.828",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@wix/ecom_abandoned-checkouts": "1.0.55",
|
|
26
26
|
"@wix/ecom_additional-fees": "1.0.35",
|
|
27
|
-
"@wix/ecom_back-in-stock-notifications": "1.0.
|
|
27
|
+
"@wix/ecom_back-in-stock-notifications": "1.0.61",
|
|
28
28
|
"@wix/ecom_back-in-stock-settings": "1.0.44",
|
|
29
29
|
"@wix/ecom_cart": "1.0.100",
|
|
30
30
|
"@wix/ecom_checkout": "1.0.109",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"@wix/ecom_payment-settings": "1.0.73",
|
|
54
54
|
"@wix/ecom_pickup-locations": "1.0.18",
|
|
55
55
|
"@wix/ecom_recommendations": "1.0.52",
|
|
56
|
-
"@wix/ecom_recommendations-provider": "1.0.
|
|
56
|
+
"@wix/ecom_recommendations-provider": "1.0.11",
|
|
57
57
|
"@wix/ecom_shipping-options": "1.0.16",
|
|
58
58
|
"@wix/ecom_shipping-rates": "1.0.53",
|
|
59
59
|
"@wix/ecom_shippo-configurations": "1.0.23",
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"fqdn": ""
|
|
88
88
|
}
|
|
89
89
|
},
|
|
90
|
-
"falconPackageHash": "
|
|
90
|
+
"falconPackageHash": "f9af40d962b4263b7c90895abe385ab54c8f86b64b62666712b483d1"
|
|
91
91
|
}
|
|
@@ -5086,13 +5086,13 @@ interface BackInStockNotificationRequestCreatedEnvelope {
|
|
|
5086
5086
|
entity: BackInStockNotificationRequest;
|
|
5087
5087
|
metadata: EventMetadata$b;
|
|
5088
5088
|
}
|
|
5089
|
-
interface BackInStockNotificationRequestDeletedEnvelope {
|
|
5090
|
-
metadata: EventMetadata$b;
|
|
5091
|
-
}
|
|
5092
5089
|
interface BackInStockNotificationRequestUpdatedEnvelope {
|
|
5093
5090
|
entity: BackInStockNotificationRequest;
|
|
5094
5091
|
metadata: EventMetadata$b;
|
|
5095
5092
|
}
|
|
5093
|
+
interface BackInStockNotificationRequestDeletedEnvelope {
|
|
5094
|
+
metadata: EventMetadata$b;
|
|
5095
|
+
}
|
|
5096
5096
|
interface QueryCursorResult$a {
|
|
5097
5097
|
cursors: Cursors$c;
|
|
5098
5098
|
hasNext: () => boolean;
|
|
@@ -5288,8 +5288,8 @@ interface ReportItemsBackInStockSignature {
|
|
|
5288
5288
|
(itemDetails: BackInStockItemDetails, options?: ReportItemsBackInStockOptions | undefined): Promise<void>;
|
|
5289
5289
|
}
|
|
5290
5290
|
declare const onBackInStockNotificationRequestCreated$1: EventDefinition<BackInStockNotificationRequestCreatedEnvelope, "wix.ecom.v1.back_in_stock_notification_request_created">;
|
|
5291
|
-
declare const onBackInStockNotificationRequestDeleted$1: EventDefinition<BackInStockNotificationRequestDeletedEnvelope, "wix.ecom.v1.back_in_stock_notification_request_deleted">;
|
|
5292
5291
|
declare const onBackInStockNotificationRequestUpdated$1: EventDefinition<BackInStockNotificationRequestUpdatedEnvelope, "wix.ecom.v1.back_in_stock_notification_request_updated">;
|
|
5292
|
+
declare const onBackInStockNotificationRequestDeleted$1: EventDefinition<BackInStockNotificationRequestDeletedEnvelope, "wix.ecom.v1.back_in_stock_notification_request_deleted">;
|
|
5293
5293
|
|
|
5294
5294
|
declare function createEventModule$b<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
5295
5295
|
|
|
@@ -5302,23 +5302,17 @@ declare const getBackInStockNotificationRequestsCountByCatalogReferences: MaybeC
|
|
|
5302
5302
|
declare const reportItemsBackInStock: MaybeContext<BuildRESTFunction<typeof reportItemsBackInStock$1> & typeof reportItemsBackInStock$1>;
|
|
5303
5303
|
|
|
5304
5304
|
type _publicOnBackInStockNotificationRequestCreatedType = typeof onBackInStockNotificationRequestCreated$1;
|
|
5305
|
-
/**
|
|
5306
|
-
* Triggered when a back in stock notification request is created.
|
|
5307
|
-
*/
|
|
5305
|
+
/** */
|
|
5308
5306
|
declare const onBackInStockNotificationRequestCreated: ReturnType<typeof createEventModule$b<_publicOnBackInStockNotificationRequestCreatedType>>;
|
|
5309
5307
|
|
|
5310
|
-
type _publicOnBackInStockNotificationRequestDeletedType = typeof onBackInStockNotificationRequestDeleted$1;
|
|
5311
|
-
/**
|
|
5312
|
-
* Triggered when a back in stock notification request is deleted.
|
|
5313
|
-
*/
|
|
5314
|
-
declare const onBackInStockNotificationRequestDeleted: ReturnType<typeof createEventModule$b<_publicOnBackInStockNotificationRequestDeletedType>>;
|
|
5315
|
-
|
|
5316
5308
|
type _publicOnBackInStockNotificationRequestUpdatedType = typeof onBackInStockNotificationRequestUpdated$1;
|
|
5317
|
-
/**
|
|
5318
|
-
* Triggered when a back in stock notification request is updated.
|
|
5319
|
-
*/
|
|
5309
|
+
/** */
|
|
5320
5310
|
declare const onBackInStockNotificationRequestUpdated: ReturnType<typeof createEventModule$b<_publicOnBackInStockNotificationRequestUpdatedType>>;
|
|
5321
5311
|
|
|
5312
|
+
type _publicOnBackInStockNotificationRequestDeletedType = typeof onBackInStockNotificationRequestDeleted$1;
|
|
5313
|
+
/** */
|
|
5314
|
+
declare const onBackInStockNotificationRequestDeleted: ReturnType<typeof createEventModule$b<_publicOnBackInStockNotificationRequestDeletedType>>;
|
|
5315
|
+
|
|
5322
5316
|
type context$o_BackInStockItemDetails = BackInStockItemDetails;
|
|
5323
5317
|
type context$o_BackInStockNotificationRequest = BackInStockNotificationRequest;
|
|
5324
5318
|
type context$o_BackInStockNotificationRequestCreatedEnvelope = BackInStockNotificationRequestCreatedEnvelope;
|
|
@@ -5086,13 +5086,13 @@ interface BackInStockNotificationRequestCreatedEnvelope {
|
|
|
5086
5086
|
entity: BackInStockNotificationRequest;
|
|
5087
5087
|
metadata: EventMetadata$b;
|
|
5088
5088
|
}
|
|
5089
|
-
interface BackInStockNotificationRequestDeletedEnvelope {
|
|
5090
|
-
metadata: EventMetadata$b;
|
|
5091
|
-
}
|
|
5092
5089
|
interface BackInStockNotificationRequestUpdatedEnvelope {
|
|
5093
5090
|
entity: BackInStockNotificationRequest;
|
|
5094
5091
|
metadata: EventMetadata$b;
|
|
5095
5092
|
}
|
|
5093
|
+
interface BackInStockNotificationRequestDeletedEnvelope {
|
|
5094
|
+
metadata: EventMetadata$b;
|
|
5095
|
+
}
|
|
5096
5096
|
interface QueryCursorResult$a {
|
|
5097
5097
|
cursors: Cursors$c;
|
|
5098
5098
|
hasNext: () => boolean;
|
|
@@ -5288,8 +5288,8 @@ interface ReportItemsBackInStockSignature {
|
|
|
5288
5288
|
(itemDetails: BackInStockItemDetails, options?: ReportItemsBackInStockOptions | undefined): Promise<void>;
|
|
5289
5289
|
}
|
|
5290
5290
|
declare const onBackInStockNotificationRequestCreated$1: EventDefinition<BackInStockNotificationRequestCreatedEnvelope, "wix.ecom.v1.back_in_stock_notification_request_created">;
|
|
5291
|
-
declare const onBackInStockNotificationRequestDeleted$1: EventDefinition<BackInStockNotificationRequestDeletedEnvelope, "wix.ecom.v1.back_in_stock_notification_request_deleted">;
|
|
5292
5291
|
declare const onBackInStockNotificationRequestUpdated$1: EventDefinition<BackInStockNotificationRequestUpdatedEnvelope, "wix.ecom.v1.back_in_stock_notification_request_updated">;
|
|
5292
|
+
declare const onBackInStockNotificationRequestDeleted$1: EventDefinition<BackInStockNotificationRequestDeletedEnvelope, "wix.ecom.v1.back_in_stock_notification_request_deleted">;
|
|
5293
5293
|
|
|
5294
5294
|
declare function createEventModule$b<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
5295
5295
|
|
|
@@ -5302,23 +5302,17 @@ declare const getBackInStockNotificationRequestsCountByCatalogReferences: MaybeC
|
|
|
5302
5302
|
declare const reportItemsBackInStock: MaybeContext<BuildRESTFunction<typeof reportItemsBackInStock$1> & typeof reportItemsBackInStock$1>;
|
|
5303
5303
|
|
|
5304
5304
|
type _publicOnBackInStockNotificationRequestCreatedType = typeof onBackInStockNotificationRequestCreated$1;
|
|
5305
|
-
/**
|
|
5306
|
-
* Triggered when a back in stock notification request is created.
|
|
5307
|
-
*/
|
|
5305
|
+
/** */
|
|
5308
5306
|
declare const onBackInStockNotificationRequestCreated: ReturnType<typeof createEventModule$b<_publicOnBackInStockNotificationRequestCreatedType>>;
|
|
5309
5307
|
|
|
5310
|
-
type _publicOnBackInStockNotificationRequestDeletedType = typeof onBackInStockNotificationRequestDeleted$1;
|
|
5311
|
-
/**
|
|
5312
|
-
* Triggered when a back in stock notification request is deleted.
|
|
5313
|
-
*/
|
|
5314
|
-
declare const onBackInStockNotificationRequestDeleted: ReturnType<typeof createEventModule$b<_publicOnBackInStockNotificationRequestDeletedType>>;
|
|
5315
|
-
|
|
5316
5308
|
type _publicOnBackInStockNotificationRequestUpdatedType = typeof onBackInStockNotificationRequestUpdated$1;
|
|
5317
|
-
/**
|
|
5318
|
-
* Triggered when a back in stock notification request is updated.
|
|
5319
|
-
*/
|
|
5309
|
+
/** */
|
|
5320
5310
|
declare const onBackInStockNotificationRequestUpdated: ReturnType<typeof createEventModule$b<_publicOnBackInStockNotificationRequestUpdatedType>>;
|
|
5321
5311
|
|
|
5312
|
+
type _publicOnBackInStockNotificationRequestDeletedType = typeof onBackInStockNotificationRequestDeleted$1;
|
|
5313
|
+
/** */
|
|
5314
|
+
declare const onBackInStockNotificationRequestDeleted: ReturnType<typeof createEventModule$b<_publicOnBackInStockNotificationRequestDeletedType>>;
|
|
5315
|
+
|
|
5322
5316
|
type index_d$o_BackInStockItemDetails = BackInStockItemDetails;
|
|
5323
5317
|
type index_d$o_BackInStockNotificationRequest = BackInStockNotificationRequest;
|
|
5324
5318
|
type index_d$o_BackInStockNotificationRequestCreatedEnvelope = BackInStockNotificationRequestCreatedEnvelope;
|
|
@@ -1121,10 +1121,10 @@ interface GetRecommendationsEnvelope {
|
|
|
1121
1121
|
declare const provideHandlers$d: ServicePluginDefinition<{
|
|
1122
1122
|
/**
|
|
1123
1123
|
*
|
|
1124
|
-
*
|
|
1124
|
+
* This method retrieves an array containing the lists of recommended items returned by each algorithm. Items must be selected from catalogs in Wix apps installed on the site.
|
|
1125
1125
|
*
|
|
1126
|
-
* If
|
|
1127
|
-
* How the related items are selected
|
|
1126
|
+
* If a requested recommendation algorithm's type is `RELATED_ITEMS` then the `items` field is included in the request. The response should contain items related to those submitted.
|
|
1127
|
+
* How the related items are selected depends on the recommendation algorithms used. For example, items can be in the same category, or can be frequently bought or watched together. */
|
|
1128
1128
|
getRecommendations(payload: GetRecommendationsEnvelope): GetRecommendationsResponse | Promise<GetRecommendationsResponse>;
|
|
1129
1129
|
}>;
|
|
1130
1130
|
|
|
@@ -1080,10 +1080,10 @@ interface GetRecommendationsEnvelope {
|
|
|
1080
1080
|
declare const provideHandlers$d: ServicePluginDefinition<{
|
|
1081
1081
|
/**
|
|
1082
1082
|
*
|
|
1083
|
-
*
|
|
1083
|
+
* This method retrieves an array containing the lists of recommended items returned by each algorithm. Items must be selected from catalogs in Wix apps installed on the site.
|
|
1084
1084
|
*
|
|
1085
|
-
* If
|
|
1086
|
-
* How the related items are selected
|
|
1085
|
+
* If a requested recommendation algorithm's type is `RELATED_ITEMS` then the `items` field is included in the request. The response should contain items related to those submitted.
|
|
1086
|
+
* How the related items are selected depends on the recommendation algorithms used. For example, items can be in the same category, or can be frequently bought or watched together. */
|
|
1087
1087
|
getRecommendations(payload: GetRecommendationsEnvelope): GetRecommendationsResponse | Promise<GetRecommendationsResponse>;
|
|
1088
1088
|
}>;
|
|
1089
1089
|
|