Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 901fc76

Browse files
committedMay 19, 2025
fix: ci
1 parent 0dbbbd6 commit 901fc76

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed
 

‎deno/payloads/v10/channel.ts

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎deno/payloads/v9/channel.ts

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎payloads/v10/channel.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,10 @@ export interface APIGroupDMChannel extends APIDMChannelBase<ChannelType.GroupDM>
242242

243243
export type ThreadChannelType = ChannelType.AnnouncementThread | ChannelType.PrivateThread | ChannelType.PublicThread;
244244

245-
export interface APIThreadChannel extends APITextBasedChannel<ThreadChannelType>, APIGuildChannel<ThreadChannelType> {
245+
export interface APIThreadChannel
246+
extends APITextBasedChannel<ThreadChannelType>,
247+
APIGuildChannel<ThreadChannelType>,
248+
APIPinChannel<ThreadChannelType> {
246249
/**
247250
* The client users member for the thread, only included in select endpoints
248251
*/

‎payloads/v9/channel.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,10 @@ export interface APIGroupDMChannel extends APIDMChannelBase<ChannelType.GroupDM>
242242

243243
export type ThreadChannelType = ChannelType.AnnouncementThread | ChannelType.PrivateThread | ChannelType.PublicThread;
244244

245-
export interface APIThreadChannel extends APITextBasedChannel<ThreadChannelType>, APIGuildChannel<ThreadChannelType> {
245+
export interface APIThreadChannel
246+
extends APITextBasedChannel<ThreadChannelType>,
247+
APIGuildChannel<ThreadChannelType>,
248+
APIPinChannel<ThreadChannelType> {
246249
/**
247250
* The client users member for the thread, only included in select endpoints
248251
*/

0 commit comments

Comments
 (0)
Please sign in to comment.