Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/docs/content/docs/de/tools/elevenlabs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ TTS mit ElevenLabs-Stimmen konvertieren
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `audioUrl` | string | Die URL der generierten Audiodatei |
| `audioFile` | file | Die generierte Audiodatei |

## Hinweise

Expand Down
147 changes: 143 additions & 4 deletions apps/docs/content/docs/de/tools/typeform.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ In Sim erm枚glicht die Typeform-Integration Ihren Agenten, programmatisch mit Ih

## Nutzungsanleitung

Integrieren Sie Typeform in den Workflow. Kann Antworten abrufen, Dateien herunterladen und Formulareinblicke gewinnen. API-Schl眉ssel erforderlich.
Integriert Typeform in den Workflow. Kann Antworten abrufen, Dateien herunterladen und Formularstatistiken erhalten. Kann im Trigger-Modus verwendet werden, um einen Workflow auszul枚sen, wenn ein Formular abgesendet wird. Erfordert API-Schl眉ssel.

## Tools

Expand All @@ -69,9 +69,25 @@ Formularantworten von Typeform abrufen

| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `total_items` | number | Gesamtanzahl der Antworten |
| `page_count` | number | Gesamtanzahl der Seiten |
| `items` | json | Antwortelemente |
| `total_items` | number | Gesamtzahl der Antworten/Formulare |
| `page_count` | number | Gesamtseitenanzahl |
| `items` | json | Array der Antwort-/Formularelemente |
| `id` | string | Eindeutige Formular-ID |
| `title` | string | Formulartitel |
| `type` | string | Formulartyp |
| `created_at` | string | ISO-Zeitstempel der Formularerstellung |
| `last_updated_at` | string | ISO-Zeitstempel der letzten Aktualisierung |
| `settings` | json | Formulareinstellungsobjekt |
| `theme` | json | Theme-Konfigurationsobjekt |
| `workspace` | json | Workspace-Informationen |
| `fields` | json | Array der Formularfelder/Fragen |
| `thankyou_screens` | json | Array der Dankesbildschirme |
| `_links` | json | Links zu verwandten Ressourcen |
| `deleted` | boolean | Ob das Formular erfolgreich gel枚scht wurde |
| `message` | string | L枚schbest盲tigungsnachricht |
| `fileUrl` | string | URL der heruntergeladenen Datei |
| `contentType` | string | Datei-Content-Type |
| `filename` | string | Dateiname |

### `typeform_files`

Expand Down Expand Up @@ -113,6 +129,129 @@ Einblicke und Analysen f眉r Typeform-Formulare abrufen
| --------- | ---- | ----------- |
| `fields` | array | Anzahl der Benutzer, die bei diesem Feld abgebrochen haben |

### `typeform_list_forms`

Eine Liste aller Formulare in Ihrem Typeform-Konto abrufen

#### Eingabe

| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Typeform pers枚nliches Zugriffstoken |
| `search` | string | Nein | Suchanfrage zum Filtern von Formularen nach Titel |
| `page` | number | Nein | Seitennummer \(Standard: 1\) |
| `pageSize` | number | Nein | Anzahl der Formulare pro Seite \(Standard: 10, max: 200\) |
| `workspaceId` | string | Nein | Formulare nach Workspace-ID filtern |

#### Ausgabe

| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `total_items` | number | Gesamtanzahl der Formulare im Konto |
| `page_count` | number | Gesamtanzahl der verf眉gbaren Seiten |
| `items` | array | Array von Formularobjekten |

### `typeform_get_form`

Vollst盲ndige Details und Struktur eines bestimmten Formulars abrufen

#### Eingabe

| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Typeform pers枚nliches Zugriffstoken |
| `formId` | string | Ja | Eindeutige Formular-ID |

#### Ausgabe

| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `id` | string | Eindeutige Formular-ID |
| `title` | string | Formulartitel |
| `type` | string | Formulartyp \(form, quiz, etc.\) |
| `created_at` | string | ISO-Zeitstempel der Formularerstellung |
| `last_updated_at` | string | ISO-Zeitstempel der letzten Aktualisierung |
| `settings` | object | Formulareinstellungen einschlie脽lich Sprache, Fortschrittsbalken, etc. |
| `theme` | object | Theme-Konfiguration mit Farben, Schriftarten und Design-Einstellungen |
| `workspace` | object | Workspace-Informationen |

### `typeform_create_form`

Ein neues Formular mit Feldern und Einstellungen erstellen

#### Eingabe

| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Typeform pers枚nliches Zugriffstoken |
| `title` | string | Ja | Formulartitel |
| `type` | string | Nein | Formulartyp \(Standard: "form"\). Optionen: "form", "quiz" |
| `workspaceId` | string | Nein | Workspace-ID, in der das Formular erstellt werden soll |
| `fields` | json | Nein | Array von Feldobjekten, die die Formularstruktur definieren. Jedes Feld ben枚tigt: Typ, Titel und optionale Eigenschaften/Validierungen |
| `settings` | json | Nein | Formulareinstellungsobjekt \(Sprache, Fortschrittsbalken, etc.\) |
| `themeId` | string | Nein | Theme-ID, die auf das Formular angewendet werden soll |

#### Ausgabe

| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `id` | string | Eindeutige Kennung des erstellten Formulars |
| `title` | string | Formulartitel |
| `type` | string | Formulartyp |
| `created_at` | string | ISO-Zeitstempel der Formularerstellung |
| `last_updated_at` | string | ISO-Zeitstempel der letzten Aktualisierung |
| `settings` | object | Formulareinstellungen |
| `theme` | object | Angewandte Theme-Konfiguration |
| `workspace` | object | Workspace-Informationen |
| `fields` | array | Array der erstellten Formularfelder |
| `_links` | object | Links zu verwandten Ressourcen |

### `typeform_update_form`

Ein bestehendes Formular mit JSON Patch-Operationen aktualisieren

#### Eingabe

| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Typeform pers枚nliches Zugriffstoken |
| `formId` | string | Ja | Eindeutige Kennung des zu aktualisierenden Formulars |
| `operations` | json | Ja | Array von JSON Patch-Operationen \(RFC 6902\). Jede Operation ben枚tigt: op \(add/remove/replace\), path und value \(f眉r add/replace\) |

#### Ausgabe

| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `id` | string | Eindeutige Kennung des aktualisierten Formulars |
| `title` | string | Formulartitel |
| `type` | string | Formulartyp |
| `created_at` | string | ISO-Zeitstempel der Formularerstellung |
| `last_updated_at` | string | ISO-Zeitstempel der letzten Aktualisierung |
| `settings` | object | Formulareinstellungen |
| `theme` | object | Theme-Konfiguration |
| `workspace` | object | Workspace-Informationen |
| `fields` | array | Array der Formularfelder |
| `thankyou_screens` | array | Array der Dankesbildschirme |
| `_links` | object | Links zu verwandten Ressourcen |

### `typeform_delete_form`

Ein Formular und alle seine Antworten dauerhaft l枚schen

#### Eingabe

| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Typeform pers枚nliches Zugriffstoken |
| `formId` | string | Ja | Eindeutige Kennung des zu l枚schenden Formulars |

#### Ausgabe

| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `deleted` | boolean | Ob das Formular erfolgreich gel枚scht wurde |
| `message` | string | L枚schbest盲tigungsnachricht |

## Hinweise

- Kategorie: `tools`
Expand Down
1 change: 1 addition & 0 deletions apps/docs/content/docs/es/tools/elevenlabs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ Convertir TTS usando voces de ElevenLabs
| Par谩metro | Tipo | Descripci贸n |
| --------- | ---- | ----------- |
| `audioUrl` | string | La URL del audio generado |
| `audioFile` | file | El archivo de audio generado |

## Notas

Expand Down
145 changes: 142 additions & 3 deletions apps/docs/content/docs/es/tools/typeform.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ En Sim, la integraci贸n de Typeform permite a tus agentes interactuar program谩t

## Instrucciones de uso

Integra Typeform en el flujo de trabajo. Puede recuperar respuestas, descargar archivos y obtener informaci贸n de formularios. Requiere clave API.
Integra Typeform en el flujo de trabajo. Puede recuperar respuestas, descargar archivos y obtener informaci贸n de formularios. Se puede usar en modo de activaci贸n para iniciar un flujo de trabajo cuando se env铆a un formulario. Requiere clave API.

## Herramientas

Expand All @@ -69,9 +69,25 @@ Recuperar respuestas de formularios de Typeform

| Par谩metro | Tipo | Descripci贸n |
| --------- | ---- | ----------- |
| `total_items` | number | Recuento total de respuestas |
| `total_items` | number | Recuento total de respuestas/formularios |
| `page_count` | number | Recuento total de p谩ginas |
| `items` | json | Elementos de respuesta |
| `items` | json | Array de elementos de respuesta/formulario |
| `id` | string | Identificador 煤nico del formulario |
| `title` | string | T铆tulo del formulario |
| `type` | string | Tipo de formulario |
| `created_at` | string | Marca de tiempo ISO de creaci贸n del formulario |
| `last_updated_at` | string | Marca de tiempo ISO de 煤ltima actualizaci贸n |
| `settings` | json | Objeto de configuraci贸n del formulario |
| `theme` | json | Objeto de configuraci贸n del tema |
| `workspace` | json | Informaci贸n del espacio de trabajo |
| `fields` | json | Array de campos/preguntas del formulario |
| `thankyou_screens` | json | Array de pantallas de agradecimiento |
| `_links` | json | Enlaces a recursos relacionados |
| `deleted` | boolean | Si el formulario se elimin贸 correctamente |
| `message` | string | Mensaje de confirmaci贸n de eliminaci贸n |
| `fileUrl` | string | URL del archivo descargado |
| `contentType` | string | Tipo de contenido del archivo |
| `filename` | string | Nombre del archivo |

### `typeform_files`

Expand Down Expand Up @@ -113,6 +129,129 @@ Obtener informaci贸n y an谩lisis para formularios de Typeform
| --------- | ---- | ----------- |
| `fields` | array | N煤mero de usuarios que abandonaron en este campo |

### `typeform_list_forms`

Recupera una lista de todos los formularios en tu cuenta de Typeform

#### Entrada

| Par谩metro | Tipo | Obligatorio | Descripci贸n |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | S铆 | Token de acceso personal de Typeform |
| `search` | string | No | Consulta de b煤squeda para filtrar formularios por t铆tulo |
| `page` | number | No | N煤mero de p谩gina \(predeterminado: 1\) |
| `pageSize` | number | No | N煤mero de formularios por p谩gina \(predeterminado: 10, m谩x: 200\) |
| `workspaceId` | string | No | Filtrar formularios por ID de espacio de trabajo |

#### Salida

| Par谩metro | Tipo | Descripci贸n |
| --------- | ---- | ----------- |
| `total_items` | number | N煤mero total de formularios en la cuenta |
| `page_count` | number | N煤mero total de p谩ginas disponibles |
| `items` | array | Array de objetos de formulario |

### `typeform_get_form`

Recuperar detalles completos y estructura de un formulario espec铆fico

#### Entrada

| Par谩metro | Tipo | Obligatorio | Descripci贸n |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | S铆 | Token de acceso personal de Typeform |
| `formId` | string | S铆 | Identificador 煤nico del formulario |

#### Salida

| Par谩metro | Tipo | Descripci贸n |
| --------- | ---- | ----------- |
| `id` | string | Identificador 煤nico del formulario |
| `title` | string | T铆tulo del formulario |
| `type` | string | Tipo de formulario \(form, quiz, etc.\) |
| `created_at` | string | Marca de tiempo ISO de creaci贸n del formulario |
| `last_updated_at` | string | Marca de tiempo ISO de 煤ltima actualizaci贸n |
| `settings` | object | Configuraci贸n del formulario incluyendo idioma, barra de progreso, etc. |
| `theme` | object | Configuraci贸n del tema con colores, fuentes y ajustes de dise帽o |
| `workspace` | object | Informaci贸n del espacio de trabajo |

### `typeform_create_form`

Crear un nuevo formulario con campos y configuraciones

#### Entrada

| Par谩metro | Tipo | Obligatorio | Descripci贸n |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | S铆 | Token de acceso personal de Typeform |
| `title` | string | S铆 | T铆tulo del formulario |
| `type` | string | No | Tipo de formulario \(predeterminado: "form"\). Opciones: "form", "quiz" |
| `workspaceId` | string | No | ID del espacio de trabajo donde crear el formulario |
| `fields` | json | No | Array de objetos de campo que definen la estructura del formulario. Cada campo necesita: tipo, t铆tulo y propiedades/validaciones opcionales |
| `settings` | json | No | Objeto de configuraci贸n del formulario \(idioma, barra_de_progreso, etc.\) |
| `themeId` | string | No | ID del tema a aplicar al formulario |

#### Salida

| Par谩metro | Tipo | Descripci贸n |
| --------- | ---- | ----------- |
| `id` | string | Identificador 煤nico del formulario creado |
| `title` | string | T铆tulo del formulario |
| `type` | string | Tipo de formulario |
| `created_at` | string | Marca de tiempo ISO de creaci贸n del formulario |
| `last_updated_at` | string | Marca de tiempo ISO de 煤ltima actualizaci贸n |
| `settings` | object | Configuraci贸n del formulario |
| `theme` | object | Configuraci贸n del tema aplicado |
| `workspace` | object | Informaci贸n del espacio de trabajo |
| `fields` | array | Array de campos del formulario creados |
| `_links` | object | Enlaces a recursos relacionados |

### `typeform_update_form`

Actualizar un formulario existente usando operaciones JSON Patch

#### Entrada

| Par谩metro | Tipo | Obligatorio | Descripci贸n |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | S铆 | Token de acceso personal de Typeform |
| `formId` | string | S铆 | Identificador 煤nico del formulario a actualizar |
| `operations` | json | S铆 | Array de operaciones JSON Patch \(RFC 6902\). Cada operaci贸n necesita: op \(add/remove/replace\), path, y value \(para add/replace\) |

#### Salida

| Par谩metro | Tipo | Descripci贸n |
| --------- | ---- | ----------- |
| `id` | string | Identificador 煤nico del formulario actualizado |
| `title` | string | T铆tulo del formulario |
| `type` | string | Tipo de formulario |
| `created_at` | string | Marca de tiempo ISO de creaci贸n del formulario |
| `last_updated_at` | string | Marca de tiempo ISO de 煤ltima actualizaci贸n |
| `settings` | object | Configuraci贸n del formulario |
| `theme` | object | Configuraci贸n del tema |
| `workspace` | object | Informaci贸n del espacio de trabajo |
| `fields` | array | Array de campos del formulario |
| `thankyou_screens` | array | Array de pantallas de agradecimiento |
| `_links` | object | Enlaces a recursos relacionados |

### `typeform_delete_form`

Eliminar permanentemente un formulario y todas sus respuestas

#### Entrada

| Par谩metro | Tipo | Obligatorio | Descripci贸n |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | S铆 | Token de acceso personal de Typeform |
| `formId` | string | S铆 | Identificador 煤nico del formulario a eliminar |

#### Salida

| Par谩metro | Tipo | Descripci贸n |
| --------- | ---- | ----------- |
| `deleted` | boolean | Si el formulario se elimin贸 correctamente |
| `message` | string | Mensaje de confirmaci贸n de eliminaci贸n |

## Notas

- Categor铆a: `tools`
Expand Down
1 change: 1 addition & 0 deletions apps/docs/content/docs/fr/tools/elevenlabs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ Convertir TTS en utilisant les voix d'ElevenLabs
| Param猫tre | Type | Description |
| --------- | ---- | ----------- |
| `audioUrl` | string | L'URL de l'audio g茅n茅r茅 |
| `audioFile` | file | Le fichier audio g茅n茅r茅 |

## Notes

Expand Down
Loading