mirror of
https://github.com/discord/discord-api-spec.git
synced 2026-07-21 19:54:47 -04:00
Automated spec update (239175)
This commit is contained in:
parent
9b3e7d8998
commit
d6f2c42086
2 changed files with 64 additions and 0 deletions
|
|
@ -27156,6 +27156,16 @@
|
|||
"target_message_id": {
|
||||
"$ref": "#/components/schemas/SnowflakeType"
|
||||
},
|
||||
"liveliness": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/GuildLivelinessResponse"
|
||||
}
|
||||
]
|
||||
},
|
||||
"uses": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
|
|
@ -27337,6 +27347,28 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"GuildLivelinessResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"msg_activity_bins": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
}
|
||||
},
|
||||
"last_updated_ts": {
|
||||
"type": [
|
||||
"string",
|
||||
"null"
|
||||
],
|
||||
"format": "date-time"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"msg_activity_bins"
|
||||
]
|
||||
},
|
||||
"GuildMFALevel": {
|
||||
"type": "integer",
|
||||
"oneOf": [
|
||||
|
|
|
|||
|
|
@ -27175,6 +27175,16 @@
|
|||
"target_message_id": {
|
||||
"$ref": "#/components/schemas/SnowflakeType"
|
||||
},
|
||||
"liveliness": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/GuildLivelinessResponse"
|
||||
}
|
||||
]
|
||||
},
|
||||
"uses": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
|
|
@ -27356,6 +27366,28 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"GuildLivelinessResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"msg_activity_bins": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
}
|
||||
},
|
||||
"last_updated_ts": {
|
||||
"type": [
|
||||
"string",
|
||||
"null"
|
||||
],
|
||||
"format": "date-time"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"msg_activity_bins"
|
||||
]
|
||||
},
|
||||
"GuildMFALevel": {
|
||||
"type": "integer",
|
||||
"oneOf": [
|
||||
|
|
|
|||
Loading…
Reference in a new issue