Type Alias: AdaptersFile
Makaio Framework / contracts/config / AdaptersFile
Type Alias: AdaptersFile
Section titled “Type Alias: AdaptersFile”AdaptersFile =
z.infer<typeofAdaptersFileSchema>
Defined in: ../../../packages/contracts/src/config/adapters-file.ts:34
Type Composition
Section titled “Type Composition”AdaptersFilez.infer<typeof AdaptersFileSchema>typeof AdaptersFileSchema
Resolved Shape
Section titled “Resolved Shape”type AdaptersFile = { $schema: 'makaio/adapters-config/v1'; adapters: Record<string, { providers: Record<string, { name?: string | undefined; providerId?: string | undefined; credentials?: Record<string, string & z.core.$brand<'CredentialRef'>> | undefined; baseUrl?: string | undefined; isDefault?: boolean | undefined; enabled?: boolean | undefined; modelFilterMode?: 'allowlist' | 'show-all' | undefined; modelVisibility?: Record<string, 'disabled' | 'enabled' | 'visible'> | undefined; }>; }>;};