From ba9402e5d26be0899c9322f00fe70e2f1d8c474f Mon Sep 17 00:00:00 2001 From: Fleny Date: Fri, 15 Aug 2025 22:15:57 +0200 Subject: [PATCH] fix(types): Fix discordeno/stageInstance.ts (#4364) --- packages/types/src/discordeno/stageInstance.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/types/src/discordeno/stageInstance.ts b/packages/types/src/discordeno/stageInstance.ts index 281179039..41008e975 100644 --- a/packages/types/src/discordeno/stageInstance.ts +++ b/packages/types/src/discordeno/stageInstance.ts @@ -20,7 +20,7 @@ export interface CreateStageInstance { /** https://discord.com/developers/docs/resources/stage-instance#modify-stage-instance-json-params */ export interface EditStageInstanceOptions { /** The topic of the Stage instance (1-120 characters) */ - topic: string + topic?: string /** The privacy level of the Stage instance */ privacyLevel?: DiscordStageInstancePrivacyLevel }