chore: v4.0.0 release

This commit is contained in:
LuanRT
2023-03-16 00:09:40 +00:00
parent 0a595e31f8
commit e4538e40e2
145 changed files with 2551 additions and 2266 deletions

View File

@@ -1,34 +1,36 @@
import Parser from '../index.ts';
import { YTNode } from '../helpers.ts';
import Parser, { RawNode } from '../index.ts';
import Thumbnail from './misc/Thumbnail.ts';
import NavigationEndpoint from './NavigationEndpoint.ts';
import { YTNode, SuperParsedResult } from '../helpers.ts';
class PlayerAnnotationsExpanded extends YTNode {
static type = 'PlayerAnnotationsExpanded';
featured_channel: {
featured_channel?: {
start_time_ms: number;
end_time_ms: number;
watermark: Thumbnail[];
channel_name: string;
endpoint: NavigationEndpoint;
subscribe_button: SuperParsedResult<YTNode>;
subscribe_button: YTNode | null;
};
allow_swipe_dismiss: boolean;
annotation_id: string;
constructor(data: any) {
constructor(data: RawNode) {
super();
this.featured_channel = {
start_time_ms: data.featuredChannel.startTimeMs,
end_time_ms: data.featuredChannel.endTimeMs,
watermark: Thumbnail.fromResponse(data.featuredChannel.watermark),
channel_name: data.featuredChannel.channelName,
endpoint: new NavigationEndpoint(data.featuredChannel.navigationEndpoint),
subscribe_button: Parser.parse(data.featuredChannel.subscribeButton)
};
if (Reflect.has(data, 'featuredChannel')) {
this.featured_channel = {
start_time_ms: data.featuredChannel.startTimeMs,
end_time_ms: data.featuredChannel.endTimeMs,
watermark: Thumbnail.fromResponse(data.featuredChannel.watermark),
channel_name: data.featuredChannel.channelName,
endpoint: new NavigationEndpoint(data.featuredChannel.navigationEndpoint),
subscribe_button: Parser.parseItem(data.featuredChannel.subscribeButton)
};
}
this.allow_swipe_dismiss = data.allowSwipeDismiss;
this.annotation_id = data.annotationId;