@uug-ai/models 1.6.3 → 1.6.4
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 +12 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -32786,6 +32786,18 @@ export interface components {
|
|
|
32786
32786
|
* identity is Id, so RunId itself is wire-only.
|
|
32787
32787
|
*/
|
|
32788
32788
|
runId?: string;
|
|
32789
|
+
/**
|
|
32790
|
+
* @description SignedURL is a vault-signed, short-lived URL (HMAC signature + TTL) a
|
|
32791
|
+
* dispatched stage worker can use to fetch the run's media directly, instead
|
|
32792
|
+
* of constructing the request from the raw Storage credentials. It is the
|
|
32793
|
+
* signed URL the upstream pipeline already holds for the recording (the same
|
|
32794
|
+
* one carried on PipelinePayload.SignedURL), copied onto the run at the
|
|
32795
|
+
* analysis hand-off and carried on the engine→worker dispatch alongside
|
|
32796
|
+
* Storage. `bson:"-"` is load-bearing: a signed URL is credential-equivalent
|
|
32797
|
+
* and short-lived, so — like Storage — it is wire-only and never lands in the
|
|
32798
|
+
* run's persisted state; a stage dispatched after a reload fetches via Storage.
|
|
32799
|
+
*/
|
|
32800
|
+
signedUrl?: string;
|
|
32789
32801
|
/**
|
|
32790
32802
|
* @description Storage carries the credentials a dispatched stage worker needs to fetch
|
|
32791
32803
|
* the media (global Kerberos Storage plus any resolved per-recording vault
|