@uug-ai/models 1.4.49 → 1.4.51
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/types.d.ts +10 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -23550,7 +23550,17 @@ export interface components {
|
|
|
23550
23550
|
};
|
|
23551
23551
|
"models.FaceRedaction": {
|
|
23552
23552
|
id?: string;
|
|
23553
|
+
/**
|
|
23554
|
+
* @description Status reflects the lifecycle of the redaction job driven by the
|
|
23555
|
+
* hub-pipeline-redaction worker: "" (unsubmitted), "queued",
|
|
23556
|
+
* "processing", "completed", "failed".
|
|
23557
|
+
*/
|
|
23558
|
+
status?: string;
|
|
23559
|
+
/** @description StatusError carries the failure reason when Status == "failed". */
|
|
23560
|
+
statusError?: string;
|
|
23553
23561
|
tracks?: components["schemas"]["models.FaceRedactionTrack"][];
|
|
23562
|
+
/** @description UpdatedAt is the unix timestamp of the last status transition. */
|
|
23563
|
+
updatedAt?: number;
|
|
23554
23564
|
};
|
|
23555
23565
|
"models.FaceRedactionTrack": {
|
|
23556
23566
|
classified?: string;
|