Triggered when a loyalty account is created.
function onAccountCreated(handler: function): void;
handler(event: AccountCreatedEnvelope): void | Promise<void>
import { accounts } from "@wix/loyalty";
accounts.onAccountCreated((event) => {
// handle your event here
});