A music player that connects to your cloud/distributed storage.

fix: track types

+9 -2
+1
deno.jsonc
··· 37 37 // Paths 38 38 "@common/": "./src/common/", 39 39 "@components/": "./src/components/", 40 + "@definitions/": "./src/definitions/", 40 41 41 42 // Build 42 43 "@std/fs": "jsr:@std/fs@^1.0.19",
+2 -2
src/common/types.d.ts
··· 1 - import type { mainSchema as Track } from "../definitions/types/sh/diffuse/output/tracks.ts"; 1 + import type { Track } from "../definitions/types.d.ts"; 2 2 3 3 // RE-EXPORT 4 4 5 - export type { mainSchema as Track } from "../definitions/types/sh/diffuse/output/tracks.ts"; 5 + export type { Track } from "../definitions/types.d.ts"; 6 6 7 7 /* INPUT */ 8 8
+1
src/components/orchestrator/process-tracks/element.js
··· 92 92 method: "GET", 93 93 uri: track.uri, 94 94 }); 95 + 95 96 const resHead = await this.input.resolve({ 96 97 method: "HEAD", 97 98 uri: track.uri,
+5
src/definitions/types.d.ts
··· 1 + export type { 2 + Main as Track, 3 + Stats as TrackStats, 4 + Tags as TrackTags, 5 + } from "./types/sh/diffuse/output/tracks.ts";