@whereby.com/media 5.0.0 → 5.0.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.
package/dist/index.d.cts CHANGED
@@ -562,6 +562,7 @@ interface SignalClient {
562
562
  isVideoEnabled: boolean;
563
563
  role: ClientRole;
564
564
  startedCloudRecordingAt: string | null;
565
+ startedLiveTranscriptionAt: string | null;
565
566
  breakoutGroup: string | null;
566
567
  externalId: string | null;
567
568
  isDialIn: boolean;
@@ -795,8 +796,9 @@ interface SpotlightRemovedEvent {
795
796
  requestedByClientId: string;
796
797
  }
797
798
  interface LiveTranscriptionStartedEvent {
798
- transcriptionId: string;
799
- startedAt: string;
799
+ transcriptionId?: string;
800
+ error?: string;
801
+ startedAt?: string;
800
802
  }
801
803
  interface LiveTranscriptionStoppedEvent {
802
804
  transcriptionId: string;
@@ -897,6 +899,9 @@ interface SignalRequests {
897
899
  response: unknown;
898
900
  };
899
901
  identify_device: IdentifyDeviceRequest;
902
+ join_breakout_group: {
903
+ group: string;
904
+ };
900
905
  join_room: JoinRoomRequest;
901
906
  knock_room: KnockRoomRequest;
902
907
  leave_room: void;
@@ -913,9 +918,11 @@ interface SignalRequests {
913
918
  set_lock: {
914
919
  locked: boolean;
915
920
  };
921
+ start_live_transcription: void;
916
922
  start_recording: {
917
923
  recording: string;
918
924
  };
925
+ stop_live_transcription: void;
919
926
  stop_recording: void;
920
927
  }
921
928
  type TurnTransportProtocol = "onlyudp" | "onlytcp" | "onlytls";
package/dist/index.d.mts CHANGED
@@ -562,6 +562,7 @@ interface SignalClient {
562
562
  isVideoEnabled: boolean;
563
563
  role: ClientRole;
564
564
  startedCloudRecordingAt: string | null;
565
+ startedLiveTranscriptionAt: string | null;
565
566
  breakoutGroup: string | null;
566
567
  externalId: string | null;
567
568
  isDialIn: boolean;
@@ -795,8 +796,9 @@ interface SpotlightRemovedEvent {
795
796
  requestedByClientId: string;
796
797
  }
797
798
  interface LiveTranscriptionStartedEvent {
798
- transcriptionId: string;
799
- startedAt: string;
799
+ transcriptionId?: string;
800
+ error?: string;
801
+ startedAt?: string;
800
802
  }
801
803
  interface LiveTranscriptionStoppedEvent {
802
804
  transcriptionId: string;
@@ -897,6 +899,9 @@ interface SignalRequests {
897
899
  response: unknown;
898
900
  };
899
901
  identify_device: IdentifyDeviceRequest;
902
+ join_breakout_group: {
903
+ group: string;
904
+ };
900
905
  join_room: JoinRoomRequest;
901
906
  knock_room: KnockRoomRequest;
902
907
  leave_room: void;
@@ -913,9 +918,11 @@ interface SignalRequests {
913
918
  set_lock: {
914
919
  locked: boolean;
915
920
  };
921
+ start_live_transcription: void;
916
922
  start_recording: {
917
923
  recording: string;
918
924
  };
925
+ stop_live_transcription: void;
919
926
  stop_recording: void;
920
927
  }
921
928
  type TurnTransportProtocol = "onlyudp" | "onlytcp" | "onlytls";
package/dist/index.d.ts CHANGED
@@ -562,6 +562,7 @@ interface SignalClient {
562
562
  isVideoEnabled: boolean;
563
563
  role: ClientRole;
564
564
  startedCloudRecordingAt: string | null;
565
+ startedLiveTranscriptionAt: string | null;
565
566
  breakoutGroup: string | null;
566
567
  externalId: string | null;
567
568
  isDialIn: boolean;
@@ -795,8 +796,9 @@ interface SpotlightRemovedEvent {
795
796
  requestedByClientId: string;
796
797
  }
797
798
  interface LiveTranscriptionStartedEvent {
798
- transcriptionId: string;
799
- startedAt: string;
799
+ transcriptionId?: string;
800
+ error?: string;
801
+ startedAt?: string;
800
802
  }
801
803
  interface LiveTranscriptionStoppedEvent {
802
804
  transcriptionId: string;
@@ -897,6 +899,9 @@ interface SignalRequests {
897
899
  response: unknown;
898
900
  };
899
901
  identify_device: IdentifyDeviceRequest;
902
+ join_breakout_group: {
903
+ group: string;
904
+ };
900
905
  join_room: JoinRoomRequest;
901
906
  knock_room: KnockRoomRequest;
902
907
  leave_room: void;
@@ -913,9 +918,11 @@ interface SignalRequests {
913
918
  set_lock: {
914
919
  locked: boolean;
915
920
  };
921
+ start_live_transcription: void;
916
922
  start_recording: {
917
923
  recording: string;
918
924
  };
925
+ stop_live_transcription: void;
919
926
  stop_recording: void;
920
927
  }
921
928
  type TurnTransportProtocol = "onlyudp" | "onlytcp" | "onlytls";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@whereby.com/media",
3
3
  "description": "Media library for Whereby",
4
- "version": "5.0.0",
4
+ "version": "5.0.1",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/whereby/sdk",
7
7
  "repository": {