We noticed that since Monday 2023-02-27, adaptive cards posted from Power Automate to Teams channel are not returning output that was submitted back to Power Automate. The entire body of submitted adaptive card is missing. Only header data is returned. Same issue across all our environments. Was there any major change deployed recently?
How it looks like now:

How it used to look like:

Sample json:
{
"type": "AdaptiveCard",
"version": "1.4",
"body": [
{
"type": "Container",
"items": [
{
"type": "Input.Text",
"placeholder": "Test",
"id": "test"
}
]
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.Submit",
"title": "Submit"
}
]
}
]
}