mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-19 13:45:12 +00:00
added new overloads
This commit is contained in:
@@ -90,5 +90,24 @@ namespace Octokit.Reactive
|
||||
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-latest-pages-build">API documentation</a> for more information.
|
||||
/// </remarks>
|
||||
IObservable<PagesBuild> GetLatest(int repositoryId);
|
||||
|
||||
/// <summary>
|
||||
/// Requests your site be built from the latest revision on the default branch for a given repository
|
||||
/// </summary>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <remarks>
|
||||
/// See the <a href="https://developer.github.com/v3/repos/pages/#request-a-page-build">API documentation</a> for more information.
|
||||
/// </remarks>
|
||||
IObservable<PagesBuild> RequestPageBuild(string owner, string name);
|
||||
|
||||
/// <summary>
|
||||
/// Requests your site be built from the latest revision on the default branch for a given repository
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <remarks>
|
||||
/// See the <a href="https://developer.github.com/v3/repos/pages/#request-a-page-build">API documentation</a> for more information.
|
||||
/// </remarks>
|
||||
IObservable<PagesBuild> RequestPageBuild(int repositoryId);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user