You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/EditRepoOption.md
+1
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,7 @@ Name | Type | Description | Notes
15
15
**defaultDeleteBranchAfterMerge** | **Boolean** | set to `true` to delete pr branch after merge by default | [optional]
16
16
**defaultMergeStyle** | **String** | set to a merge style to be used by this repository: \"merge\", \"rebase\", \"rebase-merge\", or \"squash\". `has_pull_requests` must be `true`. | [optional]
17
17
**description** | **String** | a short description of the repository. | [optional]
[**issueGetComment**](IssueApi.md#issueGetComment) | **GET** /repos/{owner}/{repo}/issues/comments/{id} | Get a comment
32
32
[**issueGetCommentReactions**](IssueApi.md#issueGetCommentReactions) | **GET** /repos/{owner}/{repo}/issues/comments/{id}/reactions | Get a list of reactions from a comment of an issue
33
33
[**issueGetComments**](IssueApi.md#issueGetComments) | **GET** /repos/{owner}/{repo}/issues/{index}/comments | List all comments on an issue
34
+
[**issueGetCommentsAndTimeline**](IssueApi.md#issueGetCommentsAndTimeline) | **GET** /repos/{owner}/{repo}/issues/{index}/timeline | List all comments and events on an issue
34
35
[**issueGetIssue**](IssueApi.md#issueGetIssue) | **GET** /repos/{owner}/{repo}/issues/{index} | Get an issue
35
36
[**issueGetIssueReactions**](IssueApi.md#issueGetIssueReactions) | **GET** /repos/{owner}/{repo}/issues/{index}/reactions | Get a list reactions of an issue
36
37
[**issueGetLabel**](IssueApi.md#issueGetLabel) | **GET** /repos/{owner}/{repo}/labels/{id} | Get a single label
@@ -2556,6 +2557,106 @@ Name | Type | Description | Notes
@@ -3287,11 +3388,11 @@ String labels = "labels_example"; // String | comma separated list of labels. Fe
3287
3388
String q ="q_example"; // String | search string
3288
3389
String type ="type_example"; // String | filter by type (issues / pulls) if set
3289
3390
String milestones ="milestones_example"; // String | comma separated list of milestone names or ids. It uses names and fall back to ids. Fetch only issues that have any of this milestones. Non existent milestones are discarded
3290
-
OffsetDateTime since =OffsetDateTime.now(); // OffsetDateTime | Only show notifications updated after the given time. This is a timestamp in RFC 3339 format
3291
-
OffsetDateTime before =OffsetDateTime.now(); // OffsetDateTime | Only show notifications updated before the given time. This is a timestamp in RFC 3339 format
3292
-
String createdBy ="createdBy_example"; // String | filter (issues / pulls) created to
OffsetDateTime since =OffsetDateTime.now(); // OffsetDateTime | Only show items updated after the given time. This is a timestamp in RFC 3339 format
3392
+
OffsetDateTime before =OffsetDateTime.now(); // OffsetDateTime | Only show items updated before the given time. This is a timestamp in RFC 3339 format
3393
+
String createdBy ="createdBy_example"; // String | Only show items which were created by the the given user
3394
+
String assignedBy ="assignedBy_example"; // String | Only show items for which the given user is assigned
3395
+
String mentionedBy ="mentionedBy_example"; // String | Only show items in which the given user was mentioned
3295
3396
Integer page =56; // Integer | page number of results to return (1-based)
3296
3397
Integer limit =56; // Integer | page size of results
3297
3398
try {
@@ -3314,11 +3415,11 @@ Name | Type | Description | Notes
3314
3415
**q** | **String**| search string | [optional]
3315
3416
**type** | **String**| filter by type (issues / pulls) if set | [optional][enum: issues, pulls]
3316
3417
**milestones** | **String**| comma separated list of milestone names or ids. It uses names and fall back to ids. Fetch only issues that have any of this milestones. Non existent milestones are discarded | [optional]
3317
-
**since** | **OffsetDateTime**| Only show notifications updated after the given time. This is a timestamp in RFC 3339 format | [optional]
3318
-
**before** | **OffsetDateTime**| Only show notifications updated before the given time. This is a timestamp in RFC 3339 format | [optional]
3319
-
**createdBy** | **String**| filter (issues / pulls) created to | [optional]
0 commit comments