Make Repository Id a long, it's going to grow...

This commit is contained in:
Andreia Gaita
2016-06-23 17:07:03 +02:00
parent 58833602b7
commit 9e958bf998
169 changed files with 1041 additions and 1037 deletions
@@ -50,7 +50,7 @@ namespace Octokit.Reactive
/// See <a href="http://developer.github.com/v3/repos/forks/#list-forks">API documentation</a> for more information.
/// </remarks>
/// <param name="repositoryId">The Id of the repository</param>
public IObservable<Repository> GetAll(int repositoryId)
public IObservable<Repository> GetAll(long repositoryId)
{
return GetAll(repositoryId, ApiOptions.None);
}
@@ -81,7 +81,7 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="options">Options for changing the API response</param>
public IObservable<Repository> GetAll(int repositoryId, ApiOptions options)
public IObservable<Repository> GetAll(long repositoryId, ApiOptions options)
{
Ensure.ArgumentNotNull(options, "options");
@@ -114,7 +114,7 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="request">Used to request and filter a list of repository forks</param>
public IObservable<Repository> GetAll(int repositoryId, RepositoryForksListRequest request)
public IObservable<Repository> GetAll(long repositoryId, RepositoryForksListRequest request)
{
Ensure.ArgumentNotNull(request, "request");
@@ -150,7 +150,7 @@ namespace Octokit.Reactive
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="request">Used to request and filter a list of repository forks</param>
/// <param name="options">Options for changing the API response</param>
public IObservable<Repository> GetAll(int repositoryId, RepositoryForksListRequest request, ApiOptions options)
public IObservable<Repository> GetAll(long repositoryId, RepositoryForksListRequest request, ApiOptions options)
{
Ensure.ArgumentNotNull(request, "request");
Ensure.ArgumentNotNull(options, "options");
@@ -184,7 +184,7 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="fork">Used to fork a repository</param>
public IObservable<Repository> Create(int repositoryId, NewRepositoryFork fork)
public IObservable<Repository> Create(long repositoryId, NewRepositoryFork fork)
{
Ensure.ArgumentNotNull(fork, "fork");