rettiwt-api 7.0.3 → 7.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +38 -10
- package/dist/collections/Extractors.d.ts +14 -0
- package/dist/collections/Extractors.js +7 -0
- package/dist/collections/Extractors.js.map +1 -1
- package/dist/collections/Groups.js +7 -0
- package/dist/collections/Groups.js.map +1 -1
- package/dist/collections/Requests.js +7 -0
- package/dist/collections/Requests.js.map +1 -1
- package/dist/commands/List.js +87 -0
- package/dist/commands/List.js.map +1 -1
- package/dist/commands/Tweet.js +14 -0
- package/dist/commands/Tweet.js.map +1 -1
- package/dist/commands/User.js +13 -0
- package/dist/commands/User.js.map +1 -1
- package/dist/enums/Resource.d.ts +7 -0
- package/dist/enums/Resource.js +7 -0
- package/dist/enums/Resource.js.map +1 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js.map +1 -1
- package/dist/models/args/PostArgs.d.ts +31 -1
- package/dist/models/args/PostArgs.js +43 -1
- package/dist/models/args/PostArgs.js.map +1 -1
- package/dist/requests/List.d.ts +22 -0
- package/dist/requests/List.js +106 -0
- package/dist/requests/List.js.map +1 -1
- package/dist/requests/Tweet.d.ts +4 -0
- package/dist/requests/Tweet.js +59 -0
- package/dist/requests/Tweet.js.map +1 -1
- package/dist/requests/User.d.ts +4 -0
- package/dist/requests/User.js +15 -0
- package/dist/requests/User.js.map +1 -1
- package/dist/services/public/FetcherService.js +9 -1
- package/dist/services/public/FetcherService.js.map +1 -1
- package/dist/services/public/ListService.d.ts +136 -0
- package/dist/services/public/ListService.js +175 -0
- package/dist/services/public/ListService.js.map +1 -1
- package/dist/services/public/TweetService.d.ts +26 -0
- package/dist/services/public/TweetService.js +33 -0
- package/dist/services/public/TweetService.js.map +1 -1
- package/dist/services/public/UserService.d.ts +28 -0
- package/dist/services/public/UserService.js +35 -0
- package/dist/services/public/UserService.js.map +1 -1
- package/dist/types/args/PostArgs.d.ts +50 -0
- package/dist/types/raw/list/Create.d.ts +14 -0
- package/dist/types/raw/list/Create.js +4 -0
- package/dist/types/raw/list/Create.js.map +1 -0
- package/dist/types/raw/list/Delete.d.ts +10 -0
- package/dist/types/raw/list/Delete.js +4 -0
- package/dist/types/raw/list/Delete.js.map +1 -0
- package/dist/types/raw/list/Mute.d.ts +10 -0
- package/dist/types/raw/list/Mute.js +3 -0
- package/dist/types/raw/list/Mute.js.map +1 -0
- package/dist/types/raw/list/Unmute.d.ts +10 -0
- package/dist/types/raw/list/Unmute.js +3 -0
- package/dist/types/raw/list/Unmute.js.map +1 -0
- package/dist/types/raw/list/Update.d.ts +11 -0
- package/dist/types/raw/list/Update.js +3 -0
- package/dist/types/raw/list/Update.js.map +1 -0
- package/dist/types/raw/tweet/History.d.ts +48 -0
- package/dist/types/raw/tweet/History.js +4 -0
- package/dist/types/raw/tweet/History.js.map +1 -0
- package/dist/types/raw/user/RemoveFollower.d.ts +13 -0
- package/dist/types/raw/user/RemoveFollower.js +4 -0
- package/dist/types/raw/user/RemoveFollower.js.map +1 -0
- package/package.json +1 -1
- package/src/collections/Extractors.ts +16 -0
- package/src/collections/Groups.ts +7 -0
- package/src/collections/Requests.ts +7 -0
- package/src/commands/List.ts +100 -0
- package/src/commands/Tweet.ts +14 -0
- package/src/commands/User.ts +13 -0
- package/src/enums/Resource.ts +7 -0
- package/src/index.ts +7 -1
- package/src/models/args/PostArgs.ts +53 -1
- package/src/requests/List.ts +117 -0
- package/src/requests/Tweet.ts +60 -0
- package/src/requests/User.ts +16 -0
- package/src/services/public/FetcherService.ts +11 -1
- package/src/services/public/ListService.ts +201 -0
- package/src/services/public/TweetService.ts +38 -0
- package/src/services/public/UserService.ts +40 -0
- package/src/types/args/PostArgs.ts +58 -0
- package/src/types/raw/list/Create.ts +16 -0
- package/src/types/raw/list/Delete.ts +12 -0
- package/src/types/raw/list/Mute.ts +10 -0
- package/src/types/raw/list/Unmute.ts +10 -0
- package/src/types/raw/list/Update.ts +12 -0
- package/src/types/raw/tweet/History.ts +57 -0
- package/src/types/raw/user/RemoveFollower.ts +15 -0
|
@@ -5,11 +5,17 @@ import { List } from '../../models/data/List';
|
|
|
5
5
|
import { Tweet } from '../../models/data/Tweet';
|
|
6
6
|
import { User } from '../../models/data/User';
|
|
7
7
|
import { RettiwtConfig } from '../../models/RettiwtConfig';
|
|
8
|
+
import { IListUpdates, INewList } from '../../types/args/PostArgs';
|
|
8
9
|
import { IListMemberAddResponse } from '../../types/raw/list/AddMember';
|
|
10
|
+
import { IListCreateResponse } from '../../types/raw/list/Create';
|
|
11
|
+
import { IListDeleteResponse } from '../../types/raw/list/Delete';
|
|
9
12
|
import { IListDetailsResponse } from '../../types/raw/list/Details';
|
|
10
13
|
import { IListMembersResponse } from '../../types/raw/list/Members';
|
|
14
|
+
import { IListMuteResponse } from '../../types/raw/list/Mute';
|
|
11
15
|
import { IListMemberRemoveResponse } from '../../types/raw/list/RemoveMember';
|
|
12
16
|
import { IListTweetsResponse } from '../../types/raw/list/Tweets';
|
|
17
|
+
import { IListUnmuteResponse } from '../../types/raw/list/Unmute';
|
|
18
|
+
import { IListUpdateResponse } from '../../types/raw/list/Update';
|
|
13
19
|
|
|
14
20
|
import { FetcherService } from './FetcherService';
|
|
15
21
|
|
|
@@ -64,6 +70,82 @@ export class ListService extends FetcherService {
|
|
|
64
70
|
return data;
|
|
65
71
|
}
|
|
66
72
|
|
|
73
|
+
/**
|
|
74
|
+
* Create a list.
|
|
75
|
+
*
|
|
76
|
+
* @param list - The details of the list to create.
|
|
77
|
+
*
|
|
78
|
+
* @returns The ID of the created list. If creation was unsuccessful, return `undefined`.
|
|
79
|
+
*
|
|
80
|
+
* @example
|
|
81
|
+
*
|
|
82
|
+
* ```ts
|
|
83
|
+
* import { Rettiwt } from 'rettiwt-api';
|
|
84
|
+
*
|
|
85
|
+
* // Creating a new Rettiwt instance using the given 'API_KEY'
|
|
86
|
+
* const rettiwt = new Rettiwt({ apiKey: API_KEY });
|
|
87
|
+
*
|
|
88
|
+
* // Creating a public list
|
|
89
|
+
* rettiwt.list.create({ name: 'My list', description: 'List description', isPrivate: false })
|
|
90
|
+
* .then(res => {
|
|
91
|
+
* console.log(res);
|
|
92
|
+
* })
|
|
93
|
+
* .catch(err => {
|
|
94
|
+
* console.log(err);
|
|
95
|
+
* });
|
|
96
|
+
* ```
|
|
97
|
+
*/
|
|
98
|
+
public async create(list: INewList): Promise<string | undefined> {
|
|
99
|
+
const resource: ResourceType = ResourceType.LIST_CREATE;
|
|
100
|
+
|
|
101
|
+
// Creating the list
|
|
102
|
+
const response = await this.request<IListCreateResponse>(resource, {
|
|
103
|
+
list: list,
|
|
104
|
+
});
|
|
105
|
+
|
|
106
|
+
// Deserializing response
|
|
107
|
+
const data = Extractors[resource](response.data);
|
|
108
|
+
|
|
109
|
+
return data;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* Delete a list.
|
|
114
|
+
*
|
|
115
|
+
* @param id - The ID of the list to delete.
|
|
116
|
+
*
|
|
117
|
+
* @returns Whether deletion was successful.
|
|
118
|
+
*
|
|
119
|
+
* @example
|
|
120
|
+
*
|
|
121
|
+
* ```ts
|
|
122
|
+
* import { Rettiwt } from 'rettiwt-api';
|
|
123
|
+
*
|
|
124
|
+
* // Creating a new Rettiwt instance using the given 'API_KEY'
|
|
125
|
+
* const rettiwt = new Rettiwt({ apiKey: API_KEY });
|
|
126
|
+
*
|
|
127
|
+
* // Deleting the list with ID '1234567890'
|
|
128
|
+
* rettiwt.list.delete('1234567890')
|
|
129
|
+
* .then(res => {
|
|
130
|
+
* console.log(res);
|
|
131
|
+
* })
|
|
132
|
+
* .catch(err => {
|
|
133
|
+
* console.log(err);
|
|
134
|
+
* });
|
|
135
|
+
* ```
|
|
136
|
+
*/
|
|
137
|
+
public async delete(id: string): Promise<boolean> {
|
|
138
|
+
const resource: ResourceType = ResourceType.LIST_DELETE;
|
|
139
|
+
|
|
140
|
+
// Deleting the list
|
|
141
|
+
const response = await this.request<IListDeleteResponse>(resource, { id: id });
|
|
142
|
+
|
|
143
|
+
// Deserializing response
|
|
144
|
+
const data = Extractors[resource](response.data);
|
|
145
|
+
|
|
146
|
+
return data;
|
|
147
|
+
}
|
|
148
|
+
|
|
67
149
|
/**
|
|
68
150
|
* Get the details of a list.
|
|
69
151
|
*
|
|
@@ -150,6 +232,43 @@ export class ListService extends FetcherService {
|
|
|
150
232
|
return data;
|
|
151
233
|
}
|
|
152
234
|
|
|
235
|
+
/**
|
|
236
|
+
* Mute a list.
|
|
237
|
+
*
|
|
238
|
+
* @param id - The ID of the list to mute.
|
|
239
|
+
*
|
|
240
|
+
* @returns Whether muting was successful.
|
|
241
|
+
*
|
|
242
|
+
* @example
|
|
243
|
+
*
|
|
244
|
+
* ```ts
|
|
245
|
+
* import { Rettiwt } from 'rettiwt-api';
|
|
246
|
+
*
|
|
247
|
+
* // Creating a new Rettiwt instance using the given 'API_KEY'
|
|
248
|
+
* const rettiwt = new Rettiwt({ apiKey: API_KEY });
|
|
249
|
+
*
|
|
250
|
+
* // Muting the list with ID '1234567890'
|
|
251
|
+
* rettiwt.list.mute('1234567890')
|
|
252
|
+
* .then(res => {
|
|
253
|
+
* console.log(res);
|
|
254
|
+
* })
|
|
255
|
+
* .catch(err => {
|
|
256
|
+
* console.log(err);
|
|
257
|
+
* });
|
|
258
|
+
* ```
|
|
259
|
+
*/
|
|
260
|
+
public async mute(id: string): Promise<boolean> {
|
|
261
|
+
const resource: ResourceType = ResourceType.LIST_MUTE;
|
|
262
|
+
|
|
263
|
+
// Muting the list
|
|
264
|
+
const response = await this.request<IListMuteResponse>(resource, { id: id });
|
|
265
|
+
|
|
266
|
+
// Deserializing response
|
|
267
|
+
const data = Extractors[resource](response.data);
|
|
268
|
+
|
|
269
|
+
return data;
|
|
270
|
+
}
|
|
271
|
+
|
|
153
272
|
/**
|
|
154
273
|
* Remove a member from a list.
|
|
155
274
|
*
|
|
@@ -238,4 +357,86 @@ export class ListService extends FetcherService {
|
|
|
238
357
|
|
|
239
358
|
return data;
|
|
240
359
|
}
|
|
360
|
+
|
|
361
|
+
/**
|
|
362
|
+
* Unmute a list.
|
|
363
|
+
*
|
|
364
|
+
* @param id - The ID of the list to unmute.
|
|
365
|
+
*
|
|
366
|
+
* @returns Whether unmuting was successful.
|
|
367
|
+
*
|
|
368
|
+
* @example
|
|
369
|
+
*
|
|
370
|
+
* ```ts
|
|
371
|
+
* import { Rettiwt } from 'rettiwt-api';
|
|
372
|
+
*
|
|
373
|
+
* // Creating a new Rettiwt instance using the given 'API_KEY'
|
|
374
|
+
* const rettiwt = new Rettiwt({ apiKey: API_KEY });
|
|
375
|
+
*
|
|
376
|
+
* // Unmuting the list with ID '1234567890'
|
|
377
|
+
* rettiwt.list.unmute('1234567890')
|
|
378
|
+
* .then(res => {
|
|
379
|
+
* console.log(res);
|
|
380
|
+
* })
|
|
381
|
+
* .catch(err => {
|
|
382
|
+
* console.log(err);
|
|
383
|
+
* });
|
|
384
|
+
* ```
|
|
385
|
+
*/
|
|
386
|
+
public async unmute(id: string): Promise<boolean> {
|
|
387
|
+
const resource: ResourceType = ResourceType.LIST_UNMUTE;
|
|
388
|
+
|
|
389
|
+
// Unmuting the list
|
|
390
|
+
const response = await this.request<IListUnmuteResponse>(resource, { id: id });
|
|
391
|
+
|
|
392
|
+
// Deserializing response
|
|
393
|
+
const data = Extractors[resource](response.data);
|
|
394
|
+
|
|
395
|
+
return data;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
/**
|
|
399
|
+
* Update a list.
|
|
400
|
+
*
|
|
401
|
+
* @param id - The ID of the list to update.
|
|
402
|
+
* @param updates - The updates to apply to the list.
|
|
403
|
+
*
|
|
404
|
+
* @returns The updated list. If update was unsuccessful, return `undefined`.
|
|
405
|
+
*
|
|
406
|
+
* @remarks
|
|
407
|
+
* Fields omitted from `updates` are left unchanged. Use an empty string for
|
|
408
|
+
* `description` to clear the existing description.
|
|
409
|
+
*
|
|
410
|
+
* @example
|
|
411
|
+
*
|
|
412
|
+
* ```ts
|
|
413
|
+
* import { Rettiwt } from 'rettiwt-api';
|
|
414
|
+
*
|
|
415
|
+
* // Creating a new Rettiwt instance using the given 'API_KEY'
|
|
416
|
+
* const rettiwt = new Rettiwt({ apiKey: API_KEY });
|
|
417
|
+
*
|
|
418
|
+
* // Updating the list with ID '1234567890'
|
|
419
|
+
* rettiwt.list.update('1234567890', { name: 'My list', description: 'List description', isPrivate: false })
|
|
420
|
+
* .then(res => {
|
|
421
|
+
* console.log(res);
|
|
422
|
+
* })
|
|
423
|
+
* .catch(err => {
|
|
424
|
+
* console.log(err);
|
|
425
|
+
* });
|
|
426
|
+
* ```
|
|
427
|
+
*/
|
|
428
|
+
public async update(id: string, updates: IListUpdates): Promise<List | undefined> {
|
|
429
|
+
const resource: ResourceType = ResourceType.LIST_UPDATE;
|
|
430
|
+
|
|
431
|
+
// Updating the list
|
|
432
|
+
const response = await this.request<IListUpdateResponse>(resource, {
|
|
433
|
+
id: id,
|
|
434
|
+
listUpdates: updates,
|
|
435
|
+
});
|
|
436
|
+
|
|
437
|
+
// Deserializing response
|
|
438
|
+
const data = Extractors[resource](response.data);
|
|
439
|
+
|
|
440
|
+
return data;
|
|
441
|
+
}
|
|
241
442
|
}
|
|
@@ -15,6 +15,7 @@ import { IMediaInitializeUploadResponse } from '../../types/raw/media/InitalizeU
|
|
|
15
15
|
import { ITweetBookmarkResponse } from '../../types/raw/tweet/Bookmark';
|
|
16
16
|
import { ITweetDetailsResponse } from '../../types/raw/tweet/Details';
|
|
17
17
|
import { ITweetDetailsBulkResponse } from '../../types/raw/tweet/DetailsBulk';
|
|
18
|
+
import { ITweetHistoryResponse } from '../../types/raw/tweet/History';
|
|
18
19
|
import { ITweetLikeResponse } from '../../types/raw/tweet/Like';
|
|
19
20
|
import { ITweetLikersResponse } from '../../types/raw/tweet/Likers';
|
|
20
21
|
import { ITweetPostNoteResponse, ITweetPostResponse } from '../../types/raw/tweet/Post';
|
|
@@ -176,6 +177,43 @@ export class TweetService extends FetcherService {
|
|
|
176
177
|
}
|
|
177
178
|
}
|
|
178
179
|
|
|
180
|
+
/**
|
|
181
|
+
* Get the edit history of a tweet.
|
|
182
|
+
*
|
|
183
|
+
* @param id - The ID of the target tweet.
|
|
184
|
+
*
|
|
185
|
+
* @returns The list of tweet versions, ordered by the returned timeline.
|
|
186
|
+
*
|
|
187
|
+
* @example
|
|
188
|
+
*
|
|
189
|
+
* ```ts
|
|
190
|
+
* import { Rettiwt } from 'rettiwt-api';
|
|
191
|
+
*
|
|
192
|
+
* // Creating a new Rettiwt instance using the given 'API_KEY'
|
|
193
|
+
* const rettiwt = new Rettiwt({ apiKey: API_KEY });
|
|
194
|
+
*
|
|
195
|
+
* // Fetching the edit history of the tweet with id '1234567890'
|
|
196
|
+
* rettiwt.tweet.history('1234567890')
|
|
197
|
+
* .then(res => {
|
|
198
|
+
* console.log(res);
|
|
199
|
+
* })
|
|
200
|
+
* .catch(err => {
|
|
201
|
+
* console.log(err);
|
|
202
|
+
* });
|
|
203
|
+
* ```
|
|
204
|
+
*/
|
|
205
|
+
public async history(id: string): Promise<Tweet[]> {
|
|
206
|
+
const resource = ResourceType.TWEET_HISTORY;
|
|
207
|
+
|
|
208
|
+
// Fetching raw tweet history
|
|
209
|
+
const response = await this.request<ITweetHistoryResponse>(resource, { id: id });
|
|
210
|
+
|
|
211
|
+
// Deserializing response
|
|
212
|
+
const data = Extractors[resource](response.data);
|
|
213
|
+
|
|
214
|
+
return data;
|
|
215
|
+
}
|
|
216
|
+
|
|
179
217
|
/**
|
|
180
218
|
* Like a tweet.
|
|
181
219
|
*
|
|
@@ -32,6 +32,7 @@ import { IUserMediaResponse } from '../../types/raw/user/Media';
|
|
|
32
32
|
import { IUserNotificationsResponse } from '../../types/raw/user/Notifications';
|
|
33
33
|
import { IUserProfileUpdateResponse } from '../../types/raw/user/ProfileUpdate';
|
|
34
34
|
import { IUserRecommendedResponse } from '../../types/raw/user/Recommended';
|
|
35
|
+
import { IUserRemoveFollowerResponse } from '../../types/raw/user/RemoveFollower';
|
|
35
36
|
import { IUserSearchResponse } from '../../types/raw/user/Search';
|
|
36
37
|
import { IUserSettingsResponse } from '../../types/raw/user/Settings';
|
|
37
38
|
import { IUserSubscriptionsResponse } from '../../types/raw/user/Subscriptions';
|
|
@@ -1041,6 +1042,45 @@ export class UserService extends FetcherService {
|
|
|
1041
1042
|
return data;
|
|
1042
1043
|
}
|
|
1043
1044
|
|
|
1045
|
+
/**
|
|
1046
|
+
* Remove a user from the authenticated user's followers (force-unfollow).
|
|
1047
|
+
*
|
|
1048
|
+
* @param id - The ID of the user to remove as a follower.
|
|
1049
|
+
*
|
|
1050
|
+
* @returns Whether the user was removed successfully.
|
|
1051
|
+
*
|
|
1052
|
+
* @throws Code 108 if given user id is invalid.
|
|
1053
|
+
*
|
|
1054
|
+
* @example
|
|
1055
|
+
*
|
|
1056
|
+
* ```ts
|
|
1057
|
+
* import { Rettiwt } from 'rettiwt-api';
|
|
1058
|
+
*
|
|
1059
|
+
* // Creating a new Rettiwt instance using the given 'API_KEY'
|
|
1060
|
+
* const rettiwt = new Rettiwt({ apiKey: API_KEY });
|
|
1061
|
+
*
|
|
1062
|
+
* // Removing the User with id '1234567890' from the authenticated user's followers
|
|
1063
|
+
* rettiwt.user.removeFollower('1234567890')
|
|
1064
|
+
* .then(res => {
|
|
1065
|
+
* console.log(res);
|
|
1066
|
+
* })
|
|
1067
|
+
* .catch(err => {
|
|
1068
|
+
* console.log(err);
|
|
1069
|
+
* });
|
|
1070
|
+
* ```
|
|
1071
|
+
*/
|
|
1072
|
+
public async removeFollower(id: string): Promise<boolean> {
|
|
1073
|
+
const resource = ResourceType.USER_REMOVE_FOLLOWER;
|
|
1074
|
+
|
|
1075
|
+
// Removing the follower
|
|
1076
|
+
const response = await this.request<IUserRemoveFollowerResponse>(resource, { id: id });
|
|
1077
|
+
|
|
1078
|
+
// Deserializing the response
|
|
1079
|
+
const data = Extractors[resource](response.data) ?? false;
|
|
1080
|
+
|
|
1081
|
+
return data;
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1044
1084
|
/**
|
|
1045
1085
|
* Get the reply timeline of a user.
|
|
1046
1086
|
*
|
|
@@ -18,6 +18,10 @@ export interface IPostArgs {
|
|
|
18
18
|
* - {@link ResourceType.TWEET_UNLIKE}
|
|
19
19
|
* - {@link ResourceType.TWEET_UNPOST}
|
|
20
20
|
* - {@link ResourceType.TWEET_UNRETWEET}
|
|
21
|
+
* - {@link ResourceType.LIST_DELETE}
|
|
22
|
+
* - {@link ResourceType.LIST_MUTE}
|
|
23
|
+
* - {@link ResourceType.LIST_UNMUTE}
|
|
24
|
+
* - {@link ResourceType.LIST_UPDATE}
|
|
21
25
|
* - {@link ResourceType.USER_FOLLOW}
|
|
22
26
|
* - {@link ResourceType.USER_UNFOLLOW}
|
|
23
27
|
*
|
|
@@ -26,6 +30,23 @@ export interface IPostArgs {
|
|
|
26
30
|
*/
|
|
27
31
|
id?: string;
|
|
28
32
|
|
|
33
|
+
/**
|
|
34
|
+
* The list that is to be created.
|
|
35
|
+
*
|
|
36
|
+
* @remarks
|
|
37
|
+
* Required only when creating a list using the following resources:
|
|
38
|
+
* - {@link ResourceType.LIST_CREATE}
|
|
39
|
+
*/
|
|
40
|
+
list?: INewList;
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* The updates to apply to an existing list.
|
|
44
|
+
*
|
|
45
|
+
* @remarks
|
|
46
|
+
* Required only when updating a list using {@link ResourceType.LIST_UPDATE}.
|
|
47
|
+
*/
|
|
48
|
+
listUpdates?: IListUpdates;
|
|
49
|
+
|
|
29
50
|
/**
|
|
30
51
|
* The new username to set.
|
|
31
52
|
*
|
|
@@ -104,6 +125,43 @@ export interface IPostArgs {
|
|
|
104
125
|
changePassword?: IChangePasswordArgs;
|
|
105
126
|
}
|
|
106
127
|
|
|
128
|
+
/**
|
|
129
|
+
* Configuration for the list to be created.
|
|
130
|
+
*
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
133
|
+
export interface INewList {
|
|
134
|
+
/** The list name. */
|
|
135
|
+
name: string;
|
|
136
|
+
|
|
137
|
+
/** The list description. */
|
|
138
|
+
description?: string;
|
|
139
|
+
|
|
140
|
+
/** Whether the list is private. */
|
|
141
|
+
isPrivate?: boolean;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
/**
|
|
145
|
+
* Configuration for the updates to apply to an existing list.
|
|
146
|
+
*
|
|
147
|
+
* @public
|
|
148
|
+
*/
|
|
149
|
+
export interface IListUpdates {
|
|
150
|
+
/** The updated list name. */
|
|
151
|
+
name?: string;
|
|
152
|
+
|
|
153
|
+
/**
|
|
154
|
+
* The updated list description.
|
|
155
|
+
*
|
|
156
|
+
* @remarks
|
|
157
|
+
* Use an empty string to clear the existing description.
|
|
158
|
+
*/
|
|
159
|
+
description?: string;
|
|
160
|
+
|
|
161
|
+
/** Whether the list is private. */
|
|
162
|
+
isPrivate?: boolean;
|
|
163
|
+
}
|
|
164
|
+
|
|
107
165
|
/**
|
|
108
166
|
* Configuration for the new tweet to be posted.
|
|
109
167
|
*
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* The raw data received when creating a tweet list.
|
|
5
|
+
*
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface IListCreateResponse {
|
|
9
|
+
data?: {
|
|
10
|
+
list?: IListCreateList;
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
interface IListCreateList {
|
|
15
|
+
id_str?: string;
|
|
16
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
|
|
3
|
+
import { ITimelineTweet } from '../composite/TimelineTweet';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Represents the raw response received when fetching a tweet's edit history.
|
|
7
|
+
*
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
export interface ITweetHistoryResponse {
|
|
11
|
+
data?: {
|
|
12
|
+
tweet_result_by_rest_id?: {
|
|
13
|
+
result?: {
|
|
14
|
+
edit_history_timeline?: {
|
|
15
|
+
timeline?: ITweetHistoryTimeline;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export interface ITweetHistoryTimeline {
|
|
23
|
+
instructions?: ITweetHistoryInstruction[];
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export interface ITweetHistoryInstruction {
|
|
27
|
+
direction?: string;
|
|
28
|
+
entries?: ITweetHistoryEntry[];
|
|
29
|
+
type: string;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export interface ITweetHistoryEntry {
|
|
33
|
+
content?: ITweetHistoryModule;
|
|
34
|
+
entryId: string;
|
|
35
|
+
sortIndex?: string;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export interface ITweetHistoryModule {
|
|
39
|
+
__typename: string;
|
|
40
|
+
displayType: string;
|
|
41
|
+
entryType: string;
|
|
42
|
+
header?: ITweetHistoryHeader;
|
|
43
|
+
items?: ITweetHistoryItem[];
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export interface ITweetHistoryHeader {
|
|
47
|
+
displayType: string;
|
|
48
|
+
sticky: boolean;
|
|
49
|
+
text: string;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export interface ITweetHistoryItem {
|
|
53
|
+
entryId: string;
|
|
54
|
+
item: {
|
|
55
|
+
itemContent: ITimelineTweet;
|
|
56
|
+
};
|
|
57
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* The raw data received when removing a given user from the authenticated user's followers.
|
|
5
|
+
*
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface IUserRemoveFollowerResponse {
|
|
9
|
+
data?: {
|
|
10
|
+
remove_follower?: {
|
|
11
|
+
__typename?: string;
|
|
12
|
+
unfollow_success_reason?: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
}
|