diff --git a/src/types/v2/dm.v2.types.ts b/src/types/v2/dm.v2.types.ts index 9e49c36..9c2ffca 100644 --- a/src/types/v2/dm.v2.types.ts +++ b/src/types/v2/dm.v2.types.ts @@ -3,7 +3,7 @@ import { TTweetv2MediaField, TTweetv2TweetField, TTweetv2UserField } from './twe import { ApiV2Includes, ReferencedTweetV2 } from './tweet.definition.v2'; import { DataMetaAndIncludeV2, PaginableCountMetaV2 } from './shared.v2.types'; -export type TDMEventV2Field = 'created_at' | 'dm_conversation_id' | 'sender_id' | 'participant_ids' | 'referenced_tweets' | 'attachments'; +export type TDMEventV2Field = 'id' | 'text' | 'event_type' | 'created_at' | 'dm_conversation_id' | 'sender_id' | 'participant_ids' | 'referenced_tweets' | 'attachments'; export type TDMEventV2Expansion = 'attachments.media_keys' | 'referenced_tweets.id' | 'sender_id' | 'participant_ids'; export type TDMEventV2EventType = 'MessageCreate' | 'ParticipantsJoin' | 'ParticipantsLeave';