@discordjs/core 0.5.0-dev.1679530175-5f93dcc.0 → 0.5.0-dev.1679789486-b8b852e.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -24,7 +24,7 @@
24
24
 
25
25
  **Node.js 16.9.0 or newer is required.**
26
26
 
27
- ```sh-session
27
+ ```sh
28
28
  npm install @discordjs/core
29
29
  yarn add @discordjs/core
30
30
  pnpm add @discordjs/core
package/dist/index.d.ts CHANGED
@@ -4,7 +4,6 @@ import { Snowflake, RESTGetAPIApplicationCommandsQuery, RESTGetAPIApplicationCom
4
4
  export * from 'discord-api-types/v10';
5
5
  import { WebSocketManager } from '@discordjs/ws';
6
6
  import { AsyncEventEmitter } from '@vladfrangu/async_event_emitter';
7
- import * as discord_api_types_utils_internals from 'discord-api-types/utils/internals';
8
7
 
9
8
  declare class ApplicationCommandsAPI {
10
9
  private readonly rest;
@@ -1606,9 +1605,9 @@ declare function withFiles(files: DescriptiveRawFile[], options: APIInteractionR
1606
1605
  }[];
1607
1606
  content?: string | undefined;
1608
1607
  tts?: boolean | undefined;
1609
- embeds?: discord_api_types_utils_internals.AddUndefinedToPossiblyUndefinedPropertiesOfInterface<discord_api_types_v10.APIEmbed>[] | undefined;
1610
- allowed_mentions?: discord_api_types_utils_internals.AddUndefinedToPossiblyUndefinedPropertiesOfInterface<discord_api_types_v10.APIAllowedMentions> | undefined;
1611
- components?: discord_api_types_utils_internals.AddUndefinedToPossiblyUndefinedPropertiesOfInterface<discord_api_types_v10.APIActionRowComponent<discord_api_types_v10.APIMessageActionRowComponent>>[] | undefined;
1608
+ embeds?: discord_api_types_v10.APIEmbed[] | undefined;
1609
+ allowed_mentions?: discord_api_types_v10.APIAllowedMentions | undefined;
1610
+ components?: discord_api_types_v10.APIActionRowComponent<discord_api_types_v10.APIMessageActionRowComponent>[] | undefined;
1612
1611
  flags?: discord_api_types_v10.MessageFlags;
1613
1612
  thread_name?: string | undefined;
1614
1613
  };