Datalayer VS Code Extension - v0.0.9
    Preparing search index...
    • Show authentication method selection dialog.

      Presents user with three authentication options:

      • Handle/Password credentials
      • GitHub OAuth
      • LinkedIn OAuth

      Returns Promise<AuthMethod>

      Selected authentication method, or undefined if cancelled

      const method = await showAuthMethodPicker();
      if (method === 'email-password') {
      // Handle credentials login
      } else if (method) {
      // Handle OAuth login
      }