@avallon-labs/sdk 35.5.0 → 35.7.0-staging.891
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/dist/index.d.ts +8 -0
- 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
|
/**
|
|
@@ -4475,6 +4479,10 @@ type ListWorkerRunsParams = {
|
|
|
4475
4479
|
* @minLength 1
|
|
4476
4480
|
*/
|
|
4477
4481
|
case_id?: string;
|
|
4482
|
+
/**
|
|
4483
|
+
* @minLength 1
|
|
4484
|
+
*/
|
|
4485
|
+
outcome?: string;
|
|
4478
4486
|
created_after?: string;
|
|
4479
4487
|
created_before?: string;
|
|
4480
4488
|
/**
|