From b47495387dff24a6ec3531d2e378e6165745f48e Mon Sep 17 00:00:00 2001 From: "Nelly (automation bot)" <> Date: Tue, 10 Dec 2024 01:01:25 +0000 Subject: [PATCH] Automated spec update (85003) --- specs/openapi.json | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/specs/openapi.json b/specs/openapi.json index b2c776d..28061e9 100644 --- a/specs/openapi.json +++ b/specs/openapi.json @@ -12623,7 +12623,18 @@ }, "ApplicationIntegrationType": { "type": "integer", - "oneOf": [], + "oneOf": [ + { + "title": "GUILD_INSTALL", + "description": "For Guild install.", + "const": 0 + }, + { + "title": "USER_INSTALL", + "description": "For User install.", + "const": 1 + } + ], "format": "int32" }, "ApplicationIntegrationTypeConfiguration": { @@ -21544,7 +21555,23 @@ }, "InteractionContextType": { "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" }, "InteractionResponse": {