NewAuditRecord: {
    clientIpAddress?: string;
    key?: DeveloperKeyReference;
    operation:
        | "VIEW"
        | "CREATE"
        | "UPDATE"
        | "DELETE"
        | "SEARCH";
    organisationId: string;
    recordId: Record<string, unknown>;
    recordLabel?: string;
    type: AuditRecordType;
    user?: UserProfile;
}