Refactor imports in shared-meet-components to use relative paths
- Updated import paths in meeting.component.ts, room-recordings.component.ts, view-recording.component.ts, and other service files to use relative paths instead of absolute paths. - Removed the '@openvidu-meet/shared/*' path mapping from tsconfig.json. - Added shared-meet-components to pnpm workspace and updated pnpm-lock.yaml to reflect the changes.
This commit is contained in:
parent
7f7198dfcf
commit
45ef1f53b1
@ -4,6 +4,7 @@
|
||||
"scripts": {
|
||||
"dev": "pnpm exec ng build --configuration development --watch",
|
||||
"build": "func() { pnpm exec ng build --configuration production --base-href=\"${1:-/}\"; }; func",
|
||||
"lib:serve": "ng build shared-meet-components --watch",
|
||||
"lib:build": "ng build shared-meet-components --configuration production",
|
||||
"lib:pack": "cd dist/shared-meet-components && pnpm pack",
|
||||
"test:unit": "ng test openvidu-meet --watch=false --code-coverage",
|
||||
@ -27,6 +28,7 @@
|
||||
"@angular/platform-browser-dynamic": "20.3.3",
|
||||
"@angular/router": "20.3.3",
|
||||
"@livekit/track-processors": "0.6.1",
|
||||
"@openvidu-meet/shared-components": "workspace:*",
|
||||
"@openvidu-meet/typings": "workspace:*",
|
||||
"autolinker": "4.1.5",
|
||||
"core-js": "3.45.1",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
|
||||
"dest": "../../dist/shared-meet-components",
|
||||
"dest": "dist",
|
||||
"lib": {
|
||||
"entryFile": "src/public-api.ts"
|
||||
}
|
||||
|
||||
@ -1,6 +1,9 @@
|
||||
{
|
||||
"name": "@openvidu-meet/shared-components",
|
||||
"version": "0.0.1",
|
||||
"main": "dist/fesm2022/openvidu-meet-shared-components.mjs",
|
||||
"module": "dist/fesm2022/openvidu-meet-shared-components.mjs",
|
||||
"typings": "dist/index.d.ts",
|
||||
"peerDependencies": {
|
||||
"@angular/animations": "^20.0.0",
|
||||
"@angular/cdk": "^20.0.0",
|
||||
|
||||
@ -7,8 +7,8 @@ import { MatSidenav, MatSidenavModule } from '@angular/material/sidenav';
|
||||
import { MatToolbarModule } from '@angular/material/toolbar';
|
||||
import { MatTooltipModule } from '@angular/material/tooltip';
|
||||
import { RouterModule } from '@angular/router';
|
||||
import { ConsoleNavLink } from '@openvidu-meet/shared/models';
|
||||
import { AppDataService, ThemeService } from '@openvidu-meet/shared/services';
|
||||
import { ConsoleNavLink } from '../../models';
|
||||
import { AppDataService, ThemeService } from '../../services';
|
||||
|
||||
@Component({
|
||||
selector: 'ov-console-nav',
|
||||
|
||||
@ -10,7 +10,7 @@ import {
|
||||
MatDialogTitle
|
||||
} from '@angular/material/dialog';
|
||||
import { MatIconModule } from '@angular/material/icon';
|
||||
import type { DialogOptions } from '@openvidu-meet/shared/models';
|
||||
import type { DialogOptions } from '../../../models';
|
||||
|
||||
@Component({
|
||||
selector: 'ov-dialog',
|
||||
|
||||
@ -10,7 +10,7 @@ import {
|
||||
} from '@angular/material/dialog';
|
||||
import { MatIconModule } from '@angular/material/icon';
|
||||
import { MatRadioModule } from '@angular/material/radio';
|
||||
import type { DeleteRoomDialogOptions } from '@openvidu-meet/shared/models';
|
||||
import type { DeleteRoomDialogOptions } from '../../../models';
|
||||
import { MeetRoomDeletionPolicyWithMeeting, MeetRoomDeletionPolicyWithRecordings } from '@openvidu-meet/typings';
|
||||
|
||||
@Component({
|
||||
|
||||
@ -15,7 +15,7 @@ import { MatInputModule } from '@angular/material/input';
|
||||
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
||||
import { MatRadioModule } from '@angular/material/radio';
|
||||
import { MatTooltipModule } from '@angular/material/tooltip';
|
||||
import { RecordingService } from '@openvidu-meet/shared/services';
|
||||
import { RecordingService } from '../../../services';
|
||||
|
||||
@Component({
|
||||
selector: 'ov-share-recording-dialog',
|
||||
|
||||
@ -10,3 +10,8 @@ export * from './selectable-card/selectable-card.component';
|
||||
export * from './spinner/spinner.component';
|
||||
export * from './step-indicator/step-indicator.component';
|
||||
export * from './wizard-nav/wizard-nav.component';
|
||||
export * from './share-meeting-link/share-meeting-link.component';
|
||||
|
||||
export * from './dialogs/basic-dialog/dialog.component';
|
||||
export * from './dialogs/share-recording-dialog/share-recording-dialog.component';
|
||||
export * from './dialogs/delete-room-dialog/delete-room-dialog.component';
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
import { Component } from '@angular/core';
|
||||
import { MatButtonModule } from '@angular/material/button';
|
||||
import { MatIconModule } from '@angular/material/icon';
|
||||
import { ProFeatureBadgeComponent } from '@openvidu-meet/shared/components';
|
||||
import { ProFeatureBadgeComponent } from '../../components';
|
||||
|
||||
@Component({
|
||||
selector: 'ov-logo-selector',
|
||||
|
||||
@ -15,7 +15,7 @@ import { MatTableModule } from '@angular/material/table';
|
||||
import { MatToolbarModule } from '@angular/material/toolbar';
|
||||
import { MatTooltipModule } from '@angular/material/tooltip';
|
||||
import { MeetRecordingInfo, MeetRecordingStatus } from '@openvidu-meet/typings';
|
||||
import { formatBytes, formatDurationToHMS } from '@openvidu-meet/shared/utils';
|
||||
import { formatBytes, formatDurationToHMS } from '../../utils';
|
||||
import { ViewportService } from 'openvidu-components-angular';
|
||||
|
||||
export interface RecordingTableAction {
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
||||
import { MatIconModule } from '@angular/material/icon';
|
||||
import { ProFeatureBadgeComponent } from '@openvidu-meet/shared/components';
|
||||
import { ProFeatureBadgeComponent } from '../../components';
|
||||
|
||||
/**
|
||||
* Interface for selectable card option data
|
||||
|
||||
@ -4,7 +4,7 @@ import { CommonModule } from '@angular/common';
|
||||
import { Component, computed, input, output } from '@angular/core';
|
||||
import { ReactiveFormsModule } from '@angular/forms';
|
||||
import { MatStepperModule } from '@angular/material/stepper';
|
||||
import { WizardStep } from '@openvidu-meet/shared/models';
|
||||
import { WizardStep } from '../../models';
|
||||
import { Observable } from 'rxjs';
|
||||
import { map } from 'rxjs/operators';
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
||||
import { MatButton } from '@angular/material/button';
|
||||
import { MatIcon } from '@angular/material/icon';
|
||||
import type { WizardNavigationConfig, WizardNavigationEvent } from '@openvidu-meet/shared/models';
|
||||
import type { WizardNavigationConfig, WizardNavigationEvent } from '../../models';
|
||||
|
||||
@Component({
|
||||
selector: 'ov-wizard-nav',
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import { inject } from '@angular/core';
|
||||
import { ActivatedRouteSnapshot, CanActivateFn, RouterStateSnapshot } from '@angular/router';
|
||||
import { ErrorReason } from '@openvidu-meet/shared/models';
|
||||
import { ErrorReason } from '../models';
|
||||
import {
|
||||
AuthService,
|
||||
GlobalConfigService,
|
||||
@ -8,7 +8,7 @@ import {
|
||||
ParticipantService,
|
||||
RecordingService,
|
||||
RoomService
|
||||
} from '@openvidu-meet/shared/services';
|
||||
} from '../services';
|
||||
import { AuthMode, ParticipantRole } from '@openvidu-meet/typings';
|
||||
|
||||
export const checkUserAuthenticatedGuard: CanActivateFn = async (
|
||||
|
||||
@ -1,13 +1,13 @@
|
||||
import { inject } from '@angular/core';
|
||||
import { ActivatedRouteSnapshot, CanActivateFn } from '@angular/router';
|
||||
import { ErrorReason } from '@openvidu-meet/shared/models';
|
||||
import { ErrorReason } from '../models';
|
||||
import {
|
||||
AppDataService,
|
||||
NavigationService,
|
||||
ParticipantService,
|
||||
RoomService,
|
||||
SessionStorageService
|
||||
} from '@openvidu-meet/shared/services';
|
||||
} from '../services';
|
||||
import { WebComponentProperty } from '@openvidu-meet/typings';
|
||||
|
||||
export const extractRoomQueryParamsGuard: CanActivateFn = (route: ActivatedRouteSnapshot) => {
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import { inject } from '@angular/core';
|
||||
import { CanActivateFn, NavigationEnd, Router } from '@angular/router';
|
||||
import { NavigationService } from '@openvidu-meet/shared/services';
|
||||
import { NavigationService } from '../services';
|
||||
import { filter, take } from 'rxjs';
|
||||
|
||||
/**
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
import { inject } from '@angular/core';
|
||||
import { ActivatedRouteSnapshot, CanActivateFn, RouterStateSnapshot } from '@angular/router';
|
||||
import { ErrorReason } from '@openvidu-meet/shared/models';
|
||||
import { NavigationService, ParticipantService, RecordingService, RoomService } from '@openvidu-meet/shared/services';
|
||||
import { ErrorReason } from '../models';
|
||||
import { NavigationService, ParticipantService, RecordingService, RoomService } from '../services';
|
||||
|
||||
/**
|
||||
* Guard to validate access to a room by generating a participant token.
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
import { HttpErrorResponse, HttpEvent, HttpHandlerFn, HttpInterceptorFn, HttpRequest } from '@angular/common/http';
|
||||
import { inject } from '@angular/core';
|
||||
import { Router } from '@angular/router';
|
||||
import { AuthService, ParticipantService, RecordingService, RoomService, TokenStorageService } from '@openvidu-meet/shared/services';
|
||||
import { AuthService, ParticipantService, RecordingService, RoomService, TokenStorageService } from '../services';
|
||||
import { catchError, from, Observable, switchMap } from 'rxjs';
|
||||
|
||||
/**
|
||||
|
||||
@ -10,7 +10,7 @@ import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
||||
import { MatSelectModule } from '@angular/material/select';
|
||||
import { MatSlideToggleChange, MatSlideToggleModule } from '@angular/material/slide-toggle';
|
||||
import { MatTooltipModule } from '@angular/material/tooltip';
|
||||
import { GlobalConfigService, NotificationService } from '@openvidu-meet/shared/services';
|
||||
import { GlobalConfigService, NotificationService } from '../../../services';
|
||||
import { MeetAppearanceConfig, MeetRoomTheme, MeetRoomThemeMode } from '@openvidu-meet/typings';
|
||||
import { OPENVIDU_COMPONENTS_DARK_THEME, OPENVIDU_COMPONENTS_LIGHT_THEME } from 'openvidu-components-angular';
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
import { Component } from '@angular/core';
|
||||
import { ConsoleNavComponent } from '@openvidu-meet/shared/components';
|
||||
import { ConsoleNavLink } from '@openvidu-meet/shared/models';
|
||||
import { AuthService } from '@openvidu-meet/shared/services';
|
||||
import { ConsoleNavComponent } from '../../components';
|
||||
import { ConsoleNavLink } from '../../models';
|
||||
import { AuthService } from '../../services';
|
||||
|
||||
@Component({
|
||||
selector: 'ov-console',
|
||||
|
||||
@ -9,7 +9,7 @@ import { MatInputModule } from '@angular/material/input';
|
||||
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
||||
import { MatSlideToggleModule } from '@angular/material/slide-toggle';
|
||||
import { MatTooltipModule } from '@angular/material/tooltip';
|
||||
import { AuthService, GlobalConfigService, NotificationService } from '@openvidu-meet/shared/services';
|
||||
import { AuthService, GlobalConfigService, NotificationService } from '../../../services';
|
||||
import { MeetApiKey } from '@openvidu-meet/typings';
|
||||
|
||||
@Component({
|
||||
|
||||
@ -4,7 +4,7 @@ import { MatButtonModule } from '@angular/material/button';
|
||||
import { MatCardModule } from '@angular/material/card';
|
||||
import { MatGridListModule } from '@angular/material/grid-list';
|
||||
import { MatIconModule } from '@angular/material/icon';
|
||||
import { NavigationService, RecordingService, RoomService } from '@openvidu-meet/shared/services';
|
||||
import { NavigationService, RecordingService, RoomService } from '../../../services';
|
||||
import { MeetRecordingStatus, MeetRoom, MeetRoomStatus } from '@openvidu-meet/typings';
|
||||
|
||||
interface OverviewStats {
|
||||
|
||||
@ -2,8 +2,8 @@ import { Component, OnInit, signal } from '@angular/core';
|
||||
import { MatIconModule } from '@angular/material/icon';
|
||||
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
||||
import { ActivatedRoute } from '@angular/router';
|
||||
import { RecordingListsComponent, RecordingTableAction } from '@openvidu-meet/shared/components';
|
||||
import { NotificationService, RecordingService } from '@openvidu-meet/shared/services';
|
||||
import { RecordingListsComponent, RecordingTableAction } from '../../../components';
|
||||
import { NotificationService, RecordingService } from '../../../services';
|
||||
import { MeetRecordingFilters, MeetRecordingInfo } from '@openvidu-meet/typings';
|
||||
import { ILogger, LoggerService } from 'openvidu-components-angular';
|
||||
|
||||
|
||||
@ -5,7 +5,7 @@ import { MatFormFieldModule } from '@angular/material/form-field';
|
||||
import { MatIconModule } from '@angular/material/icon';
|
||||
import { MatInputModule } from '@angular/material/input';
|
||||
import { MatTooltipModule } from '@angular/material/tooltip';
|
||||
import { RoomWizardStateService } from '@openvidu-meet/shared/services';
|
||||
import { RoomWizardStateService } from '../../../../services';
|
||||
import { MeetRoomOptions } from '@openvidu-meet/typings';
|
||||
import { Subject, takeUntil } from 'rxjs';
|
||||
|
||||
|
||||
@ -5,9 +5,9 @@ import { MatIconModule } from '@angular/material/icon';
|
||||
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
||||
import { MatSlideToggleModule } from '@angular/material/slide-toggle';
|
||||
import { ActivatedRoute } from '@angular/router';
|
||||
import { StepIndicatorComponent, WizardNavComponent } from '@openvidu-meet/shared/components';
|
||||
import { WizardNavigationConfig, WizardStep } from '@openvidu-meet/shared/models';
|
||||
import { NavigationService, NotificationService, RoomService, RoomWizardStateService } from '@openvidu-meet/shared/services';
|
||||
import { StepIndicatorComponent, WizardNavComponent } from '../../../../components';
|
||||
import { WizardNavigationConfig, WizardStep } from '../../../../models';
|
||||
import { NavigationService, NotificationService, RoomService, RoomWizardStateService } from '../../../../services';
|
||||
import { MeetRoomOptions } from '@openvidu-meet/typings';
|
||||
import { RoomBasicCreationComponent } from '../room-basic-creation/room-basic-creation.component';
|
||||
import { RecordingConfigComponent } from './steps/recording-config/recording-config.component';
|
||||
|
||||
@ -7,8 +7,8 @@ import { MatFormFieldModule } from '@angular/material/form-field';
|
||||
import { MatIconModule } from '@angular/material/icon';
|
||||
import { MatRadioModule } from '@angular/material/radio';
|
||||
import { MatSelectModule } from '@angular/material/select';
|
||||
import { SelectableCardComponent, SelectableOption, SelectionEvent } from '@openvidu-meet/shared/components';
|
||||
import { RoomWizardStateService } from '@openvidu-meet/shared/services';
|
||||
import { SelectableCardComponent, SelectableOption, SelectionEvent } from '../../../../../../components';
|
||||
import { RoomWizardStateService } from '../../../../../../services';
|
||||
import { MeetRecordingAccess } from '@openvidu-meet/typings';
|
||||
import { Subject, takeUntil } from 'rxjs';
|
||||
|
||||
|
||||
@ -5,8 +5,8 @@ import { MatButtonModule } from '@angular/material/button';
|
||||
import { MatCardModule } from '@angular/material/card';
|
||||
import { MatIconModule } from '@angular/material/icon';
|
||||
import { MatRadioModule } from '@angular/material/radio';
|
||||
import { SelectableCardComponent, SelectableOption, SelectionEvent } from '@openvidu-meet/shared/components';
|
||||
import { RoomWizardStateService } from '@openvidu-meet/shared/services';
|
||||
import { SelectableCardComponent, SelectableOption, SelectionEvent } from '../../../../../../components';
|
||||
import { RoomWizardStateService } from '../../../../../../services';
|
||||
import { Subject, takeUntil } from 'rxjs';
|
||||
|
||||
@Component({
|
||||
|
||||
@ -5,8 +5,8 @@ import { MatButtonModule } from '@angular/material/button';
|
||||
import { MatCardModule } from '@angular/material/card';
|
||||
import { MatIconModule } from '@angular/material/icon';
|
||||
import { MatRadioModule } from '@angular/material/radio';
|
||||
import { SelectableCardComponent, SelectableOption, SelectionEvent } from '@openvidu-meet/shared/components';
|
||||
import { RoomWizardStateService } from '@openvidu-meet/shared/services';
|
||||
import { SelectableCardComponent, SelectableOption, SelectionEvent } from '../../../../../../components';
|
||||
import { RoomWizardStateService } from '../../../../../../services';
|
||||
import { Subject, takeUntil } from 'rxjs';
|
||||
|
||||
@Component({
|
||||
|
||||
@ -3,7 +3,7 @@ import { FormGroup, ReactiveFormsModule } from '@angular/forms';
|
||||
import { MatCardModule } from '@angular/material/card';
|
||||
import { MatIconModule } from '@angular/material/icon';
|
||||
import { MatSlideToggleModule } from '@angular/material/slide-toggle';
|
||||
import { RoomWizardStateService } from '@openvidu-meet/shared/services';
|
||||
import { RoomWizardStateService } from '../../../../../../services';
|
||||
import { Subject, takeUntil } from 'rxjs';
|
||||
|
||||
@Component({
|
||||
|
||||
@ -8,7 +8,7 @@ import { MatIconModule } from '@angular/material/icon';
|
||||
import { MatInputModule } from '@angular/material/input';
|
||||
import { MatSelectModule } from '@angular/material/select';
|
||||
import { MatTooltipModule } from '@angular/material/tooltip';
|
||||
import { RoomWizardStateService } from '@openvidu-meet/shared/services';
|
||||
import { RoomWizardStateService } from '../../../../../../services';
|
||||
import {
|
||||
MeetRoomAutoDeletionPolicy,
|
||||
MeetRoomDeletionPolicyWithMeeting,
|
||||
|
||||
@ -15,10 +15,9 @@ import { MatSortModule } from '@angular/material/sort';
|
||||
import { MatTableModule } from '@angular/material/table';
|
||||
import { MatTooltipModule } from '@angular/material/tooltip';
|
||||
import { RouterModule } from '@angular/router';
|
||||
import { RoomsListsComponent, RoomTableAction } from '@openvidu-meet/shared/components';
|
||||
import { DeleteRoomDialogComponent } from '@openvidu-meet/shared/components/dialogs/delete-room-dialog/delete-room-dialog.component';
|
||||
import { DeleteRoomDialogOptions } from '@openvidu-meet/shared/models';
|
||||
import { NavigationService, NotificationService, RoomService } from '@openvidu-meet/shared/services';
|
||||
import { DeleteRoomDialogComponent, RoomsListsComponent, RoomTableAction } from '../../../components';
|
||||
import { DeleteRoomDialogOptions } from '../../../models';
|
||||
import { NavigationService, NotificationService, RoomService } from '../../../services';
|
||||
import {
|
||||
MeetRoom,
|
||||
MeetRoomDeletionErrorCode,
|
||||
|
||||
@ -17,8 +17,8 @@ import { MatInputModule } from '@angular/material/input';
|
||||
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
||||
import { MatSelectModule } from '@angular/material/select';
|
||||
import { MatTooltipModule } from '@angular/material/tooltip';
|
||||
// import { ProFeatureBadgeComponent } from '@openvidu-meet/shared/components';
|
||||
import { AuthService, GlobalConfigService, NotificationService } from '@openvidu-meet/shared/services';
|
||||
// import { ProFeatureBadgeComponent } from '../components';
|
||||
import { AuthService, GlobalConfigService, NotificationService } from '../../../services';
|
||||
import { AuthMode } from '@openvidu-meet/typings';
|
||||
|
||||
@Component({
|
||||
|
||||
@ -3,8 +3,8 @@ import { MatButtonModule } from '@angular/material/button';
|
||||
import { MatCardModule } from '@angular/material/card';
|
||||
import { MatIconModule } from '@angular/material/icon';
|
||||
import { ActivatedRoute } from '@angular/router';
|
||||
import { ErrorReason } from '@openvidu-meet/shared/models';
|
||||
import { AppDataService, AuthService, NavigationService, WebComponentManagerService } from '@openvidu-meet/shared/services';
|
||||
import { ErrorReason } from '../../models';
|
||||
import { AppDataService, AuthService, NavigationService, WebComponentManagerService } from '../../services';
|
||||
|
||||
@Component({
|
||||
selector: 'ov-error',
|
||||
|
||||
@ -8,7 +8,7 @@ import { MatIconModule } from '@angular/material/icon';
|
||||
import { MatInputModule } from '@angular/material/input';
|
||||
import { MatTooltipModule } from '@angular/material/tooltip';
|
||||
import { ActivatedRoute, RouterModule } from '@angular/router';
|
||||
import { AuthService, NavigationService } from '@openvidu-meet/shared/services';
|
||||
import { AuthService, NavigationService } from '../../services';
|
||||
|
||||
@Component({
|
||||
selector: 'ov-login',
|
||||
|
||||
@ -4,7 +4,7 @@ import { MatButtonModule } from '@angular/material/button';
|
||||
import { MatCardModule } from '@angular/material/card';
|
||||
import { MatIconModule } from '@angular/material/icon';
|
||||
import { ActivatedRoute } from '@angular/router';
|
||||
import { AppDataService, AuthService, NavigationService, WebComponentManagerService } from '@openvidu-meet/shared/services';
|
||||
import { AppDataService, AuthService, NavigationService, WebComponentManagerService } from '../../../services';
|
||||
import { LeftEventReason } from '@openvidu-meet/typings';
|
||||
|
||||
@Component({
|
||||
|
||||
@ -12,9 +12,8 @@ import { MatInputModule } from '@angular/material/input';
|
||||
import { MatMenuModule } from '@angular/material/menu';
|
||||
import { MatTooltipModule } from '@angular/material/tooltip';
|
||||
import { ActivatedRoute } from '@angular/router';
|
||||
import { ShareMeetingLinkComponent } from '@openvidu-meet/shared/components/share-meeting-link/share-meeting-link.component';
|
||||
import { ErrorReason } from '@openvidu-meet/shared/models';
|
||||
import { CustomParticipantModel } from '@openvidu-meet/shared/models/custom-participant.model';
|
||||
import { ShareMeetingLinkComponent } from '../../components';
|
||||
import { CustomParticipantModel, ErrorReason } from '../../models';
|
||||
import {
|
||||
AppDataService,
|
||||
ApplicationFeatures,
|
||||
@ -30,7 +29,7 @@ import {
|
||||
SessionStorageService,
|
||||
TokenStorageService,
|
||||
WebComponentManagerService
|
||||
} from '@openvidu-meet/shared/services';
|
||||
} from '../../services';
|
||||
import {
|
||||
LeftEventReason,
|
||||
MeetRoom,
|
||||
|
||||
@ -4,8 +4,8 @@ import { MatIconModule } from '@angular/material/icon';
|
||||
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
||||
import { MatToolbarModule } from '@angular/material/toolbar';
|
||||
import { ActivatedRoute } from '@angular/router';
|
||||
import { RecordingListsComponent, RecordingTableAction } from '@openvidu-meet/shared/components';
|
||||
import { NavigationService, NotificationService, RecordingService, RoomService } from '@openvidu-meet/shared/services';
|
||||
import { RecordingListsComponent, RecordingTableAction } from '../../components';
|
||||
import { NavigationService, NotificationService, RecordingService, RoomService } from '../../services';
|
||||
import { MeetRecordingFilters, MeetRecordingInfo } from '@openvidu-meet/typings';
|
||||
import { ILogger, LoggerService } from 'openvidu-components-angular';
|
||||
|
||||
|
||||
@ -7,10 +7,10 @@ import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
||||
import { MatSnackBarModule } from '@angular/material/snack-bar';
|
||||
import { MatTooltipModule } from '@angular/material/tooltip';
|
||||
import { ActivatedRoute, Router } from '@angular/router';
|
||||
import { RecordingVideoPlayerComponent } from '@openvidu-meet/shared/components';
|
||||
import { NotificationService, RecordingService } from '@openvidu-meet/shared/services';
|
||||
import { RecordingVideoPlayerComponent } from '../../components';
|
||||
import { NotificationService, RecordingService } from '../../services';
|
||||
import { MeetRecordingInfo, MeetRecordingStatus } from '@openvidu-meet/typings';
|
||||
import { formatDurationToTime } from '@openvidu-meet/shared/utils';
|
||||
import { formatDurationToTime } from '../../utils';
|
||||
import { ViewportService } from 'openvidu-components-angular';
|
||||
|
||||
@Component({
|
||||
|
||||
@ -10,7 +10,7 @@ import {
|
||||
runGuardsSerially,
|
||||
validateRecordingAccessGuard,
|
||||
validateRoomAccessGuard
|
||||
} from '@openvidu-meet/shared/guards';
|
||||
} from '../guards';
|
||||
import {
|
||||
ConsoleComponent,
|
||||
EmbeddedComponent,
|
||||
@ -26,7 +26,7 @@ import {
|
||||
UsersPermissionsComponent,
|
||||
ViewRecordingComponent,
|
||||
ConfigComponent
|
||||
} from '@openvidu-meet/shared/pages';
|
||||
} from '../pages';
|
||||
|
||||
export const baseRoutes: Routes = [
|
||||
{
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import { Injectable } from '@angular/core';
|
||||
import { AppData, ApplicationMode, Edition } from '@openvidu-meet/shared/models';
|
||||
import { WebComponentManagerService } from '@openvidu-meet/shared/services';
|
||||
import { AppData, ApplicationMode, Edition } from '../models';
|
||||
import { WebComponentManagerService } from '../services';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root'
|
||||
|
||||
@ -1,8 +1,7 @@
|
||||
import { HttpErrorResponse } from '@angular/common/http';
|
||||
import { Injectable } from '@angular/core';
|
||||
import { HttpService, NavigationService, TokenStorageService } from '@openvidu-meet/shared/services';
|
||||
import { HttpService, NavigationService, TokenStorageService } from '../services';
|
||||
import { MeetApiKey, User, UserRole } from '@openvidu-meet/typings';
|
||||
import { from, Observable } from 'rxjs';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root'
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import { Injectable } from '@angular/core';
|
||||
import { FeatureConfigurationService, HttpService } from '@openvidu-meet/shared/services';
|
||||
import { FeatureConfigurationService, HttpService } from '../services';
|
||||
import { AuthMode, AuthTransportMode, MeetAppearanceConfig, SecurityConfig, WebhookConfig } from '@openvidu-meet/typings';
|
||||
import { LoggerService } from 'openvidu-components-angular';
|
||||
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import { Injectable } from '@angular/core';
|
||||
import { HttpService, ParticipantService } from '@openvidu-meet/shared/services';
|
||||
import { HttpService, ParticipantService } from '../services';
|
||||
import { LoggerService } from 'openvidu-components-angular';
|
||||
|
||||
@Injectable({
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
import { Injectable } from '@angular/core';
|
||||
import { Params, Router, UrlTree } from '@angular/router';
|
||||
import { ErrorReason } from '@openvidu-meet/shared/models';
|
||||
import { AppDataService, SessionStorageService } from '@openvidu-meet/shared/services';
|
||||
import { ErrorReason } from '../models';
|
||||
import { AppDataService, SessionStorageService } from '../services';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root'
|
||||
|
||||
@ -3,8 +3,8 @@ import { ComponentPortal } from '@angular/cdk/portal';
|
||||
import { Injectable } from '@angular/core';
|
||||
import { MatDialog } from '@angular/material/dialog';
|
||||
import { MatSnackBar } from '@angular/material/snack-bar';
|
||||
import { DialogComponent, SpinnerComponent } from '@openvidu-meet/shared/components';
|
||||
import { DialogOptions } from '@openvidu-meet/shared/models';
|
||||
import { DialogComponent, SpinnerComponent } from '../components';
|
||||
import { DialogOptions } from '../models';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root'
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import { Injectable } from '@angular/core';
|
||||
import { FeatureConfigurationService, GlobalConfigService, HttpService, TokenStorageService } from '@openvidu-meet/shared/services';
|
||||
import { FeatureConfigurationService, GlobalConfigService, HttpService, TokenStorageService } from '../services';
|
||||
import {
|
||||
AuthTransportMode,
|
||||
MeetTokenMetadata,
|
||||
@ -7,7 +7,7 @@ import {
|
||||
ParticipantPermissions,
|
||||
ParticipantRole
|
||||
} from '@openvidu-meet/typings';
|
||||
import { getValidDecodedToken } from '@openvidu-meet/shared/utils';
|
||||
import { getValidDecodedToken } from '../utils';
|
||||
import { LoggerService } from 'openvidu-components-angular';
|
||||
|
||||
@Injectable({
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import { Injectable } from '@angular/core';
|
||||
import { MatDialog } from '@angular/material/dialog';
|
||||
import { ShareRecordingDialogComponent } from '@openvidu-meet/shared/components';
|
||||
import { ShareRecordingDialogComponent } from '../components';
|
||||
import {
|
||||
AuthService,
|
||||
FeatureConfigurationService,
|
||||
@ -8,9 +8,9 @@ import {
|
||||
HttpService,
|
||||
TokenStorageService,
|
||||
ParticipantService
|
||||
} from '@openvidu-meet/shared/services';
|
||||
} from '../services';
|
||||
import { AuthTransportMode, MeetRecordingFilters, MeetRecordingInfo, RecordingPermissions } from '@openvidu-meet/typings';
|
||||
import { getValidDecodedToken } from '@openvidu-meet/shared/utils';
|
||||
import { getValidDecodedToken } from '../utils';
|
||||
import { LoggerService } from 'openvidu-components-angular';
|
||||
|
||||
@Injectable({
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import { Injectable } from '@angular/core';
|
||||
import { FeatureConfigurationService, HttpService, ParticipantService, SessionStorageService } from '@openvidu-meet/shared/services';
|
||||
import { FeatureConfigurationService, HttpService, ParticipantService, SessionStorageService } from '../services';
|
||||
import {
|
||||
MeetRoom,
|
||||
MeetRoomConfig,
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import { Injectable } from '@angular/core';
|
||||
import { MeetingService, ParticipantService, RoomService } from '@openvidu-meet/shared/services';
|
||||
import { MeetingService, ParticipantService, RoomService } from '../services';
|
||||
import {
|
||||
WebComponentCommand,
|
||||
WebComponentEvent,
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import { computed, Injectable, signal } from '@angular/core';
|
||||
import { AbstractControl, FormBuilder, ValidationErrors, Validators } from '@angular/forms';
|
||||
import { WizardNavigationConfig, WizardStep } from '@openvidu-meet/shared/models';
|
||||
import { WizardNavigationConfig, WizardStep } from '../models';
|
||||
import {
|
||||
MeetRecordingAccess,
|
||||
MeetRoomConfig,
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import { Component, OnInit, inject } from '@angular/core';
|
||||
import { RouterOutlet } from '@angular/router';
|
||||
import { AppDataService } from '@openvidu-meet/shared/services';
|
||||
import { AppDataService } from '@openvidu-meet/shared-components';
|
||||
import packageInfo from '../../package.json';
|
||||
|
||||
@Component({
|
||||
|
||||
@ -29,9 +29,6 @@
|
||||
],
|
||||
"@app/*": [
|
||||
"src/app/*"
|
||||
],
|
||||
"@openvidu-meet/shared/*": [
|
||||
"projects/shared-meet-components/src/lib/*"
|
||||
]
|
||||
},
|
||||
"importHelpers": true,
|
||||
|
||||
162
pnpm-lock.yaml
generated
162
pnpm-lock.yaml
generated
@ -219,6 +219,9 @@ importers:
|
||||
'@livekit/track-processors':
|
||||
specifier: 0.6.1
|
||||
version: 0.6.1(@types/dom-mediacapture-transform@0.1.11)(livekit-client@2.15.11(@types/dom-mediacapture-record@1.0.22))
|
||||
'@openvidu-meet/shared-components':
|
||||
specifier: workspace:*
|
||||
version: link:projects/shared-meet-components
|
||||
'@openvidu-meet/typings':
|
||||
specifier: workspace:*
|
||||
version: link:../typings
|
||||
@ -365,6 +368,39 @@ importers:
|
||||
specifier: 5.9.2
|
||||
version: 5.9.2
|
||||
|
||||
meet-ce/frontend/projects/shared-meet-components:
|
||||
dependencies:
|
||||
'@angular/animations':
|
||||
specifier: ^20.0.0
|
||||
version: 20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))
|
||||
'@angular/cdk':
|
||||
specifier: ^20.0.0
|
||||
version: 20.2.7(@angular/common@20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
|
||||
'@angular/common':
|
||||
specifier: ^20.0.0
|
||||
version: 20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
|
||||
'@angular/core':
|
||||
specifier: ^20.0.0
|
||||
version: 20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1)
|
||||
'@angular/forms':
|
||||
specifier: ^20.0.0
|
||||
version: 20.3.3(@angular/common@20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.3(@angular/animations@20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
|
||||
'@angular/material':
|
||||
specifier: ' ^20.0.0'
|
||||
version: 20.2.7(9c11a8eb564a221c173ca8f1e04d1698)
|
||||
jwt-decode:
|
||||
specifier: ^4.0.0
|
||||
version: 4.0.0
|
||||
openvidu-components-angular:
|
||||
specifier: ^3.4.0
|
||||
version: 3.4.0(00bb4b6f47ece36647efc73b9ad8009f)
|
||||
rxjs:
|
||||
specifier: 7.8.2
|
||||
version: 7.8.2
|
||||
tslib:
|
||||
specifier: ^2.3.0
|
||||
version: 2.8.1
|
||||
|
||||
meet-ce/frontend/webcomponent:
|
||||
dependencies:
|
||||
'@openvidu-meet/typings':
|
||||
@ -648,6 +684,9 @@ importers:
|
||||
'@livekit/track-processors':
|
||||
specifier: 0.6.1
|
||||
version: 0.6.1(@types/dom-mediacapture-transform@0.1.11)(livekit-client@2.15.11(@types/dom-mediacapture-record@1.0.22))
|
||||
'@openvidu-meet/shared-components':
|
||||
specifier: workspace:*
|
||||
version: link:../../meet-ce/frontend/projects/shared-meet-components
|
||||
'@openvidu-meet/typings':
|
||||
specifier: workspace:*
|
||||
version: link:../../meet-ce/typings
|
||||
@ -794,6 +833,15 @@ importers:
|
||||
specifier: 5.9.2
|
||||
version: 5.9.2
|
||||
|
||||
meet-pro/typings:
|
||||
devDependencies:
|
||||
'@openvidu-meet/typings':
|
||||
specifier: workspace:*
|
||||
version: link:../../meet-ce/typings
|
||||
typescript:
|
||||
specifier: 5.9.2
|
||||
version: 5.9.2
|
||||
|
||||
testapp:
|
||||
dependencies:
|
||||
'@openvidu-meet/typings':
|
||||
@ -7404,6 +7452,20 @@ packages:
|
||||
resolution: {integrity: sha512-24epA6vxDX0hqEg+jKhMzeMZ9CvNoJlTcqat6+CL8U8bETM4Kc5i7wv2jhbqGFXHHw7kHLtPFz4QjgTooV5nHQ==}
|
||||
hasBin: true
|
||||
|
||||
openvidu-components-angular@3.4.0:
|
||||
resolution: {integrity: sha512-WsJfBLBUjsnM6jDfjsOmtGlHgG1HFhIkk238f0u0VxqRdhwXlh/BK/kESxJVl6/RkhhIoU6GJ5Q3bCRXrXNzqg==}
|
||||
peerDependencies:
|
||||
'@angular/animations': ^17.0.0 || ^18.0.0 || ^19.0.0
|
||||
'@angular/cdk': ^17.0.0 || ^18.0.0 || ^19.0.0
|
||||
'@angular/common': ^17.0.0 || ^18.0.0 || ^19.0.0
|
||||
'@angular/core': ^17.0.0 || ^18.0.0 || ^19.0.0
|
||||
'@angular/forms': ^17.0.0 || ^18.0.0 || ^19.0.0
|
||||
'@angular/material': ^17.0.0 || ^18.0.0 || ^19.0.0
|
||||
'@livekit/track-processors': ^0.6.0
|
||||
autolinker: ^4.0.0
|
||||
buffer: ^6.0.3
|
||||
livekit-client: ^2.15.0
|
||||
|
||||
opn@5.3.0:
|
||||
resolution: {integrity: sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==}
|
||||
engines: {node: '>=4'}
|
||||
@ -10674,7 +10736,7 @@ snapshots:
|
||||
'@babel/traverse': 7.28.4
|
||||
'@babel/types': 7.28.4
|
||||
convert-source-map: 2.0.0
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
gensync: 1.0.0-beta.2
|
||||
json5: 2.2.3
|
||||
semver: 6.3.1
|
||||
@ -10694,7 +10756,7 @@ snapshots:
|
||||
'@babel/types': 7.28.4
|
||||
'@jridgewell/remapping': 2.3.5
|
||||
convert-source-map: 2.0.0
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
gensync: 1.0.0-beta.2
|
||||
json5: 2.2.3
|
||||
semver: 6.3.1
|
||||
@ -10746,7 +10808,7 @@ snapshots:
|
||||
'@babel/core': 7.28.3
|
||||
'@babel/helper-compilation-targets': 7.27.2
|
||||
'@babel/helper-plugin-utils': 7.27.1
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
lodash.debounce: 4.0.8
|
||||
resolve: 1.22.10
|
||||
transitivePeerDependencies:
|
||||
@ -11428,7 +11490,7 @@ snapshots:
|
||||
'@babel/parser': 7.28.4
|
||||
'@babel/template': 7.27.2
|
||||
'@babel/types': 7.28.4
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
@ -11625,7 +11687,7 @@ snapshots:
|
||||
'@eslint/eslintrc@2.1.4':
|
||||
dependencies:
|
||||
ajv: 6.12.6
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
espree: 9.6.1
|
||||
globals: 13.24.0
|
||||
ignore: 5.3.2
|
||||
@ -11687,7 +11749,7 @@ snapshots:
|
||||
'@humanwhocodes/config-array@0.13.0':
|
||||
dependencies:
|
||||
'@humanwhocodes/object-schema': 2.0.3
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
minimatch: 3.1.2
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
@ -13526,7 +13588,7 @@ snapshots:
|
||||
'@typescript-eslint/type-utils': 6.21.0(eslint@8.57.1)(typescript@5.9.2)
|
||||
'@typescript-eslint/utils': 6.21.0(eslint@8.57.1)(typescript@5.9.2)
|
||||
'@typescript-eslint/visitor-keys': 6.21.0
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
eslint: 8.57.1
|
||||
graphemer: 1.4.0
|
||||
ignore: 5.3.2
|
||||
@ -13578,7 +13640,7 @@ snapshots:
|
||||
'@typescript-eslint/types': 6.21.0
|
||||
'@typescript-eslint/typescript-estree': 6.21.0(typescript@5.9.2)
|
||||
'@typescript-eslint/visitor-keys': 6.21.0
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
eslint: 8.57.1
|
||||
optionalDependencies:
|
||||
typescript: 5.9.2
|
||||
@ -13591,7 +13653,7 @@ snapshots:
|
||||
'@typescript-eslint/types': 8.24.1
|
||||
'@typescript-eslint/typescript-estree': 8.24.1(typescript@5.7.3)
|
||||
'@typescript-eslint/visitor-keys': 8.24.1
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
eslint: 8.57.1
|
||||
typescript: 5.7.3
|
||||
transitivePeerDependencies:
|
||||
@ -13603,7 +13665,7 @@ snapshots:
|
||||
'@typescript-eslint/types': 8.46.1
|
||||
'@typescript-eslint/typescript-estree': 8.46.1(typescript@5.9.2)
|
||||
'@typescript-eslint/visitor-keys': 8.46.1
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
eslint: 8.57.1
|
||||
typescript: 5.9.2
|
||||
transitivePeerDependencies:
|
||||
@ -13613,7 +13675,7 @@ snapshots:
|
||||
dependencies:
|
||||
'@typescript-eslint/tsconfig-utils': 8.46.1(typescript@5.9.2)
|
||||
'@typescript-eslint/types': 8.46.1
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
typescript: 5.9.2
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
@ -13641,7 +13703,7 @@ snapshots:
|
||||
dependencies:
|
||||
'@typescript-eslint/typescript-estree': 6.21.0(typescript@5.9.2)
|
||||
'@typescript-eslint/utils': 6.21.0(eslint@8.57.1)(typescript@5.9.2)
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
eslint: 8.57.1
|
||||
ts-api-utils: 1.4.3(typescript@5.9.2)
|
||||
optionalDependencies:
|
||||
@ -13653,7 +13715,7 @@ snapshots:
|
||||
dependencies:
|
||||
'@typescript-eslint/typescript-estree': 8.24.1(typescript@5.7.3)
|
||||
'@typescript-eslint/utils': 8.24.1(eslint@8.57.1)(typescript@5.7.3)
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
eslint: 8.57.1
|
||||
ts-api-utils: 2.1.0(typescript@5.7.3)
|
||||
typescript: 5.7.3
|
||||
@ -13665,7 +13727,7 @@ snapshots:
|
||||
'@typescript-eslint/types': 8.46.1
|
||||
'@typescript-eslint/typescript-estree': 8.46.1(typescript@5.9.2)
|
||||
'@typescript-eslint/utils': 8.46.1(eslint@8.57.1)(typescript@5.9.2)
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
eslint: 8.57.1
|
||||
ts-api-utils: 2.1.0(typescript@5.9.2)
|
||||
typescript: 5.9.2
|
||||
@ -13682,7 +13744,7 @@ snapshots:
|
||||
dependencies:
|
||||
'@typescript-eslint/types': 6.21.0
|
||||
'@typescript-eslint/visitor-keys': 6.21.0
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
globby: 11.1.0
|
||||
is-glob: 4.0.3
|
||||
minimatch: 9.0.3
|
||||
@ -13697,7 +13759,7 @@ snapshots:
|
||||
dependencies:
|
||||
'@typescript-eslint/types': 8.24.1
|
||||
'@typescript-eslint/visitor-keys': 8.24.1
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
fast-glob: 3.3.3
|
||||
is-glob: 4.0.3
|
||||
minimatch: 9.0.5
|
||||
@ -13713,7 +13775,7 @@ snapshots:
|
||||
'@typescript-eslint/tsconfig-utils': 8.46.1(typescript@5.9.2)
|
||||
'@typescript-eslint/types': 8.46.1
|
||||
'@typescript-eslint/visitor-keys': 8.46.1
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
fast-glob: 3.3.3
|
||||
is-glob: 4.0.3
|
||||
minimatch: 9.0.5
|
||||
@ -13920,7 +13982,7 @@ snapshots:
|
||||
|
||||
agent-base@6.0.2:
|
||||
dependencies:
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
@ -14297,7 +14359,7 @@ snapshots:
|
||||
dependencies:
|
||||
bytes: 3.1.2
|
||||
content-type: 1.0.5
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
http-errors: 2.0.0
|
||||
iconv-lite: 0.6.3
|
||||
on-finished: 2.4.1
|
||||
@ -15569,7 +15631,7 @@ snapshots:
|
||||
ajv: 6.12.6
|
||||
chalk: 4.1.2
|
||||
cross-spawn: 7.0.6
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
doctrine: 3.0.0
|
||||
escape-string-regexp: 4.0.0
|
||||
eslint-scope: 7.2.2
|
||||
@ -15721,7 +15783,7 @@ snapshots:
|
||||
content-type: 1.0.5
|
||||
cookie: 0.7.2
|
||||
cookie-signature: 1.2.2
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
encodeurl: 2.0.0
|
||||
escape-html: 1.0.3
|
||||
etag: 1.8.1
|
||||
@ -15749,7 +15811,7 @@ snapshots:
|
||||
|
||||
extract-zip@2.0.1:
|
||||
dependencies:
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
get-stream: 5.2.0
|
||||
yauzl: 2.10.0
|
||||
optionalDependencies:
|
||||
@ -15861,7 +15923,7 @@ snapshots:
|
||||
|
||||
finalhandler@2.1.0:
|
||||
dependencies:
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
encodeurl: 2.0.0
|
||||
escape-html: 1.0.3
|
||||
on-finished: 2.4.1
|
||||
@ -15906,7 +15968,7 @@ snapshots:
|
||||
|
||||
follow-redirects@1.15.11(debug@4.4.3):
|
||||
optionalDependencies:
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
|
||||
for-each@0.3.5:
|
||||
dependencies:
|
||||
@ -16081,7 +16143,7 @@ snapshots:
|
||||
dependencies:
|
||||
basic-ftp: 5.0.5
|
||||
data-uri-to-buffer: 6.0.2
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
@ -16258,14 +16320,14 @@ snapshots:
|
||||
dependencies:
|
||||
'@tootallnate/once': 2.0.0
|
||||
agent-base: 6.0.2
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
http-proxy-agent@7.0.2:
|
||||
dependencies:
|
||||
agent-base: 7.1.4
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
@ -16284,7 +16346,7 @@ snapshots:
|
||||
http-proxy-middleware@3.0.5:
|
||||
dependencies:
|
||||
'@types/http-proxy': 1.17.16
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
http-proxy: 1.18.1(debug@4.4.3)
|
||||
is-glob: 4.0.3
|
||||
is-plain-object: 5.0.0
|
||||
@ -16303,14 +16365,14 @@ snapshots:
|
||||
https-proxy-agent@5.0.1:
|
||||
dependencies:
|
||||
agent-base: 6.0.2
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
https-proxy-agent@7.0.6:
|
||||
dependencies:
|
||||
agent-base: 7.1.4
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
@ -16424,7 +16486,7 @@ snapshots:
|
||||
dependencies:
|
||||
'@ioredis/commands': 1.4.0
|
||||
cluster-key-slot: 1.1.2
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
denque: 2.1.0
|
||||
lodash.defaults: 4.2.0
|
||||
lodash.isarguments: 3.1.0
|
||||
@ -16672,7 +16734,7 @@ snapshots:
|
||||
|
||||
istanbul-lib-source-maps@4.0.1:
|
||||
dependencies:
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
istanbul-lib-coverage: 3.2.2
|
||||
source-map: 0.6.1
|
||||
transitivePeerDependencies:
|
||||
@ -17569,7 +17631,7 @@ snapshots:
|
||||
log4js@6.9.1:
|
||||
dependencies:
|
||||
date-format: 4.0.14
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
flatted: 3.3.3
|
||||
rfdc: 1.4.1
|
||||
streamroller: 3.1.5
|
||||
@ -18108,6 +18170,20 @@ snapshots:
|
||||
transitivePeerDependencies:
|
||||
- '@types/node'
|
||||
|
||||
openvidu-components-angular@3.4.0(00bb4b6f47ece36647efc73b9ad8009f):
|
||||
dependencies:
|
||||
'@angular/animations': 20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))
|
||||
'@angular/cdk': 20.2.7(@angular/common@20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
|
||||
'@angular/common': 20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
|
||||
'@angular/core': 20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1)
|
||||
'@angular/forms': 20.3.3(@angular/common@20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.3(@angular/animations@20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
|
||||
'@angular/material': 20.2.7(9c11a8eb564a221c173ca8f1e04d1698)
|
||||
'@livekit/track-processors': 0.6.1(@types/dom-mediacapture-transform@0.1.11)(livekit-client@2.15.11(@types/dom-mediacapture-record@1.0.22))
|
||||
autolinker: 4.1.5
|
||||
buffer: 6.0.3
|
||||
livekit-client: 2.15.11(@types/dom-mediacapture-record@1.0.22)
|
||||
tslib: 2.8.1
|
||||
|
||||
opn@5.3.0:
|
||||
dependencies:
|
||||
is-wsl: 1.1.0
|
||||
@ -18183,7 +18259,7 @@ snapshots:
|
||||
dependencies:
|
||||
'@tootallnate/quickjs-emscripten': 0.23.0
|
||||
agent-base: 7.1.4
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
get-uri: 6.0.5
|
||||
http-proxy-agent: 7.0.2
|
||||
https-proxy-agent: 7.0.6
|
||||
@ -18587,7 +18663,7 @@ snapshots:
|
||||
proxy-agent@6.5.0:
|
||||
dependencies:
|
||||
agent-base: 7.1.4
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
http-proxy-agent: 7.0.2
|
||||
https-proxy-agent: 7.0.6
|
||||
lru-cache: 7.18.3
|
||||
@ -18897,7 +18973,7 @@ snapshots:
|
||||
|
||||
router@2.2.0:
|
||||
dependencies:
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
depd: 2.0.0
|
||||
is-promise: 4.0.0
|
||||
parseurl: 1.3.3
|
||||
@ -19035,7 +19111,7 @@ snapshots:
|
||||
|
||||
send@1.2.0:
|
||||
dependencies:
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
encodeurl: 2.0.0
|
||||
escape-html: 1.0.3
|
||||
etag: 1.8.1
|
||||
@ -19242,7 +19318,7 @@ snapshots:
|
||||
socks-proxy-agent@8.0.5:
|
||||
dependencies:
|
||||
agent-base: 7.1.4
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
socks: 2.8.7
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
@ -19290,7 +19366,7 @@ snapshots:
|
||||
|
||||
spdy-transport@3.0.0:
|
||||
dependencies:
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
detect-node: 2.1.0
|
||||
hpack.js: 2.1.6
|
||||
obuf: 1.1.2
|
||||
@ -19301,7 +19377,7 @@ snapshots:
|
||||
|
||||
spdy@4.0.2:
|
||||
dependencies:
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
handle-thing: 2.0.1
|
||||
http-deceiver: 1.2.7
|
||||
select-hose: 2.0.0
|
||||
@ -19354,7 +19430,7 @@ snapshots:
|
||||
streamroller@3.1.5:
|
||||
dependencies:
|
||||
date-format: 4.0.14
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
fs-extra: 8.1.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
@ -19459,7 +19535,7 @@ snapshots:
|
||||
dependencies:
|
||||
component-emitter: 1.3.1
|
||||
cookiejar: 2.1.4
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
fast-safe-stringify: 2.1.1
|
||||
form-data: 4.0.4
|
||||
formidable: 3.5.4
|
||||
@ -19817,7 +19893,7 @@ snapshots:
|
||||
tuf-js@3.1.0:
|
||||
dependencies:
|
||||
'@tufjs/models': 3.0.1
|
||||
debug: 4.4.3(supports-color@5.5.0)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
make-fetch-happen: 14.0.3
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
@ -2,6 +2,7 @@ packages:
|
||||
- meet-ce/typings
|
||||
- meet-ce/frontend
|
||||
- meet-ce/frontend/webcomponent
|
||||
- meet-ce/frontend/projects/shared-meet-components
|
||||
- meet-ce/backend
|
||||
- meet-pro/frontend
|
||||
- meet-pro/backend
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user