@capgo/capacitor-twilio-voice 8.2.4 → 8.2.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/README.md CHANGED
@@ -25,6 +25,20 @@ The most complete doc is available here: https://capgo.app/docs/plugins/twilio-v
25
25
 
26
26
  ## Installation
27
27
 
28
+ You can use our AI-Assisted Setup to install the plugin. Add the Capgo skills to your AI tool using the following command:
29
+
30
+ ```bash
31
+ npx skills add https://github.com/cap-go/capacitor-skills --skill capacitor-plugins
32
+ ```
33
+
34
+ Then use the following prompt:
35
+
36
+ ```text
37
+ Use the `capacitor-plugins` skill from `cap-go/capacitor-skills` to install the `@capgo/capacitor-twilio-voice` plugin in my project.
38
+ ```
39
+
40
+ If you prefer Manual Setup, install the plugin by running the following commands and follow the platform-specific instructions below:
41
+
28
42
  ```bash
29
43
  npm install @capgo/capacitor-twilio-voice
30
44
  npx cap sync
@@ -75,7 +75,7 @@ import org.json.JSONObject;
75
75
  )
76
76
  public class CapacitorTwilioVoicePlugin extends Plugin {
77
77
 
78
- private final String pluginVersion = "8.2.4";
78
+ private final String pluginVersion = "8.2.5";
79
79
 
80
80
  private static final String TAG = "CapacitorTwilioVoice";
81
81
  private static final String PREF_ACCESS_TOKEN = "twilio_access_token";
@@ -28,7 +28,7 @@ public protocol PushKitEventDelegate: AnyObject {
28
28
  */
29
29
  @objc(CapacitorTwilioVoicePlugin)
30
30
  public class CapacitorTwilioVoicePlugin: CAPPlugin, CAPBridgedPlugin, PushKitEventDelegate {
31
- private let pluginVersion: String = "8.2.4"
31
+ private let pluginVersion: String = "8.2.5"
32
32
 
33
33
  public let identifier = "CapacitorTwilioVoicePlugin"
34
34
  public let jsName = "CapacitorTwilioVoice"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-twilio-voice",
3
- "version": "8.2.4",
3
+ "version": "8.2.5",
4
4
  "description": "Integrates the Twilio Voice SDK into Capacitor",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",