@muhammedaksam/easiarr 0.8.0 → 0.8.1

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.8.0",
3
+ "version": "0.8.1",
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",
@@ -17,7 +17,7 @@ export interface StartupConfiguration {
17
17
 
18
18
  export interface StartupUser {
19
19
  Name: string
20
- Password: string
20
+ Pw: string
21
21
  }
22
22
 
23
23
  export interface StartupRemoteAccess {
@@ -157,7 +157,7 @@ export class JellyfinClient {
157
157
  * Create the initial admin user
158
158
  */
159
159
  async createAdminUser(name: string, password: string): Promise<void> {
160
- const user: StartupUser = { Name: name, Password: password }
160
+ const user: StartupUser = { Name: name, Pw: password }
161
161
  await this.request("/Startup/User", {
162
162
  method: "POST",
163
163
  body: JSON.stringify(user),