mirror of
https://github.com/discord/discord-api-spec.git
synced 2024-12-22 08:31:23 -05:00
Automated spec update (18731)
This commit is contained in:
parent
711654a2ef
commit
1ac434db54
1 changed files with 53 additions and 0 deletions
|
@ -12678,6 +12678,40 @@
|
||||||
],
|
],
|
||||||
"format": "int32"
|
"format": "int32"
|
||||||
},
|
},
|
||||||
|
"ByNWeekday": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"n": {
|
||||||
|
"type": "integer",
|
||||||
|
"minimum": 0,
|
||||||
|
"maximum": 5,
|
||||||
|
"format": "int32"
|
||||||
|
},
|
||||||
|
"day": {
|
||||||
|
"$ref": "#/components/schemas/RecurrenceRuleWeekdays"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"n",
|
||||||
|
"day"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"ByNWeekdayResponse": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"n": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32"
|
||||||
|
},
|
||||||
|
"day": {
|
||||||
|
"$ref": "#/components/schemas/RecurrenceRuleWeekdays"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"n",
|
||||||
|
"day"
|
||||||
|
]
|
||||||
|
},
|
||||||
"ChannelFollowerResponse": {
|
"ChannelFollowerResponse": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
@ -24062,6 +24096,16 @@
|
||||||
"maxItems": 7,
|
"maxItems": 7,
|
||||||
"uniqueItems": true
|
"uniqueItems": true
|
||||||
},
|
},
|
||||||
|
"by_n_weekday": {
|
||||||
|
"type": [
|
||||||
|
"array",
|
||||||
|
"null"
|
||||||
|
],
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/components/schemas/ByNWeekday"
|
||||||
|
},
|
||||||
|
"maxItems": 7
|
||||||
|
},
|
||||||
"by_month": {
|
"by_month": {
|
||||||
"type": [
|
"type": [
|
||||||
"array",
|
"array",
|
||||||
|
@ -24225,6 +24269,15 @@
|
||||||
},
|
},
|
||||||
"uniqueItems": true
|
"uniqueItems": true
|
||||||
},
|
},
|
||||||
|
"by_n_weekday": {
|
||||||
|
"type": [
|
||||||
|
"array",
|
||||||
|
"null"
|
||||||
|
],
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/components/schemas/ByNWeekdayResponse"
|
||||||
|
}
|
||||||
|
},
|
||||||
"by_month": {
|
"by_month": {
|
||||||
"type": [
|
"type": [
|
||||||
"array",
|
"array",
|
||||||
|
|
Loading…
Reference in a new issue