@webex/cc-components 1.28.0-next.24 → 1.28.0-next.25
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/7152.js +1 -1
- package/dist/84771.js +1 -1
- package/dist/index.js +33 -33
- package/dist/types/components/task/RealTimeTranscript/real-time-transcript.d.ts +3 -0
- package/dist/types/components/task/task.types.d.ts +15 -0
- package/dist/types/index.d.ts +2 -1
- package/dist/wc.js +54 -54
- package/package.json +4 -4
|
@@ -116,6 +116,21 @@ export interface TaskProps {
|
|
|
116
116
|
}
|
|
117
117
|
export type IncomingTaskComponentProps = Pick<TaskProps, 'isBrowser' | 'accept' | 'reject' | 'logger'> & Partial<Pick<TaskProps, 'incomingTask' | 'isDeclineButtonEnabled'>>;
|
|
118
118
|
export type TaskListComponentProps = Pick<TaskProps, 'isBrowser' | 'acceptTask' | 'declineTask' | 'onTaskSelect' | 'logger' | 'agentId'> & Partial<Pick<TaskProps, 'currentTask' | 'taskList'>>;
|
|
119
|
+
export interface RealTimeTranscriptEntry {
|
|
120
|
+
id: string;
|
|
121
|
+
speaker: string;
|
|
122
|
+
message: string;
|
|
123
|
+
timestamp: number;
|
|
124
|
+
displayTime?: string;
|
|
125
|
+
event?: string;
|
|
126
|
+
isCustomer?: boolean;
|
|
127
|
+
avatarUrl?: string;
|
|
128
|
+
initials?: string;
|
|
129
|
+
}
|
|
130
|
+
export interface RealTimeTranscriptComponentProps {
|
|
131
|
+
liveTranscriptEntries?: RealTimeTranscriptEntry[];
|
|
132
|
+
className?: string;
|
|
133
|
+
}
|
|
119
134
|
/**
|
|
120
135
|
* Interface representing the properties for control actions on a task.
|
|
121
136
|
*/
|
package/dist/types/index.d.ts
CHANGED
|
@@ -5,7 +5,8 @@ import CallControlCADComponent from './components/task/CallControlCAD/call-contr
|
|
|
5
5
|
import IncomingTaskComponent from './components/task/IncomingTask/incoming-task';
|
|
6
6
|
import TaskListComponent from './components/task/TaskList/task-list';
|
|
7
7
|
import OutdialCallComponent from './components/task/OutdialCall/outdial-call';
|
|
8
|
-
|
|
8
|
+
import RealTimeTranscriptComponent from './components/task/RealTimeTranscript/real-time-transcript';
|
|
9
|
+
export { UserStateComponent, StationLoginComponent, CallControlComponent, CallControlCADComponent, IncomingTaskComponent, TaskListComponent, OutdialCallComponent, RealTimeTranscriptComponent, };
|
|
9
10
|
export * from './components/StationLogin/constants';
|
|
10
11
|
export * from './components/StationLogin/station-login.types';
|
|
11
12
|
export * from './components/UserState/user-state.types';
|