Added better archive functionalty (backend side atm)
Code refactoring
This commit is contained in:
@@ -122,4 +122,20 @@ export type LiveStreamProgress = Record<string, {
|
||||
export type RPCVersion = {
|
||||
rpcVersion: string
|
||||
ytdlpVersion: string
|
||||
}
|
||||
|
||||
export type ArchiveEntry = {
|
||||
id: string
|
||||
title: string
|
||||
path: string
|
||||
thumbnail: string
|
||||
source: string
|
||||
metadata: string
|
||||
created_at: string
|
||||
}
|
||||
|
||||
export type PaginatedResponse<T> = {
|
||||
first: number
|
||||
next: number
|
||||
data: T
|
||||
}
|
||||
Reference in New Issue
Block a user