@scopieflows/app-avoma 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/README.md +7 -0
  2. package/package.json +28 -0
  3. package/src/i18n/de.json +67 -0
  4. package/src/i18n/es.json +67 -0
  5. package/src/i18n/fr.json +67 -0
  6. package/src/i18n/ja.json +67 -0
  7. package/src/i18n/nl.json +67 -0
  8. package/src/i18n/pt.json +67 -0
  9. package/src/i18n/translation.json +67 -0
  10. package/src/i18n/zh.json +67 -0
  11. package/src/index.d.ts +1 -0
  12. package/src/index.js +23 -0
  13. package/src/index.js.map +1 -0
  14. package/src/lib/actions/create-call.d.ts +17 -0
  15. package/src/lib/actions/create-call.js +230 -0
  16. package/src/lib/actions/create-call.js.map +1 -0
  17. package/src/lib/actions/get-meeting-recording.d.ts +3 -0
  18. package/src/lib/actions/get-meeting-recording.js +80 -0
  19. package/src/lib/actions/get-meeting-recording.js.map +1 -0
  20. package/src/lib/actions/get-meeting-transcription.d.ts +3 -0
  21. package/src/lib/actions/get-meeting-transcription.js +61 -0
  22. package/src/lib/actions/get-meeting-transcription.js.map +1 -0
  23. package/src/lib/actions/index.d.ts +3 -0
  24. package/src/lib/actions/index.js +10 -0
  25. package/src/lib/actions/index.js.map +1 -0
  26. package/src/lib/common/index.d.ts +7 -0
  27. package/src/lib/common/index.js +150 -0
  28. package/src/lib/common/index.js.map +1 -0
  29. package/src/lib/triggers/index.d.ts +4 -0
  30. package/src/lib/triggers/index.js +12 -0
  31. package/src/lib/triggers/index.js.map +1 -0
  32. package/src/lib/triggers/meeting-cancelled.d.ts +10 -0
  33. package/src/lib/triggers/meeting-cancelled.js +75 -0
  34. package/src/lib/triggers/meeting-cancelled.js.map +1 -0
  35. package/src/lib/triggers/meeting-rescheduled.d.ts +10 -0
  36. package/src/lib/triggers/meeting-rescheduled.js +75 -0
  37. package/src/lib/triggers/meeting-rescheduled.js.map +1 -0
  38. package/src/lib/triggers/new-meeting-scheduled.d.ts +10 -0
  39. package/src/lib/triggers/new-meeting-scheduled.js +75 -0
  40. package/src/lib/triggers/new-meeting-scheduled.js.map +1 -0
  41. package/src/lib/triggers/new-note.d.ts +10 -0
  42. package/src/lib/triggers/new-note.js +100 -0
  43. package/src/lib/triggers/new-note.js.map +1 -0
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # pieces-avoma
2
+
3
+ This library was generated with [Nx](https://nx.dev).
4
+
5
+ ## Building
6
+
7
+ Run `nx build pieces-avoma` to build the library.
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "@scopieflows/app-avoma",
3
+ "version": "0.1.0",
4
+ "type": "commonjs",
5
+ "main": "./src/index.js",
6
+ "types": "./src/index.d.ts",
7
+ "dependencies": {
8
+ "@sinclair/typebox": "0.34.11",
9
+ "ai": "^6.0.0",
10
+ "axios": "1.13.1",
11
+ "axios-retry": "4.4.1",
12
+ "deepmerge-ts": "7.1.0",
13
+ "form-data": "4.0.4",
14
+ "i18next": "23.13.0",
15
+ "mime-types": "2.1.35",
16
+ "nanoid": "3.3.8",
17
+ "semver": "7.6.0",
18
+ "socket.io-client": "4.8.1",
19
+ "tslib": "^2.3.0",
20
+ "zod": "4.1.13",
21
+ "@scopieflows/pieces-common": "0.11.2",
22
+ "@scopieflows/pieces-framework": "0.25.0",
23
+ "@scopieflows/shared": "0.33.0"
24
+ },
25
+ "resolutions": {
26
+ "rollup": "npm:@rollup/wasm-node"
27
+ }
28
+ }
@@ -0,0 +1,67 @@
1
+ {
2
+ "Avoma is an AI Meeting Assistant that automatically records, transcribes, and summarizes your meetings.": "Avoma ist ein KI-Meeting-Assistent, der Ihre Meetings automatisch aufzeichnet, überträgt und zusammenfasst.",
3
+ "Your Avoma API Key (Bearer token). Generate it from your Avoma API Integration settings: https://help.avoma.com/api-integration-for-avoma": "Ihr Avoma API Key (Bearer Token). Generieren Sie ihn aus Ihren Avoma API Integration Einstellungen: https://help.avoma.com/api-integration-for-avoma",
4
+ "Create Call": "Anruf erstellen",
5
+ "Get Meeting Recording": "Besprechung abrufen",
6
+ "Get Meeting Transcription": "Meeting Transkription abrufen",
7
+ "Creates a new call in Avoma": "Erstellt einen neuen Anruf in Avoma",
8
+ "Returns video and audio recording URLs for a given meeting": "Gibt URLs für Video- und Audioaufzeichnung für ein bestimmtes Meeting zurück",
9
+ "Returns transcription with speakers, timestamps, and VTT file URL": "Gibt die Transkription mit Lautsprechern, Zeitstempel und VTT-Datei zurück",
10
+ "External ID": "Externe ID",
11
+ "User Email": "Benutzer-E-Mail",
12
+ "Source": "Quelle",
13
+ "Direction": "Richtung",
14
+ "Start Time": "Startzeit",
15
+ "From Phone Number": "Von Telefonnummer",
16
+ "To Phone Number": "An Telefonnummer",
17
+ "Recording URL": "Aufnahme-URL",
18
+ "Participants": "Teilnehmer",
19
+ "End Time": "Endzeit",
20
+ "From Name": "Absendername",
21
+ "To Name": "An Name",
22
+ "Answered": "Beantwortet",
23
+ "Is Voicemail": "Ist Voicemail",
24
+ "Additional Details": "Zusätzliche Details",
25
+ "Meeting": "Meeting",
26
+ "Transcription": "Transkript",
27
+ "Unique id of the call from the dialer system like hubspot, twilio, zoom, etc.": "Einzigartige ID des Anrufs aus dem Dialer-System wie Hubspot, Dämmerung, Zoom, etc.",
28
+ "Email of the user who made or received the call. This should be an Avoma user's email.": "E-Mail des Benutzers, der den Anruf getätigt oder erhalten hat. Dies sollte die E-Mail-Adresse eines Avoma-Benutzers sein.",
29
+ "Source of the call": "Quelle des Anrufs",
30
+ "Direction of the call": "Richtung des Anrufs",
31
+ "Start time of the call": "Startzeit des Anrufs",
32
+ "Phone number from which call was made (e.g., +11234567890)": "Telefonnummer, von der aus Anruf getätigt wurde (z.B. +11234567890)",
33
+ "Phone number to which call was made (e.g., +12234567890)": "Telefonnummer, an die ein Anruf getätigt wurde (z.B. +12234567890)",
34
+ "URL of the recording of the call. This should be a public URL that Avoma can access.": "URL der Aufzeichnung des Anrufs. Dies sollte eine öffentliche URL sein, auf die Avoma zugreifen kann.",
35
+ "List of participants in the call. First entry should be the prospect/lead.": "Liste der Teilnehmer am Anruf. Der erste Eintrag sollte der Prospekt/Lead sein.",
36
+ "End time of the call": "Endzeit des Anrufs",
37
+ "Name of the caller who made the call": "Name des Anrufers, der den Anruf durchgeführt hat",
38
+ "Name of the person to whom call was made": "Name der Person, an die ein Anruf getätigt wurde",
39
+ "Whether the call was answered": "Ob der Anruf beantwortet wurde",
40
+ "Indicates if the call is a voicemail": "Zeigt an, ob der Anruf eine Sprachnachricht ist",
41
+ "Additional details of the call (JSON object as string)": "Zusätzliche Details des Aufrufs (JSON-Objekt als Zeichenkette)",
42
+ "Select a meeting from your Avoma account": "Wählen Sie ein Meeting aus Ihrem Avoma-Konto",
43
+ "Select a transcription from your Avoma meetings": "Wählen Sie eine Transkription aus Ihren Avoma-Meetings",
44
+ "Zoom": "Zoom",
45
+ "Zoom Phone": "Telefon zoomen",
46
+ "Twilio": "Zweimal",
47
+ "PhoneBurner": "Telefonbrenner",
48
+ "RingCentral": "RingCentral",
49
+ "Aircall": "Luftanruf",
50
+ "HubSpot": "HubSpot",
51
+ "Other": "Andere",
52
+ "Inbound": "Eingehend",
53
+ "Outbound": "Ausgehend",
54
+ "New Note": "Neue Notiz",
55
+ "New Meeting Scheduled": "Neues Meeting geplant",
56
+ "Meeting Rescheduled": "Meeting neu geplant",
57
+ "Meeting Cancelled": "Meeting abgebrochen",
58
+ "Triggers when notes are successfully generated for meetings or calls": "Auslöser wenn Notizen erfolgreich für Besprechungen oder Anrufe generiert wurden",
59
+ "Triggers when a meeting is booked via one of your Avoma scheduling pages": "Wird ausgelöst, wenn ein Meeting über eine Ihrer Avoma-Planungsseiten gebucht wird",
60
+ "Triggers when a scheduled meeting is rescheduled": "Wird ausgelöst, wenn ein geplantes Meeting verschoben wird",
61
+ "Triggers when a meeting booked via the scheduling page is cancelled": "Wird ausgelöst, wenn ein Meeting über die Planungsseite gebucht wird",
62
+ "Markdown": "Markdown",
63
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"AINOTE\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Quick Setup:**\n\n1. In Avoma: **Einstellungen > Integrationen > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Ereignistyp:** Wähle **\"AINOTE\"**\n4. **HTTP-Methode:** POST\n5. **Inhaltstyp:** application/json\n\n**Hinweis:** Benötigt Administratorrechte in Avoma.\n ",
64
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Quick Setup:**\n\n1. In Avoma: **Einstellungen > Integrationen > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Typ:** Wähle **\"MEETING_BOOKED_VIA_SCHEDULER\"**\n4. **HTTP Methode:** POST\n5. **Inhaltstyp:** application/json\n\n**Hinweis:** Benötigt Administratorrechte in Avoma.\n ",
65
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER_RESCHEDULED\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Quick Setup:**\n\n1. In Avoma: **Einstellungen > Integrationen > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Ereignistyp:** Wähle **\"MEETING_BOOKED_VIA_SCHEDULER_RESCHEDULED\"**\n4. **HTTP-Methode:** POST\n5. **Inhaltstyp:** application/json\n\n**Hinweis:** Benötigt Administratorrechte in Avoma.\n ",
66
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER_CANCELED\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Quick Setup:**\n\n1. In Avoma: **Einstellungen > Integrationen > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Typ:** Wähle **\"MEETING_BOOKED_VIA_SCHEDULER_CANCELED\"**\n4. **HTTP Methode:** POST\n5. **Inhaltstyp:** application/json\n\n**Hinweis:** Benötigt Administratorrechte in Avoma.\n "
67
+ }
@@ -0,0 +1,67 @@
1
+ {
2
+ "Avoma is an AI Meeting Assistant that automatically records, transcribes, and summarizes your meetings.": "Avoma es un asistente de reuniones de IA que registra, transcribe y resume automáticamente sus reuniones.",
3
+ "Your Avoma API Key (Bearer token). Generate it from your Avoma API Integration settings: https://help.avoma.com/api-integration-for-avoma": "Tu clave de API de Avoma (token portador). Genérala a partir de tus ajustes de integración de Avoma API: https://help.avoma.com/api-integration-for-avoma",
4
+ "Create Call": "Crear llamada",
5
+ "Get Meeting Recording": "Obtener grabación de reunión",
6
+ "Get Meeting Transcription": "Transcripción de Reuniones",
7
+ "Creates a new call in Avoma": "Crea una nueva llamada en Avoma",
8
+ "Returns video and audio recording URLs for a given meeting": "Devuelve URL de grabación de vídeo y audio para una reunión determinada",
9
+ "Returns transcription with speakers, timestamps, and VTT file URL": "Devuelve la transcripción con altavoces, marcas de tiempo y URL del archivo VTT",
10
+ "External ID": "ID Externo",
11
+ "User Email": "Email de usuario",
12
+ "Source": "Fuente",
13
+ "Direction": "Dirección",
14
+ "Start Time": "Hora de inicio",
15
+ "From Phone Number": "Desde el número de teléfono",
16
+ "To Phone Number": "A número de teléfono",
17
+ "Recording URL": "Grabando URL",
18
+ "Participants": "Participantes",
19
+ "End Time": "Hora de fin",
20
+ "From Name": "De nombre",
21
+ "To Name": "A nombre",
22
+ "Answered": "Respondido",
23
+ "Is Voicemail": "Es Voicemail",
24
+ "Additional Details": "Detalles adicionales",
25
+ "Meeting": "Reunión",
26
+ "Transcription": "Transcripción",
27
+ "Unique id of the call from the dialer system like hubspot, twilio, zoom, etc.": "Id único de la llamada desde el sistema de marcadores como hubspot, twilio, zoom, etc.",
28
+ "Email of the user who made or received the call. This should be an Avoma user's email.": "Correo electrónico del usuario que hizo o recibió la llamada. Este debe ser el correo electrónico de un usuario de Avoma.",
29
+ "Source of the call": "Fuente de la llamada",
30
+ "Direction of the call": "Dirección de la llamada",
31
+ "Start time of the call": "Hora de inicio de la llamada",
32
+ "Phone number from which call was made (e.g., +11234567890)": "Número de teléfono desde el cual se hizo la llamada (por ejemplo, +11234567890)",
33
+ "Phone number to which call was made (e.g., +12234567890)": "Número de teléfono al que se hizo la llamada (por ejemplo, +12234567890)",
34
+ "URL of the recording of the call. This should be a public URL that Avoma can access.": "URL de la grabación de la llamada. Debe ser una URL pública a la que Avoma pueda acceder.",
35
+ "List of participants in the call. First entry should be the prospect/lead.": "Lista de participantes en la llamada. La primera entrada debe ser el mó/lead.",
36
+ "End time of the call": "Hora de fin de la llamada",
37
+ "Name of the caller who made the call": "Nombre del llamante que hizo la llamada",
38
+ "Name of the person to whom call was made": "Nombre de la persona a la que se hizo la llamada",
39
+ "Whether the call was answered": "Si la llamada fue respondida",
40
+ "Indicates if the call is a voicemail": "Indica si la llamada es un mensaje de voz",
41
+ "Additional details of the call (JSON object as string)": "Detalles adicionales de la llamada (objeto JSON como cadena)",
42
+ "Select a meeting from your Avoma account": "Seleccione una reunión de su cuenta de Avoma",
43
+ "Select a transcription from your Avoma meetings": "Seleccione una transcripción de sus reuniones de Avoma",
44
+ "Zoom": "Aceros",
45
+ "Zoom Phone": "Teléfono de zoom",
46
+ "Twilio": "Twilio",
47
+ "PhoneBurner": "Corredor de teléfono",
48
+ "RingCentral": "RingCentral",
49
+ "Aircall": "Aerolínea",
50
+ "HubSpot": "HubSpot",
51
+ "Other": "Otro",
52
+ "Inbound": "Entrante",
53
+ "Outbound": "Salida",
54
+ "New Note": "Nueva nota",
55
+ "New Meeting Scheduled": "Nueva reunión programada",
56
+ "Meeting Rescheduled": "Reunión reprogramada",
57
+ "Meeting Cancelled": "Reunión cancelada",
58
+ "Triggers when notes are successfully generated for meetings or calls": "Dispara cuando las notas son generadas con éxito para reuniones o llamadas",
59
+ "Triggers when a meeting is booked via one of your Avoma scheduling pages": "Dispara cuando una reunión es reservada a través de una de sus páginas de programación de Avoma",
60
+ "Triggers when a scheduled meeting is rescheduled": "Dispara cuando una reunión programada es reprogramada",
61
+ "Triggers when a meeting booked via the scheduling page is cancelled": "Dispara cuando una reunión reservada a través de la página de programación es cancelada",
62
+ "Markdown": "Markdown",
63
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"AINOTE\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"AINOTE\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ",
64
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ",
65
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER_RESCHEDULED\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER_RESCHEDULED\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ",
66
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER_CANCELED\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER_CANCELED\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n "
67
+ }
@@ -0,0 +1,67 @@
1
+ {
2
+ "Avoma is an AI Meeting Assistant that automatically records, transcribes, and summarizes your meetings.": "Avoma est un assistant de réunion d’AI qui enregistre automatiquement, transcrit et résume vos réunions.",
3
+ "Your Avoma API Key (Bearer token). Generate it from your Avoma API Integration settings: https://help.avoma.com/api-integration-for-avoma": "Votre clé d'API Avoma (jeton Bearer Token). Générez-la à partir de vos paramètres d'intégration d'API Avoma : https://help.avoma.com/api-integration-for-avoma",
4
+ "Create Call": "Créer un appel",
5
+ "Get Meeting Recording": "Obtenir l'enregistrement de la réunion",
6
+ "Get Meeting Transcription": "Obtenir la transcription de la réunion",
7
+ "Creates a new call in Avoma": "Crée un nouvel appel dans Avoma",
8
+ "Returns video and audio recording URLs for a given meeting": "Renvoie les URL d'enregistrement vidéo et audio pour une réunion donnée",
9
+ "Returns transcription with speakers, timestamps, and VTT file URL": "Renvoie la transcription avec les haut-parleurs, les horodatages et l'URL du fichier VTT",
10
+ "External ID": "ID externe",
11
+ "User Email": "E-mail de l'utilisateur",
12
+ "Source": "Source",
13
+ "Direction": "Orientation",
14
+ "Start Time": "Start Time",
15
+ "From Phone Number": "À partir du numéro de téléphone",
16
+ "To Phone Number": "Vers le numéro de téléphone",
17
+ "Recording URL": "URL de l'enregistrement",
18
+ "Participants": "Participants",
19
+ "End Time": "Heure de fin",
20
+ "From Name": "De nom",
21
+ "To Name": "À nommer",
22
+ "Answered": "Répondu",
23
+ "Is Voicemail": "Est la messagerie vocale",
24
+ "Additional Details": "Détails supplémentaires",
25
+ "Meeting": "Réunion",
26
+ "Transcription": "Transcription",
27
+ "Unique id of the call from the dialer system like hubspot, twilio, zoom, etc.": "Identifiant unique de l'appel du système de numérotation comme hubspot, twilio, zoom, etc.",
28
+ "Email of the user who made or received the call. This should be an Avoma user's email.": "Courriel de l'utilisateur qui a effectué ou reçu l'appel. Ceci devrait être l'e-mail d'un utilisateur d'Avoma.",
29
+ "Source of the call": "Source de l'appel",
30
+ "Direction of the call": "Direction de l'appel",
31
+ "Start time of the call": "Heure de début de l'appel",
32
+ "Phone number from which call was made (e.g., +11234567890)": "Numéro de téléphone à partir duquel l'appel a été fait (par exemple, +11234567890)",
33
+ "Phone number to which call was made (e.g., +12234567890)": "Numéro de téléphone auquel l'appel a été fait (par exemple, +12234567890)",
34
+ "URL of the recording of the call. This should be a public URL that Avoma can access.": "URL de l'enregistrement de l'appel. Ce devrait être une URL publique à laquelle Avoma peut accéder.",
35
+ "List of participants in the call. First entry should be the prospect/lead.": "Liste des participants à l'appel. La première entrée doit être le prospect/lead.",
36
+ "End time of the call": "Heure de fin de l'appel",
37
+ "Name of the caller who made the call": "Nom de l'appelant qui a effectué l'appel",
38
+ "Name of the person to whom call was made": "Nom de la personne à qui l'appel a été fait",
39
+ "Whether the call was answered": "Si l'appel a été répondu",
40
+ "Indicates if the call is a voicemail": "Indique si l'appel est un message vocal",
41
+ "Additional details of the call (JSON object as string)": "Détails supplémentaires de l'appel (objet JSON en tant que chaîne)",
42
+ "Select a meeting from your Avoma account": "Sélectionnez une réunion de votre compte Avoma",
43
+ "Select a transcription from your Avoma meetings": "Sélectionnez une transcription de vos réunions Avoma",
44
+ "Zoom": "Zoom",
45
+ "Zoom Phone": "Zoom Téléphone",
46
+ "Twilio": "Twilio",
47
+ "PhoneBurner": "Brûleur de téléphone",
48
+ "RingCentral": "RingCentral",
49
+ "Aircall": "Appel aérien",
50
+ "HubSpot": "HubSpot",
51
+ "Other": "Autres",
52
+ "Inbound": "Entrants",
53
+ "Outbound": "Sortant",
54
+ "New Note": "Nouvelle note",
55
+ "New Meeting Scheduled": "Nouvelle réunion planifiée",
56
+ "Meeting Rescheduled": "Réunion reprogrammée",
57
+ "Meeting Cancelled": "Réunion annulée",
58
+ "Triggers when notes are successfully generated for meetings or calls": "Déclenche lorsque les notes sont générées avec succès pour les réunions ou les appels",
59
+ "Triggers when a meeting is booked via one of your Avoma scheduling pages": "Déclenche quand une réunion est réservée via une de vos pages de planification Avoma",
60
+ "Triggers when a scheduled meeting is rescheduled": "Déclenche quand une réunion planifiée est reprogrammée",
61
+ "Triggers when a meeting booked via the scheduling page is cancelled": "Déclenche lorsqu'une réunion réservée via la page de planification est annulée",
62
+ "Markdown": "Markdown",
63
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"AINOTE\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Configuration rapide :**\n\n1. Dans Avoma : **Paramètres > Intégrations > Webhooks**\n2. **URL du Webhook :** `{{webhookUrl}}`\n3. **Type d'événement:** Sélectionnez **\"AINOTE\"**\n4. **Méthode HTTP :** POSTE\n5. **Type de contenu :** application/json\n\n**Note:** Nécessite des permissions d'administration dans Avoma.\n ",
64
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Configuration rapide :**\n\n1. Dans Avoma : **Paramètres > Intégrations > Webhooks**\n2. **URL du Webhook :** `{{webhookUrl}}`\n3. **Type d'événement :** Sélectionnez **\"MEETING_BOOKED_VIA_SCHEDULER\"**\n4. **Méthode HTTP :** POST\n5. **Type de contenu :** application/json\n\n**Note:** Nécessite des permissions d'administration dans Avoma.\n ",
65
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER_RESCHEDULED\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Configuration rapide :**\n\n1. Dans Avoma : **Paramètres > Intégrations > Webhooks**\n2. **URL du Webhook :** `{{webhookUrl}}`\n3. **Type d'événement :** Sélectionnez **\"MEETING_BOOKED_VIA_SCHEDULER_RESCHEDULED\"**\n4. **Méthode HTTP :** POST\n5. **Type de contenu :** application/json\n\n**Note:** Nécessite des permissions d'administration dans Avoma.\n ",
66
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER_CANCELED\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Configuration rapide :**\n\n1. Dans Avoma : **Paramètres > Intégrations > Webhooks**\n2. **URL du Webhook :** `{{webhookUrl}}`\n3. **Type d'événement :** Sélectionnez **\"MEETING_BOOKED_VIA_SCHEDULER_CANCELED\"**\n4. **Méthode HTTP :** POST\n5. **Type de contenu :** application/json\n\n**Note:** Nécessite des permissions d'administration dans Avoma.\n "
67
+ }
@@ -0,0 +1,67 @@
1
+ {
2
+ "Avoma is an AI Meeting Assistant that automatically records, transcribes, and summarizes your meetings.": "AvomaはAIミーティングアシスタントで、自動的に記録、転記、会議の概要を記録します。",
3
+ "Your Avoma API Key (Bearer token). Generate it from your Avoma API Integration settings: https://help.avoma.com/api-integration-for-avoma": "Avoma APIキー(ベアラートークン)。Avoma API統合設定から生成します。https://help.avoma.com/api-integration-for-avoma",
4
+ "Create Call": "通話を作成",
5
+ "Get Meeting Recording": "ミーティング録音を取得",
6
+ "Get Meeting Transcription": "会議の表記を取得",
7
+ "Creates a new call in Avoma": "Avomaで新しい呼び出しを作成します",
8
+ "Returns video and audio recording URLs for a given meeting": "特定のミーティングのビデオと音声の記録URLを返します.",
9
+ "Returns transcription with speakers, timestamps, and VTT file URL": "スピーカー、タイムスタンプ、VTTファイルのURLを持つ転写を返します。",
10
+ "External ID": "外部 ID",
11
+ "User Email": "ユーザーのメールアドレス",
12
+ "Source": "ソース",
13
+ "Direction": "方向",
14
+ "Start Time": "開始時刻",
15
+ "From Phone Number": "電話番号",
16
+ "To Phone Number": "電話番号へ",
17
+ "Recording URL": "記録用URL",
18
+ "Participants": "参加者",
19
+ "End Time": "終了時刻",
20
+ "From Name": "差出人名",
21
+ "To Name": "宛先名",
22
+ "Answered": "回答済み",
23
+ "Is Voicemail": "ボイスメール",
24
+ "Additional Details": "その他の詳細",
25
+ "Meeting": "会議",
26
+ "Transcription": "表記文字",
27
+ "Unique id of the call from the dialer system like hubspot, twilio, zoom, etc.": "hubspot、twilio、zoomなどのダイヤラーシステムからの通話のユニークなid。",
28
+ "Email of the user who made or received the call. This should be an Avoma user's email.": "通話を発信または受信したユーザーの電子メール。これはAvomaユーザーの電子メールである必要があります。",
29
+ "Source of the call": "発信元",
30
+ "Direction of the call": "通話の方向",
31
+ "Start time of the call": "通話の開始時刻",
32
+ "Phone number from which call was made (e.g., +11234567890)": "発信元の電話番号 (例: +11234567890)",
33
+ "Phone number to which call was made (e.g., +12234567890)": "発信先の電話番号(例:+12234567890)",
34
+ "URL of the recording of the call. This should be a public URL that Avoma can access.": "通話記録のURL。Avomaがアクセスできる公開URLである必要があります。",
35
+ "List of participants in the call. First entry should be the prospect/lead.": "通話中の参加者のリスト。最初のエントリは見込み客/リードである必要があります。",
36
+ "End time of the call": "通話の終了時間",
37
+ "Name of the caller who made the call": "発信者の名前",
38
+ "Name of the person to whom call was made": "電話をかけた人の名前",
39
+ "Whether the call was answered": "通話が応答されたかどうか",
40
+ "Indicates if the call is a voicemail": "通話がボイスメールであるかどうかを示します",
41
+ "Additional details of the call (JSON object as string)": "コールの追加の詳細 (JSON オブジェクトを文字列として)",
42
+ "Select a meeting from your Avoma account": "Avomaアカウントからミーティングを選択してください",
43
+ "Select a transcription from your Avoma meetings": "Avomaミーティングから転写を選択してください",
44
+ "Zoom": "ズーム",
45
+ "Zoom Phone": "ズーム電話",
46
+ "Twilio": "Twilio",
47
+ "PhoneBurner": "PhoneBurner",
48
+ "RingCentral": "RingCentral",
49
+ "Aircall": "エアコール",
50
+ "HubSpot": "HubSpot",
51
+ "Other": "その他",
52
+ "Inbound": "Inbound",
53
+ "Outbound": "Outbound",
54
+ "New Note": "新しいメモ",
55
+ "New Meeting Scheduled": "新しいミーティングがスケジュールされました",
56
+ "Meeting Rescheduled": "会議のスケジュールを変更しました",
57
+ "Meeting Cancelled": "会議がキャンセルされました",
58
+ "Triggers when notes are successfully generated for meetings or calls": "ミーティングや通話でメモが正常に生成されたときに発生する",
59
+ "Triggers when a meeting is booked via one of your Avoma scheduling pages": "会議がAvomaスケジューリングページのいずれかを介して予約されたときに発生します",
60
+ "Triggers when a scheduled meeting is rescheduled": "スケジュールされたミーティングがスケジュール変更されたときにトリガーします",
61
+ "Triggers when a meeting booked via the scheduling page is cancelled": "スケジューリングページ経由で予約されたミーティングがキャンセルされたときにトリガーされます",
62
+ "Markdown": "Markdown",
63
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"AINOTE\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"AINOTE\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ",
64
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ",
65
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER_RESCHEDULED\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER_RESCHEDULED\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ",
66
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER_CANCELED\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER_CANCELED\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n "
67
+ }
@@ -0,0 +1,67 @@
1
+ {
2
+ "Avoma is an AI Meeting Assistant that automatically records, transcribes, and summarizes your meetings.": "Avoma is een AI Meeting Assistant die je vergaderingen automatisch registreert, transcribeert en samenvoegt.",
3
+ "Your Avoma API Key (Bearer token). Generate it from your Avoma API Integration settings: https://help.avoma.com/api-integration-for-avoma": "Uw Avoma API-sleutel (Bearer token). Genereer het vanuit uw Avoma API integratie instellingen: https://help.avoma.com/api-integration-for-avoma",
4
+ "Create Call": "Oproep aanmaken",
5
+ "Get Meeting Recording": "Opname van vergadering krijgen",
6
+ "Get Meeting Transcription": "Krijg Meeting Transcriptie",
7
+ "Creates a new call in Avoma": "Maakt een nieuwe oproep in Avoma",
8
+ "Returns video and audio recording URLs for a given meeting": "Geeft video-en audio-opname-URL's voor een bepaalde vergadering terug",
9
+ "Returns transcription with speakers, timestamps, and VTT file URL": "Retourneert transcriptie met luidsprekers, tijdstempels, en VTT-bestand URL",
10
+ "External ID": "Extern ID",
11
+ "User Email": "E-mail van gebruiker",
12
+ "Source": "Bron",
13
+ "Direction": "Richting",
14
+ "Start Time": "Starttijd",
15
+ "From Phone Number": "Van Telefoonnummer",
16
+ "To Phone Number": "Naar telefoonnummer",
17
+ "Recording URL": "Opname URL",
18
+ "Participants": "Deelnemers",
19
+ "End Time": "Eind Tijd",
20
+ "From Name": "Afzender naam",
21
+ "To Name": "Naar naam",
22
+ "Answered": "beantwoord",
23
+ "Is Voicemail": "Is voicemail",
24
+ "Additional Details": "Aanvullende gegevens",
25
+ "Meeting": "Afspraak",
26
+ "Transcription": "Transcriptie",
27
+ "Unique id of the call from the dialer system like hubspot, twilio, zoom, etc.": "Uniek id van de oproep van het telefoonsysteem zoals hubspot, twilio, zoom, enz.",
28
+ "Email of the user who made or received the call. This should be an Avoma user's email.": "E-mail van de gebruiker die het gesprek heeft gemaakt of ontvangen. Dit moet een AVoma gebruiker e-mail zijn.",
29
+ "Source of the call": "Bron van de oproep",
30
+ "Direction of the call": "Richting van de oproep",
31
+ "Start time of the call": "Start tijd van de oproep",
32
+ "Phone number from which call was made (e.g., +11234567890)": "Telefoonnummer van waaruit gebeld is (bijv. +11234567890)",
33
+ "Phone number to which call was made (e.g., +12234567890)": "Telefoonnummer waarvoor werd gebeld (bijv. +12234567890)",
34
+ "URL of the recording of the call. This should be a public URL that Avoma can access.": "URL van de opname van het gesprek. Dit moet een openbare URL zijn die Avoma kan gebruiken.",
35
+ "List of participants in the call. First entry should be the prospect/lead.": "Lijst van deelnemers aan de oproep. Eerste vermelding is het kanaal/lead.",
36
+ "End time of the call": "Einde tijd van de oproep",
37
+ "Name of the caller who made the call": "Naam van de beller die de oproep deed",
38
+ "Name of the person to whom call was made": "Naam van de persoon aan wie werd gebeld",
39
+ "Whether the call was answered": "Of de oproep is beantwoord",
40
+ "Indicates if the call is a voicemail": "Geeft aan of de oproep een voicemail is",
41
+ "Additional details of the call (JSON object as string)": "Aanvullende details van de oproep (JSON object als string)",
42
+ "Select a meeting from your Avoma account": "Selecteer een vergadering van uw account",
43
+ "Select a transcription from your Avoma meetings": "Selecteer een transcriptie van je Avoma vergaderingen",
44
+ "Zoom": "Inzoomen",
45
+ "Zoom Phone": "Telefoon inzoomen",
46
+ "Twilio": "Twilio",
47
+ "PhoneBurner": "PhoneBrander",
48
+ "RingCentral": "RingCentral",
49
+ "Aircall": "Luchtbellen",
50
+ "HubSpot": "HubSpot",
51
+ "Other": "anders",
52
+ "Inbound": "Inkomende",
53
+ "Outbound": "Uitgaande",
54
+ "New Note": "Nieuwe notitie",
55
+ "New Meeting Scheduled": "Nieuwe vergadering gepland",
56
+ "Meeting Rescheduled": "Vergadering gerepareerd",
57
+ "Meeting Cancelled": "Vergadering Geannuleerd",
58
+ "Triggers when notes are successfully generated for meetings or calls": "Triggers wanneer notities succesvol worden gegenereerd voor vergaderingen of oproepen",
59
+ "Triggers when a meeting is booked via one of your Avoma scheduling pages": "Triggert wanneer een vergadering wordt geboekt via een van je Avoma planner pagina's",
60
+ "Triggers when a scheduled meeting is rescheduled": "Triggert wanneer een geplande vergadering wordt verplaatst",
61
+ "Triggers when a meeting booked via the scheduling page is cancelled": "Triggert wanneer een vergadering is geboekt via de planningspagina",
62
+ "Markdown": "Markdown",
63
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"AINOTE\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Quick Setup:**\n\n1. In Avoma: **Instellingen > Integraties > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Selecteer **\"AINOTE\"**\n4. **HTTP Methode:** POST\n5. **Content Type:** application/json\n\n**Opmerking:** Vereist admin rechten in Avoma.\n ",
64
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Quick Setup:**\n\n1. In Avoma: **Instellingen > Integraties > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Selecteer **\"MEETING_BOOKED_VIA_SCHEDULER\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Opmerking:** Vereist admin rechten in Avoma.\n ",
65
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER_RESCHEDULED\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Quick Setup:**\n\n1. In Avoma: **Instellingen > Integraties > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Selecteer **\"MEETING_BOOKED_VIA_SCHEDULER_RESCHEDULED\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Opmerking:** Vereist admin rechten in Avoma.\n ",
66
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER_CANCELED\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Quick Setup:**\n\n1. In Avoma: **Instellingen > Integraties > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Selecteer **\"MEETING_BOOKED_VIA_SCHEDULER_CANCELED\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Opmerking:** Vereist admin rechten in Avoma.\n "
67
+ }
@@ -0,0 +1,67 @@
1
+ {
2
+ "Avoma is an AI Meeting Assistant that automatically records, transcribes, and summarizes your meetings.": "Avoma é um Assistente de Reunião IA, que registra automaticamente, transcreve e resume suas reuniões.",
3
+ "Your Avoma API Key (Bearer token). Generate it from your Avoma API Integration settings: https://help.avoma.com/api-integration-for-avoma": "Sua chave de API Avoma (token Bearer). Gere a partir das suas configurações de integração da API Avoma: https://help.avoma.com/api-integration-for-avoma",
4
+ "Create Call": "Criar Ligação",
5
+ "Get Meeting Recording": "Obter Gravação de Reunião",
6
+ "Get Meeting Transcription": "Obter transmissão de reuniões",
7
+ "Creates a new call in Avoma": "Cria uma nova chamada em Avoma",
8
+ "Returns video and audio recording URLs for a given meeting": "Retorna URLs de gravação de vídeo e áudio para uma determinada reunião",
9
+ "Returns transcription with speakers, timestamps, and VTT file URL": "Retorna transcrição com palestrantes, carimbos de tempo e URL de arquivo VTT",
10
+ "External ID": "ID Externo",
11
+ "User Email": "Email do Usuário",
12
+ "Source": "fonte",
13
+ "Direction": "Direção",
14
+ "Start Time": "Hora de início",
15
+ "From Phone Number": "De número de telefone",
16
+ "To Phone Number": "Para número de telefone",
17
+ "Recording URL": "URL de gravação",
18
+ "Participants": "Participantes",
19
+ "End Time": "Hora de término",
20
+ "From Name": "Nome do Remetente",
21
+ "To Name": "Para o Nome",
22
+ "Answered": "Respondido",
23
+ "Is Voicemail": "É Voicemail",
24
+ "Additional Details": "Detalhes Adicionais",
25
+ "Meeting": "Reunião",
26
+ "Transcription": "Transcrição",
27
+ "Unique id of the call from the dialer system like hubspot, twilio, zoom, etc.": "Identificação única da chamada do sistema discador como hubspot, twilio, zoom, etc.",
28
+ "Email of the user who made or received the call. This should be an Avoma user's email.": "E-mail do usuário que fez ou recebeu a chamada. Este deve ser um e-mail de usuário da Avoma.",
29
+ "Source of the call": "Fonte da chamada",
30
+ "Direction of the call": "Direção da chamada",
31
+ "Start time of the call": "Horário de início da chamada",
32
+ "Phone number from which call was made (e.g., +11234567890)": "Número de telefone de qual chamada foi feita (por exemplo, 11234567890)",
33
+ "Phone number to which call was made (e.g., +12234567890)": "Número de telefone para o qual a chamada foi feita (por exemplo, +12234567890)",
34
+ "URL of the recording of the call. This should be a public URL that Avoma can access.": "URL da gravação da chamada. Esta deve ser uma URL pública que o Avoma pode acessar.",
35
+ "List of participants in the call. First entry should be the prospect/lead.": "Lista de participantes na chamada. A primeira entrada deve ser uma perspectiva/lead.",
36
+ "End time of the call": "Hora de término da chamada",
37
+ "Name of the caller who made the call": "Nome do chamador que fez a chamada",
38
+ "Name of the person to whom call was made": "Nome da pessoa a quem foi chamada",
39
+ "Whether the call was answered": "Se a chamada foi atendida",
40
+ "Indicates if the call is a voicemail": "Indica se a chamada é um correio de voz",
41
+ "Additional details of the call (JSON object as string)": "Detalhes adicionais da chamada (objeto JSON como string)",
42
+ "Select a meeting from your Avoma account": "Selecione uma reunião da sua conta Avoma",
43
+ "Select a transcription from your Avoma meetings": "Selecione uma transcrição das suas reuniões da Avoma",
44
+ "Zoom": "Ampliar",
45
+ "Zoom Phone": "Ampliar telefone",
46
+ "Twilio": "Twilio",
47
+ "PhoneBurner": "PhoneBurner",
48
+ "RingCentral": "RingCentral",
49
+ "Aircall": "Aeronave",
50
+ "HubSpot": "HubSpot",
51
+ "Other": "Outros",
52
+ "Inbound": "Entrada",
53
+ "Outbound": "Saída",
54
+ "New Note": "Nova anotação",
55
+ "New Meeting Scheduled": "Nova reunião agendada",
56
+ "Meeting Rescheduled": "Reunião reagendada",
57
+ "Meeting Cancelled": "Reunião cancelada",
58
+ "Triggers when notes are successfully generated for meetings or calls": "Disparos quando notas são geradas com sucesso para reuniões ou chamadas",
59
+ "Triggers when a meeting is booked via one of your Avoma scheduling pages": "Acionar quando uma reunião for reservada em uma das suas páginas de agendamento da Avoma",
60
+ "Triggers when a scheduled meeting is rescheduled": "Dispara quando uma reunião agendada é reagendada",
61
+ "Triggers when a meeting booked via the scheduling page is cancelled": "Disparar quando uma reunião reservada por meio da página de agendamento for cancelada",
62
+ "Markdown": "Markdown",
63
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"AINOTE\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "**Instalação Rápida**\n\n1. No Avoma: **Configurações > Integrações > Webhooks**\n2. **Webhook URL:** '{{webhookUrl}}'\n3. **Tipo de evento:** Select **AINOTE**\n4. **Método HTTP:** POST\n5. **Tipo de Conteúdo:** application/json\n\n**Observação:\"** Requer permissões de administrador no Avoma.",
64
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "**Instalação Rápida**\n\n1. No Avoma: **Configurações > Integrações > Webhooks**\n2. **Webhook URL:** '{{webhookUrl}}'\n3. **Tipo de evento:** Select **MEETING_BOOKED_VIA_SCHEDULER**\n4. **Método HTTP:** POST\n5. **Tipo de Conteúdo:** application/json\n\n**Observação:\"** Requer permissões de administrador no Avoma.",
65
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER_RESCHEDULED\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "**Instalação Rápida**\n\n1. No Avoma: **Configurações > Integrações > Webhooks**\n2. **Webhook URL:** '{{webhookUrl}}'\n3. **Tipo de evento:** Select **MEETING_BOOKED_VIA_SCHEDULER_RESCHEDULED**\n4. **Método HTTP:** POST\n5. **Tipo de Conteúdo:** application/json\n\n**Observação:\"** Requer permissões de administrador no Avoma.",
66
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER_CANCELED\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "**Instalação Rápida**\n\n1. No Avoma: **Configurações > Integrações > Webhooks**\n2. **Webhook URL:** '{{webhookUrl}}'\n3. **Tipo de evento:** Select **MEETING_BOOKED_VIA_SCHEDULER_CANCELED**\n4. **Método HTTP:** POST\n5. **Tipo de Conteúdo:** application/json\n\n**Observação:\"** Requer permissões de administrador no Avoma."
67
+ }
@@ -0,0 +1,67 @@
1
+ {
2
+ "Avoma is an AI Meeting Assistant that automatically records, transcribes, and summarizes your meetings.": "Avoma is an AI Meeting Assistant that automatically records, transcribes, and summarizes your meetings.",
3
+ "Your Avoma API Key (Bearer token). Generate it from your Avoma API Integration settings: https://help.avoma.com/api-integration-for-avoma": "Your Avoma API Key (Bearer token). Generate it from your Avoma API Integration settings: https://help.avoma.com/api-integration-for-avoma",
4
+ "Create Call": "Create Call",
5
+ "Get Meeting Recording": "Get Meeting Recording",
6
+ "Get Meeting Transcription": "Get Meeting Transcription",
7
+ "Creates a new call in Avoma": "Creates a new call in Avoma",
8
+ "Returns video and audio recording URLs for a given meeting": "Returns video and audio recording URLs for a given meeting",
9
+ "Returns transcription with speakers, timestamps, and VTT file URL": "Returns transcription with speakers, timestamps, and VTT file URL",
10
+ "External ID": "External ID",
11
+ "User Email": "User Email",
12
+ "Source": "Source",
13
+ "Direction": "Direction",
14
+ "Start Time": "Start Time",
15
+ "From Phone Number": "From Phone Number",
16
+ "To Phone Number": "To Phone Number",
17
+ "Recording URL": "Recording URL",
18
+ "Participants": "Participants",
19
+ "End Time": "End Time",
20
+ "From Name": "From Name",
21
+ "To Name": "To Name",
22
+ "Answered": "Answered",
23
+ "Is Voicemail": "Is Voicemail",
24
+ "Additional Details": "Additional Details",
25
+ "Meeting": "Meeting",
26
+ "Transcription": "Transcription",
27
+ "Unique id of the call from the dialer system like hubspot, twilio, zoom, etc.": "Unique id of the call from the dialer system like hubspot, twilio, zoom, etc.",
28
+ "Email of the user who made or received the call. This should be an Avoma user's email.": "Email of the user who made or received the call. This should be an Avoma user's email.",
29
+ "Source of the call": "Source of the call",
30
+ "Direction of the call": "Direction of the call",
31
+ "Start time of the call": "Start time of the call",
32
+ "Phone number from which call was made (e.g., +11234567890)": "Phone number from which call was made (e.g., +11234567890)",
33
+ "Phone number to which call was made (e.g., +12234567890)": "Phone number to which call was made (e.g., +12234567890)",
34
+ "URL of the recording of the call. This should be a public URL that Avoma can access.": "URL of the recording of the call. This should be a public URL that Avoma can access.",
35
+ "List of participants in the call. First entry should be the prospect/lead.": "List of participants in the call. First entry should be the prospect/lead.",
36
+ "End time of the call": "End time of the call",
37
+ "Name of the caller who made the call": "Name of the caller who made the call",
38
+ "Name of the person to whom call was made": "Name of the person to whom call was made",
39
+ "Whether the call was answered": "Whether the call was answered",
40
+ "Indicates if the call is a voicemail": "Indicates if the call is a voicemail",
41
+ "Additional details of the call (JSON object as string)": "Additional details of the call (JSON object as string)",
42
+ "Select a meeting from your Avoma account": "Select a meeting from your Avoma account",
43
+ "Select a transcription from your Avoma meetings": "Select a transcription from your Avoma meetings",
44
+ "Zoom": "Zoom",
45
+ "Zoom Phone": "Zoom Phone",
46
+ "Twilio": "Twilio",
47
+ "PhoneBurner": "PhoneBurner",
48
+ "RingCentral": "RingCentral",
49
+ "Aircall": "Aircall",
50
+ "HubSpot": "HubSpot",
51
+ "Other": "Other",
52
+ "Inbound": "Inbound",
53
+ "Outbound": "Outbound",
54
+ "New Note": "New Note",
55
+ "New Meeting Scheduled": "New Meeting Scheduled",
56
+ "Meeting Rescheduled": "Meeting Rescheduled",
57
+ "Meeting Cancelled": "Meeting Cancelled",
58
+ "Triggers when notes are successfully generated for meetings or calls": "Triggers when notes are successfully generated for meetings or calls",
59
+ "Triggers when a meeting is booked via one of your Avoma scheduling pages": "Triggers when a meeting is booked via one of your Avoma scheduling pages",
60
+ "Triggers when a scheduled meeting is rescheduled": "Triggers when a scheduled meeting is rescheduled",
61
+ "Triggers when a meeting booked via the scheduling page is cancelled": "Triggers when a meeting booked via the scheduling page is cancelled",
62
+ "Markdown": "Markdown",
63
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"AINOTE\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"AINOTE\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ",
64
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ",
65
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER_RESCHEDULED\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER_RESCHEDULED\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ",
66
+ "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER_CANCELED\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n ": "\n**Quick Setup:**\n\n1. In Avoma: **Settings > Integrations > Webhooks**\n2. **Webhook URL:** `{{webhookUrl}}`\n3. **Event Type:** Select **\"MEETING_BOOKED_VIA_SCHEDULER_CANCELED\"**\n4. **HTTP Method:** POST\n5. **Content Type:** application/json\n\n**Note:** Requires admin permissions in Avoma.\n "
67
+ }