Automated spec update (8454)
This commit is contained in:
parent
42950c1456
commit
bec7fc0d73
|
@ -17852,6 +17852,20 @@
|
||||||
],
|
],
|
||||||
"format": "int32"
|
"format": "int32"
|
||||||
},
|
},
|
||||||
|
"GuildScheduledEventUserResponses": {
|
||||||
|
"type": "integer",
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"title": "UNINTERESTED",
|
||||||
|
"const": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "INTERESTED",
|
||||||
|
"const": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"format": "int32"
|
||||||
|
},
|
||||||
"GuildStickerResponse": {
|
"GuildStickerResponse": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
@ -24765,6 +24779,16 @@
|
||||||
"guild_scheduled_event_id": {
|
"guild_scheduled_event_id": {
|
||||||
"$ref": "#/components/schemas/SnowflakeType"
|
"$ref": "#/components/schemas/SnowflakeType"
|
||||||
},
|
},
|
||||||
|
"guild_scheduled_event_exception_id": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/SnowflakeType"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"user_id": {
|
"user_id": {
|
||||||
"$ref": "#/components/schemas/SnowflakeType"
|
"$ref": "#/components/schemas/SnowflakeType"
|
||||||
},
|
},
|
||||||
|
@ -24787,11 +24811,15 @@
|
||||||
"$ref": "#/components/schemas/GuildMemberResponse"
|
"$ref": "#/components/schemas/GuildMemberResponse"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
"response": {
|
||||||
|
"$ref": "#/components/schemas/GuildScheduledEventUserResponses"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
"guild_scheduled_event_id",
|
"guild_scheduled_event_id",
|
||||||
"user_id"
|
"user_id",
|
||||||
|
"response"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"SelectOption": {
|
"SelectOption": {
|
||||||
|
|
Loading…
Reference in New Issue