Types/OpenPackage/get_XRPC.ps1

<#
.SYNOPSIS
    Gets package xrpc
.DESCRIPTION
    Gets any xrpc parts within the package.
#>

if (-not $this.GetParts) { return }
foreach ($part in $this.GetParts()) {
    if (
        $part.Uri -notmatch '/xrpc' -or
        $part.Uri -notlike '*.*.*'
    ) {
        continue
    }
    $part    
}