Triggered when a ticket sale starts. Sales details are not included in the payload.
function onTicketDefinitionSaleStarted(handler: function): void;
handler(event: TicketDefinitionSaleStartedEnvelope): void | Promise<void>
import { ticketDefinitionsV2 } from "@wix/events";
ticketDefinitionsV2.onTicketDefinitionSaleStarted((event) => {
// handle your event here
});