@capgo/capacitor-persistent-account 7.2.2 → 7.2.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.
package/Package.swift CHANGED
@@ -10,7 +10,7 @@ let package = Package(
10
10
  targets: ["CapacitorPersistentAccountPlugin"])
11
11
  ],
12
12
  dependencies: [
13
- .package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "7.4.4")
13
+ .package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "7.0.0")
14
14
  ],
15
15
  targets: [
16
16
  .target(
@@ -11,7 +11,7 @@ import com.getcapacitor.annotation.PermissionCallback;
11
11
  @CapacitorPlugin(name = "CapacitorPersistentAccount")
12
12
  public class CapacitorPersistentAccountPlugin extends Plugin {
13
13
 
14
- private final String PLUGIN_VERSION = "7.2.2";
14
+ private final String pluginVersion = "7.2.4";
15
15
 
16
16
  private CapacitorPersistentAccount implementation;
17
17
 
@@ -53,7 +53,7 @@ public class CapacitorPersistentAccountPlugin extends Plugin {
53
53
  public void getPluginVersion(final PluginCall call) {
54
54
  try {
55
55
  final JSObject ret = new JSObject();
56
- ret.put("version", this.PLUGIN_VERSION);
56
+ ret.put("version", this.pluginVersion);
57
57
  call.resolve(ret);
58
58
  } catch (final Exception e) {
59
59
  call.reject("Could not get plugin version", e);
@@ -7,7 +7,7 @@ import Capacitor
7
7
  */
8
8
  @objc(CapacitorPersistentAccountPlugin)
9
9
  public class CapacitorPersistentAccountPlugin: CAPPlugin, CAPBridgedPlugin {
10
- private let PLUGIN_VERSION: String = "7.2.2"
10
+ private let pluginVersion: String = "7.2.4"
11
11
  public let identifier = "CapacitorPersistentAccountPlugin"
12
12
  public let jsName = "CapacitorPersistentAccount"
13
13
  public let pluginMethods: [CAPPluginMethod] = [
@@ -36,7 +36,7 @@ public class CapacitorPersistentAccountPlugin: CAPPlugin, CAPBridgedPlugin {
36
36
  }
37
37
 
38
38
  @objc func getPluginVersion(_ call: CAPPluginCall) {
39
- call.resolve(["version": self.PLUGIN_VERSION])
39
+ call.resolve(["version": self.pluginVersion])
40
40
  }
41
41
 
42
42
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-persistent-account",
3
- "version": "7.2.2",
3
+ "version": "7.2.4",
4
4
  "description": "This plugin allows you to securely store account information for a user in Capacitor",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",