@wix/stores 1.0.119 → 1.0.121
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-collection.universal.d.ts +3 -3
- package/build/cjs/src/stores-catalog-v1-product.universal.d.ts +3 -3
- package/build/es/src/stores-catalog-v1-collection.universal.d.ts +3 -3
- package/build/es/src/stores-catalog-v1-product.universal.d.ts +3 -3
- package/package.json +4 -4
|
@@ -381,9 +381,9 @@ export interface GetCollectionBySlugResponseNonNullableFields {
|
|
|
381
381
|
*/
|
|
382
382
|
export declare function queryCollections(): CollectionsQueryBuilder;
|
|
383
383
|
interface QueryOffsetResult {
|
|
384
|
-
currentPage: number;
|
|
385
|
-
totalPages: number;
|
|
386
|
-
totalCount: number;
|
|
384
|
+
currentPage: number | undefined;
|
|
385
|
+
totalPages: number | undefined;
|
|
386
|
+
totalCount: number | undefined;
|
|
387
387
|
hasNext: () => boolean;
|
|
388
388
|
hasPrev: () => boolean;
|
|
389
389
|
length: number;
|
|
@@ -4748,9 +4748,9 @@ export declare function writeProxyDeleteProductPlatformized(_id: string): Promis
|
|
|
4748
4748
|
*/
|
|
4749
4749
|
export declare function queryProducts(): ProductsQueryBuilder;
|
|
4750
4750
|
interface QueryOffsetResult {
|
|
4751
|
-
currentPage: number;
|
|
4752
|
-
totalPages: number;
|
|
4753
|
-
totalCount: number;
|
|
4751
|
+
currentPage: number | undefined;
|
|
4752
|
+
totalPages: number | undefined;
|
|
4753
|
+
totalCount: number | undefined;
|
|
4754
4754
|
hasNext: () => boolean;
|
|
4755
4755
|
hasPrev: () => boolean;
|
|
4756
4756
|
length: number;
|
|
@@ -381,9 +381,9 @@ export interface GetCollectionBySlugResponseNonNullableFields {
|
|
|
381
381
|
*/
|
|
382
382
|
export declare function queryCollections(): CollectionsQueryBuilder;
|
|
383
383
|
interface QueryOffsetResult {
|
|
384
|
-
currentPage: number;
|
|
385
|
-
totalPages: number;
|
|
386
|
-
totalCount: number;
|
|
384
|
+
currentPage: number | undefined;
|
|
385
|
+
totalPages: number | undefined;
|
|
386
|
+
totalCount: number | undefined;
|
|
387
387
|
hasNext: () => boolean;
|
|
388
388
|
hasPrev: () => boolean;
|
|
389
389
|
length: number;
|
|
@@ -4748,9 +4748,9 @@ export declare function writeProxyDeleteProductPlatformized(_id: string): Promis
|
|
|
4748
4748
|
*/
|
|
4749
4749
|
export declare function queryProducts(): ProductsQueryBuilder;
|
|
4750
4750
|
interface QueryOffsetResult {
|
|
4751
|
-
currentPage: number;
|
|
4752
|
-
totalPages: number;
|
|
4753
|
-
totalCount: number;
|
|
4751
|
+
currentPage: number | undefined;
|
|
4752
|
+
totalPages: number | undefined;
|
|
4753
|
+
totalCount: number | undefined;
|
|
4754
4754
|
hasNext: () => boolean;
|
|
4755
4755
|
hasPrev: () => boolean;
|
|
4756
4756
|
length: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/stores",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.121",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
],
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@wix/metro-runtime": "^1.1528.0",
|
|
19
|
-
"@wix/
|
|
20
|
-
"@wix/
|
|
19
|
+
"@wix/sdk-types": "^1.3.0",
|
|
20
|
+
"@wix/motion-edm-autogen-query-wrapper": "^1.0.37"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"build": "tsc -b tsconfig.json tsconfig.esm.json",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"groupId": "com.wixpress.public-sdk-autogen"
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
|
-
"falconPackageHash": "
|
|
32
|
+
"falconPackageHash": "3b385de3dd0ae4273aea79742bc91103e751ca371ec6d9e6cfb168f3"
|
|
33
33
|
}
|