fix(apple): allow audience to be string | string[] (#4219)

This commit is contained in:
Ethan Shumate
2025-08-25 17:30:57 -07:00
committed by GitHub
parent 8c4165e958
commit efcf5787f9
@@ -70,7 +70,7 @@ export interface AppleNonConformUser {
export interface AppleOptions extends ProviderOptions<AppleProfile> {
appBundleIdentifier?: string;
audience?: string;
audience?: string | string[];
}
export const apple = (options: AppleOptions) => {