(payload: { name?: string | null; config?: OpenConfig | null })
| 332 | return typed<{ info_list: OpenConfig[] }>(openApiV1.listConfigProfiles()); |
| 333 | }, |
| 334 | create(payload: { name?: string | null; config?: OpenConfig | null }) { |
| 335 | return typed<{ conf_id: string }>( |
| 336 | openApiV1.createConfigProfile({ |
| 337 | body: { |
| 338 | name: payload.name ?? undefined, |
| 339 | config: payload.config ?? undefined, |
| 340 | }, |
| 341 | }), |
| 342 | ); |
| 343 | }, |
| 344 | get(configId: string) { |
| 345 | return typed<OpenConfig>( |
| 346 | openApiV1.getConfigProfile({ path: { config_id: configId } }), |
nothing calls this directly
no test coverage detected