@@ -178,6 +178,8 @@ import {
178
178
APIPoll ,
179
179
PollLayoutType ,
180
180
APIPollAnswer ,
181
+ APISelectMenuDefaultValue ,
182
+ SelectMenuDefaultValueType ,
181
183
} from 'discord-api-types/v10' ;
182
184
import { ChildProcess } from 'node:child_process' ;
183
185
import { EventEmitter } from 'node:events' ;
@@ -6367,19 +6369,25 @@ export interface StringSelectMenuComponentData extends BaseSelectMenuComponentDa
6367
6369
6368
6370
export interface UserSelectMenuComponentData extends BaseSelectMenuComponentData {
6369
6371
type : ComponentType . UserSelect ;
6372
+ defaultValues ?: readonly APISelectMenuDefaultValue < SelectMenuDefaultValueType . User > [ ] ;
6370
6373
}
6371
6374
6372
6375
export interface RoleSelectMenuComponentData extends BaseSelectMenuComponentData {
6373
6376
type : ComponentType . RoleSelect ;
6377
+ defaultValues ?: readonly APISelectMenuDefaultValue < SelectMenuDefaultValueType . Role > [ ] ;
6374
6378
}
6375
6379
6376
6380
export interface MentionableSelectMenuComponentData extends BaseSelectMenuComponentData {
6377
6381
type : ComponentType . MentionableSelect ;
6382
+ defaultValues ?: readonly APISelectMenuDefaultValue <
6383
+ SelectMenuDefaultValueType . Role | SelectMenuDefaultValueType . User
6384
+ > [ ] ;
6378
6385
}
6379
6386
6380
6387
export interface ChannelSelectMenuComponentData extends BaseSelectMenuComponentData {
6381
6388
type : ComponentType . ChannelSelect ;
6382
6389
channelTypes ?: readonly ChannelType [ ] ;
6390
+ defaultValues ?: readonly APISelectMenuDefaultValue < SelectMenuDefaultValueType . Channel > [ ] ;
6383
6391
}
6384
6392
6385
6393
export interface MessageSelectOption {
0 commit comments