| 2 | import type { paths, components } from './client'; |
| 3 | |
| 4 | export interface ClientConfig { |
| 5 | baseUrl?: string; |
| 6 | headers?: Record<string, string>; |
| 7 | middleware?: Middleware | Middleware[]; |
| 8 | } |
| 9 | |
| 10 | type CreateWorkflowPayload = components['schemas']['CreateWorkflowRequestDto']; |
| 11 | type UpdateWorkflowPayload = components['schemas']['UpdateWorkflowRequestDto']; |
nothing calls this directly
no outgoing calls
no test coverage detected