reddb-cli 0.1.2-next.51 → 0.1.2-next.53

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/README.md +19 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -221,6 +221,25 @@ Validation on write. No parsing in your app.
221
221
 
222
222
  ---
223
223
 
224
+ ## Backup & Recovery
225
+
226
+ Built-in backup scheduler, WAL archiving, Change Data Capture (CDC), and Point-in-Time Recovery framework:
227
+
228
+ ```bash
229
+ # Poll real-time changes
230
+ curl 'localhost:8080/changes?since_lsn=0'
231
+
232
+ # Trigger manual backup
233
+ curl -X POST localhost:8080/backup/trigger
234
+
235
+ # Check backup status
236
+ curl localhost:8080/backup/status
237
+ ```
238
+
239
+ Remote backends: S3, R2, DigitalOcean Spaces, GCS, Turso, Cloudflare D1, local filesystem.
240
+
241
+ ---
242
+
224
243
  ## 3 Deployment Modes
225
244
 
226
245
  | Mode | Think of it as... | Access via |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reddb-cli",
3
- "version": "0.1.2-next.51",
3
+ "version": "0.1.2-next.53",
4
4
  "description": "JavaScript/TypeScript SDK for RedDB - unified multi-model database",
5
5
  "type": "commonjs",
6
6
  "main": "./sdk/red-sdk.js",