mirror of
https://github.com/discord/discord-api-spec.git
synced 2026-05-01 06:20:33 -04:00
Automated spec update (196220)
This commit is contained in:
parent
7ab02fe227
commit
7cba79e03a
2 changed files with 76 additions and 0 deletions
|
|
@ -34061,6 +34061,27 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"SKUIneligibilityReason": {
|
||||
"type": "integer",
|
||||
"oneOf": [
|
||||
{
|
||||
"title": "OTHER",
|
||||
"description": "Other / catch-all",
|
||||
"const": 0
|
||||
},
|
||||
{
|
||||
"title": "OWNS_SKU_OR_BUNDLE_COMPONENT",
|
||||
"description": "User already owns this SKU or one of its components",
|
||||
"const": 1
|
||||
},
|
||||
{
|
||||
"title": "PLATFORM_RESTRICTION",
|
||||
"description": "User account is not on an eligible platform",
|
||||
"const": 2
|
||||
}
|
||||
],
|
||||
"format": "int32"
|
||||
},
|
||||
"ScheduledEventResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
|
@ -34451,6 +34472,23 @@
|
|||
"properties": {
|
||||
"eligible": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"ineligible_reason": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/SKUIneligibilityReason"
|
||||
}
|
||||
]
|
||||
},
|
||||
"ineligible_reason_description": {
|
||||
"type": [
|
||||
"string",
|
||||
"null"
|
||||
],
|
||||
"maxLength": 255
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
|
|
|
|||
|
|
@ -34978,6 +34978,27 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"SKUIneligibilityReason": {
|
||||
"type": "integer",
|
||||
"oneOf": [
|
||||
{
|
||||
"title": "OTHER",
|
||||
"description": "Other / catch-all",
|
||||
"const": 0
|
||||
},
|
||||
{
|
||||
"title": "OWNS_SKU_OR_BUNDLE_COMPONENT",
|
||||
"description": "User already owns this SKU or one of its components",
|
||||
"const": 1
|
||||
},
|
||||
{
|
||||
"title": "PLATFORM_RESTRICTION",
|
||||
"description": "User account is not on an eligible platform",
|
||||
"const": 2
|
||||
}
|
||||
],
|
||||
"format": "int32"
|
||||
},
|
||||
"ScheduledEventResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
|
@ -35757,6 +35778,23 @@
|
|||
"properties": {
|
||||
"eligible": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"ineligible_reason": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/SKUIneligibilityReason"
|
||||
}
|
||||
]
|
||||
},
|
||||
"ineligible_reason_description": {
|
||||
"type": [
|
||||
"string",
|
||||
"null"
|
||||
],
|
||||
"maxLength": 255
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
|
|
|
|||
Loading…
Reference in a new issue