diff --git a/src/lhisp-oauth-client.ts b/src/lhisp-oauth-client.ts index 32a9f44..c250258 100644 --- a/src/lhisp-oauth-client.ts +++ b/src/lhisp-oauth-client.ts @@ -219,10 +219,11 @@ export class LhispOauthClient { }); } - async delete({ path, contentType = ContentType.APPLICATION_JSON }: ExecutarRequestParams) { + async delete({ path, params, contentType = ContentType.APPLICATION_JSON }: ExecutarRequestParams) { return this.executarRequest({ method: "DELETE", path, + params, contentType, }); }