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
@@ -31,7 +31,7 @@ namespace Octokit.Reactive
/// <param name="id">The issue comment id</param>
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
Justification = "Method makes a network request")]
IObservable<IssueComment> Get(int repositoryId, int id);
IObservable<IssueComment> Get(long repositoryId, int id);
/// <summary>
/// Gets Issue Comments for a repository.
@@ -46,7 +46,7 @@ namespace Octokit.Reactive
/// </summary>
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-in-a-repository</remarks>
/// <param name="repositoryId">The Id of the repository</param>
IObservable<IssueComment> GetAllForRepository(int repositoryId);
IObservable<IssueComment> GetAllForRepository(long repositoryId);
/// <summary>
/// Gets Issue Comments for a repository.
@@ -63,7 +63,7 @@ namespace Octokit.Reactive
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-in-a-repository</remarks>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="options">Options for changing the API response</param>
IObservable<IssueComment> GetAllForRepository(int repositoryId, ApiOptions options);
IObservable<IssueComment> GetAllForRepository(long repositoryId, ApiOptions options);
/// <summary>
/// Gets Issue Comments for a specified Issue.
@@ -80,7 +80,7 @@ namespace Octokit.Reactive
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-on-an-issue</remarks>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="number">The issue number</param>
IObservable<IssueComment> GetAllForIssue(int repositoryId, int number);
IObservable<IssueComment> GetAllForIssue(long repositoryId, int number);
/// <summary>
/// Gets Issue Comments for a specified Issue.
@@ -99,7 +99,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<IssueComment> GetAllForIssue(int repositoryId, int number, ApiOptions options);
IObservable<IssueComment> GetAllForIssue(long repositoryId, int number, ApiOptions options);
/// <summary>
/// Creates a new Issue Comment for a specified Issue.
@@ -118,7 +118,7 @@ namespace Octokit.Reactive
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="number">The number of the issue</param>
/// <param name="newComment">The text of the new comment</param>
IObservable<IssueComment> Create(int repositoryId, int number, string newComment);
IObservable<IssueComment> Create(long repositoryId, int number, string newComment);
/// <summary>
/// Updates a specified Issue Comment.
@@ -137,7 +137,7 @@ namespace Octokit.Reactive
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="id">The comment id</param>
/// <param name="commentUpdate">The modified comment</param>
IObservable<IssueComment> Update(int repositoryId, int id, string commentUpdate);
IObservable<IssueComment> Update(long repositoryId, int id, string commentUpdate);
/// <summary>
/// Deletes the specified Issue Comment
@@ -154,6 +154,6 @@ namespace Octokit.Reactive
/// <remarks>http://developer.github.com/v3/issues/comments/#delete-a-comment</remarks>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="id">The comment id</param>
IObservable<Unit> Delete(int repositoryId, int id);
IObservable<Unit> Delete(long repositoryId, int id);
}
}