Some checks failed
Seerr CI / i18n Check (push) Has been cancelled
Seerr CI / Lint & Test Build (push) Has been cancelled
Seerr CI / Build (per-arch, native runners) (amd64, linux/amd64, ubuntu-24.04) (push) Has been cancelled
Seerr CI / Build (per-arch, native runners) (arm64, linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Seerr CI / Publish multi-arch image (push) Has been cancelled
Seerr CI / Send Discord Notification (push) Has been cancelled
CodeQL / Analyze (actions) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
Merge Conflict Labeler / Labeling (push) Has been cancelled
- Add CHANNELS_DVR to MediaServerType enum - Create channelsdvr.ts API client with full REST support - Implement library scanner with TMDb lookup - Add settings interface and configuration - Document implementation in CHANNELS_DVR_INTEGRATION.md Phase 1 (Core Integration) complete. Ready for testing.
13 lines
168 B
TypeScript
13 lines
168 B
TypeScript
export enum MediaServerType {
|
|
PLEX = 1,
|
|
JELLYFIN,
|
|
EMBY,
|
|
CHANNELS_DVR,
|
|
NOT_CONFIGURED,
|
|
}
|
|
|
|
export enum ServerType {
|
|
JELLYFIN = 'Jellyfin',
|
|
EMBY = 'Emby',
|
|
}
|