diff --git a/src/bot.ts b/src/bot.ts index e1303a44e..1e1aaccd1 100644 --- a/src/bot.ts +++ b/src/bot.ts @@ -652,8 +652,8 @@ export interface Helpers { leaveThread: typeof helpers.leaveThread; lockThread: typeof helpers.lockThread; removeThreadMember: typeof helpers.removeThreadMember; - startPrivateThread: typeof helpers.startPrivateThread; - startThread: typeof helpers.startThread; + startThreadWithoutMessage: typeof helpers.startThreadWithoutMessage; + startThreadWithMessage: typeof helpers.startThreadWithMessage; unarchiveThread: typeof helpers.unarchiveThread; unlockThread: typeof helpers.unlockThread; suppressEmbeds: typeof helpers.suppressEmbeds; @@ -827,8 +827,8 @@ export function createBaseHelpers(options: Partial) { leaveThread: options.leaveThread || helpers.leaveThread, lockThread: options.lockThread || helpers.lockThread, removeThreadMember: options.removeThreadMember || helpers.removeThreadMember, - startPrivateThread: options.startPrivateThread || helpers.startPrivateThread, - startThread: options.startThread || helpers.startThread, + startThreadWithoutMessage: options.startThreadWithoutMessage || helpers.startThreadWithoutMessage, + startThreadWithMessage: options.startThreadWithMessage || helpers.startThreadWithMessage, unarchiveThread: options.unarchiveThread || helpers.unarchiveThread, unlockThread: options.unlockThread || helpers.unlockThread, suppressEmbeds: options.suppressEmbeds || helpers.suppressEmbeds,