@avallon-labs/sdk 4.0.0 → 5.1.0-staging.193
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 +18 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2310,6 +2310,12 @@ type ListArtifactsParams = {
|
|
|
2310
2310
|
document_name_query?: string;
|
|
2311
2311
|
created_after?: string;
|
|
2312
2312
|
created_before?: string;
|
|
2313
|
+
/**
|
|
2314
|
+
* Filter by metadata keys using bracket notation (e.g. metadata[claim_id]=abc-123, metadata[source]=email). Multiple filters are combined with AND logic.
|
|
2315
|
+
*/
|
|
2316
|
+
metadata?: {
|
|
2317
|
+
[key: string]: string;
|
|
2318
|
+
};
|
|
2313
2319
|
};
|
|
2314
2320
|
|
|
2315
2321
|
/**
|
|
@@ -2701,6 +2707,12 @@ type ListExtractorJobsParams = {
|
|
|
2701
2707
|
* Filter jobs created before this date (ISO 8601)
|
|
2702
2708
|
*/
|
|
2703
2709
|
created_before?: string;
|
|
2710
|
+
/**
|
|
2711
|
+
* Filter by scope keys using bracket notation (e.g. scope[call_id]=abc-123, scope[email_id]=xyz-456). Multiple filters are combined with AND logic.
|
|
2712
|
+
*/
|
|
2713
|
+
scope?: {
|
|
2714
|
+
[key: string]: string;
|
|
2715
|
+
};
|
|
2704
2716
|
};
|
|
2705
2717
|
|
|
2706
2718
|
/**
|
|
@@ -2802,6 +2814,12 @@ type ListExtractsParams = {
|
|
|
2802
2814
|
extractor_id?: string;
|
|
2803
2815
|
created_after?: string;
|
|
2804
2816
|
created_before?: string;
|
|
2817
|
+
/**
|
|
2818
|
+
* Filter by scope keys using bracket notation (e.g. scope[claim_id]=abc-123). Multiple filters are combined with AND logic.
|
|
2819
|
+
*/
|
|
2820
|
+
scope?: {
|
|
2821
|
+
[key: string]: string;
|
|
2822
|
+
};
|
|
2805
2823
|
};
|
|
2806
2824
|
|
|
2807
2825
|
/**
|