From c64362a711940a5fb5b0cb56c374ebc003fb3b0d Mon Sep 17 00:00:00 2001 From: Jiralite <33201955+Jiralite@users.noreply.github.com> Date: Sun, 11 May 2025 10:06:54 +0100 Subject: [PATCH] fix: imports (#1237) --- deno/gateway/v9.ts | 2 +- deno/rest/v9/soundboard.ts | 2 +- gateway/v9.ts | 2 +- rest/v9/soundboard.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/deno/gateway/v9.ts b/deno/gateway/v9.ts index 6945f3e7..3e395dad 100644 --- a/deno/gateway/v9.ts +++ b/deno/gateway/v9.ts @@ -38,10 +38,10 @@ import type { APISoundboardSound, GuildChannelType, ThreadChannelType, + APIEntitlement, } from '../payloads/v9/mod.ts'; import type { ReactionType } from '../rest/v9/mod.ts'; import type { _Nullable } from '../utils/internals.ts'; -import type { APIEntitlement } from '../v10.ts'; export * from './common.ts'; diff --git a/deno/rest/v9/soundboard.ts b/deno/rest/v9/soundboard.ts index 4883b932..e22cd7ce 100644 --- a/deno/rest/v9/soundboard.ts +++ b/deno/rest/v9/soundboard.ts @@ -1,5 +1,5 @@ import type { Snowflake } from '../../globals.ts'; -import type { APISoundboardSound } from '../../payloads/v10/mod.ts'; +import type { APISoundboardSound } from '../../payloads/v9/mod.ts'; /** * @see {@link https://discord.com/developers/docs/resources/soundboard#send-soundboard-sound} diff --git a/gateway/v9.ts b/gateway/v9.ts index c5bbc48e..b651c5e5 100644 --- a/gateway/v9.ts +++ b/gateway/v9.ts @@ -38,10 +38,10 @@ import type { APISoundboardSound, GuildChannelType, ThreadChannelType, + APIEntitlement, } from '../payloads/v9/index'; import type { ReactionType } from '../rest/v9/index'; import type { _Nullable } from '../utils/internals'; -import type { APIEntitlement } from '../v10'; export * from './common'; diff --git a/rest/v9/soundboard.ts b/rest/v9/soundboard.ts index 2ac1a740..9e8cbe58 100644 --- a/rest/v9/soundboard.ts +++ b/rest/v9/soundboard.ts @@ -1,5 +1,5 @@ import type { Snowflake } from '../../globals'; -import type { APISoundboardSound } from '../../payloads/v10/index'; +import type { APISoundboardSound } from '../../payloads/v9/index'; /** * @see {@link https://discord.com/developers/docs/resources/soundboard#send-soundboard-sound}