chore: booker atom username / teams props enabled queries (#16514)

This commit is contained in:
Morgan
2024-09-06 12:38:37 -07:00
committed by GitHub
parent 21ef1900e9
commit 105e7d3e28
12 changed files with 118 additions and 46 deletions
+24 -1
View File
@@ -9313,6 +9313,25 @@
"status"
]
},
"ProviderVerifyClientData": {
"type": "object",
"properties": {
"clientId": {
"type": "string"
},
"organizationId": {
"type": "number"
},
"name": {
"type": "string"
}
},
"required": [
"clientId",
"organizationId",
"name"
]
},
"ProviderVerifyClientOutput": {
"type": "object",
"properties": {
@@ -9323,10 +9342,14 @@
"success",
"error"
]
},
"data": {
"$ref": "#/components/schemas/ProviderVerifyClientData"
}
},
"required": [
"status"
"status",
"data"
]
},
"ProviderVerifyAccessTokenOutput": {