@the-convocation/twitter-scraper 0.16.2 → 0.16.4
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/dist/default/cjs/index.js +14 -9
- package/dist/default/cjs/index.js.map +1 -1
- package/dist/default/esm/index.mjs +14 -9
- package/dist/default/esm/index.mjs.map +1 -1
- package/dist/node/cjs/index.cjs +14 -9
- package/dist/node/cjs/index.cjs.map +1 -1
- package/dist/node/esm/index.mjs +14 -9
- package/dist/node/esm/index.mjs.map +1 -1
- package/dist/types/index.d.ts +9 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -432,9 +432,18 @@ interface TimelineMediaExtendedRaw {
|
|
|
432
432
|
video_info?: VideoInfo;
|
|
433
433
|
ext_alt_text: string | undefined;
|
|
434
434
|
}
|
|
435
|
+
interface EditControlInitialRaw {
|
|
436
|
+
edit_tweet_ids?: string[];
|
|
437
|
+
editable_until_msecs?: `${number}`;
|
|
438
|
+
edits_remaining?: `${number}`;
|
|
439
|
+
is_edit_eligible?: boolean;
|
|
440
|
+
}
|
|
435
441
|
interface TimelineResultRaw {
|
|
436
442
|
rest_id?: string;
|
|
437
443
|
__typename?: string;
|
|
444
|
+
edit_control?: {
|
|
445
|
+
edit_control_initial?: EditControlInitialRaw;
|
|
446
|
+
};
|
|
438
447
|
core?: {
|
|
439
448
|
user_results?: {
|
|
440
449
|
result?: {
|