Import AITURK IDE 1.0.0-beta.1 from Hermes 63279301; preserve MIT license

This commit is contained in:
2026-09-05 13:26:46 +03:00
commit 03634b1ca3
11340 changed files with 3442369 additions and 0 deletions
@@ -0,0 +1,17 @@
import type { EnvVarInfo } from '@/types/hermes'
/** An unset secret in `category`. The Keys tab and the settings search both
* bucket by category and branch on `is_set`, so those are what tests vary. */
export function envVar(category: string, patch: Partial<EnvVarInfo> = {}): EnvVarInfo {
return {
advanced: false,
category,
description: '',
is_password: true,
is_set: false,
redacted_value: null,
tools: [],
url: '',
...patch
}
}