@avallon-labs/sdk 14.0.0 → 14.1.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.
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2346,6 +2346,8 @@ interface WorkerRun {
|
|
|
2346
2346
|
completed_at: string | null;
|
|
2347
2347
|
/** Processing duration in milliseconds */
|
|
2348
2348
|
processing_duration_ms: number | null;
|
|
2349
|
+
/** Optional extract ID, set only if the worker run created an extract. */
|
|
2350
|
+
extract_id: string | null;
|
|
2349
2351
|
error: string | null;
|
|
2350
2352
|
}
|
|
2351
2353
|
|