Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions sqlite-cloud/_nav.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,12 @@ const sidebarNav: SidebarNavStruct = [
type: "inner",
level: 1,
},
{
title: "Management API",
filePath: "sqlite-sync-cloudsync-management-api",
type: "inner",
level: 1,
},
{
title: "Best Practices",
filePath: "sqlite-sync-best-practices",
Expand All @@ -113,9 +119,9 @@ const sidebarNav: SidebarNavStruct = [
type: "inner",
level: 1,
},
{ title: "API Reference", type: "inner", level: 1 },
{ title: "Client API Reference", type: "inner", level: 1 },
{
title: "API Overview",
title: "Overview",
filePath: "sqlite-sync-api-reference",
type: "inner",
level: 2,
Expand Down
3 changes: 2 additions & 1 deletion sqlite-cloud/platform/cloudsync.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,11 @@ When combined with [Row-Level Security (RLS)](/docs/rls), CloudSync allows you t

You can enable and manage CloudSync for your databases directly from the SQLite Cloud dashboard. Select a database from the left panel — the list shows all databases in your project along with their CloudSync status. The right panel has four tabs: **Database Setup**, **Client Integration**, **Devices**, and **Metrics**.

If you prefer automation, you can also register databases, inspect tables, and enable CloudSync programmatically with the [Management API](/docs/sqlite-sync-cloudsync-management-api). That page documents the workspace-scoped management endpoints used with a `workspace-admin` key.

### Enabling and Disabling CloudSync

When CloudSync is not yet active for a database, the right panel shows a brief explanation and an **Enable CloudSync** button. Clicking it opens a confirmation dialog; after confirming, the database is registered with the sync service and the tabbed view appears.

To disable CloudSync, click the **Disable CloudSync** button in the top-right corner of the panel and confirm in the dialog that appears.

{/* <VideoPlayer src={enableDisableSync} /> */}
Expand Down
4 changes: 2 additions & 2 deletions sqlite-cloud/sqlite-ai/sqlite-sync/api-reference.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "SQLite-Sync API Reference"
description: "Comprehensive SQLite-Sync API reference for configuration, filters, block-level LWW, helpers, schema changes, and networking."
title: "Client API Reference"
description: "Reference for the SQLite Sync client runtime functions for configuration, filters, block-level LWW, helpers, schema changes, and networking."
category: platform
status: publish
slug: sqlite-sync-api-reference
Expand Down
2 changes: 1 addition & 1 deletion sqlite-cloud/sqlite-ai/sqlite-sync/block-lww.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,4 @@ SELECT cloudsync_set_column('docs', 'body', 'algo', 'block');
- **Mixed columns**: A table can have both regular and block-level LWW columns.
- **Transparent reads**: The base column always contains the current full text.

For API details, see the [API Reference](/docs/sqlite-sync-api-reference).
For API details, see the [Client API Reference](/docs/sqlite-sync-api-reference).
Loading
Loading