@activepieces/piece-savvycal 0.0.2 → 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.
- package/package.json +5 -5
- package/src/i18n/de.json +73 -94
- package/src/i18n/es.json +73 -94
- package/src/i18n/fr.json +81 -75
- package/src/i18n/ja.json +73 -94
- package/src/i18n/nl.json +72 -93
- package/src/i18n/pt.json +73 -94
- package/src/i18n/ru.json +74 -0
- package/src/i18n/translation.json +45 -13
- package/src/i18n/vi.json +74 -0
- package/src/i18n/zh.json +40 -61
- package/src/index.d.ts +3 -2
- package/src/index.js +27 -36
- package/src/index.js.map +1 -1
- package/src/lib/actions/cancel-event.d.ts +3 -1
- package/src/lib/actions/cancel-event.js +3 -3
- package/src/lib/actions/cancel-event.js.map +1 -1
- package/src/lib/actions/create-event.d.ts +10 -2
- package/src/lib/actions/create-event.js +32 -17
- package/src/lib/actions/create-event.js.map +1 -1
- package/src/lib/actions/delete-scheduling-link.d.ts +10 -0
- package/src/lib/actions/delete-scheduling-link.js +67 -0
- package/src/lib/actions/delete-scheduling-link.js.map +1 -0
- package/src/lib/actions/duplicate-scheduling-link.d.ts +10 -0
- package/src/lib/actions/duplicate-scheduling-link.js +63 -0
- package/src/lib/actions/duplicate-scheduling-link.js.map +1 -0
- package/src/lib/actions/find-events-by-email.d.ts +3 -1
- package/src/lib/actions/find-events-by-email.js +3 -3
- package/src/lib/actions/find-events-by-email.js.map +1 -1
- package/src/lib/actions/get-current-user.d.ts +3 -1
- package/src/lib/actions/get-current-user.js +3 -3
- package/src/lib/actions/get-current-user.js.map +1 -1
- package/src/lib/actions/get-event.d.ts +3 -1
- package/src/lib/actions/get-event.js +3 -3
- package/src/lib/actions/get-event.js.map +1 -1
- package/src/lib/actions/get-link-slots.d.ts +10 -0
- package/src/lib/actions/get-link-slots.js +70 -0
- package/src/lib/actions/get-link-slots.js.map +1 -0
- package/src/lib/actions/get-scheduling-link.d.ts +10 -0
- package/src/lib/actions/get-scheduling-link.js +63 -0
- package/src/lib/actions/get-scheduling-link.js.map +1 -0
- package/src/lib/actions/get-workflow-rules.d.ts +7 -0
- package/src/lib/actions/get-workflow-rules.js +50 -0
- package/src/lib/actions/get-workflow-rules.js.map +1 -0
- package/src/lib/actions/list-events.d.ts +10 -3
- package/src/lib/actions/list-events.js +70 -24
- package/src/lib/actions/list-events.js.map +1 -1
- package/src/lib/actions/list-scheduling-links.d.ts +7 -1
- package/src/lib/actions/list-scheduling-links.js +30 -17
- package/src/lib/actions/list-scheduling-links.js.map +1 -1
- package/src/lib/actions/list-workflows.d.ts +3 -0
- package/src/lib/actions/list-workflows.js +35 -0
- package/src/lib/actions/list-workflows.js.map +1 -0
- package/src/lib/actions/toggle-scheduling-link.d.ts +10 -0
- package/src/lib/actions/toggle-scheduling-link.js +63 -0
- package/src/lib/actions/toggle-scheduling-link.js.map +1 -0
- package/src/lib/auth.d.ts +14 -0
- package/src/lib/auth.js +59 -0
- package/src/lib/auth.js.map +1 -0
- package/src/lib/common/index.d.ts +13 -0
- package/src/lib/common/index.js +98 -29
- package/src/lib/common/index.js.map +1 -1
- package/src/lib/triggers/new-event.d.ts +36 -4
- package/src/lib/triggers/new-event.js +85 -18
- package/src/lib/triggers/new-event.js.map +1 -1
- package/src/lib/triggers/new-poll-response.d.ts +18 -0
- package/src/lib/triggers/new-poll-response.js +81 -0
- package/src/lib/triggers/new-poll-response.js.map +1 -0
- package/src/lib/triggers/workflow-action-triggered.d.ts +10 -0
- package/src/lib/triggers/workflow-action-triggered.js +65 -0
- package/src/lib/triggers/workflow-action-triggered.js.map +1 -0
- package/src/lib/common/webhook-trigger-factory.d.ts +0 -7
- package/src/lib/common/webhook-trigger-factory.js +0 -96
- package/src/lib/common/webhook-trigger-factory.js.map +0 -1
- package/src/lib/triggers/booking-canceled.d.ts +0 -1
- package/src/lib/triggers/booking-canceled.js +0 -11
- package/src/lib/triggers/booking-canceled.js.map +0 -1
- package/src/lib/triggers/booking-rescheduled.d.ts +0 -1
- package/src/lib/triggers/booking-rescheduled.js +0 -11
- package/src/lib/triggers/booking-rescheduled.js.map +0 -1
- package/src/lib/triggers/new-booking.d.ts +0 -1
- package/src/lib/triggers/new-booking.js +0 -11
- package/src/lib/triggers/new-booking.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@activepieces/piece-savvycal",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"main": "./src/index.js",
|
|
5
5
|
"types": "./src/index.d.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
"lint": "eslint 'src/**/*.ts'"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"
|
|
12
|
-
"@activepieces/pieces-
|
|
13
|
-
"@activepieces/
|
|
14
|
-
"
|
|
11
|
+
"@activepieces/pieces-common": "0.12.3",
|
|
12
|
+
"@activepieces/pieces-framework": "0.28.1",
|
|
13
|
+
"@activepieces/shared": "0.71.3",
|
|
14
|
+
"tslib": "2.6.2"
|
|
15
15
|
}
|
|
16
16
|
}
|
package/src/i18n/de.json
CHANGED
|
@@ -1,95 +1,74 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"Retrieves the
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"Scheduling
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"Only return events that start
|
|
41
|
-
"Only
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
|
|
75
|
-
"Triggers when a scheduled meeting is rescheduled to a new time.": "Wird ausgelöst, wenn ein geplantes Meeting auf eine neue Zeit verschoben wird.",
|
|
76
|
-
"Triggers on any SavvyCal event type, including checkout, attendee, and poll events. For the most common cases (new booking, cancellation, reschedule) use the dedicated triggers instead.": "Trigger auf jeden SavvyCal Event-Typ, einschließlich Checkout, Teilnehmer und Umfrage-Events. Für die häufigsten Fälle (neue Buchung, Stornierung, Umbuchung) verwenden Sie stattdessen die dedizierten Trigger.",
|
|
77
|
-
"Event Types": "Ereignistypen",
|
|
78
|
-
"Select which event types to trigger on. Leave empty to trigger on all event types.": "Wählen Sie, welche Ereignistypen ausgelöst werden sollen. Lassen Sie leer, um alle Ereignistypen auszulösen.",
|
|
79
|
-
"Event Created": "Ereignis erstellt",
|
|
80
|
-
"Event Requested": "Event angefordert",
|
|
81
|
-
"Event Approved": "Ereignis genehmigt",
|
|
82
|
-
"Event Declined": "Ereignis abgelehnt",
|
|
83
|
-
"Event Rescheduled": "Event neu geplant",
|
|
84
|
-
"Event Changed": "Event geändert",
|
|
85
|
-
"Event Canceled": "Ereignis abgebrochen",
|
|
86
|
-
"Checkout Pending": "Kasse ausstehend",
|
|
87
|
-
"Checkout Expired": "Kasse abgelaufen",
|
|
88
|
-
"Checkout Completed": "Kasse abgeschlossen",
|
|
89
|
-
"Attendee Added": "Teilnehmer hinzugefügt",
|
|
90
|
-
"Attendee Canceled": "Teilnehmer abgesagt",
|
|
91
|
-
"Attendee Rescheduled": "Teilnehmer neu geplant",
|
|
92
|
-
"Poll Response Created": "Umfrage-Antwort erstellt",
|
|
93
|
-
"Poll Response Updated": "Umfrageantwort aktualisiert",
|
|
94
|
-
"Workflow Action Triggered": "Workflow-Aktion ausgelöst"
|
|
95
|
-
}
|
|
2
|
+
"Personal Access Token (Private Key)": "Personal Access Token (Private Key)",
|
|
3
|
+
"Cancel Event": "Cancel Event",
|
|
4
|
+
"Cancels a scheduled meeting in SavvyCal.": "Cancels a scheduled meeting in SavvyCal.",
|
|
5
|
+
"Create Event": "Create Event",
|
|
6
|
+
"Books a meeting on a scheduling link at a specific time slot.": "Books a meeting on a scheduling link at a specific time slot.",
|
|
7
|
+
"Find Events by Attendee Email": "Find Events by Attendee Email",
|
|
8
|
+
"Returns all events where the attendee's email matches the given address.": "Returns all events where the attendee's email matches the given address.",
|
|
9
|
+
"Get Current User": "Get Current User",
|
|
10
|
+
"Retrieves the profile of the currently authenticated SavvyCal user.": "Retrieves the profile of the currently authenticated SavvyCal user.",
|
|
11
|
+
"Get Event": "Get Event",
|
|
12
|
+
"Retrieves the details of a specific scheduled meeting by its ID.": "Retrieves the details of a specific scheduled meeting by its ID.",
|
|
13
|
+
"List Events": "List Events",
|
|
14
|
+
"Returns a list of scheduled meetings from your SavvyCal account.": "Returns a list of scheduled meetings from your SavvyCal account.",
|
|
15
|
+
"List Scheduling Links": "List Scheduling Links",
|
|
16
|
+
"Returns all scheduling links configured in your SavvyCal account.": "Returns all scheduling links configured in your SavvyCal account.",
|
|
17
|
+
"New Event": "New Event",
|
|
18
|
+
"Triggers when a SavvyCal event occurs. Select one or more event types, or leave empty to trigger on all types.": "Triggers when a SavvyCal event occurs. Select one or more event types, or leave empty to trigger on all types.",
|
|
19
|
+
"Event ID": "Event ID",
|
|
20
|
+
"The unique ID of the event to cancel. You can find this from the output of a trigger or the List Events / Get Event actions.": "The unique ID of the event to cancel. You can find this from the output of a trigger or the List Events / Get Event actions.",
|
|
21
|
+
"The unique ID of the event. You can find this in the event URL in SavvyCal, or from the output of a trigger or List Events action.": "The unique ID of the event. You can find this in the event URL in SavvyCal, or from the output of a trigger or List Events action.",
|
|
22
|
+
"Scheduling Link": "Scheduling Link",
|
|
23
|
+
"Scheduling Links": "Scheduling Links",
|
|
24
|
+
"Select the scheduling link to book a meeting on.": "Select the scheduling link to book a meeting on.",
|
|
25
|
+
"Only trigger for events on the selected scheduling links. Leave empty to trigger for all links.": "Only trigger for events on the selected scheduling links. Leave empty to trigger for all links.",
|
|
26
|
+
"Only return events booked through the selected scheduling links. Leave empty for all links.": "Only return events booked through the selected scheduling links. Leave empty for all links.",
|
|
27
|
+
"Start Time": "Start Time",
|
|
28
|
+
"The start date and time of the meeting. Must match an available slot on the scheduling link.": "The start date and time of the meeting. Must match an available slot on the scheduling link.",
|
|
29
|
+
"End Time": "End Time",
|
|
30
|
+
"The End date and time of the meeting": "The End date and time of the meeting",
|
|
31
|
+
"Attendee Name": "Attendee Name",
|
|
32
|
+
"Full name of the person booking the meeting.": "Full name of the person booking the meeting.",
|
|
33
|
+
"Attendee Email": "Attendee Email",
|
|
34
|
+
"Email address of the person booking the meeting.": "Email address of the person booking the meeting.",
|
|
35
|
+
"The email address of the attendee to search for.": "The email address of the attendee to search for.",
|
|
36
|
+
"Start After": "Start After",
|
|
37
|
+
"Only return events that start after this date and time.": "Only return events that start after this date and time.",
|
|
38
|
+
"Only search events starting after this date. Use this to limit the search scope and improve performance.": "Only search events starting after this date. Use this to limit the search scope and improve performance.",
|
|
39
|
+
"Start Before": "Start Before",
|
|
40
|
+
"Only return events that start before this date and time.": "Only return events that start before this date and time.",
|
|
41
|
+
"Only search events starting before this date.": "Only search events starting before this date.",
|
|
42
|
+
"State": "State",
|
|
43
|
+
"Filter events by their current status. Leave empty to return all statuses.": "Filter events by their current status. Leave empty to return all statuses.",
|
|
44
|
+
"Maximum Results": "Maximum Results",
|
|
45
|
+
"Maximum number of events to return. Leave empty to return all matching events.": "Maximum number of events to return. Leave empty to return all matching events.",
|
|
46
|
+
"Event Types": "Event Types",
|
|
47
|
+
"Select which event types to trigger on. Leave empty to trigger on all event types.": "Select which event types to trigger on. Leave empty to trigger on all event types.",
|
|
48
|
+
"All": "All",
|
|
49
|
+
"Confirmed": "Confirmed",
|
|
50
|
+
"Canceled": "Canceled",
|
|
51
|
+
"Event Created": "Event Created",
|
|
52
|
+
"Event Requested": "Event Requested",
|
|
53
|
+
"Event Approved": "Event Approved",
|
|
54
|
+
"Event Declined": "Event Declined",
|
|
55
|
+
"Event Rescheduled": "Event Rescheduled",
|
|
56
|
+
"Event Changed": "Event Changed",
|
|
57
|
+
"Event Canceled": "Event Canceled",
|
|
58
|
+
"Checkout Pending": "Checkout Pending",
|
|
59
|
+
"Checkout Expired": "Checkout Expired",
|
|
60
|
+
"Checkout Completed": "Checkout Completed",
|
|
61
|
+
"Attendee Added": "Attendee Added",
|
|
62
|
+
"Attendee Canceled": "Attendee Canceled",
|
|
63
|
+
"Attendee Rescheduled": "Attendee Rescheduled",
|
|
64
|
+
"Poll Response Created": "Poll Response Created",
|
|
65
|
+
"Poll Response Updated": "Poll Response Updated",
|
|
66
|
+
"Workflow Action Triggered": "Workflow Action Triggered",
|
|
67
|
+
"Please connect your account first": "Please connect your account first",
|
|
68
|
+
"Failed to load scheduling links.": "Failed to load scheduling links.",
|
|
69
|
+
"Failed to load scheduling links. Check your connection.": "Failed to load scheduling links. Check your connection.",
|
|
70
|
+
"Team": "Team",
|
|
71
|
+
"Filter scheduling links by team. Leave empty to show all teams.": "Filter scheduling links by team. Leave empty to show all teams.",
|
|
72
|
+
"Personal": "Personal",
|
|
73
|
+
"Failed to load teams.": "Failed to load teams."
|
|
74
|
+
}
|
package/src/i18n/es.json
CHANGED
|
@@ -1,95 +1,74 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"Retrieves the
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"Scheduling
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"Only return events that start
|
|
41
|
-
"Only
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
|
|
75
|
-
"Triggers when a scheduled meeting is rescheduled to a new time.": "Dispara cuando una reunión programada es reprogramada a una nueva hora.",
|
|
76
|
-
"Triggers on any SavvyCal event type, including checkout, attendee, and poll events. For the most common cases (new booking, cancellation, reschedule) use the dedicated triggers instead.": "Activa cualquier tipo de evento de SavvyCal, incluyendo checkout, asistentes y eventos de encuestas. Para los casos más comunes (nueva reserva, cancelación, reprogramación) utilice en su lugar los lanzadores dedicados.",
|
|
77
|
-
"Event Types": "Tipos de Evento",
|
|
78
|
-
"Select which event types to trigger on. Leave empty to trigger on all event types.": "Seleccione los tipos de evento a activar. Dejar vacío para disparar en todos los tipos de eventos.",
|
|
79
|
-
"Event Created": "Evento creado",
|
|
80
|
-
"Event Requested": "Evento solicitado",
|
|
81
|
-
"Event Approved": "Evento aprobado",
|
|
82
|
-
"Event Declined": "Evento rechazado",
|
|
83
|
-
"Event Rescheduled": "Evento Reprogramado",
|
|
84
|
-
"Event Changed": "Evento cambiado",
|
|
85
|
-
"Event Canceled": "Evento cancelado",
|
|
86
|
-
"Checkout Pending": "Pago pendiente",
|
|
87
|
-
"Checkout Expired": "El pago ha caducado",
|
|
88
|
-
"Checkout Completed": "Checkout completado",
|
|
89
|
-
"Attendee Added": "Asistente añadido",
|
|
90
|
-
"Attendee Canceled": "Asistente cancelado",
|
|
91
|
-
"Attendee Rescheduled": "Asistente reprogramado",
|
|
92
|
-
"Poll Response Created": "Respuesta de encuesta creada",
|
|
93
|
-
"Poll Response Updated": "Respuesta de encuesta actualizada",
|
|
94
|
-
"Workflow Action Triggered": "Acción de flujo de trabajo activada"
|
|
95
|
-
}
|
|
2
|
+
"Personal Access Token (Private Key)": "Personal Access Token (Private Key)",
|
|
3
|
+
"Cancel Event": "Cancel Event",
|
|
4
|
+
"Cancels a scheduled meeting in SavvyCal.": "Cancels a scheduled meeting in SavvyCal.",
|
|
5
|
+
"Create Event": "Create Event",
|
|
6
|
+
"Books a meeting on a scheduling link at a specific time slot.": "Books a meeting on a scheduling link at a specific time slot.",
|
|
7
|
+
"Find Events by Attendee Email": "Find Events by Attendee Email",
|
|
8
|
+
"Returns all events where the attendee's email matches the given address.": "Returns all events where the attendee's email matches the given address.",
|
|
9
|
+
"Get Current User": "Get Current User",
|
|
10
|
+
"Retrieves the profile of the currently authenticated SavvyCal user.": "Retrieves the profile of the currently authenticated SavvyCal user.",
|
|
11
|
+
"Get Event": "Get Event",
|
|
12
|
+
"Retrieves the details of a specific scheduled meeting by its ID.": "Retrieves the details of a specific scheduled meeting by its ID.",
|
|
13
|
+
"List Events": "List Events",
|
|
14
|
+
"Returns a list of scheduled meetings from your SavvyCal account.": "Returns a list of scheduled meetings from your SavvyCal account.",
|
|
15
|
+
"List Scheduling Links": "List Scheduling Links",
|
|
16
|
+
"Returns all scheduling links configured in your SavvyCal account.": "Returns all scheduling links configured in your SavvyCal account.",
|
|
17
|
+
"New Event": "New Event",
|
|
18
|
+
"Triggers when a SavvyCal event occurs. Select one or more event types, or leave empty to trigger on all types.": "Triggers when a SavvyCal event occurs. Select one or more event types, or leave empty to trigger on all types.",
|
|
19
|
+
"Event ID": "Event ID",
|
|
20
|
+
"The unique ID of the event to cancel. You can find this from the output of a trigger or the List Events / Get Event actions.": "The unique ID of the event to cancel. You can find this from the output of a trigger or the List Events / Get Event actions.",
|
|
21
|
+
"The unique ID of the event. You can find this in the event URL in SavvyCal, or from the output of a trigger or List Events action.": "The unique ID of the event. You can find this in the event URL in SavvyCal, or from the output of a trigger or List Events action.",
|
|
22
|
+
"Scheduling Link": "Scheduling Link",
|
|
23
|
+
"Scheduling Links": "Scheduling Links",
|
|
24
|
+
"Select the scheduling link to book a meeting on.": "Select the scheduling link to book a meeting on.",
|
|
25
|
+
"Only trigger for events on the selected scheduling links. Leave empty to trigger for all links.": "Only trigger for events on the selected scheduling links. Leave empty to trigger for all links.",
|
|
26
|
+
"Only return events booked through the selected scheduling links. Leave empty for all links.": "Only return events booked through the selected scheduling links. Leave empty for all links.",
|
|
27
|
+
"Start Time": "Start Time",
|
|
28
|
+
"The start date and time of the meeting. Must match an available slot on the scheduling link.": "The start date and time of the meeting. Must match an available slot on the scheduling link.",
|
|
29
|
+
"End Time": "End Time",
|
|
30
|
+
"The End date and time of the meeting": "The End date and time of the meeting",
|
|
31
|
+
"Attendee Name": "Attendee Name",
|
|
32
|
+
"Full name of the person booking the meeting.": "Full name of the person booking the meeting.",
|
|
33
|
+
"Attendee Email": "Attendee Email",
|
|
34
|
+
"Email address of the person booking the meeting.": "Email address of the person booking the meeting.",
|
|
35
|
+
"The email address of the attendee to search for.": "The email address of the attendee to search for.",
|
|
36
|
+
"Start After": "Start After",
|
|
37
|
+
"Only return events that start after this date and time.": "Only return events that start after this date and time.",
|
|
38
|
+
"Only search events starting after this date. Use this to limit the search scope and improve performance.": "Only search events starting after this date. Use this to limit the search scope and improve performance.",
|
|
39
|
+
"Start Before": "Start Before",
|
|
40
|
+
"Only return events that start before this date and time.": "Only return events that start before this date and time.",
|
|
41
|
+
"Only search events starting before this date.": "Only search events starting before this date.",
|
|
42
|
+
"State": "State",
|
|
43
|
+
"Filter events by their current status. Leave empty to return all statuses.": "Filter events by their current status. Leave empty to return all statuses.",
|
|
44
|
+
"Maximum Results": "Maximum Results",
|
|
45
|
+
"Maximum number of events to return. Leave empty to return all matching events.": "Maximum number of events to return. Leave empty to return all matching events.",
|
|
46
|
+
"Event Types": "Event Types",
|
|
47
|
+
"Select which event types to trigger on. Leave empty to trigger on all event types.": "Select which event types to trigger on. Leave empty to trigger on all event types.",
|
|
48
|
+
"All": "All",
|
|
49
|
+
"Confirmed": "Confirmed",
|
|
50
|
+
"Canceled": "Canceled",
|
|
51
|
+
"Event Created": "Event Created",
|
|
52
|
+
"Event Requested": "Event Requested",
|
|
53
|
+
"Event Approved": "Event Approved",
|
|
54
|
+
"Event Declined": "Event Declined",
|
|
55
|
+
"Event Rescheduled": "Event Rescheduled",
|
|
56
|
+
"Event Changed": "Event Changed",
|
|
57
|
+
"Event Canceled": "Event Canceled",
|
|
58
|
+
"Checkout Pending": "Checkout Pending",
|
|
59
|
+
"Checkout Expired": "Checkout Expired",
|
|
60
|
+
"Checkout Completed": "Checkout Completed",
|
|
61
|
+
"Attendee Added": "Attendee Added",
|
|
62
|
+
"Attendee Canceled": "Attendee Canceled",
|
|
63
|
+
"Attendee Rescheduled": "Attendee Rescheduled",
|
|
64
|
+
"Poll Response Created": "Poll Response Created",
|
|
65
|
+
"Poll Response Updated": "Poll Response Updated",
|
|
66
|
+
"Workflow Action Triggered": "Workflow Action Triggered",
|
|
67
|
+
"Please connect your account first": "Please connect your account first",
|
|
68
|
+
"Failed to load scheduling links.": "Failed to load scheduling links.",
|
|
69
|
+
"Failed to load scheduling links. Check your connection.": "Failed to load scheduling links. Check your connection.",
|
|
70
|
+
"Team": "Team",
|
|
71
|
+
"Filter scheduling links by team. Leave empty to show all teams.": "Filter scheduling links by team. Leave empty to show all teams.",
|
|
72
|
+
"Personal": "Personal",
|
|
73
|
+
"Failed to load teams.": "Failed to load teams."
|
|
74
|
+
}
|