@scopieflows/app-google-calendar 0.8.1

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 (75) hide show
  1. package/README.md +7 -0
  2. package/package.json +30 -0
  3. package/src/i18n/ca.json +71 -0
  4. package/src/i18n/de.json +151 -0
  5. package/src/i18n/es.json +151 -0
  6. package/src/i18n/fr.json +151 -0
  7. package/src/i18n/hi.json +71 -0
  8. package/src/i18n/id.json +71 -0
  9. package/src/i18n/ja.json +151 -0
  10. package/src/i18n/nl.json +151 -0
  11. package/src/i18n/pt.json +151 -0
  12. package/src/i18n/ru.json +71 -0
  13. package/src/i18n/translation.json +151 -0
  14. package/src/i18n/vi.json +71 -0
  15. package/src/i18n/zh.json +151 -0
  16. package/src/index.d.ts +2 -0
  17. package/src/index.js +90 -0
  18. package/src/index.js.map +1 -0
  19. package/src/lib/actions/add-attendees.action.d.ts +5 -0
  20. package/src/lib/actions/add-attendees.action.js +54 -0
  21. package/src/lib/actions/add-attendees.action.js.map +1 -0
  22. package/src/lib/actions/add-calendar-to-calendarlist.d.ts +3 -0
  23. package/src/lib/actions/add-calendar-to-calendarlist.js +36 -0
  24. package/src/lib/actions/add-calendar-to-calendarlist.js.map +1 -0
  25. package/src/lib/actions/create-event.d.ts +15 -0
  26. package/src/lib/actions/create-event.js +149 -0
  27. package/src/lib/actions/create-event.js.map +1 -0
  28. package/src/lib/actions/create-quick-event.d.ts +5 -0
  29. package/src/lib/actions/create-quick-event.js +67 -0
  30. package/src/lib/actions/create-quick-event.js.map +1 -0
  31. package/src/lib/actions/delete-event.action.d.ts +4 -0
  32. package/src/lib/actions/delete-event.action.js +37 -0
  33. package/src/lib/actions/delete-event.action.js.map +1 -0
  34. package/src/lib/actions/find-busy-free-periods.d.ts +5 -0
  35. package/src/lib/actions/find-busy-free-periods.js +78 -0
  36. package/src/lib/actions/find-busy-free-periods.js.map +1 -0
  37. package/src/lib/actions/get-event-by-id.d.ts +6 -0
  38. package/src/lib/actions/get-event-by-id.js +93 -0
  39. package/src/lib/actions/get-event-by-id.js.map +1 -0
  40. package/src/lib/actions/get-events.d.ts +8 -0
  41. package/src/lib/actions/get-events.js +99 -0
  42. package/src/lib/actions/get-events.js.map +1 -0
  43. package/src/lib/actions/update-event.action.d.ts +14 -0
  44. package/src/lib/actions/update-event.action.js +114 -0
  45. package/src/lib/actions/update-event.action.js.map +1 -0
  46. package/src/lib/common/helper.d.ts +12 -0
  47. package/src/lib/common/helper.js +191 -0
  48. package/src/lib/common/helper.js.map +1 -0
  49. package/src/lib/common/index.d.ts +6 -0
  50. package/src/lib/common/index.js +94 -0
  51. package/src/lib/common/index.js.map +1 -0
  52. package/src/lib/common/types.d.ts +239 -0
  53. package/src/lib/common/types.js +17 -0
  54. package/src/lib/common/types.js.map +1 -0
  55. package/src/lib/triggers/calendar-event.d.ts +14 -0
  56. package/src/lib/triggers/calendar-event.js +144 -0
  57. package/src/lib/triggers/calendar-event.js.map +1 -0
  58. package/src/lib/triggers/event-cancelled.d.ts +22 -0
  59. package/src/lib/triggers/event-cancelled.js +165 -0
  60. package/src/lib/triggers/event-cancelled.js.map +1 -0
  61. package/src/lib/triggers/event-ends.d.ts +18 -0
  62. package/src/lib/triggers/event-ends.js +167 -0
  63. package/src/lib/triggers/event-ends.js.map +1 -0
  64. package/src/lib/triggers/event-start-time-before.d.ts +26 -0
  65. package/src/lib/triggers/event-start-time-before.js +161 -0
  66. package/src/lib/triggers/event-start-time-before.js.map +1 -0
  67. package/src/lib/triggers/new-calendar.d.ts +18 -0
  68. package/src/lib/triggers/new-calendar.js +151 -0
  69. package/src/lib/triggers/new-calendar.js.map +1 -0
  70. package/src/lib/triggers/new-event-matching-search.d.ts +22 -0
  71. package/src/lib/triggers/new-event-matching-search.js +185 -0
  72. package/src/lib/triggers/new-event-matching-search.js.map +1 -0
  73. package/src/lib/triggers/new-event.d.ts +22 -0
  74. package/src/lib/triggers/new-event.js +161 -0
  75. package/src/lib/triggers/new-event.js.map +1 -0
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # pieces-google-calendar
2
+
3
+ This library was generated with [Nx](https://nx.dev).
4
+
5
+ ## Running lint
6
+
7
+ Run `nx lint pieces-google-calendar` to execute the lint via [ESLint](https://eslint.org/).
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "@scopieflows/app-google-calendar",
3
+ "version": "0.8.1",
4
+ "dependencies": {
5
+ "@sinclair/typebox": "0.34.11",
6
+ "ai": "^6.0.0",
7
+ "axios": "1.13.1",
8
+ "axios-retry": "4.4.1",
9
+ "dayjs": "1.11.9",
10
+ "deepmerge-ts": "7.1.0",
11
+ "form-data": "4.0.4",
12
+ "googleapis": "129.0.0",
13
+ "i18next": "23.13.0",
14
+ "mime-types": "2.1.35",
15
+ "nanoid": "3.3.8",
16
+ "semver": "7.6.0",
17
+ "socket.io-client": "4.8.1",
18
+ "zod": "4.1.13",
19
+ "@scopieflows/pieces-common": "0.11.2",
20
+ "@scopieflows/pieces-framework": "0.25.0",
21
+ "@scopieflows/shared": "0.33.0",
22
+ "tslib": "2.6.2"
23
+ },
24
+ "resolutions": {
25
+ "rollup": "npm:@rollup/wasm-node"
26
+ },
27
+ "types": "./src/index.d.ts",
28
+ "main": "./src/index.js",
29
+ "type": "commonjs"
30
+ }
@@ -0,0 +1,71 @@
1
+ {
2
+ "Google Calendar": "Google Calendar",
3
+ "Get organized and stay on schedule": "Get organized and stay on schedule",
4
+ "Add Attendees to Event": "Add Attendees to Event",
5
+ "Create Quick Event": "Create Quick Event",
6
+ "Create Event": "Create Event",
7
+ "Get all Events": "Get all Events",
8
+ "Update Event": "Update Event",
9
+ "Delete Event": "Delete Event",
10
+ "Custom API Call": "Custom API Call",
11
+ "Add one or more person to existing event.": "Add one or more person to existing event.",
12
+ "Add Quick Calendar Event": "Add Quick Calendar Event",
13
+ "Add Event": "Add Event",
14
+ "Get Events": "Get Events",
15
+ "Updates an event in Google Calendar.": "Updates an event in Google Calendar.",
16
+ "Deletes an event from Google Calendar.": "Deletes an event from Google Calendar.",
17
+ "Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
18
+ "Calendar": "Calendar",
19
+ "Event ID": "Event ID",
20
+ "Attendees": "Attendees",
21
+ "Summary": "Summary",
22
+ "Send Updates": "Send Updates",
23
+ "Title of the event": "Title of the event",
24
+ "Start date time of the event": "Start date time of the event",
25
+ "End date time of the event": "End date time of the event",
26
+ "Location": "Location",
27
+ "Description": "Description",
28
+ "Color": "Color",
29
+ "Guests can modify": "Guests can modify",
30
+ "Guests can invite others": "Guests can invite others",
31
+ "Guests can see other guests": "Guests can see other guests",
32
+ "Send Notifications": "Send Notifications",
33
+ "Event types": "Event types",
34
+ "Search Term": "Search Term",
35
+ "Date from": "Date from",
36
+ "Date to": "Date to",
37
+ "Expand Recurring Event?": "Expand Recurring Event?",
38
+ "Method": "Method",
39
+ "Headers": "Headers",
40
+ "Query Parameters": "Query Parameters",
41
+ "Body": "Body",
42
+ "No Error on Failure": "No Error on Failure",
43
+ "Timeout (in seconds)": "Timeout (in seconds)",
44
+ "Emails of the attendees (guests)": "Emails of the attendees (guests)",
45
+ "The text describing the event to be created": "The text describing the event to be created",
46
+ "Guests who should receive notifications about the creation of the new event.": "Guests who should receive notifications about the creation of the new event.",
47
+ "By default it'll be 30 min post start time": "By default it'll be 30 min post start time",
48
+ "Description of the event. You can use HTML tags here.": "Description of the event. You can use HTML tags here.",
49
+ "Select event types": "Select event types",
50
+ "Whether to expand recurring events into instances and only return single one-off events and instances of recurring events, but not the underlying recurring events themselves.": "Whether to expand recurring events into instances and only return single one-off events and instances of recurring events, but not the underlying recurring events themselves.",
51
+ "Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
52
+ "All": "All",
53
+ "External Only": "External Only",
54
+ "none": "none",
55
+ "Yes, to everyone": "Yes, to everyone",
56
+ "To non-Google Calendar guests only": "To non-Google Calendar guests only",
57
+ "To no one": "To no one",
58
+ "Default": "Default",
59
+ "Out Of Office": "Out Of Office",
60
+ "Focus Time": "Focus Time",
61
+ "Working Location": "Working Location",
62
+ "GET": "GET",
63
+ "POST": "POST",
64
+ "PATCH": "PATCH",
65
+ "PUT": "PUT",
66
+ "DELETE": "DELETE",
67
+ "HEAD": "HEAD",
68
+ "New or Updated Event": "New or Updated Event",
69
+ "Triggers when an event is added or updated": "Triggers when an event is added or updated",
70
+ "If true, the trigger will activate for every occurrence of a recurring event.": "If true, the trigger will activate for every occurrence of a recurring event."
71
+ }
@@ -0,0 +1,151 @@
1
+ {
2
+ "Get organized and stay on schedule": "Organisieren Sie sich und bleiben Sie planmäßig",
3
+ "Add Attendees to Event": "Teilnehmer zum Event hinzufügen",
4
+ "Create Quick Event": "Schnellereignis erstellen",
5
+ "Create Event": "Ereignis erstellen",
6
+ "Get all Events": "Alle Events abrufen",
7
+ "Update Event": "Ereignis aktualisieren",
8
+ "Delete Event": "Ereignis löschen",
9
+ "Find Busy/Free Periods in Calendar": "Kostenlose Perioden im Kalender finden",
10
+ "Get Event by ID": "Event per ID abrufen",
11
+ "Custom API Call": "Eigener API-Aufruf",
12
+ "Add one or more person to existing event.": "Fügen Sie eine oder mehrere Personen zu einem bestehenden Ereignis hinzu.",
13
+ "Add Quick Calendar Event": "Schnellkalenderereignis hinzufügen",
14
+ "Add Event": "Neuer Termin",
15
+ "Get Events": "Events abrufen",
16
+ "Updates an event in Google Calendar.": "Aktualisiert ein Ereignis in Google Kalender.",
17
+ "Deletes an event from Google Calendar.": "Löscht ein Ereignis aus Google Kalender.",
18
+ "Finds free/busy calendar details from Google Calendar.": "Findet freie/belegte Kalenderdetails aus Google Kalender.",
19
+ "Fetch event details by its unique ID from Google Calendar.": "Ereignisdetails anhand seiner eindeutigen ID aus dem Google Kalender abrufen.",
20
+ "Make a custom API call to a specific endpoint": "Einen benutzerdefinierten API-Aufruf an einen bestimmten Endpunkt machen",
21
+ "Calendar": "Kalender",
22
+ "Event ID": "Event-ID",
23
+ "Attendees": "Teilnehmer",
24
+ "Summary": "Summary",
25
+ "Send Updates": "Updates senden",
26
+ "Title of the event": "Titel des Ereignisses",
27
+ "Start date time of the event": "Startdatum des Ereignisses",
28
+ "End date time of the event": "Enddatum des Ereignisses",
29
+ "Location": "Standort",
30
+ "Description": "Beschreibung",
31
+ "Color": "Farbe",
32
+ "Guests can modify": "Gäste können ändern",
33
+ "Guests can invite others": "Gäste können andere einladen",
34
+ "Guests can see other guests": "Gäste können andere Gäste sehen",
35
+ "Send Notifications": "Benachrichtigungen senden",
36
+ "Create Google Meet Link": "Google-Meet-Link erstellen",
37
+ "Event types": "Ereignistypen",
38
+ "Search Term": "Suchbegriff",
39
+ "Date from": "Datum ab",
40
+ "Date to": "Datum bis",
41
+ "Expand Recurring Event?": "Wiederkehrendes Ereignis aufklappen?",
42
+ "Calendars": "Kalender",
43
+ "Start Time": "Startzeit",
44
+ "End Time": "Endzeit",
45
+ "Max Attendees": "Max. Teilnehmer",
46
+ "Time Zone": "Zeitzone",
47
+ "Method": "Methode",
48
+ "Headers": "Kopfzeilen",
49
+ "Query Parameters": "Abfrageparameter",
50
+ "Body Type": "Körpertyp",
51
+ "Body": "Körper",
52
+ "Response is Binary ?": "Antwort ist binär?",
53
+ "No Error on Failure": "Kein Fehler bei Fehler",
54
+ "Timeout (in seconds)": "Timeout (in Sekunden)",
55
+ "Follow redirects": "Weiterleitungen folgen",
56
+ "Emails of the attendees (guests)": "E-Mails der Teilnehmer (Gäste)",
57
+ "The text describing the event to be created": "Der Text, der das zu erstellende Ereignis beschreibt",
58
+ "Guests who should receive notifications about the creation of the new event.": "Gäste, die Benachrichtigungen über die Erstellung der neuen Veranstaltung erhalten sollten.",
59
+ "By default it'll be 30 min post start time": "Standardmäßig ist es 30 Minuten Beitragsstartzeit",
60
+ "Description of the event. You can use HTML tags here.": "Beschreibung des Ereignisses. Hier können HTML-Tags verwendet werden.",
61
+ "Automatically create a Google Meet video conference link for this event": "Automatisch einen Google Meet Video-Konferenz-Link für dieses Ereignis erstellen",
62
+ "Select event types": "Ereignistypen auswählen",
63
+ "Whether to expand recurring events into instances and only return single one-off events and instances of recurring events, but not the underlying recurring events themselves.": "Ob wiederkehrende Ereignisse auf Instanzen ausgedehnt werden und nur einmalige Ereignisse und Fälle wiederkehrender Ereignisse zurückgegeben werden sollen, aber nicht die zugrunde liegenden wiederkehrenden Ereignisse selbst.",
64
+ "Select the calendars to check for busy periods.": "Wählen Sie die Kalender, die auf belebte Zeiträume überprüft werden sollen.",
65
+ "The start of the time range to check.": "Der Beginn des zu überprüfenden Zeitraums.",
66
+ "The end of the time range to check.": "Das Ende des zu überprüfenden Zeitraums.",
67
+ "The unique ID of the event (e.g., \"abc123def456\"). You can find this in the event URL or from other calendar actions.": "Die eindeutige ID des Ereignisses (z.B. \"abc123def456\"). Diese finden Sie in der Ereignis-URL oder von anderen Kalender-Aktionen.",
68
+ "Maximum number of attendees to include in the response. If there are more attendees, only the participant is returned.": "Maximale Teilnehmeranzahl, die in der Antwort aufgenommen werden soll. Wenn es mehr Teilnehmer gibt, wird nur der Teilnehmer zurückgegeben.",
69
+ "Time zone for the response (e.g., \"America/New_York\", \"Europe/London\"). Defaults to the calendar's time zone if not specified.": "Zeitzone für die Antwort (z.B. \"America/New_York\", \"Europe/London\"). Standardmäßig wird die Zeitzone des Kalenders angegeben.",
70
+ "Authorization headers are injected automatically from your connection.": "Autorisierungs-Header werden automatisch von Ihrer Verbindung injiziert.",
71
+ "Enable for files like PDFs, images, etc.": "Aktivieren für Dateien wie PDFs, Bilder usw.",
72
+ "All": "Alle",
73
+ "External Only": "Nur Externe",
74
+ "none": "keine",
75
+ "Yes, to everyone": "Ja, an alle",
76
+ "To non-Google Calendar guests only": "Nur für Gäste ohne Google Kalender",
77
+ "To no one": "An niemand",
78
+ "Default": "Standard",
79
+ "Out Of Office": "Außerhalb des Amtes",
80
+ "Focus Time": "Fokuszeit",
81
+ "Working Location": "Arbeitsort",
82
+ "GET": "ERHALTEN",
83
+ "POST": "POST",
84
+ "PATCH": "PATCH",
85
+ "PUT": "PUT",
86
+ "DELETE": "LÖSCHEN",
87
+ "HEAD": "HEAD",
88
+ "None": "Keine",
89
+ "JSON": "JSON",
90
+ "Form Data": "Formulardaten",
91
+ "Raw": "Rohe",
92
+ "New or Updated Event": "Neues oder aktualisiertes Ereignis",
93
+ "New Event": "Neues Ereignis",
94
+ "Event Ends": "Event endet",
95
+ "Event Start (Time Before)": "Event-Start (Vorzeige)",
96
+ "New Event Matching Search": "Neue Event-Matching Suche",
97
+ "Event Cancelled": "Ereignis abgebrochen",
98
+ "New Calendar": "Neuer Kalender",
99
+ "Triggers when an event is added or updated": "Wird ausgelöst, wenn ein Ereignis hinzugefügt oder aktualisiert wird",
100
+ "Fires when a new event is created in a calendar.": "Feuert ab, wenn ein neues Ereignis in einem Kalender erstellt wird.",
101
+ "Fires when an event ends.": "Feuert ab, wenn ein Ereignis endet.",
102
+ "Fires at a specified amount of time before an event starts (e.g., a reminder).": "Löscht eine bestimmte Zeit vor Beginn eines Ereignisses ab (z.B. eine Erinnerung).",
103
+ "Fires when a new event is created that matches a specified search term.": "Feuert ab, wenn ein neues Ereignis erstellt wird, das mit einem bestimmten Suchbegriff übereinstimmt.",
104
+ "Fires when an event is canceled or deleted.": "Feuer, wenn ein Ereignis abgebrochen oder gelöscht wird.",
105
+ "Fires when a new calendar is created or becomes accessible.": "Feuert ab, wenn ein neuer Kalender erstellt oder zugänglich wird.",
106
+ "Event Types to Monitor": "Zu überwachende Ereignistypen",
107
+ "Search Filter": "Suchfilter",
108
+ "Exclude All-Day Events": "Ganztägige Events ausschließen",
109
+ "Target Specific Event": "Zielspezifisches Ereignis",
110
+ "Event": "Ereignis",
111
+ "Time Before": "Zeit davor",
112
+ "Time Unit": "Zeiteinheit",
113
+ "Event Types": "Ereignistypen",
114
+ "Search In Fields": "Suche in Feldern",
115
+ "Cancellation Reasons": "Stornierungsgründe",
116
+ "Access Role Filter": "Rollenfilter",
117
+ "Calendar Name Filter": "Kalendername Filter",
118
+ "Exclude Shared Calendars": "Geteilte Kalender ausschließen",
119
+ "If true, the trigger will activate for every occurrence of a recurring event.": "Falls aktiviert, wird der Trigger für jedes Auftreten eines wiederkehrenden Ereignisses aktiviert.",
120
+ "Filter by specific event types (leave empty to monitor all event types)": "Nach bestimmten Ereignistypen filtern (leer lassen, um alle Ereignistypen zu überwachen)",
121
+ "Only trigger for events containing this text in title, description, or location (optional)": "Trigger nur für Ereignisse, die diesen Text in Titel, Beschreibung oder Ort enthalten (optional)",
122
+ "Skip triggering for all-day events": "Auslösen für ganztägige Events überspringen",
123
+ "Enable to monitor a specific event instead of all events in the calendar.": "Aktivieren, um ein bestimmtes Ereignis anstelle aller Ereignisse im Kalender zu überwachen.",
124
+ "The amount of time before the event starts.": "Die Zeitspanne bevor das Ereignis beginnt.",
125
+ "The keyword(s) to search for in new events (searches across title, description, location, and attendees by default).": "Das Schlüsselwort(e) nach dem in neuen Events gesucht werden soll (sucht standardmäßig über Titel, Beschreibung, Ort und Teilnehmer).",
126
+ "Filter by specific event types (optional)": "Nach bestimmten Ereignistypen filtern (optional)",
127
+ "Specify which fields to search in (leave empty to use Google's default search across all fields)": "Geben Sie die zu durchsuchenden Felder an (lassen Sie leer um die Standardsuche von Google in allen Feldern zu verwenden)",
128
+ "Filter by specific types of cancellations (optional)": "Nach bestimmten Arten von Stornierungen filtern (optional)",
129
+ "Only trigger for calendars with specific access roles (optional)": "Nur für Kalender mit spezifischen Zugriffsrollen auslösen (optional)",
130
+ "Only trigger for calendars containing this text in name or description (optional)": "Trigger nur für Kalender, die diesen Text in Name oder Beschreibung enthalten (optional)",
131
+ "Only trigger for calendars you own, not shared calendars": "Nur auslösen für Ihre eigenen Kalender, keine freigegebenen Kalender",
132
+ "Default Events": "Standardereignisse",
133
+ "Birthday Events": "Geburtstagsereignisse",
134
+ "Out of Office": "Außerhalb des Büros",
135
+ "From Gmail": "Von Gmail",
136
+ "Minutes": "Minuten",
137
+ "Hours": "Stunden",
138
+ "Days": "Tage",
139
+ "Event Title/Summary": "Ereignis-Titel/Zusammenfassung",
140
+ "Event Description": "Ereignisbeschreibung",
141
+ "Event Location": "Veranstaltungsort",
142
+ "Attendee Names/Emails": "Teilnehmernamen/E-Mails",
143
+ "Event Deleted": "Ereignis gelöscht",
144
+ "Attendee Declined": "Teilnehmer abgelehnt",
145
+ "Event Rescheduled": "Event neu geplant",
146
+ "Other Cancellations": "Andere Stornierungen",
147
+ "Owner": "Besitzer",
148
+ "Writer": "Schriftsteller",
149
+ "Reader": "Leser",
150
+ "Free/Busy Reader": "Kostenlose/Besetzter Reader"
151
+ }
@@ -0,0 +1,151 @@
1
+ {
2
+ "Get organized and stay on schedule": "Organiza y permanece según horario",
3
+ "Add Attendees to Event": "Añadir asistentes al evento",
4
+ "Create Quick Event": "Crear evento rápido",
5
+ "Create Event": "Crear Evento",
6
+ "Get all Events": "Obtener todos los eventos",
7
+ "Update Event": "Actualizar evento",
8
+ "Delete Event": "Eliminar evento",
9
+ "Find Busy/Free Periods in Calendar": "Encontrar Períodos ocupados/gratuitos en el calendario",
10
+ "Get Event by ID": "Obtener Evento por ID",
11
+ "Custom API Call": "Llamada API personalizada",
12
+ "Add one or more person to existing event.": "Añadir una o más personas al evento existente.",
13
+ "Add Quick Calendar Event": "Añadir evento de calendario rápido",
14
+ "Add Event": "Añadir evento",
15
+ "Get Events": "Obtener Eventos",
16
+ "Updates an event in Google Calendar.": "Actualiza un evento en Google Calendar.",
17
+ "Deletes an event from Google Calendar.": "Elimina un evento de Google Calendar.",
18
+ "Finds free/busy calendar details from Google Calendar.": "Encuentra información sobre el calendario libre o ocupado en Google Calendar.",
19
+ "Fetch event details by its unique ID from Google Calendar.": "Obtener detalles del evento por su ID única de Google Calendar.",
20
+ "Make a custom API call to a specific endpoint": "Hacer una llamada API personalizada a un extremo específico",
21
+ "Calendar": "Calendario",
22
+ "Event ID": "Evento ID",
23
+ "Attendees": "Asistentes",
24
+ "Summary": "Summary",
25
+ "Send Updates": "Enviar actualizaciones",
26
+ "Title of the event": "Título del evento",
27
+ "Start date time of the event": "Fecha de inicio del evento",
28
+ "End date time of the event": "Fecha de fin del evento",
29
+ "Location": "Ubicación",
30
+ "Description": "Descripción",
31
+ "Color": "Color",
32
+ "Guests can modify": "Los invitados pueden modificar",
33
+ "Guests can invite others": "Los invitados pueden invitar a otros",
34
+ "Guests can see other guests": "Los invitados pueden ver a otros invitados",
35
+ "Send Notifications": "Enviar notificaciones",
36
+ "Create Google Meet Link": "Crear enlace de Google Meet",
37
+ "Event types": "Tipos de eventos",
38
+ "Search Term": "Buscar término",
39
+ "Date from": "Fecha de",
40
+ "Date to": "Fecha hasta",
41
+ "Expand Recurring Event?": "¿Expandir Evento recurriente?",
42
+ "Calendars": "Calendarios",
43
+ "Start Time": "Hora de inicio",
44
+ "End Time": "Hora de fin",
45
+ "Max Attendees": "Máx. asistentes",
46
+ "Time Zone": "Zona horaria",
47
+ "Method": "Método",
48
+ "Headers": "Encabezados",
49
+ "Query Parameters": "Parámetros de consulta",
50
+ "Body Type": "Tipo de cuerpo",
51
+ "Body": "Cuerpo",
52
+ "Response is Binary ?": "¿Respuesta es binaria?",
53
+ "No Error on Failure": "No hay ningún error en fallo",
54
+ "Timeout (in seconds)": "Tiempo de espera (en segundos)",
55
+ "Follow redirects": "Seguir redirecciones",
56
+ "Emails of the attendees (guests)": "Correos electrónicos de los asistentes (invitados)",
57
+ "The text describing the event to be created": "El texto que describe el evento a crear",
58
+ "Guests who should receive notifications about the creation of the new event.": "Invitados que deben recibir notificaciones sobre la creación del nuevo evento.",
59
+ "By default it'll be 30 min post start time": "Por defecto será 30 minutos de inicio del post",
60
+ "Description of the event. You can use HTML tags here.": "Descripción del evento. Puedes usar etiquetas HTML aquí.",
61
+ "Automatically create a Google Meet video conference link for this event": "Crear automáticamente un enlace de videoconferencia de Google Meet para este evento",
62
+ "Select event types": "Seleccionar tipos de evento",
63
+ "Whether to expand recurring events into instances and only return single one-off events and instances of recurring events, but not the underlying recurring events themselves.": "Si expandir o no los eventos recurrentes en instancias y sólo retornar eventos únicos e instancias de eventos recurrentes, pero no los eventos recurrentes subyacentes ellos mismos.",
64
+ "Select the calendars to check for busy periods.": "Seleccione los calendarios para comprobar los periodos ocupados.",
65
+ "The start of the time range to check.": "El inicio del intervalo de tiempo a comprobar.",
66
+ "The end of the time range to check.": "El final del intervalo de tiempo a comprobar.",
67
+ "The unique ID of the event (e.g., \"abc123def456\"). You can find this in the event URL or from other calendar actions.": "El ID único del evento (por ejemplo, \"abc123def456\"). Puede encontrar esto en la URL del evento o en otras acciones del calendario.",
68
+ "Maximum number of attendees to include in the response. If there are more attendees, only the participant is returned.": "Número máximo de asistentes a incluir en la respuesta. Si hay más asistentes, sólo se devuelve el participante.",
69
+ "Time zone for the response (e.g., \"America/New_York\", \"Europe/London\"). Defaults to the calendar's time zone if not specified.": "Zona horaria para la respuesta (por ejemplo, \"América/Nuevo_Izquierda\", \"Europa/Londres\"). Por defecto se indica la zona horaria del calendario si no se especifica.",
70
+ "Authorization headers are injected automatically from your connection.": "Las cabeceras de autorización se inyectan automáticamente desde tu conexión.",
71
+ "Enable for files like PDFs, images, etc.": "Activar para archivos como PDFs, imágenes, etc.",
72
+ "All": "Todos",
73
+ "External Only": "Sólo externo",
74
+ "none": "ninguna",
75
+ "Yes, to everyone": "Sí, a todos",
76
+ "To non-Google Calendar guests only": "Sólo para los invitados que no son Google Calendar",
77
+ "To no one": "A nadie",
78
+ "Default": "Por defecto",
79
+ "Out Of Office": "Fuera de la oficina",
80
+ "Focus Time": "Tiempo de Enfoque",
81
+ "Working Location": "Ubicación laboral",
82
+ "GET": "RECOGER",
83
+ "POST": "POST",
84
+ "PATCH": "PATCH",
85
+ "PUT": "PUT",
86
+ "DELETE": "BORRAR",
87
+ "HEAD": "LIMPIO",
88
+ "None": "Ninguna",
89
+ "JSON": "JSON",
90
+ "Form Data": "Datos de Formulario",
91
+ "Raw": "Rápido",
92
+ "New or Updated Event": "Evento nuevo o actualizado",
93
+ "New Event": "Nuevo evento",
94
+ "Event Ends": "Fin del evento",
95
+ "Event Start (Time Before)": "Inicio del evento (Time Before)",
96
+ "New Event Matching Search": "Búsqueda de nuevo evento coincidente",
97
+ "Event Cancelled": "Evento cancelado",
98
+ "New Calendar": "Nuevo calendario",
99
+ "Triggers when an event is added or updated": "Dispara cuando se agrega o actualiza un evento",
100
+ "Fires when a new event is created in a calendar.": "Dispara cuando se crea un nuevo evento en un calendario.",
101
+ "Fires when an event ends.": "Dispara cuando un evento termina.",
102
+ "Fires at a specified amount of time before an event starts (e.g., a reminder).": "Dispara a una cantidad específica de tiempo antes de que un evento comience (por ejemplo, un recordatorio).",
103
+ "Fires when a new event is created that matches a specified search term.": "Dispara cuando se crea un nuevo evento que coincida con un término de búsqueda especificado.",
104
+ "Fires when an event is canceled or deleted.": "Dispara cuando un evento es cancelado o eliminado.",
105
+ "Fires when a new calendar is created or becomes accessible.": "Dispara cuando se crea un nuevo calendario o se vuelve accesible.",
106
+ "Event Types to Monitor": "Tipos de Evento a Monitorizar",
107
+ "Search Filter": "Filtro de búsqueda",
108
+ "Exclude All-Day Events": "Excluir eventos de todo el día",
109
+ "Target Specific Event": "Evento específico de destino",
110
+ "Event": "Evento",
111
+ "Time Before": "Tiempo antes",
112
+ "Time Unit": "Unidad de tiempo",
113
+ "Event Types": "Tipos de Evento",
114
+ "Search In Fields": "Buscar en campos",
115
+ "Cancellation Reasons": "Razones de cancelación",
116
+ "Access Role Filter": "Filtro de Rol de Acceso",
117
+ "Calendar Name Filter": "Filtro de nombre del calendario",
118
+ "Exclude Shared Calendars": "Excluir Calendarios Compartidos",
119
+ "If true, the trigger will activate for every occurrence of a recurring event.": "Si es verdadero, el disparador se activará para cada ocurrencia de un evento recurrente.",
120
+ "Filter by specific event types (leave empty to monitor all event types)": "Filtrar por tipos de eventos específicos (dejar vacío para supervisar todos los tipos de eventos)",
121
+ "Only trigger for events containing this text in title, description, or location (optional)": "Sólo para eventos que contengan este texto en título, descripción o ubicación (opcional)",
122
+ "Skip triggering for all-day events": "Saltar activación para eventos de todo el día",
123
+ "Enable to monitor a specific event instead of all events in the calendar.": "Activar para monitorear un evento específico en lugar de todos los eventos del calendario.",
124
+ "The amount of time before the event starts.": "La cantidad de tiempo antes de que comience el evento.",
125
+ "The keyword(s) to search for in new events (searches across title, description, location, and attendees by default).": "Palabra(s) clave(s) a buscar en nuevos eventos (busca por defecto en el título, descripción, ubicación y asistentes).",
126
+ "Filter by specific event types (optional)": "Filtrar por tipos de evento específicos (opcional)",
127
+ "Specify which fields to search in (leave empty to use Google's default search across all fields)": "Especifique en qué campos buscar (dejar vacío para usar la búsqueda por defecto de Google en todos los campos)",
128
+ "Filter by specific types of cancellations (optional)": "Filtrar por tipos específicos de cancelaciones (opcional)",
129
+ "Only trigger for calendars with specific access roles (optional)": "Sólo disparador para calendarios con roles de acceso específicos (opcional)",
130
+ "Only trigger for calendars containing this text in name or description (optional)": "Sólo para calendarios que contengan este texto en nombre o descripción (opcional)",
131
+ "Only trigger for calendars you own, not shared calendars": "Disparador solo para los calendarios que posees, no para los calendarios compartidos",
132
+ "Default Events": "Eventos por defecto",
133
+ "Birthday Events": "Eventos de cumpleaños",
134
+ "Out of Office": "Fuera de la oficina",
135
+ "From Gmail": "Desde Gmail",
136
+ "Minutes": "Minutos",
137
+ "Hours": "Horas",
138
+ "Days": "Días",
139
+ "Event Title/Summary": "Título del evento/Resumen",
140
+ "Event Description": "Descripción del evento",
141
+ "Event Location": "Lugar del evento",
142
+ "Attendee Names/Emails": "Nombres/Correos de Asistentes",
143
+ "Event Deleted": "Evento eliminado",
144
+ "Attendee Declined": "Asistente rechazado",
145
+ "Event Rescheduled": "Evento Reprogramado",
146
+ "Other Cancellations": "Otras cancelaciones",
147
+ "Owner": "Propietario",
148
+ "Writer": "Escritor",
149
+ "Reader": "Lector",
150
+ "Free/Busy Reader": "Lector libre/ocupado"
151
+ }
@@ -0,0 +1,151 @@
1
+ {
2
+ "Get organized and stay on schedule": "Organisez-vous et tenez les délais",
3
+ "Add Attendees to Event": "Ajouter des participants à l'événement",
4
+ "Create Quick Event": "Créer un événement rapide",
5
+ "Create Event": "Créer un événement",
6
+ "Get all Events": "Obtenir tous les événements",
7
+ "Update Event": "Mettre à jour l'événement",
8
+ "Delete Event": "Supprimer l'événement",
9
+ "Find Busy/Free Periods in Calendar": "Trouver des périodes occupées/gratuites dans le calendrier",
10
+ "Get Event by ID": "Obtenir un événement par ID",
11
+ "Custom API Call": "Appel API personnalisé",
12
+ "Add one or more person to existing event.": "Ajouter une ou plusieurs personnes à un événement existant.",
13
+ "Add Quick Calendar Event": "Ajouter un événement de calendrier rapide",
14
+ "Add Event": "Ajouter un événement",
15
+ "Get Events": "Obtenir des événements",
16
+ "Updates an event in Google Calendar.": "Met à jour un événement dans Google Agenda.",
17
+ "Deletes an event from Google Calendar.": "Supprime un événement de Google Agenda.",
18
+ "Finds free/busy calendar details from Google Calendar.": "Trouve les détails du calendrier libre/occupé depuis Google Agenda.",
19
+ "Fetch event details by its unique ID from Google Calendar.": "Récupérer les détails de l'événement par son ID unique depuis Google Agenda.",
20
+ "Make a custom API call to a specific endpoint": "Passez un appel API personnalisé à un point de terminaison spécifique",
21
+ "Calendar": "Calendrier",
22
+ "Event ID": "ID de l'événement",
23
+ "Attendees": "Participants",
24
+ "Summary": "Résumé",
25
+ "Send Updates": "Envoyer les mises à jour",
26
+ "Title of the event": "Titre de l'événement",
27
+ "Start date time of the event": "Date de début de l'événement",
28
+ "End date time of the event": "Date de fin de l'événement",
29
+ "Location": "Lieu",
30
+ "Description": "Libellé",
31
+ "Color": "Couleur",
32
+ "Guests can modify": "Les invités peuvent modifier",
33
+ "Guests can invite others": "Les invités peuvent inviter d'autres personnes",
34
+ "Guests can see other guests": "Les invités peuvent voir les autres invités",
35
+ "Send Notifications": "Envoyer des notifications",
36
+ "Create Google Meet Link": "Créer un lien Google Meet",
37
+ "Event types": "Types d'événements",
38
+ "Search Term": "Terme de recherche",
39
+ "Date from": "Date de début",
40
+ "Date to": "Date de fin",
41
+ "Expand Recurring Event?": "Développer l'événement récurrent ?",
42
+ "Calendars": "Calendriers",
43
+ "Start Time": "Start Time",
44
+ "End Time": "Heure de fin",
45
+ "Max Attendees": "Nombre maximum de participants",
46
+ "Time Zone": "Fuseau horaire",
47
+ "Method": "Méthode",
48
+ "Headers": "En-têtes",
49
+ "Query Parameters": "Paramètres de requête",
50
+ "Body Type": "Body Type",
51
+ "Body": "Corps",
52
+ "Response is Binary ?": "La réponse est Binaire ?",
53
+ "No Error on Failure": "Aucune erreur en cas d'échec",
54
+ "Timeout (in seconds)": "Délai d'attente (en secondes)",
55
+ "Follow redirects": "Suivre les redirections",
56
+ "Emails of the attendees (guests)": "E-mails des participants (invités)",
57
+ "The text describing the event to be created": "Le texte décrivant l'événement à créer",
58
+ "Guests who should receive notifications about the creation of the new event.": "Les invités qui devraient recevoir des notifications sur la création de l'événement.",
59
+ "By default it'll be 30 min post start time": "Par défaut, il sera de 30 mn après le début",
60
+ "Description of the event. You can use HTML tags here.": "Description de l'événement. Vous pouvez utiliser des balises HTML ici.",
61
+ "Automatically create a Google Meet video conference link for this event": "Créer automatiquement un lien de vidéoconférence Google Meet pour cet événement",
62
+ "Select event types": "Sélectionnez les types d'événements",
63
+ "Whether to expand recurring events into instances and only return single one-off events and instances of recurring events, but not the underlying recurring events themselves.": "S'il faut étendre les événements récurrents dans des instances et ne retourner que des événements uniques et des instances d'événements récurrents, mais pas les événements récurrents sous-jacents eux-mêmes.",
64
+ "Select the calendars to check for busy periods.": "Sélectionnez les calendriers à vérifier pour les périodes occupées.",
65
+ "The start of the time range to check.": "Le début de l'intervalle de temps à vérifier.",
66
+ "The end of the time range to check.": "Fin de la plage de temps à vérifier.",
67
+ "The unique ID of the event (e.g., \"abc123def456\"). You can find this in the event URL or from other calendar actions.": "L'ID unique de l'événement (par exemple, \"abc123def456\"). Vous pouvez le trouver dans l'URL de l'événement ou à partir d'autres actions de calendrier.",
68
+ "Maximum number of attendees to include in the response. If there are more attendees, only the participant is returned.": "Le nombre maximum de participants à inclure dans la réponse. S'il y a plus de participants, seul le participant est retourné.",
69
+ "Time zone for the response (e.g., \"America/New_York\", \"Europe/London\"). Defaults to the calendar's time zone if not specified.": "Le fuseau horaire de la réponse (par exemple, \"Amérique/New_York\", \"Europe/Londres\"). Le fuseau horaire du calendrier n'est pas spécifié par défaut.",
70
+ "Authorization headers are injected automatically from your connection.": "Les en-têtes d'autorisation sont injectés automatiquement à partir de votre connexion.",
71
+ "Enable for files like PDFs, images, etc.": "Activer pour les fichiers comme les PDFs, les images, etc.",
72
+ "All": "Tous",
73
+ "External Only": "Externe uniquement",
74
+ "none": "aucun",
75
+ "Yes, to everyone": "Oui, à tout le monde",
76
+ "To non-Google Calendar guests only": "Seulement pour les invités qui ne sont pas sur Google Agenda",
77
+ "To no one": "À personne",
78
+ "Default": "Par défaut",
79
+ "Out Of Office": "Hors du bureau",
80
+ "Focus Time": "Temps de concentration",
81
+ "Working Location": "Lieu de travail",
82
+ "GET": "GET",
83
+ "POST": "POST",
84
+ "PATCH": "PATCH",
85
+ "PUT": "PUT",
86
+ "DELETE": "DELETE",
87
+ "HEAD": "HEAD",
88
+ "None": "Aucun",
89
+ "JSON": "JSON",
90
+ "Form Data": "Données du formulaire",
91
+ "Raw": "Brut",
92
+ "New or Updated Event": "Nouvel événement ou mise à jour",
93
+ "New Event": "Nouvel événement",
94
+ "Event Ends": "Fin de l'événement",
95
+ "Event Start (Time Before)": "Début de l'événement (avant le temps)",
96
+ "New Event Matching Search": "Recherche de nouvel événement correspondant",
97
+ "Event Cancelled": "Événement annulé",
98
+ "New Calendar": "Nouveau calendrier",
99
+ "Triggers when an event is added or updated": "Se déclenche lorsqu'un événement est ajouté ou mis à jour",
100
+ "Fires when a new event is created in a calendar.": "Se déclenche lorsqu'un nouvel événement est créé dans un calendrier.",
101
+ "Fires when an event ends.": "Tire quand un événement se termine.",
102
+ "Fires at a specified amount of time before an event starts (e.g., a reminder).": "Tire à un certain temps avant le début d'un événement (par exemple, un rappel).",
103
+ "Fires when a new event is created that matches a specified search term.": "Déclenche lorsqu'un nouvel événement est créé qui correspond à un terme de recherche spécifié.",
104
+ "Fires when an event is canceled or deleted.": "Se déclenche lorsqu'un événement est annulé ou supprimé.",
105
+ "Fires when a new calendar is created or becomes accessible.": "Se déclenche lorsqu'un nouveau calendrier est créé ou devient accessible.",
106
+ "Event Types to Monitor": "Types d'événements à surveiller",
107
+ "Search Filter": "Filtre de recherche",
108
+ "Exclude All-Day Events": "Exclure les événements de toute la journée",
109
+ "Target Specific Event": "Evénement spécifique de la cible",
110
+ "Event": "Evénement",
111
+ "Time Before": "Temps avant",
112
+ "Time Unit": "Unité de temps",
113
+ "Event Types": "Types d'événements",
114
+ "Search In Fields": "Rechercher dans les champs",
115
+ "Cancellation Reasons": "Raisons d'annulation",
116
+ "Access Role Filter": "Filtre d'accès aux rôles",
117
+ "Calendar Name Filter": "Filtre du nom du calendrier",
118
+ "Exclude Shared Calendars": "Exclure les calendriers partagés",
119
+ "If true, the trigger will activate for every occurrence of a recurring event.": "Si vrai, le déclencheur s'activera pour chaque occurrence d'un événement récurrent.",
120
+ "Filter by specific event types (leave empty to monitor all event types)": "Filtrer par type d’événement spécifique (laisser vide pour surveiller tous les types d’événements)",
121
+ "Only trigger for events containing this text in title, description, or location (optional)": "Déclenche uniquement les événements contenant ce texte dans le titre, la description ou l'emplacement (facultatif)",
122
+ "Skip triggering for all-day events": "Ignorer le déclenchement pour les événements de toute la journée",
123
+ "Enable to monitor a specific event instead of all events in the calendar.": "Activer pour surveiller un événement spécifique au lieu de tous les événements du calendrier.",
124
+ "The amount of time before the event starts.": "Le temps avant le début de l'événement.",
125
+ "The keyword(s) to search for in new events (searches across title, description, location, and attendees by default).": "Le ou les mots-clés à rechercher dans de nouveaux événements (recherche par titre, description, lieu et participants par défaut).",
126
+ "Filter by specific event types (optional)": "Filtrer par type d’événement spécifique (facultatif)",
127
+ "Specify which fields to search in (leave empty to use Google's default search across all fields)": "Spécifier les champs à rechercher (laisser vide pour utiliser la recherche par défaut de Google dans tous les champs)",
128
+ "Filter by specific types of cancellations (optional)": "Filtrer par types spécifiques d'annulations (optionnel)",
129
+ "Only trigger for calendars with specific access roles (optional)": "Déclenche uniquement les calendriers avec des rôles d'accès spécifiques (facultatif)",
130
+ "Only trigger for calendars containing this text in name or description (optional)": "Déclenche uniquement les calendriers contenant ce texte dans le nom ou la description (facultatif)",
131
+ "Only trigger for calendars you own, not shared calendars": "Déclenche uniquement les calendriers que vous possédez, pas les calendriers partagés",
132
+ "Default Events": "Événements par défaut",
133
+ "Birthday Events": "Événements d'anniversaire",
134
+ "Out of Office": "Hors du bureau",
135
+ "From Gmail": "Depuis Gmail",
136
+ "Minutes": "Minutes",
137
+ "Hours": "Heures",
138
+ "Days": "Jours",
139
+ "Event Title/Summary": "Titre/Résumé de l'événement",
140
+ "Event Description": "Description de l'événement",
141
+ "Event Location": "Lieu de l'événement",
142
+ "Attendee Names/Emails": "Noms/E-mails des participants",
143
+ "Event Deleted": "Événement supprimé",
144
+ "Attendee Declined": "Participants refusés",
145
+ "Event Rescheduled": "Événement reprogrammé",
146
+ "Other Cancellations": "Autres annulations",
147
+ "Owner": "Propriétaire",
148
+ "Writer": "Écrivain",
149
+ "Reader": "Lecteur",
150
+ "Free/Busy Reader": "Lecteur Gratuit/Occupé"
151
+ }