@tagit/ai-client-core 1.4.0-beta.40.1 → 1.4.0-beta.41.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/README.md +2 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -365,9 +365,10 @@ await client.sendMessage('Hello', {
365
365
  | `useCaseId` | `string` | Use case currently bound to the conversation. | `uc-default-1lji40` |
366
366
  | `workflowId` | `string \| undefined` | Latest workflow run id returned by a V2 workflow use case. | `wf_123` |
367
367
  | `workflowStatus` | `string \| undefined` | Latest workflow status returned by the orchestrator. | `completed` |
368
+ | `workflowRevision` | `number \| undefined` | Latest workflow revision used for safe checkpoint continuation. | `2` |
368
369
  | `checkpointPrompt` | `string \| undefined` | Latest checkpoint prompt returned by a workflow use case. | `Review before continuing?` |
369
370
 
370
- Checkpoint action UI is not included in the beta React widget. Consumers can inspect workflow metadata from state/events and add explicit continue/revise/cancel controls in a later integration.
371
+ Custom clients can continue a checkpoint with `workflowId`, `checkpointAction`, and the latest `workflowRevision` as `expectedRevision`. React applications can use `AIActionClient` from `@tagit/ai-client-react`, which renders and resumes forced or adaptive checkpoints without application-specific workflow branching.
371
372
 
372
373
  ## Client Events
373
374
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tagit/ai-client-core",
3
- "version": "1.4.0-beta.40.1",
3
+ "version": "1.4.0-beta.41.1",
4
4
  "description": "Headless TypeScript client core for TagIt AI orchestrator",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",