Skip to content

Commit

Permalink
Merge pull request #1177 from CyberL1/fix/op-8
Browse files Browse the repository at this point in the history
fix: allow array in op 8
  • Loading branch information
MaddyUnderStars authored Aug 17, 2024
2 parents c5d58d5 + 4468c98 commit bb31df0
Show file tree
Hide file tree
Showing 5 changed files with 3,344 additions and 70,214 deletions.
80 changes: 80 additions & 0 deletions assets/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -16619,6 +16619,86 @@
]
}
},
"/channels/{channel_id}/messages/{message_id}/reactions/{emoji}/{burst}/{user_id}": {
"delete": {
"security": [
{
"bearer": []
}
],
"responses": {
"204": {
"description": "No description available"
},
"400": {
"description": "",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/APIErrorResponse"
}
}
}
},
"403": {
"description": "No description available"
},
"404": {
"description": "No description available"
}
},
"parameters": [
{
"name": "channel_id",
"in": "path",
"required": true,
"schema": {
"type": "string"
},
"description": "channel_id"
},
{
"name": "message_id",
"in": "path",
"required": true,
"schema": {
"type": "string"
},
"description": "message_id"
},
{
"name": "emoji",
"in": "path",
"required": true,
"schema": {
"type": "string"
},
"description": "emoji"
},
{
"name": "burst",
"in": "path",
"required": true,
"schema": {
"type": "string"
},
"description": "burst"
},
{
"name": "user_id",
"in": "path",
"required": true,
"schema": {
"type": "string"
},
"description": "user_id"
}
],
"tags": [
"channels"
]
}
},
"/channels/{channel_id}/messages/{message_id}/": {
"patch": {
"x-right-required": "SEND_MESSAGES",
Expand Down
Loading

0 comments on commit bb31df0

Please sign in to comment.