mirror of
https://github.com/discord/discord-api-spec.git
synced 2025-11-14 07:49:48 -05:00
Automated spec update (147791)
This commit is contained in:
parent
390694490f
commit
2ec63be0f0
2 changed files with 72 additions and 0 deletions
|
|
@ -25500,6 +25500,32 @@
|
||||||
"serialized_source_guild"
|
"serialized_source_guild"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"GuildTemplateRoleColorsResponse": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"primary_color": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32"
|
||||||
|
},
|
||||||
|
"secondary_color": {
|
||||||
|
"type": [
|
||||||
|
"integer",
|
||||||
|
"null"
|
||||||
|
],
|
||||||
|
"format": "int32"
|
||||||
|
},
|
||||||
|
"tertiary_color": {
|
||||||
|
"type": [
|
||||||
|
"integer",
|
||||||
|
"null"
|
||||||
|
],
|
||||||
|
"format": "int32"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"primary_color"
|
||||||
|
]
|
||||||
|
},
|
||||||
"GuildTemplateRoleResponse": {
|
"GuildTemplateRoleResponse": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
|
@ -25517,6 +25543,16 @@
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"format": "int32"
|
"format": "int32"
|
||||||
},
|
},
|
||||||
|
"colors": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/GuildTemplateRoleColorsResponse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"hoist": {
|
"hoist": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -26009,6 +26009,32 @@
|
||||||
"serialized_source_guild"
|
"serialized_source_guild"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"GuildTemplateRoleColorsResponse": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"primary_color": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32"
|
||||||
|
},
|
||||||
|
"secondary_color": {
|
||||||
|
"type": [
|
||||||
|
"integer",
|
||||||
|
"null"
|
||||||
|
],
|
||||||
|
"format": "int32"
|
||||||
|
},
|
||||||
|
"tertiary_color": {
|
||||||
|
"type": [
|
||||||
|
"integer",
|
||||||
|
"null"
|
||||||
|
],
|
||||||
|
"format": "int32"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"primary_color"
|
||||||
|
]
|
||||||
|
},
|
||||||
"GuildTemplateRoleResponse": {
|
"GuildTemplateRoleResponse": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
|
@ -26026,6 +26052,16 @@
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"format": "int32"
|
"format": "int32"
|
||||||
},
|
},
|
||||||
|
"colors": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/GuildTemplateRoleColorsResponse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"hoist": {
|
"hoist": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue