| 35 | } |
| 36 | |
| 37 | export interface GenerateQuestionsRequest { |
| 38 | positionId?: number |
| 39 | skills?: string[] |
| 40 | difficulty?: 'JUNIOR' | 'MIDDLE' | 'SENIOR' |
| 41 | count?: number |
| 42 | questionType?: 'TECHNICAL' | 'BEHAVIORAL' | 'SCENARIO' | 'MIXED' |
| 43 | includeAnswers?: boolean |
| 44 | businessDomain?: string |
| 45 | } |
| 46 | |
| 47 | interface ApiResponse<T> { |
| 48 | code: number |
nothing calls this directly
no outgoing calls
no test coverage detected