mirror of
https://github.com/discord/discord-api-spec.git
synced 2025-11-14 07:49:48 -05:00
Compare commits
2 commits
7c98b51461
...
dc21bfdb4d
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dc21bfdb4d | ||
|
|
bbb2467dc4 |
2 changed files with 112 additions and 4 deletions
|
|
@ -11515,6 +11515,19 @@
|
||||||
"secret": {
|
"secret": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"maxLength": 250
|
"maxLength": 250
|
||||||
|
},
|
||||||
|
"flags": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "integer",
|
||||||
|
"enum": [
|
||||||
|
1
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
|
|
@ -11606,6 +11619,19 @@
|
||||||
"maxLength": 1024
|
"maxLength": 1024
|
||||||
},
|
},
|
||||||
"maxProperties": 25
|
"maxProperties": 25
|
||||||
|
},
|
||||||
|
"flags": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "integer",
|
||||||
|
"enum": [
|
||||||
|
1
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -11746,6 +11772,19 @@
|
||||||
"$ref": "#/components/schemas/LobbyMemberRequest"
|
"$ref": "#/components/schemas/LobbyMemberRequest"
|
||||||
},
|
},
|
||||||
"maxItems": 25
|
"maxItems": 25
|
||||||
|
},
|
||||||
|
"flags": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "integer",
|
||||||
|
"enum": [
|
||||||
|
1
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -28800,11 +28839,15 @@
|
||||||
"$ref": "#/components/schemas/GuildChannelResponse"
|
"$ref": "#/components/schemas/GuildChannelResponse"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
"flags": {
|
||||||
|
"$ref": "#/components/schemas/UInt32Type"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
"id",
|
"id",
|
||||||
"application_id"
|
"application_id",
|
||||||
|
"flags"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"MLSpamRuleResponse": {
|
"MLSpamRuleResponse": {
|
||||||
|
|
@ -36220,7 +36263,18 @@
|
||||||
},
|
},
|
||||||
"ThreadSearchTagSetting": {
|
"ThreadSearchTagSetting": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"oneOf": []
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"title": "MATCH_ALL",
|
||||||
|
"description": "The thread tags must contain all tags in the search query",
|
||||||
|
"const": "match_all"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "MATCH_SOME",
|
||||||
|
"description": "The thread tags must contain at least one of tags in the search query",
|
||||||
|
"const": "match_some"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"ThreadSortOrder": {
|
"ThreadSortOrder": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
|
|
|
||||||
|
|
@ -11515,6 +11515,19 @@
|
||||||
"secret": {
|
"secret": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"maxLength": 250
|
"maxLength": 250
|
||||||
|
},
|
||||||
|
"flags": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "integer",
|
||||||
|
"enum": [
|
||||||
|
1
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
|
|
@ -11606,6 +11619,19 @@
|
||||||
"maxLength": 1024
|
"maxLength": 1024
|
||||||
},
|
},
|
||||||
"maxProperties": 25
|
"maxProperties": 25
|
||||||
|
},
|
||||||
|
"flags": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "integer",
|
||||||
|
"enum": [
|
||||||
|
1
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -11746,6 +11772,19 @@
|
||||||
"$ref": "#/components/schemas/LobbyMemberRequest"
|
"$ref": "#/components/schemas/LobbyMemberRequest"
|
||||||
},
|
},
|
||||||
"maxItems": 25
|
"maxItems": 25
|
||||||
|
},
|
||||||
|
"flags": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "integer",
|
||||||
|
"enum": [
|
||||||
|
1
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -28885,11 +28924,15 @@
|
||||||
"$ref": "#/components/schemas/GuildChannelResponse"
|
"$ref": "#/components/schemas/GuildChannelResponse"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
"flags": {
|
||||||
|
"$ref": "#/components/schemas/UInt32Type"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
"id",
|
"id",
|
||||||
"application_id"
|
"application_id",
|
||||||
|
"flags"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"MLSpamRuleResponse": {
|
"MLSpamRuleResponse": {
|
||||||
|
|
@ -36652,7 +36695,18 @@
|
||||||
},
|
},
|
||||||
"ThreadSearchTagSetting": {
|
"ThreadSearchTagSetting": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"oneOf": []
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"title": "MATCH_ALL",
|
||||||
|
"description": "The thread tags must contain all tags in the search query",
|
||||||
|
"const": "match_all"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "MATCH_SOME",
|
||||||
|
"description": "The thread tags must contain at least one of tags in the search query",
|
||||||
|
"const": "match_some"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"ThreadSortOrder": {
|
"ThreadSortOrder": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue