car-runtime 0.8.1 → 0.8.2

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/index.d.ts +6 -4
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1515,10 +1515,12 @@ export function agentsInvokeExternal(
1515
1515
 
1516
1516
  // --- A2UI surface store (car-a2ui) ---
1517
1517
  //
1518
- // NOTE: NAPI-rs converts `a2ui_*` snake-case Rust names to `a2Ui*`
1519
- // camelCase at the JS boundary because the digit→letter transition
1520
- // after `a2` is treated as a word boundary by heck's casing rules.
1521
- // Names below match the actual runtime exports.
1518
+ // NOTE: Rust source names these `a2_ui_*` (extra underscore before
1519
+ // `ui`) so napi-rs's heck casing converter produces `a2Ui*` *by
1520
+ // construction* matching the declarations below. Earlier
1521
+ // `a2ui_*` Rust names also happened to camelCase to `a2Ui*` because
1522
+ // heck split at the digit→letter boundary, but that was accidental
1523
+ // drift; Parslee-ai/car#177 made it deliberate.
1522
1524
 
1523
1525
  /**
1524
1526
  * Process-singleton in-process A2UI v0.9 surface store. Wire shapes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "car-runtime",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "description": "Common Agent Runtime — a deterministic execution layer for AI agents",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",