Hi all, not sure where to report this, but the new Teams Developer Portal generates an invalid manifest file when adding a ComposeExtension.
Note the "inputType": "Text" line with a capital T in Text as generated by the portal. According to the manifest schema, this must all be lower case. Manually changing the manifest solved it for me. However, I can't use the portal anymore.
"composeExtensions": [
{
"botId": "***************",
"commands": [
{
"id": "SearchOffice",
"type": "query",
"title": "Search Office",
"description": "Search Office",
"initialRun": false,
"fetchTask": false,
"context": [
"commandBox"
],
"parameters": [
{
"name": "searchOfficeByName",
"title": "Search by Name",
"description": "Search by Name",
"inputType": "Text",
"choices": []
}
]
}
],
"canUpdateConfiguration": true,
"messageHandlers": []
}
]