@capgo/capacitor-autofill-save-password 8.0.29 → 8.0.31

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
@@ -30,6 +30,20 @@ The most complete doc is available here: https://capgo.app/docs/plugins/autofill
30
30
 
31
31
  ## Install
32
32
 
33
+ You can use our AI-Assisted Setup to install the plugin. Add the Capgo skills to your AI tool using the following command:
34
+
35
+ ```bash
36
+ npx skills add https://github.com/cap-go/capacitor-skills --skill capacitor-plugins
37
+ ```
38
+
39
+ Then use the following prompt:
40
+
41
+ ```text
42
+ Use the `capacitor-plugins` skill from `cap-go/capacitor-skills` to install the `@capgo/capacitor-autofill-save-password` plugin in my project.
43
+ ```
44
+
45
+ If you prefer Manual Setup, install the plugin by running the following commands and follow the platform-specific instructions below:
46
+
33
47
  ```bash
34
48
  npm install @capgo/capacitor-autofill-save-password
35
49
  npx cap sync
@@ -28,7 +28,7 @@ import java.util.Map;
28
28
  @CapacitorPlugin(name = "SavePassword")
29
29
  public class SavePasswordPlugin extends Plugin {
30
30
 
31
- private final String pluginVersion = "8.0.29";
31
+ private final String pluginVersion = "8.0.31";
32
32
  private static final String TAG = "CredentialManager";
33
33
  private CredentialManager credentialManager;
34
34
  private Map<String, PendingGetCredentialRequest> pendingRequestsByElementId = new HashMap<>();
@@ -9,7 +9,7 @@ import AuthenticationServices
9
9
  */
10
10
  @objc(SavePasswordPlugin)
11
11
  public class SavePasswordPlugin: CAPPlugin, CAPBridgedPlugin, ASAuthorizationControllerDelegate, ASAuthorizationControllerPresentationContextProviding {
12
- private let pluginVersion: String = "8.0.29"
12
+ private let pluginVersion: String = "8.0.31"
13
13
  public let identifier = "SavePasswordPlugin"
14
14
 
15
15
  public let jsName = "SavePassword"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-autofill-save-password",
3
- "version": "8.0.29",
3
+ "version": "8.0.31",
4
4
  "description": "Prompt to display dialog for saving password to keychain from webview app",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",