mirror of
https://github.com/discord/discord-api-spec.git
synced 2025-11-14 07:49:48 -05:00
Compare commits
2 commits
a2a0572509
...
390694490f
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
390694490f | ||
|
|
ae0823b7db |
2 changed files with 116 additions and 90 deletions
|
|
@ -10228,32 +10228,7 @@
|
|||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
"$ref": "#/components/schemas/UpdateSelfVoiceStateRequestPartial"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -10362,25 +10337,7 @@
|
|||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"suppress": {
|
||||
"type": [
|
||||
"boolean",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"channel_id": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/SnowflakeType"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
"$ref": "#/components/schemas/UpdateVoiceStateRequestPartial"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -25442,6 +25399,13 @@
|
|||
"GuildTemplateChannelTags": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": [
|
||||
"integer",
|
||||
"null"
|
||||
],
|
||||
"format": "int32"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
|
|
@ -35552,6 +35516,34 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"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": {
|
||||
|
|
@ -35695,6 +35687,27 @@
|
|||
"name"
|
||||
]
|
||||
},
|
||||
"UpdateVoiceStateRequestPartial": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"suppress": {
|
||||
"type": [
|
||||
"boolean",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"channel_id": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/SnowflakeType"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"UserAvatarDecorationResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
|
|
|||
|
|
@ -10568,32 +10568,7 @@
|
|||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
"$ref": "#/components/schemas/UpdateSelfVoiceStateRequestPartial"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -10702,25 +10677,7 @@
|
|||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"suppress": {
|
||||
"type": [
|
||||
"boolean",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"channel_id": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/SnowflakeType"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
"$ref": "#/components/schemas/UpdateVoiceStateRequestPartial"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -25951,6 +25908,13 @@
|
|||
"GuildTemplateChannelTags": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": [
|
||||
"integer",
|
||||
"null"
|
||||
],
|
||||
"format": "int32"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
|
|
@ -36888,6 +36852,34 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"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": {
|
||||
|
|
@ -37031,6 +37023,27 @@
|
|||
"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