@@ -56,14 +56,6 @@ module GitHub (
5656 watchersForR ,
5757 reposWatchedByR ,
5858
59- -- * Enterprise
60- -- | See <https://developer.github.com/enterprise/v3/enterprise-admin/>
61-
62- -- ** Organizations
63- -- | See <https://developer.github.com/enterprise/v3/enterprise-admin/orgs/>
64- createOrganizationR ,
65- renameOrganizationR ,
66-
6759 -- * Gists
6860 -- | See <https://developer.github.com/v3/gists/>
6961 --
@@ -289,6 +281,15 @@ module GitHub (
289281 commitR ,
290282 diffR ,
291283
284+ -- ** Contents
285+ -- | See <https://developer.github.com/v3/repos/contents/>
286+ contentsForR ,
287+ readmeForR ,
288+ archiveForR ,
289+ createFileR ,
290+ updateFileR ,
291+ deleteFileR ,
292+
292293 -- ** Deploy Keys
293294 -- | See <https://developer.github.com/v3/repos/keys/>
294295 deployKeysForR ,
@@ -316,6 +317,12 @@ module GitHub (
316317 -- * Create a fork
317318 forksForR ,
318319
320+ -- ** Statuses
321+ -- | See <https://developer.github.com/v3/repos/statuses/>
322+ createStatusR ,
323+ statusesForR ,
324+ statusForR ,
325+
319326 -- ** Webhooks
320327 -- | See <https://developer.github.com/v3/repos/hooks/>
321328 webhooksForR ,
@@ -389,11 +396,13 @@ module GitHub (
389396 usersFollowingR ,
390397 usersFollowedByR ,
391398
392- -- ** Statuses
393- -- | See <https://developer.github.com/v3/repos/statuses/>
394- createStatusR ,
395- statusesForR ,
396- statusForR ,
399+ -- ** Git SSH Keys
400+ -- | See <https://developer.github.com/v3/users/keys/>
401+ publicSSHKeysR ,
402+ publicSSHKeysForR ,
403+ publicSSHKeyR ,
404+ createUserPublicSSHKeyR ,
405+ deleteUserPublicSSHKeyR ,
397406
398407 -- ** Rate Limit
399408 -- | See <https://developer.github.com/v3/rate_limit/>
@@ -410,7 +419,6 @@ import GitHub.Endpoints.Activity.Events
410419import GitHub.Endpoints.Activity.Notifications
411420import GitHub.Endpoints.Activity.Starring
412421import GitHub.Endpoints.Activity.Watching
413- import GitHub.Endpoints.Enterprise.Organizations
414422import GitHub.Endpoints.Gists
415423import GitHub.Endpoints.Gists.Comments
416424import GitHub.Endpoints.GitData.Blobs
@@ -433,6 +441,7 @@ import GitHub.Endpoints.Repos
433441import GitHub.Endpoints.Repos.Collaborators
434442import GitHub.Endpoints.Repos.Comments
435443import GitHub.Endpoints.Repos.Commits
444+ import GitHub.Endpoints.Repos.Contents
436445import GitHub.Endpoints.Repos.DeployKeys
437446import GitHub.Endpoints.Repos.Deployments
438447import GitHub.Endpoints.Repos.Forks
@@ -444,4 +453,5 @@ import GitHub.Endpoints.Search
444453import GitHub.Endpoints.Users
445454import GitHub.Endpoints.Users.Emails
446455import GitHub.Endpoints.Users.Followers
456+ import GitHub.Endpoints.Users.PublicSSHKeys
447457import GitHub.Request
0 commit comments