From d10fe6834a0d063d94b65289d54a52ed3398eff4 Mon Sep 17 00:00:00 2001 From: Luan Date: Wed, 4 Dec 2024 14:32:15 -0300 Subject: [PATCH] feat(VideoViewCount): Add `extra_short_view_count` field --- src/parser/classes/VideoViewCount.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/parser/classes/VideoViewCount.ts b/src/parser/classes/VideoViewCount.ts index 2daef975c..0feda2984 100644 --- a/src/parser/classes/VideoViewCount.ts +++ b/src/parser/classes/VideoViewCount.ts @@ -7,12 +7,14 @@ export default class VideoViewCount extends YTNode { public original_view_count: string; public short_view_count: Text; + public extra_short_view_count: Text; public view_count: Text; constructor(data: RawNode) { super(); this.original_view_count = data.originalViewCount; this.short_view_count = new Text(data.shortViewCount); + this.extra_short_view_count = new Text(data.extraShortViewCount); this.view_count = new Text(data.viewCount); } } \ No newline at end of file