@pylonsync/react 0.3.259 → 0.3.261

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/src/index.ts +1 -1
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.3.259",
6
+ "version": "0.3.261",
7
7
  "type": "module",
8
8
  "main": "src/index.ts",
9
9
  "types": "src/index.ts",
@@ -12,8 +12,8 @@
12
12
  "check": "tsc -p tsconfig.json --noEmit"
13
13
  },
14
14
  "dependencies": {
15
- "@pylonsync/sdk": "0.3.259",
16
- "@pylonsync/sync": "0.3.259"
15
+ "@pylonsync/sdk": "0.3.261",
16
+ "@pylonsync/sync": "0.3.261"
17
17
  },
18
18
  "peerDependencies": {
19
19
  "react": ">=19.0.0"
package/src/index.ts CHANGED
@@ -104,7 +104,7 @@ export { useSyncStatus } from "./useSyncStatus";
104
104
  export type { SyncConnectionStatus } from "./useSyncStatus";
105
105
 
106
106
  // One-liner API
107
- export { db, init } from "./db";
107
+ export { db, init, getSync } from "./db";
108
108
 
109
109
  // Typed client (consumes generated AppSchema)
110
110
  export { createTypedDb } from "./typed";