mirror of
https://github.com/discord/discord-api-spec.git
synced 2024-12-22 00:21:23 -05:00
Automated spec update (85003)
This commit is contained in:
parent
bf38582b78
commit
b47495387d
1 changed files with 29 additions and 2 deletions
|
@ -12623,7 +12623,18 @@
|
||||||
},
|
},
|
||||||
"ApplicationIntegrationType": {
|
"ApplicationIntegrationType": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"oneOf": [],
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"title": "GUILD_INSTALL",
|
||||||
|
"description": "For Guild install.",
|
||||||
|
"const": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "USER_INSTALL",
|
||||||
|
"description": "For User install.",
|
||||||
|
"const": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
"format": "int32"
|
"format": "int32"
|
||||||
},
|
},
|
||||||
"ApplicationIntegrationTypeConfiguration": {
|
"ApplicationIntegrationTypeConfiguration": {
|
||||||
|
@ -21544,7 +21555,23 @@
|
||||||
},
|
},
|
||||||
"InteractionContextType": {
|
"InteractionContextType": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"oneOf": [],
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"title": "GUILD",
|
||||||
|
"description": "This command can be used within a Guild.",
|
||||||
|
"const": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "BOT_DM",
|
||||||
|
"description": "This command can be used within a DM with this application's bot.",
|
||||||
|
"const": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "PRIVATE_CHANNEL",
|
||||||
|
"description": "This command can be used within DMs and Group DMs with users.",
|
||||||
|
"const": 2
|
||||||
|
}
|
||||||
|
],
|
||||||
"format": "int32"
|
"format": "int32"
|
||||||
},
|
},
|
||||||
"InteractionResponse": {
|
"InteractionResponse": {
|
||||||
|
|
Loading…
Reference in a new issue