@wix/auto_sdk_restaurants_menus 1.0.26 → 1.0.28

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.
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { M as Menu, B as BulkCreateMenusOptions, a as BulkCreateMenusResponse, L as ListMenusOptions, b as ListMenusResponse, c as MenusQueryBuilder, U as UpdateMenu, d as MaskedMenu, e as BulkUpdateMenuOptions, f as BulkUpdateMenuResponse, g as UpdateExtendedFieldsOptions, h as UpdateExtendedFieldsResponse, G as GetMenuSiteUrlResponse, Q as QueryMenusSiteUrlOptions, i as QueryMenusSiteUrlResponse, D as DuplicateMenuOptions, j as DuplicateMenuResponse, k as MenuCreatedEnvelope, l as MenuDeletedEnvelope, m as MenuUpdatedEnvelope } from './restaurants-menus-v1-menu-menus.universal-B1THG8Sh.js';
3
- export { ak as ActionEvent, A as App, z as ApplicationError, at as BaseEventMetadata, H as BulkActionMetadata, x as BulkCreateMenuResult, w as BulkCreateMenusRequest, a4 as BulkMenuResult, a3 as BulkUpdateMenuRequest, p as BusinessLocationDetails, ac as CloneMenusRequest, ad as CloneMenusResponse, u as CreateMenuRequest, v as CreateMenuResponse, R as CursorPaging, V as CursorPagingMetadata, Z as CursorQuery, _ as CursorQueryPagingMethodOneOf, X as Cursors, C as CustomTag, a6 as DeleteMenuRequest, a7 as DeleteMenuResponse, s as DeleteOrphanSections, ae as DomainEvent, af as DomainEventBodyOneOf, as as DuplicateMenuRequest, al as Empty, ag as EntityCreatedEvent, aj as EntityDeletedEvent, ai as EntityUpdatedEvent, au as EventMetadata, E as ExtendedFields, F as File, J as GetMenuRequest, N as GetMenuResponse, ap as GetMenuSiteUrlRequest, an as IdentificationData, ao as IdentificationDataIdOneOf, I as InvalidateCache, q as InvalidateCacheGetByOneOf, y as ItemMetadata, K as Keyword, O as ListMenusRequest, aq as MenuSiteUrl, t as MenusDataCloningCompleted, av as MenusQueryResult, am as MessageEnvelope, P as Page, Y as QueryMenusRequest, a0 as QueryMenusResponse, ar as QueryMenusSiteUrlRequest, ah as RestoreInfo, a8 as RunMenusMultiLocationMigrationRequest, a9 as RunMenusMultiLocationMigrationResponse, n as SeoSchema, o as Settings, S as SortOrder, $ as Sorting, T as Tag, r as URI, aa as UpdateBusinessLocationIdRequest, ab as UpdateBusinessLocationIdResponse, a5 as UpdateExtendedFieldsRequest, a1 as UpdateMenuRequest, a2 as UpdateMenuResponse, W as WebhookIdentityType } from './restaurants-menus-v1-menu-menus.universal-B1THG8Sh.js';
2
+ import { Menu, BulkCreateMenusOptions, BulkCreateMenusResponse, ListMenusOptions, ListMenusResponse, MenusQueryBuilder, UpdateMenu, MaskedMenu, BulkUpdateMenuOptions, BulkUpdateMenuResponse, UpdateExtendedFieldsOptions, UpdateExtendedFieldsResponse, GetMenuSiteUrlResponse, QueryMenusSiteUrlOptions, QueryMenusSiteUrlResponse, DuplicateMenuOptions, DuplicateMenuResponse, MenuCreatedEnvelope, MenuDeletedEnvelope, MenuUpdatedEnvelope } from './index.typings.js';
3
+ export { ActionEvent, App, ApplicationError, BaseEventMetadata, BulkActionMetadata, BulkCreateMenuResult, BulkCreateMenusRequest, BulkMenuResult, BulkUpdateMenuRequest, BusinessLocationDetails, CloneMenusRequest, CloneMenusResponse, CreateMenuRequest, CreateMenuResponse, CursorPaging, CursorPagingMetadata, CursorQuery, CursorQueryPagingMethodOneOf, Cursors, CustomTag, DeleteMenuRequest, DeleteMenuResponse, DeleteOrphanSections, DomainEvent, DomainEventBodyOneOf, DuplicateMenuRequest, Empty, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, EventMetadata, ExtendedFields, File, GetMenuRequest, GetMenuResponse, GetMenuSiteUrlRequest, IdentificationData, IdentificationDataIdOneOf, InvalidateCache, InvalidateCacheGetByOneOf, ItemMetadata, Keyword, ListMenusRequest, MenuSiteUrl, MenusDataCloningCompleted, MenusQueryResult, MessageEnvelope, Page, QueryMenusRequest, QueryMenusResponse, QueryMenusSiteUrlRequest, RestoreInfo, RunMenusMultiLocationMigrationRequest, RunMenusMultiLocationMigrationResponse, SeoSchema, Settings, SortOrder, Sorting, Tag, URI, UpdateBusinessLocationIdRequest, UpdateBusinessLocationIdResponse, UpdateExtendedFieldsRequest, UpdateMenuRequest, UpdateMenuResponse, WebhookIdentityType } from './index.typings.js';
4
4
 
5
5
  declare function createMenu$1(httpClient: HttpClient): CreateMenuSignature;
6
6
  interface CreateMenuSignature {
@@ -1,3 +1,5 @@
1
+ import { NonNullablePaths } from '@wix/sdk-types';
2
+
1
3
  interface Menu {
2
4
  /**
3
5
  * Menu ID.
@@ -760,17 +762,109 @@ interface MenuCreatedEnvelope {
760
762
  entity: Menu;
761
763
  metadata: EventMetadata;
762
764
  }
765
+ /** @permissionScope Manage Restaurants - all permissions
766
+ * @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
767
+ * @permissionId RESTAURANTS.MENU_READ
768
+ * @webhook
769
+ * @eventType wix.restaurants.menus.v1.menu_created
770
+ * @serviceIdentifier com.wixpress.restaurants.menus_menu.v1.RestaurantsMenusMenu
771
+ * @slug created
772
+ * @documentationMaturity preview
773
+ */
774
+ declare function onMenuCreated(handler: (event: MenuCreatedEnvelope) => void | Promise<void>): void;
763
775
  interface MenuDeletedEnvelope {
764
776
  metadata: EventMetadata;
765
777
  }
778
+ /**
779
+ * Triggered when a menu is deleted.
780
+ * @permissionScope Manage Restaurants - all permissions
781
+ * @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
782
+ * @permissionId RESTAURANTS.MENU_READ
783
+ * @webhook
784
+ * @eventType wix.restaurants.menus.v1.menu_deleted
785
+ * @serviceIdentifier com.wixpress.restaurants.menus_menu.v1.RestaurantsMenusMenu
786
+ * @slug deleted
787
+ * @documentationMaturity preview
788
+ */
789
+ declare function onMenuDeleted(handler: (event: MenuDeletedEnvelope) => void | Promise<void>): void;
766
790
  interface MenuUpdatedEnvelope {
767
791
  entity: Menu;
768
792
  metadata: EventMetadata;
769
793
  }
794
+ /** @permissionScope Manage Restaurants - all permissions
795
+ * @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
796
+ * @permissionId RESTAURANTS.MENU_READ
797
+ * @webhook
798
+ * @eventType wix.restaurants.menus.v1.menu_updated
799
+ * @slug updated
800
+ * @documentationMaturity preview
801
+ */
802
+ declare function onMenuUpdated(handler: (event: MenuUpdatedEnvelope) => void | Promise<void>): void;
803
+ type MenuNonNullablePaths = `name` | `sectionIds` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain`;
804
+ /**
805
+ * > **Note:** The Menus API only works with the Wix Restaurants Menus (New) app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
806
+ *
807
+ * Creates a menu.
808
+ *
809
+ * To create multiple menus at once, use [Bulk Create Menus](https://dev.wix.com/docs/rest/business-solutions/restaurants/menus/menu/bulk-create-menus).
810
+ * @param menu - Menu details.
811
+ * @public
812
+ * @documentationMaturity preview
813
+ * @requiredField menu
814
+ * @permissionId RESTAURANTS.MENU_CREATE
815
+ * @applicableIdentity APP
816
+ * @returns Menu.
817
+ * @fqn com.wixpress.restaurants.menus_menu.v1.RestaurantsMenusMenu.CreateMenu
818
+ */
819
+ declare function createMenu(menu: Menu): Promise<NonNullablePaths<Menu, MenuNonNullablePaths>>;
820
+ /**
821
+ * > **Note:** The Menu API only works with the Wix Restaurants Menus (New) app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
822
+ *
823
+ * Creates multiple menus at once.
824
+ * @param menus - Menu details.
825
+ * @public
826
+ * @documentationMaturity preview
827
+ * @requiredField menus
828
+ * @permissionId RESTAURANTS.MENU_CREATE
829
+ * @applicableIdentity APP
830
+ * @fqn com.wixpress.restaurants.menus_menu.v1.RestaurantsMenusMenu.BulkCreateMenus
831
+ */
832
+ declare function bulkCreateMenus(menus: Menu[], options?: BulkCreateMenusOptions): Promise<NonNullablePaths<BulkCreateMenusResponse, `results` | `results.${number}.menuMetadata.originalIndex` | `results.${number}.menuMetadata.success` | `results.${number}.menuMetadata.error.code` | `results.${number}.menuMetadata.error.description` | {
833
+ [P in MenuNonNullablePaths]: `results.${number}.menu.${P}`;
834
+ }[MenuNonNullablePaths] | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`>>;
770
835
  interface BulkCreateMenusOptions {
771
836
  /** Whether to receive the created menus in the response. */
772
837
  returnEntity?: boolean;
773
838
  }
839
+ /**
840
+ * > **Note:** The Menu API only works with the Wix Restaurants Menus (New) app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
841
+ *
842
+ * Retrieves a menu by ID.
843
+ * @param menuId - Menu ID.
844
+ * @public
845
+ * @documentationMaturity preview
846
+ * @requiredField menuId
847
+ * @permissionId RESTAURANTS.MENU_READ
848
+ * @applicableIdentity APP
849
+ * @applicableIdentity VISITOR
850
+ * @returns Menu.
851
+ * @fqn com.wixpress.restaurants.menus_menu.v1.RestaurantsMenusMenu.GetMenu
852
+ */
853
+ declare function getMenu(menuId: string): Promise<NonNullablePaths<Menu, MenuNonNullablePaths>>;
854
+ /**
855
+ * > **Note:** The Menu API only works with the Wix Restaurants Menus (New) app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
856
+ *
857
+ * Retrieves a list of up to 500 menus.
858
+ * @public
859
+ * @documentationMaturity preview
860
+ * @permissionId RESTAURANTS.MENU_READ
861
+ * @applicableIdentity APP
862
+ * @applicableIdentity VISITOR
863
+ * @fqn com.wixpress.restaurants.menus_menu.v1.RestaurantsMenusMenu.ListMenus
864
+ */
865
+ declare function listMenus(options?: ListMenusOptions): Promise<NonNullablePaths<ListMenusResponse, {
866
+ [P in MenuNonNullablePaths]: `menus.${number}.${P}`;
867
+ }[MenuNonNullablePaths]>>;
774
868
  interface ListMenusOptions {
775
869
  /**
776
870
  * Menu IDs.
@@ -783,6 +877,28 @@ interface ListMenusOptions {
783
877
  /** Whether to return only menus that are visible to site visitors. */
784
878
  onlyVisible?: boolean | null;
785
879
  }
880
+ /**
881
+ * Creates a query to retrieve a list of menus.
882
+ *
883
+ * The `queryMenus()` function builds a query to retrieve a list of menus and returns a `MenusQueryBuilder` object.
884
+ *
885
+ * The returned object contains the query definition, which is used to run the query using the [`find()`](/menus/menus-query-builder/find) function.
886
+ *
887
+ * You can refine the query by chaining `MenusQueryBuilder` functions onto the query. `MenusQueryBuilder` functions enable you to filter, sort, and control the results that `queryMenus()` returns.
888
+ *
889
+ * `queryMenus()` runs with the following `MenusQueryBuilder` defaults, which you can override:
890
+ *
891
+ * * [`limit(100)`](/menus/menus-query-builder/limit)
892
+ *
893
+ * The following `MenusQueryBuilder` functions are supported for `queryMenus()`. For a full description of the menu object, see the object returned for the [`items`](/menus/menus-query-result/items) property in `MenusQueryResult`.
894
+ * @public
895
+ * @documentationMaturity preview
896
+ * @permissionId RESTAURANTS.MENU_READ
897
+ * @applicableIdentity APP
898
+ * @applicableIdentity VISITOR
899
+ * @fqn com.wixpress.restaurants.menus_menu.v1.RestaurantsMenusMenu.QueryMenus
900
+ */
901
+ declare function queryMenus(): MenusQueryBuilder;
786
902
  interface QueryCursorResult {
787
903
  cursors: Cursors;
788
904
  hasNext: () => boolean;
@@ -858,6 +974,26 @@ interface MenusQueryBuilder {
858
974
  /** @documentationMaturity preview */
859
975
  find: () => Promise<MenusQueryResult>;
860
976
  }
977
+ /**
978
+ * > **Note:** The Menu API only works with the Wix Restaurants Menus (New) app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
979
+ *
980
+ * Updates a menu.
981
+ *
982
+ * To update multiple menus at once, use [Bulk Update Menu](https://dev.wix.com/docs/rest/business-solutions/restaurants/menus/menu/bulk-update-menu).
983
+ *
984
+ * Each time a menu is updated, its revision increments by 1. The existing revision must be included when updating a menu. This ensures you're working with the latest menu information, and it prevents unintended overwrites.
985
+ * @param _id - Menu ID.
986
+ * @public
987
+ * @documentationMaturity preview
988
+ * @requiredField _id
989
+ * @requiredField menu
990
+ * @requiredField menu.revision
991
+ * @permissionId RESTAURANTS.MENU_UPDATE
992
+ * @applicableIdentity APP
993
+ * @returns Updated menu.
994
+ * @fqn com.wixpress.restaurants.menus_menu.v1.RestaurantsMenusMenu.UpdateMenu
995
+ */
996
+ declare function updateMenu(_id: string, menu: NonNullablePaths<UpdateMenu, `revision`>): Promise<NonNullablePaths<Menu, MenuNonNullablePaths>>;
861
997
  interface UpdateMenu {
862
998
  /**
863
999
  * Menu ID.
@@ -916,18 +1052,96 @@ interface UpdateMenu {
916
1052
  */
917
1053
  businessLocationId?: string | null;
918
1054
  }
1055
+ /**
1056
+ * > **Note:** The Menu API only works with the Wix Restaurants Menus (New) app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
1057
+ *
1058
+ * Updates multiple menus at once.
1059
+ *
1060
+ * Each time a menu is updated, its revision increments by 1. The existing revision must be included when updating the menu. This ensures you're working with the latest menu information, and it prevents unintended overwrites.
1061
+ * @param menus - Menus to update.
1062
+ * @public
1063
+ * @documentationMaturity preview
1064
+ * @requiredField menus
1065
+ * @requiredField menus.menu._id
1066
+ * @requiredField menus.menu.revision
1067
+ * @permissionId RESTAURANTS.MENU_UPDATE
1068
+ * @applicableIdentity APP
1069
+ * @fqn com.wixpress.restaurants.menus_menu.v1.RestaurantsMenusMenu.BulkUpdateMenu
1070
+ */
1071
+ declare function bulkUpdateMenu(menus: NonNullablePaths<MaskedMenu, `menu._id` | `menu.revision`>[], options?: BulkUpdateMenuOptions): Promise<NonNullablePaths<BulkUpdateMenuResponse, `results` | `results.${number}.menuMetadata.originalIndex` | `results.${number}.menuMetadata.success` | `results.${number}.menuMetadata.error.code` | `results.${number}.menuMetadata.error.description` | {
1072
+ [P in MenuNonNullablePaths]: `results.${number}.menu.${P}`;
1073
+ }[MenuNonNullablePaths] | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`>>;
919
1074
  interface BulkUpdateMenuOptions {
920
1075
  /** Whether to receive the entity in the response. */
921
1076
  returnEntity?: boolean;
922
1077
  }
1078
+ /**
1079
+ * > **Note:** The Menu API only works with the Wix Restaurants Menus (New) app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
1080
+ *
1081
+ * Updates only the `extendedFields` field.
1082
+ * @param _id - ID of the entity to update.
1083
+ * @param namespace - Identifier for the app whose extended fields are being updated.
1084
+ * @public
1085
+ * @documentationMaturity preview
1086
+ * @requiredField _id
1087
+ * @requiredField namespace
1088
+ * @requiredField options
1089
+ * @requiredField options.namespaceData
1090
+ * @fqn com.wixpress.restaurants.menus_menu.v1.RestaurantsMenusMenu.UpdateExtendedFields
1091
+ */
1092
+ declare function updateExtendedFields(_id: string, namespace: string, options: NonNullablePaths<UpdateExtendedFieldsOptions, `namespaceData`>): Promise<NonNullablePaths<UpdateExtendedFieldsResponse, `namespace`>>;
923
1093
  interface UpdateExtendedFieldsOptions {
924
1094
  /** Data to update. Structured according to the [schema](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields#json-schema-for-extended-fields) defined when the extended fields were configured. */
925
1095
  namespaceData: Record<string, any> | null;
926
1096
  }
1097
+ /**
1098
+ * > **Note:** The Menu API only works with the Wix Restaurants Menus (New) app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
1099
+ *
1100
+ * Deletes a menu.
1101
+ * @param menuId - Menu ID.
1102
+ * @public
1103
+ * @documentationMaturity preview
1104
+ * @requiredField menuId
1105
+ * @permissionId RESTAURANTS.MENU_DELETE
1106
+ * @applicableIdentity APP
1107
+ * @fqn com.wixpress.restaurants.menus_menu.v1.RestaurantsMenusMenu.DeleteMenu
1108
+ */
1109
+ declare function deleteMenu(menuId: string): Promise<void>;
1110
+ /**
1111
+ * Get menu details and path URL by menu ID.
1112
+ * @param _id - Menu ID.
1113
+ * @public
1114
+ * @documentationMaturity preview
1115
+ * @requiredField _id
1116
+ * @permissionId RESTAURANTS.MENU_READ
1117
+ * @applicableIdentity APP
1118
+ * @applicableIdentity VISITOR
1119
+ * @fqn com.wixpress.restaurants.menus_menu.v1.restaurants_menus_site_url.RestaurantsMenusSiteUrl.GetMenuSiteUrl
1120
+ */
1121
+ declare function getMenuSiteUrl(_id: string): Promise<NonNullablePaths<GetMenuSiteUrlResponse, `menuSiteUrl.path`>>;
1122
+ /**
1123
+ * Query menu details and path URL
1124
+ * @public
1125
+ * @documentationMaturity preview
1126
+ * @permissionId RESTAURANTS.MENU_READ
1127
+ * @applicableIdentity APP
1128
+ * @applicableIdentity VISITOR
1129
+ * @fqn com.wixpress.restaurants.menus_menu.v1.restaurants_menus_site_url.RestaurantsMenusSiteUrl.QueryMenusSiteUrl
1130
+ */
1131
+ declare function queryMenusSiteUrl(options?: QueryMenusSiteUrlOptions): Promise<NonNullablePaths<QueryMenusSiteUrlResponse, `menuSiteUrls` | `menuSiteUrls.${number}.path`>>;
927
1132
  interface QueryMenusSiteUrlOptions {
928
1133
  /** Query options */
929
1134
  query?: CursorQuery;
930
1135
  }
1136
+ /** @param _id - Menu id to be duplicated.
1137
+ * @public
1138
+ * @documentationMaturity preview
1139
+ * @requiredField _id
1140
+ * @permissionId RESTAURANTS.MENU_CREATE
1141
+ * @applicableIdentity APP
1142
+ * @fqn com.wixpress.restaurants.menus_menu.v1.restaurants_duplicate_menu.RestaurantsDuplicateMenu.DuplicateMenu
1143
+ */
1144
+ declare function duplicateMenu(_id: string, options?: DuplicateMenuOptions): Promise<NonNullablePaths<DuplicateMenuResponse, `menuIds`>>;
931
1145
  interface DuplicateMenuOptions {
932
1146
  /**
933
1147
  * Business location ids to duplicate the menu to.
@@ -944,4 +1158,4 @@ interface DuplicateMenuOptions {
944
1158
  menuName?: string | null;
945
1159
  }
946
1160
 
947
- export { type Sorting as $, type App as A, type BulkCreateMenusOptions as B, type CustomTag as C, type DuplicateMenuOptions as D, type ExtendedFields as E, type File as F, type GetMenuSiteUrlResponse as G, type BulkActionMetadata as H, type InvalidateCache as I, type GetMenuRequest as J, type Keyword as K, type ListMenusOptions as L, type Menu as M, type GetMenuResponse as N, type ListMenusRequest as O, type Page as P, type QueryMenusSiteUrlOptions as Q, type CursorPaging as R, SortOrder as S, type Tag as T, type UpdateMenu as U, type CursorPagingMetadata as V, WebhookIdentityType as W, type Cursors as X, type QueryMenusRequest as Y, type CursorQuery as Z, type CursorQueryPagingMethodOneOf as _, type BulkCreateMenusResponse as a, type QueryMenusResponse as a0, type UpdateMenuRequest as a1, type UpdateMenuResponse as a2, type BulkUpdateMenuRequest as a3, type BulkMenuResult as a4, type UpdateExtendedFieldsRequest as a5, type DeleteMenuRequest as a6, type DeleteMenuResponse as a7, type RunMenusMultiLocationMigrationRequest as a8, type RunMenusMultiLocationMigrationResponse as a9, type UpdateBusinessLocationIdRequest as aa, type UpdateBusinessLocationIdResponse as ab, type CloneMenusRequest as ac, type CloneMenusResponse as ad, type DomainEvent as ae, type DomainEventBodyOneOf as af, type EntityCreatedEvent as ag, type RestoreInfo as ah, type EntityUpdatedEvent as ai, type EntityDeletedEvent as aj, type ActionEvent as ak, type Empty as al, type MessageEnvelope as am, type IdentificationData as an, type IdentificationDataIdOneOf as ao, type GetMenuSiteUrlRequest as ap, type MenuSiteUrl as aq, type QueryMenusSiteUrlRequest as ar, type DuplicateMenuRequest as as, type BaseEventMetadata as at, type EventMetadata as au, type MenusQueryResult as av, type ListMenusResponse as b, type MenusQueryBuilder as c, type MaskedMenu as d, type BulkUpdateMenuOptions as e, type BulkUpdateMenuResponse as f, type UpdateExtendedFieldsOptions as g, type UpdateExtendedFieldsResponse as h, type QueryMenusSiteUrlResponse as i, type DuplicateMenuResponse as j, type MenuCreatedEnvelope as k, type MenuDeletedEnvelope as l, type MenuUpdatedEnvelope as m, type SeoSchema as n, type Settings as o, type BusinessLocationDetails as p, type InvalidateCacheGetByOneOf as q, type URI as r, type DeleteOrphanSections as s, type MenusDataCloningCompleted as t, type CreateMenuRequest as u, type CreateMenuResponse as v, type BulkCreateMenusRequest as w, type BulkCreateMenuResult as x, type ItemMetadata as y, type ApplicationError as z };
1161
+ export { type ActionEvent, type App, type ApplicationError, type BaseEventMetadata, type BulkActionMetadata, type BulkCreateMenuResult, type BulkCreateMenusOptions, type BulkCreateMenusRequest, type BulkCreateMenusResponse, type BulkMenuResult, type BulkUpdateMenuOptions, type BulkUpdateMenuRequest, type BulkUpdateMenuResponse, type BusinessLocationDetails, type CloneMenusRequest, type CloneMenusResponse, type CreateMenuRequest, type CreateMenuResponse, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type CustomTag, type DeleteMenuRequest, type DeleteMenuResponse, type DeleteOrphanSections, type DomainEvent, type DomainEventBodyOneOf, type DuplicateMenuOptions, type DuplicateMenuRequest, type DuplicateMenuResponse, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventMetadata, type ExtendedFields, type File, type GetMenuRequest, type GetMenuResponse, type GetMenuSiteUrlRequest, type GetMenuSiteUrlResponse, type IdentificationData, type IdentificationDataIdOneOf, type InvalidateCache, type InvalidateCacheGetByOneOf, type ItemMetadata, type Keyword, type ListMenusOptions, type ListMenusRequest, type ListMenusResponse, type MaskedMenu, type Menu, type MenuCreatedEnvelope, type MenuDeletedEnvelope, type MenuSiteUrl, type MenuUpdatedEnvelope, type MenusDataCloningCompleted, type MenusQueryBuilder, type MenusQueryResult, type MessageEnvelope, type Page, type QueryMenusRequest, type QueryMenusResponse, type QueryMenusSiteUrlOptions, type QueryMenusSiteUrlRequest, type QueryMenusSiteUrlResponse, type RestoreInfo, type RunMenusMultiLocationMigrationRequest, type RunMenusMultiLocationMigrationResponse, type SeoSchema, type Settings, SortOrder, type SortOrderWithLiterals, type Sorting, type Tag, type URI, type UpdateBusinessLocationIdRequest, type UpdateBusinessLocationIdResponse, type UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse, type UpdateMenu, type UpdateMenuRequest, type UpdateMenuResponse, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, bulkCreateMenus, bulkUpdateMenu, createMenu, deleteMenu, duplicateMenu, getMenu, getMenuSiteUrl, listMenus, onMenuCreated, onMenuDeleted, onMenuUpdated, queryMenus, queryMenusSiteUrl, updateExtendedFields, updateMenu };