Synchronizing API and documentation updates

This commit is contained in:
gitnexbot
2023-05-10 00:05:23 +00:00
parent 0a6acd87fd
commit 995c393ca7
4 changed files with 42 additions and 7 deletions
+6 -2
View File
@@ -5649,7 +5649,7 @@ Name | Type | Description | Notes
<a name="repoGetAllCommits"></a>
# **repoGetAllCommits**
> List&lt;Commit&gt; repoGetAllCommits(owner, repo, sha, path, stat, page, limit, not)
> List&lt;Commit&gt; repoGetAllCommits(owner, repo, sha, path, stat, verification, files, page, limit, not)
Get a list of all commits from a repository
@@ -5710,11 +5710,13 @@ String repo = "repo_example"; // String | name of the repo
String sha = "sha_example"; // String | SHA or branch to start listing commits from (usually 'master')
String path = "path_example"; // String | filepath of a file/dir
Boolean stat = true; // Boolean | include diff stats for every commit (disable for speedup, default 'true')
Boolean verification = true; // Boolean | include verification for every commit (disable for speedup, default 'true')
Boolean files = true; // Boolean | include a list of affected files for every commit (disable for speedup, default 'true')
Integer page = 56; // Integer | page number of results to return (1-based)
Integer limit = 56; // Integer | page size of results (ignored if used with 'path')
String not = "not_example"; // String | commits that match the given specifier will not be listed.
try {
List<Commit> result = apiInstance.repoGetAllCommits(owner, repo, sha, path, stat, page, limit, not);
List<Commit> result = apiInstance.repoGetAllCommits(owner, repo, sha, path, stat, verification, files, page, limit, not);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling RepositoryApi#repoGetAllCommits");
@@ -5731,6 +5733,8 @@ Name | Type | Description | Notes
**sha** | **String**| SHA or branch to start listing commits from (usually &#x27;master&#x27;) | [optional]
**path** | **String**| filepath of a file/dir | [optional]
**stat** | **Boolean**| include diff stats for every commit (disable for speedup, default &#x27;true&#x27;) | [optional]
**verification** | **Boolean**| include verification for every commit (disable for speedup, default &#x27;true&#x27;) | [optional]
**files** | **Boolean**| include a list of affected files for every commit (disable for speedup, default &#x27;true&#x27;) | [optional]
**page** | **Integer**| page number of results to return (1-based) | [optional]
**limit** | **Integer**| page size of results (ignored if used with &#x27;path&#x27;) | [optional]
**not** | **String**| commits that match the given specifier will not be listed. | [optional]