remoteit-api 0.14.2

A wrapper around the Remote.it GraphQL API, also implementing the custom request signing.
Documentation
query GetFiles($orgId: String) {
    login {
        account(id: $orgId) {
            files {
                owner {
                    email
                    id
                }
                id
                name
                shortDesc
                longDesc
                executable
                created
                updated
                versions {
                    items {
                        id
                        created
                        arguments {
                            id
                            argumentType
                            created
                            desc
                            name
                            options
                            order
                        }
                        file {
                            id
                        }
                    }
                }
            }
        }
    }
}