npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@testgorilla/tgo-ai-interview-test

v3.0.1

Published

AI Interview component

Readme

@testgorilla/tgo-ai-interview-test

AI Interview component for TestGorilla assessments.

Installation

npm install @testgorilla/tgo-ai-interview-test

Usage

import { AiInterviewTestComponent } from '@testgorilla/tgo-ai-interview-test';

@Component({
  imports: [AiInterviewTestComponent],
  template: `
    <tgo-ai-interview-test
      [question]="question"
      [test]="test"
      [isFirstQuestion]="false"
      [conversationUrl]="conversationUrl"
      [selectedMediaDevices]="selectedMediaDevices"
      [mediaAccessChanged]="mediaAccessChanged"
      (submissionStateChanged)="onSubmissionStateChanged($event)"
      (loadingStateChanged)="onLoadingStateChanged($event)"
      (requestMediaAccess)="onRequestMediaAccess()"
    ></tgo-ai-interview-test>
  `,
})
export class MyComponent {}

Assets (translations)

This package ships its translations under assets/i18n. Consumer apps must copy these assets into their build output so Transloco can load them at runtime.

  • Angular CLI / Nx: add an assets entry pointing at the package:
{
  "assets": [
    "src/favicon.ico",
    "src/assets",
    {
      "glob": "**/*",
      "input": "node_modules/@testgorilla/tgo-ai-interview-test/assets",
      "output": "assets/tgo-ai-interview-test"
    }
  ]
}

If you develop inside this repo (consuming the workspace sources), also include the local path:

{
  "glob": "**/*",
  "input": "packages/tgo-ai-interview-test/src/assets",
  "output": "assets/tgo-ai-interview-test"
}

After adding the asset entries, rebuild/re-serve your app so /assets/tgo-ai-interview-test/i18n/en.json is available.

API

Inputs

| Name | Type | Required | Default | Description | | ------------------- | --------------------------------- | -------- | ------- | ------------------------------------------------ | | question | Question | Yes | - | Question data containing text/media content | | test | TestResultRead | Yes | - | Test configuration and metadata | | isFirstQuestion | boolean | No | false | Whether this is the first question in the test | | conversationUrl | string | No | - | Daily.co conversation URL for the AI interview | | selectedMediaDevices| SelectedMediaDevices | No | - | Selected audio/video device IDs | | mediaAccessChanged | Observable<SelectedMediaDevices>| No | - | Observable for media device changes |

Outputs

| Name | Type | Description | | -------------------- | --------------------------- | ---------------------------------------------- | | submissionStateChanged| EventEmitter<ISubmissionState | null> | Emits submission state when answer is submitted | | loadingStateChanged | EventEmitter<boolean> | Emits loading state changes | | requestMediaAccess | EventEmitter<void> | Emits when media access permission is needed |

Peer Dependencies

This library requires the following peer dependencies:

  • @angular/common ~18.2.13
  • @angular/core ~18.2.13
  • @angular/animations ~18.2.13
  • @angular/material ~18.2.14 (for dialog support)
  • @ngneat/transloco ~4.3.0
  • @testgorilla/tgo-ui ~3.14.10
  • @daily-co/daily-js ^0.79.0
  • rxjs ~7.8.1

Internal Dependencies

All required services, models, and components are included within this library:

  • MediaService - Handles audio/video recording and playback
  • ThemeService - Provides theme/company color configuration
  • Question, TestResultRead, SelectedMediaDevices, ISubmissionState - Type definitions
  • AudioAnimationComponent, VideoCountdownComponent, VimeoVideoComponent - UI components
  • InterviewStreamComponent - Daily.co video call integration component
  • InterviewVideoComponent - Video display component
  • ReviewInstructionsDialogComponent - Dialog component for review instructions
  • TranslocoLazyModuleUtils, getAvailableLangs - Translation utilities

Features

  • AI-powered interview via Daily.co video calls
  • Candidate video recording
  • Real-time video/audio stream handling
  • Media device selection
  • Translation support via Transloco
  • Review instructions dialog
  • Preview mode support