From a48438bfbf109fbe96b65d01c497fe9a3cf8927a Mon Sep 17 00:00:00 2001 From: Matheus Almeida Date: Tue, 12 Mar 2024 16:01:25 -0300 Subject: [PATCH 1/2] fix: recommended version of integrations --- docs/01-Get Started/_updates.js | 4 ++-- src/components/UpdatesComponent.js | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/01-Get Started/_updates.js b/docs/01-Get Started/_updates.js index 63e5aef..a6ecef0 100644 --- a/docs/01-Get Started/_updates.js +++ b/docs/01-Get Started/_updates.js @@ -43,8 +43,8 @@ export const updates = [ "Composing over 20s now loops until finished" ], integrations: [ - "Chatwoot: v3.3.1", - "Typebot: v2.20.0" + "Chatwoot: v3.5.2", + "Typebot: v2.23.0" ], commits: "", }, diff --git a/src/components/UpdatesComponent.js b/src/components/UpdatesComponent.js index 8f3fcf0..0214261 100644 --- a/src/components/UpdatesComponent.js +++ b/src/components/UpdatesComponent.js @@ -1,7 +1,6 @@ -// src/components/UpdatesComponent.js import React from 'react'; import { updates } from '../../docs/01-Get Started/_updates'; -import styles from './UpdatesComponent.module.css'; // Importando o CSS Module +import styles from './UpdatesComponent.module.css'; export default function UpdatesComponent() { return ( From 6ef1856280ba5cb1941a4d2a5509ef284bc59328 Mon Sep 17 00:00:00 2001 From: Matheus Almeida Date: Tue, 12 Mar 2024 16:04:15 -0300 Subject: [PATCH 2/2] fix: api key environment typo --- docs/01-Get Started/Installation/Docker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/01-Get Started/Installation/Docker.md b/docs/01-Get Started/Installation/Docker.md index 81728b6..7c3f9a0 100644 --- a/docs/01-Get Started/Installation/Docker.md +++ b/docs/01-Get Started/Installation/Docker.md @@ -175,7 +175,7 @@ x-variables: CONFIG_SESSION_PHONE_CLIENT: "RENAME ME WITH YOUR COMPANY NAME" # ApiKey Config for authentication High Encryption AES 256 from https://acte.ltd/utils/randomkeygen AUTHENTICATION_TYPE: "apikey" - AUTHENTICATION_AUTHENTICATION_API_KEY: "YOUR_SUPER_SECURE_KEY" + AUTHENTICATION_API_KEY: "YOUR_SUPER_SECURE_KEY" # Database DATABASE_ENABLED: "true" DATABASE_CONNECTION_URI: "mongodb://root:YOUR_SUPER_SECURE_PASSWORD@mongodb:27017/?authSource=admin&readPreference=primary&ssl=false&directConnection=true"