(organizationId: string, returnPath?: string)
| 9 | * Audience for the install-state token. `jose` verifies it as part of the signature check, so a |
| 10 | * token minted for some other purpose against the same secret cannot be replayed as install state. |
| 11 | */ |
| 12 | const INSTALL_STATE_AUDIENCE = "autonoma:github-install-state"; |
| 13 | |
| 14 | const HMAC_ALGORITHM = "HS256"; |
| 15 | |
| 16 | const InstallStateSchema = z.object({ |
| 17 | organizationId: z.string().min(1), |
| 18 | returnPath: z.string().optional(), |
| 19 | }); |
| 20 |
no test coverage detected