mirror of
https://github.com/gesellix/Bose-SoundTouch.git
synced 2026-08-18 08:36:13 +00:00
Two more frozen GET routes that return a static 200: - GET /bmx/registry/v1/servicesAvailability (embedded availability registry JSON) - GET /ced/soundtouch/mr4_22097fe2/index.xml (CED firmware-update config; a present static file is 200, absent paths 404) COVERAGE.md: correct the rows that were already covered by the first batch but left marked as gaps (/v1/auth, /v1/scmudc, orion station, custom playback, ding, bmx-icons), and record the two new routes. Remaining gaps are the ones that need an upstream fixture (tunein episode), prior TTS state (media/tts), or are quirky-status edges. make test-http-client: 67 requests, 0 failed. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
18 lines
789 B
HTTP
18 lines
789 B
HTTP
### GET /bmx/registry/v1/servicesAvailability (BMX service availability registry)
|
|
###
|
|
### Frozen BMX route, sibling of /bmx/registry/v1/services. The speaker queries
|
|
### which BMX services are available; the service returns the embedded registry
|
|
### JSON (HandleBMXServicesAvailability). Static, no upstream call.
|
|
GET {{host}}/bmx/registry/v1/servicesAvailability
|
|
User-Agent: Bose_Lisa/27.0.6
|
|
Accept: */*
|
|
X-Bmx-Api-Key: {{bmxApiKey}}
|
|
|
|
> {%
|
|
client.test("Availability registry served as JSON 200", function() {
|
|
client.assert(response.status === 200, "Response status is not 200, got " + response.status);
|
|
client.assert(response.contentType.mimeType === "application/json",
|
|
"Expected application/json, got '" + response.contentType.mimeType + "'");
|
|
});
|
|
%}
|