Private/Get-CachedStore.ps1

function Get-CachedStore
{
    param
    (
        [switch]$Force
    )

    if ($Force)
    {
        $script:CachedStore = $null
    }

    Update-StoreCache
    $script:CachedStore
}