@@ -444,14 +444,12 @@ export interface CallAdapterCallOperations {
444
444
addParticipant(participant: CommunicationUserIdentifier): Promise<void>;
445
445
allowUnsupportedBrowserVersion(): void;
446
446
createStreamView(remoteUserId?: string, options?: VideoStreamOptions): Promise<void | CreateVideoStreamViewResult>;
447
- // @beta
448
447
createTogetherModeStreamView(options?: TogetherModeStreamOptions): Promise<void | TogetherModeStreamViewResult>;
449
448
disposeLocalVideoStreamView(): Promise<void>;
450
449
disposeRemoteVideoStreamView(remoteUserId: string): Promise<void>;
451
450
disposeScreenShareStreamView(remoteUserId: string): Promise<void>;
452
451
// @deprecated
453
452
disposeStreamView(remoteUserId?: string, options?: VideoStreamOptions): Promise<void>;
454
- // @beta
455
453
disposeTogetherModeStreamView(): Promise<void>;
456
454
forbidAudio(userIds: string[]): Promise<void>;
457
455
forbidOthersAudio(): Promise<void>;
@@ -477,14 +475,12 @@ export interface CallAdapterCallOperations {
477
475
sendRealTimeText: (text: string, isFinalized: boolean) => Promise<void>;
478
476
setCaptionLanguage(language: string): Promise<void>;
479
477
setSpokenLanguage(language: string): Promise<void>;
480
- // @beta
481
478
setTogetherModeSceneSize(width: number, height: number): void;
482
479
startCamera(options?: VideoStreamOptions): Promise<void>;
483
480
startCaptions(options?: StartCaptionsAdapterOptions): Promise<void>;
484
481
startNoiseSuppressionEffect(): Promise<void>;
485
482
startScreenShare(): Promise<void>;
486
483
startSpotlight(userIds?: string[]): Promise<void>;
487
- // @beta
488
484
startTogetherMode(): Promise<void>;
489
485
startVideoBackgroundEffect(videoBackgroundEffect: VideoBackgroundEffect): Promise<void>;
490
486
stopAllSpotlight(): Promise<void>;
@@ -1111,12 +1107,11 @@ export type CallErrors = {
1111
1107
// @public
1112
1108
export type CallErrorTarget = 'Call.addParticipant' | 'Call.dispose' | 'Call.feature' | 'Call.hangUp' | 'Call.hold' | 'Call.mute' | 'Call.muteIncomingAudio' | 'Call.off' | 'Call.on' | 'Call.removeParticipant' | 'Call.resume' | 'Call.sendDtmf' | 'Call.startAudio' | 'Call.startScreenSharing' | 'Call.startVideo' | 'Call.stopScreenSharing' | 'Call.stopAudio' | 'Call.stopVideo' | 'Call.unmute' | 'Call.unmuteIncomingAudio' | 'CallAgent.dispose' | 'CallAgent.feature' | 'CallAgent.join' | 'CallAgent.off' | 'CallAgent.on' | 'CallAgent.startCall' | 'CallClient.createCallAgent' | 'CallClient.createTeamsCallAgent' | 'CallClient.feature' | 'CallClient.getDeviceManager' | 'CallClient.getEnvironmentInfo' | 'DeviceManager.askDevicePermission' | 'DeviceManager.getCameras' | 'DeviceManager.getMicrophones' | 'DeviceManager.getSpeakers' | 'DeviceManager.off' | 'DeviceManager.on' | 'DeviceManager.selectMicrophone' | 'DeviceManager.selectSpeaker' | 'IncomingCall.accept' | 'IncomingCall.reject' | 'TeamsCall.addParticipant' | 'VideoEffectsFeature.startEffects' | /* @conditional-compile-remove(calling-beta-sdk) */ 'CallAgent.handlePushNotification' | /* @conditional-compile-remove(calling-beta-sdk) */ 'Call.admit' | /* @conditional-compile-remove(calling-beta-sdk) */ 'Call.rejectParticipant' | /* @conditional-compile-remove(calling-beta-sdk) */ 'Call.admitAll' | 'Call.mutedByOthers' | 'Call.muteAllRemoteParticipants' | 'Call.setConstraints';
1113
1109
1114
- // @beta
1110
+ // @public
1115
1111
export type CallFeatureStreamName = 'togetherMode';
1116
1112
1117
- // @beta
1113
+ // @public
1118
1114
export interface CallFeatureStreamState extends RemoteVideoStreamState {
1119
- // (undocumented)
1120
1115
feature?: CallFeatureStreamName;
1121
1116
}
1122
1117
@@ -1255,7 +1250,6 @@ export interface CallState {
1255
1250
spotlight?: SpotlightCallFeatureState;
1256
1251
startTime: Date;
1257
1252
state: CallState_2;
1258
- // @beta
1259
1253
togetherMode: TogetherModeCallFeatureState;
1260
1254
totalParticipantCount?: number;
1261
1255
transcription: TranscriptionCallFeature;
@@ -1282,7 +1276,6 @@ export interface CallWithChatAdapterManagement {
1282
1276
allowUnsupportedBrowserVersion(): void;
1283
1277
askDevicePermission(constrain: PermissionConstraints): Promise<DeviceAccess>;
1284
1278
createStreamView(remoteUserId?: string, options?: VideoStreamOptions): Promise<void | CreateVideoStreamViewResult>;
1285
- // @beta
1286
1279
createTogetherModeStreamView(options?: TogetherModeStreamOptions): Promise<void | TogetherModeStreamViewResult>;
1287
1280
// @beta
1288
1281
deleteImage(imageId: string): Promise<void>;
@@ -1291,7 +1284,6 @@ export interface CallWithChatAdapterManagement {
1291
1284
disposeRemoteVideoStreamView(remoteUserId: string): Promise<void>;
1292
1285
disposeScreenShareStreamView(remoteUserId: string): Promise<void>;
1293
1286
disposeStreamView(remoteUserId?: string, options?: VideoStreamOptions): Promise<void>;
1294
- // @beta
1295
1287
disposeTogetherModeStreamView(): Promise<void>;
1296
1288
// (undocumented)
1297
1289
downloadResourceToCache(resourceDetails: ResourceDetails): Promise<void>;
@@ -1335,7 +1327,6 @@ export interface CallWithChatAdapterManagement {
1335
1327
setMicrophone(sourceInfo: AudioDeviceInfo): Promise<void>;
1336
1328
setSpeaker(sourceInfo: AudioDeviceInfo): Promise<void>;
1337
1329
setSpokenLanguage(language: string): Promise<void>;
1338
- // @beta
1339
1330
setTogetherModeSceneSize(width: number, height: number): void;
1340
1331
startCall(participants: string[], options?: StartCallOptions): Call | undefined;
1341
1332
startCall(participants: (MicrosoftTeamsAppIdentifier | PhoneNumberIdentifier | CommunicationUserIdentifier | MicrosoftTeamsUserIdentifier | UnknownIdentifier)[], options?: StartCallOptions): Call | undefined;
@@ -1344,7 +1335,6 @@ export interface CallWithChatAdapterManagement {
1344
1335
startNoiseSuppressionEffect(): Promise<void>;
1345
1336
startScreenShare(): Promise<void>;
1346
1337
startSpotlight(userIds?: string[]): Promise<void>;
1347
- // @beta
1348
1338
startTogetherMode(): Promise<void>;
1349
1339
startVideoBackgroundEffect(videoBackgroundEffect: VideoBackgroundEffect): Promise<void>;
1350
1340
stopAllSpotlight(): Promise<void>;
@@ -2394,7 +2384,6 @@ export interface CommonCallingHandlers {
2394
2384
onCreateLocalStreamView: (options?: VideoStreamOptions) => Promise<void | CreateVideoStreamViewResult>;
2395
2385
// (undocumented)
2396
2386
onCreateRemoteStreamView: (userId: string, options?: VideoStreamOptions) => Promise<void | CreateVideoStreamViewResult>;
2397
- // @beta
2398
2387
onCreateTogetherModeStreamView: (options?: TogetherModeStreamOptions) => Promise<void | TogetherModeStreamViewResult>;
2399
2388
// (undocumented)
2400
2389
onDisposeLocalScreenShareStreamView: () => Promise<void>;
@@ -2406,7 +2395,6 @@ export interface CommonCallingHandlers {
2406
2395
onDisposeRemoteStreamView: (userId: string) => Promise<void>;
2407
2396
// (undocumented)
2408
2397
onDisposeRemoteVideoStreamView: (userId: string) => Promise<void>;
2409
- // @beta
2410
2398
onDisposeTogetherModeStreamView: () => Promise<void>;
2411
2399
onForbidAudio?: (userIds: string[]) => Promise<void>;
2412
2400
onForbidOthersAudio?: () => Promise<void>;
@@ -2452,7 +2440,6 @@ export interface CommonCallingHandlers {
2452
2440
onSetCaptionLanguage: (language: string) => Promise<void>;
2453
2441
// (undocumented)
2454
2442
onSetSpokenLanguage: (language: string) => Promise<void>;
2455
- // @beta
2456
2443
onSetTogetherModeSceneSize: (width: number, height: number) => void;
2457
2444
// (undocumented)
2458
2445
onStartCall: (participants: CommunicationIdentifier[], options?: StartCallOptions) => void;
@@ -2466,7 +2453,6 @@ export interface CommonCallingHandlers {
2466
2453
onStartScreenShare: () => Promise<void>;
2467
2454
// (undocumented)
2468
2455
onStartSpotlight: (userIds?: string[]) => Promise<void>;
2469
- // @beta
2470
2456
onStartTogetherMode: () => Promise<void>;
2471
2457
// (undocumented)
2472
2458
onStopAllSpotlight: () => Promise<void>;
@@ -4250,9 +4236,7 @@ export interface NotificationStackStrings {
4250
4236
stopScreenShareGeneric?: NotificationStrings;
4251
4237
stopVideoGeneric?: NotificationStrings;
4252
4238
teamsMeetingCallNetworkQualityLow?: NotificationStrings;
4253
- // (undocumented)
4254
4239
togetherModeEnded?: NotificationStrings;
4255
- // (undocumented)
4256
4240
togetherModeStarted?: NotificationStrings;
4257
4241
transcriptionStarted?: NotificationStrings;
4258
4242
transcriptionStopped?: NotificationStrings;
@@ -5340,44 +5324,36 @@ export type TeamsOutboundCallAdapterArgs = TeamsCallAdapterArgsCommon & {
5340
5324
// @public
5341
5325
export const toFlatCommunicationIdentifier: (identifier: CommunicationIdentifier) => string;
5342
5326
5343
- // @beta
5327
+ // @public
5344
5328
export interface TogetherModeCallFeatureState {
5345
- // (undocumented)
5346
5329
isActive: boolean;
5347
5330
seatingPositions: TogetherModeParticipantSeatingState;
5348
5331
streams: TogetherModeStreamsState;
5349
5332
}
5350
5333
5351
- // @beta
5334
+ // @public
5352
5335
export type TogetherModeParticipantSeatingState = Record<string, TogetherModeSeatingPositionState>;
5353
5336
5354
- // @beta
5337
+ // @public
5355
5338
export interface TogetherModeSeatingPositionState {
5356
- // (undocumented)
5357
5339
height: number;
5358
- // (undocumented)
5359
5340
left: number;
5360
- // (undocumented)
5361
5341
top: number;
5362
- // (undocumented)
5363
5342
width: number;
5364
5343
}
5365
5344
5366
- // @beta
5345
+ // @public
5367
5346
export interface TogetherModeStreamOptions extends VideoStreamOptions {
5368
- // (undocumented)
5369
5347
viewKind?: 'main' | 'panoramic';
5370
5348
}
5371
5349
5372
- // @beta
5350
+ // @public
5373
5351
export interface TogetherModeStreamsState {
5374
- // (undocumented)
5375
5352
mainVideoStream?: CallFeatureStreamState;
5376
5353
}
5377
5354
5378
- // @beta
5355
+ // @public
5379
5356
export interface TogetherModeStreamViewResult {
5380
- // (undocumented)
5381
5357
mainVideoView?: CreateVideoStreamViewResult;
5382
5358
}
5383
5359
@@ -5754,24 +5730,19 @@ export interface VideoGalleryStyles extends BaseCustomStyles {
5754
5730
verticalGallery?: VerticalGalleryStyles;
5755
5731
}
5756
5732
5757
- // @beta
5733
+ // @public
5758
5734
export type VideoGalleryTogetherModeParticipantPosition = Record<string, VideoGalleryTogetherModeSeatingInfo>;
5759
5735
5760
- // @beta
5736
+ // @public
5761
5737
export interface VideoGalleryTogetherModeSeatingInfo {
5762
- // (undocumented)
5763
5738
height: number;
5764
- // (undocumented)
5765
5739
left: number;
5766
- // (undocumented)
5767
5740
top: number;
5768
- // (undocumented)
5769
5741
width: number;
5770
5742
}
5771
5743
5772
- // @beta
5744
+ // @public
5773
5745
export interface VideoGalleryTogetherModeStreams {
5774
- // (undocumented)
5775
5746
mainVideoStream?: VideoGalleryStream;
5776
5747
}
5777
5748
0 commit comments