package github-data

  1. Overview
  2. Docs
type update_gist = {
  1. update_gist_description : string;
  2. update_gist_files : (string * update_gist) list;
}
type wiki_page_action = [
  1. | `Created
  2. | `Edited
  3. | `Unknown of string
]
type wiki_page = {
  1. wiki_page_name : string;
  2. wiki_page_title : string;
  3. wiki_page_action : wiki_page_action;
  4. wiki_page_sha : string;
  5. wiki_page_html_url : string;
}
type bool_as_string = bool
type web_hook_config = {
  1. web_hook_config_url : string;
  2. web_hook_config_content_type : string option;
  3. web_hook_config_insecure_ssl : bool_as_string;
  4. web_hook_config_secret : string option;
}
type watch_action = [
  1. | `Started
  2. | `Unknown of string
]
type watch_event = {
  1. watch_event_action : watch_action;
}
type user_type = [
  1. | `User
  2. | `Org
]
type user_info = {
  1. user_info_name : string option;
  2. user_info_company : string option;
  3. user_info_blog : string option;
  4. user_info_location : string option;
  5. user_info_email : string option;
  6. user_info_hireable : bool;
  7. user_info_bio : string;
  8. user_info_public_repos : int;
  9. user_info_public_gists : int;
  10. user_info_followers : int;
  11. user_info_following : int;
  12. user_info_created_at : string;
  13. user_info_updated_at : string;
  14. user_info_html_url : string;
  15. user_info_login : string;
  16. user_info_id : Stdlib.Int64.t;
  17. user_info_url : string;
  18. user_info_avatar_url : string option;
  19. user_info_ty : user_type;
}
type user = {
  1. user_login : string;
  2. user_id : Stdlib.Int64.t;
  3. user_url : string;
  4. user_avatar_url : string option;
  5. user_ty : user_type;
}
type update_release = {
  1. update_release_tag_name : string option;
  2. update_release_target_commitish : string option;
  3. update_release_name : string option;
  4. update_release_body : string option;
  5. update_release_draft : bool option;
  6. update_release_prerelease : bool option;
}
type state = [
  1. | `Open
  2. | `Closed
]
type update_pull = {
  1. update_pull_title : string option;
  2. update_pull_body : string option;
  3. update_pull_state : state option;
  4. update_pull_base : string option;
}
type update_milestone = {
  1. update_milestone_title : string option;
  2. update_milestone_state : state option;
  3. update_milestone_description : string option;
  4. update_milestone_due_on : string option;
}
type update_issue = {
  1. update_issue_title : string option;
  2. update_issue_body : string option;
  3. update_issue_state : state option;
  4. update_issue_assignee : string option;
  5. update_issue_milestone : int option;
  6. update_issue_labels : string list option;
}
type t = Yojson.Safe.t
type hook_config = [
  1. | `Web of web_hook_config
  2. | `Unknown of string * t option
]
type event_type = [
  1. | `CommitComment
  2. | `Create
  3. | `Delete
  4. | `Deployment
  5. | `DeploymentStatus
  6. | `Download
  7. | `Follow
  8. | `Fork
  9. | `ForkApply
  10. | `Gist
  11. | `Gollum
  12. | `IssueComment
  13. | `Issues
  14. | `Member
  15. | `PageBuild
  16. | `Public
  17. | `PullRequest
  18. | `PullRequestReviewComment
  19. | `Push
  20. | `Release
  21. | `Repository
  22. | `Status
  23. | `TeamAdd
  24. | `Watch
  25. | `All
  26. | `Unknown of string
]
type update_hook = {
  1. update_hook_config : hook_config;
  2. update_hook_events : event_type list option;
  3. update_hook_active : bool;
}
type update_gist_file = {
  1. update_gist_file_content : string option;
  2. update_gist_file_name : string option;
}
type pull_ref = {
  1. pull_ref_url : string;
  2. pull_ref_html_url : string;
  3. pull_ref_diff_url : string;
  4. pull_ref_patch_url : string;
}
type milestone = {
  1. milestone_url : string;
  2. milestone_number : int;
  3. milestone_state : state;
  4. milestone_description : string;
  5. milestone_creator : user option;
  6. milestone_open_issues : int;
  7. milestone_closed_issues : int;
  8. milestone_created_at : string;
  9. milestone_due_on : string option;
  10. milestone_title : string;
}
type label = {
  1. label_url : string;
  2. label_name : string;
  3. label_color : string;
}
type issue_sort = [
  1. | `Created
  2. | `Updated
  3. | `Comments
  4. | `Unknown of string
]
type direction = [
  1. | `Asc
  2. | `Desc
]
type issue = {
  1. issue_url : string;
  2. issue_html_url : string;
  3. issue_number : int;
  4. issue_state : state;
  5. issue_title : string;
  6. issue_body : string;
  7. issue_user : user;
  8. issue_labels : label list;
  9. issue_comments : int;
  10. issue_created_at : string;
  11. issue_updated_at : string;
  12. issue_closed_at : string option;
  13. issue_milestone : milestone option;
  14. issue_sort : issue_sort;
  15. issue_direction : direction;
  16. issue_mentioned : string list option;
  17. issue_pull_request : pull_ref option;
}
type timeline_source = {
  1. timeline_source_id : int option;
  2. timeline_source_url : string option;
  3. timeline_source_actor : user option;
  4. timeline_source_issue : issue option;
}
type timeline_action = [
  1. | `Assigned
  2. | `Closed
  3. | `Commented
  4. | `Committed
  5. | `Cross_referenced
  6. | `Demilestoned
  7. | `Head_ref_deleted
  8. | `Head_ref_restored
  9. | `Labeled
  10. | `Locked
  11. | `Mentioned
  12. | `Merged
  13. | `Milestoned
  14. | `Referenced
  15. | `Renamed
  16. | `Reopened
  17. | `Review_dismissed
  18. | `Review_requested
  19. | `Review_request_removed
  20. | `Subscribed
  21. | `Unassigned
  22. | `Unlabeled
  23. | `Unlocked
  24. | `Unsubscribed
]
type milestone_reference = {
  1. milestone_reference_title : string;
}
type issue_rename = {
  1. issue_rename_from : string;
  2. issue_rename_to : string;
}
type base_label = {
  1. base_label_name : string;
  2. base_label_color : string;
}
type timeline_event = {
  1. timeline_event_id : int option;
  2. timeline_event_url : string option;
  3. timeline_event_actor : user option;
  4. timeline_event_commit_id : string option;
  5. timeline_event_event : timeline_action;
  6. timeline_event_created_at : string;
  7. timeline_event_label : base_label option;
  8. timeline_event_assignee : user option;
  9. timeline_event_milestone : milestone_reference option;
  10. timeline_event_source : timeline_source option;
  11. timeline_event_rename : issue_rename option;
}
type timeline_events = timeline_event list
type change = {
  1. change_from : string;
}
type ticket_changes = {
  1. ticket_changes_title : change option;
  2. ticket_changes_body : change option;
}
type team = {
  1. team_url : string;
  2. team_name : string;
  3. team_id : Stdlib.Int64.t;
}
type teams = team list
type team_permission = [
  1. | `Pull
  2. | `Push
  3. | `Admin
  4. | `Unknown of string
]
type org = {
  1. org_login : string;
  2. org_id : Stdlib.Int64.t;
  3. org_url : string;
  4. org_ty : user_type;
  5. org_avatar_url : string option;
}
type team_info = {
  1. team_info_permission : team_permission;
  2. team_info_members_count : int;
  3. team_info_repos_count : int;
  4. team_info_organization : org;
  5. team_info_url : string;
  6. team_info_name : string;
  7. team_info_id : Stdlib.Int64.t;
}
type team_infos = team_info list
type team_add_info = {
  1. team_add_info_slug : string;
  2. team_add_info_permission : team_permission;
  3. team_add_info_members_url : string;
  4. team_add_info_repositories_url : string;
  5. team_add_info_url : string;
  6. team_add_info_name : string;
  7. team_add_info_id : Stdlib.Int64.t;
}
type repository_permissions = {
  1. repository_permissions_admin : bool;
  2. repository_permissions_push : bool;
  3. repository_permissions_pull : bool;
}
type repository = {
  1. repository_owner : user;
  2. repository_full_name : string;
  3. repository_description : string option;
  4. repository_private : bool;
  5. repository_fork : bool;
  6. repository_html_url : string;
  7. repository_clone_url : string;
  8. repository_git_url : string;
  9. repository_ssh_url : string;
  10. repository_svn_url : string;
  11. repository_mirror_url : string option;
  12. repository_homepage : string;
  13. repository_language : string option;
  14. repository_forks_count : int;
  15. repository_subscribers_count : int option;
  16. repository_stargazers_count : int;
  17. repository_size : int;
  18. repository_default_branch : string option;
  19. repository_open_issues_count : int;
  20. repository_pushed_at : string option;
  21. repository_created_at : string;
  22. repository_updated_at : string;
  23. repository_organization : user option;
  24. repository_has_issues : bool;
  25. repository_has_wiki : bool;
  26. repository_has_downloads : bool;
  27. repository_has_pages : bool;
  28. repository_permissions : repository_permissions option;
  29. repository_id : Stdlib.Int64.t;
  30. repository_name : string;
  31. repository_url : string;
}
type team_add_event = {
  1. team_add_event_team : team_add_info option;
  2. team_add_event_user : user option;
  3. team_add_event_repository : repository option;
  4. team_add_event_organization : org;
}
type obj_type = [
  1. | `Blob
  2. | `Tree
  3. | `Commit
  4. | `Tag
]
type obj = {
  1. obj_ty : obj_type;
  2. obj_sha : string;
  3. obj_url : string;
}
type info = {
  1. info_date : string;
  2. info_email : string;
  3. info_name : string;
}
type tag = {
  1. tag_obj : obj;
  2. tag_url : string;
  3. tag_sha : string;
  4. tag_tag : string;
  5. tag_message : string;
  6. tag_tagger : info;
}
type status_state = [
  1. | `Pending
  2. | `Success
  3. | `Failure
  4. | `Error
  5. | `Unknown of string
]
type status = {
  1. status_creator : user;
  2. status_url : string;
  3. status_updated_at : string;
  4. status_created_at : string;
  5. status_id : Stdlib.Int64.t;
  6. status_state : status_state;
  7. status_target_url : string option;
  8. status_description : string option;
  9. status_context : string option;
}
type statuses = status list
type status_branch_commit = {
  1. status_branch_commit_sha : string;
  2. status_branch_commit_url : string;
}
type status_branch = {
  1. status_branch_name : string;
  2. status_branch_commit : status_branch_commit;
}
type git_commit = {
  1. git_commit_url : string;
  2. git_commit_author : info;
  3. git_commit_committer : info;
  4. git_commit_message : string;
}
type commit = {
  1. commit_url : string;
  2. commit_sha : string;
  3. commit_git : git_commit;
  4. commit_author : user option;
  5. commit_committer : user option;
}
type status_event = {
  1. status_event_sha : string;
  2. status_event_target_url : string option;
  3. status_event_context : string option;
  4. status_event_description : string option;
  5. status_event_state : status_state;
  6. status_event_commit : commit;
  7. status_event_branches : status_branch list;
}
type scope = [
  1. | `User
  2. | `User_email
  3. | `User_follow
  4. | `Public_repo
  5. | `Repo
  6. | `Repo_deployment
  7. | `Repo_status
  8. | `Delete_repo
  9. | `Notifications
  10. | `Gist
  11. | `Read_repo_hook
  12. | `Write_repo_hook
  13. | `Admin_repo_hook
  14. | `Admin_org_hook
  15. | `Read_org
  16. | `Write_org
  17. | `Admin_org
  18. | `Read_public_key
  19. | `Write_public_key
  20. | `Admin_public_key
  21. | `Unknown of string
]
type repositories = repository list
type issues = issue list
type repository_action = [
  1. | `Created
  2. | `Deleted
  3. | `Publicized
  4. | `Privatized
  5. | `Unknown of string
]
type repository_event = {
  1. repository_event_action : repository_action;
  2. repository_event_repository : repository;
}
type repo_commit = {
  1. repo_commit_sha : string;
  2. repo_commit_url : string;
}
type repo_tag = {
  1. repo_tag_name : string;
  2. repo_tag_commit : repo_commit;
  3. repo_tag_zipball_url : string;
  4. repo_tag_tarball_url : string;
}
type repo_tags = repo_tag list
type repo_issues_action = [
  1. | `Closed
  2. | `Reopened
  3. | `Subscribed
  4. | `Merged
  5. | `Referenced
  6. | `Mentioned
  7. | `Assigned
  8. | `Unassigned
  9. | `Labeled
  10. | `Unlabeled
  11. | `Milestoned
  12. | `Demilestoned
  13. | `Renamed
  14. | `Locked
  15. | `Unlocked
  16. | `Head_ref_deleted
  17. | `Head_ref_restored
  18. | `Unknown of string
]
type linked_user = {
  1. linked_user_html_url : string;
  2. linked_user_login : string;
  3. linked_user_id : Stdlib.Int64.t;
  4. linked_user_url : string;
  5. linked_user_avatar_url : string option;
  6. linked_user_ty : user_type;
}
type repo_issues_event = {
  1. repo_issues_event_issue : issue;
  2. repo_issues_event_id : int;
  3. repo_issues_event_url : string;
  4. repo_issues_event_actor : linked_user option;
  5. repo_issues_event_event : repo_issues_action;
  6. repo_issues_event_created_at : string;
  7. repo_issues_event_label : base_label option;
  8. repo_issues_event_assignee : linked_user option;
  9. repo_issues_event_assigner : linked_user option;
  10. repo_issues_event_milestone : milestone_reference option;
  11. repo_issues_event_rename : issue_rename option;
}
type repo_issues_events = repo_issues_event list
type repo_issue_event = {
  1. repo_issue_event_id : int;
  2. repo_issue_event_url : string;
  3. repo_issue_event_actor : linked_user option;
  4. repo_issue_event_event : repo_issues_action;
  5. repo_issue_event_created_at : string;
  6. repo_issue_event_label : base_label option;
  7. repo_issue_event_assignee : linked_user option;
  8. repo_issue_event_assigner : linked_user option;
  9. repo_issue_event_milestone : milestone_reference option;
  10. repo_issue_event_rename : issue_rename option;
}
type repo_issue_events = repo_issue_event list
type repo_branch = {
  1. repo_branch_name : string;
  2. repo_branch_commit : repo_commit;
}
type repo_branches = repo_branch list
type repo = {
  1. repo_id : Stdlib.Int64.t;
  2. repo_name : string;
  3. repo_url : string;
}
type release = {
  1. release_id : Stdlib.Int64.t;
  2. release_tag_name : string;
  3. release_target_commitish : string option;
  4. release_name : string option;
  5. release_body : string option;
  6. release_draft : bool;
  7. release_prerelease : bool;
  8. release_created_at : string;
  9. release_published_at : string;
  10. release_url : string;
  11. release_html_url : string;
  12. release_assets_url : string;
  13. release_upload_url : string;
}
type releases = release list
type release_repo = {
  1. release_repo_user : string;
  2. release_repo_repo : string;
  3. release_repo_release : release;
}
type release_repos = release_repo list
type release_action = [
  1. | `Published
  2. | `Unknown of string
]
type release_event = {
  1. release_event_action : release_action;
  2. release_event_release : release;
}
type release_asset = {
  1. release_asset_url : string;
  2. release_asset_browser_download_url : string;
  3. release_asset_id : Stdlib.Int64.t;
  4. release_asset_node_id : string;
  5. release_asset_name : string;
  6. release_asset_label : string;
  7. release_asset_state : string;
  8. release_asset_content_type : string;
  9. release_asset_size : int;
  10. release_asset_download_count : int;
  11. release_asset_created_at : string;
  12. release_asset_published_at : string;
}
type release_assets = release_asset list
type ref = [
  1. | `Repository
  2. | `Branch of string
  3. | `Tag of string
]
type rate = {
  1. rate_limit : int;
  2. rate_remaining : int;
  3. rate_reset : float;
}
type rate_resources = {
  1. rate_resources_core : rate;
}
type rate_limit = {
  1. rate_limit_resources : rate_resources;
}
type push_event_author = {
  1. push_event_author_name : string;
  2. push_event_author_email : string;
}
type push_event_hook_commit = {
  1. push_event_hook_commit_id : string;
  2. push_event_hook_commit_tree_id : string;
  3. push_event_hook_commit_url : string;
  4. push_event_hook_commit_message : string;
  5. push_event_hook_commit_author : push_event_author;
  6. push_event_hook_commit_distinct : bool;
}
type push_event_hook = {
  1. push_event_hook_after : string;
  2. push_event_hook_created : bool;
  3. push_event_hook_deleted : bool;
  4. push_event_hook_forced : bool;
  5. push_event_hook_commits : push_event_hook_commit list;
  6. push_event_hook_head_commit : push_event_hook_commit option;
  7. push_event_hook_ref : string;
  8. push_event_hook_before : string;
}
type push_event_commit_base = {
  1. push_event_commit_base_url : string;
  2. push_event_commit_base_message : string;
  3. push_event_commit_base_author : push_event_author;
  4. push_event_commit_base_distinct : bool;
}
type push_event_commit = {
  1. push_event_commit_sha : string;
  2. push_event_commit_url : string;
  3. push_event_commit_message : string;
  4. push_event_commit_author : push_event_author;
  5. push_event_commit_distinct : bool;
}
type push_event_base = {
  1. push_event_base_ref : string;
  2. push_event_base_before : string;
}
type push_event = {
  1. push_event_head : string;
  2. push_event_size : int;
  3. push_event_commits : push_event_commit list;
  4. push_event_ref : string;
  5. push_event_before : string;
}
type punch_card = int list
type punch_cards = punch_card list
type branch = {
  1. branch_label : string option;
  2. branch_ref : string;
  3. branch_sha : string;
  4. branch_user : user option;
  5. branch_repo : repository option;
}
type pull = {
  1. pull_issue_url : string;
  2. pull_number : int;
  3. pull_state : state;
  4. pull_title : string;
  5. pull_body : string;
  6. pull_created_at : string;
  7. pull_updated_at : string;
  8. pull_closed_at : string option;
  9. pull_merged_at : string option;
  10. pull_head : branch;
  11. pull_base : branch;
  12. pull_user : user;
  13. pull_merge_commit_sha : string option;
  14. pull_url : string;
  15. pull_html_url : string;
  16. pull_diff_url : string;
  17. pull_patch_url : string;
}
type pulls = pull list
type body_changes = {
  1. body_changes_body : change option;
}
type pull_request_review_comment_action = [
  1. | `Created
  2. | `Edited of body_changes
  3. | `Deleted
  4. | `Unknown of string * t option
]
type pull_request_review_comment = {
  1. pull_request_review_comment_diff_hunk : string;
  2. pull_request_review_comment_original_position : int;
  3. pull_request_review_comment_original_commit_id : string;
  4. pull_request_review_comment_pull_request_url : string;
  5. pull_request_review_comment_position : int option;
  6. pull_request_review_comment_line : int option;
  7. pull_request_review_comment_path : string option;
  8. pull_request_review_comment_commit_id : string;
  9. pull_request_review_comment_id : Stdlib.Int64.t;
  10. pull_request_review_comment_url : string;
  11. pull_request_review_comment_html_url : string;
  12. pull_request_review_comment_body : string;
  13. pull_request_review_comment_user : user;
  14. pull_request_review_comment_created_at : string;
  15. pull_request_review_comment_updated_at : string;
}
type pull_request_review_comment_event = {
  1. pull_request_review_comment_event_action : pull_request_review_comment_action;
  2. pull_request_review_comment_event_pull_request : pull;
  3. pull_request_review_comment_event_comment : pull_request_review_comment;
}
type pull_request_action = [
  1. | `Assigned
  2. | `Unassigned
  3. | `Labeled
  4. | `Unlabeled
  5. | `Opened
  6. | `Edited of ticket_changes
  7. | `Closed
  8. | `Reopened
  9. | `Synchronize
  10. | `Unknown of string * t option
]
type pull_request_event = {
  1. pull_request_event_action : pull_request_action;
  2. pull_request_event_number : int;
  3. pull_request_event_pull_request : pull;
}
type participation = {
  1. participation_all : int list;
  2. participation_owner : int list;
}
type page_build_status = [
  1. | `Building
  2. | `Built
  3. | `Errored
  4. | `Unknown of string
]
type page_build_error = {
  1. page_build_error_message : string option;
}
type page_build = {
  1. page_build_url : string;
  2. page_build_status : page_build_status option;
  3. page_build_error : page_build_error;
}
type page_build_event = {
  1. page_build_event_build : page_build;
}
type orgs = org list
type organization = {
  1. organization_name : string;
  2. organization_company : string;
  3. organization_blog : string;
  4. organization_location : string;
  5. organization_email : string;
  6. organization_public_repos : int;
  7. organization_public_gists : int;
  8. organization_followers : int;
  9. organization_following : int;
  10. organization_html_url : string;
  11. organization_created_at : string;
  12. organization_login : string;
  13. organization_id : Stdlib.Int64.t;
  14. organization_url : string;
  15. organization_ty : user_type;
  16. organization_avatar_url : string option;
}
type new_status = {
  1. new_status_state : status_state;
  2. new_status_target_url : string option;
  3. new_status_description : string option;
  4. new_status_context : string option;
}
type new_repo = {
  1. new_repo_name : string;
  2. new_repo_description : string;
  3. new_repo_homepage : string;
  4. new_repo_private : bool;
  5. new_repo_has_issues : bool;
  6. new_repo_has_wiki : bool;
  7. new_repo_has_downloads : bool;
  8. new_repo_team_id : int;
  9. new_repo_auto_init : bool;
  10. new_repo_gitignore_template : string option;
  11. new_repo_license_template : string option;
}
type new_release = {
  1. new_release_tag_name : string;
  2. new_release_target_commitish : string;
  3. new_release_name : string option;
  4. new_release_body : string option;
  5. new_release_draft : bool;
  6. new_release_prerelease : bool;
}
type new_pull_issue = {
  1. new_pull_issue_issue : int;
  2. new_pull_issue_base : string;
  3. new_pull_issue_head : string;
}
type new_pull = {
  1. new_pull_title : string;
  2. new_pull_body : string option;
  3. new_pull_base : string;
  4. new_pull_head : string;
}
type new_milestone = {
  1. new_milestone_title : string;
  2. new_milestone_state : state;
  3. new_milestone_description : string option;
  4. new_milestone_due_on : string option;
}
type new_label = {
  1. new_label_name : string;
  2. new_label_color : string;
}
type new_issue_comment = {
  1. new_issue_comment_body : string;
}
type new_issue = {
  1. new_issue_title : string;
  2. new_issue_body : string option;
  3. new_issue_assignee : string option;
  4. new_issue_milestone : int option;
  5. new_issue_labels : string list;
}
type new_hook = {
  1. new_hook_config : hook_config;
  2. new_hook_events : event_type list;
  3. new_hook_active : bool;
}
type new_gist_content = {
  1. new_gist_content : string;
}
type new_gist_contents = (string * new_gist_content) list
type new_gist = {
  1. new_gist_files : new_gist_contents;
  2. new_gist_description : string;
  3. new_gist_public : bool;
}
type new_deploy_key = {
  1. new_deploy_key_title : string;
  2. new_deploy_key_key : string;
}
type milestones = milestone list
type milestone_sort = [
  1. | `Due_date
  2. | `Completeness
]
type error = {
  1. error_resource : string;
  2. error_field : string option;
  3. error_code : string;
  4. error_message : string option;
}
type message = {
  1. message_message : string;
  2. message_errors : error list;
}
type merge_request = {
  1. merge_commit_message : string option;
}
type merge = {
  1. merge_sha : string option;
  2. merge_merged : bool;
  3. merge_message : string;
}
type member_action = [
  1. | `Added
  2. | `Unknown of string
]
type member_event = {
  1. member_event_action : member_action;
  2. member_event_member : linked_user;
}
type linked_users = linked_user list
type labels = label list
type label_names = string list
type issues_action = [
  1. | `Assigned
  2. | `Unassigned
  3. | `Labeled
  4. | `Unlabeled
  5. | `Opened
  6. | `Edited of ticket_changes
  7. | `Closed
  8. | `Reopened
  9. | `Unknown of string * t option
]
type issues_event = {
  1. issues_event_action : issues_action;
  2. issues_event_issue : issue;
  3. issues_event_assignee : user_info option;
  4. issues_event_label : label option;
}
type issue_comment = {
  1. issue_comment_id : Stdlib.Int64.t;
  2. issue_comment_url : string;
  3. issue_comment_html_url : string;
  4. issue_comment_body : string;
  5. issue_comment_user : user;
  6. issue_comment_created_at : string;
  7. issue_comment_updated_at : string;
}
type issue_comments = issue_comment list
type issue_comment_action = [
  1. | `Created
  2. | `Edited of body_changes
  3. | `Deleted
  4. | `Unknown of string * t option
]
type issue_comment_event = {
  1. issue_comment_event_action : issue_comment_action;
  2. issue_comment_event_issue : issue;
  3. issue_comment_event_comment : issue_comment;
}
type hook = {
  1. hook_url : string;
  2. hook_updated_at : string;
  3. hook_created_at : string;
  4. hook_events : event_type list;
  5. hook_active : bool;
  6. hook_config : hook_config;
  7. hook_id : Stdlib.Int64.t;
}
type hooks = hook list
type gollum_event = {
  1. gollum_event_pages : wiki_page list;
}
type git_ref = {
  1. git_ref_name : string;
  2. git_ref_url : string;
  3. git_ref_obj : obj;
}
type git_refs = git_ref list
type gist_fork = {
  1. gist_fork_user : user;
  2. gist_fork_url : string;
  3. gist_fork_id : Stdlib.Int64.t;
  4. gist_fork_created_at : string;
  5. gist_fork_updated_at : string;
}
type gist_file = {
  1. gist_file_size : int;
  2. gist_file_raw_url : string;
  3. gist_file_ty : string;
  4. gist_file_truncated : bool option;
  5. gist_file_language : string option;
  6. gist_file_content : string option;
}
type gist_files = (string * gist_file) list
type change_status = {
  1. change_status_deletions : int;
  2. change_status_additions : int;
  3. change_status_total : int;
}
type gist_commit = {
  1. gist_commit_url : string;
  2. gist_commit_version : string;
  3. gist_commit_user : user;
  4. gist_commit_change_status : change_status;
  5. gist_commit_committed_at : string;
}
type gist_commits = gist_commit list
type gist = {
  1. gist_url : string;
  2. gist_forks_url : string;
  3. gist_commits_url : string;
  4. gist_id : string;
  5. gist_description : string option;
  6. gist_public : bool;
  7. gist_owner : user;
  8. gist_user : string option;
  9. gist_files : gist_files;
  10. gist_comments : int;
  11. gist_comments_url : string;
  12. gist_html_url : string;
  13. gist_git_pull_url : string;
  14. gist_git_push_url : string;
  15. gist_created_at : string;
  16. gist_updated_at : string;
  17. gist_forks : gist_fork list option;
  18. gist_history : gist_commits option;
}
type gists = gist list
type gist_forks = gist_fork list
type fork_event = {
  1. fork_event_forkee : repository;
}
type file = {
  1. file_sha : string option;
  2. file_filename : string;
  3. file_status : string;
  4. file_additions : int;
  5. file_deletions : int;
  6. file_changes : int;
  7. file_blob_url : string;
  8. file_raw_url : string;
  9. file_patch : string option;
}
type files = file list
type delete_event = {
  1. delete_event_ref : ref;
}
type create_event = {
  1. create_event_ref : ref;
  2. create_event_master_branch : string;
  3. create_event_description : string option;
}
type commit_comment = {
  1. commit_comment_position : int option;
  2. commit_comment_line : int option;
  3. commit_comment_path : string option;
  4. commit_comment_commit_id : string;
  5. commit_comment_id : Stdlib.Int64.t;
  6. commit_comment_url : string;
  7. commit_comment_html_url : string;
  8. commit_comment_body : string;
  9. commit_comment_user : user;
  10. commit_comment_created_at : string;
  11. commit_comment_updated_at : string;
}
type commit_comment_event = {
  1. commit_comment_event_comment : commit_comment;
}
type event_constr = [
  1. | `CommitComment of commit_comment_event
  2. | `Create of create_event
  3. | `Delete of delete_event
  4. | `Download
  5. | `Follow
  6. | `Fork of fork_event
  7. | `ForkApply
  8. | `Gist
  9. | `Gollum of gollum_event
  10. | `IssueComment of issue_comment_event
  11. | `Issues of issues_event
  12. | `Member of member_event
  13. | `Public
  14. | `PullRequest of pull_request_event
  15. | `PullRequestReviewComment of pull_request_review_comment_event
  16. | `Push of push_event
  17. | `Release of release_event
  18. | `Repository of repository_event
  19. | `Status of status_event
  20. | `Watch of watch_event
  21. | `Unknown of string * t option
]
type event = {
  1. event_public : bool;
  2. event_payload : event_constr;
  3. event_actor : user;
  4. event_org : org option;
  5. event_created_at : string;
  6. event_repo : repo;
  7. event_id : Stdlib.Int64.t;
}
type events = event list
type event_hook_metadata = {
  1. event_hook_metadata_sender : user;
  2. event_hook_metadata_organisation : org option;
  3. event_hook_metadata_created_at : string;
  4. event_hook_metadata_repository : repository;
  5. event_hook_metadata_id : Stdlib.Int64.t;
}
type event_hook_constr = [
  1. | `CommitComment of commit_comment_event
  2. | `Create of create_event
  3. | `Delete of delete_event
  4. | `Download
  5. | `Follow
  6. | `Fork of fork_event
  7. | `ForkApply
  8. | `Gist
  9. | `Gollum of gollum_event
  10. | `IssueComment of issue_comment_event
  11. | `Issues of issues_event
  12. | `Member of member_event
  13. | `Public
  14. | `PullRequest of pull_request_event
  15. | `PullRequestReviewComment of pull_request_review_comment_event
  16. | `Push of push_event_hook
  17. | `Release of release_event
  18. | `Repository of repository_event
  19. | `Status of status_event
  20. | `Watch of watch_event
  21. | `Unknown of string * t option
]
type emojis = (string * string) list
type deploy_key = {
  1. deploy_key_id : Stdlib.Int64.t;
  2. deploy_key_key : string;
  3. deploy_key_url : string;
  4. deploy_key_title : string;
}
type deploy_keys = deploy_key list
type contribution_week = {
  1. repo_contribution_week_w : int;
  2. repo_contribution_week_a : int;
  3. repo_contribution_week_d : int;
  4. repo_contribution_week_c : int;
}
type contributor_stats = {
  1. repo_contributor_stats_author : user option;
  2. repo_contributor_stats_total : int;
  3. repo_contributor_stats_weeks : contribution_week list;
}
type contributors_stats = contributor_stats list
type contributor = {
  1. contributor_contributions : int;
  2. contributor_html_url : string;
  3. contributor_login : string;
  4. contributor_id : Stdlib.Int64.t;
  5. contributor_url : string;
  6. contributor_avatar_url : string option;
  7. contributor_ty : user_type;
}
type contributors = contributor list
type commits = commit list
type commit_activity = {
  1. commit_activity_days : int list;
  2. commit_activity_total : int;
  3. commit_activity_week : int;
}
type commit_activities = commit_activity list
type comment = {
  1. comment_id : Stdlib.Int64.t;
  2. comment_url : string;
  3. comment_html_url : string;
  4. comment_body : string;
  5. comment_user : user;
  6. comment_created_at : string;
  7. comment_updated_at : string;
}
type base_status = {
  1. base_status_url : string;
  2. base_status_updated_at : string;
  3. base_status_created_at : string;
  4. base_status_id : Stdlib.Int64.t;
  5. base_status_state : status_state;
  6. base_status_target_url : string option;
  7. base_status_description : string option;
  8. base_status_context : string option;
}
type base_statuses = base_status list
type combined_status = {
  1. combined_status_state : status_state;
  2. combined_status_sha : string;
  3. combined_status_total_count : int;
  4. combined_status_statuses : base_statuses;
  5. combined_status_repository : repo;
  6. combined_status_url : string;
  7. combined_status_commit_url : string;
}
type code_frequency = int list
type code_frequencies = code_frequency list
type auto_trigger_checks = {
  1. app_id : int;
  2. setting : bool;
}
type check_suite_preferences = {
  1. preferences : auto_trigger_checks list;
  2. respository : repository;
}
type check_suite_info = {
  1. email : string;
  2. name : string;
}
type check_suite_head_commit = {
  1. id : string;
  2. tree_id : string;
  3. message : string;
  4. timestamp : string;
  5. author : check_suite_info;
  6. committer : check_suite_info;
}
type check_status = [
  1. | `Queued
  2. | `In_progress
  3. | `Completed
]
type check_run_app_permissions = {
  1. metadata : string;
  2. checks : string;
  3. issues : string option;
  4. contents : string option;
  5. single_file : string option;
}
type check_conclusion = [
  1. | `Success
  2. | `Failure
  3. | `Neutral
  4. | `Cancelled
  5. | `Timed_out
  6. | `Action_required
]
type check_app = {
  1. check_run_id : Stdlib.Int64.t;
  2. check_run_slug : string;
  3. check_run_node_id : string;
  4. check_run_owner : user;
  5. check_run_name : string;
  6. check_run_description : string;
  7. check_run_external_url : string;
  8. check_run_html_url : string;
  9. check_run_created_at : string;
  10. check_run_updated_at : string;
  11. check_run_permissions : check_run_app_permissions;
  12. check_run_events : string list;
}
type check_suite = {
  1. id : int;
  2. node_id : string;
  3. head_branch : string;
  4. head_sha : string;
  5. status : check_status;
  6. conclusion : check_conclusion option;
  7. url : string;
  8. before : string;
  9. after : string;
  10. pull_requests : string list;
  11. created_at : string;
  12. updated_at : string;
  13. app : check_app;
  14. head_commit : check_suite_head_commit;
  15. latest_check_runs_count : int;
  16. check_runs_url : string;
}
type check_suite_list = {
  1. total_count : Stdlib.Int64.t;
  2. check_suites : check_suite list;
}
type check_suite_id = {
  1. check_run_id : int;
}
type check_run_repo_ref = {
  1. check_run_ref : string;
  2. check_run_sha : string;
  3. check_run_repo : repo;
}
type check_run_pull_request = {
  1. check_run_url : string;
  2. check_run_id : Stdlib.Int64.t;
  3. check_run_number : Stdlib.Int64.t;
  4. check_run_head : check_run_repo_ref;
  5. check_run_base : check_run_repo_ref;
}
type check_run_output = {
  1. check_run_title : string option;
  2. check_run_summary : string option;
  3. check_run_text : string option;
  4. check_run_annotations_count : int;
  5. check_run_annotations_url : string;
}
type check_run = {
  1. check_run_id : Stdlib.Int64.t;
  2. check_run_head_sha : string;
  3. check_run_node_id : string;
  4. check_run_external_id : string;
  5. check_run_url : string;
  6. check_run_html_url : string;
  7. check_run_details_url : string;
  8. check_run_status : check_status;
  9. check_run_conclusion : check_conclusion option;
  10. check_run_started_at : string;
  11. check_run_completed_at : string option;
  12. check_run_output : check_run_output;
  13. check_run_name : string;
  14. check_run_check_suite : check_suite_id;
  15. check_run_app : check_app;
  16. check_run_pull_requests : check_run_pull_request list;
}
type check_runs_list = {
  1. total_count : int;
  2. check_runs : check_run list;
}
type check_run_annotation = {
  1. path : string;
  2. start_line : int;
  3. end_line : int;
  4. start_column : int;
  5. end_column : int;
  6. annotation_level : string;
  7. title : string;
  8. message : string;
  9. raw_details : string;
  10. blob_href : link;
}
type check_run_annotations = check_run_annotation list
type app = {
  1. app_name : string;
  2. app_url : string;
}
type auth = {
  1. auth_scopes : scope list;
  2. auth_token : string;
  3. auth_app : app;
  4. auth_url : string;
  5. auth_id : Stdlib.Int64.t;
  6. auth_note : string option;
  7. auth_note_url : string option;
}
type auths = auth list
type auth_req = {
  1. auth_req_scopes : scope list;
  2. auth_req_note : string;
  3. auth_req_note_url : string option;
  4. auth_req_client_id : string option;
  5. auth_req_client_secret : string option;
  6. auth_req_fingerprint : string option;
}