@muhammedaksam/easiarr 0.6.0 → 0.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muhammedaksam/easiarr",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "description": "TUI tool for generating docker-compose files for the *arr media ecosystem with 41 apps, TRaSH Guides best practices, VPN routing, and Traefik reverse proxy support",
5
5
  "module": "src/index.ts",
6
6
  "type": "module",
@@ -65,7 +65,7 @@ export interface Application {
65
65
  tags: number[]
66
66
  }
67
67
 
68
- export type ArrAppType = "Radarr" | "Sonarr" | "Lidarr" | "Readarr"
68
+ export type ArrAppType = "Radarr" | "Sonarr" | "Lidarr" | "Readarr" | "Whisparr" | "Mylar"
69
69
 
70
70
  export class ProwlarrClient {
71
71
  private baseUrl: string
@@ -142,6 +142,7 @@ export const APPS: Record<AppId, AppDefinition> = {
142
142
  enabledKey: "api_enabled",
143
143
  generateIfMissing: true,
144
144
  },
145
+ prowlarrCategoryIds: [7030], // Comics
145
146
  // Note: Mylar3 is NOT an *arr app - has different API format (?cmd=<endpoint>)
146
147
  // Root folder is configured via Web UI settings, not API
147
148
  },
@@ -27,6 +27,8 @@ const ARR_APP_TYPES: Record<string, ArrAppType> = {
27
27
  sonarr: "Sonarr",
28
28
  lidarr: "Lidarr",
29
29
  readarr: "Readarr",
30
+ whisparr: "Whisparr",
31
+ mylar3: "Mylar",
30
32
  }
31
33
 
32
34
  export class FullAutoSetup extends BoxRenderable {
@@ -24,6 +24,8 @@ const ARR_APP_TYPES: Record<string, ArrAppType> = {
24
24
  sonarr: "Sonarr",
25
25
  lidarr: "Lidarr",
26
26
  readarr: "Readarr",
27
+ whisparr: "Whisparr",
28
+ mylar3: "Mylar",
27
29
  }
28
30
 
29
31
  export class ProwlarrSetup extends BoxRenderable {