mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
23 lines
414 B
TypeScript
23 lines
414 B
TypeScript
import type { IAttachment } from './ObservableInterface';
|
|
export const enum LogStatus {
|
|
OK = 'Ok',
|
|
DELETED = 'Deleted',
|
|
}
|
|
export interface ILog {
|
|
// Required attributes
|
|
id?: string;
|
|
message?: string;
|
|
startDate?: Date;
|
|
status?: LogStatus;
|
|
|
|
// Optional attributes
|
|
attachment?: IAttachment;
|
|
|
|
// Backend generated attributes
|
|
|
|
createdBy?: string;
|
|
createdAt?: Date;
|
|
updatedBy?: string;
|
|
upadtedAt?: Date;
|
|
}
|