@capgo/capacitor-realtimekit 7.0.3 → 7.0.4

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.
@@ -19,7 +19,7 @@ import com.getcapacitor.annotation.Permission;
19
19
  public class CapacitorRealtimekitPlugin extends Plugin {
20
20
 
21
21
  private static final String TAG = "RealtimekitPlugin";
22
- private final String PLUGIN_VERSION = "7.0.3";
22
+ private final String pluginVersion = "7.0.4";
23
23
  private boolean isInitialized = false;
24
24
 
25
25
  @Override
@@ -73,7 +73,7 @@ public class CapacitorRealtimekitPlugin extends Plugin {
73
73
  public void getPluginVersion(final PluginCall call) {
74
74
  try {
75
75
  final JSObject ret = new JSObject();
76
- ret.put("version", this.PLUGIN_VERSION);
76
+ ret.put("version", this.pluginVersion);
77
77
  call.resolve(ret);
78
78
  } catch (final Exception e) {
79
79
  call.reject("Could not get plugin version", e);
@@ -7,7 +7,7 @@ import Capacitor
7
7
  */
8
8
  @objc(CapacitorRealtimekitPlugin)
9
9
  public class CapacitorRealtimekitPlugin: CAPPlugin, CAPBridgedPlugin {
10
- private let PLUGIN_VERSION: String = "7.0.3"
10
+ private let pluginVersion: String = "7.0.4"
11
11
  public let identifier = "CapacitorRealtimekitPlugin"
12
12
  public let jsName = "CapacitorRealtimekit"
13
13
  public let pluginMethods: [CAPPluginMethod] = [
@@ -46,7 +46,7 @@ public class CapacitorRealtimekitPlugin: CAPPlugin, CAPBridgedPlugin {
46
46
  }
47
47
 
48
48
  @objc func getPluginVersion(_ call: CAPPluginCall) {
49
- call.resolve(["version": self.PLUGIN_VERSION])
49
+ call.resolve(["version": self.pluginVersion])
50
50
  }
51
51
 
52
52
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-realtimekit",
3
- "version": "7.0.3",
3
+ "version": "7.0.4",
4
4
  "description": "Cloudflare Calls integration for Capacitor apps with built-in UI for meetings.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",