mirror of
https://github.com/discord/discord-api-spec.git
synced 2025-11-14 15:59:47 -05:00
Compare commits
No commits in common. "390694490f7dbf6cdb86a92f3c1ceaf4d334ada9" and "a2a057250980942eeeded0c0d30bc7e71f826363" have entirely different histories.
390694490f
...
a2a0572509
2 changed files with 90 additions and 116 deletions
|
|
@ -10228,7 +10228,32 @@
|
|||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/UpdateSelfVoiceStateRequestPartial"
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"request_to_speak_timestamp": {
|
||||
"type": [
|
||||
"string",
|
||||
"null"
|
||||
],
|
||||
"format": "date-time"
|
||||
},
|
||||
"suppress": {
|
||||
"type": [
|
||||
"boolean",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"channel_id": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/SnowflakeType"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -10337,7 +10362,25 @@
|
|||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/UpdateVoiceStateRequestPartial"
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"suppress": {
|
||||
"type": [
|
||||
"boolean",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"channel_id": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/SnowflakeType"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -25399,13 +25442,6 @@
|
|||
"GuildTemplateChannelTags": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": [
|
||||
"integer",
|
||||
"null"
|
||||
],
|
||||
"format": "int32"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
|
|
@ -35516,34 +35552,6 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"UpdateSelfVoiceStateRequestPartial": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"request_to_speak_timestamp": {
|
||||
"type": [
|
||||
"string",
|
||||
"null"
|
||||
],
|
||||
"format": "date-time"
|
||||
},
|
||||
"suppress": {
|
||||
"type": [
|
||||
"boolean",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"channel_id": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/SnowflakeType"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"UpdateThreadRequestPartial": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
|
@ -35687,27 +35695,6 @@
|
|||
"name"
|
||||
]
|
||||
},
|
||||
"UpdateVoiceStateRequestPartial": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"suppress": {
|
||||
"type": [
|
||||
"boolean",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"channel_id": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/SnowflakeType"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"UserAvatarDecorationResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
|
|
|||
|
|
@ -10568,7 +10568,32 @@
|
|||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/UpdateSelfVoiceStateRequestPartial"
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"request_to_speak_timestamp": {
|
||||
"type": [
|
||||
"string",
|
||||
"null"
|
||||
],
|
||||
"format": "date-time"
|
||||
},
|
||||
"suppress": {
|
||||
"type": [
|
||||
"boolean",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"channel_id": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/SnowflakeType"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -10677,7 +10702,25 @@
|
|||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/UpdateVoiceStateRequestPartial"
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"suppress": {
|
||||
"type": [
|
||||
"boolean",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"channel_id": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/SnowflakeType"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -25908,13 +25951,6 @@
|
|||
"GuildTemplateChannelTags": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": [
|
||||
"integer",
|
||||
"null"
|
||||
],
|
||||
"format": "int32"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
|
|
@ -36852,34 +36888,6 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"UpdateSelfVoiceStateRequestPartial": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"request_to_speak_timestamp": {
|
||||
"type": [
|
||||
"string",
|
||||
"null"
|
||||
],
|
||||
"format": "date-time"
|
||||
},
|
||||
"suppress": {
|
||||
"type": [
|
||||
"boolean",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"channel_id": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/SnowflakeType"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"UpdateThreadRequestPartial": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
|
@ -37023,27 +37031,6 @@
|
|||
"name"
|
||||
]
|
||||
},
|
||||
"UpdateVoiceStateRequestPartial": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"suppress": {
|
||||
"type": [
|
||||
"boolean",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"channel_id": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/SnowflakeType"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"UserAvatarDecorationResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue