This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Triggered when a section is created.
function wixRestaurantsMenus_onSectionCreated(event: SectionCreated): void;
export function wixRestaurantsMenus_onSectionCreated(event) {
const eventId = event.metadata.id;
const entityId = event.entity._id;
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Triggered when a section is deleted.
function wixRestaurantsMenus_onSectionDeleted(event: SectionDeleted): void;
export function wixRestaurantsMenus_onSectionDeleted(event) {
const eventId = event.metadata.id;
const entityId = event.entity._id;
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Triggered when a section is updated.
function wixRestaurantsMenus_onSectionUpdated(event: SectionUpdated): void;
export function wixRestaurantsMenus_onSectionUpdated(event) {
const eventId = event.metadata.id;
const entityId = event.entity._id;
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
function wixRestaurantsOperationsV1_onOperationInvalidateCache(
event: OperationInvalidateCache,
): void;
export function wixRestaurantsOperationsV1_onOperationInvalidateCache(event) {
const eventId = event.metadata.id;
const entityId = event.data.invalidateSsrCache._id;
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Triggered when an operation is created.
function wixRestaurantsOperations_onOperationCreated(
event: OperationCreated,
): void;
export function wixRestaurantsOperations_onOperationCreated(event) {
const eventId = event.metadata.id;
const entityId = event.entity._id;
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Triggered when an operation is deleted.
function wixRestaurantsOperations_onOperationDeleted(
event: OperationDeleted,
): void;
export function wixRestaurantsOperations_onOperationDeleted(event) {
const eventId = event.metadata.id;
const entityId = event.entity._id;
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Triggered when an operation is updated.
function wixRestaurantsOperations_onOperationUpdated(
event: OperationUpdated,
): void;
export function wixRestaurantsOperations_onOperationUpdated(event) {
const eventId = event.metadata.id;
const entityId = event.entity._id;
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
function wixRestaurantsV1_onAvailabilityExceptionCreated(
event: AvailabilityExceptionCreated,
): void;
export function wixRestaurantsV1_onAvailabilityExceptionCreated(event) {
const eventId = event.metadata.id;
const entityId = event.entity._id;
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.