Synchronizing API and documentation updates

This commit is contained in:
gitnexbot
2026-04-22 00:02:14 +00:00
parent 97055eafa5
commit 7bdb6d453d
6 changed files with 21 additions and 21 deletions
@@ -887,7 +887,7 @@ public interface RepositoryApi {
@retrofit2.http.Body CreatePullRequestOption body);
/**
* Create a review to an pull request
* Create a review to a pull request
*
* @param body (required)
* @param owner owner of the repo (required)
@@ -2841,7 +2841,7 @@ public interface RepositoryApi {
@retrofit2.http.Path("owner") String owner, @retrofit2.http.Path("repo") String repo);
/**
* Submit a pending review to an pull request
* Submit a pending review to a pull request
*
* @param body (required)
* @param owner owner of the repo (required)
@@ -297,7 +297,7 @@ public interface UserApi {
@retrofit2.http.Body CreateOAuth2ApplicationOptions body);
/**
* Get an user's actions runner registration token
* Get a user's actions runner registration token
*
* @return Call<Void>
*/
@@ -95,9 +95,9 @@ public class NotificationSubject implements Serializable {
/**
* Type indicates the type of the notification subject Issue NotifySubjectIssue NotifySubjectIssue
* an issue is subject of an notification Pull NotifySubjectPull NotifySubjectPull an pull is
* subject of an notification Commit NotifySubjectCommit NotifySubjectCommit an commit is subject
* of an notification Repository NotifySubjectRepository NotifySubjectRepository an repository is
* a issue is subject of an notification Pull NotifySubjectPull NotifySubjectPull a pull is
* subject of an notification Commit NotifySubjectCommit NotifySubjectCommit a commit is subject
* of an notification Repository NotifySubjectRepository NotifySubjectRepository a repository is
* subject of an notification
*/
@JsonAdapter(TypeEnum.Adapter.class)
@@ -262,9 +262,9 @@ public class NotificationSubject implements Serializable {
/**
* Type indicates the type of the notification subject Issue NotifySubjectIssue NotifySubjectIssue
* an issue is subject of an notification Pull NotifySubjectPull NotifySubjectPull an pull is
* subject of an notification Commit NotifySubjectCommit NotifySubjectCommit an commit is subject
* of an notification Repository NotifySubjectRepository NotifySubjectRepository an repository is
* a issue is subject of an notification Pull NotifySubjectPull NotifySubjectPull a pull is
* subject of an notification Commit NotifySubjectCommit NotifySubjectCommit a commit is subject
* of an notification Repository NotifySubjectRepository NotifySubjectRepository a repository is
* subject of an notification
*
* @return type
@@ -272,11 +272,11 @@ public class NotificationSubject implements Serializable {
@Schema(
description =
"Type indicates the type of the notification subject Issue NotifySubjectIssue "
+ " NotifySubjectIssue an issue is subject of an notification Pull NotifySubjectPull "
+ " NotifySubjectPull an pull is subject of an notification Commit"
+ " NotifySubjectCommit NotifySubjectCommit an commit is subject of an notification"
+ " Repository NotifySubjectRepository NotifySubjectRepository an repository is"
+ " subject of an notification")
+ " NotifySubjectIssue a issue is subject of an notification Pull NotifySubjectPull "
+ " NotifySubjectPull a pull is subject of an notification Commit NotifySubjectCommit"
+ " NotifySubjectCommit a commit is subject of an notification Repository"
+ " NotifySubjectRepository NotifySubjectRepository a repository is subject of an"
+ " notification")
public TypeEnum getType() {
return type;
}