├── .eslintrc.js ├── .prettierrc.js ├── .stoplight.json ├── .yarn └── install-state.gz ├── Dockerfile ├── LICENSE ├── babel.config.js ├── cypress.config.ts ├── cypress ├── config │ └── settings.cypress.json ├── e2e │ ├── discover.cy.ts │ ├── login.cy.ts │ ├── movie-details.cy.ts │ ├── pull-to-refresh.cy.ts │ ├── settings │ │ ├── discover-customization.cy.ts │ │ └── general-settings.cy.ts │ ├── tv-details.cy.ts │ └── user │ │ ├── auto-request-settings.cy.ts │ │ ├── profile.cy.ts │ │ └── user-list.cy.ts ├── fixtures │ └── watchlist.json ├── support │ ├── commands.ts │ ├── e2e.ts │ └── index.ts └── tsconfig.json ├── merged-prettier-plugin.js ├── next-env.d.ts ├── next.config.js ├── overseerr-api.yml ├── package.json ├── postcss.config.js ├── public ├── android-chrome-192x192.png ├── android-chrome-192x192_maskable.png ├── android-chrome-512x512.png ├── android-chrome-512x512_maskable.png ├── apple-splash-1125-2436.jpg ├── apple-splash-1136-640.jpg ├── apple-splash-1170-2532.jpg ├── apple-splash-1242-2208.jpg ├── apple-splash-1242-2688.jpg ├── apple-splash-1284-2778.jpg ├── apple-splash-1334-750.jpg ├── apple-splash-1536-2048.jpg ├── apple-splash-1620-2160.jpg ├── apple-splash-1668-2224.jpg ├── apple-splash-1668-2388.jpg ├── apple-splash-1792-828.jpg ├── apple-splash-2048-1536.jpg ├── apple-splash-2048-2732.jpg ├── apple-splash-2160-1620.jpg ├── apple-splash-2208-1242.jpg ├── apple-splash-2224-1668.jpg ├── apple-splash-2388-1668.jpg ├── apple-splash-2436-1125.jpg ├── apple-splash-2532-1170.jpg ├── apple-splash-2688-1242.jpg ├── apple-splash-2732-2048.jpg ├── apple-splash-2778-1284.jpg ├── apple-splash-640-1136.jpg ├── apple-splash-750-1334.jpg ├── apple-splash-828-1792.jpg ├── apple-touch-icon.png ├── badge-128x128.png ├── clock-icon-192x192.png ├── cog-icon-192x192.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── images │ ├── overseerr_poster_not_found.png │ ├── overseerr_poster_not_found_logo_center.png │ └── overseerr_poster_not_found_logo_top.png ├── logo_full.png ├── logo_full.svg ├── logo_stacked.svg ├── offline.html ├── os_icon.svg ├── site.webmanifest ├── sparkles-icon-192x192.png ├── sw.js └── user-icon-192x192.png ├── renovate.json ├── server ├── api │ ├── animelist.ts │ ├── externalapi.ts │ ├── github.ts │ ├── musicbrainz │ │ ├── index.ts │ │ ├── interfaces.ts │ │ └── poster.ts │ ├── plexapi.ts │ ├── plextv.ts │ ├── pushover.ts │ ├── rating │ │ ├── imdbRadarrProxy.ts │ │ └── rottentomatoes.ts │ ├── ratings.ts │ ├── servarr │ │ ├── base.ts │ │ ├── lidarr.ts │ │ ├── radarr.ts │ │ └── sonarr.ts │ ├── tautulli.ts │ └── themoviedb │ │ ├── constants.ts │ │ ├── index.ts │ │ └── interfaces.ts ├── constants │ ├── discover.ts │ ├── issue.ts │ ├── media.ts │ └── user.ts ├── datasource.ts ├── entity │ ├── DiscoverSlider.ts │ ├── Issue.ts │ ├── IssueComment.ts │ ├── Media.ts │ ├── MediaRequest.ts │ ├── Season.ts │ ├── SeasonRequest.ts │ ├── Session.ts │ ├── User.ts │ ├── UserPushSubscription.ts │ └── UserSettings.ts ├── index.ts ├── interfaces │ └── api │ │ ├── common.ts │ │ ├── discoverInterfaces.ts │ │ ├── issueInterfaces.ts │ │ ├── mediaInterfaces.ts │ │ ├── personInterfaces.ts │ │ ├── plexInterfaces.ts │ │ ├── requestInterfaces.ts │ │ ├── serviceInterfaces.ts │ │ ├── settingsInterfaces.ts │ │ ├── userInterfaces.ts │ │ └── userSettingsInterfaces.ts ├── job │ └── schedule.ts ├── lib │ ├── availabilitySync.ts │ ├── cache.ts │ ├── downloadtracker.ts │ ├── email │ │ ├── index.ts │ │ └── openpgpEncrypt.ts │ ├── imageproxy.ts │ ├── notifications │ │ ├── agents │ │ │ ├── agent.ts │ │ │ ├── discord.ts │ │ │ ├── email.ts │ │ │ ├── gotify.ts │ │ │ ├── lunasea.ts │ │ │ ├── pushbullet.ts │ │ │ ├── pushover.ts │ │ │ ├── slack.ts │ │ │ ├── telegram.ts │ │ │ ├── webhook.ts │ │ │ └── webpush.ts │ │ └── index.ts │ ├── permissions.ts │ ├── refreshToken.ts │ ├── scanners │ │ ├── baseScanner.ts │ │ ├── lidarr │ │ │ └── index.ts │ │ ├── plex │ │ │ └── index.ts │ │ ├── radarr │ │ │ └── index.ts │ │ └── sonarr │ │ │ └── index.ts │ ├── search.ts │ ├── settings.ts │ └── watchlistsync.ts ├── logger.ts ├── middleware │ ├── auth.ts │ └── clearcookies.ts ├── migration │ ├── 1603944374840-InitialMigration.ts │ ├── 1605085519544-SeasonStatus.ts │ ├── 1606730060700-CascadeMigration.ts │ ├── 1607928251245-DropImdbIdConstraint.ts │ ├── 1608217312474-AddUserRequestDeleteCascades.ts │ ├── 1608477467935-AddLastSeasonChangeMedia.ts │ ├── 1608477467936-ForceDropImdbUniqueConstraint.ts │ ├── 1609236552057-RemoveTmdbIdUniqueConstraint.ts │ ├── 1610070934506-LocalUsers.ts │ ├── 1610370640747-Add4kStatusFields.ts │ ├── 1610522845513-AddMediaAddedFieldToMedia.ts │ ├── 1611508672722-AddDisplayNameToUser.ts │ ├── 1611757511674-SonarrRadarrSyncServiceFields.ts │ ├── 1611801511397-AddRatingKeysToMedia.ts │ ├── 1612482778137-AddResetPasswordGuidAndExpiryDate.ts │ ├── 1612571545781-AddLanguageProfileId.ts │ ├── 1613615266968-CreateUserSettings.ts │ ├── 1613955393450-UpdateUserSettingsRegions.ts │ ├── 1614334195680-AddTelegramSettingsToUserSettings.ts │ ├── 1615333940450-AddPGPToUserSettings.ts │ ├── 1616576677254-AddUserQuotaFields.ts │ ├── 1617624225464-CreateTagsFieldonMediaRequest.ts │ ├── 1617730837489-AddUserSettingsNotificationAgentsField.ts │ ├── 1618912653565-CreateUserPushSubscriptions.ts │ ├── 1619239659754-AddUserSettingsLocale.ts │ ├── 1619339817343-AddUserSettingsNotificationTypes.ts │ ├── 1634904083966-AddIssues.ts │ ├── 1635079863457-AddPushbulletPushoverUserSettings.ts │ ├── 1660632269368-AddWatchlistSyncUserSetting.ts │ ├── 1660714479373-AddMediaRequestIsAutoRequestedField.ts │ ├── 1672041273674-AddDiscoverSlider.ts │ ├── 1697393491630-AddUserPushoverSound.ts │ └── 1714310036946-PostLidarrSupportIntegration.ts ├── models │ ├── Collection.ts │ ├── Movie.ts │ ├── Person.ts │ ├── Release.ts │ ├── Search.ts │ ├── Tv.ts │ └── common.ts ├── routes │ ├── auth.ts │ ├── collection.ts │ ├── discover.ts │ ├── imageproxy.ts │ ├── index.ts │ ├── issue.ts │ ├── issueComment.ts │ ├── media.ts │ ├── movie.ts │ ├── music.ts │ ├── person.ts │ ├── request.ts │ ├── search.ts │ ├── service.ts │ ├── settings │ │ ├── discover.ts │ │ ├── index.ts │ │ ├── lidarr.ts │ │ ├── notifications.ts │ │ ├── radarr.ts │ │ └── sonarr.ts │ ├── tv.ts │ └── user │ │ ├── index.ts │ │ └── usersettings.ts ├── scripts │ └── prepareTestDb.ts ├── subscriber │ ├── IssueCommentSubscriber.ts │ ├── IssueSubscriber.ts │ └── MediaSubscriber.ts ├── templates │ └── email │ │ ├── generatedpassword │ │ ├── html.pug │ │ └── subject.pug │ │ ├── media-issue │ │ ├── html.pug │ │ └── subject.pug │ │ ├── media-request │ │ ├── html.pug │ │ └── subject.pug │ │ ├── resetpassword │ │ ├── html.pug │ │ └── subject.pug │ │ └── test-email │ │ ├── html.pug │ │ └── subject.pug ├── tsconfig.json ├── types │ ├── express-session.d.ts │ ├── express.d.ts │ ├── nodebrainz.d.ts │ └── plex-api.d.ts └── utils │ ├── appDataVolume.ts │ ├── appVersion.ts │ ├── asyncLock.ts │ ├── dateHelpers.ts │ ├── restartFlag.ts │ └── typeHelpers.ts ├── snap └── snapcraft.yaml ├── src ├── assets │ ├── ellipsis.svg │ ├── extlogos │ │ ├── discord.svg │ │ ├── gotify.svg │ │ ├── lunasea.svg │ │ ├── pushbullet.svg │ │ ├── pushover.svg │ │ ├── slack.svg │ │ └── telegram.svg │ ├── infinity.svg │ ├── rt_aud_fresh.svg │ ├── rt_aud_rotten.svg │ ├── rt_fresh.svg │ ├── rt_rotten.svg │ ├── services │ │ ├── imdb.svg │ │ ├── lidarr.svg │ │ ├── plex.svg │ │ ├── radarr.svg │ │ ├── rt.svg │ │ ├── sonarr.svg │ │ ├── tmdb.svg │ │ ├── trakt.svg │ │ └── tvdb.svg │ ├── spinner.svg │ └── tmdb_logo.svg ├── components │ ├── AirDateBadge │ │ └── index.tsx │ ├── AppDataWarning │ │ └── index.tsx │ ├── CollectionDetails │ │ └── index.tsx │ ├── Common │ │ ├── Accordion │ │ │ └── index.tsx │ │ ├── Alert │ │ │ └── index.tsx │ │ ├── Badge │ │ │ └── index.tsx │ │ ├── Button │ │ │ └── index.tsx │ │ ├── ButtonWithDropdown │ │ │ └── index.tsx │ │ ├── CachedImage │ │ │ └── index.tsx │ │ ├── ConfirmButton │ │ │ └── index.tsx │ │ ├── Header │ │ │ └── index.tsx │ │ ├── ImageFader │ │ │ └── index.tsx │ │ ├── List │ │ │ └── index.tsx │ │ ├── ListView │ │ │ └── index.tsx │ │ ├── LoadingSpinner │ │ │ └── index.tsx │ │ ├── Modal │ │ │ └── index.tsx │ │ ├── MultiRangeSlider │ │ │ └── index.tsx │ │ ├── PageTitle │ │ │ └── index.tsx │ │ ├── PlayButton │ │ │ └── index.tsx │ │ ├── ProgressCircle │ │ │ └── index.tsx │ │ ├── SensitiveInput │ │ │ └── index.tsx │ │ ├── SettingsTabs │ │ │ └── index.tsx │ │ ├── SlideCheckbox │ │ │ └── index.tsx │ │ ├── SlideOver │ │ │ └── index.tsx │ │ ├── StatusBadgeMini │ │ │ └── index.tsx │ │ ├── Table │ │ │ └── index.tsx │ │ ├── Tag │ │ │ └── index.tsx │ │ └── Tooltip │ │ │ └── index.tsx │ ├── CompanyCard │ │ └── index.tsx │ ├── CompanyTag │ │ └── index.tsx │ ├── Discover │ │ ├── CreateSlider │ │ │ └── index.tsx │ │ ├── DiscoverMovieGenre │ │ │ └── index.tsx │ │ ├── DiscoverMovieKeyword │ │ │ └── index.tsx │ │ ├── DiscoverMovieLanguage │ │ │ └── index.tsx │ │ ├── DiscoverMovies │ │ │ └── index.tsx │ │ ├── DiscoverMusic │ │ │ └── index.tsx │ │ ├── DiscoverNetwork │ │ │ └── index.tsx │ │ ├── DiscoverSliderEdit │ │ │ └── index.tsx │ │ ├── DiscoverStudio │ │ │ └── index.tsx │ │ ├── DiscoverTv │ │ │ └── index.tsx │ │ ├── DiscoverTvGenre │ │ │ └── index.tsx │ │ ├── DiscoverTvKeyword │ │ │ └── index.tsx │ │ ├── DiscoverTvLanguage │ │ │ └── index.tsx │ │ ├── DiscoverTvUpcoming.tsx │ │ ├── DiscoverWatchlist │ │ │ └── index.tsx │ │ ├── FilterSlideover │ │ │ └── index.tsx │ │ ├── MovieGenreList │ │ │ └── index.tsx │ │ ├── MovieGenreSlider │ │ │ └── index.tsx │ │ ├── NetworkSlider │ │ │ └── index.tsx │ │ ├── PlexWatchlistSlider │ │ │ └── index.tsx │ │ ├── RecentRequestsSlider │ │ │ └── index.tsx │ │ ├── RecentlyAddedSlider │ │ │ └── index.tsx │ │ ├── StudioSlider │ │ │ └── index.tsx │ │ ├── Trending.tsx │ │ ├── TvGenreList │ │ │ └── index.tsx │ │ ├── TvGenreSlider │ │ │ └── index.tsx │ │ ├── Upcoming.tsx │ │ ├── constants.ts │ │ └── index.tsx │ ├── DownloadBlock │ │ └── index.tsx │ ├── ExternalLinkBlock │ │ └── index.tsx │ ├── GenreCard │ │ └── index.tsx │ ├── GenreTag │ │ └── index.tsx │ ├── IssueBlock │ │ └── index.tsx │ ├── IssueDetails │ │ ├── IssueComment │ │ │ └── index.tsx │ │ ├── IssueDescription │ │ │ └── index.tsx │ │ └── index.tsx │ ├── IssueList │ │ ├── IssueItem │ │ │ └── index.tsx │ │ └── index.tsx │ ├── IssueModal │ │ ├── CreateIssueModal │ │ │ └── index.tsx │ │ ├── constants.ts │ │ └── index.tsx │ ├── JSONEditor │ │ └── index.tsx │ ├── KeywordTag │ │ └── index.tsx │ ├── LanguageSelector │ │ └── index.tsx │ ├── Layout │ │ ├── LanguagePicker │ │ │ └── index.tsx │ │ ├── MobileMenu │ │ │ └── index.tsx │ │ ├── Notifications │ │ │ └── index.tsx │ │ ├── PullToRefresh │ │ │ └── index.tsx │ │ ├── SearchInput │ │ │ └── index.tsx │ │ ├── Sidebar │ │ │ └── index.tsx │ │ ├── UserDropdown │ │ │ ├── MiniQuotaDisplay │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── VersionStatus │ │ │ └── index.tsx │ │ └── index.tsx │ ├── LoadingBar │ │ └── index.tsx │ ├── Login │ │ ├── LocalLogin.tsx │ │ └── index.tsx │ ├── ManageSlideOver │ │ └── index.tsx │ ├── MediaSlider │ │ ├── ShowMoreCard │ │ │ └── index.tsx │ │ └── index.tsx │ ├── MovieDetails │ │ ├── MovieCast │ │ │ └── index.tsx │ │ ├── MovieCrew │ │ │ └── index.tsx │ │ ├── MovieRecommendations.tsx │ │ ├── MovieSimilar.tsx │ │ └── index.tsx │ ├── MusicDetails │ │ ├── ArtistDetails.tsx │ │ ├── ReleaseDetails.tsx │ │ ├── ReleaseGroupDetails.tsx │ │ └── index.tsx │ ├── MusicSearch │ │ └── index.tsx │ ├── NotificationTypeSelector │ │ ├── NotificationType │ │ │ └── index.tsx │ │ └── index.tsx │ ├── PWAHeader │ │ └── index.tsx │ ├── PermissionEdit │ │ └── index.tsx │ ├── PermissionOption │ │ └── index.tsx │ ├── PersonCard │ │ └── index.tsx │ ├── PersonDetails │ │ └── index.tsx │ ├── PlexLoginButton │ │ └── index.tsx │ ├── QuotaSelector │ │ └── index.tsx │ ├── RegionSelector │ │ └── index.tsx │ ├── RequestBlock │ │ └── index.tsx │ ├── RequestButton │ │ └── index.tsx │ ├── RequestCard │ │ └── index.tsx │ ├── RequestList │ │ ├── RequestItem │ │ │ └── index.tsx │ │ └── index.tsx │ ├── RequestModal │ │ ├── AdvancedRequester │ │ │ └── index.tsx │ │ ├── ArtistRequestModal.tsx │ │ ├── CollectionRequestModal.tsx │ │ ├── MovieRequestModal.tsx │ │ ├── QuotaDisplay │ │ │ └── index.tsx │ │ ├── ReleaseRequestModal.tsx │ │ ├── SearchByNameModal │ │ │ └── index.tsx │ │ ├── TvRequestModal.tsx │ │ └── index.tsx │ ├── ResetPassword │ │ ├── RequestResetLink.tsx │ │ └── index.tsx │ ├── Search │ │ └── index.tsx │ ├── Selector │ │ └── index.tsx │ ├── ServiceWorkerSetup │ │ └── index.tsx │ ├── Settings │ │ ├── CopyButton.tsx │ │ ├── LibraryItem.tsx │ │ ├── LidarrModal │ │ │ └── index.tsx │ │ ├── Notifications │ │ │ ├── NotificationsDiscord.tsx │ │ │ ├── NotificationsEmail.tsx │ │ │ ├── NotificationsGotify │ │ │ │ └── index.tsx │ │ │ ├── NotificationsLunaSea │ │ │ │ └── index.tsx │ │ │ ├── NotificationsPushbullet │ │ │ │ └── index.tsx │ │ │ ├── NotificationsPushover │ │ │ │ └── index.tsx │ │ │ ├── NotificationsSlack │ │ │ │ └── index.tsx │ │ │ ├── NotificationsTelegram.tsx │ │ │ ├── NotificationsWebPush │ │ │ │ └── index.tsx │ │ │ └── NotificationsWebhook │ │ │ │ └── index.tsx │ │ ├── RadarrModal │ │ │ └── index.tsx │ │ ├── SettingsAbout │ │ │ ├── Releases │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── SettingsBadge.tsx │ │ ├── SettingsJobsCache │ │ │ └── index.tsx │ │ ├── SettingsLayout.tsx │ │ ├── SettingsLogs │ │ │ └── index.tsx │ │ ├── SettingsMain │ │ │ └── index.tsx │ │ ├── SettingsNotifications.tsx │ │ ├── SettingsPlex.tsx │ │ ├── SettingsServices.tsx │ │ ├── SettingsUsers │ │ │ └── index.tsx │ │ └── SonarrModal │ │ │ └── index.tsx │ ├── Setup │ │ ├── LoginWithPlex.tsx │ │ ├── SetupSteps.tsx │ │ └── index.tsx │ ├── Slider │ │ └── index.tsx │ ├── StatusBadge │ │ └── index.tsx │ ├── StatusChecker │ │ └── index.tsx │ ├── TitleCard │ │ ├── ErrorCard.tsx │ │ ├── FetchedDataTitleCard.tsx │ │ ├── MusicTitleCard.tsx │ │ ├── Placeholder.tsx │ │ ├── TmdbTitleCard.tsx │ │ └── index.tsx │ ├── Toast │ │ └── index.tsx │ ├── ToastContainer │ │ └── index.tsx │ ├── TvDetails │ │ ├── Season │ │ │ └── index.tsx │ │ ├── TvCast │ │ │ └── index.tsx │ │ ├── TvCrew │ │ │ └── index.tsx │ │ ├── TvRecommendations.tsx │ │ ├── TvSimilar.tsx │ │ └── index.tsx │ ├── UserList │ │ ├── BulkEditModal.tsx │ │ ├── PlexImportModal.tsx │ │ └── index.tsx │ └── UserProfile │ │ ├── ProfileHeader │ │ └── index.tsx │ │ ├── UserSettings │ │ ├── UserGeneralSettings │ │ │ └── index.tsx │ │ ├── UserNotificationSettings │ │ │ ├── UserNotificationsDiscord.tsx │ │ │ ├── UserNotificationsEmail.tsx │ │ │ ├── UserNotificationsPushbullet.tsx │ │ │ ├── UserNotificationsPushover.tsx │ │ │ ├── UserNotificationsTelegram.tsx │ │ │ ├── UserNotificationsWebPush.tsx │ │ │ └── index.tsx │ │ ├── UserPasswordChange │ │ │ └── index.tsx │ │ ├── UserPermissions │ │ │ └── index.tsx │ │ └── index.tsx │ │ └── index.tsx ├── context │ ├── InteractionContext.tsx │ ├── LanguageContext.tsx │ ├── SettingsContext.tsx │ └── UserContext.tsx ├── hooks │ ├── useClickOutside.ts │ ├── useDebouncedState.ts │ ├── useDeepLinks.ts │ ├── useDiscover.ts │ ├── useInteraction.ts │ ├── useIsTouch.ts │ ├── useLocale.ts │ ├── useLockBodyScroll.ts │ ├── useRequestOverride.ts │ ├── useRouteGuard.ts │ ├── useSearchInput.ts │ ├── useSettings.ts │ ├── useUpdateQueryParams.ts │ ├── useUser.ts │ └── useVerticalScroll.ts ├── i18n │ ├── globalMessages.ts │ └── locale │ │ ├── ar.json │ │ ├── bg.json │ │ ├── ca.json │ │ ├── cs.json │ │ ├── da.json │ │ ├── de.json │ │ ├── el.json │ │ ├── en.json │ │ ├── es.json │ │ ├── fi.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hr.json │ │ ├── hu.json │ │ ├── it.json │ │ ├── ja.json │ │ ├── ko.json │ │ ├── lt.json │ │ ├── nb_NO.json │ │ ├── nl.json │ │ ├── pl.json │ │ ├── pt_BR.json │ │ ├── pt_PT.json │ │ ├── ro.json │ │ ├── ru.json │ │ ├── sq.json │ │ ├── sr.json │ │ ├── sv.json │ │ ├── uk.json │ │ ├── zh_Hans.json │ │ └── zh_Hant.json ├── pages │ ├── 404.tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── _error.tsx │ ├── collection │ │ └── [collectionId] │ │ │ └── index.tsx │ ├── discover │ │ ├── movies │ │ │ ├── genre │ │ │ │ └── [genreId] │ │ │ │ │ └── index.tsx │ │ │ ├── genres.tsx │ │ │ ├── index.tsx │ │ │ ├── keyword │ │ │ │ └── index.tsx │ │ │ ├── language │ │ │ │ └── [language] │ │ │ │ │ └── index.tsx │ │ │ ├── studio │ │ │ │ └── [studioId] │ │ │ │ │ └── index.tsx │ │ │ └── upcoming.tsx │ │ ├── music │ │ │ └── index.tsx │ │ ├── trending.tsx │ │ ├── tv │ │ │ ├── genre │ │ │ │ └── [genreId] │ │ │ │ │ └── index.tsx │ │ │ ├── genres.tsx │ │ │ ├── index.tsx │ │ │ ├── keyword │ │ │ │ └── index.tsx │ │ │ ├── language │ │ │ │ └── [language] │ │ │ │ │ └── index.tsx │ │ │ ├── network │ │ │ │ └── [networkId] │ │ │ │ │ └── index.tsx │ │ │ └── upcoming.tsx │ │ └── watchlist.tsx │ ├── index.tsx │ ├── issues │ │ ├── [issueId] │ │ │ └── index.tsx │ │ └── index.tsx │ ├── login │ │ ├── index.tsx │ │ └── plex │ │ │ └── loading.tsx │ ├── movie │ │ └── [movieId] │ │ │ ├── cast.tsx │ │ │ ├── crew.tsx │ │ │ ├── index.tsx │ │ │ ├── recommendations.tsx │ │ │ └── similar.tsx │ ├── music-search.tsx │ ├── music │ │ └── [type] │ │ │ └── [mbId] │ │ │ └── index.tsx │ ├── person │ │ └── [personId] │ │ │ └── index.tsx │ ├── profile │ │ ├── index.tsx │ │ ├── requests.tsx │ │ ├── settings │ │ │ ├── index.tsx │ │ │ ├── main.tsx │ │ │ ├── notifications │ │ │ │ ├── discord.tsx │ │ │ │ ├── email.tsx │ │ │ │ ├── pushbullet.tsx │ │ │ │ ├── pushover.tsx │ │ │ │ ├── telegram.tsx │ │ │ │ └── webpush.tsx │ │ │ ├── password.tsx │ │ │ └── permissions.tsx │ │ └── watchlist.tsx │ ├── requests │ │ └── index.tsx │ ├── resetpassword │ │ ├── [guid] │ │ │ └── index.tsx │ │ └── index.tsx │ ├── search.tsx │ ├── settings │ │ ├── about.tsx │ │ ├── index.tsx │ │ ├── jobs.tsx │ │ ├── logs.tsx │ │ ├── main.tsx │ │ ├── notifications │ │ │ ├── discord.tsx │ │ │ ├── email.tsx │ │ │ ├── gotify.tsx │ │ │ ├── lunasea.tsx │ │ │ ├── pushbullet.tsx │ │ │ ├── pushover.tsx │ │ │ ├── slack.tsx │ │ │ ├── telegram.tsx │ │ │ ├── webhook.tsx │ │ │ └── webpush.tsx │ │ ├── plex.tsx │ │ ├── services.tsx │ │ └── users.tsx │ ├── setup.tsx │ ├── tv │ │ └── [tvId] │ │ │ ├── cast.tsx │ │ │ ├── crew.tsx │ │ │ ├── index.tsx │ │ │ ├── recommendations.tsx │ │ │ └── similar.tsx │ └── users │ │ ├── [userId] │ │ ├── index.tsx │ │ ├── requests.tsx │ │ ├── settings │ │ │ ├── index.tsx │ │ │ ├── main.tsx │ │ │ ├── notifications │ │ │ │ ├── discord.tsx │ │ │ │ ├── email.tsx │ │ │ │ ├── pushbullet.tsx │ │ │ │ ├── pushover.tsx │ │ │ │ ├── telegram.tsx │ │ │ │ └── webpush.tsx │ │ │ ├── password.tsx │ │ │ └── permissions.tsx │ │ └── watchlist.tsx │ │ └── index.tsx ├── styles │ └── globals.css ├── types │ ├── custom.d.ts │ └── react-intl-auto.d.ts └── utils │ ├── creditHelpers.ts │ ├── numberHelpers.ts │ ├── plex.ts │ ├── polyfillIntl.ts │ ├── refreshIntervalHelper.ts │ └── typeHelpers.ts ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.stoplight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/.stoplight.json -------------------------------------------------------------------------------- /.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/.yarn/install-state.gz -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/LICENSE -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/babel.config.js -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress/config/settings.cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/cypress/config/settings.cypress.json -------------------------------------------------------------------------------- /cypress/e2e/discover.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/cypress/e2e/discover.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/login.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/cypress/e2e/login.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/movie-details.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/cypress/e2e/movie-details.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/pull-to-refresh.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/cypress/e2e/pull-to-refresh.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/settings/discover-customization.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/cypress/e2e/settings/discover-customization.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/settings/general-settings.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/cypress/e2e/settings/general-settings.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/tv-details.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/cypress/e2e/tv-details.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/user/auto-request-settings.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/cypress/e2e/user/auto-request-settings.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/user/profile.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/cypress/e2e/user/profile.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/user/user-list.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/cypress/e2e/user/user-list.cy.ts -------------------------------------------------------------------------------- /cypress/fixtures/watchlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/cypress/fixtures/watchlist.json -------------------------------------------------------------------------------- /cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/cypress/support/commands.ts -------------------------------------------------------------------------------- /cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/cypress/support/e2e.ts -------------------------------------------------------------------------------- /cypress/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/cypress/support/index.ts -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /merged-prettier-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/merged-prettier-plugin.js -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/next.config.js -------------------------------------------------------------------------------- /overseerr-api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/overseerr-api.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-192x192_maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/android-chrome-192x192_maskable.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/android-chrome-512x512_maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/android-chrome-512x512_maskable.png -------------------------------------------------------------------------------- /public/apple-splash-1125-2436.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-1125-2436.jpg -------------------------------------------------------------------------------- /public/apple-splash-1136-640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-1136-640.jpg -------------------------------------------------------------------------------- /public/apple-splash-1170-2532.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-1170-2532.jpg -------------------------------------------------------------------------------- /public/apple-splash-1242-2208.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-1242-2208.jpg -------------------------------------------------------------------------------- /public/apple-splash-1242-2688.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-1242-2688.jpg -------------------------------------------------------------------------------- /public/apple-splash-1284-2778.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-1284-2778.jpg -------------------------------------------------------------------------------- /public/apple-splash-1334-750.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-1334-750.jpg -------------------------------------------------------------------------------- /public/apple-splash-1536-2048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-1536-2048.jpg -------------------------------------------------------------------------------- /public/apple-splash-1620-2160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-1620-2160.jpg -------------------------------------------------------------------------------- /public/apple-splash-1668-2224.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-1668-2224.jpg -------------------------------------------------------------------------------- /public/apple-splash-1668-2388.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-1668-2388.jpg -------------------------------------------------------------------------------- /public/apple-splash-1792-828.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-1792-828.jpg -------------------------------------------------------------------------------- /public/apple-splash-2048-1536.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-2048-1536.jpg -------------------------------------------------------------------------------- /public/apple-splash-2048-2732.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-2048-2732.jpg -------------------------------------------------------------------------------- /public/apple-splash-2160-1620.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-2160-1620.jpg -------------------------------------------------------------------------------- /public/apple-splash-2208-1242.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-2208-1242.jpg -------------------------------------------------------------------------------- /public/apple-splash-2224-1668.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-2224-1668.jpg -------------------------------------------------------------------------------- /public/apple-splash-2388-1668.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-2388-1668.jpg -------------------------------------------------------------------------------- /public/apple-splash-2436-1125.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-2436-1125.jpg -------------------------------------------------------------------------------- /public/apple-splash-2532-1170.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-2532-1170.jpg -------------------------------------------------------------------------------- /public/apple-splash-2688-1242.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-2688-1242.jpg -------------------------------------------------------------------------------- /public/apple-splash-2732-2048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-2732-2048.jpg -------------------------------------------------------------------------------- /public/apple-splash-2778-1284.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-2778-1284.jpg -------------------------------------------------------------------------------- /public/apple-splash-640-1136.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-640-1136.jpg -------------------------------------------------------------------------------- /public/apple-splash-750-1334.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-750-1334.jpg -------------------------------------------------------------------------------- /public/apple-splash-828-1792.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-splash-828-1792.jpg -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/badge-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/badge-128x128.png -------------------------------------------------------------------------------- /public/clock-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/clock-icon-192x192.png -------------------------------------------------------------------------------- /public/cog-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/cog-icon-192x192.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/overseerr_poster_not_found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/images/overseerr_poster_not_found.png -------------------------------------------------------------------------------- /public/images/overseerr_poster_not_found_logo_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/images/overseerr_poster_not_found_logo_center.png -------------------------------------------------------------------------------- /public/images/overseerr_poster_not_found_logo_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/images/overseerr_poster_not_found_logo_top.png -------------------------------------------------------------------------------- /public/logo_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/logo_full.png -------------------------------------------------------------------------------- /public/logo_full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/logo_full.svg -------------------------------------------------------------------------------- /public/logo_stacked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/logo_stacked.svg -------------------------------------------------------------------------------- /public/offline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/offline.html -------------------------------------------------------------------------------- /public/os_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/os_icon.svg -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/sparkles-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/sparkles-icon-192x192.png -------------------------------------------------------------------------------- /public/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/sw.js -------------------------------------------------------------------------------- /public/user-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/public/user-icon-192x192.png -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/renovate.json -------------------------------------------------------------------------------- /server/api/animelist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/api/animelist.ts -------------------------------------------------------------------------------- /server/api/externalapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/api/externalapi.ts -------------------------------------------------------------------------------- /server/api/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/api/github.ts -------------------------------------------------------------------------------- /server/api/musicbrainz/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/api/musicbrainz/index.ts -------------------------------------------------------------------------------- /server/api/musicbrainz/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/api/musicbrainz/interfaces.ts -------------------------------------------------------------------------------- /server/api/musicbrainz/poster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/api/musicbrainz/poster.ts -------------------------------------------------------------------------------- /server/api/plexapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/api/plexapi.ts -------------------------------------------------------------------------------- /server/api/plextv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/api/plextv.ts -------------------------------------------------------------------------------- /server/api/pushover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/api/pushover.ts -------------------------------------------------------------------------------- /server/api/rating/imdbRadarrProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/api/rating/imdbRadarrProxy.ts -------------------------------------------------------------------------------- /server/api/rating/rottentomatoes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/api/rating/rottentomatoes.ts -------------------------------------------------------------------------------- /server/api/ratings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/api/ratings.ts -------------------------------------------------------------------------------- /server/api/servarr/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/api/servarr/base.ts -------------------------------------------------------------------------------- /server/api/servarr/lidarr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/api/servarr/lidarr.ts -------------------------------------------------------------------------------- /server/api/servarr/radarr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/api/servarr/radarr.ts -------------------------------------------------------------------------------- /server/api/servarr/sonarr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/api/servarr/sonarr.ts -------------------------------------------------------------------------------- /server/api/tautulli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/api/tautulli.ts -------------------------------------------------------------------------------- /server/api/themoviedb/constants.ts: -------------------------------------------------------------------------------- 1 | export const ANIME_KEYWORD_ID = 210024; 2 | -------------------------------------------------------------------------------- /server/api/themoviedb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/api/themoviedb/index.ts -------------------------------------------------------------------------------- /server/api/themoviedb/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/api/themoviedb/interfaces.ts -------------------------------------------------------------------------------- /server/constants/discover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/constants/discover.ts -------------------------------------------------------------------------------- /server/constants/issue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/constants/issue.ts -------------------------------------------------------------------------------- /server/constants/media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/constants/media.ts -------------------------------------------------------------------------------- /server/constants/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/constants/user.ts -------------------------------------------------------------------------------- /server/datasource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/datasource.ts -------------------------------------------------------------------------------- /server/entity/DiscoverSlider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/entity/DiscoverSlider.ts -------------------------------------------------------------------------------- /server/entity/Issue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/entity/Issue.ts -------------------------------------------------------------------------------- /server/entity/IssueComment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/entity/IssueComment.ts -------------------------------------------------------------------------------- /server/entity/Media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/entity/Media.ts -------------------------------------------------------------------------------- /server/entity/MediaRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/entity/MediaRequest.ts -------------------------------------------------------------------------------- /server/entity/Season.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/entity/Season.ts -------------------------------------------------------------------------------- /server/entity/SeasonRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/entity/SeasonRequest.ts -------------------------------------------------------------------------------- /server/entity/Session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/entity/Session.ts -------------------------------------------------------------------------------- /server/entity/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/entity/User.ts -------------------------------------------------------------------------------- /server/entity/UserPushSubscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/entity/UserPushSubscription.ts -------------------------------------------------------------------------------- /server/entity/UserSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/entity/UserSettings.ts -------------------------------------------------------------------------------- /server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/index.ts -------------------------------------------------------------------------------- /server/interfaces/api/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/interfaces/api/common.ts -------------------------------------------------------------------------------- /server/interfaces/api/discoverInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/interfaces/api/discoverInterfaces.ts -------------------------------------------------------------------------------- /server/interfaces/api/issueInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/interfaces/api/issueInterfaces.ts -------------------------------------------------------------------------------- /server/interfaces/api/mediaInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/interfaces/api/mediaInterfaces.ts -------------------------------------------------------------------------------- /server/interfaces/api/personInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/interfaces/api/personInterfaces.ts -------------------------------------------------------------------------------- /server/interfaces/api/plexInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/interfaces/api/plexInterfaces.ts -------------------------------------------------------------------------------- /server/interfaces/api/requestInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/interfaces/api/requestInterfaces.ts -------------------------------------------------------------------------------- /server/interfaces/api/serviceInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/interfaces/api/serviceInterfaces.ts -------------------------------------------------------------------------------- /server/interfaces/api/settingsInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/interfaces/api/settingsInterfaces.ts -------------------------------------------------------------------------------- /server/interfaces/api/userInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/interfaces/api/userInterfaces.ts -------------------------------------------------------------------------------- /server/interfaces/api/userSettingsInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/interfaces/api/userSettingsInterfaces.ts -------------------------------------------------------------------------------- /server/job/schedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/job/schedule.ts -------------------------------------------------------------------------------- /server/lib/availabilitySync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/availabilitySync.ts -------------------------------------------------------------------------------- /server/lib/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/cache.ts -------------------------------------------------------------------------------- /server/lib/downloadtracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/downloadtracker.ts -------------------------------------------------------------------------------- /server/lib/email/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/email/index.ts -------------------------------------------------------------------------------- /server/lib/email/openpgpEncrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/email/openpgpEncrypt.ts -------------------------------------------------------------------------------- /server/lib/imageproxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/imageproxy.ts -------------------------------------------------------------------------------- /server/lib/notifications/agents/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/notifications/agents/agent.ts -------------------------------------------------------------------------------- /server/lib/notifications/agents/discord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/notifications/agents/discord.ts -------------------------------------------------------------------------------- /server/lib/notifications/agents/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/notifications/agents/email.ts -------------------------------------------------------------------------------- /server/lib/notifications/agents/gotify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/notifications/agents/gotify.ts -------------------------------------------------------------------------------- /server/lib/notifications/agents/lunasea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/notifications/agents/lunasea.ts -------------------------------------------------------------------------------- /server/lib/notifications/agents/pushbullet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/notifications/agents/pushbullet.ts -------------------------------------------------------------------------------- /server/lib/notifications/agents/pushover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/notifications/agents/pushover.ts -------------------------------------------------------------------------------- /server/lib/notifications/agents/slack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/notifications/agents/slack.ts -------------------------------------------------------------------------------- /server/lib/notifications/agents/telegram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/notifications/agents/telegram.ts -------------------------------------------------------------------------------- /server/lib/notifications/agents/webhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/notifications/agents/webhook.ts -------------------------------------------------------------------------------- /server/lib/notifications/agents/webpush.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/notifications/agents/webpush.ts -------------------------------------------------------------------------------- /server/lib/notifications/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/notifications/index.ts -------------------------------------------------------------------------------- /server/lib/permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/permissions.ts -------------------------------------------------------------------------------- /server/lib/refreshToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/refreshToken.ts -------------------------------------------------------------------------------- /server/lib/scanners/baseScanner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/scanners/baseScanner.ts -------------------------------------------------------------------------------- /server/lib/scanners/lidarr/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/scanners/lidarr/index.ts -------------------------------------------------------------------------------- /server/lib/scanners/plex/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/scanners/plex/index.ts -------------------------------------------------------------------------------- /server/lib/scanners/radarr/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/scanners/radarr/index.ts -------------------------------------------------------------------------------- /server/lib/scanners/sonarr/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/scanners/sonarr/index.ts -------------------------------------------------------------------------------- /server/lib/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/search.ts -------------------------------------------------------------------------------- /server/lib/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/settings.ts -------------------------------------------------------------------------------- /server/lib/watchlistsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/lib/watchlistsync.ts -------------------------------------------------------------------------------- /server/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/logger.ts -------------------------------------------------------------------------------- /server/middleware/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/middleware/auth.ts -------------------------------------------------------------------------------- /server/middleware/clearcookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/middleware/clearcookies.ts -------------------------------------------------------------------------------- /server/migration/1603944374840-InitialMigration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1603944374840-InitialMigration.ts -------------------------------------------------------------------------------- /server/migration/1605085519544-SeasonStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1605085519544-SeasonStatus.ts -------------------------------------------------------------------------------- /server/migration/1606730060700-CascadeMigration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1606730060700-CascadeMigration.ts -------------------------------------------------------------------------------- /server/migration/1607928251245-DropImdbIdConstraint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1607928251245-DropImdbIdConstraint.ts -------------------------------------------------------------------------------- /server/migration/1608217312474-AddUserRequestDeleteCascades.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1608217312474-AddUserRequestDeleteCascades.ts -------------------------------------------------------------------------------- /server/migration/1608477467935-AddLastSeasonChangeMedia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1608477467935-AddLastSeasonChangeMedia.ts -------------------------------------------------------------------------------- /server/migration/1608477467936-ForceDropImdbUniqueConstraint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1608477467936-ForceDropImdbUniqueConstraint.ts -------------------------------------------------------------------------------- /server/migration/1609236552057-RemoveTmdbIdUniqueConstraint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1609236552057-RemoveTmdbIdUniqueConstraint.ts -------------------------------------------------------------------------------- /server/migration/1610070934506-LocalUsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1610070934506-LocalUsers.ts -------------------------------------------------------------------------------- /server/migration/1610370640747-Add4kStatusFields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1610370640747-Add4kStatusFields.ts -------------------------------------------------------------------------------- /server/migration/1610522845513-AddMediaAddedFieldToMedia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1610522845513-AddMediaAddedFieldToMedia.ts -------------------------------------------------------------------------------- /server/migration/1611508672722-AddDisplayNameToUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1611508672722-AddDisplayNameToUser.ts -------------------------------------------------------------------------------- /server/migration/1611757511674-SonarrRadarrSyncServiceFields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1611757511674-SonarrRadarrSyncServiceFields.ts -------------------------------------------------------------------------------- /server/migration/1611801511397-AddRatingKeysToMedia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1611801511397-AddRatingKeysToMedia.ts -------------------------------------------------------------------------------- /server/migration/1612482778137-AddResetPasswordGuidAndExpiryDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1612482778137-AddResetPasswordGuidAndExpiryDate.ts -------------------------------------------------------------------------------- /server/migration/1612571545781-AddLanguageProfileId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1612571545781-AddLanguageProfileId.ts -------------------------------------------------------------------------------- /server/migration/1613615266968-CreateUserSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1613615266968-CreateUserSettings.ts -------------------------------------------------------------------------------- /server/migration/1613955393450-UpdateUserSettingsRegions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1613955393450-UpdateUserSettingsRegions.ts -------------------------------------------------------------------------------- /server/migration/1614334195680-AddTelegramSettingsToUserSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1614334195680-AddTelegramSettingsToUserSettings.ts -------------------------------------------------------------------------------- /server/migration/1615333940450-AddPGPToUserSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1615333940450-AddPGPToUserSettings.ts -------------------------------------------------------------------------------- /server/migration/1616576677254-AddUserQuotaFields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1616576677254-AddUserQuotaFields.ts -------------------------------------------------------------------------------- /server/migration/1617624225464-CreateTagsFieldonMediaRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1617624225464-CreateTagsFieldonMediaRequest.ts -------------------------------------------------------------------------------- /server/migration/1617730837489-AddUserSettingsNotificationAgentsField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1617730837489-AddUserSettingsNotificationAgentsField.ts -------------------------------------------------------------------------------- /server/migration/1618912653565-CreateUserPushSubscriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1618912653565-CreateUserPushSubscriptions.ts -------------------------------------------------------------------------------- /server/migration/1619239659754-AddUserSettingsLocale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1619239659754-AddUserSettingsLocale.ts -------------------------------------------------------------------------------- /server/migration/1619339817343-AddUserSettingsNotificationTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1619339817343-AddUserSettingsNotificationTypes.ts -------------------------------------------------------------------------------- /server/migration/1634904083966-AddIssues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1634904083966-AddIssues.ts -------------------------------------------------------------------------------- /server/migration/1635079863457-AddPushbulletPushoverUserSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1635079863457-AddPushbulletPushoverUserSettings.ts -------------------------------------------------------------------------------- /server/migration/1660632269368-AddWatchlistSyncUserSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1660632269368-AddWatchlistSyncUserSetting.ts -------------------------------------------------------------------------------- /server/migration/1660714479373-AddMediaRequestIsAutoRequestedField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1660714479373-AddMediaRequestIsAutoRequestedField.ts -------------------------------------------------------------------------------- /server/migration/1672041273674-AddDiscoverSlider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1672041273674-AddDiscoverSlider.ts -------------------------------------------------------------------------------- /server/migration/1697393491630-AddUserPushoverSound.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1697393491630-AddUserPushoverSound.ts -------------------------------------------------------------------------------- /server/migration/1714310036946-PostLidarrSupportIntegration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/migration/1714310036946-PostLidarrSupportIntegration.ts -------------------------------------------------------------------------------- /server/models/Collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/models/Collection.ts -------------------------------------------------------------------------------- /server/models/Movie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/models/Movie.ts -------------------------------------------------------------------------------- /server/models/Person.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/models/Person.ts -------------------------------------------------------------------------------- /server/models/Release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/models/Release.ts -------------------------------------------------------------------------------- /server/models/Search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/models/Search.ts -------------------------------------------------------------------------------- /server/models/Tv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/models/Tv.ts -------------------------------------------------------------------------------- /server/models/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/models/common.ts -------------------------------------------------------------------------------- /server/routes/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/routes/auth.ts -------------------------------------------------------------------------------- /server/routes/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/routes/collection.ts -------------------------------------------------------------------------------- /server/routes/discover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/routes/discover.ts -------------------------------------------------------------------------------- /server/routes/imageproxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/routes/imageproxy.ts -------------------------------------------------------------------------------- /server/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/routes/index.ts -------------------------------------------------------------------------------- /server/routes/issue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/routes/issue.ts -------------------------------------------------------------------------------- /server/routes/issueComment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/routes/issueComment.ts -------------------------------------------------------------------------------- /server/routes/media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/routes/media.ts -------------------------------------------------------------------------------- /server/routes/movie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/routes/movie.ts -------------------------------------------------------------------------------- /server/routes/music.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/routes/music.ts -------------------------------------------------------------------------------- /server/routes/person.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/routes/person.ts -------------------------------------------------------------------------------- /server/routes/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/routes/request.ts -------------------------------------------------------------------------------- /server/routes/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/routes/search.ts -------------------------------------------------------------------------------- /server/routes/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/routes/service.ts -------------------------------------------------------------------------------- /server/routes/settings/discover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/routes/settings/discover.ts -------------------------------------------------------------------------------- /server/routes/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/routes/settings/index.ts -------------------------------------------------------------------------------- /server/routes/settings/lidarr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/routes/settings/lidarr.ts -------------------------------------------------------------------------------- /server/routes/settings/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/routes/settings/notifications.ts -------------------------------------------------------------------------------- /server/routes/settings/radarr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/routes/settings/radarr.ts -------------------------------------------------------------------------------- /server/routes/settings/sonarr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/routes/settings/sonarr.ts -------------------------------------------------------------------------------- /server/routes/tv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/routes/tv.ts -------------------------------------------------------------------------------- /server/routes/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/routes/user/index.ts -------------------------------------------------------------------------------- /server/routes/user/usersettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/routes/user/usersettings.ts -------------------------------------------------------------------------------- /server/scripts/prepareTestDb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/scripts/prepareTestDb.ts -------------------------------------------------------------------------------- /server/subscriber/IssueCommentSubscriber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/subscriber/IssueCommentSubscriber.ts -------------------------------------------------------------------------------- /server/subscriber/IssueSubscriber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/subscriber/IssueSubscriber.ts -------------------------------------------------------------------------------- /server/subscriber/MediaSubscriber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/subscriber/MediaSubscriber.ts -------------------------------------------------------------------------------- /server/templates/email/generatedpassword/html.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/templates/email/generatedpassword/html.pug -------------------------------------------------------------------------------- /server/templates/email/generatedpassword/subject.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/templates/email/generatedpassword/subject.pug -------------------------------------------------------------------------------- /server/templates/email/media-issue/html.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/templates/email/media-issue/html.pug -------------------------------------------------------------------------------- /server/templates/email/media-issue/subject.pug: -------------------------------------------------------------------------------- 1 | != `${event} - ${mediaName} [${applicationTitle}]` 2 | -------------------------------------------------------------------------------- /server/templates/email/media-request/html.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/templates/email/media-request/html.pug -------------------------------------------------------------------------------- /server/templates/email/media-request/subject.pug: -------------------------------------------------------------------------------- 1 | != `${event} - ${mediaName} [${applicationTitle}]` 2 | -------------------------------------------------------------------------------- /server/templates/email/resetpassword/html.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/templates/email/resetpassword/html.pug -------------------------------------------------------------------------------- /server/templates/email/resetpassword/subject.pug: -------------------------------------------------------------------------------- 1 | != `Password Reset [${applicationTitle}]` 2 | -------------------------------------------------------------------------------- /server/templates/email/test-email/html.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/templates/email/test-email/html.pug -------------------------------------------------------------------------------- /server/templates/email/test-email/subject.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/templates/email/test-email/subject.pug -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /server/types/express-session.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/types/express-session.d.ts -------------------------------------------------------------------------------- /server/types/express.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/types/express.d.ts -------------------------------------------------------------------------------- /server/types/nodebrainz.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/types/nodebrainz.d.ts -------------------------------------------------------------------------------- /server/types/plex-api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/types/plex-api.d.ts -------------------------------------------------------------------------------- /server/utils/appDataVolume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/utils/appDataVolume.ts -------------------------------------------------------------------------------- /server/utils/appVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/utils/appVersion.ts -------------------------------------------------------------------------------- /server/utils/asyncLock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/utils/asyncLock.ts -------------------------------------------------------------------------------- /server/utils/dateHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/utils/dateHelpers.ts -------------------------------------------------------------------------------- /server/utils/restartFlag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/utils/restartFlag.ts -------------------------------------------------------------------------------- /server/utils/typeHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/server/utils/typeHelpers.ts -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /src/assets/ellipsis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/ellipsis.svg -------------------------------------------------------------------------------- /src/assets/extlogos/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/extlogos/discord.svg -------------------------------------------------------------------------------- /src/assets/extlogos/gotify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/extlogos/gotify.svg -------------------------------------------------------------------------------- /src/assets/extlogos/lunasea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/extlogos/lunasea.svg -------------------------------------------------------------------------------- /src/assets/extlogos/pushbullet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/extlogos/pushbullet.svg -------------------------------------------------------------------------------- /src/assets/extlogos/pushover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/extlogos/pushover.svg -------------------------------------------------------------------------------- /src/assets/extlogos/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/extlogos/slack.svg -------------------------------------------------------------------------------- /src/assets/extlogos/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/extlogos/telegram.svg -------------------------------------------------------------------------------- /src/assets/infinity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/infinity.svg -------------------------------------------------------------------------------- /src/assets/rt_aud_fresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/rt_aud_fresh.svg -------------------------------------------------------------------------------- /src/assets/rt_aud_rotten.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/rt_aud_rotten.svg -------------------------------------------------------------------------------- /src/assets/rt_fresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/rt_fresh.svg -------------------------------------------------------------------------------- /src/assets/rt_rotten.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/rt_rotten.svg -------------------------------------------------------------------------------- /src/assets/services/imdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/services/imdb.svg -------------------------------------------------------------------------------- /src/assets/services/lidarr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/services/lidarr.svg -------------------------------------------------------------------------------- /src/assets/services/plex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/services/plex.svg -------------------------------------------------------------------------------- /src/assets/services/radarr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/services/radarr.svg -------------------------------------------------------------------------------- /src/assets/services/rt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/services/rt.svg -------------------------------------------------------------------------------- /src/assets/services/sonarr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/services/sonarr.svg -------------------------------------------------------------------------------- /src/assets/services/tmdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/services/tmdb.svg -------------------------------------------------------------------------------- /src/assets/services/trakt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/services/trakt.svg -------------------------------------------------------------------------------- /src/assets/services/tvdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/services/tvdb.svg -------------------------------------------------------------------------------- /src/assets/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/spinner.svg -------------------------------------------------------------------------------- /src/assets/tmdb_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/assets/tmdb_logo.svg -------------------------------------------------------------------------------- /src/components/AirDateBadge/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/AirDateBadge/index.tsx -------------------------------------------------------------------------------- /src/components/AppDataWarning/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/AppDataWarning/index.tsx -------------------------------------------------------------------------------- /src/components/CollectionDetails/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/CollectionDetails/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Accordion/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/Accordion/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Alert/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/Alert/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Badge/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/Badge/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/Button/index.tsx -------------------------------------------------------------------------------- /src/components/Common/ButtonWithDropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/ButtonWithDropdown/index.tsx -------------------------------------------------------------------------------- /src/components/Common/CachedImage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/CachedImage/index.tsx -------------------------------------------------------------------------------- /src/components/Common/ConfirmButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/ConfirmButton/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/Header/index.tsx -------------------------------------------------------------------------------- /src/components/Common/ImageFader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/ImageFader/index.tsx -------------------------------------------------------------------------------- /src/components/Common/List/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/List/index.tsx -------------------------------------------------------------------------------- /src/components/Common/ListView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/ListView/index.tsx -------------------------------------------------------------------------------- /src/components/Common/LoadingSpinner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/LoadingSpinner/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/Modal/index.tsx -------------------------------------------------------------------------------- /src/components/Common/MultiRangeSlider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/MultiRangeSlider/index.tsx -------------------------------------------------------------------------------- /src/components/Common/PageTitle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/PageTitle/index.tsx -------------------------------------------------------------------------------- /src/components/Common/PlayButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/PlayButton/index.tsx -------------------------------------------------------------------------------- /src/components/Common/ProgressCircle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/ProgressCircle/index.tsx -------------------------------------------------------------------------------- /src/components/Common/SensitiveInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/SensitiveInput/index.tsx -------------------------------------------------------------------------------- /src/components/Common/SettingsTabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/SettingsTabs/index.tsx -------------------------------------------------------------------------------- /src/components/Common/SlideCheckbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/SlideCheckbox/index.tsx -------------------------------------------------------------------------------- /src/components/Common/SlideOver/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/SlideOver/index.tsx -------------------------------------------------------------------------------- /src/components/Common/StatusBadgeMini/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/StatusBadgeMini/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/Table/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Tag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/Tag/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Tooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Common/Tooltip/index.tsx -------------------------------------------------------------------------------- /src/components/CompanyCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/CompanyCard/index.tsx -------------------------------------------------------------------------------- /src/components/CompanyTag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/CompanyTag/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/CreateSlider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/CreateSlider/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/DiscoverMovieGenre/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/DiscoverMovieGenre/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/DiscoverMovieKeyword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/DiscoverMovieKeyword/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/DiscoverMovieLanguage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/DiscoverMovieLanguage/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/DiscoverMovies/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/DiscoverMovies/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/DiscoverMusic/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/DiscoverMusic/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/DiscoverNetwork/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/DiscoverNetwork/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/DiscoverSliderEdit/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/DiscoverSliderEdit/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/DiscoverStudio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/DiscoverStudio/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/DiscoverTv/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/DiscoverTv/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/DiscoverTvGenre/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/DiscoverTvGenre/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/DiscoverTvKeyword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/DiscoverTvKeyword/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/DiscoverTvLanguage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/DiscoverTvLanguage/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/DiscoverTvUpcoming.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/DiscoverTvUpcoming.tsx -------------------------------------------------------------------------------- /src/components/Discover/DiscoverWatchlist/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/DiscoverWatchlist/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/FilterSlideover/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/FilterSlideover/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/MovieGenreList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/MovieGenreList/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/MovieGenreSlider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/MovieGenreSlider/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/NetworkSlider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/NetworkSlider/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/PlexWatchlistSlider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/PlexWatchlistSlider/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/RecentRequestsSlider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/RecentRequestsSlider/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/RecentlyAddedSlider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/RecentlyAddedSlider/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/StudioSlider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/StudioSlider/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/Trending.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/Trending.tsx -------------------------------------------------------------------------------- /src/components/Discover/TvGenreList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/TvGenreList/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/TvGenreSlider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/TvGenreSlider/index.tsx -------------------------------------------------------------------------------- /src/components/Discover/Upcoming.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/Upcoming.tsx -------------------------------------------------------------------------------- /src/components/Discover/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/constants.ts -------------------------------------------------------------------------------- /src/components/Discover/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Discover/index.tsx -------------------------------------------------------------------------------- /src/components/DownloadBlock/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/DownloadBlock/index.tsx -------------------------------------------------------------------------------- /src/components/ExternalLinkBlock/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/ExternalLinkBlock/index.tsx -------------------------------------------------------------------------------- /src/components/GenreCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/GenreCard/index.tsx -------------------------------------------------------------------------------- /src/components/GenreTag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/GenreTag/index.tsx -------------------------------------------------------------------------------- /src/components/IssueBlock/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/IssueBlock/index.tsx -------------------------------------------------------------------------------- /src/components/IssueDetails/IssueComment/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/IssueDetails/IssueComment/index.tsx -------------------------------------------------------------------------------- /src/components/IssueDetails/IssueDescription/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/IssueDetails/IssueDescription/index.tsx -------------------------------------------------------------------------------- /src/components/IssueDetails/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/IssueDetails/index.tsx -------------------------------------------------------------------------------- /src/components/IssueList/IssueItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/IssueList/IssueItem/index.tsx -------------------------------------------------------------------------------- /src/components/IssueList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/IssueList/index.tsx -------------------------------------------------------------------------------- /src/components/IssueModal/CreateIssueModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/IssueModal/CreateIssueModal/index.tsx -------------------------------------------------------------------------------- /src/components/IssueModal/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/IssueModal/constants.ts -------------------------------------------------------------------------------- /src/components/IssueModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/IssueModal/index.tsx -------------------------------------------------------------------------------- /src/components/JSONEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/JSONEditor/index.tsx -------------------------------------------------------------------------------- /src/components/KeywordTag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/KeywordTag/index.tsx -------------------------------------------------------------------------------- /src/components/LanguageSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/LanguageSelector/index.tsx -------------------------------------------------------------------------------- /src/components/Layout/LanguagePicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Layout/LanguagePicker/index.tsx -------------------------------------------------------------------------------- /src/components/Layout/MobileMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Layout/MobileMenu/index.tsx -------------------------------------------------------------------------------- /src/components/Layout/Notifications/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Layout/Notifications/index.tsx -------------------------------------------------------------------------------- /src/components/Layout/PullToRefresh/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Layout/PullToRefresh/index.tsx -------------------------------------------------------------------------------- /src/components/Layout/SearchInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Layout/SearchInput/index.tsx -------------------------------------------------------------------------------- /src/components/Layout/Sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Layout/Sidebar/index.tsx -------------------------------------------------------------------------------- /src/components/Layout/UserDropdown/MiniQuotaDisplay/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Layout/UserDropdown/MiniQuotaDisplay/index.tsx -------------------------------------------------------------------------------- /src/components/Layout/UserDropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Layout/UserDropdown/index.tsx -------------------------------------------------------------------------------- /src/components/Layout/VersionStatus/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Layout/VersionStatus/index.tsx -------------------------------------------------------------------------------- /src/components/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Layout/index.tsx -------------------------------------------------------------------------------- /src/components/LoadingBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/LoadingBar/index.tsx -------------------------------------------------------------------------------- /src/components/Login/LocalLogin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Login/LocalLogin.tsx -------------------------------------------------------------------------------- /src/components/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Login/index.tsx -------------------------------------------------------------------------------- /src/components/ManageSlideOver/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/ManageSlideOver/index.tsx -------------------------------------------------------------------------------- /src/components/MediaSlider/ShowMoreCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/MediaSlider/ShowMoreCard/index.tsx -------------------------------------------------------------------------------- /src/components/MediaSlider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/MediaSlider/index.tsx -------------------------------------------------------------------------------- /src/components/MovieDetails/MovieCast/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/MovieDetails/MovieCast/index.tsx -------------------------------------------------------------------------------- /src/components/MovieDetails/MovieCrew/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/MovieDetails/MovieCrew/index.tsx -------------------------------------------------------------------------------- /src/components/MovieDetails/MovieRecommendations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/MovieDetails/MovieRecommendations.tsx -------------------------------------------------------------------------------- /src/components/MovieDetails/MovieSimilar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/MovieDetails/MovieSimilar.tsx -------------------------------------------------------------------------------- /src/components/MovieDetails/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/MovieDetails/index.tsx -------------------------------------------------------------------------------- /src/components/MusicDetails/ArtistDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/MusicDetails/ArtistDetails.tsx -------------------------------------------------------------------------------- /src/components/MusicDetails/ReleaseDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/MusicDetails/ReleaseDetails.tsx -------------------------------------------------------------------------------- /src/components/MusicDetails/ReleaseGroupDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/MusicDetails/ReleaseGroupDetails.tsx -------------------------------------------------------------------------------- /src/components/MusicDetails/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/MusicDetails/index.tsx -------------------------------------------------------------------------------- /src/components/MusicSearch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/MusicSearch/index.tsx -------------------------------------------------------------------------------- /src/components/NotificationTypeSelector/NotificationType/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/NotificationTypeSelector/NotificationType/index.tsx -------------------------------------------------------------------------------- /src/components/NotificationTypeSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/NotificationTypeSelector/index.tsx -------------------------------------------------------------------------------- /src/components/PWAHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/PWAHeader/index.tsx -------------------------------------------------------------------------------- /src/components/PermissionEdit/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/PermissionEdit/index.tsx -------------------------------------------------------------------------------- /src/components/PermissionOption/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/PermissionOption/index.tsx -------------------------------------------------------------------------------- /src/components/PersonCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/PersonCard/index.tsx -------------------------------------------------------------------------------- /src/components/PersonDetails/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/PersonDetails/index.tsx -------------------------------------------------------------------------------- /src/components/PlexLoginButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/PlexLoginButton/index.tsx -------------------------------------------------------------------------------- /src/components/QuotaSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/QuotaSelector/index.tsx -------------------------------------------------------------------------------- /src/components/RegionSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/RegionSelector/index.tsx -------------------------------------------------------------------------------- /src/components/RequestBlock/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/RequestBlock/index.tsx -------------------------------------------------------------------------------- /src/components/RequestButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/RequestButton/index.tsx -------------------------------------------------------------------------------- /src/components/RequestCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/RequestCard/index.tsx -------------------------------------------------------------------------------- /src/components/RequestList/RequestItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/RequestList/RequestItem/index.tsx -------------------------------------------------------------------------------- /src/components/RequestList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/RequestList/index.tsx -------------------------------------------------------------------------------- /src/components/RequestModal/AdvancedRequester/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/RequestModal/AdvancedRequester/index.tsx -------------------------------------------------------------------------------- /src/components/RequestModal/ArtistRequestModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/RequestModal/ArtistRequestModal.tsx -------------------------------------------------------------------------------- /src/components/RequestModal/CollectionRequestModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/RequestModal/CollectionRequestModal.tsx -------------------------------------------------------------------------------- /src/components/RequestModal/MovieRequestModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/RequestModal/MovieRequestModal.tsx -------------------------------------------------------------------------------- /src/components/RequestModal/QuotaDisplay/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/RequestModal/QuotaDisplay/index.tsx -------------------------------------------------------------------------------- /src/components/RequestModal/ReleaseRequestModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/RequestModal/ReleaseRequestModal.tsx -------------------------------------------------------------------------------- /src/components/RequestModal/SearchByNameModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/RequestModal/SearchByNameModal/index.tsx -------------------------------------------------------------------------------- /src/components/RequestModal/TvRequestModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/RequestModal/TvRequestModal.tsx -------------------------------------------------------------------------------- /src/components/RequestModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/RequestModal/index.tsx -------------------------------------------------------------------------------- /src/components/ResetPassword/RequestResetLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/ResetPassword/RequestResetLink.tsx -------------------------------------------------------------------------------- /src/components/ResetPassword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/ResetPassword/index.tsx -------------------------------------------------------------------------------- /src/components/Search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Search/index.tsx -------------------------------------------------------------------------------- /src/components/Selector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Selector/index.tsx -------------------------------------------------------------------------------- /src/components/ServiceWorkerSetup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/ServiceWorkerSetup/index.tsx -------------------------------------------------------------------------------- /src/components/Settings/CopyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/CopyButton.tsx -------------------------------------------------------------------------------- /src/components/Settings/LibraryItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/LibraryItem.tsx -------------------------------------------------------------------------------- /src/components/Settings/LidarrModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/LidarrModal/index.tsx -------------------------------------------------------------------------------- /src/components/Settings/Notifications/NotificationsDiscord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/Notifications/NotificationsDiscord.tsx -------------------------------------------------------------------------------- /src/components/Settings/Notifications/NotificationsEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/Notifications/NotificationsEmail.tsx -------------------------------------------------------------------------------- /src/components/Settings/Notifications/NotificationsGotify/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/Notifications/NotificationsGotify/index.tsx -------------------------------------------------------------------------------- /src/components/Settings/Notifications/NotificationsLunaSea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/Notifications/NotificationsLunaSea/index.tsx -------------------------------------------------------------------------------- /src/components/Settings/Notifications/NotificationsPushbullet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/Notifications/NotificationsPushbullet/index.tsx -------------------------------------------------------------------------------- /src/components/Settings/Notifications/NotificationsPushover/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/Notifications/NotificationsPushover/index.tsx -------------------------------------------------------------------------------- /src/components/Settings/Notifications/NotificationsSlack/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/Notifications/NotificationsSlack/index.tsx -------------------------------------------------------------------------------- /src/components/Settings/Notifications/NotificationsTelegram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/Notifications/NotificationsTelegram.tsx -------------------------------------------------------------------------------- /src/components/Settings/Notifications/NotificationsWebPush/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/Notifications/NotificationsWebPush/index.tsx -------------------------------------------------------------------------------- /src/components/Settings/Notifications/NotificationsWebhook/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/Notifications/NotificationsWebhook/index.tsx -------------------------------------------------------------------------------- /src/components/Settings/RadarrModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/RadarrModal/index.tsx -------------------------------------------------------------------------------- /src/components/Settings/SettingsAbout/Releases/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/SettingsAbout/Releases/index.tsx -------------------------------------------------------------------------------- /src/components/Settings/SettingsAbout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/SettingsAbout/index.tsx -------------------------------------------------------------------------------- /src/components/Settings/SettingsBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/SettingsBadge.tsx -------------------------------------------------------------------------------- /src/components/Settings/SettingsJobsCache/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/SettingsJobsCache/index.tsx -------------------------------------------------------------------------------- /src/components/Settings/SettingsLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/SettingsLayout.tsx -------------------------------------------------------------------------------- /src/components/Settings/SettingsLogs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/SettingsLogs/index.tsx -------------------------------------------------------------------------------- /src/components/Settings/SettingsMain/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/SettingsMain/index.tsx -------------------------------------------------------------------------------- /src/components/Settings/SettingsNotifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/SettingsNotifications.tsx -------------------------------------------------------------------------------- /src/components/Settings/SettingsPlex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/SettingsPlex.tsx -------------------------------------------------------------------------------- /src/components/Settings/SettingsServices.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/SettingsServices.tsx -------------------------------------------------------------------------------- /src/components/Settings/SettingsUsers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/SettingsUsers/index.tsx -------------------------------------------------------------------------------- /src/components/Settings/SonarrModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Settings/SonarrModal/index.tsx -------------------------------------------------------------------------------- /src/components/Setup/LoginWithPlex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Setup/LoginWithPlex.tsx -------------------------------------------------------------------------------- /src/components/Setup/SetupSteps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Setup/SetupSteps.tsx -------------------------------------------------------------------------------- /src/components/Setup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Setup/index.tsx -------------------------------------------------------------------------------- /src/components/Slider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Slider/index.tsx -------------------------------------------------------------------------------- /src/components/StatusBadge/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/StatusBadge/index.tsx -------------------------------------------------------------------------------- /src/components/StatusChecker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/StatusChecker/index.tsx -------------------------------------------------------------------------------- /src/components/TitleCard/ErrorCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/TitleCard/ErrorCard.tsx -------------------------------------------------------------------------------- /src/components/TitleCard/FetchedDataTitleCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/TitleCard/FetchedDataTitleCard.tsx -------------------------------------------------------------------------------- /src/components/TitleCard/MusicTitleCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/TitleCard/MusicTitleCard.tsx -------------------------------------------------------------------------------- /src/components/TitleCard/Placeholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/TitleCard/Placeholder.tsx -------------------------------------------------------------------------------- /src/components/TitleCard/TmdbTitleCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/TitleCard/TmdbTitleCard.tsx -------------------------------------------------------------------------------- /src/components/TitleCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/TitleCard/index.tsx -------------------------------------------------------------------------------- /src/components/Toast/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/Toast/index.tsx -------------------------------------------------------------------------------- /src/components/ToastContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/ToastContainer/index.tsx -------------------------------------------------------------------------------- /src/components/TvDetails/Season/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/TvDetails/Season/index.tsx -------------------------------------------------------------------------------- /src/components/TvDetails/TvCast/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/TvDetails/TvCast/index.tsx -------------------------------------------------------------------------------- /src/components/TvDetails/TvCrew/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/TvDetails/TvCrew/index.tsx -------------------------------------------------------------------------------- /src/components/TvDetails/TvRecommendations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/TvDetails/TvRecommendations.tsx -------------------------------------------------------------------------------- /src/components/TvDetails/TvSimilar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/TvDetails/TvSimilar.tsx -------------------------------------------------------------------------------- /src/components/TvDetails/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/TvDetails/index.tsx -------------------------------------------------------------------------------- /src/components/UserList/BulkEditModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/UserList/BulkEditModal.tsx -------------------------------------------------------------------------------- /src/components/UserList/PlexImportModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/UserList/PlexImportModal.tsx -------------------------------------------------------------------------------- /src/components/UserList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/UserList/index.tsx -------------------------------------------------------------------------------- /src/components/UserProfile/ProfileHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/UserProfile/ProfileHeader/index.tsx -------------------------------------------------------------------------------- /src/components/UserProfile/UserSettings/UserGeneralSettings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/UserProfile/UserSettings/UserGeneralSettings/index.tsx -------------------------------------------------------------------------------- /src/components/UserProfile/UserSettings/UserNotificationSettings/UserNotificationsDiscord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/UserProfile/UserSettings/UserNotificationSettings/UserNotificationsDiscord.tsx -------------------------------------------------------------------------------- /src/components/UserProfile/UserSettings/UserNotificationSettings/UserNotificationsEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/UserProfile/UserSettings/UserNotificationSettings/UserNotificationsEmail.tsx -------------------------------------------------------------------------------- /src/components/UserProfile/UserSettings/UserNotificationSettings/UserNotificationsPushbullet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/UserProfile/UserSettings/UserNotificationSettings/UserNotificationsPushbullet.tsx -------------------------------------------------------------------------------- /src/components/UserProfile/UserSettings/UserNotificationSettings/UserNotificationsPushover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/UserProfile/UserSettings/UserNotificationSettings/UserNotificationsPushover.tsx -------------------------------------------------------------------------------- /src/components/UserProfile/UserSettings/UserNotificationSettings/UserNotificationsTelegram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/UserProfile/UserSettings/UserNotificationSettings/UserNotificationsTelegram.tsx -------------------------------------------------------------------------------- /src/components/UserProfile/UserSettings/UserNotificationSettings/UserNotificationsWebPush.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/UserProfile/UserSettings/UserNotificationSettings/UserNotificationsWebPush.tsx -------------------------------------------------------------------------------- /src/components/UserProfile/UserSettings/UserNotificationSettings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/UserProfile/UserSettings/UserNotificationSettings/index.tsx -------------------------------------------------------------------------------- /src/components/UserProfile/UserSettings/UserPasswordChange/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/UserProfile/UserSettings/UserPasswordChange/index.tsx -------------------------------------------------------------------------------- /src/components/UserProfile/UserSettings/UserPermissions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/UserProfile/UserSettings/UserPermissions/index.tsx -------------------------------------------------------------------------------- /src/components/UserProfile/UserSettings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/UserProfile/UserSettings/index.tsx -------------------------------------------------------------------------------- /src/components/UserProfile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/components/UserProfile/index.tsx -------------------------------------------------------------------------------- /src/context/InteractionContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/context/InteractionContext.tsx -------------------------------------------------------------------------------- /src/context/LanguageContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/context/LanguageContext.tsx -------------------------------------------------------------------------------- /src/context/SettingsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/context/SettingsContext.tsx -------------------------------------------------------------------------------- /src/context/UserContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/context/UserContext.tsx -------------------------------------------------------------------------------- /src/hooks/useClickOutside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/hooks/useClickOutside.ts -------------------------------------------------------------------------------- /src/hooks/useDebouncedState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/hooks/useDebouncedState.ts -------------------------------------------------------------------------------- /src/hooks/useDeepLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/hooks/useDeepLinks.ts -------------------------------------------------------------------------------- /src/hooks/useDiscover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/hooks/useDiscover.ts -------------------------------------------------------------------------------- /src/hooks/useInteraction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/hooks/useInteraction.ts -------------------------------------------------------------------------------- /src/hooks/useIsTouch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/hooks/useIsTouch.ts -------------------------------------------------------------------------------- /src/hooks/useLocale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/hooks/useLocale.ts -------------------------------------------------------------------------------- /src/hooks/useLockBodyScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/hooks/useLockBodyScroll.ts -------------------------------------------------------------------------------- /src/hooks/useRequestOverride.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/hooks/useRequestOverride.ts -------------------------------------------------------------------------------- /src/hooks/useRouteGuard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/hooks/useRouteGuard.ts -------------------------------------------------------------------------------- /src/hooks/useSearchInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/hooks/useSearchInput.ts -------------------------------------------------------------------------------- /src/hooks/useSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/hooks/useSettings.ts -------------------------------------------------------------------------------- /src/hooks/useUpdateQueryParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/hooks/useUpdateQueryParams.ts -------------------------------------------------------------------------------- /src/hooks/useUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/hooks/useUser.ts -------------------------------------------------------------------------------- /src/hooks/useVerticalScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/hooks/useVerticalScroll.ts -------------------------------------------------------------------------------- /src/i18n/globalMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/globalMessages.ts -------------------------------------------------------------------------------- /src/i18n/locale/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/ar.json -------------------------------------------------------------------------------- /src/i18n/locale/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/bg.json -------------------------------------------------------------------------------- /src/i18n/locale/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/ca.json -------------------------------------------------------------------------------- /src/i18n/locale/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/cs.json -------------------------------------------------------------------------------- /src/i18n/locale/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/da.json -------------------------------------------------------------------------------- /src/i18n/locale/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/de.json -------------------------------------------------------------------------------- /src/i18n/locale/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/el.json -------------------------------------------------------------------------------- /src/i18n/locale/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/en.json -------------------------------------------------------------------------------- /src/i18n/locale/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/es.json -------------------------------------------------------------------------------- /src/i18n/locale/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/fi.json -------------------------------------------------------------------------------- /src/i18n/locale/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/fr.json -------------------------------------------------------------------------------- /src/i18n/locale/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/he.json -------------------------------------------------------------------------------- /src/i18n/locale/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/hi.json -------------------------------------------------------------------------------- /src/i18n/locale/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/hr.json -------------------------------------------------------------------------------- /src/i18n/locale/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/hu.json -------------------------------------------------------------------------------- /src/i18n/locale/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/it.json -------------------------------------------------------------------------------- /src/i18n/locale/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/ja.json -------------------------------------------------------------------------------- /src/i18n/locale/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/ko.json -------------------------------------------------------------------------------- /src/i18n/locale/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/lt.json -------------------------------------------------------------------------------- /src/i18n/locale/nb_NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/nb_NO.json -------------------------------------------------------------------------------- /src/i18n/locale/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/nl.json -------------------------------------------------------------------------------- /src/i18n/locale/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/pl.json -------------------------------------------------------------------------------- /src/i18n/locale/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/pt_BR.json -------------------------------------------------------------------------------- /src/i18n/locale/pt_PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/pt_PT.json -------------------------------------------------------------------------------- /src/i18n/locale/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/ro.json -------------------------------------------------------------------------------- /src/i18n/locale/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/ru.json -------------------------------------------------------------------------------- /src/i18n/locale/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/sq.json -------------------------------------------------------------------------------- /src/i18n/locale/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/sr.json -------------------------------------------------------------------------------- /src/i18n/locale/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/sv.json -------------------------------------------------------------------------------- /src/i18n/locale/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/uk.json -------------------------------------------------------------------------------- /src/i18n/locale/zh_Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/zh_Hans.json -------------------------------------------------------------------------------- /src/i18n/locale/zh_Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/i18n/locale/zh_Hant.json -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/_error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/_error.tsx -------------------------------------------------------------------------------- /src/pages/collection/[collectionId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/collection/[collectionId]/index.tsx -------------------------------------------------------------------------------- /src/pages/discover/movies/genre/[genreId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/discover/movies/genre/[genreId]/index.tsx -------------------------------------------------------------------------------- /src/pages/discover/movies/genres.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/discover/movies/genres.tsx -------------------------------------------------------------------------------- /src/pages/discover/movies/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/discover/movies/index.tsx -------------------------------------------------------------------------------- /src/pages/discover/movies/keyword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/discover/movies/keyword/index.tsx -------------------------------------------------------------------------------- /src/pages/discover/movies/language/[language]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/discover/movies/language/[language]/index.tsx -------------------------------------------------------------------------------- /src/pages/discover/movies/studio/[studioId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/discover/movies/studio/[studioId]/index.tsx -------------------------------------------------------------------------------- /src/pages/discover/movies/upcoming.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/discover/movies/upcoming.tsx -------------------------------------------------------------------------------- /src/pages/discover/music/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/discover/music/index.tsx -------------------------------------------------------------------------------- /src/pages/discover/trending.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/discover/trending.tsx -------------------------------------------------------------------------------- /src/pages/discover/tv/genre/[genreId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/discover/tv/genre/[genreId]/index.tsx -------------------------------------------------------------------------------- /src/pages/discover/tv/genres.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/discover/tv/genres.tsx -------------------------------------------------------------------------------- /src/pages/discover/tv/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/discover/tv/index.tsx -------------------------------------------------------------------------------- /src/pages/discover/tv/keyword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/discover/tv/keyword/index.tsx -------------------------------------------------------------------------------- /src/pages/discover/tv/language/[language]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/discover/tv/language/[language]/index.tsx -------------------------------------------------------------------------------- /src/pages/discover/tv/network/[networkId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/discover/tv/network/[networkId]/index.tsx -------------------------------------------------------------------------------- /src/pages/discover/tv/upcoming.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/discover/tv/upcoming.tsx -------------------------------------------------------------------------------- /src/pages/discover/watchlist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/discover/watchlist.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/issues/[issueId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/issues/[issueId]/index.tsx -------------------------------------------------------------------------------- /src/pages/issues/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/issues/index.tsx -------------------------------------------------------------------------------- /src/pages/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/login/index.tsx -------------------------------------------------------------------------------- /src/pages/login/plex/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/login/plex/loading.tsx -------------------------------------------------------------------------------- /src/pages/movie/[movieId]/cast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/movie/[movieId]/cast.tsx -------------------------------------------------------------------------------- /src/pages/movie/[movieId]/crew.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/movie/[movieId]/crew.tsx -------------------------------------------------------------------------------- /src/pages/movie/[movieId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/movie/[movieId]/index.tsx -------------------------------------------------------------------------------- /src/pages/movie/[movieId]/recommendations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/movie/[movieId]/recommendations.tsx -------------------------------------------------------------------------------- /src/pages/movie/[movieId]/similar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/movie/[movieId]/similar.tsx -------------------------------------------------------------------------------- /src/pages/music-search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/music-search.tsx -------------------------------------------------------------------------------- /src/pages/music/[type]/[mbId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/music/[type]/[mbId]/index.tsx -------------------------------------------------------------------------------- /src/pages/person/[personId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/person/[personId]/index.tsx -------------------------------------------------------------------------------- /src/pages/profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/profile/index.tsx -------------------------------------------------------------------------------- /src/pages/profile/requests.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/profile/requests.tsx -------------------------------------------------------------------------------- /src/pages/profile/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/profile/settings/index.tsx -------------------------------------------------------------------------------- /src/pages/profile/settings/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/profile/settings/main.tsx -------------------------------------------------------------------------------- /src/pages/profile/settings/notifications/discord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/profile/settings/notifications/discord.tsx -------------------------------------------------------------------------------- /src/pages/profile/settings/notifications/email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/profile/settings/notifications/email.tsx -------------------------------------------------------------------------------- /src/pages/profile/settings/notifications/pushbullet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/profile/settings/notifications/pushbullet.tsx -------------------------------------------------------------------------------- /src/pages/profile/settings/notifications/pushover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/profile/settings/notifications/pushover.tsx -------------------------------------------------------------------------------- /src/pages/profile/settings/notifications/telegram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/profile/settings/notifications/telegram.tsx -------------------------------------------------------------------------------- /src/pages/profile/settings/notifications/webpush.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/profile/settings/notifications/webpush.tsx -------------------------------------------------------------------------------- /src/pages/profile/settings/password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/profile/settings/password.tsx -------------------------------------------------------------------------------- /src/pages/profile/settings/permissions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/profile/settings/permissions.tsx -------------------------------------------------------------------------------- /src/pages/profile/watchlist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/profile/watchlist.tsx -------------------------------------------------------------------------------- /src/pages/requests/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/requests/index.tsx -------------------------------------------------------------------------------- /src/pages/resetpassword/[guid]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/resetpassword/[guid]/index.tsx -------------------------------------------------------------------------------- /src/pages/resetpassword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/resetpassword/index.tsx -------------------------------------------------------------------------------- /src/pages/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/search.tsx -------------------------------------------------------------------------------- /src/pages/settings/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/settings/about.tsx -------------------------------------------------------------------------------- /src/pages/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/settings/index.tsx -------------------------------------------------------------------------------- /src/pages/settings/jobs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/settings/jobs.tsx -------------------------------------------------------------------------------- /src/pages/settings/logs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/settings/logs.tsx -------------------------------------------------------------------------------- /src/pages/settings/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/settings/main.tsx -------------------------------------------------------------------------------- /src/pages/settings/notifications/discord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/settings/notifications/discord.tsx -------------------------------------------------------------------------------- /src/pages/settings/notifications/email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/settings/notifications/email.tsx -------------------------------------------------------------------------------- /src/pages/settings/notifications/gotify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/settings/notifications/gotify.tsx -------------------------------------------------------------------------------- /src/pages/settings/notifications/lunasea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/settings/notifications/lunasea.tsx -------------------------------------------------------------------------------- /src/pages/settings/notifications/pushbullet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/settings/notifications/pushbullet.tsx -------------------------------------------------------------------------------- /src/pages/settings/notifications/pushover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/settings/notifications/pushover.tsx -------------------------------------------------------------------------------- /src/pages/settings/notifications/slack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/settings/notifications/slack.tsx -------------------------------------------------------------------------------- /src/pages/settings/notifications/telegram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/settings/notifications/telegram.tsx -------------------------------------------------------------------------------- /src/pages/settings/notifications/webhook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/settings/notifications/webhook.tsx -------------------------------------------------------------------------------- /src/pages/settings/notifications/webpush.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/settings/notifications/webpush.tsx -------------------------------------------------------------------------------- /src/pages/settings/plex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/settings/plex.tsx -------------------------------------------------------------------------------- /src/pages/settings/services.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/settings/services.tsx -------------------------------------------------------------------------------- /src/pages/settings/users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/settings/users.tsx -------------------------------------------------------------------------------- /src/pages/setup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/setup.tsx -------------------------------------------------------------------------------- /src/pages/tv/[tvId]/cast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/tv/[tvId]/cast.tsx -------------------------------------------------------------------------------- /src/pages/tv/[tvId]/crew.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/tv/[tvId]/crew.tsx -------------------------------------------------------------------------------- /src/pages/tv/[tvId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/tv/[tvId]/index.tsx -------------------------------------------------------------------------------- /src/pages/tv/[tvId]/recommendations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/tv/[tvId]/recommendations.tsx -------------------------------------------------------------------------------- /src/pages/tv/[tvId]/similar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/tv/[tvId]/similar.tsx -------------------------------------------------------------------------------- /src/pages/users/[userId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/users/[userId]/index.tsx -------------------------------------------------------------------------------- /src/pages/users/[userId]/requests.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/users/[userId]/requests.tsx -------------------------------------------------------------------------------- /src/pages/users/[userId]/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/users/[userId]/settings/index.tsx -------------------------------------------------------------------------------- /src/pages/users/[userId]/settings/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/users/[userId]/settings/main.tsx -------------------------------------------------------------------------------- /src/pages/users/[userId]/settings/notifications/discord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/users/[userId]/settings/notifications/discord.tsx -------------------------------------------------------------------------------- /src/pages/users/[userId]/settings/notifications/email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/users/[userId]/settings/notifications/email.tsx -------------------------------------------------------------------------------- /src/pages/users/[userId]/settings/notifications/pushbullet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/users/[userId]/settings/notifications/pushbullet.tsx -------------------------------------------------------------------------------- /src/pages/users/[userId]/settings/notifications/pushover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/users/[userId]/settings/notifications/pushover.tsx -------------------------------------------------------------------------------- /src/pages/users/[userId]/settings/notifications/telegram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/users/[userId]/settings/notifications/telegram.tsx -------------------------------------------------------------------------------- /src/pages/users/[userId]/settings/notifications/webpush.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/users/[userId]/settings/notifications/webpush.tsx -------------------------------------------------------------------------------- /src/pages/users/[userId]/settings/password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/users/[userId]/settings/password.tsx -------------------------------------------------------------------------------- /src/pages/users/[userId]/settings/permissions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/users/[userId]/settings/permissions.tsx -------------------------------------------------------------------------------- /src/pages/users/[userId]/watchlist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/users/[userId]/watchlist.tsx -------------------------------------------------------------------------------- /src/pages/users/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/pages/users/index.tsx -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/types/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/types/custom.d.ts -------------------------------------------------------------------------------- /src/types/react-intl-auto.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/types/react-intl-auto.d.ts -------------------------------------------------------------------------------- /src/utils/creditHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/utils/creditHelpers.ts -------------------------------------------------------------------------------- /src/utils/numberHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/utils/numberHelpers.ts -------------------------------------------------------------------------------- /src/utils/plex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/utils/plex.ts -------------------------------------------------------------------------------- /src/utils/polyfillIntl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/utils/polyfillIntl.ts -------------------------------------------------------------------------------- /src/utils/refreshIntervalHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/utils/refreshIntervalHelper.ts -------------------------------------------------------------------------------- /src/utils/typeHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/src/utils/typeHelpers.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ano0002/Overseerr-Lidarr-Integration/HEAD/yarn.lock --------------------------------------------------------------------------------