()
| 656 | |
| 657 | export const updatesApi = { |
| 658 | check() { |
| 659 | return withLegacyFallback<any>(openApiV1.checkUpdate(), () => |
| 660 | httpClient.get<ApiEnvelope<any>>('/api/update/check'), |
| 661 | ); |
| 662 | }, |
| 663 | releases(type?: 'core' | 'dashboard') { |
| 664 | return withLegacyFallback<any[]>( |
| 665 | openApiV1.listReleases({ |
nothing calls this directly
no test coverage detected