fix: make authData optional
This commit is contained in:
parent
2648001bc4
commit
28ae4512f4
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ export interface LhispOauthClientConstructorParams {
|
||||||
authHeaders?: Headers;
|
authHeaders?: Headers;
|
||||||
grantType?: string;
|
grantType?: string;
|
||||||
authContentType?: ContentType;
|
authContentType?: ContentType;
|
||||||
authData: Record<string, string>;
|
authData?: Record<string, string>;
|
||||||
sendAuthCredentialsOnRequestBody?: boolean;
|
sendAuthCredentialsOnRequestBody?: boolean;
|
||||||
formatAccessToken?: (accessToken?: AccessToken) => string;
|
formatAccessToken?: (accessToken?: AccessToken) => string;
|
||||||
debug?: boolean;
|
debug?: boolean;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue