seyfert 3.1.3-dev-15208450766.0 → 3.1.3-dev-15621865613.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.
|
@@ -83,7 +83,7 @@ export declare class RoleSelectMenu extends SelectMenu<APIRoleSelectComponent> {
|
|
|
83
83
|
}
|
|
84
84
|
export type MentionableDefaultElement = {
|
|
85
85
|
id: string;
|
|
86
|
-
type: keyof
|
|
86
|
+
type: keyof typeof SelectMenuDefaultValueType;
|
|
87
87
|
};
|
|
88
88
|
/**
|
|
89
89
|
* Represents a Select Menu for selecting mentionable entities.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ComponentType } from '../types';
|
|
2
2
|
import { BaseSelectMenuComponent } from './BaseSelectMenuComponent';
|
|
3
3
|
export declare class MentionableSelectMenuComponent extends BaseSelectMenuComponent<ComponentType.MentionableSelect> {
|
|
4
|
-
get defaultValues(): import("../types").APISelectMenuDefaultValue<import("../types").SelectMenuDefaultValueType
|
|
4
|
+
get defaultValues(): import("../types").APISelectMenuDefaultValue<import("../types").SelectMenuDefaultValueType>[] | undefined;
|
|
5
5
|
}
|
|
@@ -709,9 +709,9 @@ export declare class ForumChannel extends BaseGuildChannel {
|
|
|
709
709
|
type: ChannelType.GuildForum;
|
|
710
710
|
}
|
|
711
711
|
export interface ThreadChannel extends ObjectToLower<Omit<APIThreadChannel, 'permission_overwrites' | 'guild_id'>>, Omit<TextBaseGuildChannel, 'edit' | 'parentId'> {
|
|
712
|
+
parentId: string;
|
|
712
713
|
}
|
|
713
714
|
export declare class ThreadChannel extends BaseChannel<ChannelType.PublicThread | ChannelType.AnnouncementThread | ChannelType.PrivateThread> {
|
|
714
|
-
parentId: string;
|
|
715
715
|
type: ChannelType.PublicThread | ChannelType.AnnouncementThread | ChannelType.PrivateThread;
|
|
716
716
|
webhooks: {
|
|
717
717
|
list: () => Promise<WebhookStructure[]>;
|
|
@@ -395,7 +395,6 @@ exports.ForumChannel = ForumChannel = __decorate([
|
|
|
395
395
|
(0, mixer_1.mix)(ThreadOnlyMethods, WebhookChannelMethods)
|
|
396
396
|
], ForumChannel);
|
|
397
397
|
let ThreadChannel = class ThreadChannel extends BaseChannel {
|
|
398
|
-
parentId;
|
|
399
398
|
webhooks = WebhookChannelMethods.channel({
|
|
400
399
|
client: this.client,
|
|
401
400
|
channelId: this.parentId,
|
|
@@ -213,7 +213,7 @@ export type APIRoleSelectComponent = APIBaseAutoPopulatedSelectMenuComponent<Com
|
|
|
213
213
|
/**
|
|
214
214
|
* https://discord.com/developers/docs/interactions/message-components#select-menus
|
|
215
215
|
*/
|
|
216
|
-
export type APIMentionableSelectComponent = APIBaseAutoPopulatedSelectMenuComponent<ComponentType.MentionableSelect, SelectMenuDefaultValueType
|
|
216
|
+
export type APIMentionableSelectComponent = APIBaseAutoPopulatedSelectMenuComponent<ComponentType.MentionableSelect, SelectMenuDefaultValueType>;
|
|
217
217
|
/**
|
|
218
218
|
* https://discord.com/developers/docs/interactions/message-components#select-menus
|
|
219
219
|
*/
|