GET_SERVICES - get all numbers

URL - https://`__HUB__`/

It is required to add information about RENT to the method GET_SERVICES or create a new link with this data.

Example

return {
    countryList: [
        {
            country: "russia",
            operatorMap: {
                any: {rent: 10, ...},
                beeline: { rent: 10, ...}, 
            }
        },
        {
            country: "ukraine",
            operatorMap: {
                any: {rent: 20, ...},
                beeline: { rent: 5, ...},
            }
        }
    ],
    status: "SUCCESS"
};