@discordjs/core 0.5.0-dev.1679573058-5f93dcc.0 → 0.5.0-dev.1679832263-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 +1 -1
- package/dist/index.d.ts +3 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +12 -12
package/README.md
CHANGED
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?:
|
|
1610
|
-
allowed_mentions?:
|
|
1611
|
-
components?:
|
|
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
|
};
|