@wizai/agent-sip-sdk 0.1.2-alpha → 0.1.3-alpha
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/lib/types/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ declare class AgentSipSDK {
|
|
|
11
11
|
private agentResponseTime;
|
|
12
12
|
private timer;
|
|
13
13
|
private callDetails;
|
|
14
|
+
private readonly STORAGE_KEY;
|
|
14
15
|
constructor(props: IAgentSipSDKOptions);
|
|
15
16
|
private init;
|
|
16
17
|
getAgentStatusList(): Promise<IGetAgentStatusList>;
|
|
@@ -36,6 +37,9 @@ declare class AgentSipSDK {
|
|
|
36
37
|
private sessionFailed;
|
|
37
38
|
private openOnunload;
|
|
38
39
|
private cancelOnunload;
|
|
40
|
+
private saveAgentInfoToStorage;
|
|
41
|
+
private getAgentInfoFromStorage;
|
|
42
|
+
private clearAgentInfoFromStorage;
|
|
39
43
|
private saveAgentResponseTime;
|
|
40
44
|
hangup(): void;
|
|
41
45
|
private timingResTime;
|
package/package.json
CHANGED