diff --git a/src/api-types/models/AddFileToPlaylistRequest.ts b/src/api-types/models/AddFileToPlaylistRequest.ts index bc5b21a..a08c586 100644 --- a/src/api-types/models/AddFileToPlaylistRequest.ts +++ b/src/api-types/models/AddFileToPlaylistRequest.ts @@ -5,4 +5,4 @@ export type AddFileToPlaylistRequest = { file_uid: string; playlist_id: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/Archive.ts b/src/api-types/models/Archive.ts index 63ce05b..0c0e216 100644 --- a/src/api-types/models/Archive.ts +++ b/src/api-types/models/Archive.ts @@ -13,4 +13,4 @@ export type Archive = { sub_id?: string; timestamp: number; uid: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/BaseChangePermissionsRequest.ts b/src/api-types/models/BaseChangePermissionsRequest.ts index 912d429..fd418de 100644 --- a/src/api-types/models/BaseChangePermissionsRequest.ts +++ b/src/api-types/models/BaseChangePermissionsRequest.ts @@ -8,4 +8,4 @@ import type { YesNo } from './YesNo'; export type BaseChangePermissionsRequest = { permission: UserPermission; new_value: YesNo; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/Category.ts b/src/api-types/models/Category.ts index b03d891..cfabd8b 100644 --- a/src/api-types/models/Category.ts +++ b/src/api-types/models/Category.ts @@ -12,4 +12,4 @@ export type Category = { * Overrides file output for downloaded files in category */ custom_output?: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/CategoryRule.ts b/src/api-types/models/CategoryRule.ts index ad13eb6..e99cda1 100644 --- a/src/api-types/models/CategoryRule.ts +++ b/src/api-types/models/CategoryRule.ts @@ -22,4 +22,4 @@ export namespace CategoryRule { } -} +} \ No newline at end of file diff --git a/src/api-types/models/ChangeRolePermissionsRequest.ts b/src/api-types/models/ChangeRolePermissionsRequest.ts index e7e5051..9d786e7 100644 --- a/src/api-types/models/ChangeRolePermissionsRequest.ts +++ b/src/api-types/models/ChangeRolePermissionsRequest.ts @@ -6,4 +6,4 @@ import type { BaseChangePermissionsRequest } from './BaseChangePermissionsReques export type ChangeRolePermissionsRequest = (BaseChangePermissionsRequest & { role: string; -}); +}); \ No newline at end of file diff --git a/src/api-types/models/ChangeUserPermissionsRequest.ts b/src/api-types/models/ChangeUserPermissionsRequest.ts index 780ceaa..ffa4817 100644 --- a/src/api-types/models/ChangeUserPermissionsRequest.ts +++ b/src/api-types/models/ChangeUserPermissionsRequest.ts @@ -6,4 +6,4 @@ import type { BaseChangePermissionsRequest } from './BaseChangePermissionsReques export type ChangeUserPermissionsRequest = (BaseChangePermissionsRequest & { user_uid: string; -}); +}); \ No newline at end of file diff --git a/src/api-types/models/CheckConcurrentStreamRequest.ts b/src/api-types/models/CheckConcurrentStreamRequest.ts index d117e3a..7c30670 100644 --- a/src/api-types/models/CheckConcurrentStreamRequest.ts +++ b/src/api-types/models/CheckConcurrentStreamRequest.ts @@ -7,4 +7,4 @@ export type CheckConcurrentStreamRequest = { * UID of the concurrent stream */ uid: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/CheckConcurrentStreamResponse.ts b/src/api-types/models/CheckConcurrentStreamResponse.ts index 54f03a2..2d1df1c 100644 --- a/src/api-types/models/CheckConcurrentStreamResponse.ts +++ b/src/api-types/models/CheckConcurrentStreamResponse.ts @@ -6,4 +6,4 @@ import type { ConcurrentStream } from './ConcurrentStream'; export type CheckConcurrentStreamResponse = { stream: ConcurrentStream; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/ClearDownloadsRequest.ts b/src/api-types/models/ClearDownloadsRequest.ts index 5603dc5..efee2c9 100644 --- a/src/api-types/models/ClearDownloadsRequest.ts +++ b/src/api-types/models/ClearDownloadsRequest.ts @@ -6,4 +6,4 @@ export type ClearDownloadsRequest = { clear_finished?: boolean; clear_paused?: boolean; clear_errors?: boolean; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/ConcurrentStream.ts b/src/api-types/models/ConcurrentStream.ts index ef475d6..486cc57 100644 --- a/src/api-types/models/ConcurrentStream.ts +++ b/src/api-types/models/ConcurrentStream.ts @@ -6,4 +6,4 @@ export type ConcurrentStream = { playback_timestamp?: number; unix_timestamp?: number; playing?: boolean; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/Config.ts b/src/api-types/models/Config.ts index 9bf8057..cb05dea 100644 --- a/src/api-types/models/Config.ts +++ b/src/api-types/models/Config.ts @@ -4,4 +4,4 @@ export type Config = { YoutubeDLMaterial: any; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/ConfigResponse.ts b/src/api-types/models/ConfigResponse.ts index 4d9eb77..0912cac 100644 --- a/src/api-types/models/ConfigResponse.ts +++ b/src/api-types/models/ConfigResponse.ts @@ -7,4 +7,4 @@ import type { Config } from './Config'; export type ConfigResponse = { config_file: Config; success: boolean; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/CreateCategoryRequest.ts b/src/api-types/models/CreateCategoryRequest.ts index 552c745..7c091b6 100644 --- a/src/api-types/models/CreateCategoryRequest.ts +++ b/src/api-types/models/CreateCategoryRequest.ts @@ -4,4 +4,4 @@ export type CreateCategoryRequest = { name: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/CreateCategoryResponse.ts b/src/api-types/models/CreateCategoryResponse.ts index 0d38792..2be83f6 100644 --- a/src/api-types/models/CreateCategoryResponse.ts +++ b/src/api-types/models/CreateCategoryResponse.ts @@ -7,4 +7,4 @@ import type { Category } from './Category'; export type CreateCategoryResponse = { new_category?: Category; success?: boolean; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/CreatePlaylistRequest.ts b/src/api-types/models/CreatePlaylistRequest.ts index e276658..e61a2a0 100644 --- a/src/api-types/models/CreatePlaylistRequest.ts +++ b/src/api-types/models/CreatePlaylistRequest.ts @@ -6,4 +6,4 @@ export type CreatePlaylistRequest = { playlistName: string; uids: Array; thumbnailURL: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/CreatePlaylistResponse.ts b/src/api-types/models/CreatePlaylistResponse.ts index 51fba29..48b5d06 100644 --- a/src/api-types/models/CreatePlaylistResponse.ts +++ b/src/api-types/models/CreatePlaylistResponse.ts @@ -7,4 +7,4 @@ import type { Playlist } from './Playlist'; export type CreatePlaylistResponse = { new_playlist: Playlist; success: boolean; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/CropFileSettings.ts b/src/api-types/models/CropFileSettings.ts index 0e203f2..e4ab45a 100644 --- a/src/api-types/models/CropFileSettings.ts +++ b/src/api-types/models/CropFileSettings.ts @@ -5,4 +5,4 @@ export type CropFileSettings = { cropFileStart: number; cropFileEnd: number; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/DBBackup.ts b/src/api-types/models/DBBackup.ts index 5e90358..b137cad 100644 --- a/src/api-types/models/DBBackup.ts +++ b/src/api-types/models/DBBackup.ts @@ -17,4 +17,4 @@ export namespace DBBackup { } -} +} \ No newline at end of file diff --git a/src/api-types/models/DBInfoResponse.ts b/src/api-types/models/DBInfoResponse.ts index e57d595..b4e4fe1 100644 --- a/src/api-types/models/DBInfoResponse.ts +++ b/src/api-types/models/DBInfoResponse.ts @@ -16,4 +16,4 @@ roles?: TableInfo; download_queue?: TableInfo; archives?: TableInfo; }; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/DatabaseFile.ts b/src/api-types/models/DatabaseFile.ts index 8fdec34..855aa61 100644 --- a/src/api-types/models/DatabaseFile.ts +++ b/src/api-types/models/DatabaseFile.ts @@ -42,4 +42,4 @@ export type DatabaseFile = { */ abr?: number; favorite: boolean; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/DeleteAllFilesResponse.ts b/src/api-types/models/DeleteAllFilesResponse.ts index 0720b46..94efef7 100644 --- a/src/api-types/models/DeleteAllFilesResponse.ts +++ b/src/api-types/models/DeleteAllFilesResponse.ts @@ -11,4 +11,4 @@ export type DeleteAllFilesResponse = { * Number of files removed */ delete_count?: number; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/DeleteCategoryRequest.ts b/src/api-types/models/DeleteCategoryRequest.ts index c9e381e..50e736b 100644 --- a/src/api-types/models/DeleteCategoryRequest.ts +++ b/src/api-types/models/DeleteCategoryRequest.ts @@ -4,4 +4,4 @@ export type DeleteCategoryRequest = { category_uid: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/DeleteMp3Mp4Request.ts b/src/api-types/models/DeleteMp3Mp4Request.ts index e3c2b0a..ec74390 100644 --- a/src/api-types/models/DeleteMp3Mp4Request.ts +++ b/src/api-types/models/DeleteMp3Mp4Request.ts @@ -5,4 +5,4 @@ export type DeleteMp3Mp4Request = { uid: string; blacklistMode?: boolean; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/DeleteNotificationRequest.ts b/src/api-types/models/DeleteNotificationRequest.ts index f69e476..c554c6d 100644 --- a/src/api-types/models/DeleteNotificationRequest.ts +++ b/src/api-types/models/DeleteNotificationRequest.ts @@ -4,4 +4,4 @@ export type DeleteNotificationRequest = { uid: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/DeletePlaylistRequest.ts b/src/api-types/models/DeletePlaylistRequest.ts index e351f7c..82e25b2 100644 --- a/src/api-types/models/DeletePlaylistRequest.ts +++ b/src/api-types/models/DeletePlaylistRequest.ts @@ -4,4 +4,4 @@ export type DeletePlaylistRequest = { playlist_id: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/DeleteSubscriptionFileRequest.ts b/src/api-types/models/DeleteSubscriptionFileRequest.ts index 61051f9..46afd3f 100644 --- a/src/api-types/models/DeleteSubscriptionFileRequest.ts +++ b/src/api-types/models/DeleteSubscriptionFileRequest.ts @@ -8,4 +8,4 @@ export type DeleteSubscriptionFileRequest = { * If true, does not remove id from archive. Only valid if youtube-dl archive is enabled in settings. */ deleteForever?: boolean; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/DeleteUserRequest.ts b/src/api-types/models/DeleteUserRequest.ts index 8d26983..50b2ce6 100644 --- a/src/api-types/models/DeleteUserRequest.ts +++ b/src/api-types/models/DeleteUserRequest.ts @@ -4,4 +4,4 @@ export type DeleteUserRequest = { uid: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/Download.ts b/src/api-types/models/Download.ts index 84d95e5..cae580f 100644 --- a/src/api-types/models/Download.ts +++ b/src/api-types/models/Download.ts @@ -27,4 +27,4 @@ export type Download = { sub_id?: string; sub_name?: string; prefetched_info?: any; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/DownloadArchiveRequest.ts b/src/api-types/models/DownloadArchiveRequest.ts index 10d9284..6123a30 100644 --- a/src/api-types/models/DownloadArchiveRequest.ts +++ b/src/api-types/models/DownloadArchiveRequest.ts @@ -7,4 +7,4 @@ import type { FileType } from './FileType'; export type DownloadArchiveRequest = { type?: FileType; sub_id?: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/DownloadFileRequest.ts b/src/api-types/models/DownloadFileRequest.ts index daf6392..b14f3ea 100644 --- a/src/api-types/models/DownloadFileRequest.ts +++ b/src/api-types/models/DownloadFileRequest.ts @@ -11,4 +11,4 @@ export type DownloadFileRequest = { playlist_id?: string; url?: string; type?: FileType; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/DownloadRequest.ts b/src/api-types/models/DownloadRequest.ts index 1f067fe..2d76d96 100644 --- a/src/api-types/models/DownloadRequest.ts +++ b/src/api-types/models/DownloadRequest.ts @@ -49,4 +49,4 @@ export type DownloadRequest = { * If using youtube-dl archive, download will ignore it */ ignoreArchive?: boolean; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/DownloadResponse.ts b/src/api-types/models/DownloadResponse.ts index 217be23..9428f00 100644 --- a/src/api-types/models/DownloadResponse.ts +++ b/src/api-types/models/DownloadResponse.ts @@ -6,4 +6,4 @@ import type { Download } from './Download'; export type DownloadResponse = { download?: Download; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/DownloadTwitchChatByVODIDRequest.ts b/src/api-types/models/DownloadTwitchChatByVODIDRequest.ts index 648587b..c807f13 100644 --- a/src/api-types/models/DownloadTwitchChatByVODIDRequest.ts +++ b/src/api-types/models/DownloadTwitchChatByVODIDRequest.ts @@ -20,4 +20,4 @@ export type DownloadTwitchChatByVODIDRequest = { */ uuid?: string; sub?: Subscription; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/DownloadTwitchChatByVODIDResponse.ts b/src/api-types/models/DownloadTwitchChatByVODIDResponse.ts index f399d2c..673fd08 100644 --- a/src/api-types/models/DownloadTwitchChatByVODIDResponse.ts +++ b/src/api-types/models/DownloadTwitchChatByVODIDResponse.ts @@ -6,4 +6,4 @@ import type { TwitchChatMessage } from './TwitchChatMessage'; export type DownloadTwitchChatByVODIDResponse = { chat: Array; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/DownloadVideosForSubscriptionRequest.ts b/src/api-types/models/DownloadVideosForSubscriptionRequest.ts index 6482252..e68b4e4 100644 --- a/src/api-types/models/DownloadVideosForSubscriptionRequest.ts +++ b/src/api-types/models/DownloadVideosForSubscriptionRequest.ts @@ -4,4 +4,4 @@ export type DownloadVideosForSubscriptionRequest = { subID: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/FileType.ts b/src/api-types/models/FileType.ts index 0b79b13..c220762 100644 --- a/src/api-types/models/FileType.ts +++ b/src/api-types/models/FileType.ts @@ -5,4 +5,4 @@ export enum FileType { AUDIO = 'audio', VIDEO = 'video', -} +} \ No newline at end of file diff --git a/src/api-types/models/FileTypeFilter.ts b/src/api-types/models/FileTypeFilter.ts index eea3f12..d1fac98 100644 --- a/src/api-types/models/FileTypeFilter.ts +++ b/src/api-types/models/FileTypeFilter.ts @@ -6,4 +6,4 @@ export enum FileTypeFilter { AUDIO_ONLY = 'audio_only', VIDEO_ONLY = 'video_only', BOTH = 'both', -} +} \ No newline at end of file diff --git a/src/api-types/models/GenerateArgsResponse.ts b/src/api-types/models/GenerateArgsResponse.ts index 30b0b62..0201d16 100644 --- a/src/api-types/models/GenerateArgsResponse.ts +++ b/src/api-types/models/GenerateArgsResponse.ts @@ -4,4 +4,4 @@ export type GenerateArgsResponse = { args?: Array; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GenerateNewApiKeyResponse.ts b/src/api-types/models/GenerateNewApiKeyResponse.ts index 334dab1..3eb90e0 100644 --- a/src/api-types/models/GenerateNewApiKeyResponse.ts +++ b/src/api-types/models/GenerateNewApiKeyResponse.ts @@ -4,4 +4,4 @@ export type GenerateNewApiKeyResponse = { new_api_key: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetAllCategoriesResponse.ts b/src/api-types/models/GetAllCategoriesResponse.ts index a45c713..6623016 100644 --- a/src/api-types/models/GetAllCategoriesResponse.ts +++ b/src/api-types/models/GetAllCategoriesResponse.ts @@ -6,4 +6,4 @@ import type { Category } from './Category'; export type GetAllCategoriesResponse = { categories: Array; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetAllDownloadsRequest.ts b/src/api-types/models/GetAllDownloadsRequest.ts index fe608d4..fa0ea24 100644 --- a/src/api-types/models/GetAllDownloadsRequest.ts +++ b/src/api-types/models/GetAllDownloadsRequest.ts @@ -7,4 +7,4 @@ export type GetAllDownloadsRequest = { * Filters downloads with the array */ uids?: Array | null; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetAllDownloadsResponse.ts b/src/api-types/models/GetAllDownloadsResponse.ts index db2257c..16f6f8c 100644 --- a/src/api-types/models/GetAllDownloadsResponse.ts +++ b/src/api-types/models/GetAllDownloadsResponse.ts @@ -6,4 +6,4 @@ import type { Download } from './Download'; export type GetAllDownloadsResponse = { downloads?: Array; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetAllFilesRequest.ts b/src/api-types/models/GetAllFilesRequest.ts index d86ecde..cd07f36 100644 --- a/src/api-types/models/GetAllFilesRequest.ts +++ b/src/api-types/models/GetAllFilesRequest.ts @@ -21,4 +21,4 @@ export type GetAllFilesRequest = { * Include if you want to filter by subscription */ sub_id?: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetAllFilesResponse.ts b/src/api-types/models/GetAllFilesResponse.ts index 12f5d5c..22aa333 100644 --- a/src/api-types/models/GetAllFilesResponse.ts +++ b/src/api-types/models/GetAllFilesResponse.ts @@ -11,4 +11,4 @@ export type GetAllFilesResponse = { * All video playlists */ playlists: Array; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetAllSubscriptionsResponse.ts b/src/api-types/models/GetAllSubscriptionsResponse.ts index a7cb064..4c2d1a8 100644 --- a/src/api-types/models/GetAllSubscriptionsResponse.ts +++ b/src/api-types/models/GetAllSubscriptionsResponse.ts @@ -6,4 +6,4 @@ import type { Subscription } from './Subscription'; export type GetAllSubscriptionsResponse = { subscriptions: Array; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetAllTasksResponse.ts b/src/api-types/models/GetAllTasksResponse.ts index 28b8b04..9bbd394 100644 --- a/src/api-types/models/GetAllTasksResponse.ts +++ b/src/api-types/models/GetAllTasksResponse.ts @@ -6,4 +6,4 @@ import type { Task } from './Task'; export type GetAllTasksResponse = { tasks?: Array; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetArchivesRequest.ts b/src/api-types/models/GetArchivesRequest.ts index 0ce245a..5a0d132 100644 --- a/src/api-types/models/GetArchivesRequest.ts +++ b/src/api-types/models/GetArchivesRequest.ts @@ -7,4 +7,4 @@ import type { FileType } from './FileType'; export type GetArchivesRequest = { type?: FileType; sub_id?: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetArchivesResponse.ts b/src/api-types/models/GetArchivesResponse.ts index 4c0e1ce..953807c 100644 --- a/src/api-types/models/GetArchivesResponse.ts +++ b/src/api-types/models/GetArchivesResponse.ts @@ -6,4 +6,4 @@ import type { Archive } from './Archive'; export type GetArchivesResponse = { archives: Array; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetDBBackupsResponse.ts b/src/api-types/models/GetDBBackupsResponse.ts index 3e0c0ec..0ec58d8 100644 --- a/src/api-types/models/GetDBBackupsResponse.ts +++ b/src/api-types/models/GetDBBackupsResponse.ts @@ -6,4 +6,4 @@ import type { DBBackup } from './DBBackup'; export type GetDBBackupsResponse = { tasks?: Array; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetDownloadRequest.ts b/src/api-types/models/GetDownloadRequest.ts index 3e2df4e..e166f9f 100644 --- a/src/api-types/models/GetDownloadRequest.ts +++ b/src/api-types/models/GetDownloadRequest.ts @@ -4,4 +4,4 @@ export type GetDownloadRequest = { download_uid: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetDownloadResponse.ts b/src/api-types/models/GetDownloadResponse.ts index 9495cc2..c6eeb51 100644 --- a/src/api-types/models/GetDownloadResponse.ts +++ b/src/api-types/models/GetDownloadResponse.ts @@ -6,4 +6,4 @@ import type { Download } from './Download'; export type GetDownloadResponse = { download?: Download; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetFileFormatsRequest.ts b/src/api-types/models/GetFileFormatsRequest.ts index 45cbeb7..3b9fa54 100644 --- a/src/api-types/models/GetFileFormatsRequest.ts +++ b/src/api-types/models/GetFileFormatsRequest.ts @@ -4,4 +4,4 @@ export type GetFileFormatsRequest = { url?: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetFileFormatsResponse.ts b/src/api-types/models/GetFileFormatsResponse.ts index 0412637..d195660 100644 --- a/src/api-types/models/GetFileFormatsResponse.ts +++ b/src/api-types/models/GetFileFormatsResponse.ts @@ -7,4 +7,4 @@ export type GetFileFormatsResponse = { result: { formats?: Array; }; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetFileRequest.ts b/src/api-types/models/GetFileRequest.ts index 085dab9..6c3e0cb 100644 --- a/src/api-types/models/GetFileRequest.ts +++ b/src/api-types/models/GetFileRequest.ts @@ -14,4 +14,4 @@ export type GetFileRequest = { * User UID */ uuid?: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetFileResponse.ts b/src/api-types/models/GetFileResponse.ts index b62f1c6..ad64755 100644 --- a/src/api-types/models/GetFileResponse.ts +++ b/src/api-types/models/GetFileResponse.ts @@ -7,4 +7,4 @@ import type { DatabaseFile } from './DatabaseFile'; export type GetFileResponse = { success: boolean; file?: DatabaseFile; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetFullTwitchChatRequest.ts b/src/api-types/models/GetFullTwitchChatRequest.ts index 4e6efa9..0b10d98 100644 --- a/src/api-types/models/GetFullTwitchChatRequest.ts +++ b/src/api-types/models/GetFullTwitchChatRequest.ts @@ -16,4 +16,4 @@ export type GetFullTwitchChatRequest = { */ uuid?: string; sub?: Subscription; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetFullTwitchChatResponse.ts b/src/api-types/models/GetFullTwitchChatResponse.ts index a894650..1f52375 100644 --- a/src/api-types/models/GetFullTwitchChatResponse.ts +++ b/src/api-types/models/GetFullTwitchChatResponse.ts @@ -5,4 +5,4 @@ export type GetFullTwitchChatResponse = { success: boolean; error?: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetLogsRequest.ts b/src/api-types/models/GetLogsRequest.ts index ef6800b..e5029ee 100644 --- a/src/api-types/models/GetLogsRequest.ts +++ b/src/api-types/models/GetLogsRequest.ts @@ -4,4 +4,4 @@ export type GetLogsRequest = { lines?: number; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetLogsResponse.ts b/src/api-types/models/GetLogsResponse.ts index 255ec9c..760d5f4 100644 --- a/src/api-types/models/GetLogsResponse.ts +++ b/src/api-types/models/GetLogsResponse.ts @@ -8,4 +8,4 @@ export type GetLogsResponse = { */ logs?: string; success?: boolean; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetMp3sResponse.ts b/src/api-types/models/GetMp3sResponse.ts index cecafb1..ed63f48 100644 --- a/src/api-types/models/GetMp3sResponse.ts +++ b/src/api-types/models/GetMp3sResponse.ts @@ -11,4 +11,4 @@ export type GetMp3sResponse = { * All audio playlists */ playlists: Array; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetMp4sResponse.ts b/src/api-types/models/GetMp4sResponse.ts index 9a763da..bfa0ed0 100644 --- a/src/api-types/models/GetMp4sResponse.ts +++ b/src/api-types/models/GetMp4sResponse.ts @@ -11,4 +11,4 @@ export type GetMp4sResponse = { * All video playlists */ playlists: Array; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetNotificationsResponse.ts b/src/api-types/models/GetNotificationsResponse.ts index 35d7469..1a018cd 100644 --- a/src/api-types/models/GetNotificationsResponse.ts +++ b/src/api-types/models/GetNotificationsResponse.ts @@ -6,4 +6,4 @@ import type { Notification } from './Notification'; export type GetNotificationsResponse = { notifications?: Array; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetPlaylistRequest.ts b/src/api-types/models/GetPlaylistRequest.ts index 335d1cd..51c85bd 100644 --- a/src/api-types/models/GetPlaylistRequest.ts +++ b/src/api-types/models/GetPlaylistRequest.ts @@ -9,4 +9,4 @@ export type GetPlaylistRequest = { type?: FileType; uuid?: string; include_file_metadata?: boolean; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetPlaylistResponse.ts b/src/api-types/models/GetPlaylistResponse.ts index 7c9e2d1..14ff0c0 100644 --- a/src/api-types/models/GetPlaylistResponse.ts +++ b/src/api-types/models/GetPlaylistResponse.ts @@ -12,4 +12,4 @@ export type GetPlaylistResponse = { * File objects for every uid in the playlist's uids property, in the same order */ file_objs?: Array; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetPlaylistsRequest.ts b/src/api-types/models/GetPlaylistsRequest.ts index 1de88b6..50edba9 100644 --- a/src/api-types/models/GetPlaylistsRequest.ts +++ b/src/api-types/models/GetPlaylistsRequest.ts @@ -4,4 +4,4 @@ export type GetPlaylistsRequest = { include_categories?: boolean; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetPlaylistsResponse.ts b/src/api-types/models/GetPlaylistsResponse.ts index 294360c..7d5a4d4 100644 --- a/src/api-types/models/GetPlaylistsResponse.ts +++ b/src/api-types/models/GetPlaylistsResponse.ts @@ -6,4 +6,4 @@ import type { Playlist } from './Playlist'; export type GetPlaylistsResponse = { playlists: Array; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetRolesResponse.ts b/src/api-types/models/GetRolesResponse.ts index 3ab5ab7..cddc679 100644 --- a/src/api-types/models/GetRolesResponse.ts +++ b/src/api-types/models/GetRolesResponse.ts @@ -13,4 +13,4 @@ user?: { permissions?: Array; }; }; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetSubscriptionRequest.ts b/src/api-types/models/GetSubscriptionRequest.ts index 19fc36a..3a9bf63 100644 --- a/src/api-types/models/GetSubscriptionRequest.ts +++ b/src/api-types/models/GetSubscriptionRequest.ts @@ -11,4 +11,4 @@ export type GetSubscriptionRequest = { * Subscription name */ name?: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetSubscriptionResponse.ts b/src/api-types/models/GetSubscriptionResponse.ts index c9931c6..7b6663d 100644 --- a/src/api-types/models/GetSubscriptionResponse.ts +++ b/src/api-types/models/GetSubscriptionResponse.ts @@ -7,4 +7,4 @@ import type { Subscription } from './Subscription'; export type GetSubscriptionResponse = { subscription: Subscription; files: Array; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetTaskRequest.ts b/src/api-types/models/GetTaskRequest.ts index a188892..5602d3c 100644 --- a/src/api-types/models/GetTaskRequest.ts +++ b/src/api-types/models/GetTaskRequest.ts @@ -4,4 +4,4 @@ export type GetTaskRequest = { task_key: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetTaskResponse.ts b/src/api-types/models/GetTaskResponse.ts index 850ee05..a901123 100644 --- a/src/api-types/models/GetTaskResponse.ts +++ b/src/api-types/models/GetTaskResponse.ts @@ -6,4 +6,4 @@ import type { Task } from './Task'; export type GetTaskResponse = { task?: Task; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/GetUsersResponse.ts b/src/api-types/models/GetUsersResponse.ts index 5e13f1a..5a18ec7 100644 --- a/src/api-types/models/GetUsersResponse.ts +++ b/src/api-types/models/GetUsersResponse.ts @@ -6,4 +6,4 @@ import type { User } from './User'; export type GetUsersResponse = { users: Array; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/IncrementViewCountRequest.ts b/src/api-types/models/IncrementViewCountRequest.ts index d49d2c2..19011c1 100644 --- a/src/api-types/models/IncrementViewCountRequest.ts +++ b/src/api-types/models/IncrementViewCountRequest.ts @@ -9,4 +9,4 @@ export type IncrementViewCountRequest = { * User UID */ uuid?: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/LoginRequest.ts b/src/api-types/models/LoginRequest.ts index 44c2ae8..544a1a2 100644 --- a/src/api-types/models/LoginRequest.ts +++ b/src/api-types/models/LoginRequest.ts @@ -5,4 +5,4 @@ export type LoginRequest = { username: string; password: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/LoginResponse.ts b/src/api-types/models/LoginResponse.ts index 6521ed7..cd4b380 100644 --- a/src/api-types/models/LoginResponse.ts +++ b/src/api-types/models/LoginResponse.ts @@ -10,4 +10,4 @@ export type LoginResponse = { token?: string; permissions?: Array; available_permissions?: Array; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/Notification.ts b/src/api-types/models/Notification.ts index f77e917..ce99fe6 100644 --- a/src/api-types/models/Notification.ts +++ b/src/api-types/models/Notification.ts @@ -13,4 +13,4 @@ export type Notification = { read: boolean; data?: any; timestamp: number; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/NotificationAction.ts b/src/api-types/models/NotificationAction.ts index 8313aaf..9f97b41 100644 --- a/src/api-types/models/NotificationAction.ts +++ b/src/api-types/models/NotificationAction.ts @@ -7,4 +7,4 @@ export enum NotificationAction { RETRY_DOWNLOAD = 'retry_download', VIEW_DOWNLOAD_ERROR = 'view_download_error', VIEW_TASKS = 'view_tasks', -} +} \ No newline at end of file diff --git a/src/api-types/models/NotificationType.ts b/src/api-types/models/NotificationType.ts index e773485..26cfee9 100644 --- a/src/api-types/models/NotificationType.ts +++ b/src/api-types/models/NotificationType.ts @@ -6,4 +6,4 @@ export enum NotificationType { DOWNLOAD_COMPLETE = 'download_complete', DOWNLOAD_ERROR = 'download_error', TASK_FINISHED = 'task_finished', -} +} \ No newline at end of file diff --git a/src/api-types/models/Playlist.ts b/src/api-types/models/Playlist.ts index cff083a..bdbd0f6 100644 --- a/src/api-types/models/Playlist.ts +++ b/src/api-types/models/Playlist.ts @@ -15,4 +15,4 @@ export type Playlist = { user_uid?: string; auto?: boolean; sharingEnabled?: boolean; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/RegisterRequest.ts b/src/api-types/models/RegisterRequest.ts index 5508dc4..0cd5a87 100644 --- a/src/api-types/models/RegisterRequest.ts +++ b/src/api-types/models/RegisterRequest.ts @@ -6,4 +6,4 @@ export type RegisterRequest = { userid: string; username: string; password: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/RegisterResponse.ts b/src/api-types/models/RegisterResponse.ts index 518c62b..62d0387 100644 --- a/src/api-types/models/RegisterResponse.ts +++ b/src/api-types/models/RegisterResponse.ts @@ -6,4 +6,4 @@ import type { User } from './User'; export type RegisterResponse = { user?: User; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/RestoreDBBackupRequest.ts b/src/api-types/models/RestoreDBBackupRequest.ts index 9ae2ad3..6804f46 100644 --- a/src/api-types/models/RestoreDBBackupRequest.ts +++ b/src/api-types/models/RestoreDBBackupRequest.ts @@ -4,4 +4,4 @@ export type RestoreDBBackupRequest = { file_name: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/Schedule.ts b/src/api-types/models/Schedule.ts index 3138c83..a16fc5f 100644 --- a/src/api-types/models/Schedule.ts +++ b/src/api-types/models/Schedule.ts @@ -21,4 +21,4 @@ export namespace Schedule { } -} +} \ No newline at end of file diff --git a/src/api-types/models/SetConfigRequest.ts b/src/api-types/models/SetConfigRequest.ts index f4388a5..e0edf66 100644 --- a/src/api-types/models/SetConfigRequest.ts +++ b/src/api-types/models/SetConfigRequest.ts @@ -6,4 +6,4 @@ import type { Config } from './Config'; export type SetConfigRequest = { new_config_file: Config; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/SetNotificationsToReadRequest.ts b/src/api-types/models/SetNotificationsToReadRequest.ts index 8865af9..83f5948 100644 --- a/src/api-types/models/SetNotificationsToReadRequest.ts +++ b/src/api-types/models/SetNotificationsToReadRequest.ts @@ -4,4 +4,4 @@ export type SetNotificationsToReadRequest = { uids: Array; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/SharingToggle.ts b/src/api-types/models/SharingToggle.ts index 68249d7..8c486f5 100644 --- a/src/api-types/models/SharingToggle.ts +++ b/src/api-types/models/SharingToggle.ts @@ -5,4 +5,4 @@ export type SharingToggle = { uid: string; is_playlist?: boolean; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/Sort.ts b/src/api-types/models/Sort.ts index e8107e8..438f884 100644 --- a/src/api-types/models/Sort.ts +++ b/src/api-types/models/Sort.ts @@ -11,4 +11,4 @@ export type Sort = { * 1 for ascending, -1 for descending */ order?: number; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/SubscribeRequest.ts b/src/api-types/models/SubscribeRequest.ts index 69b25f3..d7490bf 100644 --- a/src/api-types/models/SubscribeRequest.ts +++ b/src/api-types/models/SubscribeRequest.ts @@ -10,4 +10,4 @@ export type SubscribeRequest = { customArgs?: string; customFileOutput?: string; maxQuality?: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/SubscribeResponse.ts b/src/api-types/models/SubscribeResponse.ts index aab560a..0440340 100644 --- a/src/api-types/models/SubscribeResponse.ts +++ b/src/api-types/models/SubscribeResponse.ts @@ -7,4 +7,4 @@ import type { Subscription } from './Subscription'; export type SubscribeResponse = { new_sub: Subscription; error?: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/Subscription.ts b/src/api-types/models/Subscription.ts index 9d84e2c..2e280d8 100644 --- a/src/api-types/models/Subscription.ts +++ b/src/api-types/models/Subscription.ts @@ -16,4 +16,4 @@ export type Subscription = { custom_args?: string; custom_output?: string; videos: Array; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/SubscriptionRequestData.ts b/src/api-types/models/SubscriptionRequestData.ts index 2bc3591..a7c9650 100644 --- a/src/api-types/models/SubscriptionRequestData.ts +++ b/src/api-types/models/SubscriptionRequestData.ts @@ -10,4 +10,4 @@ export type SubscriptionRequestData = { type?: FileType; isPlaylist?: boolean; archive?: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/SuccessObject.ts b/src/api-types/models/SuccessObject.ts index c736856..9cfdf8b 100644 --- a/src/api-types/models/SuccessObject.ts +++ b/src/api-types/models/SuccessObject.ts @@ -5,4 +5,4 @@ export type SuccessObject = { success: boolean; error?: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/TableInfo.ts b/src/api-types/models/TableInfo.ts index dada036..58b651a 100644 --- a/src/api-types/models/TableInfo.ts +++ b/src/api-types/models/TableInfo.ts @@ -4,4 +4,4 @@ export type TableInfo = { records_count?: number; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/Task.ts b/src/api-types/models/Task.ts index a10e413..4b85095 100644 --- a/src/api-types/models/Task.ts +++ b/src/api-types/models/Task.ts @@ -13,4 +13,4 @@ export type Task = { error: string; schedule: any; options?: any; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/TestConnectionStringRequest.ts b/src/api-types/models/TestConnectionStringRequest.ts index 5822bbc..af83b84 100644 --- a/src/api-types/models/TestConnectionStringRequest.ts +++ b/src/api-types/models/TestConnectionStringRequest.ts @@ -7,4 +7,4 @@ export type TestConnectionStringRequest = { * MongoDB connection string */ connection_string: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/TestConnectionStringResponse.ts b/src/api-types/models/TestConnectionStringResponse.ts index fac7d24..745d63f 100644 --- a/src/api-types/models/TestConnectionStringResponse.ts +++ b/src/api-types/models/TestConnectionStringResponse.ts @@ -5,4 +5,4 @@ export type TestConnectionStringResponse = { success: boolean; error?: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/TransferDBRequest.ts b/src/api-types/models/TransferDBRequest.ts index 4e11d06..5119252 100644 --- a/src/api-types/models/TransferDBRequest.ts +++ b/src/api-types/models/TransferDBRequest.ts @@ -7,4 +7,4 @@ export type TransferDBRequest = { * True if transfering DB from Local to MongoDB, false if transferring DB from MongoDB to Local */ local_to_remote: boolean; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/TransferDBResponse.ts b/src/api-types/models/TransferDBResponse.ts index 25b35d8..ab744d4 100644 --- a/src/api-types/models/TransferDBResponse.ts +++ b/src/api-types/models/TransferDBResponse.ts @@ -5,4 +5,4 @@ export type TransferDBResponse = { success: boolean; error?: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/TwitchChatMessage.ts b/src/api-types/models/TwitchChatMessage.ts index 1405287..cc7efd7 100644 --- a/src/api-types/models/TwitchChatMessage.ts +++ b/src/api-types/models/TwitchChatMessage.ts @@ -14,4 +14,4 @@ created_at?: string; body?: string; user_color?: string; }; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/UnsubscribeRequest.ts b/src/api-types/models/UnsubscribeRequest.ts index 9eed3c5..ffc939c 100644 --- a/src/api-types/models/UnsubscribeRequest.ts +++ b/src/api-types/models/UnsubscribeRequest.ts @@ -10,4 +10,4 @@ export type UnsubscribeRequest = { * Defaults to false */ deleteMode?: boolean; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/UnsubscribeResponse.ts b/src/api-types/models/UnsubscribeResponse.ts index 18bc079..6eb1c36 100644 --- a/src/api-types/models/UnsubscribeResponse.ts +++ b/src/api-types/models/UnsubscribeResponse.ts @@ -5,4 +5,4 @@ export type UnsubscribeResponse = { success: boolean; error?: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/UpdateCategoriesRequest.ts b/src/api-types/models/UpdateCategoriesRequest.ts index b530ee4..6a611ab 100644 --- a/src/api-types/models/UpdateCategoriesRequest.ts +++ b/src/api-types/models/UpdateCategoriesRequest.ts @@ -6,4 +6,4 @@ import type { Category } from './Category'; export type UpdateCategoriesRequest = { categories: Array; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/UpdateCategoryRequest.ts b/src/api-types/models/UpdateCategoryRequest.ts index 9d92406..7b3e1cb 100644 --- a/src/api-types/models/UpdateCategoryRequest.ts +++ b/src/api-types/models/UpdateCategoryRequest.ts @@ -6,4 +6,4 @@ import type { Category } from './Category'; export type UpdateCategoryRequest = { category: Category; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/UpdateConcurrentStreamRequest.ts b/src/api-types/models/UpdateConcurrentStreamRequest.ts index a98d258..ce78768 100644 --- a/src/api-types/models/UpdateConcurrentStreamRequest.ts +++ b/src/api-types/models/UpdateConcurrentStreamRequest.ts @@ -9,4 +9,4 @@ export type UpdateConcurrentStreamRequest = (ConcurrentStream & { * Concurrent stream UID */ uid: string; -}); +}); \ No newline at end of file diff --git a/src/api-types/models/UpdateConcurrentStreamResponse.ts b/src/api-types/models/UpdateConcurrentStreamResponse.ts index 4a40fb0..f3dc88d 100644 --- a/src/api-types/models/UpdateConcurrentStreamResponse.ts +++ b/src/api-types/models/UpdateConcurrentStreamResponse.ts @@ -6,4 +6,4 @@ import type { ConcurrentStream } from './ConcurrentStream'; export type UpdateConcurrentStreamResponse = { stream: ConcurrentStream; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/UpdateFileRequest.ts b/src/api-types/models/UpdateFileRequest.ts index 224b018..cada2e5 100644 --- a/src/api-types/models/UpdateFileRequest.ts +++ b/src/api-types/models/UpdateFileRequest.ts @@ -11,4 +11,4 @@ export type UpdateFileRequest = { * Object with fields to update as keys and their new values */ change_obj: any; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/UpdatePlaylistRequest.ts b/src/api-types/models/UpdatePlaylistRequest.ts index b16dec6..ba015b3 100644 --- a/src/api-types/models/UpdatePlaylistRequest.ts +++ b/src/api-types/models/UpdatePlaylistRequest.ts @@ -6,4 +6,4 @@ import type { Playlist } from './Playlist'; export type UpdatePlaylistRequest = { playlist: Playlist; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/UpdateServerRequest.ts b/src/api-types/models/UpdateServerRequest.ts index 92d95bb..8239869 100644 --- a/src/api-types/models/UpdateServerRequest.ts +++ b/src/api-types/models/UpdateServerRequest.ts @@ -4,4 +4,4 @@ export type UpdateServerRequest = { tag: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/UpdateTaskDataRequest.ts b/src/api-types/models/UpdateTaskDataRequest.ts index a9f8e99..afe9b54 100644 --- a/src/api-types/models/UpdateTaskDataRequest.ts +++ b/src/api-types/models/UpdateTaskDataRequest.ts @@ -5,4 +5,4 @@ export type UpdateTaskDataRequest = { task_key: string; new_data: any; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/UpdateTaskOptionsRequest.ts b/src/api-types/models/UpdateTaskOptionsRequest.ts index 2e50f74..47cde2d 100644 --- a/src/api-types/models/UpdateTaskOptionsRequest.ts +++ b/src/api-types/models/UpdateTaskOptionsRequest.ts @@ -5,4 +5,4 @@ export type UpdateTaskOptionsRequest = { task_key: string; new_options: any; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/UpdateTaskScheduleRequest.ts b/src/api-types/models/UpdateTaskScheduleRequest.ts index fb27cd8..62d8775 100644 --- a/src/api-types/models/UpdateTaskScheduleRequest.ts +++ b/src/api-types/models/UpdateTaskScheduleRequest.ts @@ -7,4 +7,4 @@ import type { Schedule } from './Schedule'; export type UpdateTaskScheduleRequest = { task_key: string; new_schedule: Schedule; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/UpdateUserRequest.ts b/src/api-types/models/UpdateUserRequest.ts index 31b9b33..db522c6 100644 --- a/src/api-types/models/UpdateUserRequest.ts +++ b/src/api-types/models/UpdateUserRequest.ts @@ -8,4 +8,4 @@ uid: string; name?: string; role?: string; }; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/UpdaterStatus.ts b/src/api-types/models/UpdaterStatus.ts index 01db98d..47a2e99 100644 --- a/src/api-types/models/UpdaterStatus.ts +++ b/src/api-types/models/UpdaterStatus.ts @@ -6,4 +6,4 @@ export type UpdaterStatus = { updating: boolean; details: string; error?: boolean; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/UploadCookiesRequest.ts b/src/api-types/models/UploadCookiesRequest.ts index e240063..f65420d 100644 --- a/src/api-types/models/UploadCookiesRequest.ts +++ b/src/api-types/models/UploadCookiesRequest.ts @@ -4,4 +4,4 @@ export type UploadCookiesRequest = { cookies: Blob; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/User.ts b/src/api-types/models/User.ts index 6436ccc..aa9802e 100644 --- a/src/api-types/models/User.ts +++ b/src/api-types/models/User.ts @@ -14,4 +14,4 @@ export type User = { role?: string; permissions?: Array; permission_overrides?: Array; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/UserPermission.ts b/src/api-types/models/UserPermission.ts index d19c728..ca8df45 100644 --- a/src/api-types/models/UserPermission.ts +++ b/src/api-types/models/UserPermission.ts @@ -9,4 +9,4 @@ export enum UserPermission { SHARING = 'sharing', ADVANCED_DOWNLOAD = 'advanced_download', DOWNLOADS_MANAGER = 'downloads_manager', -} +} \ No newline at end of file diff --git a/src/api-types/models/Version.ts b/src/api-types/models/Version.ts index 1b2fda0..37c4289 100644 --- a/src/api-types/models/Version.ts +++ b/src/api-types/models/Version.ts @@ -7,4 +7,4 @@ export type Version = { tag?: string; commit?: string; date?: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/VersionInfoResponse.ts b/src/api-types/models/VersionInfoResponse.ts index 0a291be..20d77da 100644 --- a/src/api-types/models/VersionInfoResponse.ts +++ b/src/api-types/models/VersionInfoResponse.ts @@ -6,4 +6,4 @@ import type { Version } from './Version'; export type VersionInfoResponse = { version_info: Version; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/YesNo.ts b/src/api-types/models/YesNo.ts index 09bce39..b30f848 100644 --- a/src/api-types/models/YesNo.ts +++ b/src/api-types/models/YesNo.ts @@ -5,4 +5,4 @@ export enum YesNo { YES = 'yes', NO = 'no', -} +} \ No newline at end of file diff --git a/src/api-types/models/binary.ts b/src/api-types/models/binary.ts index 0f97ae2..e8c6812 100644 --- a/src/api-types/models/binary.ts +++ b/src/api-types/models/binary.ts @@ -4,4 +4,4 @@ export type binary = { id?: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/body_19.ts b/src/api-types/models/body_19.ts index 09ed602..69df745 100644 --- a/src/api-types/models/body_19.ts +++ b/src/api-types/models/body_19.ts @@ -4,4 +4,4 @@ export type body_19 = { input_pin: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/body_20.ts b/src/api-types/models/body_20.ts index 66f9ec3..be997a7 100644 --- a/src/api-types/models/body_20.ts +++ b/src/api-types/models/body_20.ts @@ -4,4 +4,4 @@ export type body_20 = { unhashed_pin: string; -}; +}; \ No newline at end of file diff --git a/src/api-types/models/inline_response_200_15.ts b/src/api-types/models/inline_response_200_15.ts index 957fa1c..c8d731d 100644 --- a/src/api-types/models/inline_response_200_15.ts +++ b/src/api-types/models/inline_response_200_15.ts @@ -4,4 +4,4 @@ export type inline_response_200_15 = { is_set: boolean; -}; +}; \ No newline at end of file