@neuracore/types 11.2.0 → 11.3.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.
|
@@ -1782,6 +1782,9 @@ export interface TracesMetadataRequest {
|
|
|
1782
1782
|
* resume_points: List of timestamps where the job can be resumed.
|
|
1783
1783
|
* input_cross_embodiment_description: List of data types for the input data.
|
|
1784
1784
|
* output_cross_embodiment_description: List of data types for the output data.
|
|
1785
|
+
* deleted: True if the job is marked for deletion and its resources are
|
|
1786
|
+
* not yet removed.
|
|
1787
|
+
* deleted_at: The time the job was marked for deletion, if applicable.
|
|
1785
1788
|
*/
|
|
1786
1789
|
export interface TrainingJob {
|
|
1787
1790
|
id: string;
|
|
@@ -1825,6 +1828,8 @@ export interface TrainingJob {
|
|
|
1825
1828
|
};
|
|
1826
1829
|
};
|
|
1827
1830
|
synchronization_details: SynchronizationDetails;
|
|
1831
|
+
deleted: boolean;
|
|
1832
|
+
deleted_at: string | null;
|
|
1828
1833
|
}
|
|
1829
1834
|
/**
|
|
1830
1835
|
* Request model for starting a training job.
|