Skip to content

Commit

Permalink
fix: Docs build issue (#17082)
Browse files Browse the repository at this point in the history
  • Loading branch information
keithwillcode authored Oct 12, 2024
1 parent 44ab25b commit 11fc2a7
Show file tree
Hide file tree
Showing 3 changed files with 303 additions and 199 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import { CONFERENCING_APPS, GOOGLE_MEET, SUCCESS_STATUS } from "@calcom/platform
path: "/v2/conferencing",
version: API_VERSIONS_VALUES,
})
@DocsTags("Platform / Conferencing")
@DocsTags("Conferencing")
export class ConferencingController {
private readonly logger = new Logger("Platform Gcal Provider");

Expand Down
240 changes: 122 additions & 118 deletions apps/api/v2/swagger/documentation.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,121 +63,6 @@
]
}
},
"/v2/conferencing/{app}/connect": {
"post": {
"operationId": "ConferencingController_connect",
"summary": "connect your conferencing application",
"parameters": [
{
"name": "app",
"required": true,
"in": "path",
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ConferencingAppOutputResponseDto"
}
}
}
}
},
"tags": [
"Platform / Conferencing"
]
}
},
"/v2/conferencing": {
"get": {
"operationId": "ConferencingController_listConferencingApps",
"summary": "list your conferencing applications",
"parameters": [],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ConferencingAppsOutputResponseDto"
}
}
}
}
},
"tags": [
"Platform / Conferencing"
]
}
},
"/v2/conferencing/{app}/default": {
"post": {
"operationId": "ConferencingController_default",
"summary": "set your default conferencing application",
"parameters": [
{
"name": "app",
"required": true,
"in": "path",
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SetDefaultConferencingAppOutputResponseDto"
}
}
}
}
},
"tags": [
"Platform / Conferencing"
]
}
},
"/v2/conferencing/{app}/disconnect": {
"delete": {
"operationId": "ConferencingController_disconnect",
"summary": "disconnect your conferencing application",
"parameters": [
{
"name": "app",
"required": true,
"in": "path",
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ConferencingAppOutputResponseDto"
}
}
}
}
},
"tags": [
"Platform / Conferencing"
]
}
},
"/v2/gcal/oauth/auth-url": {
"get": {
"operationId": "GcalController_redirect",
Expand Down Expand Up @@ -3657,6 +3542,121 @@
]
}
},
"/v2/conferencing/{app}/connect": {
"post": {
"operationId": "ConferencingController_connect",
"summary": "Connect your conferencing application",
"parameters": [
{
"name": "app",
"required": true,
"in": "path",
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ConferencingAppOutputResponseDto"
}
}
}
}
},
"tags": [
"Conferencing"
]
}
},
"/v2/conferencing": {
"get": {
"operationId": "ConferencingController_listConferencingApps",
"summary": "List your conferencing applications",
"parameters": [],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ConferencingAppsOutputResponseDto"
}
}
}
}
},
"tags": [
"Conferencing"
]
}
},
"/v2/conferencing/{app}/default": {
"post": {
"operationId": "ConferencingController_default",
"summary": "Set your default conferencing application",
"parameters": [
{
"name": "app",
"required": true,
"in": "path",
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SetDefaultConferencingAppOutputResponseDto"
}
}
}
}
},
"tags": [
"Conferencing"
]
}
},
"/v2/conferencing/{app}/disconnect": {
"delete": {
"operationId": "ConferencingController_disconnect",
"summary": "Disconnect your conferencing application",
"parameters": [
{
"name": "app",
"required": true,
"in": "path",
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ConferencingAppOutputResponseDto"
}
}
}
}
},
"tags": [
"Conferencing"
]
}
},
"/v2/destination-calendars": {
"put": {
"operationId": "DestinationCalendarsController_updateDestinationCalendars",
Expand Down Expand Up @@ -11149,7 +11149,9 @@
"RECORDING_READY",
"INSTANT_MEETING",
"RECORDING_TRANSCRIPTION_GENERATED",
"OOO_CREATED"
"OOO_CREATED",
"AFTER_HOSTS_CAL_VIDEO_NO_SHOW",
"AFTER_GUESTS_CAL_VIDEO_NO_SHOW"
]
},
"active": {
Expand Down Expand Up @@ -11223,7 +11225,9 @@
"RECORDING_READY",
"INSTANT_MEETING",
"RECORDING_TRANSCRIPTION_GENERATED",
"OOO_CREATED"
"OOO_CREATED",
"AFTER_HOSTS_CAL_VIDEO_NO_SHOW",
"AFTER_GUESTS_CAL_VIDEO_NO_SHOW"
]
},
"active": {
Expand Down Expand Up @@ -13126,7 +13130,7 @@
"type": {
"type": "string",
"example": "google_video",
"description": "type of conferencing app"
"description": "Type of conferencing app"
},
"userId": {
"type": "number",
Expand Down
Loading

0 comments on commit 11fc2a7

Please sign in to comment.