fix: allow descriptions for primary entry point commands (#1785)

This commit is contained in:
Jiralite
2026-09-02 16:26:02 +03:00
committed by GitHub
parent 75915c2e67
commit 4a68cbc589
4 changed files with 4 additions and 0 deletions
+1
View File
@@ -92,6 +92,7 @@ export interface RESTPostAPIContextMenuApplicationCommandsJSONBody extends RESTP
*/
export interface RESTPostAPIPrimaryEntryPointApplicationCommandJSONBody extends RESTPostAPIBaseApplicationCommandsJSONBody {
type: ApplicationCommandType.PrimaryEntryPoint;
description?: string | undefined;
}
/**
+1
View File
@@ -92,6 +92,7 @@ export interface RESTPostAPIContextMenuApplicationCommandsJSONBody extends RESTP
*/
export interface RESTPostAPIPrimaryEntryPointApplicationCommandJSONBody extends RESTPostAPIBaseApplicationCommandsJSONBody {
type: ApplicationCommandType.PrimaryEntryPoint;
description?: string | undefined;
}
/**
+1
View File
@@ -92,6 +92,7 @@ export interface RESTPostAPIContextMenuApplicationCommandsJSONBody extends RESTP
*/
export interface RESTPostAPIPrimaryEntryPointApplicationCommandJSONBody extends RESTPostAPIBaseApplicationCommandsJSONBody {
type: ApplicationCommandType.PrimaryEntryPoint;
description?: string | undefined;
}
/**
+1
View File
@@ -92,6 +92,7 @@ export interface RESTPostAPIContextMenuApplicationCommandsJSONBody extends RESTP
*/
export interface RESTPostAPIPrimaryEntryPointApplicationCommandJSONBody extends RESTPostAPIBaseApplicationCommandsJSONBody {
type: ApplicationCommandType.PrimaryEntryPoint;
description?: string | undefined;
}
/**