import type { Identity } from './node.ts' export type EventTrack = { ownerIdentity?: Identity category: string action: string extras: Record contact?: { identity: Identity } messageId?: string storageDate?: string count?: number } export type NonNullableEventTracking = { [P in keyof EventTrack]-?: NonNullable }