@webex/cc-task 1.28.0-ccwidgets.111 → 1.28.0-ccwidgets.113

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.
@@ -1,3 +1,4 @@
1
+ import { ILogger } from '@webex/cc-store';
1
2
  import { ITask } from '@webex/contact-center';
2
3
  /**
3
4
  * This function determines the visibility of various controls based on the task's data.
@@ -6,7 +7,7 @@ import { ITask } from '@webex/contact-center';
6
7
  */
7
8
  export declare function getControlsVisibility(deviceType: string, featureFlags: {
8
9
  [key: string]: boolean;
9
- }, task: ITask): {
10
+ }, task: ITask, logger?: ILogger): {
10
11
  accept: boolean;
11
12
  decline: boolean;
12
13
  end: boolean;
@@ -20,4 +21,4 @@ export declare function getControlsVisibility(deviceType: string, featureFlags:
20
21
  endConsult: boolean;
21
22
  recordingIndicator: boolean;
22
23
  };
23
- export declare function findHoldTimestamp(interaction: Interaction, mType?: string): number | null;
24
+ export declare function findHoldTimestamp(interaction: Interaction, mType?: string, logger?: ILogger): number | null;
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.111",
4
+ "version": "1.28.0-ccwidgets.113",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/types/index.d.ts",
7
7
  "publishConfig": {
@@ -21,9 +21,10 @@
21
21
  "test:styles": "eslint"
22
22
  },
23
23
  "dependencies": {
24
- "@webex/cc-components": "1.28.0-ccwidgets.111",
25
- "@webex/cc-store": "1.28.0-ccwidgets.111",
26
- "mobx-react-lite": "^4.1.0"
24
+ "@webex/cc-components": "1.28.0-ccwidgets.113",
25
+ "@webex/cc-store": "1.28.0-ccwidgets.113",
26
+ "mobx-react-lite": "^4.1.0",
27
+ "react-error-boundary": "^6.0.0"
27
28
  },
28
29
  "devDependencies": {
29
30
  "@babel/core": "7.25.2",