ysyt-agent-sdk 1.0.64 → 1.0.65

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.
@@ -23,7 +23,6 @@ export declare class SIPClient {
23
23
  password: string;
24
24
  callTimeout?: number;
25
25
  }, eventCallback: (event: RtcEventDataType<RtcEventDataTypes>) => void);
26
- private handleMessage;
27
26
  private handleNetworkInfoChange;
28
27
  private handleOffline;
29
28
  private handleOnline;
@@ -54,10 +53,6 @@ export declare class SIPClient {
54
53
  * 来电处理逻辑(监听状态即可,不需要主动作出回应)
55
54
  */
56
55
  private handleIncomingCall;
57
- /**
58
- * 发起呼叫
59
- */
60
- makeCall(target: string): Promise<void>;
61
56
  /**
62
57
  * 接听来电
63
58
  */
@@ -102,7 +102,8 @@ export declare enum WebsocketTypeEnum {
102
102
  TRANSFER = 127,
103
103
  TRANSFER_FAILED = 128,
104
104
  TRANSFER_INCOMING_CALL = 129,
105
- TRANSFER_OFF_HOOK = 130
105
+ TRANSFER_OFF_HOOK = 130,
106
+ AGENT_HANGUP = 131
106
107
  }
107
108
  export declare enum EventName {
108
109
  EVENT_ALL = "event_all",