mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-09 12:12:35 +01:00
regenerate openapi.json
This commit is contained in:
parent
af36ea0bb5
commit
601a9d535b
@ -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",
|
||||
|
@ -1,3 +1,3 @@
|
||||
{
|
||||
"npmDepsHash": "sha256-kdS1SwcBu6Dor92iO1ickLgz0T5UL16nyA49xXGajf4="
|
||||
}
|
||||
"npmDepsHash": "sha256-kdS1SwcBu6Dor92iO1ickLgz0T5UL16nyA49xXGajf4="
|
||||
}
|
||||
|
@ -17,7 +17,7 @@
|
||||
*/
|
||||
|
||||
export interface RequestGuildMembersSchema {
|
||||
guild_id: string | string[];
|
||||
guild_id: string | [string];
|
||||
query?: string;
|
||||
limit?: number;
|
||||
presences?: boolean;
|
||||
|
Loading…
Reference in New Issue
Block a user