From 13d2f978825e858633584b727fc20cb6f39f72ee Mon Sep 17 00:00:00 2001 From: waleedlatif1 Date: Sat, 27 Dec 2025 04:46:46 +0000 Subject: [PATCH] feat(i18n): update translations --- apps/docs/content/docs/de/tools/firecrawl.mdx | 26 +++++++++ apps/docs/content/docs/de/tools/intercom.mdx | 56 +++++++------------ apps/docs/content/docs/de/tools/pinecone.mdx | 3 +- apps/docs/content/docs/de/tools/supabase.mdx | 5 +- apps/docs/content/docs/de/tools/typeform.mdx | 27 +++++---- apps/docs/content/docs/es/tools/firecrawl.mdx | 26 +++++++++ apps/docs/content/docs/es/tools/intercom.mdx | 50 ++++++----------- apps/docs/content/docs/es/tools/pinecone.mdx | 3 +- apps/docs/content/docs/es/tools/supabase.mdx | 3 +- apps/docs/content/docs/es/tools/typeform.mdx | 27 +++++---- apps/docs/content/docs/fr/tools/firecrawl.mdx | 26 +++++++++ apps/docs/content/docs/fr/tools/intercom.mdx | 50 ++++++----------- apps/docs/content/docs/fr/tools/pinecone.mdx | 3 +- apps/docs/content/docs/fr/tools/supabase.mdx | 3 +- apps/docs/content/docs/fr/tools/typeform.mdx | 29 +++++----- apps/docs/content/docs/ja/tools/firecrawl.mdx | 32 ++++++++++- apps/docs/content/docs/ja/tools/intercom.mdx | 50 ++++++----------- apps/docs/content/docs/ja/tools/pinecone.mdx | 1 - apps/docs/content/docs/ja/tools/supabase.mdx | 5 +- apps/docs/content/docs/ja/tools/typeform.mdx | 27 +++++---- apps/docs/content/docs/zh/tools/firecrawl.mdx | 30 +++++++++- apps/docs/content/docs/zh/tools/intercom.mdx | 50 ++++++----------- apps/docs/content/docs/zh/tools/pinecone.mdx | 5 +- apps/docs/content/docs/zh/tools/supabase.mdx | 9 +-- apps/docs/content/docs/zh/tools/typeform.mdx | 35 ++++++------ apps/docs/i18n.lock | 52 +++++++++-------- 26 files changed, 348 insertions(+), 285 deletions(-) diff --git a/apps/docs/content/docs/de/tools/firecrawl.mdx b/apps/docs/content/docs/de/tools/firecrawl.mdx index e80f5cbe8d..d7ee2e6a65 100644 --- a/apps/docs/content/docs/de/tools/firecrawl.mdx +++ b/apps/docs/content/docs/de/tools/firecrawl.mdx @@ -146,6 +146,32 @@ Extrahieren Sie strukturierte Daten aus vollständigen Webseiten mithilfe von na | `success` | boolean | Ob der Extraktionsvorgang erfolgreich war | | `data` | object | Extrahierte strukturierte Daten gemäß dem Schema oder der Eingabeaufforderung | +### `firecrawl_agent` + +Autonomer Web-Datenextraktions-Agent. Sucht und sammelt Informationen basierend auf natürlichsprachlichen Anweisungen, ohne dass spezifische URLs erforderlich sind. + +#### Eingabe + +| Parameter | Typ | Erforderlich | Beschreibung | +| --------- | ---- | -------- | ----------- | +| `prompt` | string | Ja | Natürlichsprachliche Beschreibung der zu extrahierenden Daten \(max. 10.000 Zeichen\) | +| `urls` | json | Nein | Optionales Array von URLs, auf die sich der Agent konzentrieren soll | +| `schema` | json | Nein | JSON-Schema, das die Struktur der zu extrahierenden Daten definiert | +| `maxCredits` | number | Nein | Maximale Credits, die für diese Agent-Aufgabe verwendet werden sollen | +| `strictConstrainToURLs` | boolean | Nein | Wenn true, besucht der Agent nur URLs, die im urls-Array angegeben sind | +| `apiKey` | string | Ja | Firecrawl API-Schlüssel | + +#### Ausgabe + +| Parameter | Typ | Beschreibung | +| --------- | ---- | ----------- | +| `success` | boolean | Ob die Agent-Operation erfolgreich war | +| `status` | string | Aktueller Status des Agent-Jobs \(processing, completed, failed\) | +| `data` | object | Vom Agent extrahierte Daten | +| `creditsUsed` | number | Anzahl der von dieser Agent-Aufgabe verbrauchten Credits | +| `expiresAt` | string | Zeitstempel, wann die Ergebnisse ablaufen \(24 Stunden\) | +| `sources` | object | Array der vom Agent verwendeten Quell-URLs | + ## Hinweise - Kategorie: `tools` diff --git a/apps/docs/content/docs/de/tools/intercom.mdx b/apps/docs/content/docs/de/tools/intercom.mdx index 4cf52d8559..92c774344a 100644 --- a/apps/docs/content/docs/de/tools/intercom.mdx +++ b/apps/docs/content/docs/de/tools/intercom.mdx @@ -55,8 +55,7 @@ Erstellen Sie einen neuen Kontakt in Intercom mit E-Mail, external_id oder Rolle | Parameter | Typ | Beschreibung | | --------- | ---- | ----------- | -| `success` | boolean | Erfolgsstatus der Operation | -| `output` | object | Erstellte Kontaktdaten | +| `contact` | object | Erstelltes Kontaktobjekt | ### `intercom_get_contact` @@ -72,8 +71,7 @@ Einen einzelnen Kontakt anhand der ID von Intercom abrufen | Parameter | Typ | Beschreibung | | --------- | ---- | ----------- | -| `success` | boolean | Erfolgsstatus der Operation | -| `output` | object | Kontaktdaten | +| `contact` | object | Kontaktobjekt | ### `intercom_update_contact` @@ -101,8 +99,7 @@ Einen bestehenden Kontakt in Intercom aktualisieren | Parameter | Typ | Beschreibung | | --------- | ---- | ----------- | -| `success` | boolean | Erfolgsstatus der Operation | -| `output` | object | Aktualisierte Kontaktdaten | +| `contact` | object | Aktualisiertes Kontaktobjekt | ### `intercom_list_contacts` @@ -119,8 +116,7 @@ Alle Kontakte von Intercom mit Paginierungsunterstützung auflisten | Parameter | Typ | Beschreibung | | --------- | ---- | ----------- | -| `success` | boolean | Status des Operationserfolgs | -| `output` | object | Liste der Kontakte | +| `contacts` | array | Array von Kontaktobjekten | ### `intercom_search_contacts` @@ -140,8 +136,7 @@ Suche nach Kontakten in Intercom mit einer Abfrage | Parameter | Typ | Beschreibung | | --------- | ---- | ----------- | -| `success` | boolean | Status des Operationserfolgs | -| `output` | object | Suchergebnisse | +| `contacts` | array | Array von übereinstimmenden Kontaktobjekten | ### `intercom_delete_contact` @@ -157,8 +152,9 @@ Einen Kontakt aus Intercom nach ID löschen | Parameter | Typ | Beschreibung | | --------- | ---- | ----------- | -| `success` | boolean | Status des Operationserfolgs | -| `output` | object | Löschergebnis | +| `id` | string | ID des gelöschten Kontakts | +| `deleted` | boolean | Ob der Kontakt gelöscht wurde | +| `metadata` | object | Metadaten der Operation | ### `intercom_create_company` @@ -182,8 +178,7 @@ Ein Unternehmen in Intercom erstellen oder aktualisieren | Parameter | Typ | Beschreibung | | --------- | ---- | ----------- | -| `success` | boolean | Status des Operationserfolgs | -| `output` | object | Erstellte oder aktualisierte Unternehmensdaten | +| `company` | object | Erstelltes oder aktualisiertes Unternehmensobjekt | ### `intercom_get_company` @@ -199,8 +194,7 @@ Ein einzelnes Unternehmen anhand der ID von Intercom abrufen | Parameter | Typ | Beschreibung | | --------- | ---- | ----------- | -| `success` | boolean | Status des Operationserfolgs | -| `output` | object | Unternehmensdaten | +| `company` | object | Unternehmensobjekt | ### `intercom_list_companies` @@ -218,8 +212,7 @@ Listet alle Unternehmen von Intercom mit Paginierungsunterstützung auf. Hinweis | Parameter | Typ | Beschreibung | | --------- | ---- | ----------- | -| `success` | boolean | Status des Operationserfolgs | -| `output` | object | Liste der Unternehmen | +| `companies` | array | Array von Unternehmensobjekten | ### `intercom_get_conversation` @@ -237,8 +230,7 @@ Eine einzelne Konversation anhand der ID von Intercom abrufen | Parameter | Typ | Beschreibung | | --------- | ---- | ----------- | -| `success` | boolean | Status des Operationserfolgs | -| `output` | object | Konversationsdaten | +| `conversation` | object | Konversationsobjekt | ### `intercom_list_conversations` @@ -257,8 +249,7 @@ Alle Konversationen von Intercom mit Paginierungsunterstützung auflisten | Parameter | Typ | Beschreibung | | --------- | ---- | ----------- | -| `success` | boolean | Status des Operationserfolgs | -| `output` | object | Liste der Konversationen | +| `conversations` | array | Array von Konversationsobjekten | ### `intercom_reply_conversation` @@ -279,8 +270,7 @@ Als Administrator auf eine Konversation in Intercom antworten | Parameter | Typ | Beschreibung | | --------- | ---- | ----------- | -| `success` | boolean | Status des Operationserfolgs | -| `output` | object | Aktualisierte Konversation mit Antwort | +| `conversation` | object | Aktualisiertes Konversationsobjekt | ### `intercom_search_conversations` @@ -300,8 +290,7 @@ Nach Konversationen in Intercom mit einer Abfrage suchen | Parameter | Typ | Beschreibung | | --------- | ---- | ----------- | -| `success` | boolean | Status des Operationserfolgs | -| `output` | object | Suchergebnisse | +| `conversations` | array | Array von übereinstimmenden Konversationsobjekten | ### `intercom_create_ticket` @@ -321,10 +310,9 @@ Ein neues Ticket in Intercom erstellen #### Output -| Parameter | Type | Beschreibung | +| Parameter | Typ | Beschreibung | | --------- | ---- | ----------- | -| `success` | boolean | Erfolgsstatus der Operation | -| `output` | object | Erstellte Ticket-Daten | +| `ticket` | object | Erstelltes Ticket-Objekt | ### `intercom_get_ticket` @@ -338,10 +326,9 @@ Ein einzelnes Ticket anhand der ID von Intercom abrufen #### Output -| Parameter | Type | Beschreibung | +| Parameter | Typ | Beschreibung | | --------- | ---- | ----------- | -| `success` | boolean | Erfolgsstatus der Operation | -| `output` | object | Ticket-Daten | +| `ticket` | object | Ticket-Objekt | ### `intercom_create_message` @@ -363,10 +350,9 @@ Eine neue vom Administrator initiierte Nachricht in Intercom erstellen und sende #### Output -| Parameter | Type | Beschreibung | +| Parameter | Typ | Beschreibung | | --------- | ---- | ----------- | -| `success` | boolean | Erfolgsstatus der Operation | -| `output` | object | Erstellte Nachrichtendaten | +| `message` | object | Erstelltes Nachrichtenobjekt | ## Notizen diff --git a/apps/docs/content/docs/de/tools/pinecone.mdx b/apps/docs/content/docs/de/tools/pinecone.mdx index 2a53e3e103..34a2eec444 100644 --- a/apps/docs/content/docs/de/tools/pinecone.mdx +++ b/apps/docs/content/docs/de/tools/pinecone.mdx @@ -70,8 +70,7 @@ Text-Datensätze in einen Pinecone-Index einfügen oder aktualisieren | Parameter | Typ | Beschreibung | | --------- | ---- | ----------- | -| `statusText` | string | Status des Einfügevorgangs | -| `upsertedCount` | number | Anzahl der erfolgreich eingefügten Datensätze | +| `statusText` | string | Status der Upsert-Operation | ### `pinecone_search_text` diff --git a/apps/docs/content/docs/de/tools/supabase.mdx b/apps/docs/content/docs/de/tools/supabase.mdx index 90f04562d1..91ac39b87b 100644 --- a/apps/docs/content/docs/de/tools/supabase.mdx +++ b/apps/docs/content/docs/de/tools/supabase.mdx @@ -266,10 +266,11 @@ Eine Datei in einen Supabase-Speicher-Bucket hochladen | --------- | ---- | -------- | ----------- | | `projectId` | string | Ja | Ihre Supabase-Projekt-ID \(z.B. jdrkgepadsdopsntdlom\) | | `bucket` | string | Ja | Der Name des Speicher-Buckets | -| `path` | string | Ja | Der Pfad, unter dem die Datei gespeichert wird \(z.B. "ordner/datei.jpg"\) | +| `fileName` | string | Ja | Der Name der Datei \(z.B. "dokument.pdf", "bild.jpg"\) | +| `path` | string | Nein | Optionaler Ordnerpfad \(z.B. "ordner/unterordner/"\) | | `fileContent` | string | Ja | Der Dateiinhalt \(base64-kodiert für Binärdateien oder Klartext\) | | `contentType` | string | Nein | MIME-Typ der Datei \(z.B. "image/jpeg", "text/plain"\) | -| `upsert` | boolean | Nein | Wenn true, überschreibt vorhandene Datei \(Standard: false\) | +| `upsert` | boolean | Nein | Wenn true, wird die vorhandene Datei überschrieben \(Standard: false\) | | `apiKey` | string | Ja | Ihr Supabase Service Role Secret Key | #### Ausgabe diff --git a/apps/docs/content/docs/de/tools/typeform.mdx b/apps/docs/content/docs/de/tools/typeform.mdx index cc0b81877f..20109914b3 100644 --- a/apps/docs/content/docs/de/tools/typeform.mdx +++ b/apps/docs/content/docs/de/tools/typeform.mdx @@ -129,15 +129,18 @@ Vollständige Details und Struktur eines bestimmten Formulars abrufen | Parameter | Typ | Beschreibung | | --------- | ---- | ----------- | -| `id` | string | Eindeutige Formular-ID | +| `id` | string | Eindeutige Formularkennung | | `title` | string | Formulartitel | | `type` | string | Formulartyp \(form, quiz, etc.\) | | `settings` | object | Formulareinstellungen einschließlich Sprache, Fortschrittsbalken, etc. | | `theme` | object | Theme-Referenz | | `workspace` | object | Workspace-Referenz | | `fields` | array | Array von Formularfeldern/Fragen | -| `welcome_screens` | array | Array von Begrüßungsbildschirmen | -| `thankyou_screens` | array | Array von Dankesbildschirmen | +| `welcome_screens` | array | Array von Willkommensbildschirmen \(leer, wenn keine konfiguriert\) | +| `thankyou_screens` | array | Array von Danke-Bildschirmen | +| `created_at` | string | Zeitstempel der Formularerstellung \(ISO-8601-Format\) | +| `last_updated_at` | string | Zeitstempel der letzten Formularaktualisierung \(ISO-8601-Format\) | +| `published_at` | string | Zeitstempel der Formularveröffentlichung \(ISO-8601-Format\) | | `_links` | object | Links zu verwandten Ressourcen einschließlich öffentlicher Formular-URL | ### `typeform_create_form` @@ -163,7 +166,12 @@ Ein neues Formular mit Feldern und Einstellungen erstellen | `id` | string | Eindeutige Kennung des erstellten Formulars | | `title` | string | Formulartitel | | `type` | string | Formulartyp | -| `fields` | array | Array der erstellten Formularfelder | +| `settings` | object | Formulareinstellungsobjekt | +| `theme` | object | Theme-Referenz | +| `workspace` | object | Workspace-Referenz | +| `fields` | array | Array von erstellten Formularfeldern \(leer, wenn keine hinzugefügt\) | +| `welcome_screens` | array | Array von Willkommensbildschirmen \(leer, wenn keine konfiguriert\) | +| `thankyou_screens` | array | Array von Danke-Bildschirmen | | `_links` | object | Links zu verwandten Ressourcen einschließlich öffentlicher Formular-URL | ### `typeform_update_form` @@ -182,16 +190,7 @@ Ein bestehendes Formular mit JSON Patch-Operationen aktualisieren | Parameter | Typ | Beschreibung | | --------- | ---- | ----------- | -| `id` | string | Eindeutige Kennung des aktualisierten Formulars | -| `title` | string | Formulartitel | -| `type` | string | Formulartyp | -| `settings` | object | Formulareinstellungen | -| `theme` | object | Theme-Referenz | -| `workspace` | object | Workspace-Referenz | -| `fields` | array | Array von Formularfeldern | -| `welcome_screens` | array | Array von Begrüßungsbildschirmen | -| `thankyou_screens` | array | Array von Dankesbildschirmen | -| `_links` | object | Links zu verwandten Ressourcen | +| `message` | string | Erfolgsbestätigungsnachricht | ### `typeform_delete_form` diff --git a/apps/docs/content/docs/es/tools/firecrawl.mdx b/apps/docs/content/docs/es/tools/firecrawl.mdx index 486d73d9ec..f557a1e78a 100644 --- a/apps/docs/content/docs/es/tools/firecrawl.mdx +++ b/apps/docs/content/docs/es/tools/firecrawl.mdx @@ -146,6 +146,32 @@ Extrae datos estructurados de páginas web completas utilizando instrucciones en | `success` | boolean | Si la operación de extracción fue exitosa | | `data` | object | Datos estructurados extraídos según el esquema o indicación | +### `firecrawl_agent` + +Agente autónomo de extracción de datos web. Busca y recopila información basándose en instrucciones en lenguaje natural sin requerir URLs específicas. + +#### Entrada + +| Parámetro | Tipo | Obligatorio | Descripción | +| --------- | ---- | -------- | ----------- | +| `prompt` | string | Sí | Descripción en lenguaje natural de los datos a extraer (máx. 10.000 caracteres) | +| `urls` | json | No | Array opcional de URLs en las que enfocar al agente | +| `schema` | json | No | Esquema JSON que define la estructura de los datos a extraer | +| `maxCredits` | number | No | Créditos máximos a gastar en esta tarea del agente | +| `strictConstrainToURLs` | boolean | No | Si es true, el agente solo visitará las URLs proporcionadas en el array urls | +| `apiKey` | string | Sí | Clave API de Firecrawl | + +#### Salida + +| Parámetro | Tipo | Descripción | +| --------- | ---- | ----------- | +| `success` | boolean | Si la operación del agente fue exitosa | +| `status` | string | Estado actual del trabajo del agente (processing, completed, failed) | +| `data` | object | Datos extraídos por el agente | +| `creditsUsed` | number | Número de créditos consumidos por esta tarea del agente | +| `expiresAt` | string | Marca de tiempo de cuándo expiran los resultados (24 horas) | +| `sources` | object | Array de URLs fuente utilizadas por el agente | + ## Notas - Categoría: `tools` diff --git a/apps/docs/content/docs/es/tools/intercom.mdx b/apps/docs/content/docs/es/tools/intercom.mdx index ae29cfb2a3..01ab3b26bd 100644 --- a/apps/docs/content/docs/es/tools/intercom.mdx +++ b/apps/docs/content/docs/es/tools/intercom.mdx @@ -55,8 +55,7 @@ Crear un nuevo contacto en Intercom con email, external_id o rol | Parámetro | Tipo | Descripción | | --------- | ---- | ----------- | -| `success` | boolean | Estado de éxito de la operación | -| `output` | object | Datos del contacto creado | +| `contact` | object | Objeto de contacto creado | ### `intercom_get_contact` @@ -72,8 +71,7 @@ Obtener un solo contacto por ID desde Intercom | Parámetro | Tipo | Descripción | | --------- | ---- | ----------- | -| `success` | boolean | Estado de éxito de la operación | -| `output` | object | Datos del contacto | +| `contact` | object | Objeto de contacto | ### `intercom_update_contact` @@ -101,8 +99,7 @@ Actualizar un contacto existente en Intercom | Parámetro | Tipo | Descripción | | --------- | ---- | ----------- | -| `success` | boolean | Estado de éxito de la operación | -| `output` | object | Datos del contacto actualizado | +| `contact` | object | Objeto de contacto actualizado | ### `intercom_list_contacts` @@ -119,8 +116,7 @@ Listar todos los contactos de Intercom con soporte de paginación | Parámetro | Tipo | Descripción | | --------- | ---- | ----------- | -| `success` | boolean | Estado de éxito de la operación | -| `output` | object | Lista de contactos | +| `contacts` | array | Array de objetos de contacto | ### `intercom_search_contacts` @@ -140,8 +136,7 @@ Buscar contactos en Intercom usando una consulta | Parámetro | Tipo | Descripción | | --------- | ---- | ----------- | -| `success` | boolean | Estado de éxito de la operación | -| `output` | object | Resultados de la búsqueda | +| `contacts` | array | Array de objetos de contacto coincidentes | ### `intercom_delete_contact` @@ -157,8 +152,9 @@ Eliminar un contacto de Intercom por ID | Parámetro | Tipo | Descripción | | --------- | ---- | ----------- | -| `success` | boolean | Estado de éxito de la operación | -| `output` | object | Resultado de la eliminación | +| `id` | string | ID del contacto eliminado | +| `deleted` | boolean | Si el contacto fue eliminado | +| `metadata` | object | Metadatos de la operación | ### `intercom_create_company` @@ -182,8 +178,7 @@ Crear o actualizar una empresa en Intercom | Parámetro | Tipo | Descripción | | --------- | ---- | ----------- | -| `success` | boolean | Estado de éxito de la operación | -| `output` | object | Datos de la empresa creada o actualizada | +| `company` | object | Objeto de empresa creado o actualizado | ### `intercom_get_company` @@ -199,8 +194,7 @@ Recuperar una única empresa por ID desde Intercom | Parámetro | Tipo | Descripción | | --------- | ---- | ----------- | -| `success` | boolean | Estado de éxito de la operación | -| `output` | object | Datos de la empresa | +| `company` | object | Objeto de empresa | ### `intercom_list_companies` @@ -218,8 +212,7 @@ Lista todas las empresas de Intercom con soporte de paginación. Nota: Este endp | Parámetro | Tipo | Descripción | | --------- | ---- | ----------- | -| `success` | boolean | Estado de éxito de la operación | -| `output` | object | Lista de empresas | +| `companies` | array | Array de objetos de empresa | ### `intercom_get_conversation` @@ -237,8 +230,7 @@ Recuperar una sola conversación por ID desde Intercom | Parámetro | Tipo | Descripción | | --------- | ---- | ----------- | -| `success` | boolean | Estado de éxito de la operación | -| `output` | object | Datos de la conversación | +| `conversation` | object | Objeto de conversación | ### `intercom_list_conversations` @@ -257,8 +249,7 @@ Listar todas las conversaciones de Intercom con soporte de paginación | Parámetro | Tipo | Descripción | | --------- | ---- | ----------- | -| `success` | boolean | Estado de éxito de la operación | -| `output` | object | Lista de conversaciones | +| `conversations` | array | Array de objetos de conversación | ### `intercom_reply_conversation` @@ -279,8 +270,7 @@ Responder a una conversación como administrador en Intercom | Parámetro | Tipo | Descripción | | --------- | ---- | ----------- | -| `success` | boolean | Estado de éxito de la operación | -| `output` | object | Conversación actualizada con respuesta | +| `conversation` | object | Objeto de conversación actualizado | ### `intercom_search_conversations` @@ -300,8 +290,7 @@ Buscar conversaciones en Intercom usando una consulta | Parámetro | Tipo | Descripción | | --------- | ---- | ----------- | -| `success` | boolean | Estado de éxito de la operación | -| `output` | object | Resultados de la búsqueda | +| `conversations` | array | Array de objetos de conversación coincidentes | ### `intercom_create_ticket` @@ -323,8 +312,7 @@ Crear un nuevo ticket en Intercom | Parámetro | Tipo | Descripción | | --------- | ---- | ----------- | -| `success` | boolean | Estado de éxito de la operación | -| `output` | object | Datos del ticket creado | +| `ticket` | object | Objeto de ticket creado | ### `intercom_get_ticket` @@ -340,8 +328,7 @@ Recuperar un solo ticket por ID desde Intercom | Parámetro | Tipo | Descripción | | --------- | ---- | ----------- | -| `success` | boolean | Estado de éxito de la operación | -| `output` | object | Datos del ticket | +| `ticket` | object | Objeto de ticket | ### `intercom_create_message` @@ -365,8 +352,7 @@ Crear y enviar un nuevo mensaje iniciado por el administrador en Intercom | Parámetro | Tipo | Descripción | | --------- | ---- | ----------- | -| `success` | boolean | Estado de éxito de la operación | -| `output` | object | Datos del mensaje creado | +| `message` | object | Objeto de mensaje creado | ## Notas diff --git a/apps/docs/content/docs/es/tools/pinecone.mdx b/apps/docs/content/docs/es/tools/pinecone.mdx index be2a5bd0bc..713564004f 100644 --- a/apps/docs/content/docs/es/tools/pinecone.mdx +++ b/apps/docs/content/docs/es/tools/pinecone.mdx @@ -70,8 +70,7 @@ Insertar o actualizar registros de texto en un índice de Pinecone | Parámetro | Tipo | Descripción | | --------- | ---- | ----------- | -| `statusText` | string | Estado de la operación de inserción | -| `upsertedCount` | number | Número de registros insertados correctamente | +| `statusText` | string | Estado de la operación de upsert | ### `pinecone_search_text` diff --git a/apps/docs/content/docs/es/tools/supabase.mdx b/apps/docs/content/docs/es/tools/supabase.mdx index 1feae9393f..9e50d3d294 100644 --- a/apps/docs/content/docs/es/tools/supabase.mdx +++ b/apps/docs/content/docs/es/tools/supabase.mdx @@ -266,7 +266,8 @@ Subir un archivo a un bucket de almacenamiento de Supabase | --------- | ---- | -------- | ----------- | | `projectId` | string | Sí | ID de tu proyecto Supabase \(p. ej., jdrkgepadsdopsntdlom\) | | `bucket` | string | Sí | El nombre del bucket de almacenamiento | -| `path` | string | Sí | La ruta donde se almacenará el archivo \(p. ej., "carpeta/archivo.jpg"\) | +| `fileName` | string | Sí | El nombre del archivo \(p. ej., "documento.pdf", "imagen.jpg"\) | +| `path` | string | No | Ruta de carpeta opcional \(p. ej., "carpeta/subcarpeta/"\) | | `fileContent` | string | Sí | El contenido del archivo \(codificado en base64 para archivos binarios, o texto plano\) | | `contentType` | string | No | Tipo MIME del archivo \(p. ej., "image/jpeg", "text/plain"\) | | `upsert` | boolean | No | Si es verdadero, sobrescribe el archivo existente \(predeterminado: false\) | diff --git a/apps/docs/content/docs/es/tools/typeform.mdx b/apps/docs/content/docs/es/tools/typeform.mdx index 33a925e155..86a2ccc317 100644 --- a/apps/docs/content/docs/es/tools/typeform.mdx +++ b/apps/docs/content/docs/es/tools/typeform.mdx @@ -136,9 +136,12 @@ Recuperar detalles completos y estructura de un formulario específico | `theme` | object | Referencia del tema | | `workspace` | object | Referencia del espacio de trabajo | | `fields` | array | Array de campos/preguntas del formulario | -| `welcome_screens` | array | Array de pantallas de bienvenida | +| `welcome_screens` | array | Array de pantallas de bienvenida \(vacío si no hay ninguna configurada\) | | `thankyou_screens` | array | Array de pantallas de agradecimiento | -| `_links` | object | Enlaces a recursos relacionados incluyendo URL pública del formulario | +| `created_at` | string | Marca de tiempo de creación del formulario \(formato ISO 8601\) | +| `last_updated_at` | string | Marca de tiempo de última actualización del formulario \(formato ISO 8601\) | +| `published_at` | string | Marca de tiempo de publicación del formulario \(formato ISO 8601\) | +| `_links` | object | Enlaces de recursos relacionados incluyendo URL pública del formulario | ### `typeform_create_form` @@ -163,8 +166,13 @@ Crear un nuevo formulario con campos y configuraciones | `id` | string | Identificador único del formulario creado | | `title` | string | Título del formulario | | `type` | string | Tipo de formulario | -| `fields` | array | Array de campos del formulario creado | -| `_links` | object | Enlaces a recursos relacionados incluyendo URL pública del formulario | +| `settings` | object | Objeto de configuración del formulario | +| `theme` | object | Referencia del tema | +| `workspace` | object | Referencia del espacio de trabajo | +| `fields` | array | Array de campos del formulario creados \(vacío si no se agregó ninguno\) | +| `welcome_screens` | array | Array de pantallas de bienvenida \(vacío si no hay ninguna configurada\) | +| `thankyou_screens` | array | Array de pantallas de agradecimiento | +| `_links` | object | Enlaces de recursos relacionados incluyendo URL pública del formulario | ### `typeform_update_form` @@ -182,16 +190,7 @@ Actualizar un formulario existente usando operaciones JSON Patch | Parámetro | Tipo | Descripción | | --------- | ---- | ----------- | -| `id` | string | Identificador único del formulario actualizado | -| `title` | string | Título del formulario | -| `type` | string | Tipo de formulario | -| `settings` | object | Configuración del formulario | -| `theme` | object | Referencia del tema | -| `workspace` | object | Referencia del espacio de trabajo | -| `fields` | array | Array de campos del formulario | -| `welcome_screens` | array | Array de pantallas de bienvenida | -| `thankyou_screens` | array | Array de pantallas de agradecimiento | -| `_links` | object | Enlaces a recursos relacionados | +| `message` | string | Mensaje de confirmación de éxito | ### `typeform_delete_form` diff --git a/apps/docs/content/docs/fr/tools/firecrawl.mdx b/apps/docs/content/docs/fr/tools/firecrawl.mdx index af64244467..b2aa9a8985 100644 --- a/apps/docs/content/docs/fr/tools/firecrawl.mdx +++ b/apps/docs/content/docs/fr/tools/firecrawl.mdx @@ -146,6 +146,32 @@ Extrayez des données structurées de pages web entières à l'aide d'instructio | `success` | boolean | Indique si l'opération d'extraction a réussi | | `data` | object | Données structurées extraites selon le schéma ou l'invite | +### `firecrawl_agent` + +Agent autonome d'extraction de données web. Recherche et collecte des informations basées sur des instructions en langage naturel sans nécessiter d'URLs spécifiques. + +#### Entrée + +| Paramètre | Type | Obligatoire | Description | +| --------- | ---- | ----------- | ----------- | +| `prompt` | string | Oui | Description en langage naturel des données à extraire (max 10 000 caractères) | +| `urls` | json | Non | Tableau optionnel d'URLs sur lesquelles concentrer l'agent | +| `schema` | json | Non | Schéma JSON définissant la structure des données à extraire | +| `maxCredits` | number | Non | Nombre maximum de crédits à dépenser pour cette tâche d'agent | +| `strictConstrainToURLs` | boolean | Non | Si true, l'agent visitera uniquement les URLs fournies dans le tableau urls | +| `apiKey` | string | Oui | Clé API Firecrawl | + +#### Sortie + +| Paramètre | Type | Description | +| --------- | ---- | ----------- | +| `success` | boolean | Indique si l'opération de l'agent a réussi | +| `status` | string | Statut actuel de la tâche de l'agent (processing, completed, failed) | +| `data` | object | Données extraites par l'agent | +| `creditsUsed` | number | Nombre de crédits consommés par cette tâche d'agent | +| `expiresAt` | string | Horodatage d'expiration des résultats (24 heures) | +| `sources` | object | Tableau des URLs sources utilisées par l'agent | + ## Remarques - Catégorie : `tools` diff --git a/apps/docs/content/docs/fr/tools/intercom.mdx b/apps/docs/content/docs/fr/tools/intercom.mdx index c8ba7ba2af..9aaa5eda41 100644 --- a/apps/docs/content/docs/fr/tools/intercom.mdx +++ b/apps/docs/content/docs/fr/tools/intercom.mdx @@ -56,8 +56,7 @@ Créer un nouveau contact dans Intercom avec email, external_id ou role | Paramètre | Type | Description | | --------- | ---- | ----------- | -| `success` | boolean | Statut de réussite de l'opération | -| `output` | object | Données du contact créé | +| `contact` | object | Objet contact créé | ### `intercom_get_contact` @@ -73,8 +72,7 @@ Obtenir un seul contact par ID depuis Intercom | Paramètre | Type | Description | | --------- | ---- | ----------- | -| `success` | boolean | Statut de réussite de l'opération | -| `output` | object | Données du contact | +| `contact` | object | Objet contact | ### `intercom_update_contact` @@ -102,8 +100,7 @@ Mettre à jour un contact existant dans Intercom | Paramètre | Type | Description | | --------- | ---- | ----------- | -| `success` | boolean | Statut de réussite de l'opération | -| `output` | object | Données du contact mises à jour | +| `contact` | object | Objet contact mis à jour | ### `intercom_list_contacts` @@ -120,8 +117,7 @@ Lister tous les contacts d'Intercom avec prise en charge de la pagination | Paramètre | Type | Description | | --------- | ---- | ----------- | -| `success` | booléen | Statut de réussite de l'opération | -| `output` | objet | Liste des contacts | +| `contacts` | array | Tableau d'objets contact | ### `intercom_search_contacts` @@ -141,8 +137,7 @@ Rechercher des contacts dans Intercom à l'aide d'une requête | Paramètre | Type | Description | | --------- | ---- | ----------- | -| `success` | booléen | Statut de réussite de l'opération | -| `output` | objet | Résultats de la recherche | +| `contacts` | array | Tableau d'objets contact correspondants | ### `intercom_delete_contact` @@ -158,8 +153,9 @@ Supprimer un contact d'Intercom par ID | Paramètre | Type | Description | | --------- | ---- | ----------- | -| `success` | booléen | Statut de réussite de l'opération | -| `output` | objet | Résultat de la suppression | +| `id` | string | ID du contact supprimé | +| `deleted` | boolean | Indique si le contact a été supprimé | +| `metadata` | object | Métadonnées de l'opération | ### `intercom_create_company` @@ -183,8 +179,7 @@ Créer ou mettre à jour une entreprise dans Intercom | Paramètre | Type | Description | | --------- | ---- | ----------- | -| `success` | booléen | Statut de réussite de l'opération | -| `output` | objet | Données de l'entreprise créée ou mise à jour | +| `company` | object | Objet entreprise créé ou mis à jour | ### `intercom_get_company` @@ -200,8 +195,7 @@ Récupérer une seule entreprise par ID depuis Intercom | Paramètre | Type | Description | | --------- | ---- | ----------- | -| `success` | booléen | Statut de réussite de l'opération | -| `output` | objet | Données de l'entreprise | +| `company` | object | Objet entreprise | ### `intercom_list_companies` @@ -219,8 +213,7 @@ Liste toutes les entreprises d'Intercom avec prise en charge de la pagination. R | Paramètre | Type | Description | | --------- | ---- | ----------- | -| `success` | boolean | Statut de réussite de l'opération | -| `output` | object | Liste des entreprises | +| `companies` | array | Tableau d'objets entreprise | ### `intercom_get_conversation` @@ -238,8 +231,7 @@ Récupérer une seule conversation par ID depuis Intercom | Paramètre | Type | Description | | --------- | ---- | ----------- | -| `success` | boolean | Statut de réussite de l'opération | -| `output` | object | Données de la conversation | +| `conversation` | object | Objet conversation | ### `intercom_list_conversations` @@ -258,8 +250,7 @@ Lister toutes les conversations depuis Intercom avec prise en charge de la pagin | Paramètre | Type | Description | | --------- | ---- | ----------- | -| `success` | boolean | Statut de réussite de l'opération | -| `output` | object | Liste des conversations | +| `conversations` | array | Tableau d'objets conversation | ### `intercom_reply_conversation` @@ -280,8 +271,7 @@ Répondre à une conversation en tant qu'administrateur dans Intercom | Paramètre | Type | Description | | --------- | ---- | ----------- | -| `success` | boolean | Statut de réussite de l'opération | -| `output` | object | Conversation mise à jour avec la réponse | +| `conversation` | object | Objet conversation mis à jour | ### `intercom_search_conversations` @@ -301,8 +291,7 @@ Rechercher des conversations dans Intercom à l'aide d'une requête | Paramètre | Type | Description | | --------- | ---- | ----------- | -| `success` | boolean | Statut de réussite de l'opération | -| `output` | object | Résultats de la recherche | +| `conversations` | array | Tableau d'objets conversation correspondants | ### `intercom_create_ticket` @@ -324,8 +313,7 @@ Créer un nouveau ticket dans Intercom | Paramètre | Type | Description | | --------- | ---- | ----------- | -| `success` | boolean | Statut de réussite de l'opération | -| `output` | object | Données du ticket créé | +| `ticket` | object | Objet ticket créé | ### `intercom_get_ticket` @@ -341,8 +329,7 @@ Récupérer un ticket unique par ID depuis Intercom | Paramètre | Type | Description | | --------- | ---- | ----------- | -| `success` | boolean | Statut de réussite de l'opération | -| `output` | object | Données du ticket | +| `ticket` | object | Objet ticket | ### `intercom_create_message` @@ -366,8 +353,7 @@ Créer et envoyer un nouveau message initié par l'administrateur dans Intercom | Paramètre | Type | Description | | --------- | ---- | ----------- | -| `success` | boolean | Statut de réussite de l'opération | -| `output` | object | Données du message créé | +| `message` | object | Objet message créé | ## Notes diff --git a/apps/docs/content/docs/fr/tools/pinecone.mdx b/apps/docs/content/docs/fr/tools/pinecone.mdx index 19a3738503..de86e7af22 100644 --- a/apps/docs/content/docs/fr/tools/pinecone.mdx +++ b/apps/docs/content/docs/fr/tools/pinecone.mdx @@ -70,8 +70,7 @@ Insérer ou mettre à jour des enregistrements textuels dans un index Pinecone | Paramètre | Type | Description | | --------- | ---- | ----------- | -| `statusText` | chaîne | Statut de l'opération d'insertion | -| `upsertedCount` | nombre | Nombre d'enregistrements insérés avec succès | +| `statusText` | string | Statut de l'opération d'insertion ou de mise à jour | ### `pinecone_search_text` diff --git a/apps/docs/content/docs/fr/tools/supabase.mdx b/apps/docs/content/docs/fr/tools/supabase.mdx index a7a8def647..ad95a25c36 100644 --- a/apps/docs/content/docs/fr/tools/supabase.mdx +++ b/apps/docs/content/docs/fr/tools/supabase.mdx @@ -266,7 +266,8 @@ Téléverser un fichier vers un bucket de stockage Supabase | --------- | ---- | ----------- | ----------- | | `projectId` | string | Oui | L'ID de votre projet Supabase \(ex. : jdrkgepadsdopsntdlom\) | | `bucket` | string | Oui | Le nom du bucket de stockage | -| `path` | string | Oui | Le chemin où le fichier sera stocké \(ex. : "dossier/fichier.jpg"\) | +| `fileName` | string | Oui | Le nom du fichier \(ex. : "document.pdf", "image.jpg"\) | +| `path` | string | Non | Chemin de dossier optionnel \(ex. : "dossier/sousdossier/"\) | | `fileContent` | string | Oui | Le contenu du fichier \(encodé en base64 pour les fichiers binaires, ou texte brut\) | | `contentType` | string | Non | Type MIME du fichier \(ex. : "image/jpeg", "text/plain"\) | | `upsert` | boolean | Non | Si vrai, écrase le fichier existant \(par défaut : false\) | diff --git a/apps/docs/content/docs/fr/tools/typeform.mdx b/apps/docs/content/docs/fr/tools/typeform.mdx index 9a3373390a..d8764b26fb 100644 --- a/apps/docs/content/docs/fr/tools/typeform.mdx +++ b/apps/docs/content/docs/fr/tools/typeform.mdx @@ -132,13 +132,16 @@ Récupérer les détails complets et la structure d'un formulaire spécifique | `id` | chaîne | Identifiant unique du formulaire | | `title` | chaîne | Titre du formulaire | | `type` | chaîne | Type de formulaire \(form, quiz, etc.\) | -| `settings` | objet | Paramètres du formulaire incluant langue, barre de progression, etc. | +| `settings` | objet | Paramètres du formulaire incluant la langue, la barre de progression, etc. | | `theme` | objet | Référence du thème | | `workspace` | objet | Référence de l'espace de travail | | `fields` | tableau | Tableau des champs/questions du formulaire | -| `welcome_screens` | tableau | Tableau des écrans d'accueil | +| `welcome_screens` | tableau | Tableau des écrans d'accueil \(vide si aucun n'est configuré\) | | `thankyou_screens` | tableau | Tableau des écrans de remerciement | -| `_links` | objet | Liens vers les ressources associées, y compris l'URL publique du formulaire | +| `created_at` | chaîne | Horodatage de création du formulaire \(format ISO 8601\) | +| `last_updated_at` | chaîne | Horodatage de dernière mise à jour du formulaire \(format ISO 8601\) | +| `published_at` | chaîne | Horodatage de publication du formulaire \(format ISO 8601\) | +| `_links` | objet | Liens vers les ressources associées incluant l'URL publique du formulaire | ### `typeform_create_form` @@ -163,8 +166,13 @@ Créer un nouveau formulaire avec champs et paramètres | `id` | chaîne | Identifiant unique du formulaire créé | | `title` | chaîne | Titre du formulaire | | `type` | chaîne | Type de formulaire | -| `fields` | tableau | Tableau des champs du formulaire créé | -| `_links` | objet | Liens vers les ressources associées, y compris l'URL publique du formulaire | +| `settings` | objet | Objet de paramètres du formulaire | +| `theme` | objet | Référence du thème | +| `workspace` | objet | Référence de l'espace de travail | +| `fields` | tableau | Tableau des champs du formulaire créés \(vide si aucun n'a été ajouté\) | +| `welcome_screens` | tableau | Tableau des écrans d'accueil \(vide si aucun n'est configuré\) | +| `thankyou_screens` | tableau | Tableau des écrans de remerciement | +| `_links` | objet | Liens vers les ressources associées incluant l'URL publique du formulaire | ### `typeform_update_form` @@ -182,16 +190,7 @@ Mettre à jour un formulaire existant à l'aide d'opérations JSON Patch | Paramètre | Type | Description | | --------- | ---- | ----------- | -| `id` | chaîne | Identifiant unique du formulaire mis à jour | -| `title` | chaîne | Titre du formulaire | -| `type` | chaîne | Type de formulaire | -| `settings` | objet | Paramètres du formulaire | -| `theme` | objet | Référence du thème | -| `workspace` | objet | Référence de l'espace de travail | -| `fields` | tableau | Tableau des champs du formulaire | -| `welcome_screens` | tableau | Tableau des écrans d'accueil | -| `thankyou_screens` | tableau | Tableau des écrans de remerciement | -| `_links` | objet | Liens vers les ressources associées | +| `message` | chaîne | Message de confirmation de succès | ### `typeform_delete_form` diff --git a/apps/docs/content/docs/ja/tools/firecrawl.mdx b/apps/docs/content/docs/ja/tools/firecrawl.mdx index f4cbbd6e65..67eff8f75b 100644 --- a/apps/docs/content/docs/ja/tools/firecrawl.mdx +++ b/apps/docs/content/docs/ja/tools/firecrawl.mdx @@ -146,7 +146,33 @@ Firecrawlを使用してウェブ上の情報を検索します | `success` | boolean | 抽出操作が成功したかどうか | | `data` | object | スキーマまたはプロンプトに従って抽出された構造化データ | -## 注意事項 +### `firecrawl_agent` -- カテゴリー: `tools` -- タイプ: `firecrawl` +自律型ウェブデータ抽出エージェント。特定のURLを必要とせず、自然言語プロンプトに基づいて情報を検索・収集します。 + +#### 入力 + +| パラメータ | 型 | 必須 | 説明 | +| --------- | ---- | -------- | ----------- | +| `prompt` | string | はい | 抽出するデータの自然言語による説明(最大10,000文字) | +| `urls` | json | いいえ | エージェントが焦点を当てるURLの配列(オプション) | +| `schema` | json | いいえ | 抽出するデータの構造を定義するJSONスキーマ | +| `maxCredits` | number | いいえ | このエージェントタスクに使用する最大クレジット数 | +| `strictConstrainToURLs` | boolean | いいえ | trueの場合、エージェントはurls配列で提供されたURLのみを訪問します | +| `apiKey` | string | はい | Firecrawl APIキー | + +#### 出力 + +| パラメータ | 型 | 説明 | +| --------- | ---- | ----------- | +| `success` | boolean | エージェント操作が成功したかどうか | +| `status` | string | エージェントジョブの現在のステータス(processing、completed、failed) | +| `data` | object | エージェントから抽出されたデータ | +| `creditsUsed` | number | このエージェントタスクで消費されたクレジット数 | +| `expiresAt` | string | 結果の有効期限のタイムスタンプ(24時間) | +| `sources` | object | エージェントが使用したソースURLの配列 | + +## 注記 + +- カテゴリ:`tools` +- タイプ:`firecrawl` diff --git a/apps/docs/content/docs/ja/tools/intercom.mdx b/apps/docs/content/docs/ja/tools/intercom.mdx index e66c82be21..7a68e0e0ad 100644 --- a/apps/docs/content/docs/ja/tools/intercom.mdx +++ b/apps/docs/content/docs/ja/tools/intercom.mdx @@ -55,8 +55,7 @@ Intercomをワークフローに統合します。連絡先の作成、取得、 | パラメータ | 型 | 説明 | | --------- | ---- | ----------- | -| `success` | boolean | 操作の成功ステータス | -| `output` | object | 作成された連絡先データ | +| `contact` | object | 作成された連絡先オブジェクト | ### `intercom_get_contact` @@ -72,8 +71,7 @@ IDからIntercomの単一の連絡先を取得する | パラメータ | 型 | 説明 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功ステータス | -| `output` | object | 連絡先データ | +| `contact` | object | 連絡先オブジェクト | ### `intercom_update_contact` @@ -101,8 +99,7 @@ Intercomの既存の連絡先を更新する | パラメータ | 型 | 説明 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功ステータス | -| `output` | object | 更新された連絡先データ | +| `contact` | object | 更新された連絡先オブジェクト | ### `intercom_list_contacts` @@ -119,8 +116,7 @@ Intercomの既存の連絡先を更新する | パラメータ | 型 | 説明 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功ステータス | -| `output` | object | 連絡先リスト | +| `contacts` | array | 連絡先オブジェクトの配列 | ### `intercom_search_contacts` @@ -140,8 +136,7 @@ Intercomの既存の連絡先を更新する | パラメータ | 型 | 説明 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功ステータス | -| `output` | object | 検索結果 | +| `contacts` | array | 一致する連絡先オブジェクトの配列 | ### `intercom_delete_contact` @@ -157,8 +152,9 @@ IDでIntercomから連絡先を削除する | パラメータ | 型 | 説明 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功ステータス | -| `output` | object | 削除結果 | +| `id` | string | 削除された連絡先のID | +| `deleted` | boolean | 連絡先が削除されたかどうか | +| `metadata` | object | 操作メタデータ | ### `intercom_create_company` @@ -182,8 +178,7 @@ Intercomで企業を作成または更新する | パラメータ | 型 | 説明 | | --------- | ---- | ----------- | -| `success` | boolean | 操作の成功ステータス | -| `output` | object | 作成または更新された企業データ | +| `company` | object | 作成または更新された企業オブジェクト | ### `intercom_get_company` @@ -199,8 +194,7 @@ IDによってIntercomから単一の企業を取得する | パラメータ | 型 | 説明 | | --------- | ---- | ----------- | -| `success` | boolean | 操作の成功ステータス | -| `output` | object | 企業データ | +| `company` | object | 企業オブジェクト | ### `intercom_list_companies` @@ -218,8 +212,7 @@ IDによってIntercomから単一の企業を取得する | パラメータ | 型 | 説明 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功ステータス | -| `output` | object | 企業のリスト | +| `companies` | array | 企業オブジェクトの配列 | ### `intercom_get_conversation` @@ -237,8 +230,7 @@ IDによりIntercomから単一の会話を取得 | パラメータ | 型 | 説明 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功ステータス | -| `output` | object | 会話データ | +| `conversation` | object | 会話オブジェクト | ### `intercom_list_conversations` @@ -257,8 +249,7 @@ IDによりIntercomから単一の会話を取得 | パラメータ | 型 | 説明 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功ステータス | -| `output` | object | 会話のリスト | +| `conversations` | array | 会話オブジェクトの配列 | ### `intercom_reply_conversation` @@ -279,8 +270,7 @@ IDによりIntercomから単一の会話を取得 | パラメータ | 型 | 説明 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功ステータス | -| `output` | object | 返信を含む更新された会話 | +| `conversation` | object | 更新された会話オブジェクト | ### `intercom_search_conversations` @@ -300,8 +290,7 @@ IDによりIntercomから単一の会話を取得 | パラメータ | 型 | 説明 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功ステータス | -| `output` | object | 検索結果 | +| `conversations` | array | 一致する会話オブジェクトの配列 | ### `intercom_create_ticket` @@ -323,8 +312,7 @@ Intercomで新しいチケットを作成する | パラメータ | 型 | 説明 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功ステータス | -| `output` | object | 作成されたチケットデータ | +| `ticket` | object | 作成されたチケットオブジェクト | ### `intercom_get_ticket` @@ -340,8 +328,7 @@ IDによりIntercomから単一のチケットを取得する | パラメータ | 型 | 説明 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功ステータス | -| `output` | object | チケットデータ | +| `ticket` | object | チケットオブジェクト | ### `intercom_create_message` @@ -365,8 +352,7 @@ Intercomで管理者が開始した新しいメッセージを作成して送信 | パラメータ | 型 | 説明 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功ステータス | -| `output` | object | 作成されたメッセージデータ | +| `message` | object | 作成されたメッセージオブジェクト | ## メモ diff --git a/apps/docs/content/docs/ja/tools/pinecone.mdx b/apps/docs/content/docs/ja/tools/pinecone.mdx index 252307001e..be1964002c 100644 --- a/apps/docs/content/docs/ja/tools/pinecone.mdx +++ b/apps/docs/content/docs/ja/tools/pinecone.mdx @@ -71,7 +71,6 @@ Pineconeインデックスにテキストレコードを挿入または更新す | パラメータ | 型 | 説明 | | --------- | ---- | ----------- | | `statusText` | string | アップサート操作のステータス | -| `upsertedCount` | number | 正常にアップサートされたレコードの数 | ### `pinecone_search_text` diff --git a/apps/docs/content/docs/ja/tools/supabase.mdx b/apps/docs/content/docs/ja/tools/supabase.mdx index f0bb673225..4cf1f5c8b7 100644 --- a/apps/docs/content/docs/ja/tools/supabase.mdx +++ b/apps/docs/content/docs/ja/tools/supabase.mdx @@ -266,10 +266,11 @@ Supabaseストレージバケットにファイルをアップロードする | --------- | ---- | -------- | ----------- | | `projectId` | string | はい | あなたのSupabaseプロジェクトID(例:jdrkgepadsdopsntdlom) | | `bucket` | string | はい | ストレージバケットの名前 | -| `path` | string | はい | ファイルが保存されるパス(例:"folder/file.jpg") | +| `fileName` | string | はい | ファイルの名前(例:"document.pdf"、"image.jpg") | +| `path` | string | いいえ | オプションのフォルダパス(例:"folder/subfolder/") | | `fileContent` | string | はい | ファイルの内容(バイナリファイルの場合はbase64エンコード、またはプレーンテキスト) | | `contentType` | string | いいえ | ファイルのMIMEタイプ(例:"image/jpeg"、"text/plain") | -| `upsert` | boolean | いいえ | trueの場合、既存のファイルを上書きする(デフォルト:false) | +| `upsert` | boolean | いいえ | trueの場合、既存のファイルを上書き(デフォルト:false) | | `apiKey` | string | はい | あなたのSupabaseサービスロールシークレットキー | #### 出力 diff --git a/apps/docs/content/docs/ja/tools/typeform.mdx b/apps/docs/content/docs/ja/tools/typeform.mdx index 47087eb685..795a911a4e 100644 --- a/apps/docs/content/docs/ja/tools/typeform.mdx +++ b/apps/docs/content/docs/ja/tools/typeform.mdx @@ -129,15 +129,18 @@ Typeformアカウント内のすべてのフォームのリストを取得する | パラメータ | 型 | 説明 | | --------- | ---- | ----------- | -| `id` | string | フォームの一意の識別子 | +| `id` | string | フォームの一意識別子 | | `title` | string | フォームのタイトル | | `type` | string | フォームのタイプ(form、quizなど) | | `settings` | object | 言語、プログレスバーなどを含むフォーム設定 | | `theme` | object | テーマ参照 | | `workspace` | object | ワークスペース参照 | | `fields` | array | フォームフィールド/質問の配列 | -| `welcome_screens` | array | ウェルカム画面の配列 | +| `welcome_screens` | array | ウェルカム画面の配列(設定されていない場合は空) | | `thankyou_screens` | array | サンキュー画面の配列 | +| `created_at` | string | フォーム作成タイムスタンプ(ISO 8601形式) | +| `last_updated_at` | string | フォーム最終更新タイムスタンプ(ISO 8601形式) | +| `published_at` | string | フォーム公開タイムスタンプ(ISO 8601形式) | | `_links` | object | 公開フォームURLを含む関連リソースリンク | ### `typeform_create_form` @@ -160,10 +163,15 @@ Typeformアカウント内のすべてのフォームのリストを取得する | パラメータ | 型 | 説明 | | --------- | ---- | ----------- | -| `id` | string | 作成されたフォームの一意の識別子 | +| `id` | string | 作成されたフォームの一意識別子 | | `title` | string | フォームのタイトル | | `type` | string | フォームのタイプ | -| `fields` | array | 作成されたフォームフィールドの配列 | +| `settings` | object | フォーム設定オブジェクト | +| `theme` | object | テーマ参照 | +| `workspace` | object | ワークスペース参照 | +| `fields` | array | 作成されたフォームフィールドの配列(追加されていない場合は空) | +| `welcome_screens` | array | ウェルカム画面の配列(設定されていない場合は空) | +| `thankyou_screens` | array | サンキュー画面の配列 | | `_links` | object | 公開フォームURLを含む関連リソースリンク | ### `typeform_update_form` @@ -182,16 +190,7 @@ JSON Patchオペレーションを使用して既存のフォームを更新す | パラメータ | 型 | 説明 | | --------- | ---- | ----------- | -| `id` | string | 更新されたフォームの一意の識別子 | -| `title` | string | フォームのタイトル | -| `type` | string | フォームのタイプ | -| `settings` | object | フォーム設定 | -| `theme` | object | テーマ参照 | -| `workspace` | object | ワークスペース参照 | -| `fields` | array | フォームフィールドの配列 | -| `welcome_screens` | array | ウェルカム画面の配列 | -| `thankyou_screens` | array | サンクスページの配列 | -| `_links` | object | 関連リソースリンク | +| `message` | string | 成功確認メッセージ | ### `typeform_delete_form` diff --git a/apps/docs/content/docs/zh/tools/firecrawl.mdx b/apps/docs/content/docs/zh/tools/firecrawl.mdx index 7d6c1f5b0e..8e6eb3dd51 100644 --- a/apps/docs/content/docs/zh/tools/firecrawl.mdx +++ b/apps/docs/content/docs/zh/tools/firecrawl.mdx @@ -146,7 +146,33 @@ import { BlockInfoCard } from "@/components/ui/block-info-card" | `success` | boolean | 提取操作是否成功 | | `data` | object | 根据模式或提示提取的结构化数据 | -## 注意 +### `firecrawl_agent` -- 类别:`tools` +自主网页数据提取代理。根据自然语言提示进行搜索和信息收集,无需指定具体 URL。 + +#### 输入 + +| 参数 | 类型 | 必需 | 描述 | +| --------- | ---- | -------- | ----------- | +| `prompt` | string | 是 | 要提取数据的自然语言描述(最多 10,000 个字符) | +| `urls` | json | 否 | 可选的 URL 数组,用于聚焦代理任务 | +| `schema` | json | 否 | 定义要提取数据结构的 JSON 架构 | +| `maxCredits` | number | 否 | 此代理任务可消耗的最大积分数 | +| `strictConstrainToURLs` | boolean | 否 | 若为 true,代理仅访问 urls 数组中提供的 URL | +| `apiKey` | string | 是 | Firecrawl API 密钥 | + +#### 输出 + +| 参数 | 类型 | 描述 | +| --------- | ---- | ----------- | +| `success` | boolean | 代理操作是否成功 | +| `status` | string | 代理任务的当前状态(processing、completed、failed) | +| `data` | object | 代理提取的数据 | +| `creditsUsed` | number | 此代理任务消耗的积分数 | +| `expiresAt` | string | 结果过期的时间戳(24 小时) | +| `sources` | object | 代理使用的来源 URL 数组 | + +## 说明 + +- 分类:`tools` - 类型:`firecrawl` diff --git a/apps/docs/content/docs/zh/tools/intercom.mdx b/apps/docs/content/docs/zh/tools/intercom.mdx index 4b4b2b8743..70b478ab85 100644 --- a/apps/docs/content/docs/zh/tools/intercom.mdx +++ b/apps/docs/content/docs/zh/tools/intercom.mdx @@ -55,8 +55,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card" | 参数 | 类型 | 描述 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功状态 | -| `output` | object | 创建的联系人数据 | +| `contact` | object | 创建的联系人对象 | ### `intercom_get_contact` @@ -72,8 +71,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card" | 参数 | 类型 | 描述 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功状态 | -| `output` | object | 联系人数据 | +| `contact` | object | 联系人对象 | ### `intercom_update_contact` @@ -101,8 +99,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card" | 参数 | 类型 | 描述 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功状态 | -| `output` | object | 更新后的联系人数据 | +| `contact` | object | 更新后的联系人对象 | ### `intercom_list_contacts` @@ -119,8 +116,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card" | 参数 | 类型 | 描述 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功状态 | -| `output` | object | 联系人列表 | +| `contacts` | array | 联系人对象数组 | ### `intercom_search_contacts` @@ -140,8 +136,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card" | 参数 | 类型 | 描述 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功状态 | -| `output` | object | 搜索结果 | +| `contacts` | array | 匹配的联系人对象数组 | ### `intercom_delete_contact` @@ -157,8 +152,9 @@ import { BlockInfoCard } from "@/components/ui/block-info-card" | 参数 | 类型 | 描述 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功状态 | -| `output` | object | 删除结果 | +| `id` | string | 已删除联系人的 ID | +| `deleted` | boolean | 联系人是否已被删除 | +| `metadata` | object | 操作元数据 | ### `intercom_create_company` @@ -182,8 +178,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card" | 参数 | 类型 | 描述 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功状态 | -| `output` | object | 创建或更新的公司数据 | +| `company` | object | 新建或更新的公司对象 | ### `intercom_get_company` @@ -199,8 +194,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card" | 参数 | 类型 | 描述 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功状态 | -| `output` | object | 公司数据 | +| `company` | object | 公司对象 | ### `intercom_list_companies` @@ -218,8 +212,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card" | 参数 | 类型 | 描述 | | --------- | ---- | ----------- | -| `success` | 布尔值 | 操作成功状态 | -| `output` | 对象 | 公司列表 | +| `companies` | array | 公司对象数组 | ### `intercom_get_conversation` @@ -237,8 +230,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card" | 参数 | 类型 | 描述 | | --------- | ---- | ----------- | -| `success` | 布尔值 | 操作成功状态 | -| `output` | 对象 | 会话数据 | +| `conversation` | object | 会话对象 | ### `intercom_list_conversations` @@ -257,8 +249,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card" | 参数 | 类型 | 描述 | | --------- | ---- | ----------- | -| `success` | 布尔值 | 操作成功状态 | -| `output` | 对象 | 会话列表 | +| `conversations` | array | 会话对象数组 | ### `intercom_reply_conversation` @@ -279,8 +270,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card" | 参数 | 类型 | 描述 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功状态 | -| `output` | object | 包含回复的更新对话 | +| `conversation` | object | 更新后的会话对象 | ### `intercom_search_conversations` @@ -300,8 +290,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card" | 参数 | 类型 | 描述 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功状态 | -| `output` | object | 搜索结果 | +| `conversations` | array | 匹配的会话对象数组 | ### `intercom_create_ticket` @@ -323,8 +312,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card" | 参数 | 类型 | 描述 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功状态 | -| `output` | object | 创建的工单数据 | +| `ticket` | object | 创建的工单对象 | ### `intercom_get_ticket` @@ -340,8 +328,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card" | 参数 | 类型 | 描述 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功状态 | -| `output` | object | 工单数据 | +| `ticket` | object | 工单对象 | ### `intercom_create_message` @@ -365,8 +352,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card" | 参数 | 类型 | 描述 | | --------- | ---- | ----------- | -| `success` | boolean | 操作成功状态 | -| `output` | object | 创建的消息数据 | +| `message` | object | 创建的消息对象 | ## 注意事项 diff --git a/apps/docs/content/docs/zh/tools/pinecone.mdx b/apps/docs/content/docs/zh/tools/pinecone.mdx index 4f8cf87010..a326985b3a 100644 --- a/apps/docs/content/docs/zh/tools/pinecone.mdx +++ b/apps/docs/content/docs/zh/tools/pinecone.mdx @@ -68,10 +68,9 @@ import { BlockInfoCard } from "@/components/ui/block-info-card" #### 输出 -| 参数 | 类型 | 描述 | +| 参数 | 类型 | 说明 | | --------- | ---- | ----------- | -| `statusText` | string | 插入操作的状态 | -| `upsertedCount` | number | 成功插入的记录数量 | +| `statusText` | string | upsert 操作的状态 | ### `pinecone_search_text` diff --git a/apps/docs/content/docs/zh/tools/supabase.mdx b/apps/docs/content/docs/zh/tools/supabase.mdx index c4cdcb9a11..71a132eeaf 100644 --- a/apps/docs/content/docs/zh/tools/supabase.mdx +++ b/apps/docs/content/docs/zh/tools/supabase.mdx @@ -266,10 +266,11 @@ Sim 的 Supabase 集成使您能够轻松地将代理工作流连接到您的 Su | --------- | ---- | -------- | ----------- | | `projectId` | string | 是 | 您的 Supabase 项目 ID \(例如:jdrkgepadsdopsntdlom\) | | `bucket` | string | 是 | 存储桶的名称 | -| `path` | string | 是 | 文件将存储的路径 \(例如:"folder/file.jpg"\) | -| `fileContent` | string | 是 | 文件内容 \(二进制文件为 base64 编码,或纯文本\) | -| `contentType` | string | 否 | 文件的 MIME 类型 \(例如:"image/jpeg", "text/plain"\) | -| `upsert` | boolean | 否 | 如果为 true,则覆盖现有文件 \(默认值:false\) | +| `fileName` | string | 是 | 文件名 \(例如:"document.pdf","image.jpg"\) | +| `path` | string | 否 | 可选的文件夹路径 \(例如:"folder/subfolder/"\) | +| `fileContent` | string | 是 | 文件内容(对于二进制文件为 base64 编码,或为纯文本)| +| `contentType` | string | 否 | 文件的 MIME 类型 \(例如:"image/jpeg","text/plain"\) | +| `upsert` | boolean | 否 | 如果为 true,则覆盖已存在的文件(默认值:false)| | `apiKey` | string | 是 | 您的 Supabase 服务角色密钥 | #### 输出 diff --git a/apps/docs/content/docs/zh/tools/typeform.mdx b/apps/docs/content/docs/zh/tools/typeform.mdx index 1e79963c28..3c274b9ef4 100644 --- a/apps/docs/content/docs/zh/tools/typeform.mdx +++ b/apps/docs/content/docs/zh/tools/typeform.mdx @@ -131,14 +131,18 @@ import { BlockInfoCard } from "@/components/ui/block-info-card" | --------- | ---- | ----------- | | `id` | string | 表单唯一标识符 | | `title` | string | 表单标题 | -| `type` | string | 表单类型 \(form, quiz 等\) | +| `type` | string | 表单类型 \(form、quiz 等\) | | `settings` | object | 表单设置,包括语言、进度条等 | | `theme` | object | 主题引用 | | `workspace` | object | 工作区引用 | | `fields` | array | 表单字段/问题数组 | -| `welcome_screens` | array | 欢迎页面数组 | -| `thankyou_screens` | array | 感谢页面数组 | -| `_links` | object | 包括公共表单 URL 在内的相关资源链接 | +| `welcome_screens` | array | 欢迎页数组(如未配置则为空) | +| `thankyou_screens` | array | 感谢页数组 | +| `created_at` | string | 表单创建时间戳(ISO 8601 格式) | +| `last_updated_at` | string | 表单最后更新时间戳(ISO 8601 格式) | +| `published_at` | string | 表单发布时间戳(ISO 8601 格式) | +| `_links` | object | 相关资源链接,包括公开表单 URL | + ### `typeform_create_form` @@ -160,11 +164,17 @@ import { BlockInfoCard } from "@/components/ui/block-info-card" | 参数 | 类型 | 描述 | | --------- | ---- | ----------- | -| `id` | string | 创建的表单唯一标识符 | +| `id` | string | 已创建表单的唯一标识符 | | `title` | string | 表单标题 | | `type` | string | 表单类型 | -| `fields` | array | 创建的表单字段数组 | -| `_links` | object | 包括公共表单 URL 在内的相关资源链接 | +| `settings` | object | 表单设置对象 | +| `theme` | object | 主题引用 | +| `workspace` | object | 工作区引用 | +| `fields` | array | 已创建表单字段数组(如未添加则为空) | +| `welcome_screens` | array | 欢迎页数组(如未配置则为空) | +| `thankyou_screens` | array | 感谢页数组 | +| `_links` | object | 相关资源链接,包括公开表单 URL | + ### `typeform_update_form` @@ -182,16 +192,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card" | 参数 | 类型 | 描述 | | --------- | ---- | ----------- | -| `id` | string | 更新的表单唯一标识符 | -| `title` | string | 表单标题 | -| `type` | string | 表单类型 | -| `settings` | object | 表单设置 | -| `theme` | object | 主题引用 | -| `workspace` | object | 工作区引用 | -| `fields` | array | 表单字段数组 | -| `welcome_screens` | array | 欢迎屏幕数组 | -| `thankyou_screens` | array | 感谢屏幕数组 | -| `_links` | object | 相关资源链接 | +| `message` | string | 成功确认消息 | ### `typeform_delete_form` diff --git a/apps/docs/i18n.lock b/apps/docs/i18n.lock index 91cff9ce4b..0da0a77913 100644 --- a/apps/docs/i18n.lock +++ b/apps/docs/i18n.lock @@ -503,19 +503,19 @@ checksums: content/35: 371d0e46b4bd2c23f559b8bc112f6955 content/36: 4c6a3b159dfff0106b67269130253eba content/37: bcadfc362b69078beee0088e5936c98b - content/38: 21cc925781120afc2c4568f74ed8191a + content/38: e30b26e62abc96c1ff0694762584501d content/39: 5de052cae5ada1f845f7257ba431ebd1 content/40: 1a36fc873771b68a67d95a2130487aec content/41: 371d0e46b4bd2c23f559b8bc112f6955 content/42: b000bca7bd6658d4b5d21e6c7787d05e content/43: bcadfc362b69078beee0088e5936c98b - content/44: 448922b8585b0b4599e7023c80faa449 + content/44: 186da1feb6a6565956c7ea7707b388ad content/45: 776f62636d112cbd27d5064a40e29ec9 content/46: f512a5096a1d5a4e4a0afd762152b714 content/47: 371d0e46b4bd2c23f559b8bc112f6955 content/48: 06de592289fb5f4dff42f451ebf9658a content/49: bcadfc362b69078beee0088e5936c98b - content/50: d242a9680311743714a60bf1941ef9ac + content/50: b36b602337a0a9be8720b50ed3f949d5 content/51: a4cfd36d36633eee441423283d4d5fb3 content/52: 85ea23183709f33902aec778c7cb62b0 content/53: 371d0e46b4bd2c23f559b8bc112f6955 @@ -760,7 +760,7 @@ checksums: content/71: 64c89ec9ca2719c58cfed42033a52217 content/72: ec97af83ea30e033d7b1b4ada910c03e content/73: 371d0e46b4bd2c23f559b8bc112f6955 - content/74: b6f54fba68782b589ee4dfa0aebf7adb + content/74: a3dc735b07499600ffd588b1279eea42 content/75: bcadfc362b69078beee0088e5936c98b content/76: 64d66a993e96e5544d28bc75a2d0c6d6 content/77: 0295e0cd05bbf86d6d79400d787759f5 @@ -1279,7 +1279,7 @@ checksums: content/17: 371d0e46b4bd2c23f559b8bc112f6955 content/18: 11e0f62da7bc51d4c9a94d2c60dd06ce content/19: bcadfc362b69078beee0088e5936c98b - content/20: d1fa8dd2b26e182a3a02bc996ad7dd0b + content/20: d78f8e8d74ba810e10dfbebd4423764f content/21: b72dd04e96d85431c18c28de8a6b00d7 content/22: 147ca5082380639c3168a44122a67192 content/23: 371d0e46b4bd2c23f559b8bc112f6955 @@ -3483,8 +3483,14 @@ checksums: content/38: 3e7b1f581c8ef51fb3d9b6ecff47deb4 content/39: bcadfc362b69078beee0088e5936c98b content/40: 07994574571bcaeb3b86ce92c46d0527 - content/41: b3f310d5ef115bea5a8b75bf25d7ea9a - content/42: dc809f5be4a108f769310dd8290c0db4 + content/41: 5aba0f448543bbd7559573fed02724b2 + content/42: f0cdbc370d80551a27c44588ae689f9d + content/43: 371d0e46b4bd2c23f559b8bc112f6955 + content/44: 81b12b0196aa94b6f80686641125ea3a + content/45: bcadfc362b69078beee0088e5936c98b + content/46: 326cbcf1d379181f7f53c6a9ffb271f1 + content/47: b3f310d5ef115bea5a8b75bf25d7ea9a + content/48: dc809f5be4a108f769310dd8290c0db4 bda76150deadd23f7803a15b39c4db66: meta/title: 1255b55897f2be1443d3bb8c30cd9795 meta/description: 1e7574b6666c662c08e7e256a9fceb4d @@ -47166,97 +47172,97 @@ checksums: content/11: 371d0e46b4bd2c23f559b8bc112f6955 content/12: a71a30e9f91c10daf481ea8f542e91f6 content/13: bcadfc362b69078beee0088e5936c98b - content/14: 59c08999f9c404330ebd8f8a7d21e1a1 + content/14: d3278442dbea313782edd4793be28197 content/15: 49d191d312481589419c68a5506b0d71 content/16: dddb93e063541bfb5d72b6c506d3cb7f content/17: 371d0e46b4bd2c23f559b8bc112f6955 content/18: e93f2b44f05dd87c82fe9557cd677eeb content/19: bcadfc362b69078beee0088e5936c98b - content/20: b74416361f94e71f2a94139711a5dd21 + content/20: 5079238d0092205bb1ca4ec32b8f3d97 content/21: 2e70c0a22a98675a13b493b9761ff92f content/22: 107f6e51a1e896ee4d18f8ed4f82c50f content/23: 371d0e46b4bd2c23f559b8bc112f6955 content/24: e506fbf4b80deecb3b44b29b8dc3438b content/25: bcadfc362b69078beee0088e5936c98b - content/26: a9096a341b00ce4f4891daaca2586d1c + content/26: 4d1f3216d2694b7409792e34a6f181e0 content/27: 934a0124aa2118682b2b17fa258ff06a content/28: aa318cc874d5936ce1f3bf9710da2a44 content/29: 371d0e46b4bd2c23f559b8bc112f6955 content/30: 660ce6e5a45abe1940974f7d818a6ee7 content/31: bcadfc362b69078beee0088e5936c98b - content/32: 551c2f007a7035ba0d48374081b02eb1 + content/32: 5e9da15383417721362c8d33b0a12fb8 content/33: 1a1e332b525e86f7fd92f9da1ac0096c content/34: 00098e1591c0f80ef6287d934d391409 content/35: 371d0e46b4bd2c23f559b8bc112f6955 content/36: e52688ff2fa61ce71026f33930e1ec86 content/37: bcadfc362b69078beee0088e5936c98b - content/38: d84fb23e5dfc9d41a177acd7dfb28e72 + content/38: ac15076b8e6cac4bf3a106ea32de661d content/39: 17be090a79154f557bc96f940c687aea content/40: bb2f63774f45f14201d5c0c110458a90 content/41: 371d0e46b4bd2c23f559b8bc112f6955 content/42: 36afb2b0539e33ff83427a91fc5ba57b content/43: bcadfc362b69078beee0088e5936c98b - content/44: 45d8bfeced635336cacc9d4a8d08dbca + content/44: 1da7a9f86cda2b24d0e1ffd5ae167272 content/45: c76943404f9c8d34a85e6315359ed0c4 content/46: b5e111e430aa1c929fb07d5844bf65eb content/47: 371d0e46b4bd2c23f559b8bc112f6955 content/48: 6692edffddc28d3c64974ded23d1def2 content/49: bcadfc362b69078beee0088e5936c98b - content/50: dbc08cce26f9565e719891bbbf4632a9 + content/50: e7e86e6f7734e9af89b5724ac674ff2c content/51: d0ce65f5420745c45ab42b7edd135bf4 content/52: 4a3de8fb6c97898fcfa3800d149cd4e0 content/53: 371d0e46b4bd2c23f559b8bc112f6955 content/54: d16a985c206a21f4ffb1bbcdc0300c85 content/55: bcadfc362b69078beee0088e5936c98b - content/56: a7e001e39652db8eeb4d32968bda102b + content/56: a64e62cd3f79c43f9411af221e24aa9f content/57: 440f2732ad006bee8cccc975fdbf673a content/58: 7a7048c54763b0109643f37e583381ce content/59: 371d0e46b4bd2c23f559b8bc112f6955 content/60: 11ad0a529a7fcc5892ae811cde6894f6 content/61: bcadfc362b69078beee0088e5936c98b - content/62: c7055d8ce044e49929d4f005a28d7c0a + content/62: d3c54294a5180fda87c23e23d4ad17eb content/63: 2d7bad4340c1bc6a28e836e180e26c00 content/64: 576dbecf29644e7abf59d25ffda5728c content/65: 371d0e46b4bd2c23f559b8bc112f6955 content/66: 59015900ce6b64caff0784491ec59ff9 content/67: bcadfc362b69078beee0088e5936c98b - content/68: 2f225a893086726db6b6a994cc8a5e3c + content/68: 5e12d96ca701a7a8182558a4d070aed2 content/69: 63cbf703cf33e0fee06f12fb23184352 content/70: dae1fda5ec57e1b598a7e2596007a775 content/71: 371d0e46b4bd2c23f559b8bc112f6955 content/72: 757f42df5247f2e6684ab32888d30e11 content/73: bcadfc362b69078beee0088e5936c98b - content/74: 380f805a5118dd4957f4fcce41e01b86 + content/74: 46f9b95601bc643ba6175c2a0115df19 content/75: 935f1a713d05f32d3d826434a7e715ee content/76: e505d8f656fb6e3b65a98cb73d744598 content/77: 371d0e46b4bd2c23f559b8bc112f6955 content/78: 2e77859b0f2c89186fc6a2d51287ea47 content/79: bcadfc362b69078beee0088e5936c98b - content/80: 22bd99d5b844817b808b9d0d3baddac4 + content/80: b312d1e8bce1418da88cd9812096db20 content/81: e959b48af94a559e9c46cbd7653d2dd2 content/82: 5e3c04c5a9fabfceb7fcc00215f93bf9 content/83: 371d0e46b4bd2c23f559b8bc112f6955 content/84: a92b2a22061ee6fd453af32e0155f5aa content/85: bcadfc362b69078beee0088e5936c98b - content/86: d84fb23e5dfc9d41a177acd7dfb28e72 + content/86: a735b1d909700cdf6d07c1a94330a1c6 content/87: c886f11a0852010b90a1032b97118920 content/88: c60c832c08f9e1ff5f91565bf4ba549e content/89: 371d0e46b4bd2c23f559b8bc112f6955 content/90: 1545794f4e8e696db96c3b660de684ec content/91: bcadfc362b69078beee0088e5936c98b - content/92: 573530e346d195727862b03b380f40fc + content/92: 098eb544fe99ee061a081a1f2ef0e7c6 content/93: 3d31dedf076ec23547189a3eb5fe04c4 content/94: a261b9a2ef7724e4171487ef2435f259 content/95: 371d0e46b4bd2c23f559b8bc112f6955 content/96: bef786efecaaad82a34b861f37cde78f content/97: bcadfc362b69078beee0088e5936c98b - content/98: 1b166ea32dff5f8de92b256fe48200d7 + content/98: 317256505991a755bbb6d3870b778f4a content/99: e1a03f917ad8b0a1ebec9a601aa3eede content/100: 3aa857b8f85da07ee2d87e65c95b76d0 content/101: 371d0e46b4bd2c23f559b8bc112f6955 content/102: cc49a24c087d08717866a162cc47776c content/103: bcadfc362b69078beee0088e5936c98b - content/104: c6d621ee3cdc66de2c20b70a39aafe12 + content/104: 283b701d5bd6125f277a7f0ab3b4a7fe content/105: b3f310d5ef115bea5a8b75bf25d7ea9a content/106: 9d45ccf1c14d61412169be8f8510a960 9ed109808041fe9022eed66e1feedfdd: