Discord: add PluralKit sender identity resolver (#5838)

* Discord: add PluralKit sender identity resolver

* fix: resolve PluralKit sender identities (#5838) (thanks @thewilloftheshadow)
This commit is contained in:
Shadow
2026-01-31 19:50:06 -06:00
committed by GitHub
parent 66e33abd7b
commit 8e2b17e0c5
15 changed files with 354 additions and 55 deletions

View File

@@ -276,6 +276,13 @@ export const DiscordAccountSchema = z
})
.strict()
.optional(),
pluralkit: z
.object({
enabled: z.boolean().optional(),
token: z.string().optional(),
})
.strict()
.optional(),
})
.strict();