Skip to main content

height-app-api > SecurityLogEventObject

SecurityLogEventObject type

Signature:

export type SecurityLogEventObject = {
id: string;
model: 'securityLogEvent';
createdAt: string;
userId: string;
userEmail: string;
eventType: 'FieldTemplateInsert' | 'FieldTemplateUpdate' | 'FieldTemplateArchive' | 'FieldTemplateRestore' | 'PermissionUpsert' | 'PermissionDelete' | 'UserInvite' | 'UserSignUp';
oldValue?: any;
newValue?: any;
};