@webex/cc-task 1.28.0-ccwidgets.51 → 1.28.0-ccwidgets.53
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/index.js +3 -3
- package/dist/types/helper.d.ts +1 -1
- package/dist/types/task.types.d.ts +2 -2
- package/package.json +3 -3
package/dist/types/helper.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ export declare const useTaskList: (props: UseTaskListProps) => {
|
|
|
12
12
|
export declare const useIncomingTask: (props: UseTaskProps) => {
|
|
13
13
|
incomingTask: TaskProps;
|
|
14
14
|
accept: () => void;
|
|
15
|
-
|
|
15
|
+
reject: () => void;
|
|
16
16
|
isBrowser: boolean;
|
|
17
17
|
};
|
|
18
18
|
export declare const useCallControl: (props: useCallControlProps) => {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { TaskProps, ControlProps, OutdialCallProps } from '@webex/cc-components';
|
|
2
|
-
export type UseTaskProps = Pick<TaskProps, 'incomingTask' | 'onAccepted' | '
|
|
2
|
+
export type UseTaskProps = Pick<TaskProps, 'incomingTask' | 'onAccepted' | 'onRejected' | 'deviceType' | 'logger'>;
|
|
3
3
|
export type UseTaskListProps = Pick<TaskProps, 'cc' | 'taskList' | 'deviceType' | 'onTaskAccepted' | 'onTaskDeclined' | 'logger'>;
|
|
4
|
-
export type IncomingTaskProps = Pick<TaskProps, 'onAccepted' | '
|
|
4
|
+
export type IncomingTaskProps = Pick<TaskProps, 'incomingTask' | 'onAccepted' | 'onRejected'>;
|
|
5
5
|
export type TaskListProps = Pick<TaskProps, 'onTaskAccepted' | 'onTaskDeclined'>;
|
|
6
6
|
export type CallControlProps = Pick<ControlProps, 'onHoldResume' | 'onEnd' | 'onWrapUp' | 'callControlClassName' | 'callControlConsultClassName'>;
|
|
7
7
|
export type useCallControlProps = Pick<ControlProps, 'currentTask' | 'onHoldResume' | 'onEnd' | 'onWrapUp' | 'logger' | 'consultInitiated' | 'deviceType' | 'featureFlags'>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webex/cc-task",
|
|
3
3
|
"description": "Webex Contact Center Widgets: Task",
|
|
4
|
-
"version": "1.28.0-ccwidgets.
|
|
4
|
+
"version": "1.28.0-ccwidgets.53",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"test:styles": "eslint"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@webex/cc-components": "1.28.0-ccwidgets.
|
|
24
|
-
"@webex/cc-store": "1.28.0-ccwidgets.
|
|
23
|
+
"@webex/cc-components": "1.28.0-ccwidgets.53",
|
|
24
|
+
"@webex/cc-store": "1.28.0-ccwidgets.53",
|
|
25
25
|
"mobx-react-lite": "^4.1.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|