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

View File

@@ -30,7 +30,7 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="number">The issue number</param>
IObservable<EventInfo> GetAllForIssue(int repositoryId, int number);
IObservable<EventInfo> GetAllForIssue(long repositoryId, int number);
/// <summary>
/// Gets all events for the issue.
@@ -53,7 +53,7 @@ namespace Octokit.Reactive
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="number">The issue number</param>
/// <param name="options">Options for changing the API response</param>
IObservable<EventInfo> GetAllForIssue(int repositoryId, int number, ApiOptions options);
IObservable<EventInfo> GetAllForIssue(long repositoryId, int number, ApiOptions options);
/// <summary>
/// Gets all events for the repository.
@@ -72,7 +72,7 @@ namespace Octokit.Reactive
/// http://developer.github.com/v3/issues/events/#list-events-for-a-repository
/// </remarks>
/// <param name="repositoryId">The Id of the repository</param>
IObservable<IssueEvent> GetAllForRepository(int repositoryId);
IObservable<IssueEvent> GetAllForRepository(long repositoryId);
/// <summary>
/// Gets all events for the repository.
@@ -93,7 +93,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<IssueEvent> GetAllForRepository(int repositoryId, ApiOptions options);
IObservable<IssueEvent> GetAllForRepository(long repositoryId, ApiOptions options);
/// <summary>
/// Gets a single event
@@ -118,6 +118,6 @@ namespace Octokit.Reactive
/// <param name="number">The event id</param>
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
Justification = "Method makes a network request")]
IObservable<IssueEvent> Get(int repositoryId, int number);
IObservable<IssueEvent> Get(long repositoryId, int number);
}
}