(value: string | undefined)
| 4117 | } |
| 4118 | |
| 4119 | function normalizeOptionalText(value: string | undefined): string | undefined { |
| 4120 | const normalized = value?.trim(); |
| 4121 | return normalized || undefined; |
| 4122 | } |
| 4123 | |
| 4124 | export function buildFeishuReadinessReport(input: BuildFeishuReadinessReportInput): FeishuReadinessReport { |
| 4125 | const requiredReadiness = input.requiredReadiness ?? "bot"; |
no outgoing calls
no test coverage detected