@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.
- package/README.md +2 -1
- 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
|
-
|
|
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
|
|