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 reservation is canceled.
function onReservationUpdated(handler: function): void;
handler(event: ReservationUpdatedEnvelope): void | Promise<void>
import { reservations } from "@wix/table-reservations";
reservations.onReservationUpdated((event) => {
// handle your event here
});