Refactor of OAuth account linking flows (#12246)

* Refactor of OAuth account linking flows

* PR feedback
This commit is contained in:
Tom Moor
2026-05-02 18:54:38 -04:00
committed by GitHub
parent 8c716b173a
commit f50bb00b29
30 changed files with 590 additions and 84 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ export const GitHubCallbackSchema = BaseSchema.extend({
query: z
.object({
code: z.string().nullish(),
state: z.uuid().nullish(),
state: z.string(),
error: z.string().nullish(),
installation_id: z.coerce.number().optional(),
setup_action: z.enum(SetupAction),