(config: unknown)
| 35 | * @returns `{success: true, data: <interpolated config>}` if successful, `{success: false, error: <error>}` otherwise |
| 36 | */ |
| 37 | export function parseConfig(config: unknown): ValidationResult<Config> { |
| 38 | return configSchema.safeParse(config); |
| 39 | } |
| 40 | |
| 41 | const secretNamePattern = /^[A-Z][A-Z0-9_]*$/; |
| 42 | export const secretNameSchema = z |
no outgoing calls
no test coverage detected