Home > @uniformdev/context > VisitorDataStoreEvents

VisitorDataStoreEvents type

Signature:

type VisitorDataStoreEvents = {
    scoresUpdated: Pick<VisitorData, 'scores' | 'sessionScores'>;
    quirksUpdated: Pick<VisitorData, 'quirks'>;
    testsUpdated: Pick<VisitorData, 'tests'>;
    consentUpdated: Pick<VisitorData, 'consent'>;
    controlGroupUpdated: Pick<VisitorData, 'controlGroup'>;
    goalConverted: {
        goalId: string;
    };
    commandsExecuted: StorageCommands[];
};

References: VisitorData, StorageCommands