// Googleconst result = await verifyOAuth({ flowId: "flow-id-from-signInWithGoogle", code: "123456", // The OAuth code received from the OAuth provider providerType: "google",});
// Appleconst result = await verifyOAuth({ flowId: "flow-id-from-signInWithApple", code: "123456", // The OAuth code received from the OAuth provider providerType: "apple",});
// Xconst result = await verifyOAuth({ flowId: "flow-id-from-signInWithX", code: "123456", // The OAuth code received from the OAuth provider providerType: "x",});