mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-08 04:40:54 +00:00
Make Repository Id a long, it's going to grow...
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user