fix: bookerEmbed atom (#18168)

* update translations

* add custom hook for platform embed

* update event type ouput DTO response

* fixup

* display terms and conditions for embed

* update v2 docs

* PR feedback

* update docs

* PR feedback

* update docs

* update output DTO

* update docs

* update output typing

* docs update

* resolve merge conflicts

* merge conflicts resolving

* resolve merge conflicts

* fixup

* update docs
This commit is contained in:
Rajiv Sahal
2024-12-17 12:07:47 +00:00
committed by GitHub
parent c1334475c5
commit c732c06835
12 changed files with 219 additions and 32 deletions
+39 -5
View File
@@ -9978,6 +9978,39 @@
},
"required": ["userId", "name"]
},
"EventTypeTeam": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"slug": {
"type": "string"
},
"bannerUrl": {
"type": "string"
},
"name": {
"type": "string"
},
"logoUrl": {
"type": "string"
},
"weekStart": {
"type": "string"
},
"brandColor": {
"type": "string"
},
"darkBrandColor": {
"type": "string"
},
"theme": {
"type": "string"
}
},
"required": ["id"]
},
"TeamEventTypeOutput_2024_06_14": {
"type": "object",
"properties": {
@@ -10224,8 +10257,7 @@
"type": "boolean"
},
"teamId": {
"type": "number",
"nullable": true
"type": "number"
},
"ownerId": {
"type": "number",
@@ -10250,8 +10282,8 @@
"nullable": true,
"enum": ["ROUND_ROBIN", "COLLECTIVE", "MANAGED"]
},
"bannerUrl": {
"type": "string"
"team": {
"$ref": "#/components/schemas/EventTypeTeam"
}
},
"required": [
@@ -10272,8 +10304,10 @@
"successRedirectUrl",
"isInstantEvent",
"scheduleId",
"teamId",
"hosts",
"schedulingType"
"schedulingType",
"team"
]
},
"GetTeamEventTypeOutput": {