cyberdesk 2.2.1 → 2.2.2
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.
|
@@ -699,17 +699,11 @@ export type RunUpdate = {
|
|
|
699
699
|
input_values?: {
|
|
700
700
|
[key: string]: unknown;
|
|
701
701
|
} | null;
|
|
702
|
-
/**
|
|
703
|
-
* Arbitrary usage/billing metadata captured during a run (schema is flexible)
|
|
704
|
-
*/
|
|
705
702
|
usage_metadata?: {
|
|
706
703
|
[key: string]: unknown;
|
|
707
704
|
} | null;
|
|
708
705
|
started_at?: string | null;
|
|
709
706
|
ended_at?: string | null;
|
|
710
|
-
/**
|
|
711
|
-
* Set to True to indicate this run released the session
|
|
712
|
-
*/
|
|
713
707
|
release_session_after?: boolean | null;
|
|
714
708
|
};
|
|
715
709
|
/**
|