ysyt-agent-sdk 1.0.53 → 1.0.54

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.
@@ -29,6 +29,7 @@ export declare enum WebRtcCallSipEventEnum {
29
29
  WEB_RTC_SEND_DTMF = "send_dtmf"
30
30
  }
31
31
  export declare enum CallSipCallEvent {
32
+ CALL_PROGRESS = "call_progress",
32
33
  OUT_INCOMING_CALL = "out_call_incoming_call",
33
34
  OUT_SUCCESS = "out_call_success",
34
35
  OUT_FAILED = "out_call_failed",
@@ -135,6 +135,7 @@ type EventObject<T> = {
135
135
  };
136
136
  export interface Events {
137
137
  [EventName.AGENT_INIT_SUCCESS]: unknown;
138
+ [CallSipCallEvent.CALL_PROGRESS]: string;
138
139
  [WebRtcCallSipEventEnum.WEB_RTC_CONNECTING]: unknown;
139
140
  [WebRtcCallSipEventEnum.WEB_RTC_CONNECTED]: unknown;
140
141
  [WebRtcCallSipEventEnum.WEB_RTC_DISCONNECTING]: unknown;