File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -96,6 +96,8 @@ export const xGetLikedTweetsTool: ToolConfig<XGetLikedTweetsParams, XTweetListRe
9696 } ,
9797 meta : {
9898 resultCount : data . meta ?. result_count ?? 0 ,
99+ newestId : data . meta ?. newest_id ?? null ,
100+ oldestId : data . meta ?. oldest_id ?? null ,
99101 nextToken : data . meta ?. next_token ?? null ,
100102 previousToken : data . meta ?. previous_token ?? null ,
101103 } ,
Original file line number Diff line number Diff line change @@ -486,6 +486,9 @@ export interface XManageMuteResponse extends ToolResponse {
486486export interface XTweetListResponse extends ToolResponse {
487487 output : {
488488 tweets : XTweet [ ]
489+ includes ?: {
490+ users : XUser [ ]
491+ }
489492 meta : {
490493 resultCount : number
491494 newestId : string | null
You can’t perform that action at this time.
0 commit comments