@wix/stores 1.0.319 → 1.0.321
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.321",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@wix/stores_customizations-v-3": "1.0.32",
|
|
28
28
|
"@wix/stores_info-sections-v-3": "1.0.31",
|
|
29
29
|
"@wix/stores_inventory": "1.0.68",
|
|
30
|
-
"@wix/stores_inventory-items-v-3": "1.0.
|
|
30
|
+
"@wix/stores_inventory-items-v-3": "1.0.39",
|
|
31
31
|
"@wix/stores_products": "1.0.93",
|
|
32
32
|
"@wix/stores_products-v-3": "1.0.84",
|
|
33
33
|
"@wix/stores_ribbons-v-3": "1.0.26",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"fqdn": ""
|
|
59
59
|
}
|
|
60
60
|
},
|
|
61
|
-
"falconPackageHash": "
|
|
61
|
+
"falconPackageHash": "73301190ad6773d7dc78dbb983dec1bcc0c7acf9a832f9723ffdbc87"
|
|
62
62
|
}
|
|
@@ -9896,58 +9896,6 @@ interface InventoryItemsQueryResult extends QueryCursorResult$3 {
|
|
|
9896
9896
|
prev: () => Promise<InventoryItemsQueryResult>;
|
|
9897
9897
|
}
|
|
9898
9898
|
interface InventoryItemsQueryBuilder {
|
|
9899
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
9900
|
-
* @param value - Value to compare against.
|
|
9901
|
-
* @documentationMaturity preview
|
|
9902
|
-
*/
|
|
9903
|
-
eq: (propertyName: 'inStock' | 'quantity' | '_id' | '_createdDate' | '_updatedDate' | 'variantId' | 'locationId' | 'productId' | 'preorderInfo.enabled', value: any) => InventoryItemsQueryBuilder;
|
|
9904
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
9905
|
-
* @param value - Value to compare against.
|
|
9906
|
-
* @documentationMaturity preview
|
|
9907
|
-
*/
|
|
9908
|
-
ne: (propertyName: 'inStock' | 'quantity' | '_id' | '_createdDate' | '_updatedDate' | 'variantId' | 'locationId' | 'productId' | 'preorderInfo.enabled', value: any) => InventoryItemsQueryBuilder;
|
|
9909
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
9910
|
-
* @param value - Value to compare against.
|
|
9911
|
-
* @documentationMaturity preview
|
|
9912
|
-
*/
|
|
9913
|
-
ge: (propertyName: 'quantity' | '_createdDate' | '_updatedDate', value: any) => InventoryItemsQueryBuilder;
|
|
9914
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
9915
|
-
* @param value - Value to compare against.
|
|
9916
|
-
* @documentationMaturity preview
|
|
9917
|
-
*/
|
|
9918
|
-
gt: (propertyName: 'quantity' | '_createdDate' | '_updatedDate', value: any) => InventoryItemsQueryBuilder;
|
|
9919
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
9920
|
-
* @param value - Value to compare against.
|
|
9921
|
-
* @documentationMaturity preview
|
|
9922
|
-
*/
|
|
9923
|
-
le: (propertyName: 'quantity' | '_createdDate' | '_updatedDate', value: any) => InventoryItemsQueryBuilder;
|
|
9924
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
9925
|
-
* @param value - Value to compare against.
|
|
9926
|
-
* @documentationMaturity preview
|
|
9927
|
-
*/
|
|
9928
|
-
lt: (propertyName: 'quantity' | '_createdDate' | '_updatedDate', value: any) => InventoryItemsQueryBuilder;
|
|
9929
|
-
/** @param propertyName - Property whose value is compared with `string`.
|
|
9930
|
-
* @param string - String to compare against. Case-insensitive.
|
|
9931
|
-
* @documentationMaturity preview
|
|
9932
|
-
*/
|
|
9933
|
-
startsWith: (propertyName: '_id' | 'variantId' | 'locationId' | 'productId', value: string) => InventoryItemsQueryBuilder;
|
|
9934
|
-
/** @param propertyName - Property whose value is compared with `values`.
|
|
9935
|
-
* @param values - List of values to compare against.
|
|
9936
|
-
* @documentationMaturity preview
|
|
9937
|
-
*/
|
|
9938
|
-
hasSome: (propertyName: 'inStock' | 'quantity' | '_id' | '_createdDate' | '_updatedDate' | 'variantId' | 'locationId' | 'productId' | 'preorderInfo.enabled', value: any[]) => InventoryItemsQueryBuilder;
|
|
9939
|
-
/** @documentationMaturity preview */
|
|
9940
|
-
in: (propertyName: 'inStock' | 'quantity' | '_id' | '_createdDate' | '_updatedDate' | 'variantId' | 'locationId' | 'productId' | 'preorderInfo.enabled', value: any) => InventoryItemsQueryBuilder;
|
|
9941
|
-
/** @documentationMaturity preview */
|
|
9942
|
-
exists: (propertyName: 'inStock' | 'quantity' | '_id' | '_createdDate' | '_updatedDate' | 'variantId' | 'locationId' | 'productId' | 'preorderInfo.enabled', value: boolean) => InventoryItemsQueryBuilder;
|
|
9943
|
-
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
9944
|
-
* @documentationMaturity preview
|
|
9945
|
-
*/
|
|
9946
|
-
ascending: (...propertyNames: Array<'inStock' | 'quantity' | '_createdDate' | '_updatedDate' | 'preorderInfo.enabled'>) => InventoryItemsQueryBuilder;
|
|
9947
|
-
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
9948
|
-
* @documentationMaturity preview
|
|
9949
|
-
*/
|
|
9950
|
-
descending: (...propertyNames: Array<'inStock' | 'quantity' | '_createdDate' | '_updatedDate' | 'preorderInfo.enabled'>) => InventoryItemsQueryBuilder;
|
|
9951
9899
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
9952
9900
|
* @documentationMaturity preview
|
|
9953
9901
|
*/
|
|
@@ -9896,58 +9896,6 @@ interface InventoryItemsQueryResult extends QueryCursorResult$3 {
|
|
|
9896
9896
|
prev: () => Promise<InventoryItemsQueryResult>;
|
|
9897
9897
|
}
|
|
9898
9898
|
interface InventoryItemsQueryBuilder {
|
|
9899
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
9900
|
-
* @param value - Value to compare against.
|
|
9901
|
-
* @documentationMaturity preview
|
|
9902
|
-
*/
|
|
9903
|
-
eq: (propertyName: 'inStock' | 'quantity' | '_id' | '_createdDate' | '_updatedDate' | 'variantId' | 'locationId' | 'productId' | 'preorderInfo.enabled', value: any) => InventoryItemsQueryBuilder;
|
|
9904
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
9905
|
-
* @param value - Value to compare against.
|
|
9906
|
-
* @documentationMaturity preview
|
|
9907
|
-
*/
|
|
9908
|
-
ne: (propertyName: 'inStock' | 'quantity' | '_id' | '_createdDate' | '_updatedDate' | 'variantId' | 'locationId' | 'productId' | 'preorderInfo.enabled', value: any) => InventoryItemsQueryBuilder;
|
|
9909
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
9910
|
-
* @param value - Value to compare against.
|
|
9911
|
-
* @documentationMaturity preview
|
|
9912
|
-
*/
|
|
9913
|
-
ge: (propertyName: 'quantity' | '_createdDate' | '_updatedDate', value: any) => InventoryItemsQueryBuilder;
|
|
9914
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
9915
|
-
* @param value - Value to compare against.
|
|
9916
|
-
* @documentationMaturity preview
|
|
9917
|
-
*/
|
|
9918
|
-
gt: (propertyName: 'quantity' | '_createdDate' | '_updatedDate', value: any) => InventoryItemsQueryBuilder;
|
|
9919
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
9920
|
-
* @param value - Value to compare against.
|
|
9921
|
-
* @documentationMaturity preview
|
|
9922
|
-
*/
|
|
9923
|
-
le: (propertyName: 'quantity' | '_createdDate' | '_updatedDate', value: any) => InventoryItemsQueryBuilder;
|
|
9924
|
-
/** @param propertyName - Property whose value is compared with `value`.
|
|
9925
|
-
* @param value - Value to compare against.
|
|
9926
|
-
* @documentationMaturity preview
|
|
9927
|
-
*/
|
|
9928
|
-
lt: (propertyName: 'quantity' | '_createdDate' | '_updatedDate', value: any) => InventoryItemsQueryBuilder;
|
|
9929
|
-
/** @param propertyName - Property whose value is compared with `string`.
|
|
9930
|
-
* @param string - String to compare against. Case-insensitive.
|
|
9931
|
-
* @documentationMaturity preview
|
|
9932
|
-
*/
|
|
9933
|
-
startsWith: (propertyName: '_id' | 'variantId' | 'locationId' | 'productId', value: string) => InventoryItemsQueryBuilder;
|
|
9934
|
-
/** @param propertyName - Property whose value is compared with `values`.
|
|
9935
|
-
* @param values - List of values to compare against.
|
|
9936
|
-
* @documentationMaturity preview
|
|
9937
|
-
*/
|
|
9938
|
-
hasSome: (propertyName: 'inStock' | 'quantity' | '_id' | '_createdDate' | '_updatedDate' | 'variantId' | 'locationId' | 'productId' | 'preorderInfo.enabled', value: any[]) => InventoryItemsQueryBuilder;
|
|
9939
|
-
/** @documentationMaturity preview */
|
|
9940
|
-
in: (propertyName: 'inStock' | 'quantity' | '_id' | '_createdDate' | '_updatedDate' | 'variantId' | 'locationId' | 'productId' | 'preorderInfo.enabled', value: any) => InventoryItemsQueryBuilder;
|
|
9941
|
-
/** @documentationMaturity preview */
|
|
9942
|
-
exists: (propertyName: 'inStock' | 'quantity' | '_id' | '_createdDate' | '_updatedDate' | 'variantId' | 'locationId' | 'productId' | 'preorderInfo.enabled', value: boolean) => InventoryItemsQueryBuilder;
|
|
9943
|
-
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
9944
|
-
* @documentationMaturity preview
|
|
9945
|
-
*/
|
|
9946
|
-
ascending: (...propertyNames: Array<'inStock' | 'quantity' | '_createdDate' | '_updatedDate' | 'preorderInfo.enabled'>) => InventoryItemsQueryBuilder;
|
|
9947
|
-
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
9948
|
-
* @documentationMaturity preview
|
|
9949
|
-
*/
|
|
9950
|
-
descending: (...propertyNames: Array<'inStock' | 'quantity' | '_createdDate' | '_updatedDate' | 'preorderInfo.enabled'>) => InventoryItemsQueryBuilder;
|
|
9951
9899
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
9952
9900
|
* @documentationMaturity preview
|
|
9953
9901
|
*/
|