@avallon-labs/sdk 23.3.0-staging.513 → 23.4.0-staging.516
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
|
@@ -3804,6 +3804,10 @@ declare const ListWorkerRunsStatus: {
|
|
|
3804
3804
|
type ListWorkerRunsParams = {
|
|
3805
3805
|
status?: ListWorkerRunsStatus;
|
|
3806
3806
|
worker_id?: string;
|
|
3807
|
+
/**
|
|
3808
|
+
* @minLength 1
|
|
3809
|
+
*/
|
|
3810
|
+
case_id?: string;
|
|
3807
3811
|
created_after?: string;
|
|
3808
3812
|
created_before?: string;
|
|
3809
3813
|
/**
|
|
@@ -4766,6 +4770,8 @@ interface Worker {
|
|
|
4766
4770
|
id: string;
|
|
4767
4771
|
name: string;
|
|
4768
4772
|
mcp_type: "ventiv" | "klear" | "avallon" | null;
|
|
4773
|
+
/** @minimum 0 */
|
|
4774
|
+
version: number;
|
|
4769
4775
|
created_at: string;
|
|
4770
4776
|
updated_at: string;
|
|
4771
4777
|
schema: WorkerSchema;
|
|
@@ -4781,6 +4787,8 @@ interface WorkerSummary {
|
|
|
4781
4787
|
id: string;
|
|
4782
4788
|
name: string;
|
|
4783
4789
|
mcp_type: "ventiv" | "klear" | "avallon" | null;
|
|
4790
|
+
/** @minimum 0 */
|
|
4791
|
+
version: number;
|
|
4784
4792
|
created_at: string;
|
|
4785
4793
|
updated_at: string;
|
|
4786
4794
|
}
|