uvm_live_platform 0.8.1

Methods to connect to the unity live platform service.
Documentation
query ListVersionsQuery(
    $architecture: [UnityReleaseDownloadArchitecture!]
    $platform: [UnityReleaseDownloadPlatform!]
    $limit: Int = 10
    $skip: Int = 0
    $stream: [UnityReleaseStream!]
    $entitlements: [UnityReleaseEntitlement!]
    $version: String
) {
    getUnityReleases(
        architecture: $architecture
        platform: $platform
        skip: $skip
        limit: $limit
        stream: $stream
        entitlements: $entitlements
        version: $version
    ) {
        edges {
            node {
                version
                shortRevision
            }
        }
        pageInfo {
            hasNextPage
            hasPreviousPage
        }
        totalCount
    }
}