feat: add explicit license selection and status visibility (#6751)

This commit is contained in:
jason
2025-08-23 05:01:01 +09:00
committed by GitHub
parent 5035ef1d19
commit 6789322d1b
13 changed files with 382 additions and 40 deletions
+2 -1
View File
@@ -18,10 +18,11 @@ export async function createCodeAssistContentGenerator(
): Promise<ContentGenerator> {
if (
authType === AuthType.LOGIN_WITH_GOOGLE ||
authType === AuthType.LOGIN_WITH_GOOGLE_GCA ||
authType === AuthType.CLOUD_SHELL
) {
const authClient = await getOauthClient(authType, config);
const userData = await setupUser(authClient);
const userData = await setupUser(authClient, authType);
return new CodeAssistServer(
authClient,
userData.projectId,