@avallon-labs/sdk 35.5.0 → 35.6.0-staging.890

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/dist/index.d.ts +4 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -3205,6 +3205,10 @@ interface WorkerRun {
3205
3205
  /** Optional extract ID, set only if the worker run created an extract. */
3206
3206
  extract_id: string | null;
3207
3207
  error: string | null;
3208
+ /** Use-case-specific business outcome reported by the worker. Null when the run predates outcome tracking or never executed to completion. */
3209
+ outcome: string | null;
3210
+ /** Worker-authored explanation of the outcome. May contain case content. */
3211
+ outcome_reason: string | null;
3208
3212
  }
3209
3213
 
3210
3214
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@avallon-labs/sdk",
3
- "version": "35.5.0",
3
+ "version": "35.6.0-staging.890",
4
4
  "description": "Avallon API SDK - generated from OpenAPI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",