@wix/stores 1.0.77 → 1.0.78
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/stores-catalog-v1-product.types.d.ts +6 -6
- package/build/cjs/src/stores-catalog-v1-product.universal.d.ts +5 -5
- package/build/cjs/src/stores-catalog-v1-product.universal.js +1 -1
- package/build/es/src/stores-catalog-v1-product.types.d.ts +6 -6
- package/build/es/src/stores-catalog-v1-product.universal.d.ts +5 -5
- package/build/es/src/stores-catalog-v1-product.universal.js +1 -1
- package/package.json +2 -2
|
@@ -532,7 +532,7 @@ export interface ResetAllVariantDataRequest {
|
|
|
532
532
|
export interface ResetAllVariantDataResponse {
|
|
533
533
|
}
|
|
534
534
|
export interface AddProductsToCollectionRequest {
|
|
535
|
-
/** Collection ID.
|
|
535
|
+
/** Collection ID. */
|
|
536
536
|
id: string;
|
|
537
537
|
/** IDs of the products to add to the collection, separated by commas. */
|
|
538
538
|
productIds?: string[];
|
|
@@ -540,7 +540,7 @@ export interface AddProductsToCollectionRequest {
|
|
|
540
540
|
export interface AddProductsToCollectionResponse {
|
|
541
541
|
}
|
|
542
542
|
export interface RemoveProductsFromCollectionRequest {
|
|
543
|
-
/** Collection ID.
|
|
543
|
+
/** Collection ID. */
|
|
544
544
|
id: string;
|
|
545
545
|
/** IDs of the products to remove from the collection. */
|
|
546
546
|
productIds: string[];
|
|
@@ -698,7 +698,7 @@ export interface UpdateCollectionResponse {
|
|
|
698
698
|
collection?: Collection;
|
|
699
699
|
}
|
|
700
700
|
export interface DeleteCollectionRequest {
|
|
701
|
-
/** ID of the collection to delete.
|
|
701
|
+
/** ID of the collection to delete. */
|
|
702
702
|
id: string;
|
|
703
703
|
}
|
|
704
704
|
export interface DeleteCollectionResponse {
|
|
@@ -944,7 +944,7 @@ export interface ProductDeleted {
|
|
|
944
944
|
}
|
|
945
945
|
export interface CollectionCreated {
|
|
946
946
|
/** Collection ID (generated automatically by the catalog). */
|
|
947
|
-
|
|
947
|
+
collection_Id?: string;
|
|
948
948
|
/** Collection name. */
|
|
949
949
|
name?: string;
|
|
950
950
|
/** Media items (images, videos, etc.) associated with this collection. */
|
|
@@ -956,13 +956,13 @@ export interface CollectionCreated {
|
|
|
956
956
|
}
|
|
957
957
|
export interface CollectionChanged {
|
|
958
958
|
/** Collection ID (generated automatically by the catalog). */
|
|
959
|
-
|
|
959
|
+
collection_Id?: string;
|
|
960
960
|
/** List of collection fields that were changed. */
|
|
961
961
|
changedFields?: string[];
|
|
962
962
|
}
|
|
963
963
|
export interface CollectionDeleted {
|
|
964
964
|
/** ID of the collection that was deleted. */
|
|
965
|
-
|
|
965
|
+
collection_Id?: string;
|
|
966
966
|
}
|
|
967
967
|
export interface VariantsChanged {
|
|
968
968
|
/** Product ID. */
|
|
@@ -538,7 +538,7 @@ export interface ResetAllVariantDataRequest {
|
|
|
538
538
|
export interface ResetAllVariantDataResponse {
|
|
539
539
|
}
|
|
540
540
|
export interface AddProductsToCollectionRequest {
|
|
541
|
-
/** Collection ID.
|
|
541
|
+
/** Collection ID. */
|
|
542
542
|
_id: string;
|
|
543
543
|
/** IDs of the products to add to the collection, separated by commas. */
|
|
544
544
|
productIds?: string[];
|
|
@@ -946,7 +946,7 @@ export interface ProductDeleted {
|
|
|
946
946
|
}
|
|
947
947
|
export interface CollectionCreated {
|
|
948
948
|
/** Collection ID (generated automatically by the catalog). */
|
|
949
|
-
|
|
949
|
+
collection_Id?: string;
|
|
950
950
|
/** Collection name. */
|
|
951
951
|
name?: string;
|
|
952
952
|
/** Media items (images, videos, etc.) associated with this collection. */
|
|
@@ -958,13 +958,13 @@ export interface CollectionCreated {
|
|
|
958
958
|
}
|
|
959
959
|
export interface CollectionChanged {
|
|
960
960
|
/** Collection ID (generated automatically by the catalog). */
|
|
961
|
-
|
|
961
|
+
collection_Id?: string;
|
|
962
962
|
/** List of collection fields that were changed. */
|
|
963
963
|
changedFields?: string[];
|
|
964
964
|
}
|
|
965
965
|
export interface CollectionDeleted {
|
|
966
966
|
/** ID of the collection that was deleted. */
|
|
967
|
-
|
|
967
|
+
collection_Id?: string;
|
|
968
968
|
}
|
|
969
969
|
export interface VariantsChanged {
|
|
970
970
|
/** Product ID. */
|
|
@@ -1575,7 +1575,7 @@ export declare function resetAllProductVariantData(_id: string): Promise<void>;
|
|
|
1575
1575
|
* Adds products to a specified collection.
|
|
1576
1576
|
*
|
|
1577
1577
|
* This function is not a universal function and runs only on the backend.
|
|
1578
|
-
* @param _id - Collection ID.
|
|
1578
|
+
* @param _id - Collection ID.
|
|
1579
1579
|
* @param productIds - IDs of the products to add to the collection, separated by commas.
|
|
1580
1580
|
* @public
|
|
1581
1581
|
* @requiredField _id
|
|
@@ -458,7 +458,7 @@ exports.resetAllProductVariantData = resetAllProductVariantData;
|
|
|
458
458
|
* Adds products to a specified collection.
|
|
459
459
|
*
|
|
460
460
|
* This function is not a universal function and runs only on the backend.
|
|
461
|
-
* @param _id - Collection ID.
|
|
461
|
+
* @param _id - Collection ID.
|
|
462
462
|
* @param productIds - IDs of the products to add to the collection, separated by commas.
|
|
463
463
|
* @public
|
|
464
464
|
* @requiredField _id
|
|
@@ -532,7 +532,7 @@ export interface ResetAllVariantDataRequest {
|
|
|
532
532
|
export interface ResetAllVariantDataResponse {
|
|
533
533
|
}
|
|
534
534
|
export interface AddProductsToCollectionRequest {
|
|
535
|
-
/** Collection ID.
|
|
535
|
+
/** Collection ID. */
|
|
536
536
|
id: string;
|
|
537
537
|
/** IDs of the products to add to the collection, separated by commas. */
|
|
538
538
|
productIds?: string[];
|
|
@@ -540,7 +540,7 @@ export interface AddProductsToCollectionRequest {
|
|
|
540
540
|
export interface AddProductsToCollectionResponse {
|
|
541
541
|
}
|
|
542
542
|
export interface RemoveProductsFromCollectionRequest {
|
|
543
|
-
/** Collection ID.
|
|
543
|
+
/** Collection ID. */
|
|
544
544
|
id: string;
|
|
545
545
|
/** IDs of the products to remove from the collection. */
|
|
546
546
|
productIds: string[];
|
|
@@ -698,7 +698,7 @@ export interface UpdateCollectionResponse {
|
|
|
698
698
|
collection?: Collection;
|
|
699
699
|
}
|
|
700
700
|
export interface DeleteCollectionRequest {
|
|
701
|
-
/** ID of the collection to delete.
|
|
701
|
+
/** ID of the collection to delete. */
|
|
702
702
|
id: string;
|
|
703
703
|
}
|
|
704
704
|
export interface DeleteCollectionResponse {
|
|
@@ -944,7 +944,7 @@ export interface ProductDeleted {
|
|
|
944
944
|
}
|
|
945
945
|
export interface CollectionCreated {
|
|
946
946
|
/** Collection ID (generated automatically by the catalog). */
|
|
947
|
-
|
|
947
|
+
collection_Id?: string;
|
|
948
948
|
/** Collection name. */
|
|
949
949
|
name?: string;
|
|
950
950
|
/** Media items (images, videos, etc.) associated with this collection. */
|
|
@@ -956,13 +956,13 @@ export interface CollectionCreated {
|
|
|
956
956
|
}
|
|
957
957
|
export interface CollectionChanged {
|
|
958
958
|
/** Collection ID (generated automatically by the catalog). */
|
|
959
|
-
|
|
959
|
+
collection_Id?: string;
|
|
960
960
|
/** List of collection fields that were changed. */
|
|
961
961
|
changedFields?: string[];
|
|
962
962
|
}
|
|
963
963
|
export interface CollectionDeleted {
|
|
964
964
|
/** ID of the collection that was deleted. */
|
|
965
|
-
|
|
965
|
+
collection_Id?: string;
|
|
966
966
|
}
|
|
967
967
|
export interface VariantsChanged {
|
|
968
968
|
/** Product ID. */
|
|
@@ -538,7 +538,7 @@ export interface ResetAllVariantDataRequest {
|
|
|
538
538
|
export interface ResetAllVariantDataResponse {
|
|
539
539
|
}
|
|
540
540
|
export interface AddProductsToCollectionRequest {
|
|
541
|
-
/** Collection ID.
|
|
541
|
+
/** Collection ID. */
|
|
542
542
|
_id: string;
|
|
543
543
|
/** IDs of the products to add to the collection, separated by commas. */
|
|
544
544
|
productIds?: string[];
|
|
@@ -946,7 +946,7 @@ export interface ProductDeleted {
|
|
|
946
946
|
}
|
|
947
947
|
export interface CollectionCreated {
|
|
948
948
|
/** Collection ID (generated automatically by the catalog). */
|
|
949
|
-
|
|
949
|
+
collection_Id?: string;
|
|
950
950
|
/** Collection name. */
|
|
951
951
|
name?: string;
|
|
952
952
|
/** Media items (images, videos, etc.) associated with this collection. */
|
|
@@ -958,13 +958,13 @@ export interface CollectionCreated {
|
|
|
958
958
|
}
|
|
959
959
|
export interface CollectionChanged {
|
|
960
960
|
/** Collection ID (generated automatically by the catalog). */
|
|
961
|
-
|
|
961
|
+
collection_Id?: string;
|
|
962
962
|
/** List of collection fields that were changed. */
|
|
963
963
|
changedFields?: string[];
|
|
964
964
|
}
|
|
965
965
|
export interface CollectionDeleted {
|
|
966
966
|
/** ID of the collection that was deleted. */
|
|
967
|
-
|
|
967
|
+
collection_Id?: string;
|
|
968
968
|
}
|
|
969
969
|
export interface VariantsChanged {
|
|
970
970
|
/** Product ID. */
|
|
@@ -1575,7 +1575,7 @@ export declare function resetAllProductVariantData(_id: string): Promise<void>;
|
|
|
1575
1575
|
* Adds products to a specified collection.
|
|
1576
1576
|
*
|
|
1577
1577
|
* This function is not a universal function and runs only on the backend.
|
|
1578
|
-
* @param _id - Collection ID.
|
|
1578
|
+
* @param _id - Collection ID.
|
|
1579
1579
|
* @param productIds - IDs of the products to add to the collection, separated by commas.
|
|
1580
1580
|
* @public
|
|
1581
1581
|
* @requiredField _id
|
|
@@ -431,7 +431,7 @@ export function resetAllProductVariantData(_id) {
|
|
|
431
431
|
* Adds products to a specified collection.
|
|
432
432
|
*
|
|
433
433
|
* This function is not a universal function and runs only on the backend.
|
|
434
|
-
* @param _id - Collection ID.
|
|
434
|
+
* @param _id - Collection ID.
|
|
435
435
|
* @param productIds - IDs of the products to add to the collection, separated by commas.
|
|
436
436
|
* @public
|
|
437
437
|
* @requiredField _id
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/stores",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.78",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"groupId": "com.wixpress.public-sdk-autogen"
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
|
-
"falconPackageHash": "
|
|
36
|
+
"falconPackageHash": "6bd5424352ea9299cf8c1660caa73cdd7bdaf1b5def1e9aa49b9fcab"
|
|
37
37
|
}
|