initial commit. phase 1 complete

This commit is contained in:
2026-05-05 20:45:19 +02:00
parent d9c68313a0
commit 89e058ffac
20631 changed files with 3224610 additions and 43 deletions
+17
View File
@@ -0,0 +1,17 @@
import type { OAuthConfig, OAuthUserConfig } from ".";
export interface AzureADProfile extends Record<string, any> {
sub: string;
nickname: string;
email: string;
picture: string;
}
export default function AzureAD<P extends AzureADProfile>(options: OAuthUserConfig<P> & {
/**
* https://docs.microsoft.com/en-us/graph/api/profilephoto-get?view=graph-rest-1.0#examples
* @default 48
*/
profilePhotoSize?: 48 | 64 | 96 | 120 | 240 | 360 | 432 | 504 | 648;
/** @default "common" */
tenantId?: string;
}): OAuthConfig<P>;
//# sourceMappingURL=azure-ad.d.ts.map