fix: v2 sentry errors (#20902)

* refactor: no_available_users_found_error for team event

* fix: hosts_unavailable_for_booking

* fix: Cannot read properties of undefined (reading 'replace')

* fix: Cannot read properties of undefined (reading 'phoneNumber')

* fix: No SelectedCalendar found.

* fix: Cannot read properties of undefined (reading 'length')

* refactor: add bookings errors service
This commit is contained in:
Lauris Skraucis
2025-04-24 16:06:37 +03:00
committed by GitHub
parent 49a2c60212
commit 4cc1bc6746
20 changed files with 216 additions and 67 deletions
+24 -2
View File
@@ -7354,7 +7354,7 @@
"/v2/calendars/{calendar}/save": {
"get": {
"operationId": "CalendarsController_save",
"summary": "Save an oAuth calendar credentials",
"summary": "Save Google or Outlook calendar credentials",
"parameters": [
{
"name": "state",
@@ -7393,7 +7393,7 @@
"/v2/calendars/{calendar}/credentials": {
"post": {
"operationId": "CalendarsController_syncCredentials",
"summary": "Sync credentials",
"summary": "Save Apple calendar credentials",
"parameters": [
{
"name": "calendar",
@@ -7414,6 +7414,16 @@
}
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateCalendarCredentialsInput"
}
}
}
},
"responses": {
"201": {
"description": ""
@@ -18472,6 +18482,18 @@
},
"required": ["status", "data"]
},
"CreateCalendarCredentialsInput": {
"type": "object",
"properties": {
"username": {
"type": "string"
},
"password": {
"type": "string"
}
},
"required": ["username", "password"]
},
"DeleteCalendarCredentialsInputBodyDto": {
"type": "object",
"properties": {