Skip to content

Commit 7ff9f49

Browse files
committed
prepare for release of 1.16.8
Signed-off-by: Andrew Thornton <art27@cantab.net>
1 parent 313b7ee commit 7ff9f49

File tree

193 files changed

+7656
-460
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

193 files changed

+7656
-460
lines changed

docs/BranchProtection.md

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Name | Type | Description | Notes
2626
**requireSignedCommits** | **Boolean** | | [optional]
2727
**requiredApprovals** | **Long** | | [optional]
2828
**statusCheckContexts** | **List&lt;String&gt;** | | [optional]
29+
**unprotectedFilePatterns** | **String** | | [optional]
2930
**updatedAt** | [**OffsetDateTime**](OffsetDateTime.md) | | [optional]
3031

3132

docs/CreateBranchProtectionOption.md

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Name | Type | Description | Notes
2525
**requireSignedCommits** | **Boolean** | | [optional]
2626
**requiredApprovals** | **Long** | | [optional]
2727
**statusCheckContexts** | **List&lt;String&gt;** | | [optional]
28+
**unprotectedFilePatterns** | **String** | | [optional]
2829

2930

3031

docs/CreateForkOption.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7+
**name** | **String** | name of the forked repository | [optional]
78
**organization** | **String** | organization name, if forking into an organization | [optional]
89

910

docs/CreateRepoOption.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**autoInit** | **Boolean** | Whether the repository should be auto-intialized? | [optional]
7+
**autoInit** | **Boolean** | Whether the repository should be auto-initialized? | [optional]
88
**defaultBranch** | **String** | DefaultBranch of the repository (used when initializes and in template) | [optional]
99
**description** | **String** | Description of the repository to create | [optional]
1010
**gitignores** | **String** | Gitignores to use | [optional]

docs/CreateTeamOption.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
1010
**name** | **String** | |
1111
**permission** | [**PermissionEnum**](#PermissionEnum) | | [optional]
1212
**units** | **List&lt;String&gt;** | | [optional]
13+
**unitsMap** | **Map&lt;String, String&gt;** | | [optional]
1314

1415

1516
<a name="PermissionEnum"></a>

docs/CreateUserOption.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
99
**loginName** | **String** | | [optional]
1010
**mustChangePassword** | **Boolean** | | [optional]
1111
**password** | **String** | |
12+
**restricted** | **Boolean** | | [optional]
1213
**sendNotify** | **Boolean** | | [optional]
1314
**sourceId** | **Long** | | [optional]
1415
**username** | **String** | |

docs/CreateWikiPageOptions.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
# CreateWikiPageOptions
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**contentBase64** | **String** | content must be base64 encoded | [optional]
8+
**message** | **String** | optional commit message summarizing the change | [optional]
9+
**title** | **String** | page title. leave empty to keep unchanged | [optional]
10+
11+
12+

docs/EditBranchProtectionOption.md

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Name | Type | Description | Notes
2424
**requireSignedCommits** | **Boolean** | | [optional]
2525
**requiredApprovals** | **Long** | | [optional]
2626
**statusCheckContexts** | **List&lt;String&gt;** | | [optional]
27+
**unprotectedFilePatterns** | **String** | | [optional]
2728

2829

2930

docs/EditRepoOption.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Name | Type | Description | Notes
1515
**defaultDeleteBranchAfterMerge** | **Boolean** | set to &#x60;true&#x60; to delete pr branch after merge by default | [optional]
1616
**defaultMergeStyle** | **String** | set to a merge style to be used by this repository: \&quot;merge\&quot;, \&quot;rebase\&quot;, \&quot;rebase-merge\&quot;, or \&quot;squash\&quot;. &#x60;has_pull_requests&#x60; must be &#x60;true&#x60;. | [optional]
1717
**description** | **String** | a short description of the repository. | [optional]
18+
**enablePrune** | **Boolean** | enable prune - remove obsolete remote-tracking references | [optional]
1819
**externalTracker** | [**ExternalTracker**](ExternalTracker.md) | | [optional]
1920
**externalWiki** | [**ExternalWiki**](ExternalWiki.md) | | [optional]
2021
**hasIssues** | **Boolean** | either &#x60;true&#x60; to enable issues for this repository or &#x60;false&#x60; to disable them. | [optional]

docs/EditTeamOption.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
1010
**name** | **String** | |
1111
**permission** | [**PermissionEnum**](#PermissionEnum) | | [optional]
1212
**units** | **List&lt;String&gt;** | | [optional]
13+
**unitsMap** | **Map&lt;String, String&gt;** | | [optional]
1314

1415

1516
<a name="PermissionEnum"></a>

docs/IssueApi.md

+111-10
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Method | HTTP request | Description
3131
[**issueGetComment**](IssueApi.md#issueGetComment) | **GET** /repos/{owner}/{repo}/issues/comments/{id} | Get a comment
3232
[**issueGetCommentReactions**](IssueApi.md#issueGetCommentReactions) | **GET** /repos/{owner}/{repo}/issues/comments/{id}/reactions | Get a list of reactions from a comment of an issue
3333
[**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
3435
[**issueGetIssue**](IssueApi.md#issueGetIssue) | **GET** /repos/{owner}/{repo}/issues/{index} | Get an issue
3536
[**issueGetIssueReactions**](IssueApi.md#issueGetIssueReactions) | **GET** /repos/{owner}/{repo}/issues/{index}/reactions | Get a list reactions of an issue
3637
[**issueGetLabel**](IssueApi.md#issueGetLabel) | **GET** /repos/{owner}/{repo}/labels/{id} | Get a single label
@@ -2556,6 +2557,106 @@ Name | Type | Description | Notes
25562557

25572558
[AccessToken](../README.md#AccessToken), [AuthorizationHeaderToken](../README.md#AuthorizationHeaderToken), [BasicAuth](../README.md#BasicAuth), [SudoHeader](../README.md#SudoHeader), [SudoParam](../README.md#SudoParam), [TOTPHeader](../README.md#TOTPHeader), [Token](../README.md#Token)
25582559

2560+
### HTTP request headers
2561+
2562+
- **Content-Type**: application/json, text/plain
2563+
- **Accept**: application/json
2564+
2565+
<a name="issueGetCommentsAndTimeline"></a>
2566+
# **issueGetCommentsAndTimeline**
2567+
> List&lt;TimelineComment&gt; issueGetCommentsAndTimeline(owner, repo, index, since, page, limit, before)
2568+
2569+
List all comments and events on an issue
2570+
2571+
### Example
2572+
```java
2573+
// Import classes:
2574+
//import io.gitea.ApiClient;
2575+
//import io.gitea.ApiException;
2576+
//import io.gitea.Configuration;
2577+
//import io.gitea.auth.*;
2578+
//import io.gitea.api.IssueApi;
2579+
2580+
ApiClient defaultClient = Configuration.getDefaultApiClient();
2581+
2582+
// Configure API key authorization: AccessToken
2583+
ApiKeyAuth AccessToken = (ApiKeyAuth) defaultClient.getAuthentication("AccessToken");
2584+
AccessToken.setApiKey("YOUR API KEY");
2585+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
2586+
//AccessToken.setApiKeyPrefix("Token");
2587+
2588+
// Configure API key authorization: AuthorizationHeaderToken
2589+
ApiKeyAuth AuthorizationHeaderToken = (ApiKeyAuth) defaultClient.getAuthentication("AuthorizationHeaderToken");
2590+
AuthorizationHeaderToken.setApiKey("YOUR API KEY");
2591+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
2592+
//AuthorizationHeaderToken.setApiKeyPrefix("Token");
2593+
2594+
// Configure HTTP basic authorization: BasicAuth
2595+
HttpBasicAuth BasicAuth = (HttpBasicAuth) defaultClient.getAuthentication("BasicAuth");
2596+
BasicAuth.setUsername("YOUR USERNAME");
2597+
BasicAuth.setPassword("YOUR PASSWORD");
2598+
2599+
// Configure API key authorization: SudoHeader
2600+
ApiKeyAuth SudoHeader = (ApiKeyAuth) defaultClient.getAuthentication("SudoHeader");
2601+
SudoHeader.setApiKey("YOUR API KEY");
2602+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
2603+
//SudoHeader.setApiKeyPrefix("Token");
2604+
2605+
// Configure API key authorization: SudoParam
2606+
ApiKeyAuth SudoParam = (ApiKeyAuth) defaultClient.getAuthentication("SudoParam");
2607+
SudoParam.setApiKey("YOUR API KEY");
2608+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
2609+
//SudoParam.setApiKeyPrefix("Token");
2610+
2611+
// Configure API key authorization: TOTPHeader
2612+
ApiKeyAuth TOTPHeader = (ApiKeyAuth) defaultClient.getAuthentication("TOTPHeader");
2613+
TOTPHeader.setApiKey("YOUR API KEY");
2614+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
2615+
//TOTPHeader.setApiKeyPrefix("Token");
2616+
2617+
// Configure API key authorization: Token
2618+
ApiKeyAuth Token = (ApiKeyAuth) defaultClient.getAuthentication("Token");
2619+
Token.setApiKey("YOUR API KEY");
2620+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
2621+
//Token.setApiKeyPrefix("Token");
2622+
2623+
IssueApi apiInstance = new IssueApi();
2624+
String owner = "owner_example"; // String | owner of the repo
2625+
String repo = "repo_example"; // String | name of the repo
2626+
Long index = 789L; // Long | index of the issue
2627+
OffsetDateTime since = OffsetDateTime.now(); // OffsetDateTime | if provided, only comments updated since the specified time are returned.
2628+
Integer page = 56; // Integer | page number of results to return (1-based)
2629+
Integer limit = 56; // Integer | page size of results
2630+
OffsetDateTime before = OffsetDateTime.now(); // OffsetDateTime | if provided, only comments updated before the provided time are returned.
2631+
try {
2632+
List<TimelineComment> result = apiInstance.issueGetCommentsAndTimeline(owner, repo, index, since, page, limit, before);
2633+
System.out.println(result);
2634+
} catch (ApiException e) {
2635+
System.err.println("Exception when calling IssueApi#issueGetCommentsAndTimeline");
2636+
e.printStackTrace();
2637+
}
2638+
```
2639+
2640+
### Parameters
2641+
2642+
Name | Type | Description | Notes
2643+
------------- | ------------- | ------------- | -------------
2644+
**owner** | **String**| owner of the repo |
2645+
**repo** | **String**| name of the repo |
2646+
**index** | **Long**| index of the issue |
2647+
**since** | **OffsetDateTime**| if provided, only comments updated since the specified time are returned. | [optional]
2648+
**page** | **Integer**| page number of results to return (1-based) | [optional]
2649+
**limit** | **Integer**| page size of results | [optional]
2650+
**before** | **OffsetDateTime**| if provided, only comments updated before the provided time are returned. | [optional]
2651+
2652+
### Return type
2653+
2654+
[**List&lt;TimelineComment&gt;**](TimelineComment.md)
2655+
2656+
### Authorization
2657+
2658+
[AccessToken](../README.md#AccessToken), [AuthorizationHeaderToken](../README.md#AuthorizationHeaderToken), [BasicAuth](../README.md#BasicAuth), [SudoHeader](../README.md#SudoHeader), [SudoParam](../README.md#SudoParam), [TOTPHeader](../README.md#TOTPHeader), [Token](../README.md#Token)
2659+
25592660
### HTTP request headers
25602661

25612662
- **Content-Type**: application/json, text/plain
@@ -3287,11 +3388,11 @@ String labels = "labels_example"; // String | comma separated list of labels. Fe
32873388
String q = "q_example"; // String | search string
32883389
String type = "type_example"; // String | filter by type (issues / pulls) if set
32893390
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
3293-
String assignedBy = "assignedBy_example"; // String | filter (issues / pulls) assigned to
3294-
String mentionedBy = "mentionedBy_example"; // String | filter (issues / pulls) mentioning to
3391+
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
32953396
Integer page = 56; // Integer | page number of results to return (1-based)
32963397
Integer limit = 56; // Integer | page size of results
32973398
try {
@@ -3314,11 +3415,11 @@ Name | Type | Description | Notes
33143415
**q** | **String**| search string | [optional]
33153416
**type** | **String**| filter by type (issues / pulls) if set | [optional] [enum: issues, pulls]
33163417
**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]
3320-
**assignedBy** | **String**| filter (issues / pulls) assigned to | [optional]
3321-
**mentionedBy** | **String**| filter (issues / pulls) mentioning to | [optional]
3418+
**since** | **OffsetDateTime**| Only show items updated after the given time. This is a timestamp in RFC 3339 format | [optional]
3419+
**before** | **OffsetDateTime**| Only show items updated before the given time. This is a timestamp in RFC 3339 format | [optional]
3420+
**createdBy** | **String**| Only show items which were created by the the given user | [optional]
3421+
**assignedBy** | **String**| Only show items for which the given user is assigned | [optional]
3422+
**mentionedBy** | **String**| Only show items in which the given user was mentioned | [optional]
33223423
**page** | **Integer**| page number of results to return (1-based) | [optional]
33233424
**limit** | **Integer**| page size of results | [optional]
33243425

docs/IssueTemplate.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
99
**fileName** | **String** | | [optional]
1010
**labels** | **List&lt;String&gt;** | | [optional]
1111
**name** | **String** | | [optional]
12+
**ref** | **String** | | [optional]
1213
**title** | **String** | | [optional]
1314

1415

docs/MergePullRequestOption.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
1010
**mergeTitleField** | **String** | | [optional]
1111
**deleteBranchAfterMerge** | **Boolean** | | [optional]
1212
**forceMerge** | **Boolean** | | [optional]
13+
**headCommitId** | **String** | | [optional]
1314

1415

1516
<a name="DoEnum"></a>

docs/MiscellaneousApi.md

+85
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,97 @@ All URIs are relative to *http://localhost/api/v1*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------
7+
[**getNodeInfo**](MiscellaneousApi.md#getNodeInfo) | **GET** /nodeinfo | Returns the nodeinfo of the Gitea application
78
[**getSigningKey**](MiscellaneousApi.md#getSigningKey) | **GET** /signing-key.gpg | Get default signing-key.gpg
89
[**getVersion**](MiscellaneousApi.md#getVersion) | **GET** /version | Returns the version of the Gitea application
910
[**renderMarkdown**](MiscellaneousApi.md#renderMarkdown) | **POST** /markdown | Render a markdown document as HTML
1011
[**renderMarkdownRaw**](MiscellaneousApi.md#renderMarkdownRaw) | **POST** /markdown/raw | Render raw markdown as HTML
1112

1213

14+
<a name="getNodeInfo"></a>
15+
# **getNodeInfo**
16+
> NodeInfo getNodeInfo()
17+
18+
Returns the nodeinfo of the Gitea application
19+
20+
### Example
21+
```java
22+
// Import classes:
23+
//import io.gitea.ApiClient;
24+
//import io.gitea.ApiException;
25+
//import io.gitea.Configuration;
26+
//import io.gitea.auth.*;
27+
//import io.gitea.api.MiscellaneousApi;
28+
29+
ApiClient defaultClient = Configuration.getDefaultApiClient();
30+
31+
// Configure API key authorization: AccessToken
32+
ApiKeyAuth AccessToken = (ApiKeyAuth) defaultClient.getAuthentication("AccessToken");
33+
AccessToken.setApiKey("YOUR API KEY");
34+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
35+
//AccessToken.setApiKeyPrefix("Token");
36+
37+
// Configure API key authorization: AuthorizationHeaderToken
38+
ApiKeyAuth AuthorizationHeaderToken = (ApiKeyAuth) defaultClient.getAuthentication("AuthorizationHeaderToken");
39+
AuthorizationHeaderToken.setApiKey("YOUR API KEY");
40+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
41+
//AuthorizationHeaderToken.setApiKeyPrefix("Token");
42+
43+
// Configure HTTP basic authorization: BasicAuth
44+
HttpBasicAuth BasicAuth = (HttpBasicAuth) defaultClient.getAuthentication("BasicAuth");
45+
BasicAuth.setUsername("YOUR USERNAME");
46+
BasicAuth.setPassword("YOUR PASSWORD");
47+
48+
// Configure API key authorization: SudoHeader
49+
ApiKeyAuth SudoHeader = (ApiKeyAuth) defaultClient.getAuthentication("SudoHeader");
50+
SudoHeader.setApiKey("YOUR API KEY");
51+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
52+
//SudoHeader.setApiKeyPrefix("Token");
53+
54+
// Configure API key authorization: SudoParam
55+
ApiKeyAuth SudoParam = (ApiKeyAuth) defaultClient.getAuthentication("SudoParam");
56+
SudoParam.setApiKey("YOUR API KEY");
57+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
58+
//SudoParam.setApiKeyPrefix("Token");
59+
60+
// Configure API key authorization: TOTPHeader
61+
ApiKeyAuth TOTPHeader = (ApiKeyAuth) defaultClient.getAuthentication("TOTPHeader");
62+
TOTPHeader.setApiKey("YOUR API KEY");
63+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
64+
//TOTPHeader.setApiKeyPrefix("Token");
65+
66+
// Configure API key authorization: Token
67+
ApiKeyAuth Token = (ApiKeyAuth) defaultClient.getAuthentication("Token");
68+
Token.setApiKey("YOUR API KEY");
69+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
70+
//Token.setApiKeyPrefix("Token");
71+
72+
MiscellaneousApi apiInstance = new MiscellaneousApi();
73+
try {
74+
NodeInfo result = apiInstance.getNodeInfo();
75+
System.out.println(result);
76+
} catch (ApiException e) {
77+
System.err.println("Exception when calling MiscellaneousApi#getNodeInfo");
78+
e.printStackTrace();
79+
}
80+
```
81+
82+
### Parameters
83+
This endpoint does not need any parameter.
84+
85+
### Return type
86+
87+
[**NodeInfo**](NodeInfo.md)
88+
89+
### Authorization
90+
91+
[AccessToken](../README.md#AccessToken), [AuthorizationHeaderToken](../README.md#AuthorizationHeaderToken), [BasicAuth](../README.md#BasicAuth), [SudoHeader](../README.md#SudoHeader), [SudoParam](../README.md#SudoParam), [TOTPHeader](../README.md#TOTPHeader), [Token](../README.md#Token)
92+
93+
### HTTP request headers
94+
95+
- **Content-Type**: application/json, text/plain
96+
- **Accept**: application/json
97+
1398
<a name="getSigningKey"></a>
1499
# **getSigningKey**
15100
> String getSigningKey()

docs/NodeInfo.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
# NodeInfo
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**metadata** | **Object** | | [optional]
8+
**openRegistrations** | **Boolean** | | [optional]
9+
**protocols** | **List&lt;String&gt;** | | [optional]
10+
**services** | [**NodeInfoServices**](NodeInfoServices.md) | | [optional]
11+
**software** | [**NodeInfoSoftware**](NodeInfoSoftware.md) | | [optional]
12+
**usage** | [**NodeInfoUsage**](NodeInfoUsage.md) | | [optional]
13+
**version** | **String** | | [optional]
14+
15+
16+

docs/NodeInfoServices.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
# NodeInfoServices
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**inbound** | **List&lt;String&gt;** | | [optional]
8+
**outbound** | **List&lt;String&gt;** | | [optional]
9+
10+
11+

docs/NodeInfoSoftware.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
# NodeInfoSoftware
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**homepage** | **String** | | [optional]
8+
**name** | **String** | | [optional]
9+
**repository** | **String** | | [optional]
10+
**version** | **String** | | [optional]
11+
12+
13+

0 commit comments

Comments
 (0)