Skip to content

Type Alias: SessionClientAccountChanged

Makaio Framework


Makaio Framework / contracts/session / SessionClientAccountChanged

SessionClientAccountChanged = z.infer<typeof SessionClientAccountChangedSchema>

Defined in: ../../../packages/contracts/src/session/schemas/events.ts:20

  • SessionClientAccountChanged
    • z.infer<typeof SessionClientAccountChangedSchema>
      • typeof SessionClientAccountChangedSchema
type SessionClientAccountChanged = {
sessionId: string;
clientId: string;
previousClientAccountId: string | null;
clientAccountId: string;
source: string;
observedAt: number;
lastClientIdentityObservation: { clientId: string; source: string; kind: string; observedAt: number; payload: Record<string, unknown>; };
};