SignInWithIdTokenCredentials
import type { SignInWithIdTokenCredentials } from "https://esm.sh/@supabase/supabase-js@2.89.0/dist/index.d.mts";type SignInWithIdTokenCredentials = {
provider:
| "google"
| "apple"
| "azure"
| "facebook"
| "kakao"
| (string & {});
token: string;
access_token?: string;
nonce?: string;
options?: {
};captchaToken?: string;
};