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:
@@ -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": {
|
||||
|
||||
Reference in New Issue
Block a user