Automated spec update (10288)
This commit is contained in:
parent
b7e2147f31
commit
d9c07caf30
|
@ -12447,6 +12447,16 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"purchase_notification": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/PurchaseNotificationResponse"
|
||||
}
|
||||
]
|
||||
},
|
||||
"position": {
|
||||
"type": [
|
||||
"integer",
|
||||
|
@ -17389,6 +17399,21 @@
|
|||
"stickers"
|
||||
]
|
||||
},
|
||||
"GuildProductPurchaseResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"listing_id": {
|
||||
"$ref": "#/components/schemas/SnowflakeType"
|
||||
},
|
||||
"product_name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"listing_id",
|
||||
"product_name"
|
||||
]
|
||||
},
|
||||
"GuildPruneResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
@ -22308,6 +22333,16 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"purchase_notification": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/PurchaseNotificationResponse"
|
||||
}
|
||||
]
|
||||
},
|
||||
"position": {
|
||||
"type": [
|
||||
"integer",
|
||||
|
@ -23776,6 +23811,32 @@
|
|||
"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": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
|
|
@ -12447,6 +12447,16 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"purchase_notification": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/PurchaseNotificationResponse"
|
||||
}
|
||||
]
|
||||
},
|
||||
"position": {
|
||||
"type": [
|
||||
"integer",
|
||||
|
@ -17442,6 +17452,21 @@
|
|||
"stickers"
|
||||
]
|
||||
},
|
||||
"GuildProductPurchaseResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"listing_id": {
|
||||
"$ref": "#/components/schemas/SnowflakeType"
|
||||
},
|
||||
"product_name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"listing_id",
|
||||
"product_name"
|
||||
]
|
||||
},
|
||||
"GuildPruneResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
@ -22375,6 +22400,16 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"purchase_notification": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/PurchaseNotificationResponse"
|
||||
}
|
||||
]
|
||||
},
|
||||
"position": {
|
||||
"type": [
|
||||
"integer",
|
||||
|
@ -23843,6 +23878,32 @@
|
|||
"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": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
|
Loading…
Reference in New Issue