@wix/motion 1.0.10 → 1.0.11
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.
|
@@ -298,28 +298,41 @@ export interface ProductsQueryResult extends QueryCursorResult {
|
|
|
298
298
|
export interface ProductsQueryBuilder {
|
|
299
299
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
300
300
|
* @param value - Value to compare against.
|
|
301
|
+
* @documentationMaturity preview
|
|
301
302
|
*/
|
|
302
303
|
eq: (propertyName: string, value: any) => ProductsQueryBuilder;
|
|
303
304
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
304
305
|
* @param value - Value to compare against.
|
|
306
|
+
* @documentationMaturity preview
|
|
305
307
|
*/
|
|
306
308
|
ne: (propertyName: string, value: any) => ProductsQueryBuilder;
|
|
307
309
|
/** @param propertyName - Property whose value is compared with `string`.
|
|
308
310
|
* @param string - String to compare against. Case-insensitive.
|
|
311
|
+
* @documentationMaturity preview
|
|
309
312
|
*/
|
|
310
313
|
startsWith: (propertyName: string, value: string) => ProductsQueryBuilder;
|
|
311
314
|
/** @param propertyName - Property whose value is compared with `values`.
|
|
312
315
|
* @param values - List of values to compare against.
|
|
316
|
+
* @documentationMaturity preview
|
|
313
317
|
*/
|
|
314
318
|
hasSome: (propertyName: string, value: any[]) => ProductsQueryBuilder;
|
|
319
|
+
/** @documentationMaturity preview */
|
|
315
320
|
in: (propertyName: string, value: any) => ProductsQueryBuilder;
|
|
321
|
+
/** @documentationMaturity preview */
|
|
316
322
|
exists: (propertyName: string, value: boolean) => ProductsQueryBuilder;
|
|
317
|
-
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
323
|
+
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
324
|
+
* @documentationMaturity preview
|
|
325
|
+
*/
|
|
318
326
|
ascending: (...propertyNames: string[]) => ProductsQueryBuilder;
|
|
319
|
-
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
327
|
+
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
328
|
+
* @documentationMaturity preview
|
|
329
|
+
*/
|
|
320
330
|
descending: (...propertyNames: string[]) => ProductsQueryBuilder;
|
|
321
|
-
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
331
|
+
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
332
|
+
* @documentationMaturity preview
|
|
333
|
+
*/
|
|
322
334
|
limit: (limit: number) => ProductsQueryBuilder;
|
|
335
|
+
/** @documentationMaturity preview */
|
|
323
336
|
find: () => Promise<ProductsQueryResult>;
|
|
324
337
|
}
|
|
325
338
|
export {};
|
|
@@ -298,28 +298,41 @@ export interface ProductsQueryResult extends QueryCursorResult {
|
|
|
298
298
|
export interface ProductsQueryBuilder {
|
|
299
299
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
300
300
|
* @param value - Value to compare against.
|
|
301
|
+
* @documentationMaturity preview
|
|
301
302
|
*/
|
|
302
303
|
eq: (propertyName: string, value: any) => ProductsQueryBuilder;
|
|
303
304
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
304
305
|
* @param value - Value to compare against.
|
|
306
|
+
* @documentationMaturity preview
|
|
305
307
|
*/
|
|
306
308
|
ne: (propertyName: string, value: any) => ProductsQueryBuilder;
|
|
307
309
|
/** @param propertyName - Property whose value is compared with `string`.
|
|
308
310
|
* @param string - String to compare against. Case-insensitive.
|
|
311
|
+
* @documentationMaturity preview
|
|
309
312
|
*/
|
|
310
313
|
startsWith: (propertyName: string, value: string) => ProductsQueryBuilder;
|
|
311
314
|
/** @param propertyName - Property whose value is compared with `values`.
|
|
312
315
|
* @param values - List of values to compare against.
|
|
316
|
+
* @documentationMaturity preview
|
|
313
317
|
*/
|
|
314
318
|
hasSome: (propertyName: string, value: any[]) => ProductsQueryBuilder;
|
|
319
|
+
/** @documentationMaturity preview */
|
|
315
320
|
in: (propertyName: string, value: any) => ProductsQueryBuilder;
|
|
321
|
+
/** @documentationMaturity preview */
|
|
316
322
|
exists: (propertyName: string, value: boolean) => ProductsQueryBuilder;
|
|
317
|
-
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
323
|
+
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
324
|
+
* @documentationMaturity preview
|
|
325
|
+
*/
|
|
318
326
|
ascending: (...propertyNames: string[]) => ProductsQueryBuilder;
|
|
319
|
-
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
327
|
+
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
328
|
+
* @documentationMaturity preview
|
|
329
|
+
*/
|
|
320
330
|
descending: (...propertyNames: string[]) => ProductsQueryBuilder;
|
|
321
|
-
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
331
|
+
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
332
|
+
* @documentationMaturity preview
|
|
333
|
+
*/
|
|
322
334
|
limit: (limit: number) => ProductsQueryBuilder;
|
|
335
|
+
/** @documentationMaturity preview */
|
|
323
336
|
find: () => Promise<ProductsQueryResult>;
|
|
324
337
|
}
|
|
325
338
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/motion",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.11",
|
|
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": "4e5591d0f62ab4875ac431c123128114ce611cd05afd5960db4cd774"
|
|
37
37
|
}
|