@avallon-labs/sdk 24.0.0-staging.599 → 24.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 +9 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2222,6 +2222,8 @@ interface Extract {
|
|
|
2222
2222
|
processor_scope: ExtractProcessorScope;
|
|
2223
2223
|
extractor_job_id: string | null;
|
|
2224
2224
|
worker_run_id: string | null;
|
|
2225
|
+
/** Case this extract is associated with, or null if it is not linked to a case. Stored normalized (trimmed and lowercased). */
|
|
2226
|
+
case_id: string | null;
|
|
2225
2227
|
result: unknown;
|
|
2226
2228
|
citations: unknown | null;
|
|
2227
2229
|
created_at: string;
|
|
@@ -2282,6 +2284,8 @@ interface ExtractSummary {
|
|
|
2282
2284
|
id: string;
|
|
2283
2285
|
extractor_job_id: string | null;
|
|
2284
2286
|
worker_run_id: string | null;
|
|
2287
|
+
/** Case this extract is associated with, or null if it is not linked to a case. Stored normalized (trimmed and lowercased). */
|
|
2288
|
+
case_id: string | null;
|
|
2285
2289
|
processor_type: string;
|
|
2286
2290
|
processor_id: string;
|
|
2287
2291
|
processor_version: number;
|
|
@@ -3718,6 +3722,11 @@ type ListExtractsParams = {
|
|
|
3718
3722
|
extractor_id?: string;
|
|
3719
3723
|
worker_run_id?: string;
|
|
3720
3724
|
worker_id?: string;
|
|
3725
|
+
/**
|
|
3726
|
+
* Filter extracts associated with a specific case (matches the dedicated `extracts.case_id` column). Values are normalized server-side (trimmed and lowercased).
|
|
3727
|
+
* @minLength 1
|
|
3728
|
+
*/
|
|
3729
|
+
case_id?: string;
|
|
3721
3730
|
created_after?: string;
|
|
3722
3731
|
created_before?: string;
|
|
3723
3732
|
/**
|