@wix/auto_sdk_restaurants_operation-groups 1.0.3 → 1.0.4
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/restaurants-v1-operation-group-operation-groups.universal.d.ts +8 -8
- package/build/es/src/restaurants-v1-operation-group-operation-groups.universal.d.ts +8 -8
- package/build/internal/cjs/src/restaurants-v1-operation-group-operation-groups.universal.d.ts +8 -8
- package/build/internal/es/src/restaurants-v1-operation-group-operation-groups.universal.d.ts +8 -8
- package/package.json +2 -2
|
@@ -809,12 +809,12 @@ export interface OperationGroupsQueryBuilder {
|
|
|
809
809
|
* @param value - Value to compare against.
|
|
810
810
|
* @documentationMaturity preview
|
|
811
811
|
*/
|
|
812
|
-
eq: (propertyName: '_id' | '_createdDate' | '_updatedDate', value: any) => OperationGroupsQueryBuilder;
|
|
812
|
+
eq: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name', value: any) => OperationGroupsQueryBuilder;
|
|
813
813
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
814
814
|
* @param value - Value to compare against.
|
|
815
815
|
* @documentationMaturity preview
|
|
816
816
|
*/
|
|
817
|
-
ne: (propertyName: '_id' | '_createdDate' | '_updatedDate', value: any) => OperationGroupsQueryBuilder;
|
|
817
|
+
ne: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name', value: any) => OperationGroupsQueryBuilder;
|
|
818
818
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
819
819
|
* @param value - Value to compare against.
|
|
820
820
|
* @documentationMaturity preview
|
|
@@ -839,24 +839,24 @@ export interface OperationGroupsQueryBuilder {
|
|
|
839
839
|
* @param string - String to compare against. Case-insensitive.
|
|
840
840
|
* @documentationMaturity preview
|
|
841
841
|
*/
|
|
842
|
-
startsWith: (propertyName: '_id', value: string) => OperationGroupsQueryBuilder;
|
|
842
|
+
startsWith: (propertyName: '_id' | 'name', value: string) => OperationGroupsQueryBuilder;
|
|
843
843
|
/** @param propertyName - Property whose value is compared with `values`.
|
|
844
844
|
* @param values - List of values to compare against.
|
|
845
845
|
* @documentationMaturity preview
|
|
846
846
|
*/
|
|
847
|
-
hasSome: (propertyName: '_id' | '_createdDate' | '_updatedDate', value: any[]) => OperationGroupsQueryBuilder;
|
|
847
|
+
hasSome: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name', value: any[]) => OperationGroupsQueryBuilder;
|
|
848
848
|
/** @documentationMaturity preview */
|
|
849
|
-
in: (propertyName: '_id' | '_createdDate' | '_updatedDate', value: any) => OperationGroupsQueryBuilder;
|
|
849
|
+
in: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name', value: any) => OperationGroupsQueryBuilder;
|
|
850
850
|
/** @documentationMaturity preview */
|
|
851
|
-
exists: (propertyName: '_id' | '_createdDate' | '_updatedDate', value: boolean) => OperationGroupsQueryBuilder;
|
|
851
|
+
exists: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name', value: boolean) => OperationGroupsQueryBuilder;
|
|
852
852
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
853
853
|
* @documentationMaturity preview
|
|
854
854
|
*/
|
|
855
|
-
ascending: (...propertyNames: Array<'_id' | '_createdDate' | '_updatedDate'>) => OperationGroupsQueryBuilder;
|
|
855
|
+
ascending: (...propertyNames: Array<'_id' | '_createdDate' | '_updatedDate' | 'name'>) => OperationGroupsQueryBuilder;
|
|
856
856
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
857
857
|
* @documentationMaturity preview
|
|
858
858
|
*/
|
|
859
|
-
descending: (...propertyNames: Array<'_id' | '_createdDate' | '_updatedDate'>) => OperationGroupsQueryBuilder;
|
|
859
|
+
descending: (...propertyNames: Array<'_id' | '_createdDate' | '_updatedDate' | 'name'>) => OperationGroupsQueryBuilder;
|
|
860
860
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
861
861
|
* @documentationMaturity preview
|
|
862
862
|
*/
|
|
@@ -809,12 +809,12 @@ export interface OperationGroupsQueryBuilder {
|
|
|
809
809
|
* @param value - Value to compare against.
|
|
810
810
|
* @documentationMaturity preview
|
|
811
811
|
*/
|
|
812
|
-
eq: (propertyName: '_id' | '_createdDate' | '_updatedDate', value: any) => OperationGroupsQueryBuilder;
|
|
812
|
+
eq: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name', value: any) => OperationGroupsQueryBuilder;
|
|
813
813
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
814
814
|
* @param value - Value to compare against.
|
|
815
815
|
* @documentationMaturity preview
|
|
816
816
|
*/
|
|
817
|
-
ne: (propertyName: '_id' | '_createdDate' | '_updatedDate', value: any) => OperationGroupsQueryBuilder;
|
|
817
|
+
ne: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name', value: any) => OperationGroupsQueryBuilder;
|
|
818
818
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
819
819
|
* @param value - Value to compare against.
|
|
820
820
|
* @documentationMaturity preview
|
|
@@ -839,24 +839,24 @@ export interface OperationGroupsQueryBuilder {
|
|
|
839
839
|
* @param string - String to compare against. Case-insensitive.
|
|
840
840
|
* @documentationMaturity preview
|
|
841
841
|
*/
|
|
842
|
-
startsWith: (propertyName: '_id', value: string) => OperationGroupsQueryBuilder;
|
|
842
|
+
startsWith: (propertyName: '_id' | 'name', value: string) => OperationGroupsQueryBuilder;
|
|
843
843
|
/** @param propertyName - Property whose value is compared with `values`.
|
|
844
844
|
* @param values - List of values to compare against.
|
|
845
845
|
* @documentationMaturity preview
|
|
846
846
|
*/
|
|
847
|
-
hasSome: (propertyName: '_id' | '_createdDate' | '_updatedDate', value: any[]) => OperationGroupsQueryBuilder;
|
|
847
|
+
hasSome: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name', value: any[]) => OperationGroupsQueryBuilder;
|
|
848
848
|
/** @documentationMaturity preview */
|
|
849
|
-
in: (propertyName: '_id' | '_createdDate' | '_updatedDate', value: any) => OperationGroupsQueryBuilder;
|
|
849
|
+
in: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name', value: any) => OperationGroupsQueryBuilder;
|
|
850
850
|
/** @documentationMaturity preview */
|
|
851
|
-
exists: (propertyName: '_id' | '_createdDate' | '_updatedDate', value: boolean) => OperationGroupsQueryBuilder;
|
|
851
|
+
exists: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name', value: boolean) => OperationGroupsQueryBuilder;
|
|
852
852
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
853
853
|
* @documentationMaturity preview
|
|
854
854
|
*/
|
|
855
|
-
ascending: (...propertyNames: Array<'_id' | '_createdDate' | '_updatedDate'>) => OperationGroupsQueryBuilder;
|
|
855
|
+
ascending: (...propertyNames: Array<'_id' | '_createdDate' | '_updatedDate' | 'name'>) => OperationGroupsQueryBuilder;
|
|
856
856
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
857
857
|
* @documentationMaturity preview
|
|
858
858
|
*/
|
|
859
|
-
descending: (...propertyNames: Array<'_id' | '_createdDate' | '_updatedDate'>) => OperationGroupsQueryBuilder;
|
|
859
|
+
descending: (...propertyNames: Array<'_id' | '_createdDate' | '_updatedDate' | 'name'>) => OperationGroupsQueryBuilder;
|
|
860
860
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
861
861
|
* @documentationMaturity preview
|
|
862
862
|
*/
|
package/build/internal/cjs/src/restaurants-v1-operation-group-operation-groups.universal.d.ts
CHANGED
|
@@ -809,12 +809,12 @@ export interface OperationGroupsQueryBuilder {
|
|
|
809
809
|
* @param value - Value to compare against.
|
|
810
810
|
* @documentationMaturity preview
|
|
811
811
|
*/
|
|
812
|
-
eq: (propertyName: '_id' | '_createdDate' | '_updatedDate', value: any) => OperationGroupsQueryBuilder;
|
|
812
|
+
eq: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name', value: any) => OperationGroupsQueryBuilder;
|
|
813
813
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
814
814
|
* @param value - Value to compare against.
|
|
815
815
|
* @documentationMaturity preview
|
|
816
816
|
*/
|
|
817
|
-
ne: (propertyName: '_id' | '_createdDate' | '_updatedDate', value: any) => OperationGroupsQueryBuilder;
|
|
817
|
+
ne: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name', value: any) => OperationGroupsQueryBuilder;
|
|
818
818
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
819
819
|
* @param value - Value to compare against.
|
|
820
820
|
* @documentationMaturity preview
|
|
@@ -839,24 +839,24 @@ export interface OperationGroupsQueryBuilder {
|
|
|
839
839
|
* @param string - String to compare against. Case-insensitive.
|
|
840
840
|
* @documentationMaturity preview
|
|
841
841
|
*/
|
|
842
|
-
startsWith: (propertyName: '_id', value: string) => OperationGroupsQueryBuilder;
|
|
842
|
+
startsWith: (propertyName: '_id' | 'name', value: string) => OperationGroupsQueryBuilder;
|
|
843
843
|
/** @param propertyName - Property whose value is compared with `values`.
|
|
844
844
|
* @param values - List of values to compare against.
|
|
845
845
|
* @documentationMaturity preview
|
|
846
846
|
*/
|
|
847
|
-
hasSome: (propertyName: '_id' | '_createdDate' | '_updatedDate', value: any[]) => OperationGroupsQueryBuilder;
|
|
847
|
+
hasSome: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name', value: any[]) => OperationGroupsQueryBuilder;
|
|
848
848
|
/** @documentationMaturity preview */
|
|
849
|
-
in: (propertyName: '_id' | '_createdDate' | '_updatedDate', value: any) => OperationGroupsQueryBuilder;
|
|
849
|
+
in: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name', value: any) => OperationGroupsQueryBuilder;
|
|
850
850
|
/** @documentationMaturity preview */
|
|
851
|
-
exists: (propertyName: '_id' | '_createdDate' | '_updatedDate', value: boolean) => OperationGroupsQueryBuilder;
|
|
851
|
+
exists: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name', value: boolean) => OperationGroupsQueryBuilder;
|
|
852
852
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
853
853
|
* @documentationMaturity preview
|
|
854
854
|
*/
|
|
855
|
-
ascending: (...propertyNames: Array<'_id' | '_createdDate' | '_updatedDate'>) => OperationGroupsQueryBuilder;
|
|
855
|
+
ascending: (...propertyNames: Array<'_id' | '_createdDate' | '_updatedDate' | 'name'>) => OperationGroupsQueryBuilder;
|
|
856
856
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
857
857
|
* @documentationMaturity preview
|
|
858
858
|
*/
|
|
859
|
-
descending: (...propertyNames: Array<'_id' | '_createdDate' | '_updatedDate'>) => OperationGroupsQueryBuilder;
|
|
859
|
+
descending: (...propertyNames: Array<'_id' | '_createdDate' | '_updatedDate' | 'name'>) => OperationGroupsQueryBuilder;
|
|
860
860
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
861
861
|
* @documentationMaturity preview
|
|
862
862
|
*/
|
package/build/internal/es/src/restaurants-v1-operation-group-operation-groups.universal.d.ts
CHANGED
|
@@ -809,12 +809,12 @@ export interface OperationGroupsQueryBuilder {
|
|
|
809
809
|
* @param value - Value to compare against.
|
|
810
810
|
* @documentationMaturity preview
|
|
811
811
|
*/
|
|
812
|
-
eq: (propertyName: '_id' | '_createdDate' | '_updatedDate', value: any) => OperationGroupsQueryBuilder;
|
|
812
|
+
eq: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name', value: any) => OperationGroupsQueryBuilder;
|
|
813
813
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
814
814
|
* @param value - Value to compare against.
|
|
815
815
|
* @documentationMaturity preview
|
|
816
816
|
*/
|
|
817
|
-
ne: (propertyName: '_id' | '_createdDate' | '_updatedDate', value: any) => OperationGroupsQueryBuilder;
|
|
817
|
+
ne: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name', value: any) => OperationGroupsQueryBuilder;
|
|
818
818
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
819
819
|
* @param value - Value to compare against.
|
|
820
820
|
* @documentationMaturity preview
|
|
@@ -839,24 +839,24 @@ export interface OperationGroupsQueryBuilder {
|
|
|
839
839
|
* @param string - String to compare against. Case-insensitive.
|
|
840
840
|
* @documentationMaturity preview
|
|
841
841
|
*/
|
|
842
|
-
startsWith: (propertyName: '_id', value: string) => OperationGroupsQueryBuilder;
|
|
842
|
+
startsWith: (propertyName: '_id' | 'name', value: string) => OperationGroupsQueryBuilder;
|
|
843
843
|
/** @param propertyName - Property whose value is compared with `values`.
|
|
844
844
|
* @param values - List of values to compare against.
|
|
845
845
|
* @documentationMaturity preview
|
|
846
846
|
*/
|
|
847
|
-
hasSome: (propertyName: '_id' | '_createdDate' | '_updatedDate', value: any[]) => OperationGroupsQueryBuilder;
|
|
847
|
+
hasSome: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name', value: any[]) => OperationGroupsQueryBuilder;
|
|
848
848
|
/** @documentationMaturity preview */
|
|
849
|
-
in: (propertyName: '_id' | '_createdDate' | '_updatedDate', value: any) => OperationGroupsQueryBuilder;
|
|
849
|
+
in: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name', value: any) => OperationGroupsQueryBuilder;
|
|
850
850
|
/** @documentationMaturity preview */
|
|
851
|
-
exists: (propertyName: '_id' | '_createdDate' | '_updatedDate', value: boolean) => OperationGroupsQueryBuilder;
|
|
851
|
+
exists: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name', value: boolean) => OperationGroupsQueryBuilder;
|
|
852
852
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
853
853
|
* @documentationMaturity preview
|
|
854
854
|
*/
|
|
855
|
-
ascending: (...propertyNames: Array<'_id' | '_createdDate' | '_updatedDate'>) => OperationGroupsQueryBuilder;
|
|
855
|
+
ascending: (...propertyNames: Array<'_id' | '_createdDate' | '_updatedDate' | 'name'>) => OperationGroupsQueryBuilder;
|
|
856
856
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
857
857
|
* @documentationMaturity preview
|
|
858
858
|
*/
|
|
859
|
-
descending: (...propertyNames: Array<'_id' | '_createdDate' | '_updatedDate'>) => OperationGroupsQueryBuilder;
|
|
859
|
+
descending: (...propertyNames: Array<'_id' | '_createdDate' | '_updatedDate' | 'name'>) => OperationGroupsQueryBuilder;
|
|
860
860
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
861
861
|
* @documentationMaturity preview
|
|
862
862
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_restaurants_operation-groups",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"fqdn": "wix.restaurants.v1.operation_group"
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
|
-
"falconPackageHash": "
|
|
51
|
+
"falconPackageHash": "1597d22da5109661c524dcf1eec431aed56fe73d097f9cb24b7c1e6c"
|
|
52
52
|
}
|