@usabledev/usable-chat 1.204.3 → 1.205.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.
Files changed (2) hide show
  1. package/cli.js +6 -2
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -161885,7 +161885,11 @@ var init_schema_embed_keys = __esm({
161885
161885
  /** Total usage count */
161886
161886
  usageCount: integer2("usage_count").notNull().default(0),
161887
161887
  /** Encrypted Usable PAT for auth-free embed mode (AES-256-GCM) */
161888
- usablePatEncrypted: text2("usable_pat_encrypted")
161888
+ usablePatEncrypted: text2("usable_pat_encrypted"),
161889
+ /** Safe PAT metadata; never contains the PAT secret or ciphertext */
161890
+ usablePatMetadata: jsonb("usable_pat_metadata").$type(),
161891
+ /** Monotonic CAS version for the encrypted PAT + metadata pair. */
161892
+ usablePatStateVersion: integer2("usable_pat_state_version").notNull().default(0)
161889
161893
  },
161890
161894
  (table) => ({
161891
161895
  tokenIdx: index("embed_keys_token_idx").on(table.token),
@@ -359371,7 +359375,7 @@ init_tui_select();
359371
359375
  init_model_registry();
359372
359376
 
359373
359377
  // package.json
359374
- var version2 = "1.204.3";
359378
+ var version2 = "1.205.1";
359375
359379
 
359376
359380
  // src/adapters/cli/model-catalog.ts
359377
359381
  init_codex_auth();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@usabledev/usable-chat",
3
- "version": "1.204.3",
3
+ "version": "1.205.1",
4
4
  "description": "usable-chat — terminal harness for usable-chat (headless + TUI)",
5
5
  "type": "module",
6
6
  "bin": {