mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-19 21:55:12 +00:00
[feat]: Added Environments API - GetAll list only feature
This commit is contained in:
@@ -27,6 +27,7 @@ namespace Octokit.Reactive
|
||||
Forks = new ObservableRepositoryForksClient(client);
|
||||
Collaborator = new ObservableRepoCollaboratorsClient(client);
|
||||
Deployment = new ObservableDeploymentsClient(client);
|
||||
Environment = new ObservableEnvironmentsClient(client);
|
||||
Statistics = new ObservableStatisticsClient(client);
|
||||
PullRequest = new ObservablePullRequestsClient(client);
|
||||
Branch = new ObservableRepositoryBranchesClient(client);
|
||||
@@ -347,10 +348,19 @@ namespace Octokit.Reactive
|
||||
/// Client for GitHub's Repository Deployments API
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// See the <a href="http://developer.github.com/v3/repos/deployment/">Collaborators API documentation</a> for more details
|
||||
/// See the <a href="https://docs.github.com/en/rest/deployments/deployments">Deployments API documentation</a> for more details
|
||||
/// </remarks>
|
||||
public IObservableDeploymentsClient Deployment { get; private set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Client for GitHub's Repository Environments API
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// See the <a href="https://docs.github.com/en/rest/deployments/environments#about-the-deployment-environments-api/">Environments API documentation</a> for more details
|
||||
/// </remarks>
|
||||
public IObservableRepositoryDeployEnvironmentsClient Environment { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Client for GitHub's Repository Statistics API
|
||||
/// Note that the GitHub API uses caching on these endpoints,
|
||||
|
||||
Reference in New Issue
Block a user