(client: ClientContract<Schema>, model: string)
| 378 | } |
| 379 | |
| 380 | private isValidModel(client: ClientContract<Schema>, model: string) { |
| 381 | return Object.keys(client.$schema.models).some((m) => lowerCaseFirst(m) === lowerCaseFirst(model)); |
| 382 | } |
| 383 | |
| 384 | private makeBadInputErrorResponse(message: string) { |
| 385 | const resp = { |
no test coverage detected