mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
fix(HTTP Request Node): Sanitize secrets of predefined credentials (#9612)
This commit is contained in:
@@ -216,6 +216,8 @@ export abstract class ICredentialsHelper {
|
||||
type: string,
|
||||
data: ICredentialDataDecryptedObject,
|
||||
): Promise<void>;
|
||||
|
||||
abstract getCredentialsProperties(type: string): INodeProperties[];
|
||||
}
|
||||
|
||||
export interface IAuthenticateBase {
|
||||
@@ -813,6 +815,7 @@ export type NodeTypeAndVersion = {
|
||||
export interface FunctionsBase {
|
||||
logger: Logger;
|
||||
getCredentials(type: string, itemIndex?: number): Promise<ICredentialDataDecryptedObject>;
|
||||
getCredentialsProperties(type: string): INodeProperties[];
|
||||
getExecutionId(): string;
|
||||
getNode(): INode;
|
||||
getWorkflow(): IWorkflowMetadata;
|
||||
|
||||
Reference in New Issue
Block a user