@onereach/types-hitl-api 0.0.13 → 0.0.14
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.
|
@@ -3,10 +3,13 @@ export interface IAgentStatus {
|
|
|
3
3
|
readonly agentId?: string;
|
|
4
4
|
readonly status: AGENT_STATUS;
|
|
5
5
|
readonly busyReason: string;
|
|
6
|
+
/** How long ago user has refreshed his active status */
|
|
7
|
+
readonly lastStatusUpdate?: string;
|
|
8
|
+
/** How long ago user has changed his status to a different one */
|
|
9
|
+
readonly lastStatusChange?: string;
|
|
6
10
|
}
|
|
7
11
|
export interface IAgentStatusSettings {
|
|
8
12
|
readonly defaultLoginStatus?: AGENT_STATUS;
|
|
9
13
|
readonly defaultLoginStatusReason?: string;
|
|
10
14
|
readonly busyStatusReasons?: string[];
|
|
11
|
-
readonly lastStatusUpdate?: string;
|
|
12
15
|
}
|