@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.
Files changed (83) hide show
  1. package/package.json +5 -5
  2. package/src/i18n/de.json +73 -94
  3. package/src/i18n/es.json +73 -94
  4. package/src/i18n/fr.json +81 -75
  5. package/src/i18n/ja.json +73 -94
  6. package/src/i18n/nl.json +72 -93
  7. package/src/i18n/pt.json +73 -94
  8. package/src/i18n/ru.json +74 -0
  9. package/src/i18n/translation.json +45 -13
  10. package/src/i18n/vi.json +74 -0
  11. package/src/i18n/zh.json +40 -61
  12. package/src/index.d.ts +3 -2
  13. package/src/index.js +27 -36
  14. package/src/index.js.map +1 -1
  15. package/src/lib/actions/cancel-event.d.ts +3 -1
  16. package/src/lib/actions/cancel-event.js +3 -3
  17. package/src/lib/actions/cancel-event.js.map +1 -1
  18. package/src/lib/actions/create-event.d.ts +10 -2
  19. package/src/lib/actions/create-event.js +32 -17
  20. package/src/lib/actions/create-event.js.map +1 -1
  21. package/src/lib/actions/delete-scheduling-link.d.ts +10 -0
  22. package/src/lib/actions/delete-scheduling-link.js +67 -0
  23. package/src/lib/actions/delete-scheduling-link.js.map +1 -0
  24. package/src/lib/actions/duplicate-scheduling-link.d.ts +10 -0
  25. package/src/lib/actions/duplicate-scheduling-link.js +63 -0
  26. package/src/lib/actions/duplicate-scheduling-link.js.map +1 -0
  27. package/src/lib/actions/find-events-by-email.d.ts +3 -1
  28. package/src/lib/actions/find-events-by-email.js +3 -3
  29. package/src/lib/actions/find-events-by-email.js.map +1 -1
  30. package/src/lib/actions/get-current-user.d.ts +3 -1
  31. package/src/lib/actions/get-current-user.js +3 -3
  32. package/src/lib/actions/get-current-user.js.map +1 -1
  33. package/src/lib/actions/get-event.d.ts +3 -1
  34. package/src/lib/actions/get-event.js +3 -3
  35. package/src/lib/actions/get-event.js.map +1 -1
  36. package/src/lib/actions/get-link-slots.d.ts +10 -0
  37. package/src/lib/actions/get-link-slots.js +70 -0
  38. package/src/lib/actions/get-link-slots.js.map +1 -0
  39. package/src/lib/actions/get-scheduling-link.d.ts +10 -0
  40. package/src/lib/actions/get-scheduling-link.js +63 -0
  41. package/src/lib/actions/get-scheduling-link.js.map +1 -0
  42. package/src/lib/actions/get-workflow-rules.d.ts +7 -0
  43. package/src/lib/actions/get-workflow-rules.js +50 -0
  44. package/src/lib/actions/get-workflow-rules.js.map +1 -0
  45. package/src/lib/actions/list-events.d.ts +10 -3
  46. package/src/lib/actions/list-events.js +70 -24
  47. package/src/lib/actions/list-events.js.map +1 -1
  48. package/src/lib/actions/list-scheduling-links.d.ts +7 -1
  49. package/src/lib/actions/list-scheduling-links.js +30 -17
  50. package/src/lib/actions/list-scheduling-links.js.map +1 -1
  51. package/src/lib/actions/list-workflows.d.ts +3 -0
  52. package/src/lib/actions/list-workflows.js +35 -0
  53. package/src/lib/actions/list-workflows.js.map +1 -0
  54. package/src/lib/actions/toggle-scheduling-link.d.ts +10 -0
  55. package/src/lib/actions/toggle-scheduling-link.js +63 -0
  56. package/src/lib/actions/toggle-scheduling-link.js.map +1 -0
  57. package/src/lib/auth.d.ts +14 -0
  58. package/src/lib/auth.js +59 -0
  59. package/src/lib/auth.js.map +1 -0
  60. package/src/lib/common/index.d.ts +13 -0
  61. package/src/lib/common/index.js +98 -29
  62. package/src/lib/common/index.js.map +1 -1
  63. package/src/lib/triggers/new-event.d.ts +36 -4
  64. package/src/lib/triggers/new-event.js +85 -18
  65. package/src/lib/triggers/new-event.js.map +1 -1
  66. package/src/lib/triggers/new-poll-response.d.ts +18 -0
  67. package/src/lib/triggers/new-poll-response.js +81 -0
  68. package/src/lib/triggers/new-poll-response.js.map +1 -0
  69. package/src/lib/triggers/workflow-action-triggered.d.ts +10 -0
  70. package/src/lib/triggers/workflow-action-triggered.js +65 -0
  71. package/src/lib/triggers/workflow-action-triggered.js.map +1 -0
  72. package/src/lib/common/webhook-trigger-factory.d.ts +0 -7
  73. package/src/lib/common/webhook-trigger-factory.js +0 -96
  74. package/src/lib/common/webhook-trigger-factory.js.map +0 -1
  75. package/src/lib/triggers/booking-canceled.d.ts +0 -1
  76. package/src/lib/triggers/booking-canceled.js +0 -11
  77. package/src/lib/triggers/booking-canceled.js.map +0 -1
  78. package/src/lib/triggers/booking-rescheduled.d.ts +0 -1
  79. package/src/lib/triggers/booking-rescheduled.js +0 -11
  80. package/src/lib/triggers/booking-rescheduled.js.map +0 -1
  81. package/src/lib/triggers/new-booking.d.ts +0 -1
  82. package/src/lib/triggers/new-booking.js +0 -11
  83. package/src/lib/triggers/new-booking.js.map +0 -1
package/src/i18n/pt.json CHANGED
@@ -1,95 +1,74 @@
1
1
  {
2
- "Scheduling tool that lets invitees overlay their calendar when picking a time.": "Ferramenta de agendamento que permite que os convidados sobreponham o calendário quando escolherem o horário estabelecido.",
3
- "To get your SavvyCal API token:\n1. Log in to your SavvyCal account at https://savvycal.com\n2. Go to **Settings > Developer**\n3. Click **Create Token**\n4. Give it a name and copy the token (it starts with `pt_secret_`)\n\n**Note:** Keep this token secret — it gives full access to your SavvyCal account.": "Para obter seu token API SavvyCal:\n1. Faça login na sua conta SavvyCal em https://savvycal.com\n2. Vá em **Configurações > Desenvolvedor**\n3. Clique em **Criar Token**\n4. Dê um nome e copie o token (ele começa com `pt_secret_`)\n\n**Nota:** Mantenha este token em segredo — ele dá acesso total à sua conta SavvyCal.",
4
- "Get Current User": "Obter Usuário Atual",
5
- "List Events": "Listar eventos",
6
- "Get Event": "Obter o evento",
7
- "Cancel Event": "Cancelar evento",
8
- "Create Event": "Criar evento",
9
- "Find Events by Attendee Email": "Encontrar eventos por e-mail do participante",
10
- "List Scheduling Links": "Listar links de agendamento",
11
- "Custom API Call": "Chamada de API personalizada",
12
- "Retrieves the profile of the currently authenticated SavvyCal user.": "Obtém o perfil do usuário SavvyCal atualmente autenticado.",
13
- "Returns a list of scheduled meetings from your SavvyCal account.": "Retorna uma lista das reuniões agendadas da sua conta SavvyCal.",
14
- "Retrieves the details of a specific scheduled meeting by its ID.": "Recupera detalhes de uma reunião agendada específica por sua ID.",
15
- "Cancels a scheduled meeting in SavvyCal.": "Cancela uma reunião agendada para SavvyCal.",
16
- "Books a meeting on a scheduling link at a specific time slot.": "Reserve uma reunião com um link de agendamento em um horário específico.",
17
- "Returns all events where the attendee's email matches the given address.": "Retorna todos os eventos nos quais o e-mail do participante corresponde ao endereço fornecido.",
18
- "Returns all scheduling links configured in your SavvyCal account.": "Retorna todos os links de agendamento configurados na sua conta SavvyCal.",
19
- "Make a custom API call to a specific endpoint": "Faça uma chamada de API personalizada para um ponto de extremidade específico",
20
- "State": "Estado:",
21
- "Start After": "Iniciar após",
22
- "Start Before": "Iniciar antes",
23
- "Scheduling Link": "Link de Agendamento",
24
- "Maximum Results": "Resultados máximos",
25
- "Event ID": "Código do evento",
26
- "Start Time": "Hora de início",
27
- "End Time": "Hora de término",
28
- "Attendee Name": "Nome do Participante",
29
- "Attendee Email": "Email do Participante",
30
- "Method": "Método",
31
- "Headers": "Cabeçalhos",
32
- "Query Parameters": "Parâmetros da consulta",
33
- "Body Type": "Tipo de Corpo",
34
- "Body": "Conteúdo",
35
- "Response is Binary ?": "A resposta é binária ?",
36
- "No Error on Failure": "Nenhum erro no Failure",
37
- "Timeout (in seconds)": "Tempo limite (em segundos)",
38
- "Follow redirects": "Seguir redirecionamentos",
39
- "Filter events by their current status.": "Filtrar eventos pelo seu status atual.",
40
- "Only return events that start after this date and time.": "Somente retornar eventos que comecem depois desta data e hora.",
41
- "Only return events that start before this date and time.": "Somente retornar eventos que comecem antes desta data e hora.",
42
- "Only return events booked through a specific scheduling link. Leave empty for all links.": "Somente eventos de retorno reservados através de um link de agendamento específico. Deixe em branco para todos os links.",
43
- "Maximum number of events to return. Leave empty to return all matching events.": "Número máximo de eventos para retornar. Deixe em branco para devolver todos os eventos correspondentes.",
44
- "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.": "O ID exclusivo do evento. Você pode encontrar isso no URL do evento do SavvyCal, ou na saída de uma ação de gatilho ou lista de eventos.",
45
- "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.": "A ID única do evento para cancelar. Você pode encontrar isso a partir da saída de um gatilho ou da lista de eventos / Obter ações de eventos.",
46
- "Select the scheduling link to book a meeting on.": "Selecione o link de agendamento para reservar uma reunião.",
47
- "The start date and time of the meeting. Must match an available slot on the scheduling link.": "A data de início e a hora da reunião. Deve combinar um horário disponível no link de agendamento.",
48
- "The End date and time of the meeting": "A data de término e a hora da reunião",
49
- "Full name of the person booking the meeting.": "Nome completo da pessoa que reserva a reunião.",
50
- "Email address of the person booking the meeting.": "Endereço e-mail da pessoa que reserva a reunião.",
51
- "The email address of the attendee to search for.": "O endereço de e-mail do participante para procurar.",
52
- "Only search events starting after this date. Use this to limit the search scope and improve performance.": "Procurar eventos que comecem depois desta data. Use-o para limitar o escopo da busca e melhorar o desempenho.",
53
- "Only search events starting before this date.": "Procurar apenas eventos que comecem antes desta data.",
54
- "Authorization headers are injected automatically from your connection.": "Os cabeçalhos de autorização são inseridos automaticamente a partir da sua conexão.",
55
- "Enable for files like PDFs, images, etc.": "Habilitar para arquivos como PDFs, imagens, etc.",
56
- "All": "TODOS",
57
- "Confirmed": "Confirmado",
58
- "Canceled": "Cancelado",
59
- "GET": "OBTER",
60
- "POST": "POSTAR",
61
- "PATCH": "COMPRAR",
62
- "PUT": "COLOCAR",
63
- "DELETE": "EXCLUIR",
64
- "HEAD": "CABEÇA",
65
- "None": "Nenhuma",
66
- "JSON": "JSON",
67
- "Form Data": "Dados de Formulário",
68
- "Raw": "RAW",
69
- "New Booking": "Nova Reserva",
70
- "Booking Canceled": "Reserva Cancelada",
71
- "Booking Rescheduled": "Reserva reagendada",
72
- "New Event": "Novo evento",
73
- "Triggers when a new meeting is booked on any scheduling link.": "Dispara quando uma nova reunião for reservada em qualquer link de agendamento.",
74
- "Triggers when a scheduled meeting is canceled.": "Dispara quando uma reunião agendada é cancelada.",
75
- "Triggers when a scheduled meeting is rescheduled to a new time.": "Dispara quando uma reunião agendada é remarcada para uma nova vez.",
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.": "Desencadeia em qualquer tipo de evento SavvyCal, incluindo checkout, participante e eventos de enquete. Para os casos mais comuns (nova reserva, cancelamento, reprogramação) use os gatilhos dedicados.",
77
- "Event Types": "Tipos de Evento",
78
- "Select which event types to trigger on. Leave empty to trigger on all event types.": "Selecione quais tipos de evento serão acionados. Deixe em branco para acionar em todos os tipos de eventos.",
79
- "Event Created": "Evento criado",
80
- "Event Requested": "Evento solicitado",
81
- "Event Approved": "Evento aprovado",
82
- "Event Declined": "Evento recusado",
83
- "Event Rescheduled": "Evento reagendado",
84
- "Event Changed": "Evento Alterado",
85
- "Event Canceled": "Evento cancelado",
86
- "Checkout Pending": "Checkout Pendente",
87
- "Checkout Expired": "Checkout expirado",
88
- "Checkout Completed": "Compra concluída",
89
- "Attendee Added": "Participante adicionado",
90
- "Attendee Canceled": "Participante cancelado",
91
- "Attendee Rescheduled": "Participante reagendado",
92
- "Poll Response Created": "Resposta de Enquete Criada",
93
- "Poll Response Updated": "Resposta de Enquete Atualizada",
94
- "Workflow Action Triggered": "Ação de workflow acionada"
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
+ }
@@ -0,0 +1,74 @@
1
+ {
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
+ }
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "Scheduling tool that lets invitees overlay their calendar when picking a time.": "Scheduling tool that lets invitees overlay their calendar when picking a time.",
3
- "To get your SavvyCal API token:\n1. Log in to your SavvyCal account at https://savvycal.com\n2. Go to **Settings > Developer**\n3. Click **Create Token**\n4. Give it a name and copy the token (it starts with `pt_secret_`)\n\n**Note:** Keep this token secret — it gives full access to your SavvyCal account.": "To get your SavvyCal API token:\n1. Log in to your SavvyCal account at https://savvycal.com\n2. Go to **Settings > Developer**\n3. Click **Create Token**\n4. Give it a name and copy the token (it starts with `pt_secret_`)\n\n**Note:** Keep this token secret — it gives full access to your SavvyCal account.",
3
+ "To get your SavvyCal API token:\n1. Log in to your SavvyCal account at https://savvycal.com\n2. Go to **Settings > Developers**\n3. Under **Personal Tokens**, click **Create a token**\n4. Give it a name, then click the **...** menu next to it to view the token\n5. Copy the **Private Key** (starts with `pt_secret_`) — not the Public Key\n\n**Note:** Keep this token secret — it gives full access to your SavvyCal account.": "To get your SavvyCal API token:\n1. Log in to your SavvyCal account at https://savvycal.com\n2. Go to **Settings > Developers**\n3. Under **Personal Tokens**, click **Create a token**\n4. Give it a name, then click the **...** menu next to it to view the token\n5. Copy the **Private Key** (starts with `pt_secret_`) — not the Public Key\n\n**Note:** Keep this token secret — it gives full access to your SavvyCal account.",
4
+ "Personal Access Token (Private Key)": "Personal Access Token (Private Key)",
4
5
  "Get Current User": "Get Current User",
5
6
  "List Events": "List Events",
6
7
  "Get Event": "Get Event",
@@ -16,11 +17,34 @@
16
17
  "Books a meeting on a scheduling link at a specific time slot.": "Books a meeting on a scheduling link at a specific time slot.",
17
18
  "Returns all events where the attendee's email matches the given address.": "Returns all events where the attendee's email matches the given address.",
18
19
  "Returns all scheduling links configured in your SavvyCal account.": "Returns all scheduling links configured in your SavvyCal account.",
20
+ "Get Scheduling Link": "Get Scheduling Link",
21
+ "Retrieves the details of a specific scheduling link by its ID.": "Retrieves the details of a specific scheduling link by its ID.",
22
+ "Delete Scheduling Link": "Delete Scheduling Link",
23
+ "Permanently deletes a scheduling link from your SavvyCal account.": "Permanently deletes a scheduling link from your SavvyCal account.",
24
+ "Duplicate Scheduling Link": "Duplicate Scheduling Link",
25
+ "Creates a copy of an existing scheduling link.": "Creates a copy of an existing scheduling link.",
26
+ "Toggle Scheduling Link": "Toggle Scheduling Link",
27
+ "Switches a scheduling link between active and disabled states.": "Switches a scheduling link between active and disabled states.",
28
+ "Get Available Slots": "Get Available Slots",
29
+ "Returns available time slots for booking on a scheduling link. Useful for displaying availability or for picking a slot before calling Create Event.": "Returns available time slots for booking on a scheduling link. Useful for displaying availability or for picking a slot before calling Create Event.",
30
+ "List Workflows": "List Workflows",
31
+ "Returns all workflows configured in your SavvyCal account.": "Returns all workflows configured in your SavvyCal account.",
32
+ "Get Workflow Rules": "Get Workflow Rules",
33
+ "Returns the rules configured for a specific workflow.": "Returns the rules configured for a specific workflow.",
34
+ "Select the scheduling link to retrieve.": "Select the scheduling link to retrieve.",
35
+ "Select the scheduling link to delete. This action cannot be undone.": "Select the scheduling link to delete. This action cannot be undone.",
36
+ "Select the scheduling link to duplicate.": "Select the scheduling link to duplicate.",
37
+ "Select the scheduling link to toggle.": "Select the scheduling link to toggle.",
38
+ "Select the scheduling link to query slots for.": "Select the scheduling link to query slots for.",
39
+ "Workflow": "Workflow",
40
+ "Select the workflow whose rules you want to retrieve.": "Select the workflow whose rules you want to retrieve.",
41
+ "Failed to load workflows.": "Failed to load workflows.",
19
42
  "Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
20
43
  "State": "State",
21
44
  "Start After": "Start After",
22
45
  "Start Before": "Start Before",
23
46
  "Scheduling Link": "Scheduling Link",
47
+ "Scheduling Links": "Scheduling Links",
24
48
  "Maximum Results": "Maximum Results",
25
49
  "Event ID": "Event ID",
26
50
  "Start Time": "Start Time",
@@ -36,10 +60,11 @@
36
60
  "No Error on Failure": "No Error on Failure",
37
61
  "Timeout (in seconds)": "Timeout (in seconds)",
38
62
  "Follow redirects": "Follow redirects",
39
- "Filter events by their current status.": "Filter events by their current status.",
63
+ "Filter events by their current status. Leave empty to return all statuses.": "Filter events by their current status. Leave empty to return all statuses.",
40
64
  "Only return events that start after this date and time.": "Only return events that start after this date and time.",
41
65
  "Only return events that start before this date and time.": "Only return events that start before this date and time.",
42
- "Only return events booked through a specific scheduling link. Leave empty for all links.": "Only return events booked through a specific scheduling link. Leave empty for all links.",
66
+ "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.",
67
+ "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.",
43
68
  "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.",
44
69
  "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.",
45
70
  "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.",
@@ -48,12 +73,13 @@
48
73
  "The End date and time of the meeting": "The End date and time of the meeting",
49
74
  "Full name of the person booking the meeting.": "Full name of the person booking the meeting.",
50
75
  "Email address of the person booking the meeting.": "Email address of the person booking the meeting.",
76
+ "Time Zone": "Time Zone",
77
+ "Attendee's local time zone in Olson format (e.g. America/New_York, Europe/London, Africa/Lagos).": "Attendee's local time zone in Olson format (e.g. America/New_York, Europe/London, Africa/Lagos).",
51
78
  "The email address of the attendee to search for.": "The email address of the attendee to search for.",
52
79
  "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.",
53
80
  "Only search events starting before this date.": "Only search events starting before this date.",
54
81
  "Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
55
82
  "Enable for files like PDFs, images, etc.": "Enable for files like PDFs, images, etc.",
56
- "All": "All",
57
83
  "Confirmed": "Confirmed",
58
84
  "Canceled": "Canceled",
59
85
  "GET": "GET",
@@ -66,16 +92,15 @@
66
92
  "JSON": "JSON",
67
93
  "Form Data": "Form Data",
68
94
  "Raw": "Raw",
69
- "New Booking": "New Booking",
70
- "Booking Canceled": "Booking Canceled",
71
- "Booking Rescheduled": "Booking Rescheduled",
72
95
  "New Event": "New Event",
73
- "Triggers when a new meeting is booked on any scheduling link.": "Triggers when a new meeting is booked on any scheduling link.",
74
- "Triggers when a scheduled meeting is canceled.": "Triggers when a scheduled meeting is canceled.",
75
- "Triggers when a scheduled meeting is rescheduled to a new time.": "Triggers when a scheduled meeting is rescheduled to a new time.",
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.": "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.",
96
+ "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.",
77
97
  "Event Types": "Event Types",
78
98
  "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.",
99
+ "New Poll Response": "New Poll Response",
100
+ "Triggers when a poll response is created or updated in SavvyCal.": "Triggers when a poll response is created or updated in SavvyCal.",
101
+ "Poll Response Types": "Poll Response Types",
102
+ "Select which poll response types to trigger on. Leave empty to trigger on all poll response types.": "Select which poll response types to trigger on. Leave empty to trigger on all poll response types.",
103
+ "Triggers when a workflow action is triggered in SavvyCal.": "Triggers when a workflow action is triggered in SavvyCal.",
79
104
  "Event Created": "Event Created",
80
105
  "Event Requested": "Event Requested",
81
106
  "Event Approved": "Event Approved",
@@ -91,5 +116,12 @@
91
116
  "Attendee Rescheduled": "Attendee Rescheduled",
92
117
  "Poll Response Created": "Poll Response Created",
93
118
  "Poll Response Updated": "Poll Response Updated",
94
- "Workflow Action Triggered": "Workflow Action Triggered"
95
- }
119
+ "Workflow Action Triggered": "Workflow Action Triggered",
120
+ "Please connect your account first": "Please connect your account first",
121
+ "Failed to load scheduling links.": "Failed to load scheduling links.",
122
+ "Failed to load scheduling links. Check your connection.": "Failed to load scheduling links. Check your connection.",
123
+ "Team": "Team",
124
+ "Filter scheduling links by team. Leave empty to show all teams.": "Filter scheduling links by team. Leave empty to show all teams.",
125
+ "Personal": "Personal",
126
+ "Failed to load teams.": "Failed to load teams."
127
+ }
@@ -0,0 +1,74 @@
1
+ {
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/zh.json CHANGED
@@ -1,81 +1,53 @@
1
1
  {
2
- "Scheduling tool that lets invitees overlay their calendar when picking a time.": "Scheduling tool that lets invitees overlay their calendar when picking a time.",
3
- "To get your SavvyCal API token:\n1. Log in to your SavvyCal account at https://savvycal.com\n2. Go to **Settings > Developer**\n3. Click **Create Token**\n4. Give it a name and copy the token (it starts with `pt_secret_`)\n\n**Note:** Keep this token secret — it gives full access to your SavvyCal account.": "To get your SavvyCal API token:\n1. Log in to your SavvyCal account at https://savvycal.com\n2. Go to **Settings > Developer**\n3. Click **Create Token**\n4. Give it a name and copy the token (it starts with `pt_secret_`)\n\n**Note:** Keep this token secret — it gives full access to your SavvyCal account.",
4
- "Get Current User": "Get Current User",
5
- "List Events": "List Events",
6
- "Get Event": "Get Event",
2
+ "Personal Access Token (Private Key)": "Personal Access Token (Private Key)",
7
3
  "Cancel Event": "Cancel Event",
4
+ "Cancels a scheduled meeting in SavvyCal.": "Cancels a scheduled meeting in SavvyCal.",
8
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.",
9
7
  "Find Events by Attendee Email": "Find Events by Attendee Email",
10
- "List Scheduling Links": "List Scheduling Links",
11
- "Custom API Call": "自定义 API 呼叫",
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",
12
10
  "Retrieves the profile of the currently authenticated SavvyCal user.": "Retrieves the profile of the currently authenticated SavvyCal user.",
13
- "Returns a list of scheduled meetings from your SavvyCal account.": "Returns a list of scheduled meetings from your SavvyCal account.",
11
+ "Get Event": "Get Event",
14
12
  "Retrieves the details of a specific scheduled meeting by its ID.": "Retrieves the details of a specific scheduled meeting by its ID.",
15
- "Cancels a scheduled meeting in SavvyCal.": "Cancels a scheduled meeting in SavvyCal.",
16
- "Books a meeting on a scheduling link at a specific time slot.": "Books a meeting on a scheduling link at a specific time slot.",
17
- "Returns all events where the attendee's email matches the given address.": "Returns all events where the attendee's email matches the given address.",
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",
18
16
  "Returns all scheduling links configured in your SavvyCal account.": "Returns all scheduling links configured in your SavvyCal account.",
19
- "Make a custom API call to a specific endpoint": "将一个自定义 API 调用到一个特定的终点",
20
- "State": "State",
21
- "Start After": "Start After",
22
- "Start Before": "Start Before",
23
- "Scheduling Link": "Scheduling Link",
24
- "Maximum Results": "Maximum Results",
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.",
25
19
  "Event ID": "Event ID",
26
- "Start Time": "开始时间",
27
- "End Time": "End Time",
28
- "Attendee Name": "Attendee Name",
29
- "Attendee Email": "Attendee Email",
30
- "Method": "方法",
31
- "Headers": "信头",
32
- "Query Parameters": "查询参数",
33
- "Body Type": "Body Type",
34
- "Body": "正文内容",
35
- "Response is Binary ?": "Response is Binary ?",
36
- "No Error on Failure": "失败时没有错误",
37
- "Timeout (in seconds)": "超时(秒)",
38
- "Follow redirects": "Follow redirects",
39
- "Filter events by their current status.": "Filter events by their current status.",
40
- "Only return events that start after this date and time.": "Only return events that start after this date and time.",
41
- "Only return events that start before this date and time.": "Only return events that start before this date and time.",
42
- "Only return events booked through a specific scheduling link. Leave empty for all links.": "Only return events booked through a specific scheduling link. Leave empty for all links.",
43
- "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.",
44
- "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.",
45
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",
46
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",
47
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",
48
30
  "The End date and time of the meeting": "The End date and time of the meeting",
31
+ "Attendee Name": "Attendee Name",
49
32
  "Full name of the person booking the meeting.": "Full name of the person booking the meeting.",
33
+ "Attendee Email": "Attendee Email",
50
34
  "Email address of the person booking the meeting.": "Email address of the person booking the meeting.",
51
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.",
52
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.",
53
41
  "Only search events starting before this date.": "Only search events starting before this date.",
54
- "Authorization headers are injected automatically from your connection.": "授权头自动从您的连接中注入。",
55
- "Enable for files like PDFs, images, etc.": "Enable for files like PDFs, images, etc.",
56
- "All": "所有的",
57
- "Confirmed": "Confirmed",
58
- "Canceled": "Canceled",
59
- "GET": "获取",
60
- "POST": "帖子",
61
- "PATCH": "PATCH",
62
- "PUT": "弹出",
63
- "DELETE": "删除",
64
- "HEAD": "黑色",
65
- "None": "无",
66
- "JSON": "JSON",
67
- "Form Data": "表单数据",
68
- "Raw": "原始文件",
69
- "New Booking": "New Booking",
70
- "Booking Canceled": "Booking Canceled",
71
- "Booking Rescheduled": "Booking Rescheduled",
72
- "New Event": "New Event",
73
- "Triggers when a new meeting is booked on any scheduling link.": "Triggers when a new meeting is booked on any scheduling link.",
74
- "Triggers when a scheduled meeting is canceled.": "Triggers when a scheduled meeting is canceled.",
75
- "Triggers when a scheduled meeting is rescheduled to a new time.": "Triggers when a scheduled meeting is rescheduled to a new time.",
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.": "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.",
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.",
77
46
  "Event Types": "Event Types",
78
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",
79
51
  "Event Created": "Event Created",
80
52
  "Event Requested": "Event Requested",
81
53
  "Event Approved": "Event Approved",
@@ -91,5 +63,12 @@
91
63
  "Attendee Rescheduled": "Attendee Rescheduled",
92
64
  "Poll Response Created": "Poll Response Created",
93
65
  "Poll Response Updated": "Poll Response Updated",
94
- "Workflow Action Triggered": "Workflow Action Triggered"
95
- }
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
+ }