import { GetMenuOrderingSettingsRequest as GetMenuOrderingSettingsRequest$1, GetMenuOrderingSettingsResponse as GetMenuOrderingSettingsResponse$1, UpsertMenuOrderingSettingsByMenuIdRequest as UpsertMenuOrderingSettingsByMenuIdRequest$1, UpsertMenuOrderingSettingsByMenuIdResponse as UpsertMenuOrderingSettingsByMenuIdResponse$1, UpdateMenuOrderingSettingsRequest as UpdateMenuOrderingSettingsRequest$1, UpdateMenuOrderingSettingsResponse as UpdateMenuOrderingSettingsResponse$1, QueryMenuOrderingSettingsRequest as QueryMenuOrderingSettingsRequest$1, QueryMenuOrderingSettingsResponse as QueryMenuOrderingSettingsResponse$1, BulkUpdateMenuOrderingSettingsRequest as BulkUpdateMenuOrderingSettingsRequest$1, BulkUpdateMenuOrderingSettingsResponse as BulkUpdateMenuOrderingSettingsResponse$1, ListMenusAvailabilityStatusRequest as ListMenusAvailabilityStatusRequest$1, ListMenusAvailabilityStatusResponse as ListMenusAvailabilityStatusResponse$1, UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest$1, UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse$1, BulkUpdateMenuOrderingSettingsTagsRequest as BulkUpdateMenuOrderingSettingsTagsRequest$1, BulkUpdateMenuOrderingSettingsTagsResponse as BulkUpdateMenuOrderingSettingsTagsResponse$1, BulkUpdateMenuOrderingSettingsTagsByFilterRequest as BulkUpdateMenuOrderingSettingsTagsByFilterRequest$1, BulkUpdateMenuOrderingSettingsTagsByFilterResponse as BulkUpdateMenuOrderingSettingsTagsByFilterResponse$1 } from './index.typings.js';
import '@wix/sdk-types';
interface MenuOrderingSettings {
/**
* Menu ordering settings object ID.
* @format GUID
* @readonly
*/
id?: string | null;
/**
* Revision number. Increments by 1 each time the menu ordering settings object is updated. To prevent conflicting changes, the existing revision must be specified when updating a menu ordering settings object.
* @readonly
*/
revision?: string | null;
/**
* Date and time the menu ordering settings object was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format.
* @readonly
*/
createdDate?: Date | null;
/**
* Date and time the menu ordering settings object was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format.
* @readonly
*/
updatedDate?: Date | null;
/**
* ID of the restaurant operation the menu belongs to. (See the Restaurants Operations API for more information.)
* @format GUID
*/
operationId?: string | null;
/**
* ID of the menu these settings apply to.
* @readonly
* @format GUID
*/
menuId?: string | null;
/** Whether online ordering is enabled for the menu. */
onlineOrderingEnabled?: boolean | null;
/** Menu availability settings. */
availability?: Availability;
/**
* Business location ID ([SDK](https://dev.wix.com/docs/sdk/backend-modules/restaurants/wix-restaurants-new/about-business-locations) | [REST](https://dev.wix.com/docs/rest/business-solutions/restaurants/wix-restaurants-new/about-business-locations)) of the menu.
* @format GUID
* @readonly
*/
businessLocationId?: string | null;
/** Extended fields. */
extendedFields?: ExtendedFields;
/** Tags ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/tags/introduction)) used to classify and sort different types of menu ordering settings. */
tags?: Tags;
}
interface Availability extends AvailabilityAvailabilityTypeOptionsOneOf {
/** Settings for availability on a weekly schedule. */
weeklyScheduleOptions?: WeeklyScheduleOptions;
/** Settings for availability within a time range. */
timestampRangesOptions?: TimestampRangesOptions;
/** Availability type. */
type?: AvailabilityTypeWithLiterals;
/**
* Time zone in [Time Zone Database](https://www.iana.org/time-zones) format.
* @readonly
* @maxLength 50
*/
timeZone?: string | null;
}
/** @oneof */
interface AvailabilityAvailabilityTypeOptionsOneOf {
/** Settings for availability on a weekly schedule. */
weeklyScheduleOptions?: WeeklyScheduleOptions;
/** Settings for availability within a time range. */
timestampRangesOptions?: TimestampRangesOptions;
}
declare enum AvailabilityType {
/** Missing type due to an error. */
UNSPECIFIED_AVAILABILITY_OPTION = "UNSPECIFIED_AVAILABILITY_OPTION",
/** Available all the time. */
ALWAYS_AVAILABLE = "ALWAYS_AVAILABLE",
/** Available on specific days and times throughout the week. */
WEEKLY_SCHEDULE = "WEEKLY_SCHEDULE",
/** Available during a specific time range. */
TIMESTAMP_RANGES = "TIMESTAMP_RANGES"
}
/** @enumType */
type AvailabilityTypeWithLiterals = AvailabilityType | 'UNSPECIFIED_AVAILABILITY_OPTION' | 'ALWAYS_AVAILABLE' | 'WEEKLY_SCHEDULE' | 'TIMESTAMP_RANGES';
interface WeeklyScheduleOptions {
/**
* List of available time ranges for specific days of the week.
* @maxSize 7
*/
availableTimes?: DayOfWeekAvailability[];
}
interface DayOfWeekAvailability {
/** The day of week this availability relates to. */
dayOfWeek?: EntitiesDayOfWeekWithLiterals;
/** A list of time ranges during which the fulfillment should be available. */
timeRanges?: TimeOfDayRange[];
}
declare enum EntitiesDayOfWeek {
/** Monday. */
MON = "MON",
/** Tuesday. */
TUE = "TUE",
/** Wednesday. */
WED = "WED",
/** Thursday. */
THU = "THU",
/** Friday. */
FRI = "FRI",
/** Saturday. */
SAT = "SAT",
/** Sunday. */
SUN = "SUN"
}
/** @enumType */
type EntitiesDayOfWeekWithLiterals = EntitiesDayOfWeek | 'MON' | 'TUE' | 'WED' | 'THU' | 'FRI' | 'SAT' | 'SUN';
interface TimeOfDayRange {
/** The start time in time of day representation. */
startTime?: TimeOfDay;
/** The end time in time of day representation. */
endTime?: TimeOfDay;
}
interface TimeOfDay {
/**
* Hours.
* Min: `0`.
* Max: `23`.
*/
hours?: number;
/**
* Minutes.
* Min: `0`.
* Max: `23`.
*/
minutes?: number;
}
interface TimestampRangesOptions {
/**
* List of available time ranges.
* @maxSize 50
*/
ranges?: AvailableRange[];
}
interface AvailableRange {
/** The start time of the availability in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format. */
startTime?: Date | null;
/** The end time of the availability in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format. */
endTime?: Date | null;
}
interface ExtendedFields {
/**
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
* The value of each key is structured according to the schema defined when the extended fields were configured.
*
* You can only access fields for which you have the appropriate permissions.
*
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
*/
namespaces?: Record>;
}
/**
* Common object for tags.
* Should be use as in this example:
* message Foo {
* string id = 1;
* ...
* Tags tags = 5
* }
* example of taggable entity
* {
* id: "123"
* tags: {
* tags: {
* tag_ids:["11","22"]
* },
* private_tags: {
* tag_ids: ["33", "44"]
* }
* }
* }
*/
interface Tags {
/** Tags that require an additional permission in order to access them, normally not given to site members or visitors. */
privateTags?: TagList;
/** Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors. */
tags?: TagList;
}
interface TagList {
/**
* List of tag IDs
* @maxSize 100
* @maxLength 5
*/
tagIds?: string[];
}
interface InvalidateCache extends InvalidateCacheGetByOneOf {
/**
* Invalidate by msId. NOT recommended, as this will invalidate the entire site cache!
* @format GUID
*/
metaSiteId?: string;
/**
* Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache!
* @format GUID
*/
siteId?: string;
/** Invalidate by App */
app?: App;
/** Invalidate by page id */
page?: Page;
/** Invalidate by URI path */
uri?: URI;
/** Invalidate by file (for media files such as PDFs) */
file?: File;
/** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */
customTag?: CustomTag;
/** Invalidate by multiple page ids */
pages?: Pages;
/** Invalidate by multiple URI paths */
uris?: URIs;
/**
* tell us why you're invalidating the cache. You don't need to add your app name
* @maxLength 256
*/
reason?: string | null;
/** Is local DS */
localDc?: boolean;
hardPurge?: boolean;
/**
* Optional caller-provided ID for tracking this invalidation through the system.
* When set, the corresponding CDN purge completion event will include this ID,
* allowing you to confirm when the invalidation has fully propagated.
* Example: generate a UUID, pass it here, and later match it in the CDN purge completion event.
* @maxLength 256
*/
correlationId?: string | null;
}
/** @oneof */
interface InvalidateCacheGetByOneOf {
/**
* Invalidate by msId. NOT recommended, as this will invalidate the entire site cache!
* @format GUID
*/
metaSiteId?: string;
/**
* Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache!
* @format GUID
*/
siteId?: string;
/** Invalidate by App */
app?: App;
/** Invalidate by page id */
page?: Page;
/** Invalidate by URI path */
uri?: URI;
/** Invalidate by file (for media files such as PDFs) */
file?: File;
/** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */
customTag?: CustomTag;
/** Invalidate by multiple page ids */
pages?: Pages;
/** Invalidate by multiple URI paths */
uris?: URIs;
}
interface App {
/**
* The AppDefId
* @minLength 1
*/
appDefId?: string;
/**
* The instance Id
* @format GUID
*/
instanceId?: string;
}
interface Page {
/**
* the msid the page is on
* @format GUID
*/
metaSiteId?: string;
/**
* Invalidate by Page ID
* @minLength 1
*/
pageId?: string;
}
interface URI {
/**
* the msid the URI is on
* @format GUID
*/
metaSiteId?: string;
/**
* URI path to invalidate (e.g. page/my/path) - without leading/trailing slashes
* @minLength 1
*/
uriPath?: string;
}
interface File {
/**
* the msid the file is related to
* @format GUID
*/
metaSiteId?: string;
/**
* Invalidate by filename (for media files such as PDFs)
* @minLength 1
* @maxLength 256
*/
fileName?: string;
}
interface CustomTag {
/**
* the msid the tag is related to
* @format GUID
*/
metaSiteId?: string;
/**
* Tag to invalidate by
* @minLength 1
* @maxLength 256
*/
tag?: string;
}
interface Pages {
/**
* the msid the pages are on
* @format GUID
*/
metaSiteId?: string;
/**
* Invalidate by multiple Page IDs in a single message
* @maxSize 100
* @minLength 1
*/
pageIds?: string[];
}
interface URIs {
/**
* the msid the URIs are on
* @format GUID
*/
metaSiteId?: string;
/**
* URI paths to invalidate (e.g. page/my/path) - without leading/trailing slashes
* @maxSize 100
* @minLength 1
*/
uriPaths?: string[];
}
interface CreateMenuOrderingSettingsRequest {
/** Menu ordering settings entity details. */
menuOrderingSettings?: MenuOrderingSettings;
}
interface CreateMenuOrderingSettingsResponse {
/** The created menu ordering settings entity. */
menuOrderingSettings?: MenuOrderingSettings;
}
interface GetMenuOrderingSettingsRequest {
/**
* ID of the menu ordering settings entity to retrieve.
* @format GUID
*/
menuOrderingSettingsId: string;
}
interface GetMenuOrderingSettingsResponse {
/** The requested menu ordering settings entity. */
menuOrderingSettings?: MenuOrderingSettings;
}
interface UpsertMenuOrderingSettingsByMenuIdRequest {
/** Details of the menu ordering settings entity to be created or updated. */
menuOrderingSettings: MenuOrderingSettings;
}
interface UpsertMenuOrderingSettingsByMenuIdResponse {
/** The created or updated menu ordering settings entity. */
menuOrderingSettings?: MenuOrderingSettings;
}
interface UpdateMenuOrderingSettingsRequest {
/** Details of the menu ordering settings entity to update. */
menuOrderingSettings: MenuOrderingSettings;
}
interface UpdateMenuOrderingSettingsResponse {
/** Updated menu ordering settings entity. */
menuOrderingSettings?: MenuOrderingSettings;
}
interface DeleteMenuOrderingSettingsRequest {
/**
* ID of the menu ordering settings entity to delete.
* @format GUID
*/
menuOrderingSettingsId?: string;
}
interface DeleteMenuOrderingSettingsResponse {
}
interface QueryMenuOrderingSettingsRequest {
/** WQL expression. */
query?: CursorQuery;
}
interface CursorQuery extends CursorQueryPagingMethodOneOf {
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
cursorPaging?: CursorPaging;
/**
* Filter object in the following format:
* `"filter" : {
* "fieldName1": "value1",
* "fieldName2":{"$operator":"value2"}
* }`
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
*/
filter?: Record | null;
/**
* Sort object in the following format:
* `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
* @maxSize 5
*/
sort?: Sorting[];
}
/** @oneof */
interface CursorQueryPagingMethodOneOf {
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
cursorPaging?: CursorPaging;
}
interface Sorting {
/**
* Name of the field to sort by.
* @maxLength 512
*/
fieldName?: string;
/** Sort order. */
order?: SortOrderWithLiterals;
}
declare enum SortOrder {
ASC = "ASC",
DESC = "DESC"
}
/** @enumType */
type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
interface CursorPaging {
/**
* Maximum number of items to return in the results.
* @max 100
*/
limit?: number | null;
/**
* Pointer to the next or previous page in the list of results.
*
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
* Not relevant for the first request.
* @maxLength 16000
*/
cursor?: string | null;
}
interface QueryMenuOrderingSettingsResponse {
/** List of menu ordering settings entities. */
menuOrderingSettings?: MenuOrderingSettings[];
/** Paging metadata */
pagingMetadata?: CursorPagingMetadata;
}
interface CursorPagingMetadata {
/** Number of items returned in the response. */
count?: number | null;
/** Cursor strings that point to the next page, previous page, or both. */
cursors?: Cursors;
/**
* Whether there are more pages to retrieve following the current page.
*
* + `true`: Another page of results can be retrieved.
* + `false`: This is the last page.
*/
hasNext?: boolean | null;
}
interface Cursors {
/**
* Cursor string pointing to the next page in the list of results.
* @maxLength 16000
*/
next?: string | null;
/**
* Cursor pointing to the previous page in the list of results.
* @maxLength 16000
*/
prev?: string | null;
}
interface BulkUpdateMenuOrderingSettingsRequest {
/**
* Menu ordering settings entities to update.
* @minSize 1
* @maxSize 100
*/
menusOrderingSettings: MaskedMenuOrderingSettings[];
/** Whether to receive the entity in the response. */
returnEntity?: boolean;
}
interface MaskedMenuOrderingSettings {
/** Menu ordering settings entities to update. */
menuOrderingSettings?: MenuOrderingSettings;
/** Explicit list of fields to update. */
mask?: string[];
}
interface BulkUpdateMenuOrderingSettingsResponse {
/**
* Results of bulk menu ordering settings entities update.
* @minSize 1
* @maxSize 100
*/
results?: BulkMenuOrderingSettingsResult[];
/** Metadata for the API call. */
bulkActionMetadata?: BulkActionMetadata;
}
interface ItemMetadata {
/** Item ID. Should always be available, unless it's impossible (for example, when failing to create an item). */
id?: string | null;
/** Index of the item within the request array. Allows for correlation between request and response items. */
originalIndex?: number;
/** Whether the requested action was successful for this item. When `false`, the `error` field is populated. */
success?: boolean;
/** Details about the error in case of failure. */
error?: ApplicationError;
}
interface ApplicationError {
/** Error code. */
code?: string;
/** Description of the error. */
description?: string;
/** Data related to the error. */
data?: Record | null;
}
interface BulkMenuOrderingSettingsResult {
/** Metadata for menu update. */
menuOrderingSettingsMetadata?: ItemMetadata;
/** Updated menu ordering settings. Only returned if `returnEntity` is set to `true`. */
menuOrderingSettings?: MenuOrderingSettings;
}
interface BulkActionMetadata {
/** Number of items that were successfully processed. */
totalSuccesses?: number;
/** Number of items that couldn't be processed. */
totalFailures?: number;
/** Number of failures without details because detailed failure threshold was exceeded. */
undetailedFailures?: number;
}
interface ListMenusAvailabilityStatusRequest {
/** The time slot for which to check the availability of menus. */
timeSlot: TimeSlot;
/**
* The ID of the restaurant operation whose menus will be checked. (See the Restaurants Operations API for more information.)
* @format GUID
*/
operationId?: string | null;
/** Cursor paging */
cursorPaging?: CursorPaging;
}
interface TimeSlot {
/** The start time of the time slot in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format. */
startTime?: Date | null;
/** The end time of the time slot in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format. */
endTime?: Date | null;
}
interface ListMenusAvailabilityStatusResponse {
/**
* The retrieved menus' availability statuses.
* @maxSize 100
*/
menusAvailabilityStatus?: MenuAvailabilityStatus[];
/** The metadata of the paginated results. */
pagingMetadata?: CursorPagingMetadata;
}
interface MenuAvailabilityStatus {
/**
* Menu ID.
* @format GUID
*/
menuId?: string;
/** The menu's availability status. */
availabilityStatus?: AvailabilityStatusWithLiterals;
}
declare enum AvailabilityStatus {
/** Unknown availability status. */
UNKNOWN_AVAILABILITY_STATUS = "UNKNOWN_AVAILABILITY_STATUS",
/** Available. */
AVAILABLE = "AVAILABLE",
/** Unavailable. */
UNAVAILABLE = "UNAVAILABLE"
}
/** @enumType */
type AvailabilityStatusWithLiterals = AvailabilityStatus | 'UNKNOWN_AVAILABILITY_STATUS' | 'AVAILABLE' | 'UNAVAILABLE';
interface UpdateExtendedFieldsRequest {
/** ID of the entity to update. */
id: string;
/** Identifier for the app whose extended fields are being updated. */
namespace: string;
/** 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. */
namespaceData: Record | null;
}
interface UpdateExtendedFieldsResponse {
/** The updated menu ordering settings entity. */
menuOrderingSettings?: MenuOrderingSettings;
}
interface DomainEvent extends DomainEventBodyOneOf {
createdEvent?: EntityCreatedEvent;
updatedEvent?: EntityUpdatedEvent;
deletedEvent?: EntityDeletedEvent;
actionEvent?: ActionEvent;
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
id?: string;
/**
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
*/
entityFqdn?: string;
/**
* Event action name, placed at the top level to make it easier for users to dispatch messages.
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
*/
slug?: string;
/** ID of the entity associated with the event. */
entityId?: string;
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
eventTime?: Date | null;
/**
* Whether the event was triggered as a result of a privacy regulation application
* (for example, GDPR).
*/
triggeredByAnonymizeRequest?: boolean | null;
/** If present, indicates the action that triggered the event. */
originatedFrom?: string | null;
/**
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
*/
entityEventSequence?: string | null;
}
/** @oneof */
interface DomainEventBodyOneOf {
createdEvent?: EntityCreatedEvent;
updatedEvent?: EntityUpdatedEvent;
deletedEvent?: EntityDeletedEvent;
actionEvent?: ActionEvent;
}
interface EntityCreatedEvent {
entityAsJson?: string;
/** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
restoreInfo?: RestoreInfo;
}
interface RestoreInfo {
deletedDate?: Date | null;
}
interface EntityUpdatedEvent {
/**
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
*/
currentEntityAsJson?: string;
}
interface EntityDeletedEvent {
/** Entity that was deleted. */
deletedEntityAsJson?: string | null;
}
interface ActionEvent {
bodyAsJson?: string;
}
interface Empty {
}
interface GetRestaurantsAppClonesStatusRequest {
}
interface GetRestaurantsAppClonesStatusResponse {
/** The requested menu ordering settings entity. */
retaurantsAppCloneStatus?: RestaurantsAppCloneStatus;
}
/** The status of the data cloning process of the Restaurants Apps. */
interface RestaurantsAppCloneStatus {
/**
* Whether the cloning of the orders was completed.
* @readonly
*/
ordersCloningCompleted?: boolean;
/**
* Whether the cloning of the menus was completed.
* @readonly
*/
menusCloningCompleted?: boolean;
}
/** Encapsulates all details written to the Greyhound topic when a site's properties are updated. */
interface SitePropertiesNotification {
/** The site ID for which this update notification applies. */
metasiteId?: string;
/** The actual update event. */
event?: SitePropertiesEvent;
/**
* A convenience set of mappings from the MetaSite ID to its constituent services.
* @maxSize 500
*/
translations?: Translation[];
/** Context of the notification */
changeContext?: ChangeContext;
}
/** The actual update event for a particular notification. */
interface SitePropertiesEvent {
/** Version of the site's properties represented by this update. */
version?: number;
/** Set of properties that were updated - corresponds to the fields in "properties". */
fields?: string[];
/** Updated properties. */
properties?: Properties;
}
interface Properties {
/** Site categories. */
categories?: Categories;
/** Site locale. */
locale?: Locale;
/**
* Site language.
*
* Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
*/
language?: string | null;
/**
* Site currency format used to bill customers.
*
* Three-letter currency code in [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format.
*/
paymentCurrency?: string | null;
/** Timezone in `America/New_York` format. */
timeZone?: string | null;
/** Email address. */
email?: string | null;
/** Phone number. */
phone?: string | null;
/** Fax number. */
fax?: string | null;
/** Address. */
address?: Address;
/** Site display name. */
siteDisplayName?: string | null;
/** Business name. */
businessName?: string | null;
/** Path to the site's logo in Wix Media (without Wix Media base URL). */
logo?: string | null;
/** Site description. */
description?: string | null;
/**
* Business schedule. Regular and exceptional time periods when the business is open or the service is available.
*
* __Note:__ Not supported by Wix Bookings.
*/
businessSchedule?: BusinessSchedule;
/** Supported languages of a site and the primary language. */
multilingual?: Multilingual;
/** Cookie policy the Wix user defined for their site (before the site visitor interacts with/limits it). */
consentPolicy?: ConsentPolicy;
/**
* Supported values: `FITNESS SERVICE`, `RESTAURANT`, `BLOG`, `STORE`, `EVENT`, `UNKNOWN`.
*
* Site business type.
*/
businessConfig?: string | null;
/** External site URL that uses Wix as its headless business solution. */
externalSiteUrl?: string | null;
/** Track clicks analytics. */
trackClicksAnalytics?: boolean;
/**
* Company ID issued to the business by local authorities. Appears on invoices and price quotes.
* @maxLength 50
*/
companyId?: string | null;
}
interface Categories {
/** Primary site category. */
primary?: string;
/**
* Secondary site category.
* @maxSize 50
*/
secondary?: string[];
/** Business Term Id */
businessTermId?: string | null;
}
interface Locale {
/** Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. */
languageCode?: string;
/** Two-letter country code in [ISO-3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements) format. */
country?: string;
}
interface Address {
/** Street name. */
street?: string;
/** City name. */
city?: string;
/** Two-letter country code in an [ISO-3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) format. */
country?: string;
/** State. */
state?: string;
/**
* Zip or postal code.
* @maxLength 20
*/
zip?: string;
/** Extra information to be displayed in the address. */
hint?: AddressHint;
/** Whether this address represents a physical location. */
isPhysical?: boolean;
/** Google-formatted version of this address. */
googleFormattedAddress?: string;
/** Street number. */
streetNumber?: string;
/** Apartment number. */
apartmentNumber?: string;
/** Geographic coordinates of location. */
coordinates?: GeoCoordinates;
}
/**
* Extra information on displayed addresses.
* This is used for display purposes. Used to add additional data about the address, such as "In the passage".
* Free text. In addition, the user can state where to display the additional description - before, after, or instead of the address string.
*/
interface AddressHint {
/** Extra text displayed next to, or instead of, the actual address. */
text?: string;
/** Where the extra text should be displayed. */
placement?: PlacementTypeWithLiterals;
}
/** Where the extra text should be displayed: before, after or instead of the actual address. */
declare enum PlacementType {
BEFORE = "BEFORE",
AFTER = "AFTER",
REPLACE = "REPLACE"
}
/** @enumType */
type PlacementTypeWithLiterals = PlacementType | 'BEFORE' | 'AFTER' | 'REPLACE';
/** Geocoordinates for a particular address. */
interface GeoCoordinates {
/** Latitude of the location. Must be between -90 and 90. */
latitude?: number;
/** Longitude of the location. Must be between -180 and 180. */
longitude?: number;
}
/** Business schedule. Regular and exceptional time periods when the business is open or the service is available. */
interface BusinessSchedule {
/**
* Weekly recurring time periods when the business is regularly open or the service is available. Limited to 100 time periods.
* @maxSize 100
*/
periods?: TimePeriod[];
/**
* Exceptions to the business's regular hours. The business can be open or closed during the exception.
* @maxSize 100
*/
specialHourPeriod?: SpecialHourPeriod[];
}
/** Weekly recurring time periods when the business is regularly open or the service is available. */
interface TimePeriod {
/** Day of the week the period starts on. */
openDay?: DayOfWeekWithLiterals;
/**
* Time the period starts in 24-hour [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) extended format. Valid values are `00:00` to `24:00`, where `24:00` represents
* midnight at the end of the specified day.
*/
openTime?: string;
/** Day of the week the period ends on. */
closeDay?: DayOfWeekWithLiterals;
/**
* Time the period ends in 24-hour [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) extended format. Valid values are `00:00` to `24:00`, where `24:00` represents
* midnight at the end of the specified day.
*
* __Note:__ If `openDay` and `closeDay` specify the same day of the week `closeTime` must be later than `openTime`.
*/
closeTime?: string;
}
/** Enumerates the days of the week. */
declare enum DayOfWeek {
MONDAY = "MONDAY",
TUESDAY = "TUESDAY",
WEDNESDAY = "WEDNESDAY",
THURSDAY = "THURSDAY",
FRIDAY = "FRIDAY",
SATURDAY = "SATURDAY",
SUNDAY = "SUNDAY"
}
/** @enumType */
type DayOfWeekWithLiterals = DayOfWeek | 'MONDAY' | 'TUESDAY' | 'WEDNESDAY' | 'THURSDAY' | 'FRIDAY' | 'SATURDAY' | 'SUNDAY';
/** Exception to the business's regular hours. The business can be open or closed during the exception. */
interface SpecialHourPeriod {
/** Start date and time of the exception in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format and [Coordinated Universal Time (UTC)](https://en.wikipedia.org/wiki/Coordinated_Universal_Time). */
startDate?: string;
/** End date and time of the exception in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format and [Coordinated Universal Time (UTC)](https://en.wikipedia.org/wiki/Coordinated_Universal_Time). */
endDate?: string;
/**
* Whether the business is closed (or the service is not available) during the exception.
*
* Default: `true`.
*/
isClosed?: boolean;
/** Additional info about the exception. For example, "We close earlier on New Year's Eve." */
comment?: string;
}
interface Multilingual {
/**
* Supported languages list.
* @maxSize 200
*/
supportedLanguages?: SupportedLanguage[];
/** Whether to redirect to user language. */
autoRedirect?: boolean;
}
interface SupportedLanguage {
/** Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. */
languageCode?: string;
/** Locale. */
locale?: Locale;
/** Whether the supported language is the primary language for the site. */
isPrimary?: boolean;
/** Language icon. */
countryCode?: string;
/** How the language will be resolved. For internal use. */
resolutionMethod?: ResolutionMethodWithLiterals;
/** Whether the supported language is the primary language for site visitors. */
isVisitorPrimary?: boolean | null;
}
declare enum ResolutionMethod {
QUERY_PARAM = "QUERY_PARAM",
SUBDOMAIN = "SUBDOMAIN",
SUBDIRECTORY = "SUBDIRECTORY"
}
/** @enumType */
type ResolutionMethodWithLiterals = ResolutionMethod | 'QUERY_PARAM' | 'SUBDOMAIN' | 'SUBDIRECTORY';
interface ConsentPolicy {
/** Whether the site uses cookies that are essential to site operation. Always `true`. */
essential?: boolean | null;
/** Whether the site uses cookies that affect site performance and other functional measurements. */
functional?: boolean | null;
/** Whether the site uses cookies that collect analytics about how the site is used (in order to improve it). */
analytics?: boolean | null;
/** Whether the site uses cookies that collect information allowing better customization of the experience for a current visitor. */
advertising?: boolean | null;
/** CCPA compliance flag. */
dataToThirdParty?: boolean | null;
}
/** A single mapping from the MetaSite ID to a particular service. */
interface Translation {
/** The service type. */
serviceType?: string;
/** The application definition ID; this only applies to services of type ThirdPartyApps. */
appDefId?: string;
/** The instance ID of the service. */
instanceId?: string;
}
interface ChangeContext extends ChangeContextPayloadOneOf {
/** Properties were updated. */
propertiesChange?: PropertiesChange;
/** Default properties were created on site creation. */
siteCreated?: SiteCreated;
/** Properties were cloned on site cloning. */
siteCloned?: SiteCloned;
}
/** @oneof */
interface ChangeContextPayloadOneOf {
/** Properties were updated. */
propertiesChange?: PropertiesChange;
/** Default properties were created on site creation. */
siteCreated?: SiteCreated;
/** Properties were cloned on site cloning. */
siteCloned?: SiteCloned;
}
interface PropertiesChange {
}
interface SiteCreated {
/** Origin template site id. */
originTemplateId?: string | null;
}
interface SiteCloned {
/** Origin site id. */
originMetaSiteId?: string;
}
interface OperationsDataCloningCompleted {
}
interface MenusDataCloningCompleted {
}
interface BulkUpdateMenuOrderingSettingsTagsRequest {
/**
* IDs of the menu ordering settings entities to update tags for.
* @format GUID
* @maxSize 100
*/
menuOrderingSettingsIds: string[];
/** Tags to assign to the menu ordering settings entities. */
assignTags?: Tags;
/** Tags to unassign from the menu ordering settings entities. */
unassignTags?: Tags;
}
interface BulkUpdateMenuOrderingSettingsTagsResponse {
/**
* Results of the bulk update.
* @minSize 1
* @maxSize 100
*/
results?: BulkUpdateMenuOrderingSettingsTagsResult[];
/** Metadata for the bulk update. */
bulkActionMetadata?: CommonBulkActionMetadata;
}
interface CommonItemMetadata {
/**
* Item ID. Should always be available, unless it's impossible (for example, when failing to create an item).
* @format GUID
*/
id?: string | null;
/** Index of the item within the request array. Allows for correlation between request and response items. */
originalIndex?: number;
/** Whether the requested action was successful for this item. When `false`, the `error` field is populated. */
success?: boolean;
/** Details about the error in case of failure. */
error?: ApplicationError;
}
interface BulkUpdateMenuOrderingSettingsTagsResult {
/** Metadata for the updated menu ordering settings entity. */
itemMetadata?: CommonItemMetadata;
}
interface CommonBulkActionMetadata {
/** Number of items that were successfully processed. */
totalSuccesses?: number;
/** Number of items that couldn't be processed. */
totalFailures?: number;
/** Number of failures without details because detailed failure threshold was exceeded. */
undetailedFailures?: number;
}
interface BulkUpdateMenuOrderingSettingsTagsByFilterRequest {
/** Filter that determines which menu ordering settings entities to update tags for. */
filter: Record | null;
/** Tags to assign to the menu ordering settings entities. */
assignTags?: Tags;
/** Tags to unassign from the menu ordering settings entities. */
unassignTags?: Tags;
}
interface BulkUpdateMenuOrderingSettingsTagsByFilterResponse {
/**
* Job ID. Pass this ID to Get Async Job ([SDK](https://dev.wix.com/docs/sdk/backend-modules/async-jobs/get-async-job) | [REST](https://dev.wix.com/docs/rest/business-management/async-job/get-async-job)) to track the job's status.
* @format GUID
*/
jobId?: string;
}
interface MessageEnvelope {
/**
* App instance ID.
* @format GUID
*/
instanceId?: string | null;
/**
* Event type.
* @maxLength 150
*/
eventType?: string;
/** The identification type and identity data. */
identity?: IdentificationData;
/** Stringify payload. */
data?: string;
/** Details related to the account */
accountInfo?: AccountInfo;
}
interface IdentificationData extends IdentificationDataIdOneOf {
/**
* ID of a site visitor that has not logged in to the site.
* @format GUID
*/
anonymousVisitorId?: string;
/**
* ID of a site visitor that has logged in to the site.
* @format GUID
*/
memberId?: string;
/**
* ID of a Wix user (site owner, contributor, etc.).
* @format GUID
*/
wixUserId?: string;
/**
* ID of an app.
* @format GUID
*/
appId?: string;
/** @readonly */
identityType?: WebhookIdentityTypeWithLiterals;
}
/** @oneof */
interface IdentificationDataIdOneOf {
/**
* ID of a site visitor that has not logged in to the site.
* @format GUID
*/
anonymousVisitorId?: string;
/**
* ID of a site visitor that has logged in to the site.
* @format GUID
*/
memberId?: string;
/**
* ID of a Wix user (site owner, contributor, etc.).
* @format GUID
*/
wixUserId?: string;
/**
* ID of an app.
* @format GUID
*/
appId?: string;
}
declare enum WebhookIdentityType {
UNKNOWN = "UNKNOWN",
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
MEMBER = "MEMBER",
WIX_USER = "WIX_USER",
APP = "APP"
}
/** @enumType */
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
interface AccountInfo {
/**
* ID of the Wix account associated with the event.
* @format GUID
*/
accountId?: string | null;
/**
* ID of the parent Wix account. Only included when accountId belongs to a child account.
* @format GUID
*/
parentAccountId?: string | null;
/**
* ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
* @format GUID
*/
siteId?: string | null;
}
/** @docsIgnore */
type BulkUpdateMenuOrderingSettingsTagsApplicationErrors = {
code?: 'EMPTY_ASSIGN_AND_UNASSIGN_LISTS';
description?: string;
data?: Record;
};
/** @docsIgnore */
type BulkUpdateMenuOrderingSettingsTagsByFilterApplicationErrors = {
code?: 'EMPTY_ASSIGN_AND_UNASSIGN_LISTS';
description?: string;
data?: Record;
};
type __PublicMethodMetaInfo = {
getUrl: (context: any) => string;
httpMethod: K;
path: string;
pathParams: M;
__requestType: T;
__originalRequestType: S;
__responseType: Q;
__originalResponseType: R;
};
declare function getMenuOrderingSettings(): __PublicMethodMetaInfo<'GET', {
menuOrderingSettingsId: string;
}, GetMenuOrderingSettingsRequest$1, GetMenuOrderingSettingsRequest, GetMenuOrderingSettingsResponse$1, GetMenuOrderingSettingsResponse>;
declare function upsertMenuOrderingSettingsByMenuId(): __PublicMethodMetaInfo<'POST', {
menuOrderingSettingsMenuId: string;
}, UpsertMenuOrderingSettingsByMenuIdRequest$1, UpsertMenuOrderingSettingsByMenuIdRequest, UpsertMenuOrderingSettingsByMenuIdResponse$1, UpsertMenuOrderingSettingsByMenuIdResponse>;
declare function updateMenuOrderingSettings(): __PublicMethodMetaInfo<'PATCH', {
menuOrderingSettingsId: string;
}, UpdateMenuOrderingSettingsRequest$1, UpdateMenuOrderingSettingsRequest, UpdateMenuOrderingSettingsResponse$1, UpdateMenuOrderingSettingsResponse>;
declare function queryMenuOrderingSettings(): __PublicMethodMetaInfo<'POST', {}, QueryMenuOrderingSettingsRequest$1, QueryMenuOrderingSettingsRequest, QueryMenuOrderingSettingsResponse$1, QueryMenuOrderingSettingsResponse>;
declare function bulkUpdateMenuOrderingSettings(): __PublicMethodMetaInfo<'POST', {}, BulkUpdateMenuOrderingSettingsRequest$1, BulkUpdateMenuOrderingSettingsRequest, BulkUpdateMenuOrderingSettingsResponse$1, BulkUpdateMenuOrderingSettingsResponse>;
declare function listMenusAvailabilityStatus(): __PublicMethodMetaInfo<'GET', {}, ListMenusAvailabilityStatusRequest$1, ListMenusAvailabilityStatusRequest, ListMenusAvailabilityStatusResponse$1, ListMenusAvailabilityStatusResponse>;
declare function updateExtendedFields(): __PublicMethodMetaInfo<'POST', {
id: string;
}, UpdateExtendedFieldsRequest$1, UpdateExtendedFieldsRequest, UpdateExtendedFieldsResponse$1, UpdateExtendedFieldsResponse>;
declare function bulkUpdateMenuOrderingSettingsTags(): __PublicMethodMetaInfo<'POST', {}, BulkUpdateMenuOrderingSettingsTagsRequest$1, BulkUpdateMenuOrderingSettingsTagsRequest, BulkUpdateMenuOrderingSettingsTagsResponse$1, BulkUpdateMenuOrderingSettingsTagsResponse>;
declare function bulkUpdateMenuOrderingSettingsTagsByFilter(): __PublicMethodMetaInfo<'POST', {}, BulkUpdateMenuOrderingSettingsTagsByFilterRequest$1, BulkUpdateMenuOrderingSettingsTagsByFilterRequest, BulkUpdateMenuOrderingSettingsTagsByFilterResponse$1, BulkUpdateMenuOrderingSettingsTagsByFilterResponse>;
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, type AddressHint as AddressHintOriginal, type Address as AddressOriginal, type App as AppOriginal, type ApplicationError as ApplicationErrorOriginal, type AvailabilityAvailabilityTypeOptionsOneOf as AvailabilityAvailabilityTypeOptionsOneOfOriginal, type Availability as AvailabilityOriginal, AvailabilityStatus as AvailabilityStatusOriginal, type AvailabilityStatusWithLiterals as AvailabilityStatusWithLiteralsOriginal, AvailabilityType as AvailabilityTypeOriginal, type AvailabilityTypeWithLiterals as AvailabilityTypeWithLiteralsOriginal, type AvailableRange as AvailableRangeOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkMenuOrderingSettingsResult as BulkMenuOrderingSettingsResultOriginal, type BulkUpdateMenuOrderingSettingsRequest as BulkUpdateMenuOrderingSettingsRequestOriginal, type BulkUpdateMenuOrderingSettingsResponse as BulkUpdateMenuOrderingSettingsResponseOriginal, type BulkUpdateMenuOrderingSettingsTagsApplicationErrors as BulkUpdateMenuOrderingSettingsTagsApplicationErrorsOriginal, type BulkUpdateMenuOrderingSettingsTagsByFilterApplicationErrors as BulkUpdateMenuOrderingSettingsTagsByFilterApplicationErrorsOriginal, type BulkUpdateMenuOrderingSettingsTagsByFilterRequest as BulkUpdateMenuOrderingSettingsTagsByFilterRequestOriginal, type BulkUpdateMenuOrderingSettingsTagsByFilterResponse as BulkUpdateMenuOrderingSettingsTagsByFilterResponseOriginal, type BulkUpdateMenuOrderingSettingsTagsRequest as BulkUpdateMenuOrderingSettingsTagsRequestOriginal, type BulkUpdateMenuOrderingSettingsTagsResponse as BulkUpdateMenuOrderingSettingsTagsResponseOriginal, type BulkUpdateMenuOrderingSettingsTagsResult as BulkUpdateMenuOrderingSettingsTagsResultOriginal, type BusinessSchedule as BusinessScheduleOriginal, type Categories as CategoriesOriginal, type ChangeContext as ChangeContextOriginal, type ChangeContextPayloadOneOf as ChangeContextPayloadOneOfOriginal, type CommonBulkActionMetadata as CommonBulkActionMetadataOriginal, type CommonItemMetadata as CommonItemMetadataOriginal, type ConsentPolicy as ConsentPolicyOriginal, type CreateMenuOrderingSettingsRequest as CreateMenuOrderingSettingsRequestOriginal, type CreateMenuOrderingSettingsResponse as CreateMenuOrderingSettingsResponseOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type CustomTag as CustomTagOriginal, type DayOfWeekAvailability as DayOfWeekAvailabilityOriginal, DayOfWeek as DayOfWeekOriginal, type DayOfWeekWithLiterals as DayOfWeekWithLiteralsOriginal, type DeleteMenuOrderingSettingsRequest as DeleteMenuOrderingSettingsRequestOriginal, type DeleteMenuOrderingSettingsResponse as DeleteMenuOrderingSettingsResponseOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type Empty as EmptyOriginal, EntitiesDayOfWeek as EntitiesDayOfWeekOriginal, type EntitiesDayOfWeekWithLiterals as EntitiesDayOfWeekWithLiteralsOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type ExtendedFields as ExtendedFieldsOriginal, type File as FileOriginal, type GeoCoordinates as GeoCoordinatesOriginal, type GetMenuOrderingSettingsRequest as GetMenuOrderingSettingsRequestOriginal, type GetMenuOrderingSettingsResponse as GetMenuOrderingSettingsResponseOriginal, type GetRestaurantsAppClonesStatusRequest as GetRestaurantsAppClonesStatusRequestOriginal, type GetRestaurantsAppClonesStatusResponse as GetRestaurantsAppClonesStatusResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOfOriginal, type InvalidateCache as InvalidateCacheOriginal, type ItemMetadata as ItemMetadataOriginal, type ListMenusAvailabilityStatusRequest as ListMenusAvailabilityStatusRequestOriginal, type ListMenusAvailabilityStatusResponse as ListMenusAvailabilityStatusResponseOriginal, type Locale as LocaleOriginal, type MaskedMenuOrderingSettings as MaskedMenuOrderingSettingsOriginal, type MenuAvailabilityStatus as MenuAvailabilityStatusOriginal, type MenuOrderingSettings as MenuOrderingSettingsOriginal, type MenusDataCloningCompleted as MenusDataCloningCompletedOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Multilingual as MultilingualOriginal, type OperationsDataCloningCompleted as OperationsDataCloningCompletedOriginal, type Page as PageOriginal, type Pages as PagesOriginal, PlacementType as PlacementTypeOriginal, type PlacementTypeWithLiterals as PlacementTypeWithLiteralsOriginal, type PropertiesChange as PropertiesChangeOriginal, type Properties as PropertiesOriginal, type QueryMenuOrderingSettingsRequest as QueryMenuOrderingSettingsRequestOriginal, type QueryMenuOrderingSettingsResponse as QueryMenuOrderingSettingsResponseOriginal, ResolutionMethod as ResolutionMethodOriginal, type ResolutionMethodWithLiterals as ResolutionMethodWithLiteralsOriginal, type RestaurantsAppCloneStatus as RestaurantsAppCloneStatusOriginal, type RestoreInfo as RestoreInfoOriginal, type SiteCloned as SiteClonedOriginal, type SiteCreated as SiteCreatedOriginal, type SitePropertiesEvent as SitePropertiesEventOriginal, type SitePropertiesNotification as SitePropertiesNotificationOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, type SpecialHourPeriod as SpecialHourPeriodOriginal, type SupportedLanguage as SupportedLanguageOriginal, type TagList as TagListOriginal, type Tags as TagsOriginal, type TimeOfDay as TimeOfDayOriginal, type TimeOfDayRange as TimeOfDayRangeOriginal, type TimePeriod as TimePeriodOriginal, type TimeSlot as TimeSlotOriginal, type TimestampRangesOptions as TimestampRangesOptionsOriginal, type Translation as TranslationOriginal, type URI as URIOriginal, type URIs as URIsOriginal, type UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequestOriginal, type UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponseOriginal, type UpdateMenuOrderingSettingsRequest as UpdateMenuOrderingSettingsRequestOriginal, type UpdateMenuOrderingSettingsResponse as UpdateMenuOrderingSettingsResponseOriginal, type UpsertMenuOrderingSettingsByMenuIdRequest as UpsertMenuOrderingSettingsByMenuIdRequestOriginal, type UpsertMenuOrderingSettingsByMenuIdResponse as UpsertMenuOrderingSettingsByMenuIdResponseOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type WeeklyScheduleOptions as WeeklyScheduleOptionsOriginal, type __PublicMethodMetaInfo, bulkUpdateMenuOrderingSettings, bulkUpdateMenuOrderingSettingsTags, bulkUpdateMenuOrderingSettingsTagsByFilter, getMenuOrderingSettings, listMenusAvailabilityStatus, queryMenuOrderingSettings, updateExtendedFields, updateMenuOrderingSettings, upsertMenuOrderingSettingsByMenuId };