Auto-commit 2026-04-29 16:31
This commit is contained in:
31
node_modules/next-auth/providers/zoom.d.ts
generated
vendored
Normal file
31
node_modules/next-auth/providers/zoom.d.ts
generated
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
import type { OAuthConfig, OAuthUserConfig } from ".";
|
||||
export interface ZoomProfile extends Record<string, any> {
|
||||
id: string;
|
||||
first_name: string;
|
||||
last_name: string;
|
||||
email: string;
|
||||
type: number;
|
||||
role_name: string;
|
||||
pmi: number;
|
||||
use_pmi: boolean;
|
||||
vanity_url: string;
|
||||
personal_meeting_url: string;
|
||||
timezone: string;
|
||||
verified: number;
|
||||
dept: string;
|
||||
created_at: string;
|
||||
last_login_time: string;
|
||||
last_client_version: string;
|
||||
pic_url: string;
|
||||
host_key: string;
|
||||
jid: string;
|
||||
group_ids: string[];
|
||||
im_group_ids: string[];
|
||||
account_id: string;
|
||||
language: string;
|
||||
phone_country: string;
|
||||
phone_number: string;
|
||||
status: string;
|
||||
}
|
||||
export default function Zoom<P extends ZoomProfile>(options: OAuthUserConfig<P>): OAuthConfig<P>;
|
||||
//# sourceMappingURL=zoom.d.ts.map
|
||||
Reference in New Issue
Block a user