(taskId: string)
| 683 | ); |
| 684 | }, |
| 685 | progress(taskId: string) { |
| 686 | return withLegacyFallback<any>( |
| 687 | openApiV1.getUpdateProgress({ path: { task_id: taskId } }), |
| 688 | () => |
| 689 | httpClient.get<ApiEnvelope<any>>('/api/update/progress', { |
| 690 | params: { id: taskId }, |
| 691 | }), |
| 692 | ); |
| 693 | }, |
| 694 | installPip(payload: PipInstallRequest) { |
| 695 | return withLegacyFallback<OpenConfig>( |
| 696 | openApiV1.installPipPackage({ body: payload }), |
nothing calls this directly
no test coverage detected