ysyt-agent-sdk 1.1.11 → 1.1.13
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/src/types/Enum.d.ts +2 -0
- package/dist/src/types/index.d.ts +6 -0
- package/dist/ysyt-agent-sdk.cjs.js +18 -18
- package/dist/ysyt-agent-sdk.esm.js +17 -17
- package/dist/ysyt-agent-sdk.umd.js +18 -18
- package/package.json +1 -1
package/dist/src/types/Enum.d.ts
CHANGED
|
@@ -120,10 +120,12 @@ export declare enum CallSipCallEventEnum {
|
|
|
120
120
|
LISTEN_INCOMING_CALL_OFF_HOOK = "listen_incoming_call_off_hook",
|
|
121
121
|
LISTEN_HANGUP = "listen_hangup",
|
|
122
122
|
EAR_SPEECH_SUCCESS = "ear_speech_success",
|
|
123
|
+
EAR_SPEECH_BE_SUCCESS = "ear_speech_be_success",
|
|
123
124
|
EAR_SPEECH_FAILED = "ear_speech_failed",
|
|
124
125
|
STOP_EAR_SPEECH_SUCCESS = "stop_ear_speech_success",
|
|
125
126
|
STOP_EAR_SPEECH_FAILED = "stop_ear_speech_failed",
|
|
126
127
|
CALL_FORCE_INSERT_SUCCESS = "call_force_insert_success",
|
|
128
|
+
CALL_FORCE_INSERT_SUCCESS_LISTENER = "call_force_insert_success_listener",
|
|
127
129
|
CALL_FORCE_INSERT_FAILED = "call_force_insert_failed"
|
|
128
130
|
}
|
|
129
131
|
export declare enum EventName {
|
|
@@ -330,7 +330,9 @@ export interface Events {
|
|
|
330
330
|
};
|
|
331
331
|
[CallSipCallEventEnum.EAR_SPEECH_SUCCESS]: {
|
|
332
332
|
monitored_agent_no: string;
|
|
333
|
+
monitor_agent_no: string;
|
|
333
334
|
};
|
|
335
|
+
[CallSipCallEventEnum.EAR_SPEECH_BE_SUCCESS]: unknown;
|
|
334
336
|
[CallSipCallEventEnum.EAR_SPEECH_FAILED]: unknown;
|
|
335
337
|
[CallSipCallEventEnum.STOP_EAR_SPEECH_SUCCESS]: unknown;
|
|
336
338
|
[CallSipCallEventEnum.STOP_EAR_SPEECH_FAILED]: unknown;
|
|
@@ -339,6 +341,10 @@ export interface Events {
|
|
|
339
341
|
monitored_agent_no: string;
|
|
340
342
|
monitor_agent_no: string;
|
|
341
343
|
};
|
|
344
|
+
[CallSipCallEventEnum.CALL_FORCE_INSERT_SUCCESS_LISTENER]: {
|
|
345
|
+
monitored_agent_no: string;
|
|
346
|
+
monitor_agent_no: string;
|
|
347
|
+
};
|
|
342
348
|
[key: string]: unknown;
|
|
343
349
|
[key: symbol]: unknown;
|
|
344
350
|
}
|