()
| 418 | |
| 419 | export const botApi = { |
| 420 | types() { |
| 421 | return typed<{ bot_types: OpenConfig[] }>(openApiV1.listBotTypes()); |
| 422 | }, |
| 423 | list(params?: BotListParams) { |
| 424 | return typed<{ bots: OpenConfig[] }>( |
| 425 | openApiV1.listBots({ query: generatedQuery(params) }), |