mirror of
https://github.com/discord/discord-api-spec.git
synced 2024-12-22 08:31:23 -05:00
Automated spec update (10288)
This commit is contained in:
parent
b7e2147f31
commit
d9c07caf30
2 changed files with 122 additions and 0 deletions
|
@ -12447,6 +12447,16 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"purchase_notification": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/PurchaseNotificationResponse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"position": {
|
"position": {
|
||||||
"type": [
|
"type": [
|
||||||
"integer",
|
"integer",
|
||||||
|
@ -17389,6 +17399,21 @@
|
||||||
"stickers"
|
"stickers"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"GuildProductPurchaseResponse": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"listing_id": {
|
||||||
|
"$ref": "#/components/schemas/SnowflakeType"
|
||||||
|
},
|
||||||
|
"product_name": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"listing_id",
|
||||||
|
"product_name"
|
||||||
|
]
|
||||||
|
},
|
||||||
"GuildPruneResponse": {
|
"GuildPruneResponse": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
@ -22308,6 +22333,16 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"purchase_notification": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/PurchaseNotificationResponse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"position": {
|
"position": {
|
||||||
"type": [
|
"type": [
|
||||||
"integer",
|
"integer",
|
||||||
|
@ -23776,6 +23811,32 @@
|
||||||
"deaf"
|
"deaf"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"PurchaseNotificationResponse": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"type": {
|
||||||
|
"$ref": "#/components/schemas/PurchaseType"
|
||||||
|
},
|
||||||
|
"guild_product_purchase": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/GuildProductPurchaseResponse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"type"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"PurchaseType": {
|
||||||
|
"type": "integer",
|
||||||
|
"oneOf": [],
|
||||||
|
"format": "int32"
|
||||||
|
},
|
||||||
"QuarantineUserAction": {
|
"QuarantineUserAction": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
|
|
@ -12447,6 +12447,16 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"purchase_notification": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/PurchaseNotificationResponse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"position": {
|
"position": {
|
||||||
"type": [
|
"type": [
|
||||||
"integer",
|
"integer",
|
||||||
|
@ -17442,6 +17452,21 @@
|
||||||
"stickers"
|
"stickers"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"GuildProductPurchaseResponse": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"listing_id": {
|
||||||
|
"$ref": "#/components/schemas/SnowflakeType"
|
||||||
|
},
|
||||||
|
"product_name": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"listing_id",
|
||||||
|
"product_name"
|
||||||
|
]
|
||||||
|
},
|
||||||
"GuildPruneResponse": {
|
"GuildPruneResponse": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
@ -22375,6 +22400,16 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"purchase_notification": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/PurchaseNotificationResponse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"position": {
|
"position": {
|
||||||
"type": [
|
"type": [
|
||||||
"integer",
|
"integer",
|
||||||
|
@ -23843,6 +23878,32 @@
|
||||||
"deaf"
|
"deaf"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"PurchaseNotificationResponse": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"type": {
|
||||||
|
"$ref": "#/components/schemas/PurchaseType"
|
||||||
|
},
|
||||||
|
"guild_product_purchase": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/GuildProductPurchaseResponse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"type"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"PurchaseType": {
|
||||||
|
"type": "integer",
|
||||||
|
"oneOf": [],
|
||||||
|
"format": "int32"
|
||||||
|
},
|
||||||
"QuarantineUserAction": {
|
"QuarantineUserAction": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
|
Loading…
Reference in a new issue