mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
⚡ Fix lint issues, formatting and icons
This commit is contained in:
@@ -1,23 +1,22 @@
|
||||
import { IDataObject } from "n8n-workflow";
|
||||
import {IAttachment} from "./ObservableInterface";
|
||||
export enum LogStatus{
|
||||
OK="Ok",
|
||||
DELETED="Deleted"
|
||||
import { IAttachment } from './ObservableInterface';
|
||||
export 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
|
||||
export interface ILog {
|
||||
// Required attributes
|
||||
id?: string;
|
||||
message?: string;
|
||||
startDate?: Date;
|
||||
status?: LogStatus;
|
||||
|
||||
createdBy?:string;
|
||||
createdAt?:Date;
|
||||
updatedBy?:string;
|
||||
upadtedAt?:Date;
|
||||
}
|
||||
// Optional attributes
|
||||
attachment?: IAttachment;
|
||||
|
||||
// Backend generated attributes
|
||||
|
||||
createdBy?: string;
|
||||
createdAt?: Date;
|
||||
updatedBy?: string;
|
||||
upadtedAt?: Date;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user