From 7e353c47234e8df36d19bc78afc3aa33bbf1886d Mon Sep 17 00:00:00 2001 From: jeffvli Date: Tue, 31 Mar 2026 01:20:39 -0700 Subject: [PATCH] add getTranscodeStream to subsonic api --- src/renderer/api/subsonic/subsonic-api.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/renderer/api/subsonic/subsonic-api.ts b/src/renderer/api/subsonic/subsonic-api.ts index 06ed086ff..e82be0c3e 100644 --- a/src/renderer/api/subsonic/subsonic-api.ts +++ b/src/renderer/api/subsonic/subsonic-api.ts @@ -259,6 +259,14 @@ export const contract = c.router({ 200: ssType._response.getTranscodeDecision, }, }, + getTranscodeStream: { + method: 'GET', + path: 'getTranscodeStream.view', + query: ssType._parameters.getTranscodeStream, + responses: { + 200: z.string(), + }, + }, getUser: { method: 'GET', path: 'getUser.view',