remoteit-api 0.14.2

A wrapper around the Remote.it GraphQL API, also implementing the custom request signing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# Gets the list of Application Types, alternatively know as Service types which can be used it mutations to add services
# or update services. See https://link.remote.it/docs/api/application-types for further explanation of the properties

query GetApplicationTypes {
    applicationTypes {
        id
        name
        description
        port
        protocol
        proxy
    }
}