Skip to content

Commit

Permalink
fix: conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
KaustubhKumar05 committed Feb 21, 2024
2 parents fe62925 + 19450a7 commit 7cc9fcb
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/hms-video-store/src/interfaces/room.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export interface HMSRoom {
* @alpha
*/
effectsKey?: string;
isHippaEnabled?: boolean;
isHipaaEnabled?: boolean;
isNoiseCancellationEnabled?: boolean;
}

Expand Down
2 changes: 1 addition & 1 deletion packages/hms-video-store/src/reactive-store/adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export class SDKToHMS {
isLargeRoom: sdkRoom.large_room_optimization,
isEffectsEnabled: sdkRoom.isEffectsEnabled,
effectsKey: sdkRoom.effectsKey,
isHippaEnabled: sdkRoom.isHippaEnabled,
isHipaaEnabled: sdkRoom.isHipaaEnabled,
isNoiseCancellationEnabled: sdkRoom.isNoiseCancellationEnabled,
};
}
Expand Down
2 changes: 1 addition & 1 deletion packages/hms-video-store/src/schema/room.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ export interface HMSRoom {
isLargeRoom?: boolean;
isEffectsEnabled?: boolean;
effectsKey?: string;
isHippaEnabled?: boolean;
isHipaaEnabled?: boolean;
isNoiseCancellationEnabled?: boolean;
}
2 changes: 1 addition & 1 deletion packages/hms-video-store/src/sdk/models/HMSRoom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default class Room implements HMSRoom {
* @alpha
*/
effectsKey?: string;
isHippaEnabled?: boolean;
isHipaaEnabled?: boolean;
isNoiseCancellationEnabled?: boolean;

constructor(id: string) {
Expand Down
2 changes: 1 addition & 1 deletion packages/hms-video-store/src/signal/init/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@ export enum InitFlags {
FLAG_DISABLE_VIDEO_TRACK_AUTO_UNSUBSCRIBE = 'disableVideoTrackAutoUnsubscribe',
FLAG_WHITEBOARD_ENABLED = 'whiteboardEnabled',
FLAG_EFFECTS_SDK_ENABLED = 'effectsSDKEnabled',
FLAG_HIPPA_ENABLED = 'hippa',
FLAG_HIPAA_ENABLED = 'hipaa',
FLAG_NOISE_CANCELLATION = 'noiseCancellation',
}
2 changes: 1 addition & 1 deletion packages/hms-video-store/src/transport/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -911,7 +911,7 @@ export default class HMSTransport {
if (room) {
room.effectsKey = this.initConfig.config.vb?.effectsKey;
room.isEffectsEnabled = this.isFlagEnabled(InitFlags.FLAG_EFFECTS_SDK_ENABLED);
room.isHippaEnabled = this.isFlagEnabled(InitFlags.FLAG_HIPPA_ENABLED);
room.isHipaaEnabled = this.isFlagEnabled(InitFlags.FLAG_HIPAA_ENABLED);
room.isNoiseCancellationEnabled = this.isFlagEnabled(InitFlags.FLAG_NOISE_CANCELLATION);
}
this.analyticsTimer.end(TimedEvent.INIT);
Expand Down

0 comments on commit 7cc9fcb

Please sign in to comment.