Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added backupCognitiveServicesEndpoint to CallIntelligenceOptions #32600

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,12 @@ export interface AnswerFailed extends Omit<RestAnswerFailed, "callConnectionId"
}

// @public
interface AudioData_2 {
export interface AudioData {
data: string;
isSilent?: boolean;
participant?: CommunicationIdentifier | undefined;
timestamp?: Date;
}
export { AudioData_2 as AudioData }

// @public
export interface AudioMetadata {
Expand Down Expand Up @@ -210,6 +209,7 @@ export interface CallDisconnected extends Omit<RestCallDisconnected, "callConnec

// @public
export interface CallIntelligenceOptions {
backupCognitiveServicesEndpoint?: string;
cognitiveServicesEndpoint?: string;
}

Expand Down Expand Up @@ -722,7 +722,7 @@ export interface MuteParticipantResult {
// @public (undocumented)
export class OutStreamingData {
constructor(kind: MediaKind);
audioData?: AudioData_2;
audioData?: AudioData;
static getStopAudioForOutbound(): string;
static getStreamingDataForOutbound(data: string): string;
kind: MediaKind;
Expand Down Expand Up @@ -1162,7 +1162,7 @@ export enum StreamingDataKind {
}

// @public (undocumented)
export type StreamingDataResult = TranscriptionMetadata | TranscriptionData | AudioData_2 | AudioMetadata;
export type StreamingDataResult = TranscriptionMetadata | TranscriptionData | AudioData | AudioMetadata;

// @public
export enum TextFormat {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading