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:
Jan Oberhauser
2023-04-19 13:44:41 +02:00
committed by GitHub
parent f9b3aeac44
commit 62f993c84f
3 changed files with 23 additions and 3 deletions

View File

@@ -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';