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 serviceOptionsAndVariants
object is created by cloning from the source object.
function wixBookingsCatalog_onServiceOptionsAndVariantsCreated(
event: ServiceOptionsAndVariantsCreated,
): void;
export function wixBookingsCatalog_onServiceOptionsAndVariantsCreated(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 serviceOptionsAndVariants
object is deleted.
function wixBookingsCatalog_onServiceOptionsAndVariantsDeleted(
event: ServiceOptionsAndVariantsDeleted,
): void;
export function wixBookingsCatalog_onServiceOptionsAndVariantsDeleted(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 serviceOptionsAndVariants
object is updated.
function wixBookingsCatalog_onServiceOptionsAndVariantsUpdated(
event: ServiceOptionsAndVariantsUpdated,
): void;
export function wixBookingsCatalog_onServiceOptionsAndVariantsUpdated(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 wixBookingsServices_onServiceCreated(event: ServiceCreated): void;
export function wixBookingsServices_onServiceCreated(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 wixBookingsServices_onServiceDeleted(event: ServiceDeleted): void;
export function wixBookingsServices_onServiceDeleted(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 wixBookingsServices_onServiceUpdated(event: ServiceUpdated): void;
export function wixBookingsServices_onServiceUpdated(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.