diff --git a/Octokit/Clients/DeploymentStatusClient.cs b/Octokit/Clients/DeploymentStatusClient.cs index a11845d711..679febf25a 100644 --- a/Octokit/Clients/DeploymentStatusClient.cs +++ b/Octokit/Clients/DeploymentStatusClient.cs @@ -63,6 +63,7 @@ public Task> GetAll(long repositoryId, int deplo /// The id of the deployment. /// Options for changing the API response [Preview("ant-man")] + [Preview("flash")] [ManualRoute("GET", "/repos/{owner}/{name}/deployments/{deployment_id}/statuses")] public Task> GetAll(string owner, string name, int deploymentId, ApiOptions options) { @@ -87,6 +88,7 @@ public Task> GetAll(string owner, string name, i /// The id of the deployment. /// Options for changing the API response [Preview("ant-man")] + [Preview("flash")] [ManualRoute("GET", "/repositories/{id}/deployments/{deployment_id}/statuses")] public Task> GetAll(long repositoryId, int deploymentId, ApiOptions options) { @@ -110,6 +112,7 @@ public Task> GetAll(long repositoryId, int deplo /// The id of the deployment. /// The new deployment status to create. [Preview("ant-man")] + [Preview("flash")] [ManualRoute("POST", "/repos/{owner}/{name}/deployments/{deployment_id}/statuses")] public Task Create(string owner, string name, int deploymentId, NewDeploymentStatus newDeploymentStatus) { @@ -133,6 +136,7 @@ public Task Create(string owner, string name, int deploymentId /// The id of the deployment. /// The new deployment status to create. [Preview("ant-man")] + [Preview("flash")] [ManualRoute("POST", "/repositories/{id}/deployments/{deployment_id}/statuses")] public Task Create(long repositoryId, int deploymentId, NewDeploymentStatus newDeploymentStatus) {