@capgo/capacitor-supabase 8.0.13 → 8.0.14

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
@@ -47,6 +47,20 @@ The most complete doc is available here: https://capgo.app/docs/plugins/supabase
47
47
 
48
48
  ## Install
49
49
 
50
+ You can use our AI-Assisted Setup to install the plugin. Add the Capgo skills to your AI tool using the following command:
51
+
52
+ ```bash
53
+ npx skills add https://github.com/cap-go/capacitor-skills --skill capacitor-plugins
54
+ ```
55
+
56
+ Then use the following prompt:
57
+
58
+ ```text
59
+ Use the `capacitor-plugins` skill from `cap-go/capacitor-skills` to install the `@capgo/capacitor-supabase` plugin in my project.
60
+ ```
61
+
62
+ If you prefer Manual Setup, install the plugin by running the following commands and follow the platform-specific instructions below:
63
+
50
64
  ```bash
51
65
  npm install @capgo/capacitor-supabase
52
66
  npx cap sync
@@ -4,7 +4,7 @@ import Supabase
4
4
 
5
5
  @objc(CapacitorSupabasePlugin)
6
6
  public class CapacitorSupabasePlugin: CAPPlugin, CAPBridgedPlugin {
7
- private let pluginVersion: String = "8.0.13"
7
+ private let pluginVersion: String = "8.0.14"
8
8
  public let identifier = "CapacitorSupabasePlugin"
9
9
  public let jsName = "CapacitorSupabase"
10
10
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-supabase",
3
- "version": "8.0.13",
3
+ "version": "8.0.14",
4
4
  "description": "Native Supabase SDK integration for Capacitor - Auth, Database, and JWT access",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",