(deployKey: string)
| 33 | * @see https://docs.convex.dev/http-api/#api-authentication |
| 34 | */ |
| 35 | export function convexAuthHeaders(deployKey: string): Record<string, string> { |
| 36 | return { Authorization: `Convex ${deployKey.trim()}` } |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * Parses function arguments that may arrive as a JSON string or an object. |
no outgoing calls
no test coverage detected