(headerValue: string | null)
| 44 | 'kiloclaw-embedding', |
| 45 | 'openclaw-embedding', |
| 46 | 'gastown', |
| 47 | 'mobile-voice-input', |
| 48 | 'tool-summary-translation', |
| 49 | ] as const; |
| 50 | |
| 51 | const featureSchema = z.enum(FEATURE_VALUES); |
| 52 | |
| 53 | export type FeatureValue = z.infer<typeof featureSchema>; |