Skip to content

Commit b163219

Browse files
committed
fix: titles
1 parent fbe6bb2 commit b163219

32 files changed

+34
-96
lines changed

sqlite-cloud/_nav.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ const sidebarNav: SidebarNavStruct = [
1212
{ title: "Getting Started", filePath: "sqlite-sync-getting-started", type: "inner", level: 1 },
1313
{ title: "Best Practices", filePath: "sqlite-sync-best-practices", type: "inner", level: 1 },
1414
{ title: "Quick Starts", type: "inner", level: 1 },
15+
{ title: "Android", filePath: "sqlite-sync-quick-start-android", type: "inner", level: 2 },
1516
{ title: "iOS", filePath: "sqlite-sync-quick-start-ios", type: "inner", level: 2 },
16-
{ title: "Android", filePath: "sqlite-sync-quick-start-android", type: "inner", level: 2 },
1717
{ title: "Linux", filePath: "sqlite-sync-quick-start-linux", type: "inner", level: 2 },
18-
{ title: "macOS", filePath: "sqlite-sync-quick-start-macos", type: "inner", level: 2 },
19-
{ title: "React Native Expo", filePath: "sqlite-sync-quick-start-react-native-expo", type: "inner", level: 2 },
18+
{ title: "macOS", filePath: "sqlite-sync-quick-start-macos", type: "inner", level: 2 },
19+
{ title: "React Native Expo", filePath: "sqlite-sync-quick-start-expo", type: "inner", level: 2 },
2020
{ title: "WASM", filePath: "sqlite-sync-quick-start-wasm", type: "inner", level: 2 },
2121
{ title: "Windows", filePath: "sqlite-sync-quick-start-windows", type: "inner", level: 2 },
2222
{ title: "API Reference", type: "inner", level: 1 },

sqlite-cloud/sqlite-ai/sqlite-sync/api-reference/cloudsync_begin_alter.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
---
2-
title: SQLite-Sync API Reference - cloudsync_begin_alter
2+
title: "cloudsync_begin_alter(table_name)"
33
description: SQLite Sync is a multi-platform extension that brings a true local-first experience to your applications with minimal effort.
44
category: platform
55
status: publish
66
slug: sqlite-sync-api-cloudsync-begin-alter
77
---
88

9-
### `cloudsync_begin_alter(table_name)`
10-
119
**Description:** Prepares a synchronized table for schema changes. This function must be called before altering the table. Failure to use `cloudsync_begin_alter` and `cloudsync_commit_alter` can lead to synchronization errors and data divergence.
1210

1311
**Parameters:**

sqlite-cloud/sqlite-ai/sqlite-sync/api-reference/cloudsync_cleanup.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
---
2-
title: SQLite-Sync API Reference - cloudsync_cleanup
2+
title: "cloudsync_cleanup(table_name)"
33
description: SQLite Sync is a multi-platform extension that brings a true local-first experience to your applications with minimal effort.
44
category: platform
55
status: publish
66
slug: sqlite-sync-api-cloudsync-cleanup
77
---
88

9-
### `cloudsync_cleanup(table_name)`
10-
119
**Description:** Removes the `sqlite-sync` synchronization mechanism from a specified table or all tables. This operation drops the associated `_cloudsync` metadata table and removes triggers from the target table(s). Use this function when synchronization is no longer desired for a table.
1210

1311
**Parameters:**

sqlite-cloud/sqlite-ai/sqlite-sync/api-reference/cloudsync_commit_alter.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
---
2-
title: SQLite-Sync API Reference - cloudsync_commit_alter
2+
title: "cloudsync_commit_alter(table_name)"
33
description: SQLite Sync is a multi-platform extension that brings a true local-first experience to your applications with minimal effort.
44
category: platform
55
status: publish
66
slug: sqlite-sync-api-cloudsync-commit-alter
77
---
88

9-
### `cloudsync_commit_alter(table_name)`
10-
119
**Description:** Finalizes schema changes for a synchronized table. This function must be called after altering the table's schema, completing the process initiated by `cloudsync_begin_alter` and ensuring CRDT data consistency.
1210

1311
**Parameters:**

sqlite-cloud/sqlite-ai/sqlite-sync/api-reference/cloudsync_db_version.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
---
2-
title: SQLite-Sync API Reference - cloudsync_db_version
2+
title: "cloudsync_db_version()"
33
description: SQLite Sync is a multi-platform extension that brings a true local-first experience to your applications with minimal effort.
44
category: platform
55
status: publish
66
slug: sqlite-sync-api-cloudsync-db-version
77
---
88

9-
### `cloudsync_db_version()`
10-
119
**Description:** Returns the current database version.
1210

1311
**Parameters:** None.

sqlite-cloud/sqlite-ai/sqlite-sync/api-reference/cloudsync_disable.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
---
2-
title: SQLite-Sync API Reference - cloudsync_disable
2+
title: "cloudsync_disable(table_name)"
33
description: SQLite Sync is a multi-platform extension that brings a true local-first experience to your applications with minimal effort.
44
category: platform
55
status: publish
66
slug: sqlite-sync-api-cloudsync-disable
77
---
88

9-
### `cloudsync_disable(table_name)`
10-
119
**Description:** Disables synchronization for the specified table.
1210

1311
**Parameters:**

sqlite-cloud/sqlite-ai/sqlite-sync/api-reference/cloudsync_enable.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
---
2-
title: SQLite-Sync API Reference - cloudsync_enable
2+
title: "cloudsync_enable(table_name)"
33
description: SQLite Sync is a multi-platform extension that brings a true local-first experience to your applications with minimal effort.
44
category: platform
55
status: publish
66
slug: sqlite-sync-api-cloudsync-enable
77
---
88

9-
### `cloudsync_enable(table_name)`
10-
119
**Description:** Enables synchronization for the specified table.
1210

1311
**Parameters:**

sqlite-cloud/sqlite-ai/sqlite-sync/api-reference/cloudsync_init.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
---
2-
title: SQLite-Sync API Reference - cloudsync_init
2+
title: "cloudsync_init(table_name, [crdt_algo], [force])"
33
description: SQLite Sync is a multi-platform extension that brings a true local-first experience to your applications with minimal effort.
44
category: platform
55
status: publish
66
slug: sqlite-sync-api-cloudsync-init
77
---
88

9-
### `cloudsync_init(table_name, [crdt_algo], [force])`
10-
119
**Description:** Initializes a table for `sqlite-sync` synchronization. This function is idempotent and needs to be called only once per table on each site; configurations are stored in the database and automatically loaded with the extension.
1210

1311
Before initialization, `cloudsync_init` performs schema sanity checks to ensure compatibility with CRDT requirements and best practices. These checks include:

sqlite-cloud/sqlite-ai/sqlite-sync/api-reference/cloudsync_is_enabled.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
---
2-
title: SQLite-Sync API Reference - cloudsync_is_enabled
2+
title: "cloudsync_is_enabled(table_name)"
33
description: SQLite Sync is a multi-platform extension that brings a true local-first experience to your applications with minimal effort.
44
category: platform
55
status: publish
66
slug: sqlite-sync-api-cloudsync-is-enabled
77
---
88

9-
### `cloudsync_is_enabled(table_name)`
10-
119
**Description:** Checks if synchronization is enabled for the specified table.
1210

1311
**Parameters:**

sqlite-cloud/sqlite-ai/sqlite-sync/api-reference/cloudsync_network_check_changes.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
---
2-
title: SQLite-Sync API Reference - cloudsync_network_check_changes
2+
title: "cloudsync_network_check_changes()"
33
description: SQLite Sync is a multi-platform extension that brings a true local-first experience to your applications with minimal effort.
44
category: platform
55
status: publish
66
slug: sqlite-sync-api-cloudsync-network-check-changes
77
---
88

9-
### `cloudsync_network_check_changes()`
10-
119
**Description:** Checks the remote server for new changes and applies them to the local database.
1210

1311
If a package of new changes is already available for the local site, the server returns it immediately, and the changes are applied. If no package is ready, the server returns an empty response and starts an asynchronous process to prepare a new package. This new package can be retrieved with a subsequent call to this function.

0 commit comments

Comments
 (0)