Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
  • Loading branch information
explodingcamera committed Apr 8, 2024
1 parent 495baf6 commit ed7036c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
Binary file modified bun.lockb
Binary file not shown.
13 changes: 8 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@
"preversion": "npm run build"
},
"devDependencies": {
"@biomejs/biome": "^1.5.0",
"@biomejs/cli-linux-x64": "^1.5.0",
"@biomejs/biome": "^1.6.4",
"@biomejs/cli-linux-x64": "^1.6.4",
"@types/spark-md5": "^3.0.4",
"bun-types": "^1.0.21",
"release-it": "^17.0.1",
"bun-types": "^1.1.2",
"release-it": "^17.1.1",
"spark-md5": "^3.0.2"
},
"release-it": {
Expand All @@ -69,5 +69,8 @@
"engines": {
"node": ">=18"
},
"engineStrict": false
"engineStrict": false,
"trustedDependencies": [
"@biomejs/biome"
]
}
7 changes: 4 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,17 @@ import { arrayBufferToBase64 } from "./utils.js";

export interface SubsonicConfig {
url: string;
type: "subsonic" | "generic" | "navidrome";
type: "subsonic" | "opensubsonic" | "navidrome";
}

export type Params = Record<string, string | string[] | number | number[] | boolean | undefined>;

export interface SubsonicBaseResponse {
status: string;
version: string;
type: string;
serverVersion: string;
type?: string;
serverVersion?: string;
openSubsonic?: boolean;
}

export default class SubsonicAPI {
Expand Down

0 comments on commit ed7036c

Please sign in to comment.