ahs-cti 1.0.0-beta.34 → 1.0.0-beta.35

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 CHANGED
@@ -4466,6 +4466,7 @@ function CallControls({ onDataChange }) {
4466
4466
  };
4467
4467
  }, []);
4468
4468
  (0, import_react12.useEffect)(() => {
4469
+ var _a3;
4469
4470
  if (onDataChange && state.callData) {
4470
4471
  const { process_id, process_name, status, phone_number, agent_id, convox_id, call_details } = state.callData;
4471
4472
  const callData = {
@@ -4475,7 +4476,8 @@ function CallControls({ onDataChange }) {
4475
4476
  agent_id,
4476
4477
  process_id,
4477
4478
  process_name,
4478
- call_details
4479
+ call_details,
4480
+ auto_wrapup_time: (_a3 = state.sdkConfig) == null ? void 0 : _a3.auto_wrapup_time
4479
4481
  };
4480
4482
  onDataChange(callData);
4481
4483
  }