ysyt-agent-sdk 2.0.6 → 2.0.7
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
CHANGED
|
@@ -101,6 +101,7 @@ export declare enum CallSipCallEventEnum {
|
|
|
101
101
|
CONSULT_TRANSFER_FAILED = "consult_transfer_failed",
|
|
102
102
|
CONSULT_TRANSFER_OFF_HOOK = "consult_transfer_off_hook",
|
|
103
103
|
INCOMING_CALL = "incoming_call",
|
|
104
|
+
INCOMING_CALL_IN = "incoming_call_in",
|
|
104
105
|
PREDICT_INCOMING_CALL = "predict_incoming_call",
|
|
105
106
|
DUAL_CALL_INCOMING_CALL = "dual_call_incoming_call",
|
|
106
107
|
INCOMING_CALL_OFF_HOOK = "incoming_call_off_hook",
|
|
@@ -253,6 +253,11 @@ export interface Events {
|
|
|
253
253
|
session_id: string;
|
|
254
254
|
trace_id: string;
|
|
255
255
|
};
|
|
256
|
+
[CallSipCallEventEnum.INCOMING_CALL_IN]: {
|
|
257
|
+
customer_phone: string;
|
|
258
|
+
session_id: string;
|
|
259
|
+
trace_id: string;
|
|
260
|
+
};
|
|
256
261
|
[CallSipCallEventEnum.PREDICT_INCOMING_CALL]: {
|
|
257
262
|
customer_phone: string;
|
|
258
263
|
session_id: string;
|
|
@@ -4,6 +4,7 @@ export declare const initIdleConfig: ActionConfigsType;
|
|
|
4
4
|
export declare const initBusyConfig: ActionConfigsType;
|
|
5
5
|
export declare const incomingConfig: ActionConfigsType;
|
|
6
6
|
export declare const outgoingConfig: ActionConfigsType;
|
|
7
|
+
export declare const internalConfig: ActionConfigsType;
|
|
7
8
|
export declare const consultConfig: ActionConfigsType;
|
|
8
9
|
export declare const transferConfig: ActionConfigsType;
|
|
9
10
|
export declare const conferenceConfig: ActionConfigsType;
|