tas-uell-sdk 0.0.6 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/README.md +74 -3
  2. package/esm2020/lib/components/tas-btn/tas-btn.component.mjs +55 -61
  3. package/esm2020/lib/components/tas-incoming-appointment/tas-incoming-appointment.component.mjs +109 -0
  4. package/esm2020/lib/components/tas-videocall/tas-videocall.component.mjs +114 -8
  5. package/esm2020/lib/components/tas-waiting-room/tas-waiting-room.component.mjs +104 -46
  6. package/esm2020/lib/config/tas.config.mjs +1 -1
  7. package/esm2020/lib/interfaces/tas.interfaces.mjs +8 -1
  8. package/esm2020/lib/services/geolocation.service.mjs +56 -0
  9. package/esm2020/lib/services/tas-utility.service.mjs +60 -0
  10. package/esm2020/lib/services/tas.service.mjs +49 -12
  11. package/esm2020/lib/tas-uell-sdk.module.mjs +11 -5
  12. package/esm2020/public-api.mjs +4 -1
  13. package/fesm2015/tas-uell-sdk.mjs +553 -126
  14. package/fesm2015/tas-uell-sdk.mjs.map +1 -1
  15. package/fesm2020/tas-uell-sdk.mjs +540 -124
  16. package/fesm2020/tas-uell-sdk.mjs.map +1 -1
  17. package/lib/components/tas-btn/tas-btn.component.d.ts +10 -5
  18. package/lib/components/tas-incoming-appointment/tas-incoming-appointment.component.d.ts +33 -0
  19. package/lib/components/tas-videocall/tas-videocall.component.d.ts +27 -2
  20. package/lib/components/tas-waiting-room/tas-waiting-room.component.d.ts +29 -8
  21. package/lib/config/tas.config.d.ts +3 -0
  22. package/lib/interfaces/tas.interfaces.d.ts +30 -2
  23. package/lib/services/geolocation.service.d.ts +24 -0
  24. package/lib/services/tas-utility.service.d.ts +26 -0
  25. package/lib/services/tas.service.d.ts +16 -6
  26. package/lib/tas-uell-sdk.module.d.ts +5 -3
  27. package/package.json +1 -1
  28. package/public-api.d.ts +3 -0
@@ -2,20 +2,25 @@ import { OnInit, OnDestroy } from '@angular/core';
2
2
  import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
3
3
  import { TasCurrentUser, TasRoomType, TasBusinessRole } from '../../interfaces/tas.interfaces';
4
4
  import { TasService } from '../../services/tas.service';
5
+ import { TasUtilityService } from '../../services/tas-utility.service';
5
6
  import * as i0 from "@angular/core";
6
7
  export declare class TasButtonComponent implements OnInit, OnDestroy {
7
8
  private modalService;
8
9
  private tasService;
10
+ private tasUtilityService;
9
11
  roomType: TasRoomType;
10
12
  entityId: number;
11
13
  tenant: string;
12
14
  businessRole: TasBusinessRole;
13
15
  currentUser: TasCurrentUser;
16
+ variant: 'default' | 'teal';
17
+ buttonLabel: string;
14
18
  isLoading: boolean;
15
- readonly buttonText = "Iniciar TAS";
16
19
  isCheckingStatus: boolean;
17
20
  isStatusError: boolean;
18
21
  statusErrorMessage: string;
22
+ isJoinable: boolean;
23
+ shouldShowButton: boolean;
19
24
  private subscriptions;
20
25
  private currentModalRef;
21
26
  private videoCallModalRef;
@@ -23,11 +28,11 @@ export declare class TasButtonComponent implements OnInit, OnDestroy {
23
28
  private readonly STATUS_POLL_INTERVAL_MS;
24
29
  /** Whether user is backoffice (or admin/manager) */
25
30
  get isBackoffice(): boolean;
26
- /** Whether the button should be visible */
27
- get isVisible(): boolean;
28
31
  /** Whether the button should be disabled */
29
32
  get isDisabled(): boolean;
30
- constructor(modalService: NgbModal, tasService: TasService);
33
+ /** Reason why the button is disabled (for tooltip) */
34
+ get disabledReason(): string;
35
+ constructor(modalService: NgbModal, tasService: TasService, tasUtilityService: TasUtilityService);
31
36
  ngOnInit(): void;
32
37
  ngOnDestroy(): void;
33
38
  /**
@@ -46,5 +51,5 @@ export declare class TasButtonComponent implements OnInit, OnDestroy {
46
51
  private openWaitingRoomModal;
47
52
  private openVideoCallModal;
48
53
  static ɵfac: i0.ɵɵFactoryDeclaration<TasButtonComponent, never>;
49
- static ɵcmp: i0.ɵɵComponentDeclaration<TasButtonComponent, "tas-btn", never, { "roomType": "roomType"; "entityId": "entityId"; "tenant": "tenant"; "businessRole": "businessRole"; "currentUser": "currentUser"; }, {}, never, never>;
54
+ static ɵcmp: i0.ɵɵComponentDeclaration<TasButtonComponent, "tas-btn", never, { "roomType": "roomType"; "entityId": "entityId"; "tenant": "tenant"; "businessRole": "businessRole"; "currentUser": "currentUser"; "variant": "variant"; "buttonLabel": "buttonLabel"; }, {}, never, never>;
50
55
  }
@@ -0,0 +1,33 @@
1
+ import { OnInit, OnDestroy, EventEmitter } from '@angular/core';
2
+ import { TasService } from '../../services/tas.service';
3
+ import { TasAppointment, TasRoomType, TasBusinessRole, TasCurrentUser } from '../../interfaces/tas.interfaces';
4
+ import * as i0 from "@angular/core";
5
+ export declare class TasIncomingAppointmentComponent implements OnInit, OnDestroy {
6
+ private tasService;
7
+ roomType: TasRoomType;
8
+ entityId: number;
9
+ tenant: string;
10
+ businessRole: TasBusinessRole;
11
+ currentUser: TasCurrentUser;
12
+ enterCall: EventEmitter<TasAppointment>;
13
+ appointment: TasAppointment | null;
14
+ isLoading: boolean;
15
+ hasError: boolean;
16
+ private subscriptions;
17
+ constructor(tasService: TasService);
18
+ ngOnInit(): void;
19
+ ngOnDestroy(): void;
20
+ private loadAppointments;
21
+ onEnterCall(): void;
22
+ /**
23
+ * Format date to Spanish format: "Lunes 8 de diciembre"
24
+ */
25
+ get formattedDate(): string;
26
+ /**
27
+ * Format time range: "9:00 - 9:30"
28
+ */
29
+ get formattedTimeRange(): string;
30
+ private formatDate;
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<TasIncomingAppointmentComponent, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<TasIncomingAppointmentComponent, "tas-incoming-appointment", never, { "roomType": "roomType"; "entityId": "entityId"; "tenant": "tenant"; "businessRole": "businessRole"; "currentUser": "currentUser"; }, { "enterCall": "enterCall"; }, never, never>;
33
+ }
@@ -1,15 +1,18 @@
1
1
  import { OnInit, OnDestroy, ElementRef, AfterViewInit } from '@angular/core';
2
2
  import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
3
3
  import { TasService } from '../../services/tas.service';
4
+ import { GeolocationService } from '../../services/geolocation.service';
4
5
  import { CallState, TasBusinessRole, WaitingRoomUser } from '../../interfaces/tas.interfaces';
5
6
  import * as i0 from "@angular/core";
6
7
  export declare class TasVideocallComponent implements OnInit, OnDestroy, AfterViewInit {
7
8
  activeModal: NgbActiveModal;
8
9
  private tasService;
10
+ private geolocationService;
9
11
  sessionId: string;
10
12
  token: string;
11
13
  appointmentId?: number;
12
14
  videoCallId?: number;
15
+ userId?: number;
13
16
  participantName: string;
14
17
  tenant: string;
15
18
  businessRole: TasBusinessRole;
@@ -23,8 +26,13 @@ export declare class TasVideocallComponent implements OnInit, OnDestroy, AfterVi
23
26
  ownerHasJoined: boolean;
24
27
  hasVideoStream: boolean;
25
28
  dismissedUsers: number[];
29
+ showLocationPanel: boolean;
30
+ userHasLocation: boolean;
31
+ geoLocationStatus: 'unknown' | 'active' | 'denied';
32
+ geoRequestActive: boolean;
33
+ allGeoGranted: boolean;
26
34
  private subscriptions;
27
- constructor(activeModal: NgbActiveModal, tasService: TasService);
35
+ constructor(activeModal: NgbActiveModal, tasService: TasService, geolocationService: GeolocationService);
28
36
  ngOnInit(): void;
29
37
  ngAfterViewInit(): void;
30
38
  ngOnDestroy(): void;
@@ -45,10 +53,27 @@ export declare class TasVideocallComponent implements OnInit, OnDestroy, AfterVi
45
53
  * Dismiss the waiting room notification for a user
46
54
  */
47
55
  dismissWaitingNotification(userId: number): void;
56
+ /**
57
+ * Close the location panel
58
+ */
59
+ closeLocationPanel(): void;
60
+ /**
61
+ * Request the user to share their location
62
+ */
63
+ requestUserLocation(): void;
48
64
  private setupSubscriptions;
65
+ /**
66
+ * Handle activateGeo request from backend (for non-owner users).
67
+ * If geo is already active, report it. If not, prompt user.
68
+ */
69
+ private handleActivateGeo;
70
+ /**
71
+ * Report geolocation status to backend.
72
+ */
73
+ private reportGeoStatus;
49
74
  private initializeCall;
50
75
  private resetVideoPositions;
51
76
  private initInteract;
52
77
  static ɵfac: i0.ɵɵFactoryDeclaration<TasVideocallComponent, never>;
53
- static ɵcmp: i0.ɵɵComponentDeclaration<TasVideocallComponent, "tas-videocall", never, { "sessionId": "sessionId"; "token": "token"; "appointmentId": "appointmentId"; "videoCallId": "videoCallId"; "participantName": "participantName"; "tenant": "tenant"; "businessRole": "businessRole"; "isReturningFromPip": "isReturningFromPip"; }, {}, never, never>;
78
+ static ɵcmp: i0.ɵɵComponentDeclaration<TasVideocallComponent, "tas-videocall", never, { "sessionId": "sessionId"; "token": "token"; "appointmentId": "appointmentId"; "videoCallId": "videoCallId"; "userId": "userId"; "participantName": "participantName"; "tenant": "tenant"; "businessRole": "businessRole"; "isReturningFromPip": "isReturningFromPip"; }, {}, never, never>;
54
79
  }
@@ -1,18 +1,21 @@
1
1
  import { OnInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
2
2
  import { NgbActiveModal, NgbModal } from '@ng-bootstrap/ng-bootstrap';
3
3
  import { TasService } from '../../services/tas.service';
4
+ import { GeolocationService } from '../../services/geolocation.service';
4
5
  import { TasCurrentUser, TasRoomType, TasBusinessRole } from '../../interfaces/tas.interfaces';
5
6
  import * as i0 from "@angular/core";
6
7
  export declare enum WaitingRoomState {
7
8
  CHECKING_STATUS = "CHECKING_STATUS",
8
- WAITING_FOR_OWNER = "WAITING_FOR_OWNER",
9
+ WAITING_FOR_JOINABLE = "WAITING_FOR_JOINABLE",
9
10
  READY = "READY",
10
11
  GETTING_TOKEN = "GETTING_TOKEN",
12
+ JOINING = "JOINING",
11
13
  ERROR = "ERROR"
12
14
  }
13
15
  export declare class TasWaitingRoomComponent implements OnInit, OnDestroy {
14
16
  activeModal: NgbActiveModal;
15
17
  private tasService;
18
+ private geolocationService;
16
19
  private modalService;
17
20
  private cdr;
18
21
  roomType: TasRoomType;
@@ -23,16 +26,33 @@ export declare class TasWaitingRoomComponent implements OnInit, OnDestroy {
23
26
  state: WaitingRoomState;
24
27
  WaitingRoomState: typeof WaitingRoomState;
25
28
  errorMessage: string;
29
+ isJoinable: boolean;
26
30
  private resolvedSessionId;
27
31
  private resolvedAppointmentId;
28
32
  private token;
29
33
  private videoCallId;
30
34
  private subscriptions;
31
35
  private videoCallModalRef;
36
+ private geoPosition;
32
37
  /** Whether current user is an owner */
33
38
  get isOwner(): boolean;
34
- constructor(activeModal: NgbActiveModal, tasService: TasService, modalService: NgbModal, cdr: ChangeDetectorRef);
39
+ constructor(activeModal: NgbActiveModal, tasService: TasService, geolocationService: GeolocationService, modalService: NgbModal, cdr: ChangeDetectorRef);
35
40
  ngOnInit(): void;
41
+ /**
42
+ * Request camera and microphone permissions.
43
+ */
44
+ private requestMediaPermissions;
45
+ /**
46
+ * Request geolocation immediately on init.
47
+ * Only for regular users (not owners/backoffice).
48
+ * If user allows, store position and send to backend.
49
+ */
50
+ private requestGeolocation;
51
+ /**
52
+ * Send geolocation to backend via modify user endpoint.
53
+ * NOTE: Endpoint call is prepared but may not be active yet.
54
+ */
55
+ private sendGeolocationToBackend;
36
56
  ngOnDestroy(): void;
37
57
  /**
38
58
  * Check status to get session info
@@ -43,17 +63,18 @@ export declare class TasWaitingRoomComponent implements OnInit, OnDestroy {
43
63
  */
44
64
  private handleJoinableChange;
45
65
  /**
46
- * Check if user has owner/backoffice role
66
+ * Called when user clicks the join button.
67
+ * Calls /start to get token then auto-joins.
47
68
  */
48
- private get isBackoffice();
69
+ joinSession(): void;
49
70
  /**
50
- * Get token for owner/backoffice - call /start endpoint
71
+ * Check if user has owner/backoffice role
51
72
  */
52
- private getTokenForOwner;
73
+ private get isBackoffice();
53
74
  /**
54
- * Join the session - token already obtained
75
+ * Start session and join - called when user clicks join button
55
76
  */
56
- joinSession(): void;
77
+ private startSessionAndJoin;
57
78
  /**
58
79
  * Closes the waiting room
59
80
  */
@@ -13,6 +13,9 @@ export interface TasConfig {
13
13
  * HTTP client interface that consuming apps must implement
14
14
  */
15
15
  export interface TasHttpClient {
16
+ get<T>(url: string, options: {
17
+ headers?: Record<string, string>;
18
+ }): Observable<T>;
16
19
  post<T>(url: string, options: {
17
20
  body: any;
18
21
  headers?: Record<string, string>;
@@ -56,6 +56,7 @@ export declare enum ViewMode {
56
56
  PIP = "PIP"
57
57
  }
58
58
  export interface TasCurrentUser {
59
+ id: number;
59
60
  name: string;
60
61
  lastname: string;
61
62
  role: TasUserRole;
@@ -108,6 +109,8 @@ export interface ProxyVideoStatusResponse {
108
109
  waitingRoomAvailable: boolean;
109
110
  appointmentId: number;
110
111
  activateGeo: boolean;
112
+ geoRequestActive?: boolean;
113
+ allGeoGranted?: boolean;
111
114
  users: ProxyVideoStatusUser[];
112
115
  };
113
116
  }
@@ -122,13 +125,38 @@ export interface FinishSessionResponse {
122
125
  };
123
126
  }
124
127
  export interface ProxyVideoUserModifyRequest {
125
- userId: number;
128
+ userId?: number;
126
129
  videoCallId: number;
127
- action: UserCallAction;
130
+ action?: UserCallAction;
128
131
  newStatus?: RoomUserStatus;
132
+ latitude?: number;
133
+ longitude?: number;
129
134
  }
130
135
  export interface WaitingRoomUser {
131
136
  userId: number;
132
137
  name: string;
133
138
  status: RoomUserStatus;
134
139
  }
140
+ export declare enum AppointmentStatus {
141
+ CONFIRMED = "CONFIRMED",
142
+ CANCELLED = "CANCELLED",
143
+ RESCHEDULED = "RESCHEDULED"
144
+ }
145
+ export interface TasAppointment {
146
+ id: number;
147
+ agendaId: number;
148
+ date: string;
149
+ startTime: string;
150
+ endTime: string;
151
+ bookingType: string;
152
+ status: AppointmentStatus;
153
+ title: string;
154
+ notes: string;
155
+ entityId: number;
156
+ roomType: TasRoomType;
157
+ }
158
+ export interface GetAppointmentsRequest {
159
+ fromDate: string;
160
+ toDate: string;
161
+ entityId?: number;
162
+ }
@@ -0,0 +1,24 @@
1
+ import * as i0 from "@angular/core";
2
+ export interface GeoPosition {
3
+ latitude: number;
4
+ longitude: number;
5
+ }
6
+ export declare class GeolocationService {
7
+ private cachedPosition;
8
+ /**
9
+ * Request current geolocation position using Web Geolocation API.
10
+ * Works in both browser and Capacitor environments.
11
+ * @returns Promise with {latitude, longitude} or null if denied/unavailable
12
+ */
13
+ getCurrentPosition(): Promise<GeoPosition | null>;
14
+ /**
15
+ * Get the cached position from the last successful request.
16
+ */
17
+ getCachedPosition(): GeoPosition | null;
18
+ /**
19
+ * Clear the cached position.
20
+ */
21
+ clearCache(): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<GeolocationService, never>;
23
+ static ɵprov: i0.ɵɵInjectableDeclaration<GeolocationService>;
24
+ }
@@ -0,0 +1,26 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class TasUtilityService {
3
+ /**
4
+ * Determines if the button should be shown based on the error message.
5
+ * Returns false if the error message matches any of the patterns that indicate
6
+ * the button should be hidden (but polling should continue).
7
+ *
8
+ * @param errorMessage The error message from the status call
9
+ * @returns true if button should be shown, false if it should be hidden
10
+ */
11
+ shouldShowButton(errorMessage: string | null | undefined): boolean;
12
+ /**
13
+ * Check if at least one OWNER has joined the call.
14
+ */
15
+ checkIfOwnerJoined(users: {
16
+ userId: number;
17
+ rol: string;
18
+ status: string;
19
+ }[]): boolean;
20
+ /**
21
+ * Extract error message from various error structures.
22
+ */
23
+ extractErrorMessage(err: any, fallback?: string): string;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<TasUtilityService, never>;
25
+ static ɵprov: i0.ɵɵInjectableDeclaration<TasUtilityService>;
26
+ }
@@ -1,12 +1,14 @@
1
+ import { TasUtilityService } from './tas-utility.service';
1
2
  import { Observable } from 'rxjs';
2
3
  import * as OT from '@opentok/client';
3
- import { GenerateTokenResponse, StartSessionRequest, FinishSessionResponse, ProxyVideoStatusRequest, ProxyVideoStatusResponse, ProxyVideoFinishRequest, ProxyVideoUserModifyRequest, UserCallAction, RoomUserStatus, TasBusinessRole, CallState, ViewMode, WaitingRoomUser } from '../interfaces/tas.interfaces';
4
+ import { GenerateTokenResponse, StartSessionRequest, FinishSessionResponse, ProxyVideoStatusRequest, ProxyVideoStatusResponse, ProxyVideoFinishRequest, ProxyVideoUserModifyRequest, UserCallAction, RoomUserStatus, TasBusinessRole, CallState, ViewMode, WaitingRoomUser, TasAppointment, GetAppointmentsRequest } from '../interfaces/tas.interfaces';
4
5
  import { TasConfig, TasHttpClient } from '../config/tas.config';
5
6
  import * as i0 from "@angular/core";
6
7
  export { CallState, ViewMode, TasBusinessRole, UserCallAction, RoomUserStatus };
7
8
  export declare class TasService {
8
9
  private httpClient;
9
10
  private config;
11
+ private tasUtilityService;
10
12
  private session;
11
13
  private publisher;
12
14
  private subscribers;
@@ -32,13 +34,19 @@ export declare class TasService {
32
34
  ownerHasLeft$: Observable<boolean>;
33
35
  private joinableSubject;
34
36
  joinable$: Observable<boolean>;
37
+ private activateGeoSubject;
38
+ activateGeo$: Observable<boolean>;
39
+ private geoRequestActiveSubject;
40
+ geoRequestActive$: Observable<boolean>;
41
+ private allGeoGrantedSubject;
42
+ allGeoGranted$: Observable<boolean>;
35
43
  private statusPollingInterval;
36
44
  private readonly DEFAULT_POLL_INTERVAL_MS;
37
45
  private wasOwnerPresent;
38
46
  private currentAppointmentId;
39
47
  private currentVideoCallId;
40
48
  private currentTenant;
41
- constructor(httpClient: TasHttpClient, config: TasConfig);
49
+ constructor(httpClient: TasHttpClient, config: TasConfig, tasUtilityService: TasUtilityService);
42
50
  /**
43
51
  * Start automatic status polling for the current session.
44
52
  * Status is polled every intervalMs (default 30s).
@@ -87,6 +95,12 @@ export declare class TasService {
87
95
  */
88
96
  modifyProxyVideoUser(payload: ProxyVideoUserModifyRequest): Observable<any>;
89
97
  finishProxyVideoSession(payload: ProxyVideoFinishRequest): Observable<FinishSessionResponse>;
98
+ /**
99
+ * Get user appointments within a date range.
100
+ * @param params Date range for querying appointments
101
+ * @returns Observable of appointment array
102
+ */
103
+ getAppointments(params: GetAppointmentsRequest): Observable<TasAppointment[]>;
90
104
  /**
91
105
  * Start automatic status polling for the current session.
92
106
  * Status is polled every STATUS_POLL_INTERVAL_MS milliseconds.
@@ -102,10 +116,6 @@ export declare class TasService {
102
116
  * Process status response to update waiting room users and owner join status.
103
117
  */
104
118
  private processStatusResponse;
105
- /**
106
- * Check if at least one OWNER has joined the call.
107
- */
108
- private checkIfOwnerJoined;
109
119
  /**
110
120
  * Admit a user from the waiting room by changing their status.
111
121
  */
@@ -6,8 +6,10 @@ import * as i2 from "./components/tas-videocall/tas-videocall.component";
6
6
  import * as i3 from "./components/tas-floating-call/tas-floating-call.component";
7
7
  import * as i4 from "./components/tas-waiting-room/tas-waiting-room.component";
8
8
  import * as i5 from "./components/tas-avatar/tas-avatar.component";
9
- import * as i6 from "@angular/common";
10
- import * as i7 from "@angular/forms";
9
+ import * as i6 from "./components/tas-incoming-appointment/tas-incoming-appointment.component";
10
+ import * as i7 from "@angular/common";
11
+ import * as i8 from "@angular/forms";
12
+ import * as i9 from "@ng-bootstrap/ng-bootstrap";
11
13
  export declare class TasUellSdkModule {
12
14
  /**
13
15
  * Use forRoot() to configure the TAS SDK module with required dependencies.
@@ -43,6 +45,6 @@ export declare class TasUellSdkModule {
43
45
  httpClient: new (...args: any[]) => TasHttpClient;
44
46
  }): ModuleWithProviders<TasUellSdkModule>;
45
47
  static ɵfac: i0.ɵɵFactoryDeclaration<TasUellSdkModule, never>;
46
- static ɵmod: i0.ɵɵNgModuleDeclaration<TasUellSdkModule, [typeof i1.TasButtonComponent, typeof i2.TasVideocallComponent, typeof i3.TasFloatingCallComponent, typeof i4.TasWaitingRoomComponent, typeof i5.TasAvatarComponent], [typeof i6.CommonModule, typeof i7.FormsModule], [typeof i1.TasButtonComponent, typeof i2.TasVideocallComponent, typeof i3.TasFloatingCallComponent, typeof i4.TasWaitingRoomComponent, typeof i5.TasAvatarComponent]>;
48
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TasUellSdkModule, [typeof i1.TasButtonComponent, typeof i2.TasVideocallComponent, typeof i3.TasFloatingCallComponent, typeof i4.TasWaitingRoomComponent, typeof i5.TasAvatarComponent, typeof i6.TasIncomingAppointmentComponent], [typeof i7.CommonModule, typeof i8.FormsModule, typeof i9.NgbTooltipModule], [typeof i1.TasButtonComponent, typeof i2.TasVideocallComponent, typeof i3.TasFloatingCallComponent, typeof i4.TasWaitingRoomComponent, typeof i5.TasAvatarComponent, typeof i6.TasIncomingAppointmentComponent]>;
47
49
  static ɵinj: i0.ɵɵInjectorDeclaration<TasUellSdkModule>;
48
50
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tas-uell-sdk",
3
- "version": "0.0.6",
3
+ "version": "0.1.1",
4
4
  "description": "TAS (Telemedicine Assistance Service) SDK for Angular applications - Video call functionality using TokBox/Vonage",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
package/public-api.d.ts CHANGED
@@ -1,9 +1,12 @@
1
1
  export * from './lib/config/tas.config';
2
2
  export * from './lib/interfaces/tas.interfaces';
3
3
  export * from './lib/services/tas.service';
4
+ export * from './lib/services/geolocation.service';
5
+ export * from './lib/services/tas-utility.service';
4
6
  export * from './lib/components/tas-btn/tas-btn.component';
5
7
  export * from './lib/components/tas-waiting-room/tas-waiting-room.component';
6
8
  export * from './lib/components/tas-videocall/tas-videocall.component';
7
9
  export * from './lib/components/tas-floating-call/tas-floating-call.component';
8
10
  export * from './lib/components/tas-avatar/tas-avatar.component';
11
+ export * from './lib/components/tas-incoming-appointment/tas-incoming-appointment.component';
9
12
  export * from './lib/tas-uell-sdk.module';