@capgo/capacitor-pay 8.1.11 → 8.1.13

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/pay/
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-pay` 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
  # Install (choose one)
35
49
  npm install @capgo/capacitor-pay
@@ -33,7 +33,7 @@ import org.json.JSONObject;
33
33
  @CapacitorPlugin(name = "Pay")
34
34
  public class PayPlugin extends Plugin {
35
35
 
36
- private final String pluginVersion = "8.1.11";
36
+ private final String pluginVersion = "8.1.13";
37
37
 
38
38
  private boolean paymentInProgress = false;
39
39
  private boolean resolutionInProgress = false;
@@ -5,7 +5,7 @@ import PassKit
5
5
 
6
6
  @objc(PayPlugin)
7
7
  public class PayPlugin: CAPPlugin, CAPBridgedPlugin, PKPaymentAuthorizationControllerDelegate {
8
- private let pluginVersion: String = "8.1.11"
8
+ private let pluginVersion: String = "8.1.13"
9
9
  public let identifier = "PayPlugin"
10
10
  public let jsName = "Pay"
11
11
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-pay",
3
- "version": "8.1.11",
3
+ "version": "8.1.13",
4
4
  "description": "Capacitor plugin to trigger native payment for iOS(Apple pay) and Android(Google Pay)",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",