@capgo/capacitor-contacts 8.0.14 → 8.0.15

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
@@ -26,6 +26,20 @@ The most complete doc is available here: https://capgo.app/docs/plugins/contacts
26
26
 
27
27
  ## Install
28
28
 
29
+ You can use our AI-Assisted Setup to install the plugin. Add the Capgo skills to your AI tool using the following command:
30
+
31
+ ```bash
32
+ npx skills add https://github.com/cap-go/capacitor-skills --skill capacitor-plugins
33
+ ```
34
+
35
+ Then use the following prompt:
36
+
37
+ ```text
38
+ Use the `capacitor-plugins` skill from `cap-go/capacitor-skills` to install the `@capgo/capacitor-contacts` plugin in my project.
39
+ ```
40
+
41
+ If you prefer Manual Setup, install the plugin by running the following commands and follow the platform-specific instructions below:
42
+
29
43
  ```bash
30
44
  npm install @capgo/capacitor-contacts
31
45
  npx cap sync
@@ -40,7 +40,7 @@ import java.util.Set;
40
40
  )
41
41
  public class CapacitorContactsPlugin extends Plugin {
42
42
 
43
- private final String pluginVersion = "8.0.14";
43
+ private final String pluginVersion = "8.0.15";
44
44
  private static final int BATCH_SIZE = 50;
45
45
 
46
46
  // MARK: - Implemented API surface
@@ -5,7 +5,7 @@ import UIKit
5
5
 
6
6
  @objc(CapacitorContactsPlugin)
7
7
  public class CapacitorContactsPlugin: CAPPlugin, CAPBridgedPlugin {
8
- private let pluginVersion: String = "8.0.14"
8
+ private let pluginVersion: String = "8.0.15"
9
9
  public let identifier = "CapacitorContactsPlugin"
10
10
  public let jsName = "CapacitorContacts"
11
11
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-contacts",
3
- "version": "8.0.14",
3
+ "version": "8.0.15",
4
4
  "description": "Work with device contacts using Capacitor APIs",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",