@athenaintel/react 0.11.3 → 0.12.0

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.
@@ -5,8 +5,11 @@ export declare const ATHENA_TRANSPORTS: {
5
5
  /** Chat transport mode: `legacy` (Iris `/api/chat` assistant-transport) or
6
6
  * `statewire` (Iris `/v2/threads` deep-agent statewire sync). */
7
7
  export type AthenaTransport = (typeof ATHENA_TRANSPORTS)[keyof typeof ATHENA_TRANSPORTS];
8
- /** Consumers opt in to statewire explicitly; the default stays legacy until
9
- * statewire has been validated live across SDK hosts. */
8
+ /** Statewire is the default as of 0.12.0: it is the maintained transport
9
+ * (server-hosted threads, mid-run queueing, HITL, client tools for
10
+ * recognized SDK hosts) and was validated live across SDK hosts on
11
+ * 2026-08-27. Pass `transport: 'legacy'` to opt a deployment back out;
12
+ * note that threads created on one transport are read-only from the other. */
10
13
  export declare const DEFAULT_ATHENA_TRANSPORT: AthenaTransport;
11
14
  export interface ResolvedAthenaTransport {
12
15
  transport: AthenaTransport;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@athenaintel/react",
3
- "version": "0.11.3",
3
+ "version": "0.12.0",
4
4
  "description": "Athena React SDK — Build AI-powered chat applications with the Athena platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",