@layercode/js-sdk 2.4.0 → 2.5.0
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/types/index.d.ts
CHANGED
|
@@ -38,6 +38,7 @@ interface ILayercodeClient {
|
|
|
38
38
|
getStream(): MediaStream | null;
|
|
39
39
|
setInputDevice(deviceId: string): Promise<void>;
|
|
40
40
|
setAudioInput(state: boolean): Promise<void>;
|
|
41
|
+
setAudioOutput(state: boolean): Promise<void>;
|
|
41
42
|
listDevices(): Promise<Array<MediaDeviceInfo & {
|
|
42
43
|
default: boolean;
|
|
43
44
|
}>>;
|
|
@@ -68,8 +69,12 @@ interface LayercodeClientOptions {
|
|
|
68
69
|
metadata?: Record<string, any>;
|
|
69
70
|
/** Whether audio input is enabled. I.e. is the microphone turned on in the browser */
|
|
70
71
|
audioInput?: boolean;
|
|
72
|
+
/** Whether audio output is enabled. I.e. do we play the sound in the browser client */
|
|
73
|
+
audioOutput?: boolean;
|
|
71
74
|
/** Fired when audio input flag changes */
|
|
72
75
|
audioInputChanged?: (audioInput: boolean) => void;
|
|
76
|
+
/** Fired when audio output flag changes */
|
|
77
|
+
audioOutputChanged?: (audioInput: boolean) => void;
|
|
73
78
|
/** Milliseconds before resuming agent audio after temporary pause due to user interruption (which was actually a false interruption) */
|
|
74
79
|
vadResumeDelay?: number;
|
|
75
80
|
/** Callback when connection is established */
|
|
@@ -117,6 +122,7 @@ declare class LayercodeClient implements ILayercodeClient {
|
|
|
117
122
|
private vad;
|
|
118
123
|
private ws;
|
|
119
124
|
private audioInput;
|
|
125
|
+
private audioOutput;
|
|
120
126
|
private AMPLITUDE_MONITORING_SAMPLE_RATE;
|
|
121
127
|
private pushToTalkActive;
|
|
122
128
|
private pushToTalkEnabled;
|
|
@@ -187,8 +193,10 @@ declare class LayercodeClient implements ILayercodeClient {
|
|
|
187
193
|
audioInputConnect(): Promise<void>;
|
|
188
194
|
audioInputDisconnect(): Promise<void>;
|
|
189
195
|
setAudioInput(state: boolean): Promise<void>;
|
|
196
|
+
setAudioOutput(state: boolean): Promise<void>;
|
|
190
197
|
/** Emitters for audio flags */
|
|
191
198
|
private _emitAudioInput;
|
|
199
|
+
private _emitAudioOutput;
|
|
192
200
|
get audioInputEnabled(): boolean;
|
|
193
201
|
get userSpeaking(): boolean;
|
|
194
202
|
get agentSpeaking(): boolean;
|
package/package.json
CHANGED