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
@@ -45,7 +45,7 @@ namespace Octokit.Reactive
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
/// </remarks>
/// <param name="repositoryId">The Id of the repository</param>
IObservable<Activity> GetAllForRepository(int repositoryId);
IObservable<Activity> GetAllForRepository(long repositoryId);
/// <summary>
/// Gets all the events for a given repository
@@ -66,7 +66,7 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="options">Options for changing the API response</param>
IObservable<Activity> GetAllForRepository(int repositoryId, ApiOptions options);
IObservable<Activity> GetAllForRepository(long repositoryId, ApiOptions options);
/// <summary>
/// Gets all the issue events for a given repository
@@ -85,7 +85,7 @@ namespace Octokit.Reactive
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
/// </remarks>
/// <param name="repositoryId">The Id of the repository</param>
IObservable<Activity> GetAllIssuesForRepository(int repositoryId);
IObservable<Activity> GetAllIssuesForRepository(long repositoryId);
/// <summary>
/// Gets all the issue events for a given repository
@@ -106,7 +106,7 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="options">Options for changing the API response</param>
IObservable<Activity> GetAllIssuesForRepository(int repositoryId, ApiOptions options);
IObservable<Activity> GetAllIssuesForRepository(long repositoryId, ApiOptions options);
/// <summary>
/// Gets all the events for a given repository network