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

tas-uell-sdk

v1.0.12

Published

TAS (Telemedicine Assistance Service) SDK for Angular applications - Video call functionality using TokBox/Vonage

Readme

TAS UELL SDK

Angular library para videollamada TAS (TokBox/Vonage), waiting room, feedback post-llamada y modo PiP.

Documentacion completa

Para documentacion funcional y tecnica completa, usar el portal:

Instalacion

npm install tas-uell-sdk
npm install @ng-bootstrap/ng-bootstrap @opentok/client interactjs

Setup rapido

1) Implementar TasHttpClient

import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs';
import { TasHttpClient } from 'tas-uell-sdk';

@Injectable({ providedIn: 'root' })
export class TasHttpAdapterService implements TasHttpClient {
  constructor(private http: HttpClient) {}

  get<T>(url: string, options: { headers?: Record<string, string> }): Observable<T> {
    return this.http.get<T>(`https://your-api.com/${url}`, { headers: options.headers });
  }

  post<T>(url: string, options: { body: any; headers?: Record<string, string> }): Observable<T> {
    return this.http.post<T>(`https://your-api.com/${url}`, options.body, { headers: options.headers });
  }

  patch<T>(url: string, options: { body: any; headers?: Record<string, string> }): Observable<T> {
    return this.http.patch<T>(`https://your-api.com/${url}`, options.body, { headers: options.headers });
  }
}

2) Configurar modulo

import { TasUellSdkModule } from 'tas-uell-sdk';
import { TasHttpAdapterService } from './adapters/tas-http-adapter.service';

@NgModule({
  imports: [
    TasUellSdkModule.forRoot({
      config: { tokBoxApiKey: 'YOUR_TOKBOX_API_KEY' },
      httpClient: TasHttpAdapterService,
    }),
  ],
})
export class AppModule {}

3) Agregar PiP global

<router-outlet></router-outlet>
<tas-floating-call></tas-floating-call>

4) Renderizar boton TAS

<tas-btn
  [roomType]="'TAS'"
  [entityId]="appointment.entityId"
  [tenant]="tenantId"
  [businessRole]="'BACKOFFICE'"
  [currentUser]="currentUser"
></tas-btn>

Superficie publica real (exportada)

Modulo

  • TasUellSdkModule

Configuracion

  • TasConfig
  • TasHttpClient
  • TAS_CONFIG
  • TAS_HTTP_CLIENT

Servicios

  • TasService
  • GeolocationService
  • TasUtilityService

Componentes

  • TasButtonComponent (<tas-btn>)
  • TasWaitingRoomComponent (<tas-waiting-room>)
  • TasVideocallComponent (<tas-videocall>)
  • TasFloatingCallComponent (<tas-floating-call>)
  • TasAvatarComponent (<tas-avatar>)
  • TasFeedbackModalComponent (<tas-feedback-modal>)
  • TasLoadingOverlayComponent (<tas-loading-overlay>)

Interfaces y enums

Disponibles desde tas.interfaces.ts (ejemplos):

  • TasCurrentUser, TasCallConfig, TasAppointment, ProxyVideoStatusResponse
  • TasUserRole, TasBusinessRole, TasRoomType, CallState, ViewMode, GeoStatus

Endpoints esperados por el SDK

  • POST v2/proxy/video/status
  • POST v2/proxy/video/start
  • POST v2/proxy/video/finish
  • PATCH v2/proxy/video/user/modify
  • POST v2/proxy/video/save/feedback
  • GET v2/proxy/video/motives
  • GET v2/proxy/appointment/agendas/user/appointments?...

Notas

  • El SDK inyecta estilos TAS scoped (.tas-*) para modales/backdrop/tooltip.
  • No requiere importar CSS global de Bootstrap solo para TAS.
  • Para detalle de validaciones, flags y sincronismo usar el portal en docs/.

License

MIT