@wix/auto_sdk_restaurants_item-modifier-groups 1.0.61 → 1.0.63
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/index.d.ts +1 -1
- package/build/cjs/index.js +9 -9
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +8 -4
- package/build/cjs/index.typings.js +9 -9
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +7 -5
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +8 -4
- package/build/es/index.typings.mjs +7 -5
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +9 -9
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +8 -4
- package/build/internal/cjs/index.typings.js +9 -9
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +7 -5
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +8 -4
- package/build/internal/es/index.typings.mjs +7 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +4 -4
package/build/es/index.mjs
CHANGED
|
@@ -645,7 +645,11 @@ async function typedQueryModifierGroups(query) {
|
|
|
645
645
|
throw transformedError;
|
|
646
646
|
}
|
|
647
647
|
}
|
|
648
|
-
var
|
|
648
|
+
var utils = {
|
|
649
|
+
query: {
|
|
650
|
+
...createQueryUtils()
|
|
651
|
+
}
|
|
652
|
+
};
|
|
649
653
|
async function countModifierGroups2(options) {
|
|
650
654
|
const { httpClient, sideEffects } = arguments[1];
|
|
651
655
|
const payload = renameKeysFromSDKRequestToRESTRequest({
|
|
@@ -984,9 +988,6 @@ var onItemModifierGroupUpdated2 = createEventModule(
|
|
|
984
988
|
onItemModifierGroupUpdated
|
|
985
989
|
);
|
|
986
990
|
export {
|
|
987
|
-
Filter,
|
|
988
|
-
QueryBuilder,
|
|
989
|
-
Sort,
|
|
990
991
|
SortOrder,
|
|
991
992
|
WebhookIdentityType,
|
|
992
993
|
bulkCreateModifierGroups4 as bulkCreateModifierGroups,
|
|
@@ -1001,6 +1002,7 @@ export {
|
|
|
1001
1002
|
onItemModifierGroupDeleted2 as onItemModifierGroupDeleted,
|
|
1002
1003
|
onItemModifierGroupUpdated2 as onItemModifierGroupUpdated,
|
|
1003
1004
|
queryModifierGroups4 as queryModifierGroups,
|
|
1004
|
-
updateModifierGroup4 as updateModifierGroup
|
|
1005
|
+
updateModifierGroup4 as updateModifierGroup,
|
|
1006
|
+
utils
|
|
1005
1007
|
};
|
|
1006
1008
|
//# sourceMappingURL=index.mjs.map
|