call-control-sdk 3.3.0 → 4.1.0

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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Call Control SDK
2
2
 
3
- Achala provide call control SDK with component, providing control panel for call management.
3
+ Call control SDK component, providing control panel for call management.
4
4
 
5
5
  ## Features
6
6
 
@@ -24,7 +24,7 @@ npm install call-control-sdk
24
24
  Make sure you have these installed in your application:
25
25
 
26
26
  ```bash
27
- npm install react react-dom @mui/material @mui/icons-material @emotion/react @emotion/styled
27
+ npm install react react-dom axios @mui/material @mui/icons-material @emotion/react @emotion/styled
28
28
  ```
29
29
 
30
30
  ## Quick Start
@@ -130,4 +130,4 @@ All control states are automatically persistent:
130
130
 
131
131
  ## License
132
132
 
133
- MIT © 2025 Achala It Solutions Pvt. Ltd.
133
+ MIT © 2025
package/dist/index.d.mts CHANGED
@@ -8,7 +8,7 @@ interface CallData {
8
8
  interface CallControlPanelProps {
9
9
  onDataChange?: (data: CallData) => void;
10
10
  }
11
- type CallStatus = "idle" | "ready" | "break";
11
+ type CallStatus = "idle" | "ready" | "break" | "on call" | "wrap up" | "dial" | "hold" | "mute";
12
12
 
13
13
  declare function CallControlPanel({ onDataChange }: CallControlPanelProps): react_jsx_runtime.JSX.Element | null;
14
14
 
package/dist/index.d.ts CHANGED
@@ -8,7 +8,7 @@ interface CallData {
8
8
  interface CallControlPanelProps {
9
9
  onDataChange?: (data: CallData) => void;
10
10
  }
11
- type CallStatus = "idle" | "ready" | "break";
11
+ type CallStatus = "idle" | "ready" | "break" | "on call" | "wrap up" | "dial" | "hold" | "mute";
12
12
 
13
13
  declare function CallControlPanel({ onDataChange }: CallControlPanelProps): react_jsx_runtime.JSX.Element | null;
14
14