(value: Record<string, unknown>, key: string)
| 9848 | } |
| 9849 | |
| 9850 | function readFeishuMetadataString(value: Record<string, unknown>, key: string): string | undefined { |
| 9851 | const candidate = value[key]; |
| 9852 | return typeof candidate === "string" && candidate.trim() ? candidate.trim() : undefined; |
| 9853 | } |
| 9854 | |
| 9855 | function buildFeishuReadinessIssues(input: { |
| 9856 | integration: ExternalIntegrationRecord; |
no outgoing calls
no test coverage detected