From 38ab40c637912b001e345b069ad883c963943d42 Mon Sep 17 00:00:00 2001 From: CyberL1 Date: Sat, 18 Oct 2025 14:12:43 +0200 Subject: [PATCH] fix: interaction schema --- src/schemas/api/bots/InteractionSchema.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/schemas/api/bots/InteractionSchema.ts b/src/schemas/api/bots/InteractionSchema.ts index e2fa4cd4..9a8c824e 100644 --- a/src/schemas/api/bots/InteractionSchema.ts +++ b/src/schemas/api/bots/InteractionSchema.ts @@ -1,8 +1,8 @@ import { ApplicationCommandOption, Snowflake, UploadAttachmentRequestSchema } from "@spacebar/schemas"; -import { ApplicationCommandType } from "./ApplicationCommandSchema"; +import { InteractionType } from "@spacebar/util"; export interface InteractionSchema { - type: ApplicationCommandType; + type: InteractionType; application_id: Snowflake; guild_id?: Snowflake; channel_id: Snowflake;