refactor progress
This commit is contained in:
23
fluxer_docs/schemas/events/GUILD_EMOJIS_UPDATE.json
Normal file
23
fluxer_docs/schemas/events/GUILD_EMOJIS_UPDATE.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"name": "GUILD_EMOJIS_UPDATE",
|
||||
"description": "Sent when guild emojis were updated.",
|
||||
"scope": "guild",
|
||||
"dispatchedBy": [
|
||||
"POST /guilds/:guild_id/emojis",
|
||||
"POST /guilds/:guild_id/emojis/bulk",
|
||||
"PATCH /guilds/:guild_id/emojis/:emoji_id",
|
||||
"DELETE /guilds/:guild_id/emojis/:emoji_id"
|
||||
],
|
||||
"payload": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"emojis": {
|
||||
"type": "array",
|
||||
"items": {"$ref": "GuildEmojiResponse"},
|
||||
"description": "Array of all emojis in the guild"
|
||||
}
|
||||
},
|
||||
"required": ["emojis"]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user