From 663e648af225ef6eca0ae5ce571c36aec247f283 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Tue, 22 Aug 2023 16:15:02 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20docs(utilities.mdx):=20update=20?= =?UTF-8?q?documentation=20for=20GET=20and=20POST=20requests=20to=20reflec?= =?UTF-8?q?t=20changes=20in=20the=20response=20format=20=F0=9F=93=9D=20doc?= =?UTF-8?q?s(utilities.mdx):=20clarify=20that=20multiple=20URLs=20can=20be?= =?UTF-8?q?=20provided=20for=20GET=20requests=20and=20the=20response=20wil?= =?UTF-8?q?l=20be=20a=20list=20of=20Documents?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/docs/components/utilities.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/components/utilities.mdx b/docs/docs/components/utilities.mdx index cb0aa808e..573db78e7 100644 --- a/docs/docs/components/utilities.mdx +++ b/docs/docs/components/utilities.mdx @@ -16,12 +16,12 @@ Make a GET request to the given URL. **Params** -- **URL:** The URL to make the request to. +- **URL:** The URL to make the request to. There can be more than one URL, in which case the request will be made to each URL in order. - **Headers:** A dictionary of headers to send with the request. **Output** -- **Document:** The JSON response from the request as a Document. +- **List of Documents:** A list of Documents containing the JSON response from each request. ### POST Request @@ -48,4 +48,4 @@ Build a Document containing a JSON object using a key and another Document page **Output** -- **Document:** The Document containing the JSON object. +- **List of Documents:** A list containing the Document with the JSON object.