mediasfu-angular 2.1.4 → 2.1.6
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/fesm2022/mediasfu-angular.mjs +4889 -4732
- package/dist/fesm2022/mediasfu-angular.mjs.map +1 -1
- package/dist/lib/components/mediasfu-components/mediasfu-broadcast.component.d.ts +14 -14
- package/dist/lib/components/mediasfu-components/mediasfu-chat.component.d.ts +14 -14
- package/dist/lib/components/mediasfu-components/mediasfu-conference.component.d.ts +18 -18
- package/dist/lib/components/mediasfu-components/mediasfu-generic.component.d.ts +18 -18
- package/dist/lib/components/mediasfu-components/mediasfu-webinar.component.d.ts +18 -18
- package/dist/lib/consumers/stream-success-video.service.d.ts +2 -0
- package/dist/lib/methods/utils/create-room-on-media-sfu.service.d.ts +92 -10
- package/dist/lib/methods/utils/join-room-on-media-sfu.service.d.ts +83 -8
- package/dist/public-api.d.ts +181 -2
- package/package.json +1 -1
|
@@ -844,7 +844,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
844
844
|
recordingVideoOptions: BehaviorSubject<string>;
|
|
845
845
|
recordingVideoType: BehaviorSubject<string>;
|
|
846
846
|
recordingVideoOptimized: BehaviorSubject<boolean>;
|
|
847
|
-
recordingDisplayType: BehaviorSubject<"video" | "
|
|
847
|
+
recordingDisplayType: BehaviorSubject<"video" | "all" | "media">;
|
|
848
848
|
recordingAddHLS: BehaviorSubject<boolean>;
|
|
849
849
|
recordingNameTags: BehaviorSubject<boolean>;
|
|
850
850
|
recordingBackgroundColor: BehaviorSubject<string>;
|
|
@@ -1070,7 +1070,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
1070
1070
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
1071
1071
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
1072
1072
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
1073
|
-
checkOrientation: () => "
|
|
1073
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
1074
1074
|
showAlert: ({ message, type, duration, }: {
|
|
1075
1075
|
message: string;
|
|
1076
1076
|
type: "success" | "danger";
|
|
@@ -1313,7 +1313,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
1313
1313
|
recordingVideoOptions: string;
|
|
1314
1314
|
recordingVideoType: string;
|
|
1315
1315
|
recordingVideoOptimized: boolean;
|
|
1316
|
-
recordingDisplayType: "video" | "
|
|
1316
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
1317
1317
|
recordingAddHLS: boolean;
|
|
1318
1318
|
recordingAddText: boolean;
|
|
1319
1319
|
recordingCustomText: string;
|
|
@@ -1714,7 +1714,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
1714
1714
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
1715
1715
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
1716
1716
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
1717
|
-
checkOrientation: () => "
|
|
1717
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
1718
1718
|
updateDevice: (value: Device | null) => void;
|
|
1719
1719
|
updateSocket: (value: Socket) => void;
|
|
1720
1720
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -2032,7 +2032,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
2032
2032
|
recordingVideoOptions: string;
|
|
2033
2033
|
recordingVideoType: string;
|
|
2034
2034
|
recordingVideoOptimized: boolean;
|
|
2035
|
-
recordingDisplayType: "video" | "
|
|
2035
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
2036
2036
|
recordingAddHLS: boolean;
|
|
2037
2037
|
recordingAddText: boolean;
|
|
2038
2038
|
recordingCustomText: string;
|
|
@@ -2433,7 +2433,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
2433
2433
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
2434
2434
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
2435
2435
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
2436
|
-
checkOrientation: () => "
|
|
2436
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
2437
2437
|
updateDevice: (value: Device | null) => void;
|
|
2438
2438
|
updateSocket: (value: Socket) => void;
|
|
2439
2439
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -2754,7 +2754,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
2754
2754
|
recordingVideoOptions: string;
|
|
2755
2755
|
recordingVideoType: string;
|
|
2756
2756
|
recordingVideoOptimized: boolean;
|
|
2757
|
-
recordingDisplayType: "video" | "
|
|
2757
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
2758
2758
|
recordingAddHLS: boolean;
|
|
2759
2759
|
recordingAddText: boolean;
|
|
2760
2760
|
recordingCustomText: string;
|
|
@@ -3155,7 +3155,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
3155
3155
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
3156
3156
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
3157
3157
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
3158
|
-
checkOrientation: () => "
|
|
3158
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
3159
3159
|
updateDevice: (value: Device | null) => void;
|
|
3160
3160
|
updateSocket: (value: Socket) => void;
|
|
3161
3161
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -3473,7 +3473,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
3473
3473
|
recordingVideoOptions: string;
|
|
3474
3474
|
recordingVideoType: string;
|
|
3475
3475
|
recordingVideoOptimized: boolean;
|
|
3476
|
-
recordingDisplayType: "video" | "
|
|
3476
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
3477
3477
|
recordingAddHLS: boolean;
|
|
3478
3478
|
recordingAddText: boolean;
|
|
3479
3479
|
recordingCustomText: string;
|
|
@@ -3874,7 +3874,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
3874
3874
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
3875
3875
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
3876
3876
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
3877
|
-
checkOrientation: () => "
|
|
3877
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
3878
3878
|
updateDevice: (value: Device | null) => void;
|
|
3879
3879
|
updateSocket: (value: Socket) => void;
|
|
3880
3880
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -4195,7 +4195,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
4195
4195
|
recordingVideoOptions: string;
|
|
4196
4196
|
recordingVideoType: string;
|
|
4197
4197
|
recordingVideoOptimized: boolean;
|
|
4198
|
-
recordingDisplayType: "video" | "
|
|
4198
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
4199
4199
|
recordingAddHLS: boolean;
|
|
4200
4200
|
recordingAddText: boolean;
|
|
4201
4201
|
recordingCustomText: string;
|
|
@@ -4596,7 +4596,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
4596
4596
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
4597
4597
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
4598
4598
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
4599
|
-
checkOrientation: () => "
|
|
4599
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
4600
4600
|
updateDevice: (value: Device | null) => void;
|
|
4601
4601
|
updateSocket: (value: Socket) => void;
|
|
4602
4602
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -4914,7 +4914,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
4914
4914
|
recordingVideoOptions: string;
|
|
4915
4915
|
recordingVideoType: string;
|
|
4916
4916
|
recordingVideoOptimized: boolean;
|
|
4917
|
-
recordingDisplayType: "video" | "
|
|
4917
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
4918
4918
|
recordingAddHLS: boolean;
|
|
4919
4919
|
recordingAddText: boolean;
|
|
4920
4920
|
recordingCustomText: string;
|
|
@@ -5315,7 +5315,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
5315
5315
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
5316
5316
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
5317
5317
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
5318
|
-
checkOrientation: () => "
|
|
5318
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
5319
5319
|
updateDevice: (value: Device | null) => void;
|
|
5320
5320
|
updateSocket: (value: Socket) => void;
|
|
5321
5321
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -812,7 +812,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
812
812
|
recordingVideoOptions: BehaviorSubject<string>;
|
|
813
813
|
recordingVideoType: BehaviorSubject<string>;
|
|
814
814
|
recordingVideoOptimized: BehaviorSubject<boolean>;
|
|
815
|
-
recordingDisplayType: BehaviorSubject<"video" | "
|
|
815
|
+
recordingDisplayType: BehaviorSubject<"video" | "all" | "media">;
|
|
816
816
|
recordingAddHLS: BehaviorSubject<boolean>;
|
|
817
817
|
recordingNameTags: BehaviorSubject<boolean>;
|
|
818
818
|
recordingBackgroundColor: BehaviorSubject<string>;
|
|
@@ -1038,7 +1038,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
1038
1038
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
1039
1039
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
1040
1040
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
1041
|
-
checkOrientation: () => "
|
|
1041
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
1042
1042
|
showAlert: ({ message, type, duration, }: {
|
|
1043
1043
|
message: string;
|
|
1044
1044
|
type: "success" | "danger";
|
|
@@ -1281,7 +1281,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
1281
1281
|
recordingVideoOptions: string;
|
|
1282
1282
|
recordingVideoType: string;
|
|
1283
1283
|
recordingVideoOptimized: boolean;
|
|
1284
|
-
recordingDisplayType: "video" | "
|
|
1284
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
1285
1285
|
recordingAddHLS: boolean;
|
|
1286
1286
|
recordingAddText: boolean;
|
|
1287
1287
|
recordingCustomText: string;
|
|
@@ -1682,7 +1682,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
1682
1682
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
1683
1683
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
1684
1684
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
1685
|
-
checkOrientation: () => "
|
|
1685
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
1686
1686
|
updateDevice: (value: Device | null) => void;
|
|
1687
1687
|
updateSocket: (value: Socket) => void;
|
|
1688
1688
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -2000,7 +2000,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
2000
2000
|
recordingVideoOptions: string;
|
|
2001
2001
|
recordingVideoType: string;
|
|
2002
2002
|
recordingVideoOptimized: boolean;
|
|
2003
|
-
recordingDisplayType: "video" | "
|
|
2003
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
2004
2004
|
recordingAddHLS: boolean;
|
|
2005
2005
|
recordingAddText: boolean;
|
|
2006
2006
|
recordingCustomText: string;
|
|
@@ -2401,7 +2401,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
2401
2401
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
2402
2402
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
2403
2403
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
2404
|
-
checkOrientation: () => "
|
|
2404
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
2405
2405
|
updateDevice: (value: Device | null) => void;
|
|
2406
2406
|
updateSocket: (value: Socket) => void;
|
|
2407
2407
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -2722,7 +2722,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
2722
2722
|
recordingVideoOptions: string;
|
|
2723
2723
|
recordingVideoType: string;
|
|
2724
2724
|
recordingVideoOptimized: boolean;
|
|
2725
|
-
recordingDisplayType: "video" | "
|
|
2725
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
2726
2726
|
recordingAddHLS: boolean;
|
|
2727
2727
|
recordingAddText: boolean;
|
|
2728
2728
|
recordingCustomText: string;
|
|
@@ -3123,7 +3123,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
3123
3123
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
3124
3124
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
3125
3125
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
3126
|
-
checkOrientation: () => "
|
|
3126
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
3127
3127
|
updateDevice: (value: Device | null) => void;
|
|
3128
3128
|
updateSocket: (value: Socket) => void;
|
|
3129
3129
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -3441,7 +3441,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
3441
3441
|
recordingVideoOptions: string;
|
|
3442
3442
|
recordingVideoType: string;
|
|
3443
3443
|
recordingVideoOptimized: boolean;
|
|
3444
|
-
recordingDisplayType: "video" | "
|
|
3444
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
3445
3445
|
recordingAddHLS: boolean;
|
|
3446
3446
|
recordingAddText: boolean;
|
|
3447
3447
|
recordingCustomText: string;
|
|
@@ -3842,7 +3842,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
3842
3842
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
3843
3843
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
3844
3844
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
3845
|
-
checkOrientation: () => "
|
|
3845
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
3846
3846
|
updateDevice: (value: Device | null) => void;
|
|
3847
3847
|
updateSocket: (value: Socket) => void;
|
|
3848
3848
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -4163,7 +4163,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
4163
4163
|
recordingVideoOptions: string;
|
|
4164
4164
|
recordingVideoType: string;
|
|
4165
4165
|
recordingVideoOptimized: boolean;
|
|
4166
|
-
recordingDisplayType: "video" | "
|
|
4166
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
4167
4167
|
recordingAddHLS: boolean;
|
|
4168
4168
|
recordingAddText: boolean;
|
|
4169
4169
|
recordingCustomText: string;
|
|
@@ -4564,7 +4564,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
4564
4564
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
4565
4565
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
4566
4566
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
4567
|
-
checkOrientation: () => "
|
|
4567
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
4568
4568
|
updateDevice: (value: Device | null) => void;
|
|
4569
4569
|
updateSocket: (value: Socket) => void;
|
|
4570
4570
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -4882,7 +4882,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
4882
4882
|
recordingVideoOptions: string;
|
|
4883
4883
|
recordingVideoType: string;
|
|
4884
4884
|
recordingVideoOptimized: boolean;
|
|
4885
|
-
recordingDisplayType: "video" | "
|
|
4885
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
4886
4886
|
recordingAddHLS: boolean;
|
|
4887
4887
|
recordingAddText: boolean;
|
|
4888
4888
|
recordingCustomText: string;
|
|
@@ -5283,7 +5283,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
5283
5283
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
5284
5284
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
5285
5285
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
5286
|
-
checkOrientation: () => "
|
|
5286
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
5287
5287
|
updateDevice: (value: Device | null) => void;
|
|
5288
5288
|
updateSocket: (value: Socket) => void;
|
|
5289
5289
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -893,7 +893,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
893
893
|
recordingVideoOptions: BehaviorSubject<string>;
|
|
894
894
|
recordingVideoType: BehaviorSubject<string>;
|
|
895
895
|
recordingVideoOptimized: BehaviorSubject<boolean>;
|
|
896
|
-
recordingDisplayType: BehaviorSubject<"video" | "
|
|
896
|
+
recordingDisplayType: BehaviorSubject<"video" | "all" | "media">;
|
|
897
897
|
recordingAddHLS: BehaviorSubject<boolean>;
|
|
898
898
|
recordingNameTags: BehaviorSubject<boolean>;
|
|
899
899
|
recordingBackgroundColor: BehaviorSubject<string>;
|
|
@@ -1121,7 +1121,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
1121
1121
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
1122
1122
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
1123
1123
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
1124
|
-
checkOrientation: () => "
|
|
1124
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
1125
1125
|
showAlert: ({ message, type, duration, }: {
|
|
1126
1126
|
message: string;
|
|
1127
1127
|
type: "success" | "danger";
|
|
@@ -1364,7 +1364,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
1364
1364
|
recordingVideoOptions: string;
|
|
1365
1365
|
recordingVideoType: string;
|
|
1366
1366
|
recordingVideoOptimized: boolean;
|
|
1367
|
-
recordingDisplayType: "video" | "
|
|
1367
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
1368
1368
|
recordingAddHLS: boolean;
|
|
1369
1369
|
recordingAddText: boolean;
|
|
1370
1370
|
recordingCustomText: string;
|
|
@@ -1765,7 +1765,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
1765
1765
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
1766
1766
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
1767
1767
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
1768
|
-
checkOrientation: () => "
|
|
1768
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
1769
1769
|
updateDevice: (value: Device | null) => void;
|
|
1770
1770
|
updateSocket: (value: Socket) => void;
|
|
1771
1771
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -2085,7 +2085,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
2085
2085
|
recordingVideoOptions: string;
|
|
2086
2086
|
recordingVideoType: string;
|
|
2087
2087
|
recordingVideoOptimized: boolean;
|
|
2088
|
-
recordingDisplayType: "video" | "
|
|
2088
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
2089
2089
|
recordingAddHLS: boolean;
|
|
2090
2090
|
recordingAddText: boolean;
|
|
2091
2091
|
recordingCustomText: string;
|
|
@@ -2486,7 +2486,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
2486
2486
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
2487
2487
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
2488
2488
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
2489
|
-
checkOrientation: () => "
|
|
2489
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
2490
2490
|
updateDevice: (value: Device | null) => void;
|
|
2491
2491
|
updateSocket: (value: Socket) => void;
|
|
2492
2492
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -2809,7 +2809,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
2809
2809
|
recordingVideoOptions: string;
|
|
2810
2810
|
recordingVideoType: string;
|
|
2811
2811
|
recordingVideoOptimized: boolean;
|
|
2812
|
-
recordingDisplayType: "video" | "
|
|
2812
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
2813
2813
|
recordingAddHLS: boolean;
|
|
2814
2814
|
recordingAddText: boolean;
|
|
2815
2815
|
recordingCustomText: string;
|
|
@@ -3210,7 +3210,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
3210
3210
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
3211
3211
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
3212
3212
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
3213
|
-
checkOrientation: () => "
|
|
3213
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
3214
3214
|
updateDevice: (value: Device | null) => void;
|
|
3215
3215
|
updateSocket: (value: Socket) => void;
|
|
3216
3216
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -3530,7 +3530,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
3530
3530
|
recordingVideoOptions: string;
|
|
3531
3531
|
recordingVideoType: string;
|
|
3532
3532
|
recordingVideoOptimized: boolean;
|
|
3533
|
-
recordingDisplayType: "video" | "
|
|
3533
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
3534
3534
|
recordingAddHLS: boolean;
|
|
3535
3535
|
recordingAddText: boolean;
|
|
3536
3536
|
recordingCustomText: string;
|
|
@@ -3931,7 +3931,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
3931
3931
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
3932
3932
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
3933
3933
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
3934
|
-
checkOrientation: () => "
|
|
3934
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
3935
3935
|
updateDevice: (value: Device | null) => void;
|
|
3936
3936
|
updateSocket: (value: Socket) => void;
|
|
3937
3937
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -4254,7 +4254,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
4254
4254
|
recordingVideoOptions: string;
|
|
4255
4255
|
recordingVideoType: string;
|
|
4256
4256
|
recordingVideoOptimized: boolean;
|
|
4257
|
-
recordingDisplayType: "video" | "
|
|
4257
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
4258
4258
|
recordingAddHLS: boolean;
|
|
4259
4259
|
recordingAddText: boolean;
|
|
4260
4260
|
recordingCustomText: string;
|
|
@@ -4655,7 +4655,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
4655
4655
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
4656
4656
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
4657
4657
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
4658
|
-
checkOrientation: () => "
|
|
4658
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
4659
4659
|
updateDevice: (value: Device | null) => void;
|
|
4660
4660
|
updateSocket: (value: Socket) => void;
|
|
4661
4661
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -4975,7 +4975,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
4975
4975
|
recordingVideoOptions: string;
|
|
4976
4976
|
recordingVideoType: string;
|
|
4977
4977
|
recordingVideoOptimized: boolean;
|
|
4978
|
-
recordingDisplayType: "video" | "
|
|
4978
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
4979
4979
|
recordingAddHLS: boolean;
|
|
4980
4980
|
recordingAddText: boolean;
|
|
4981
4981
|
recordingCustomText: string;
|
|
@@ -5376,7 +5376,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
5376
5376
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
5377
5377
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
5378
5378
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
5379
|
-
checkOrientation: () => "
|
|
5379
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
5380
5380
|
updateDevice: (value: Device | null) => void;
|
|
5381
5381
|
updateSocket: (value: Socket) => void;
|
|
5382
5382
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -5790,7 +5790,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
5790
5790
|
recordingVideoOptions: string;
|
|
5791
5791
|
recordingVideoType: string;
|
|
5792
5792
|
recordingVideoOptimized: boolean;
|
|
5793
|
-
recordingDisplayType: "video" | "
|
|
5793
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
5794
5794
|
recordingAddHLS: boolean;
|
|
5795
5795
|
recordingAddText: boolean;
|
|
5796
5796
|
recordingCustomText: string;
|
|
@@ -6191,7 +6191,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
6191
6191
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
6192
6192
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
6193
6193
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
6194
|
-
checkOrientation: () => "
|
|
6194
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
6195
6195
|
updateDevice: (value: Device | null) => void;
|
|
6196
6196
|
updateSocket: (value: Socket) => void;
|
|
6197
6197
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -6511,7 +6511,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
6511
6511
|
recordingVideoOptions: string;
|
|
6512
6512
|
recordingVideoType: string;
|
|
6513
6513
|
recordingVideoOptimized: boolean;
|
|
6514
|
-
recordingDisplayType: "video" | "
|
|
6514
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
6515
6515
|
recordingAddHLS: boolean;
|
|
6516
6516
|
recordingAddText: boolean;
|
|
6517
6517
|
recordingCustomText: string;
|
|
@@ -6912,7 +6912,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
6912
6912
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
6913
6913
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
6914
6914
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
6915
|
-
checkOrientation: () => "
|
|
6915
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
6916
6916
|
updateDevice: (value: Device | null) => void;
|
|
6917
6917
|
updateSocket: (value: Socket) => void;
|
|
6918
6918
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -896,7 +896,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
896
896
|
recordingVideoOptions: BehaviorSubject<string>;
|
|
897
897
|
recordingVideoType: BehaviorSubject<string>;
|
|
898
898
|
recordingVideoOptimized: BehaviorSubject<boolean>;
|
|
899
|
-
recordingDisplayType: BehaviorSubject<"video" | "
|
|
899
|
+
recordingDisplayType: BehaviorSubject<"video" | "all" | "media">;
|
|
900
900
|
recordingAddHLS: BehaviorSubject<boolean>;
|
|
901
901
|
recordingNameTags: BehaviorSubject<boolean>;
|
|
902
902
|
recordingBackgroundColor: BehaviorSubject<string>;
|
|
@@ -1124,7 +1124,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
1124
1124
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
1125
1125
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
1126
1126
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
1127
|
-
checkOrientation: () => "
|
|
1127
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
1128
1128
|
showAlert: ({ message, type, duration, }: {
|
|
1129
1129
|
message: string;
|
|
1130
1130
|
type: "success" | "danger";
|
|
@@ -1367,7 +1367,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
1367
1367
|
recordingVideoOptions: string;
|
|
1368
1368
|
recordingVideoType: string;
|
|
1369
1369
|
recordingVideoOptimized: boolean;
|
|
1370
|
-
recordingDisplayType: "video" | "
|
|
1370
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
1371
1371
|
recordingAddHLS: boolean;
|
|
1372
1372
|
recordingAddText: boolean;
|
|
1373
1373
|
recordingCustomText: string;
|
|
@@ -1768,7 +1768,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
1768
1768
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
1769
1769
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
1770
1770
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
1771
|
-
checkOrientation: () => "
|
|
1771
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
1772
1772
|
updateDevice: (value: Device | null) => void;
|
|
1773
1773
|
updateSocket: (value: Socket) => void;
|
|
1774
1774
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -2089,7 +2089,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
2089
2089
|
recordingVideoOptions: string;
|
|
2090
2090
|
recordingVideoType: string;
|
|
2091
2091
|
recordingVideoOptimized: boolean;
|
|
2092
|
-
recordingDisplayType: "video" | "
|
|
2092
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
2093
2093
|
recordingAddHLS: boolean;
|
|
2094
2094
|
recordingAddText: boolean;
|
|
2095
2095
|
recordingCustomText: string;
|
|
@@ -2490,7 +2490,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
2490
2490
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
2491
2491
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
2492
2492
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
2493
|
-
checkOrientation: () => "
|
|
2493
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
2494
2494
|
updateDevice: (value: Device | null) => void;
|
|
2495
2495
|
updateSocket: (value: Socket) => void;
|
|
2496
2496
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -2814,7 +2814,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
2814
2814
|
recordingVideoOptions: string;
|
|
2815
2815
|
recordingVideoType: string;
|
|
2816
2816
|
recordingVideoOptimized: boolean;
|
|
2817
|
-
recordingDisplayType: "video" | "
|
|
2817
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
2818
2818
|
recordingAddHLS: boolean;
|
|
2819
2819
|
recordingAddText: boolean;
|
|
2820
2820
|
recordingCustomText: string;
|
|
@@ -3215,7 +3215,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
3215
3215
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
3216
3216
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
3217
3217
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
3218
|
-
checkOrientation: () => "
|
|
3218
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
3219
3219
|
updateDevice: (value: Device | null) => void;
|
|
3220
3220
|
updateSocket: (value: Socket) => void;
|
|
3221
3221
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -3536,7 +3536,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
3536
3536
|
recordingVideoOptions: string;
|
|
3537
3537
|
recordingVideoType: string;
|
|
3538
3538
|
recordingVideoOptimized: boolean;
|
|
3539
|
-
recordingDisplayType: "video" | "
|
|
3539
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
3540
3540
|
recordingAddHLS: boolean;
|
|
3541
3541
|
recordingAddText: boolean;
|
|
3542
3542
|
recordingCustomText: string;
|
|
@@ -3937,7 +3937,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
3937
3937
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
3938
3938
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
3939
3939
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
3940
|
-
checkOrientation: () => "
|
|
3940
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
3941
3941
|
updateDevice: (value: Device | null) => void;
|
|
3942
3942
|
updateSocket: (value: Socket) => void;
|
|
3943
3943
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -4261,7 +4261,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
4261
4261
|
recordingVideoOptions: string;
|
|
4262
4262
|
recordingVideoType: string;
|
|
4263
4263
|
recordingVideoOptimized: boolean;
|
|
4264
|
-
recordingDisplayType: "video" | "
|
|
4264
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
4265
4265
|
recordingAddHLS: boolean;
|
|
4266
4266
|
recordingAddText: boolean;
|
|
4267
4267
|
recordingCustomText: string;
|
|
@@ -4662,7 +4662,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
4662
4662
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
4663
4663
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
4664
4664
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
4665
|
-
checkOrientation: () => "
|
|
4665
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
4666
4666
|
updateDevice: (value: Device | null) => void;
|
|
4667
4667
|
updateSocket: (value: Socket) => void;
|
|
4668
4668
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -4983,7 +4983,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
4983
4983
|
recordingVideoOptions: string;
|
|
4984
4984
|
recordingVideoType: string;
|
|
4985
4985
|
recordingVideoOptimized: boolean;
|
|
4986
|
-
recordingDisplayType: "video" | "
|
|
4986
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
4987
4987
|
recordingAddHLS: boolean;
|
|
4988
4988
|
recordingAddText: boolean;
|
|
4989
4989
|
recordingCustomText: string;
|
|
@@ -5384,7 +5384,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
5384
5384
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
5385
5385
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
5386
5386
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
5387
|
-
checkOrientation: () => "
|
|
5387
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
5388
5388
|
updateDevice: (value: Device | null) => void;
|
|
5389
5389
|
updateSocket: (value: Socket) => void;
|
|
5390
5390
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -5801,7 +5801,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
5801
5801
|
recordingVideoOptions: string;
|
|
5802
5802
|
recordingVideoType: string;
|
|
5803
5803
|
recordingVideoOptimized: boolean;
|
|
5804
|
-
recordingDisplayType: "video" | "
|
|
5804
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
5805
5805
|
recordingAddHLS: boolean;
|
|
5806
5806
|
recordingAddText: boolean;
|
|
5807
5807
|
recordingCustomText: string;
|
|
@@ -6202,7 +6202,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
6202
6202
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
6203
6203
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
6204
6204
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
6205
|
-
checkOrientation: () => "
|
|
6205
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
6206
6206
|
updateDevice: (value: Device | null) => void;
|
|
6207
6207
|
updateSocket: (value: Socket) => void;
|
|
6208
6208
|
updateLocalSocket: (value: Socket | null) => void;
|
|
@@ -6523,7 +6523,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
6523
6523
|
recordingVideoOptions: string;
|
|
6524
6524
|
recordingVideoType: string;
|
|
6525
6525
|
recordingVideoOptimized: boolean;
|
|
6526
|
-
recordingDisplayType: "video" | "
|
|
6526
|
+
recordingDisplayType: "video" | "all" | "media";
|
|
6527
6527
|
recordingAddHLS: boolean;
|
|
6528
6528
|
recordingAddText: boolean;
|
|
6529
6529
|
recordingCustomText: string;
|
|
@@ -6924,7 +6924,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
6924
6924
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
6925
6925
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
6926
6926
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
6927
|
-
checkOrientation: () => "
|
|
6927
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
6928
6928
|
updateDevice: (value: Device | null) => void;
|
|
6929
6929
|
updateSocket: (value: Socket) => void;
|
|
6930
6930
|
updateLocalSocket: (value: Socket | null) => void;
|