mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-19 21:55:12 +00:00
Make Repository Id a long, it's going to grow...
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user