( session: ResolvedAuthSession | null | undefined, )
| 8 | } from '../../utils/commandAvailability.js' |
| 9 | |
| 10 | export function hasRemoteEnvCommandSession( |
| 11 | session: ResolvedAuthSession | null | undefined, |
| 12 | ): boolean { |
| 13 | return Boolean(session && hasManagedRemoteCommandPrincipal(session)) |
| 14 | } |
| 15 | |
| 16 | export function isCostCommandAuthHiddenForContext(params: { |
| 17 | isInternalBuild: boolean |
no test coverage detected