@capgo/capacitor-persistent-account 8.0.30 → 8.0.32

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
@@ -21,6 +21,20 @@ The most complete doc is available here: https://capgo.app/docs/plugins/persiste
21
21
 
22
22
  ## Install
23
23
 
24
+ You can use our AI-Assisted Setup to install the plugin. Add the Capgo skills to your AI tool using the following command:
25
+
26
+ ```bash
27
+ npx skills add https://github.com/cap-go/capacitor-skills --skill capacitor-plugins
28
+ ```
29
+
30
+ Then use the following prompt:
31
+
32
+ ```text
33
+ Use the `capacitor-plugins` skill from `cap-go/capacitor-skills` to install the `@capgo/capacitor-persistent-account` plugin in my project.
34
+ ```
35
+
36
+ If you prefer Manual Setup, install the plugin by running the following commands and follow the platform-specific instructions below:
37
+
24
38
  ```bash
25
39
  npm install @capgo/capacitor-persistent-account
26
40
  npx cap sync
@@ -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 pluginVersion = "8.0.30";
14
+ private final String pluginVersion = "8.0.32";
15
15
 
16
16
  private CapacitorPersistentAccount implementation;
17
17
 
@@ -7,7 +7,7 @@ import Capacitor
7
7
  */
8
8
  @objc(CapacitorPersistentAccountPlugin)
9
9
  public class CapacitorPersistentAccountPlugin: CAPPlugin, CAPBridgedPlugin {
10
- private let pluginVersion: String = "8.0.30"
10
+ private let pluginVersion: String = "8.0.32"
11
11
  public let identifier = "CapacitorPersistentAccountPlugin"
12
12
  public let jsName = "CapacitorPersistentAccount"
13
13
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-persistent-account",
3
- "version": "8.0.30",
3
+ "version": "8.0.32",
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",