From 34e1bf92e8a899f03cec3fc5bba0439bff3d9b8b Mon Sep 17 00:00:00 2001 From: ozonezone <132560491+ozonezone@users.noreply.github.com> Date: Sat, 11 Nov 2023 11:18:40 +0900 Subject: [PATCH] Add MUSIC_VIDEO_TYPE_PRIVATELY_OWNED_TRACK to video type --- parsers/playlists.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/parsers/playlists.ts b/parsers/playlists.ts index 8ce73f6..87d5f22 100644 --- a/parsers/playlists.ts +++ b/parsers/playlists.ts @@ -31,7 +31,8 @@ import { export type VideoType = | "MUSIC_VIDEO_TYPE_OMV" /** Official Music Videos */ | "MUSIC_VIDEO_TYPE_UGC" /** User Generated Content */ - | "MUSIC_VIDEO_TYPE_ATV" /** Artist Videos */; + | "MUSIC_VIDEO_TYPE_ATV" /** Artist Videos */ + | "MUSIC_VIDEO_TYPE_PRIVATELY_OWNED_TRACK" /** Song uploaded by user */; export interface PlaylistItem { videoId: string;