From dabacbe64412aca09c1bb6f167e9c287e263dd45 Mon Sep 17 00:00:00 2001 From: Lucas Nogueira Date: Tue, 2 May 2023 13:40:57 -0300 Subject: [PATCH] fix(http): adjust client id argument name on `request` command usage --- plugins/http/guest-js/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/http/guest-js/index.ts b/plugins/http/guest-js/index.ts index 655a339f..c8028648 100644 --- a/plugins/http/guest-js/index.ts +++ b/plugins/http/guest-js/index.ts @@ -338,7 +338,7 @@ class Client { options.responseType = ResponseType.Text } return invoke>('plugin:http|request', { - client: this.id, + clientId: this.id, options }).then((res) => { const response = new Response(res)