chore(ui): regenerate schema.d.ts for /key/list substring_matching descriptions

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
ryan 2026-09-12 22:05:20 +00:00
parent 20787ba186
commit a3ebeae28b

View file

@ -50297,7 +50297,7 @@ export interface operations {
organization_id?: string | null;
/** @description Filter keys by key hash */
key_hash?: string | null;
/** @description Filter keys by key alias. Exact match by default; set substring_matching=true (admin only) for case-insensitive substring matching. */
/** @description Filter keys by key alias. Exact match by default; set substring_matching=true for case-insensitive substring matching. */
key_alias?: string | null;
/** @description Combined search: matches keys whose token (key hash) equals the value OR whose key_alias contains it (case-insensitive). */
search?: string | null;
@ -50321,7 +50321,7 @@ export interface operations {
access_group_id?: string | null;
/** @description Filter keys by agent ID */
agent_id?: string | null;
/** @description If true (proxy admins only), match user_id/key_alias as case-insensitive substrings instead of exact values. Defaults to false: /key/list matched these exactly before substring search was added, and an exact user_id/key_alias filter must never return another user's keys. */
/** @description If true, match key_alias (any caller) and user_id (proxy admins only) as case-insensitive substrings instead of exact values. Defaults to false: /key/list matched these exactly before substring search was added, and an exact user_id filter must never return another user's keys. */
substring_matching?: boolean;
/** @description Filter keys by expiration. 'expired' returns keys whose expires is in the past; 'active' returns keys that never expire or expire in the future. Omit to return keys regardless of expiration. */
expires?: string | null;