mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 19:11:13 +00:00
refactor: Use string ids on Credentials, Workflows, Tags, and Executions DB entities (#5041)
This commit is contained in:
committed by
GitHub
parent
8bee04cd2a
commit
ee28213538
@@ -133,7 +133,7 @@ export interface ICredentialNodeAccess {
|
||||
}
|
||||
|
||||
export interface ICredentialsDecrypted {
|
||||
id: string | number;
|
||||
id: string;
|
||||
name: string;
|
||||
type: string;
|
||||
nodesAccess: ICredentialNodeAccess[];
|
||||
@@ -143,7 +143,7 @@ export interface ICredentialsDecrypted {
|
||||
}
|
||||
|
||||
export interface ICredentialsEncrypted {
|
||||
id?: string | number;
|
||||
id?: string;
|
||||
name: string;
|
||||
type: string;
|
||||
nodesAccess: ICredentialNodeAccess[];
|
||||
@@ -1430,7 +1430,7 @@ export interface IWorkflowDataProxyData {
|
||||
export type IWorkflowDataProxyAdditionalKeys = IDataObject;
|
||||
|
||||
export interface IWorkflowMetadata {
|
||||
id?: number | string;
|
||||
id?: string;
|
||||
name?: string;
|
||||
active: boolean;
|
||||
}
|
||||
@@ -1571,7 +1571,7 @@ export interface IWaitingForExecutionSource {
|
||||
}
|
||||
|
||||
export interface IWorkflowBase {
|
||||
id?: number | string | any;
|
||||
id?: string;
|
||||
name: string;
|
||||
active: boolean;
|
||||
createdAt: Date;
|
||||
|
||||
Reference in New Issue
Block a user