@forge/cli

12.3.0-next.0-experimental-8a5377312.3.0-next.2
out/command-line/register-authentication-command.d.ts
~out/command-line/register-authentication-command.d.tsModified
+2−1
Index: package/out/command-line/register-authentication-command.d.ts
===================================================================
--- package/out/command-line/register-authentication-command.d.ts
+++ package/out/command-line/register-authentication-command.d.ts
@@ -1,11 +1,12 @@
-import { CredentialGetter, Logger, LoginCommand, UI, UserRepository } from '@forge/cli-shared';
+import { CredentialGetter, Logger, LoginCommand, PersonalApiCredentialsValidated, UI, UserRepository } from '@forge/cli-shared';
 import { Dependencies } from './dependency-injection';
 export interface LoginCommandOptions {
     email?: string;
     token?: string;
 }
 export declare function loginCommandHandler(ui: UI, instructionsUrl: string, loginCommand: LoginCommand, { email, token }: LoginCommandOptions): Promise<{
+    creds: PersonalApiCredentialsValidated;
     analytics: {
         userId: string;
         anonymousId: string | undefined;
     };