uneeq-js 2.40.0 → 2.40.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.
@@ -1,16 +1,11 @@
1
- import { NewSessionResponse } from '../types/NewSessionResponse';
2
1
  import { UneeqOptions } from '../types/UneeqOptions';
3
2
  /**
4
3
  * Service class to perform canvas related rendering / operations
5
4
  */
6
5
  export declare class CanvasService {
7
- private logoDimensionsCalculator;
8
- private logo;
9
- private mediaApiUrl;
10
6
  private uneeqOptions;
11
7
  private readonly canvasHeight;
12
8
  private readonly canvasWidth;
13
9
  constructor(options: UneeqOptions);
14
- drawVideoOnCanvasWithLogo(stream: MediaStream, video: HTMLVideoElement, canvas: HTMLCanvasElement, avatarVideoElement: HTMLMediaElement, session: NewSessionResponse): void;
15
10
  createCanvas(): HTMLCanvasElement;
16
11
  }
@@ -13,7 +13,6 @@ export declare class MediaHandler {
13
13
  private webRTC?;
14
14
  private audioContext;
15
15
  private soundMeter;
16
- private canvasService;
17
16
  constructor(options: DeviceManagerOptions, remoteVideoReady: () => void);
18
17
  setEdgeNodeId(edgeNodeId: string): void;
19
18
  unpublishVideo(): void;
@@ -277,8 +277,9 @@ export declare class WarningMessage implements UneeqMessage {
277
277
  * Session is Live, avatar video is active
278
278
  */
279
279
  export declare class SessionLiveMessage implements UneeqMessage {
280
+ readonly showLogo: boolean;
280
281
  uneeqMessageType: UneeqMessageType;
281
- constructor();
282
+ constructor(showLogo: boolean);
282
283
  }
283
284
  /**
284
285
  * WebRTC data channel message
@@ -140,5 +140,4 @@ export declare class Uneeq {
140
140
  */
141
141
  private initOnlineStatusUpdateMessages;
142
142
  private initPromMetricsListener;
143
- private initImageContentSecurityViolationListener;
144
143
  }