mirror of
https://github.com/discord/discord-api-spec.git
synced 2024-12-22 08:31:23 -05:00
Automated spec update (47841)
This commit is contained in:
parent
cead3963e2
commit
48cff491cd
2 changed files with 84 additions and 0 deletions
|
@ -12696,6 +12696,16 @@
|
||||||
"tts": {
|
"tts": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
},
|
},
|
||||||
|
"call": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/MessageCallResponse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"activity": {
|
"activity": {
|
||||||
"oneOf": [
|
"oneOf": [
|
||||||
{
|
{
|
||||||
|
@ -21521,6 +21531,28 @@
|
||||||
"proxy_url"
|
"proxy_url"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"MessageCallResponse": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"ended_timestamp": {
|
||||||
|
"type": [
|
||||||
|
"string",
|
||||||
|
"null"
|
||||||
|
],
|
||||||
|
"format": "date-time"
|
||||||
|
},
|
||||||
|
"participants": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/components/schemas/SnowflakeType"
|
||||||
|
},
|
||||||
|
"uniqueItems": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"participants"
|
||||||
|
]
|
||||||
|
},
|
||||||
"MessageComponentActionRowResponse": {
|
"MessageComponentActionRowResponse": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
@ -22907,6 +22939,16 @@
|
||||||
"tts": {
|
"tts": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
},
|
},
|
||||||
|
"call": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/MessageCallResponse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"activity": {
|
"activity": {
|
||||||
"oneOf": [
|
"oneOf": [
|
||||||
{
|
{
|
||||||
|
|
|
@ -12895,6 +12895,16 @@
|
||||||
"tts": {
|
"tts": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
},
|
},
|
||||||
|
"call": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/MessageCallResponse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"activity": {
|
"activity": {
|
||||||
"oneOf": [
|
"oneOf": [
|
||||||
{
|
{
|
||||||
|
@ -21851,6 +21861,28 @@
|
||||||
"proxy_url"
|
"proxy_url"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"MessageCallResponse": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"ended_timestamp": {
|
||||||
|
"type": [
|
||||||
|
"string",
|
||||||
|
"null"
|
||||||
|
],
|
||||||
|
"format": "date-time"
|
||||||
|
},
|
||||||
|
"participants": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/components/schemas/SnowflakeType"
|
||||||
|
},
|
||||||
|
"uniqueItems": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"participants"
|
||||||
|
]
|
||||||
|
},
|
||||||
"MessageComponentActionRowResponse": {
|
"MessageComponentActionRowResponse": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
@ -23298,6 +23330,16 @@
|
||||||
"tts": {
|
"tts": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
},
|
},
|
||||||
|
"call": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/MessageCallResponse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"activity": {
|
"activity": {
|
||||||
"oneOf": [
|
"oneOf": [
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue