@capgo/capacitor-supabase 8.0.10 → 8.0.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
@@ -1,5 +1,5 @@
1
1
  # @capgo/capacitor-supabase
2
- <a href="https://capgo.app/"><img src='https://raw.githubusercontent.com/Cap-go/capgo/main/assets/capgo_banner.png' alt='Capgo - Instant updates for capacitor'/></a>
2
+ <a href="https://capgo.app/"><img src="https://capgo.app/readme-banner.svg?repo=Cap-go/capacitor-supabase" alt="Capgo - Instant updates for Capacitor" /></a>
3
3
 
4
4
  <div align="center">
5
5
  <h2><a href="https://capgo.app/?ref=plugin_supabase"> ➡️ Get Instant updates for your App with Capgo</a></h2>
@@ -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.10"
7
+ private let pluginVersion: String = "8.0.13"
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.10",
3
+ "version": "8.0.13",
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",
@@ -48,8 +48,11 @@
48
48
  "build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.mjs",
49
49
  "clean": "rimraf ./dist",
50
50
  "watch": "tsc --watch",
51
- "prepublishOnly": "npm run build",
52
- "check:wiring": "node scripts/check-capacitor-plugin-wiring.mjs"
51
+ "prepublishOnly": "bun run build",
52
+ "check:wiring": "node scripts/check-capacitor-plugin-wiring.mjs",
53
+ "example:install": "cd example-app && bun install --frozen-lockfile",
54
+ "example:build": "bun run build && cd example-app && bun install --frozen-lockfile && bun run build",
55
+ "example:capgo:deploy": "bun run example:build && bun scripts/deploy-example-capgo.mjs"
53
56
  },
54
57
  "devDependencies": {
55
58
  "@capacitor/android": "^8.0.0",