mirror of
https://github.com/discord/discord-api-spec.git
synced 2025-08-31 21:32:39 -04:00
Automated spec update (127383)
This commit is contained in:
parent
50381241ef
commit
8e1fff51da
2 changed files with 84 additions and 2 deletions
|
@ -21257,6 +21257,32 @@
|
|||
"stickers"
|
||||
]
|
||||
},
|
||||
"GuildRoleColorsResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"primary_color": {
|
||||
"type": [
|
||||
"integer",
|
||||
"null"
|
||||
],
|
||||
"format": "int32"
|
||||
},
|
||||
"secondary_color": {
|
||||
"type": [
|
||||
"integer",
|
||||
"null"
|
||||
],
|
||||
"format": "int32"
|
||||
},
|
||||
"tertiary_color": {
|
||||
"type": [
|
||||
"integer",
|
||||
"null"
|
||||
],
|
||||
"format": "int32"
|
||||
}
|
||||
}
|
||||
},
|
||||
"GuildRoleResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
@ -21283,6 +21309,16 @@
|
|||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"colors": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/GuildRoleColorsResponse"
|
||||
}
|
||||
]
|
||||
},
|
||||
"hoist": {
|
||||
"type": "boolean"
|
||||
},
|
||||
|
@ -21313,6 +21349,10 @@
|
|||
"$ref": "#/components/schemas/GuildRoleTagsResponse"
|
||||
}
|
||||
]
|
||||
},
|
||||
"flags": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
|
@ -21323,7 +21363,8 @@
|
|||
"color",
|
||||
"hoist",
|
||||
"managed",
|
||||
"mentionable"
|
||||
"mentionable",
|
||||
"flags"
|
||||
]
|
||||
},
|
||||
"GuildRoleTagsResponse": {
|
||||
|
|
|
@ -21328,6 +21328,32 @@
|
|||
"stickers"
|
||||
]
|
||||
},
|
||||
"GuildRoleColorsResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"primary_color": {
|
||||
"type": [
|
||||
"integer",
|
||||
"null"
|
||||
],
|
||||
"format": "int32"
|
||||
},
|
||||
"secondary_color": {
|
||||
"type": [
|
||||
"integer",
|
||||
"null"
|
||||
],
|
||||
"format": "int32"
|
||||
},
|
||||
"tertiary_color": {
|
||||
"type": [
|
||||
"integer",
|
||||
"null"
|
||||
],
|
||||
"format": "int32"
|
||||
}
|
||||
}
|
||||
},
|
||||
"GuildRoleResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
@ -21354,6 +21380,16 @@
|
|||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"colors": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/GuildRoleColorsResponse"
|
||||
}
|
||||
]
|
||||
},
|
||||
"hoist": {
|
||||
"type": "boolean"
|
||||
},
|
||||
|
@ -21384,6 +21420,10 @@
|
|||
"$ref": "#/components/schemas/GuildRoleTagsResponse"
|
||||
}
|
||||
]
|
||||
},
|
||||
"flags": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
|
@ -21394,7 +21434,8 @@
|
|||
"color",
|
||||
"hoist",
|
||||
"managed",
|
||||
"mentionable"
|
||||
"mentionable",
|
||||
"flags"
|
||||
]
|
||||
},
|
||||
"GuildRoleTagsResponse": {
|
||||
|
|
Loading…
Reference in a new issue