diff --git a/.gitignore b/.gitignore index 55ef4bd87a..6adbc7e49b 100644 --- a/.gitignore +++ b/.gitignore @@ -36,3 +36,4 @@ sandbox.config.json .cache .kilocode .kilo +.markdown-link-resolver/ diff --git a/src/content/docs/en/pages/guides/marketplace/integrations/limit-payload.mdx b/src/content/docs/en/pages/guides/marketplace/integrations/limit-payload.mdx index 2fa3e1fb3a..d7c9723727 100644 --- a/src/content/docs/en/pages/guides/marketplace/integrations/limit-payload.mdx +++ b/src/content/docs/en/pages/guides/marketplace/integrations/limit-payload.mdx @@ -63,13 +63,13 @@ For this integration, you only have to pass one argument in the Args JSON file: ```json { - "max_payload_length": "10kb" + "max_content_length": "10kb" } ``` Some information about how this integration works: -- The `max_payload_length` is the maximum size of the payload you'll accept. +- The `max_content_length` is the maximum size of the payload you'll accept. - This field accepts bytes, kilobytes, and megabytes as argument. - If you don't specify the unit of the payload size, it'll be assumed as bytes. - If you don't pass any argument, the function will bypass the execution. diff --git a/src/content/docs/pt-br/pages/guias/marketplace/integrations/limit-payload.mdx b/src/content/docs/pt-br/pages/guias/marketplace/integrations/limit-payload.mdx index 53b9c9fe74..4cfcffe9d3 100644 --- a/src/content/docs/pt-br/pages/guias/marketplace/integrations/limit-payload.mdx +++ b/src/content/docs/pt-br/pages/guias/marketplace/integrations/limit-payload.mdx @@ -64,13 +64,13 @@ Nesta integração você passará somente um argumento em **Arguments**: ```json { - "max_payload_length": "10kb" + "max_content_length": "10kb" } ``` Algumas informações sobre como esta integração funciona: -- O `max_payload_length` é o tamanho máximo do payload que sua função aceitará. +- O `max_content_length` é o tamanho máximo do payload que sua função aceitará. - Este campo aceita bytes, kilobytes e megabytes como argumento. - Se você não especificar a unidade de tamanho para o payload, a função assumirá como sendo em bytes. - Se você não passar nenhum argumento, a função irá ignorar a execução.