mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
✨ Add support for PostgresDB and save date as Date
This commit is contained in:
@@ -37,7 +37,7 @@ export interface IGetCredentials {
|
||||
export interface ICredentialNodeAccess {
|
||||
nodeType: string;
|
||||
user?: string;
|
||||
date?: number;
|
||||
date?: Date;
|
||||
}
|
||||
|
||||
export interface ICredentialsDecrypted {
|
||||
@@ -466,8 +466,8 @@ export interface IRun {
|
||||
data: IRunExecutionData;
|
||||
finished?: boolean;
|
||||
mode: WorkflowExecuteMode;
|
||||
startedAt: number;
|
||||
stoppedAt: number;
|
||||
startedAt: Date;
|
||||
stoppedAt: Date;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user