ysyt-agent-sdk 1.0.154 → 1.0.156

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.
@@ -92,6 +92,7 @@ export declare enum CallSipCallEventEnum {
92
92
  CONSULT_TRANSFER_FAILED = "consult_transfer_failed",
93
93
  CONSULT_TRANSFER_OFF_HOOK = "consult_transfer_off_hook",
94
94
  INCOMING_CALL = "incoming_call",
95
+ PREDICT_INCOMING_CALL = "predict_incoming_call",
95
96
  INCOMING_CALL_OFF_HOOK = "incoming_call_off_hook",
96
97
  INCOMING_CALL_END = "incoming_call_end",
97
98
  SATISFACTION_EVALUATION_SUCCESS = "satisfaction_evaluation_success",
@@ -252,6 +252,11 @@ export interface Events {
252
252
  session_id: string;
253
253
  trace_id: string;
254
254
  };
255
+ [CallSipCallEventEnum.PREDICT_INCOMING_CALL]: {
256
+ customer_phone: string;
257
+ session_id: string;
258
+ trace_id: string;
259
+ };
255
260
  [CallSipCallEventEnum.INCOMING_CALL_OFF_HOOK]: {
256
261
  session_id: string;
257
262
  };