()
| 329 | return typed<OpenConfig>(openApiV1.getConfigProfileSchema()); |
| 330 | }, |
| 331 | list() { |
| 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({ |