chore: generate OpenAPI specification

This commit is contained in:
Revolt CI
2025-09-05 11:50:04 +00:00
parent f15d602adc
commit 6404346b77
+11 -3
View File
@@ -469,8 +469,8 @@
"tags": [
"Relationships"
],
"summary": "Fetch Mutual Friends And Servers",
"description": "Retrieve a list of mutual friends and servers with another user.",
"summary": "Fetch Mutual Friends, Servers, Groups and DMs",
"description": "Retrieve a list of mutual friends, servers, groups and DMs with another user.",
"operationId": "find_mutual_mutual",
"parameters": [
{
@@ -7889,9 +7889,10 @@
}
},
"MutualResponse": {
"description": "Mutual friends and servers response",
"description": "Mutual friends, servers, groups and DMs response",
"type": "object",
"required": [
"channels",
"servers",
"users"
],
@@ -7909,6 +7910,13 @@
"items": {
"type": "string"
}
},
"channels": {
"description": "Array of mutual group and dm IDs that both users are in",
"type": "array",
"items": {
"type": "string"
}
}
}
},