@wix/stores 1.0.288 → 1.0.290
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/stores",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.290",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"@wix/stores_catalog-versioning": "1.0.14",
|
|
26
26
|
"@wix/stores_collections": "1.0.47",
|
|
27
27
|
"@wix/stores_customizations-v-3": "1.0.22",
|
|
28
|
-
"@wix/stores_info-sections-v-3": "1.0.
|
|
28
|
+
"@wix/stores_info-sections-v-3": "1.0.25",
|
|
29
29
|
"@wix/stores_inventory": "1.0.59",
|
|
30
30
|
"@wix/stores_inventory-items-v-3": "1.0.26",
|
|
31
31
|
"@wix/stores_products": "1.0.84",
|
|
32
|
-
"@wix/stores_products-v-3": "1.0.
|
|
32
|
+
"@wix/stores_products-v-3": "1.0.71",
|
|
33
33
|
"@wix/stores_ribbons-v-3": "1.0.22",
|
|
34
34
|
"@wix/stores_stores-locations-v-3": "1.0.23",
|
|
35
35
|
"@wix/stores_subscription-options": "1.0.46",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"fqdn": ""
|
|
59
59
|
}
|
|
60
60
|
},
|
|
61
|
-
"falconPackageHash": "
|
|
61
|
+
"falconPackageHash": "314d4fa3520577b0490df2696d45933753c5a646369074a5330f8ea7"
|
|
62
62
|
}
|
|
@@ -7865,11 +7865,11 @@ interface InfoSectionCreatedEnvelope {
|
|
|
7865
7865
|
entity: InfoSection$1;
|
|
7866
7866
|
metadata: EventMetadata$3;
|
|
7867
7867
|
}
|
|
7868
|
-
interface
|
|
7869
|
-
entity: InfoSection$1;
|
|
7868
|
+
interface InfoSectionDeletedEnvelope {
|
|
7870
7869
|
metadata: EventMetadata$3;
|
|
7871
7870
|
}
|
|
7872
|
-
interface
|
|
7871
|
+
interface InfoSectionUpdatedEnvelope {
|
|
7872
|
+
entity: InfoSection$1;
|
|
7873
7873
|
metadata: EventMetadata$3;
|
|
7874
7874
|
}
|
|
7875
7875
|
interface GetInfoSectionOptions {
|
|
@@ -8181,8 +8181,8 @@ interface BulkDeleteInfoSectionsSignature {
|
|
|
8181
8181
|
(infoSectionIds: string[]): Promise<BulkDeleteInfoSectionsResponse & BulkDeleteInfoSectionsResponseNonNullableFields>;
|
|
8182
8182
|
}
|
|
8183
8183
|
declare const onInfoSectionCreated$1: EventDefinition<InfoSectionCreatedEnvelope, "wix.stores.catalog.v3.info_section_created">;
|
|
8184
|
-
declare const onInfoSectionUpdated$1: EventDefinition<InfoSectionUpdatedEnvelope, "wix.stores.catalog.v3.info_section_updated">;
|
|
8185
8184
|
declare const onInfoSectionDeleted$1: EventDefinition<InfoSectionDeletedEnvelope, "wix.stores.catalog.v3.info_section_deleted">;
|
|
8185
|
+
declare const onInfoSectionUpdated$1: EventDefinition<InfoSectionUpdatedEnvelope, "wix.stores.catalog.v3.info_section_updated">;
|
|
8186
8186
|
|
|
8187
8187
|
declare function createEventModule$4<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
8188
8188
|
|
|
@@ -8203,18 +8203,18 @@ type _publicOnInfoSectionCreatedType = typeof onInfoSectionCreated$1;
|
|
|
8203
8203
|
*/
|
|
8204
8204
|
declare const onInfoSectionCreated: ReturnType<typeof createEventModule$4<_publicOnInfoSectionCreatedType>>;
|
|
8205
8205
|
|
|
8206
|
-
type _publicOnInfoSectionUpdatedType = typeof onInfoSectionUpdated$1;
|
|
8207
|
-
/**
|
|
8208
|
-
* Triggered when an info section is updated.
|
|
8209
|
-
*/
|
|
8210
|
-
declare const onInfoSectionUpdated: ReturnType<typeof createEventModule$4<_publicOnInfoSectionUpdatedType>>;
|
|
8211
|
-
|
|
8212
8206
|
type _publicOnInfoSectionDeletedType = typeof onInfoSectionDeleted$1;
|
|
8213
8207
|
/**
|
|
8214
8208
|
* Triggered when an info section is deleted.
|
|
8215
8209
|
*/
|
|
8216
8210
|
declare const onInfoSectionDeleted: ReturnType<typeof createEventModule$4<_publicOnInfoSectionDeletedType>>;
|
|
8217
8211
|
|
|
8212
|
+
type _publicOnInfoSectionUpdatedType = typeof onInfoSectionUpdated$1;
|
|
8213
|
+
/**
|
|
8214
|
+
* Triggered when an info section is updated.
|
|
8215
|
+
*/
|
|
8216
|
+
declare const onInfoSectionUpdated: ReturnType<typeof createEventModule$4<_publicOnInfoSectionUpdatedType>>;
|
|
8217
|
+
|
|
8218
8218
|
type context$7_BulkCreateInfoSectionsOptions = BulkCreateInfoSectionsOptions;
|
|
8219
8219
|
type context$7_BulkCreateInfoSectionsRequest = BulkCreateInfoSectionsRequest;
|
|
8220
8220
|
type context$7_BulkCreateInfoSectionsResponse = BulkCreateInfoSectionsResponse;
|
|
@@ -16308,11 +16308,11 @@ interface ProductCreatedEnvelope {
|
|
|
16308
16308
|
entity: V3Product;
|
|
16309
16309
|
metadata: EventMetadata$1;
|
|
16310
16310
|
}
|
|
16311
|
-
interface
|
|
16311
|
+
interface ProductDeletedEnvelope {
|
|
16312
16312
|
entity: V3Product;
|
|
16313
16313
|
metadata: EventMetadata$1;
|
|
16314
16314
|
}
|
|
16315
|
-
interface
|
|
16315
|
+
interface ProductUpdatedEnvelope {
|
|
16316
16316
|
entity: V3Product;
|
|
16317
16317
|
metadata: EventMetadata$1;
|
|
16318
16318
|
}
|
|
@@ -17229,8 +17229,8 @@ interface BulkRemoveProductsFromCategoriesByFilterSignature {
|
|
|
17229
17229
|
(options?: BulkRemoveProductsFromCategoriesByFilterOptions | undefined): Promise<BulkRemoveProductsFromCategoriesByFilterResponse & BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields>;
|
|
17230
17230
|
}
|
|
17231
17231
|
declare const onProductCreated$1: EventDefinition<ProductCreatedEnvelope, "wix.stores.catalog.v3.product_created">;
|
|
17232
|
-
declare const onProductUpdated$1: EventDefinition<ProductUpdatedEnvelope, "wix.stores.catalog.v3.product_updated">;
|
|
17233
17232
|
declare const onProductDeleted$1: EventDefinition<ProductDeletedEnvelope, "wix.stores.catalog.v3.product_deleted">;
|
|
17233
|
+
declare const onProductUpdated$1: EventDefinition<ProductUpdatedEnvelope, "wix.stores.catalog.v3.product_updated">;
|
|
17234
17234
|
|
|
17235
17235
|
declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
17236
17236
|
|
|
@@ -17265,14 +17265,14 @@ type _publicOnProductCreatedType = typeof onProductCreated$1;
|
|
|
17265
17265
|
/** */
|
|
17266
17266
|
declare const onProductCreated: ReturnType<typeof createEventModule$2<_publicOnProductCreatedType>>;
|
|
17267
17267
|
|
|
17268
|
-
type _publicOnProductUpdatedType = typeof onProductUpdated$1;
|
|
17269
|
-
/** */
|
|
17270
|
-
declare const onProductUpdated: ReturnType<typeof createEventModule$2<_publicOnProductUpdatedType>>;
|
|
17271
|
-
|
|
17272
17268
|
type _publicOnProductDeletedType = typeof onProductDeleted$1;
|
|
17273
17269
|
/** */
|
|
17274
17270
|
declare const onProductDeleted: ReturnType<typeof createEventModule$2<_publicOnProductDeletedType>>;
|
|
17275
17271
|
|
|
17272
|
+
type _publicOnProductUpdatedType = typeof onProductUpdated$1;
|
|
17273
|
+
/** */
|
|
17274
|
+
declare const onProductUpdated: ReturnType<typeof createEventModule$2<_publicOnProductUpdatedType>>;
|
|
17275
|
+
|
|
17276
17276
|
type context$5_AdjustValue = AdjustValue;
|
|
17277
17277
|
type context$5_AdjustValueAdjustValueOneOf = AdjustValueAdjustValueOneOf;
|
|
17278
17278
|
type context$5_Aggregation = Aggregation;
|
|
@@ -7865,11 +7865,11 @@ interface InfoSectionCreatedEnvelope {
|
|
|
7865
7865
|
entity: InfoSection$1;
|
|
7866
7866
|
metadata: EventMetadata$3;
|
|
7867
7867
|
}
|
|
7868
|
-
interface
|
|
7869
|
-
entity: InfoSection$1;
|
|
7868
|
+
interface InfoSectionDeletedEnvelope {
|
|
7870
7869
|
metadata: EventMetadata$3;
|
|
7871
7870
|
}
|
|
7872
|
-
interface
|
|
7871
|
+
interface InfoSectionUpdatedEnvelope {
|
|
7872
|
+
entity: InfoSection$1;
|
|
7873
7873
|
metadata: EventMetadata$3;
|
|
7874
7874
|
}
|
|
7875
7875
|
interface GetInfoSectionOptions {
|
|
@@ -8181,8 +8181,8 @@ interface BulkDeleteInfoSectionsSignature {
|
|
|
8181
8181
|
(infoSectionIds: string[]): Promise<BulkDeleteInfoSectionsResponse & BulkDeleteInfoSectionsResponseNonNullableFields>;
|
|
8182
8182
|
}
|
|
8183
8183
|
declare const onInfoSectionCreated$1: EventDefinition<InfoSectionCreatedEnvelope, "wix.stores.catalog.v3.info_section_created">;
|
|
8184
|
-
declare const onInfoSectionUpdated$1: EventDefinition<InfoSectionUpdatedEnvelope, "wix.stores.catalog.v3.info_section_updated">;
|
|
8185
8184
|
declare const onInfoSectionDeleted$1: EventDefinition<InfoSectionDeletedEnvelope, "wix.stores.catalog.v3.info_section_deleted">;
|
|
8185
|
+
declare const onInfoSectionUpdated$1: EventDefinition<InfoSectionUpdatedEnvelope, "wix.stores.catalog.v3.info_section_updated">;
|
|
8186
8186
|
|
|
8187
8187
|
declare function createEventModule$4<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
8188
8188
|
|
|
@@ -8203,18 +8203,18 @@ type _publicOnInfoSectionCreatedType = typeof onInfoSectionCreated$1;
|
|
|
8203
8203
|
*/
|
|
8204
8204
|
declare const onInfoSectionCreated: ReturnType<typeof createEventModule$4<_publicOnInfoSectionCreatedType>>;
|
|
8205
8205
|
|
|
8206
|
-
type _publicOnInfoSectionUpdatedType = typeof onInfoSectionUpdated$1;
|
|
8207
|
-
/**
|
|
8208
|
-
* Triggered when an info section is updated.
|
|
8209
|
-
*/
|
|
8210
|
-
declare const onInfoSectionUpdated: ReturnType<typeof createEventModule$4<_publicOnInfoSectionUpdatedType>>;
|
|
8211
|
-
|
|
8212
8206
|
type _publicOnInfoSectionDeletedType = typeof onInfoSectionDeleted$1;
|
|
8213
8207
|
/**
|
|
8214
8208
|
* Triggered when an info section is deleted.
|
|
8215
8209
|
*/
|
|
8216
8210
|
declare const onInfoSectionDeleted: ReturnType<typeof createEventModule$4<_publicOnInfoSectionDeletedType>>;
|
|
8217
8211
|
|
|
8212
|
+
type _publicOnInfoSectionUpdatedType = typeof onInfoSectionUpdated$1;
|
|
8213
|
+
/**
|
|
8214
|
+
* Triggered when an info section is updated.
|
|
8215
|
+
*/
|
|
8216
|
+
declare const onInfoSectionUpdated: ReturnType<typeof createEventModule$4<_publicOnInfoSectionUpdatedType>>;
|
|
8217
|
+
|
|
8218
8218
|
type index_d$7_BulkCreateInfoSectionsOptions = BulkCreateInfoSectionsOptions;
|
|
8219
8219
|
type index_d$7_BulkCreateInfoSectionsRequest = BulkCreateInfoSectionsRequest;
|
|
8220
8220
|
type index_d$7_BulkCreateInfoSectionsResponse = BulkCreateInfoSectionsResponse;
|
|
@@ -16308,11 +16308,11 @@ interface ProductCreatedEnvelope {
|
|
|
16308
16308
|
entity: V3Product;
|
|
16309
16309
|
metadata: EventMetadata$1;
|
|
16310
16310
|
}
|
|
16311
|
-
interface
|
|
16311
|
+
interface ProductDeletedEnvelope {
|
|
16312
16312
|
entity: V3Product;
|
|
16313
16313
|
metadata: EventMetadata$1;
|
|
16314
16314
|
}
|
|
16315
|
-
interface
|
|
16315
|
+
interface ProductUpdatedEnvelope {
|
|
16316
16316
|
entity: V3Product;
|
|
16317
16317
|
metadata: EventMetadata$1;
|
|
16318
16318
|
}
|
|
@@ -17229,8 +17229,8 @@ interface BulkRemoveProductsFromCategoriesByFilterSignature {
|
|
|
17229
17229
|
(options?: BulkRemoveProductsFromCategoriesByFilterOptions | undefined): Promise<BulkRemoveProductsFromCategoriesByFilterResponse & BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields>;
|
|
17230
17230
|
}
|
|
17231
17231
|
declare const onProductCreated$1: EventDefinition<ProductCreatedEnvelope, "wix.stores.catalog.v3.product_created">;
|
|
17232
|
-
declare const onProductUpdated$1: EventDefinition<ProductUpdatedEnvelope, "wix.stores.catalog.v3.product_updated">;
|
|
17233
17232
|
declare const onProductDeleted$1: EventDefinition<ProductDeletedEnvelope, "wix.stores.catalog.v3.product_deleted">;
|
|
17233
|
+
declare const onProductUpdated$1: EventDefinition<ProductUpdatedEnvelope, "wix.stores.catalog.v3.product_updated">;
|
|
17234
17234
|
|
|
17235
17235
|
declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
17236
17236
|
|
|
@@ -17265,14 +17265,14 @@ type _publicOnProductCreatedType = typeof onProductCreated$1;
|
|
|
17265
17265
|
/** */
|
|
17266
17266
|
declare const onProductCreated: ReturnType<typeof createEventModule$2<_publicOnProductCreatedType>>;
|
|
17267
17267
|
|
|
17268
|
-
type _publicOnProductUpdatedType = typeof onProductUpdated$1;
|
|
17269
|
-
/** */
|
|
17270
|
-
declare const onProductUpdated: ReturnType<typeof createEventModule$2<_publicOnProductUpdatedType>>;
|
|
17271
|
-
|
|
17272
17268
|
type _publicOnProductDeletedType = typeof onProductDeleted$1;
|
|
17273
17269
|
/** */
|
|
17274
17270
|
declare const onProductDeleted: ReturnType<typeof createEventModule$2<_publicOnProductDeletedType>>;
|
|
17275
17271
|
|
|
17272
|
+
type _publicOnProductUpdatedType = typeof onProductUpdated$1;
|
|
17273
|
+
/** */
|
|
17274
|
+
declare const onProductUpdated: ReturnType<typeof createEventModule$2<_publicOnProductUpdatedType>>;
|
|
17275
|
+
|
|
17276
17276
|
type index_d$5_AdjustValue = AdjustValue;
|
|
17277
17277
|
type index_d$5_AdjustValueAdjustValueOneOf = AdjustValueAdjustValueOneOf;
|
|
17278
17278
|
type index_d$5_Aggregation = Aggregation;
|