@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.
@@ -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?: {
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "scraper",
8
8
  "crawler"
9
9
  ],
10
- "version": "0.16.2",
10
+ "version": "0.16.4",
11
11
  "main": "dist/default/cjs/index.js",
12
12
  "types": "./dist/types/index.d.ts",
13
13
  "exports": {