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

@@ -25,7 +25,7 @@ namespace Octokit.Reactive
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="number">The comment id</param>
IObservable<Reaction> GetAll(int repositoryId, int number);
IObservable<Reaction> GetAll(long repositoryId, int number);
/// <summary>
/// Creates a reaction for a specified Pull Request Review Comment.
@@ -44,6 +44,6 @@ namespace Octokit.Reactive
/// <param name="repositoryId">The owner of the repository</param>
/// <param name="number">The comment id</param>
/// <param name="reaction">The reaction to create</param>
IObservable<Reaction> Create(int repositoryId, int number, NewReaction reaction);
IObservable<Reaction> Create(long repositoryId, int number, NewReaction reaction);
}
}