Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
carocao-msft committed Feb 28, 2025
1 parent 22114a2 commit 8af5596
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ export type CallCompositeOptions = {
hideSpotlightButtons?: boolean;
};
joinCallOptions?: {
microphoneCheck: 'blockOnAccess' | 'skip';
microphoneCheck?: 'blockOnAccess' | 'skip';
};
};

Expand Down Expand Up @@ -1641,7 +1641,7 @@ export type CallWithChatCompositeOptions = {
};
richTextEditor?: boolean;
joinCallOptions?: {
microphoneCheck: 'blockOnAccess' | 'skip';
microphoneCheck?: 'blockOnAccess' | 'skip';
};
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ export type CallCompositeOptions = {
hideSpotlightButtons?: boolean;
};
joinCallOptions?: {
microphoneCheck: 'blockOnAccess' | 'skip';
microphoneCheck?: 'blockOnAccess' | 'skip';
};
};

Expand Down Expand Up @@ -1407,7 +1407,7 @@ export type CallWithChatCompositeOptions = {
hideSpotlightButtons?: boolean;
};
joinCallOptions?: {
microphoneCheck: 'blockOnAccess' | 'skip';
microphoneCheck?: 'blockOnAccess' | 'skip';
};
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ export type CallCompositeOptions = {
* skip will allow the user to join the call without granting the microphone permission.
* @defaultValue 'blockOnAccess'
*/
microphoneCheck: 'blockOnAccess' | 'skip';
microphoneCheck?: 'blockOnAccess' | 'skip';
};
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export interface ConfigurationPageProps {
* skip will allow the user to join the call without granting the microphone permission.
* @defaultValue 'blockOnAccess'
*/
microphoneCheck: 'blockOnAccess' | 'skip';
microphoneCheck?: 'blockOnAccess' | 'skip';
};
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ export type CallWithChatCompositeOptions = {
* skip will allow the user to join the call without granting the microphone permission.
* @defaultValue 'blockOnAccess'
*/
microphoneCheck: 'blockOnAccess' | 'skip';
microphoneCheck?: 'blockOnAccess' | 'skip';
};
};

Expand Down Expand Up @@ -382,7 +382,7 @@ type CallWithChatScreenProps = {
* skip will allow the user to join the call without granting the microphone permission.
* @defaultValue 'blockOnAccess'
*/
microphoneCheck: 'blockOnAccess' | 'skip';
microphoneCheck?: 'blockOnAccess' | 'skip';
};
};

Expand Down

0 comments on commit 8af5596

Please sign in to comment.