| 17 | | "count"; |
| 18 | |
| 19 | export interface ApiRequestOptions { |
| 20 | apiUrl: string; |
| 21 | apiKey: string; |
| 22 | apiPath: string; |
| 23 | operation: ApiOperation; |
| 24 | id?: string | undefined; |
| 25 | data?: JSONObject | undefined; |
| 26 | query?: JSONObject | undefined; |
| 27 | select?: JSONObject | undefined; |
| 28 | skip?: number | undefined; |
| 29 | limit?: number | undefined; |
| 30 | sort?: JSONObject | undefined; |
| 31 | } |
| 32 | |
| 33 | function buildApiRoute( |
| 34 | apiPath: string, |
nothing calls this directly
no outgoing calls
no test coverage detected