@vellumai/plugin-api 0.9.0-dev.202606172240.36dfb94 → 0.9.0-dev.202606180114.0fe4ffc
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/index.d.ts +6 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -4418,11 +4418,15 @@ declare const TraceEventSchema: z.ZodObject<{
|
|
|
4418
4418
|
* - `'trusted_contact'`: The sender is an active contact with a channel
|
|
4419
4419
|
* (not the guardian). Trusted contacts can invoke tools but require
|
|
4420
4420
|
* guardian approval for sensitive operations.
|
|
4421
|
+
* - `'unverified_contact'`: The sender matches a contact channel whose
|
|
4422
|
+
* status is `pending` or `unverified` — known to the guardian but not yet
|
|
4423
|
+
* verified. Treated identically to `trusted_contact` for every downstream
|
|
4424
|
+
* capability/tool/approval decision; the distinction is admission-only.
|
|
4421
4425
|
* - `'unknown'`: The sender has no contact record, no identity could be
|
|
4422
|
-
* established, or the sender is
|
|
4426
|
+
* established, or the sender is a blocked/revoked contact. Unknown
|
|
4423
4427
|
* actors are fail-closed with no escalation path.
|
|
4424
4428
|
*/
|
|
4425
|
-
declare type TrustClass = "guardian" | "trusted_contact" | "unknown";
|
|
4429
|
+
declare type TrustClass = "guardian" | "trusted_contact" | "unverified_contact" | "unknown";
|
|
4426
4430
|
|
|
4427
4431
|
declare type TurnProfileAutoRoutedEvent = z.infer<typeof TurnProfileAutoRoutedEventSchema>;
|
|
4428
4432
|
|
package/package.json
CHANGED