@junghanacs/entwurf 0.16.1 → 0.17.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.
@@ -2,8 +2,14 @@
2
2
  //
3
3
  // WHAT THIS EXISTS TO STOP. `mapPromptStopReason` used to be a bare
4
4
  // `switch` returning a StopReason with `default: return "stop"`. The ACP terminal
5
- // set is closed — `@agentclientprotocol/sdk` 1.3.0 `schema/types.gen` declares
6
- // `end_turn | max_tokens | max_turn_requests | refusal | cancelled` — so that
5
+ // set is closed — `@agentclientprotocol/sdk` 1.4.0 `dist/schema/types.gen.d.ts:3001`
6
+ // declares `end_turn | max_tokens | max_turn_requests | refusal | cancelled`, with
7
+ // no `| string` arm. Re-measured at the 1.3.0 → 1.4.0 bump rather than inherited,
8
+ // because 1.4.0 also ships a SECOND, OPEN union at `dist/v2/schema/types.gen.d.ts:3607`
9
+ // (`… | "cancelled" | string`). That one is reachable only through the
10
+ // `./experimental/v2` export; entwurf imports the BARE specifier, which the package
11
+ // `exports` map sends to `./dist/acp.js` — the closed v1 surface. The claim holds
12
+ // only while that import stays bare, so a move to the v2 export retires it — so that
7
13
  // default silently collapsed THREE distinct non-success outcomes into a clean
8
14
  // successful turn:
9
15
  //