Library
Module
Module type
Parameter
Class
Class type
module Env : Github_s.Env
module Time : Github_s.Time
module CL : Cohttp_lwt.S.Client
exception Message of Cohttp.Code.status_code * Github_t.message
Message
may be raised by any API call when the GitHub service returns an unexpected response code. Typical reasons for this exception are insufficient permissions or missing resources.
module Response : sig ... end
Functions corresponding to direct API requests return Response.t
values inside of Monad.t
values so that more information about the request can be made available. Monad.(>>~)
is a convenience operator that lets you bind directly to the carried value.
module Monad : sig ... end
All API requests are bound through this monad which encapsulates an Lwt cooperative thread and includes some state which may be set via API
functions.
module Endpoint : sig ... end
Each request to GitHub is made to a specific Endpoint
in GitHub's REST-like API.
module Stream : sig ... end
The Stream
module provides an abstraction to GitHub's paginated endpoints. Stream creation does not initiate any network activity. When requests are made, results are buffered internally. Streams are not mutable.
rate
is a type used to indicate which rate-limiting regime is to be used for query quota accounting. rate
is used by the function in API
.
Some results may require 2-factor authentication. Result
values do not. Two_factor
values contain the mode by which a 2FA code will be delivered. This code is required as ?otp
to a subsequent invocation of the function which returns this type.
type +'a parse = string -> 'a Lwt.t
'a parse
is the type of functions which extract meaningful values from GitHub responses.
type 'a handler = ((Cohttp.Response.t * string) -> bool) * 'a
'a handler
is the type of response handlers which consist of an activation predicate (fst) and a parse function (snd).
log_active
regulates debug messages. It is true
by default when the environment variable GITHUB_DEBUG
is set to 1.
module Scope : sig ... end
The Scope
module abstracts GitHub's authorization scopes.
module Token : sig ... end
The Token
module manipulates authorization tokens. GitHub has two types of tokens: OAuth application tokens and "personal tokens".
module API : sig ... end
The API
module contains functionality that relates to the entirety of the GitHub API and these bindings. In particular, this module contains:
module URI : sig ... end
The URI
module contains URI generation functions which may be useful for linking on the Web or passing to other GitHub API clients.
module Filter : sig ... end
The Filter
module contains types used by search and enumeration interfaces which describe ways to perform result filtering directly in the GitHub API.
module Rate_limit : sig ... end
The Rate_limit
module contains explicit rate limit API request functions which do not read the rate limit cache but do write to it.
module User : sig ... end
The User
module provides basic user information query functions.
module Organization : sig ... end
The Organization
module exposes the functionality of the GitHub organization API.
module Repo : sig ... end
The Repo
module offers the functionality of GitHub's repository API.
module Stats : sig ... end
The Stats
module exposes the functionality of GitHub's repository statistics API which provides historical data regarding the aggregate behavior of a repository.
module Status : sig ... end
The Status
module provides the functionality of GitHub's status API.
module Pull : sig ... end
The Pull
module contains functionality relating to GitHub's pull request API.
module Label : sig ... end
The Label
module exposes Github's labels API.
module Collaborator : sig ... end
The Collaborator
module exposes Github's collaborators API.
module Milestone : sig ... end
The Milestone
module exposes GitHub's milestone API.
module Release : sig ... end
The Release
module provides access to GitHub's release API features.
module Deploy_key : sig ... end
The Deploy_key
module provides the means to manage per-repository deploy keys.
module Check : sig ... end
The Check
module exposes Github's checks API.
module Search : sig ... end
The Search
module exposes GitHub's search interfaces.
module Git_obj : sig ... end
The Git_obj
module contains utility functions for working with git concepts.