latticesql 2.0.0 → 2.1.1

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
@@ -24,6 +24,8 @@ Every AI agent session starts cold — no memory of what happened yesterday, wha
24
24
 
25
25
  Lattice has no opinions about your schema, your agents, or your file format. You define the tables. You control the rendering. Lattice runs the sync loop.
26
26
 
27
+ **New in 2.1:** the GUI search box now asks the **assistant** (it answers using a full-text `search` tool) instead of running a plain text match; the assistant gains a **guarded, reversible `delete_entity`** (empty tables go immediately, non-empty tables ask what to do with the data first); new chat threads are named from a short AI summary; ingest failures are surfaced loudly instead of swallowed; and the activity feed, voice-note composer, upload timer, and live counts get a round of fixes. See [docs/assistant.md](docs/assistant.md).
28
+
27
29
  **New in 1.16:** the `.lattice` workspace model + auto-render, full-text search, sources/references, a workspace dashboard, a **multiplayer cloud-editing** experience (live share/de-share, "last edited by", change-flash + counts, and an offline edit queue that replays on reconnect), and a much richer **Data Model editor** in the GUI — a force-directed schema graph, bidirectional many-to-many links, and a soft-delete model where every schema change (create/rename/delete a table, column, or link) is tracked in version history and **reversible** (deletes never destroy data; revert restores it), with session-scoped undo/redo. All with no AI dependency. See [docs/workspaces.md](docs/workspaces.md) and [docs/collaboration.md](docs/collaboration.md). The AI assistant, chat, and ingest summarization are exclusive to the 2.0 line (2.0 = the 1.16 feature set plus that AI layer).
28
30
 
29
31
  ---
@@ -2117,7 +2119,11 @@ Postgres URL with no root.
2117
2119
  ### Assistant sidebar (v2.0+)
2118
2120
 
2119
2121
  The GUI has a fixed right sidebar with a live **activity feed** — every change
2120
- (yours, the assistant's, or an ingest) streams in as it happens.
2122
+ (yours, the assistant's, or an ingest) streams in as it happens, collapsed by
2123
+ type so a bulk run shows a single card ("Deleted 19 tables", "Removed 49 rows
2124
+ across 9 tables") instead of a wall of near-identical rows. The feed is scoped to
2125
+ the open conversation: the assistant's data changes are saved with each turn and
2126
+ replayed as those cards when you reopen the chat. When the assistant references a record, it emits an inline object-link pill — a clickable chip that opens that row in the mode-aware navigator.
2121
2127
 
2122
2128
  Add a Claude API token in **User Settings → Assistant** (or set
2123
2129
  `ANTHROPIC_API_KEY`) to enable the **AI assistant**: ask questions about your
@@ -2370,7 +2376,7 @@ The full architecture, schema, and HTTP surface live in [docs/teams.md](./docs/t
2370
2376
  Lattice Teams + the GUI's Database panel now flow through a state machine:
2371
2377
 
2372
2378
  ```
2373
- LOCAL → CLOUD WORKSPACE (owner | member | needs-invite)
2379
+ LOCAL → CLOUD WORKSPACE (owner | member)
2374
2380
  (migrate / connect)
2375
2381
  ```
2376
2382
 
@@ -2436,7 +2442,7 @@ HTTP surface (all under `/api/dbconfig/*`, localhost-only, same auth model as th
2436
2442
  | POST | `/api/dbconfig/connect-existing` | `TeamsClient.connectToExistingCloud` |
2437
2443
  | POST | `/api/dbconfig/save` / `connect` / `test` | unchanged from v1.12 |
2438
2444
 
2439
- The `state` field on `GET /api/dbconfig` is one of: `local`, `team-cloud-creator`, `team-cloud-member`, `team-cloud-needs-invite` (the `cloud-connected` state was removed in 1.16.3). The SPA badge color-codes them (labeled "CLOUD · OWNER / MEMBER / NEEDS INVITE"); the routes use them only for response shape.
2445
+ The `state` field on `GET /api/dbconfig` is one of: `local`, `team-cloud-creator`, `team-cloud-member` (the `cloud-connected` state was removed in 1.16.3; the `team-cloud-needs-invite` state was removed in 2.1.1 — a connected cloud is always a member workspace). The SPA badge color-codes them (labeled "CLOUD · OWNER / MEMBER"); the routes use them only for response shape.
2440
2446
 
2441
2447
  ---
2442
2448