@telnyx/react-voice-commons-sdk 0.1.4 → 0.1.5
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/CHANGELOG.md +19 -16
- package/README.md +469 -469
- package/TelnyxVoiceCommons.podspec +31 -31
- package/ios/CallKitBridge.m +43 -43
- package/ios/CallKitBridge.swift +874 -874
- package/ios/VoicePnBridge.m +30 -30
- package/ios/VoicePnBridge.swift +86 -86
- package/lib/callkit/callkit-coordinator.d.ts +114 -110
- package/lib/callkit/callkit-coordinator.js +706 -664
- package/lib/callkit/callkit.d.ts +41 -41
- package/lib/callkit/callkit.js +242 -252
- package/lib/callkit/index.js +47 -15
- package/lib/callkit/use-callkit.d.ts +19 -19
- package/lib/callkit/use-callkit.js +310 -270
- package/lib/context/TelnyxVoiceContext.d.ts +9 -9
- package/lib/context/TelnyxVoiceContext.js +13 -10
- package/lib/hooks/use-callkit-coordinator.d.ts +17 -9
- package/lib/hooks/use-callkit-coordinator.js +50 -45
- package/lib/hooks/useAppReadyNotifier.js +15 -13
- package/lib/hooks/useAppStateHandler.d.ts +11 -6
- package/lib/hooks/useAppStateHandler.js +110 -95
- package/lib/index.d.ts +21 -3
- package/lib/index.js +201 -50
- package/lib/internal/CallKitHandler.d.ts +6 -6
- package/lib/internal/CallKitHandler.js +104 -96
- package/lib/internal/callkit-manager.d.ts +57 -57
- package/lib/internal/callkit-manager.js +316 -299
- package/lib/internal/calls/call-state-controller.d.ts +78 -73
- package/lib/internal/calls/call-state-controller.js +326 -265
- package/lib/internal/session/session-manager.d.ts +71 -71
- package/lib/internal/session/session-manager.js +437 -360
- package/lib/internal/user-defaults-helpers.js +39 -49
- package/lib/internal/voice-pn-bridge.d.ts +112 -104
- package/lib/internal/voice-pn-bridge.js +193 -203
- package/lib/models/call-state.d.ts +46 -46
- package/lib/models/call-state.js +74 -70
- package/lib/models/call.d.ts +173 -157
- package/lib/models/call.js +492 -448
- package/lib/models/config.d.ts +18 -11
- package/lib/models/config.js +35 -37
- package/lib/models/connection-state.d.ts +10 -10
- package/lib/models/connection-state.js +16 -16
- package/lib/telnyx-voice-app.d.ts +28 -28
- package/lib/telnyx-voice-app.js +561 -509
- package/lib/telnyx-voip-client.d.ts +174 -167
- package/lib/telnyx-voip-client.js +397 -385
- package/package.json +115 -115
- package/src/callkit/callkit-coordinator.ts +830 -830
- package/src/internal/calls/call-state-controller.ts +407 -407
- package/src/internal/session/session-manager.ts +483 -483
- package/src/internal/voice-pn-bridge.ts +266 -266
- package/src/models/call-state.ts +105 -105
- package/src/models/call.ts +502 -502
- package/src/telnyx-voice-app.tsx +787 -788
- package/src/telnyx-voip-client.ts +551 -551
- package/src/types/telnyx-sdk.d.ts +93 -93
package/CHANGELOG.md
CHANGED
|
@@ -1,24 +1,27 @@
|
|
|
1
1
|
# CHANGELOG.md
|
|
2
2
|
|
|
3
|
-
## [0.1.
|
|
3
|
+
## [0.1.5](https://github.com/team-telnyx/react-native-voice-commons/releases/tag/0.1.5) (2025-12-08)
|
|
4
4
|
|
|
5
|
-
###
|
|
5
|
+
### Enhancement
|
|
6
|
+
|
|
7
|
+
• Updated to use @telnyx/react-native-voice-sdk@0.3.0 with advanced media events support
|
|
6
8
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
• App setup guide for native Android and iOS implementation
|
|
11
|
-
• Cleaned up documentation formatting (removed emoji characters)
|
|
12
|
-
• Fixed documentation links to point to actual API references
|
|
13
|
-
• Updated CHANGELOG links to use npm package URLs
|
|
9
|
+
## [0.1.4](https://github.com/team-telnyx/react-native-voice-commons/releases/tag/0.1.4) (2025-11-25)
|
|
10
|
+
|
|
11
|
+
### Enhancement
|
|
14
12
|
|
|
15
|
-
|
|
13
|
+
• Enhanced 4G/WiFi reconnection mechanism for better network handling
|
|
14
|
+
• iOS version integration improvements
|
|
15
|
+
|
|
16
|
+
## [0.1.3](https://github.com/team-telnyx/react-native-voice-commons/releases/tag/0.1.3) (2025-11-20)
|
|
17
|
+
|
|
18
|
+
### Enhancement
|
|
16
19
|
|
|
17
|
-
•
|
|
18
|
-
•
|
|
19
|
-
•
|
|
20
|
+
• Fixed background answer functionality for iOS
|
|
21
|
+
• Added connecting state to Telnyx client
|
|
22
|
+
• Improved reconnection logic for Android using foreground service implementation
|
|
20
23
|
|
|
21
|
-
## [0.1.2](https://
|
|
24
|
+
## [0.1.2](https://github.com/team-telnyx/react-native-voice-commons/releases/tag/0.1.2) (2025-11-04)
|
|
22
25
|
|
|
23
26
|
### Enhancement
|
|
24
27
|
|
|
@@ -32,7 +35,7 @@
|
|
|
32
35
|
|
|
33
36
|
• Package metadata and npm publishing configuration
|
|
34
37
|
|
|
35
|
-
## [0.1.1](https://
|
|
38
|
+
## [0.1.1](https://github.com/team-telnyx/react-native-voice-commons/releases/tag/0.1.1) (2025-11-02)
|
|
36
39
|
|
|
37
40
|
### Enhancement
|
|
38
41
|
|
|
@@ -50,7 +53,7 @@
|
|
|
50
53
|
• Session management
|
|
51
54
|
• TypeScript type definitions
|
|
52
55
|
|
|
53
|
-
## [0.1.0](https://
|
|
56
|
+
## [0.1.0](https://github.com/team-telnyx/react-native-voice-commons/releases/tag/0.1.0) (2025-11-01)
|
|
54
57
|
|
|
55
58
|
### Enhancement
|
|
56
59
|
|