(urls: readonly string[])
| 146 | ); |
| 147 | |
| 148 | const uniqueUrls = (urls: readonly string[]): readonly string[] => [ |
| 149 | ...new Set(urls.flatMap((url) => normalizeGoogleDiscoveryUrl(url) ?? [])), |
| 150 | ]; |
| 151 | |
| 152 | const describeGoogleAuthMethods = (record: IntegrationRecord): readonly AuthMethodDescriptor[] => { |
| 153 | const config = decodeGoogleIntegrationConfig(record.config); |
no test coverage detected