( requestId: string, deployment: any, request: NextRequest, parsedBody?: any )
| 145 | * {@link validateDeploymentAuth} with the `'chat'` cookie/rate-limit namespace. |
| 146 | */ |
| 147 | export async function validateChatAuth( |
| 148 | requestId: string, |
| 149 | deployment: any, |
| 150 | request: NextRequest, |
| 151 | parsedBody?: any |
| 152 | ): Promise<DeploymentAuthResult> { |
| 153 | return validateDeploymentAuth(requestId, deployment, request, parsedBody, 'chat') |
| 154 | } |
no test coverage detected