From da791ed2cacef236a397345ef54e26189130684d Mon Sep 17 00:00:00 2001 From: Leandro Costa Date: Wed, 8 Nov 2023 23:05:07 -0300 Subject: [PATCH] fix: adding certificado type --- src/lhisp-oauth-client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lhisp-oauth-client.ts b/src/lhisp-oauth-client.ts index f18231b..213d8b4 100644 --- a/src/lhisp-oauth-client.ts +++ b/src/lhisp-oauth-client.ts @@ -21,7 +21,7 @@ export class LhispOauthClient { protected authHeaderName: string; protected tokenHeaderName: string; protected authContentType: ContentType; - protected certificado?: string; + protected certificado?: string | Buffer; protected senhaCertificado?: string; protected authScope?: string; protected headers?: Headers;