ysyt-agent-sdk 1.1.11 → 1.1.12

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.
@@ -124,6 +124,7 @@ export declare enum CallSipCallEventEnum {
124
124
  STOP_EAR_SPEECH_SUCCESS = "stop_ear_speech_success",
125
125
  STOP_EAR_SPEECH_FAILED = "stop_ear_speech_failed",
126
126
  CALL_FORCE_INSERT_SUCCESS = "call_force_insert_success",
127
+ CALL_FORCE_INSERT_SUCCESS_LISTENER = "call_force_insert_success_listener",
127
128
  CALL_FORCE_INSERT_FAILED = "call_force_insert_failed"
128
129
  }
129
130
  export declare enum EventName {
@@ -330,6 +330,7 @@ export interface Events {
330
330
  };
331
331
  [CallSipCallEventEnum.EAR_SPEECH_SUCCESS]: {
332
332
  monitored_agent_no: string;
333
+ monitor_agent_no: string;
333
334
  };
334
335
  [CallSipCallEventEnum.EAR_SPEECH_FAILED]: unknown;
335
336
  [CallSipCallEventEnum.STOP_EAR_SPEECH_SUCCESS]: unknown;
@@ -339,6 +340,10 @@ export interface Events {
339
340
  monitored_agent_no: string;
340
341
  monitor_agent_no: string;
341
342
  };
343
+ [CallSipCallEventEnum.CALL_FORCE_INSERT_SUCCESS_LISTENER]: {
344
+ monitored_agent_no: string;
345
+ monitor_agent_no: string;
346
+ };
342
347
  [key: string]: unknown;
343
348
  [key: symbol]: unknown;
344
349
  }