@capgo/capacitor-twilio-voice 7.7.0 → 7.7.2
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
|
@@ -151,7 +151,7 @@ Change the view controller to `CustomCapacitorViewController` in `Main.storyboar
|
|
|
151
151
|
</dependencies>
|
|
152
152
|
<scenes>
|
|
153
153
|
<!--Bridge View Controller-->
|
|
154
|
-
<scene sceneID="
|
|
154
|
+
<scene sceneID="the-QT-ifu">
|
|
155
155
|
<objects>
|
|
156
156
|
- <viewController id="BYZ-38-t0r" customClass="CAPBridgeViewController" customModule="Capacitor" sceneMemberID="viewController"/>
|
|
157
157
|
+ <viewController id="BYZ-38-t0r" customClass="CustomCapacitorViewController" customModule="App" customModuleProvider="target" sceneMemberID="viewController"/>
|
package/android/src/main/java/ee/forgr/capacitor_twilio_voice/CapacitorTwilioVoicePlugin.java
CHANGED
|
@@ -75,7 +75,7 @@ import org.json.JSONObject;
|
|
|
75
75
|
)
|
|
76
76
|
public class CapacitorTwilioVoicePlugin extends Plugin {
|
|
77
77
|
|
|
78
|
-
private final String pluginVersion = "7.7.
|
|
78
|
+
private final String pluginVersion = "7.7.2";
|
|
79
79
|
|
|
80
80
|
private static final String TAG = "CapacitorTwilioVoice";
|
|
81
81
|
private static final String PREF_ACCESS_TOKEN = "twilio_access_token";
|
|
@@ -27,7 +27,7 @@ public protocol PushKitEventDelegate: AnyObject {
|
|
|
27
27
|
*/
|
|
28
28
|
@objc(CapacitorTwilioVoicePlugin)
|
|
29
29
|
public class CapacitorTwilioVoicePlugin: CAPPlugin, CAPBridgedPlugin, PushKitEventDelegate {
|
|
30
|
-
private let pluginVersion: String = "7.7.
|
|
30
|
+
private let pluginVersion: String = "7.7.2"
|
|
31
31
|
|
|
32
32
|
public let identifier = "CapacitorTwilioVoicePlugin"
|
|
33
33
|
public let jsName = "CapacitorTwilioVoice"
|
|
@@ -594,7 +594,7 @@ public class CapacitorTwilioVoicePlugin: CAPPlugin, CAPBridgedPlugin, PushKitEve
|
|
|
594
594
|
for (callSid, callInvite) in activeCallInvites {
|
|
595
595
|
let from = (callInvite.from ?? "Unknown").replacingOccurrences(of: "client:", with: "")
|
|
596
596
|
let niceName = callInvite.customParameters?["CapacitorTwilioCallerName"] ?? from
|
|
597
|
-
|
|
597
|
+
|
|
598
598
|
pendingInvitesArray.append([
|
|
599
599
|
"callSid": callSid,
|
|
600
600
|
"from": niceName,
|