mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat(core): Add support for digestAuth to httpRequest and declarative style (#5676)
feat(core): Add support to digestAuth to httpRequest and declarative style
This commit is contained in:
@@ -172,6 +172,7 @@ export interface IRequestOptionsSimplified {
|
||||
auth?: {
|
||||
username: string;
|
||||
password: string;
|
||||
sendImmediately?: boolean;
|
||||
};
|
||||
body: IDataObject;
|
||||
headers: IDataObject;
|
||||
@@ -182,6 +183,7 @@ export interface IRequestOptionsSimplifiedAuth {
|
||||
auth?: {
|
||||
username: string;
|
||||
password: string;
|
||||
sendImmediately?: boolean;
|
||||
};
|
||||
body?: IDataObject;
|
||||
headers?: IDataObject;
|
||||
@@ -501,6 +503,7 @@ export interface IHttpRequestOptions {
|
||||
auth?: {
|
||||
username: string;
|
||||
password: string;
|
||||
sendImmediately?: boolean;
|
||||
};
|
||||
disableFollowRedirect?: boolean;
|
||||
encoding?: 'arraybuffer' | 'blob' | 'document' | 'json' | 'text' | 'stream';
|
||||
|
||||
Reference in New Issue
Block a user