(binding: Row)
| 362 | typeof value === "object" && value !== null && !Array.isArray(value); |
| 363 | |
| 364 | const sourceKeyForBinding = (binding: Row): string => |
| 365 | migrationSourceKey( |
| 366 | binding.source_scope_id == null ? String(binding.scope_id) : String(binding.source_scope_id), |
| 367 | String(binding.source_id), |
| 368 | ); |
| 369 | |
| 370 | const mcpOAuthEndpoint = (config: MigratedSourceConfig | undefined): string | null => { |
| 371 | const value = config?.config; |
no test coverage detected