Skip to content

Commit 1590384

Browse files
authored
Fix missing date (#1)
1 parent f125268 commit 1590384

File tree

279 files changed

+9867
-489
lines changed

Some content is hidden

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

279 files changed

+9867
-489
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
# Gitee Enterprise SDK
22

3-
Gitee Enterprise SDK for PHP (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4-
5-
This PHP package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
3+
[![Latest Stable Version](http://poser.pugx.org/gitee-php/gitee-enterprise-sdk/v)](https://packagist.org/packages/gitee-php/gitee-enterprise-sdk) [![Total Downloads](http://poser.pugx.org/gitee-php/gitee-enterprise-sdk/downloads)](https://packagist.org/packages/gitee-php/gitee-enterprise-sdk) [![Latest Unstable Version](http://poser.pugx.org/gitee-php/gitee-enterprise-sdk/v/unstable)](https://packagist.org/packages/gitee-php/gitee-enterprise-sdk) [![License](http://poser.pugx.org/gitee-php/gitee-enterprise-sdk/license)](https://packagist.org/packages/gitee-php/gitee-enterprise-sdk) [![PHP Version Require](http://poser.pugx.org/gitee-php/gitee-enterprise-sdk/require/php)](https://packagist.org/packages/gitee-php/gitee-enterprise-sdk)
64

7-
- API version: 0.1.333
5+
Gitee Enterprise SDK for PHP (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
86

97
## Requirements
108

docs/Api/IssuesApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1669,7 +1669,7 @@ $kanbanId = 56; // int | 看板ID
16691669
$kanbanColumnId = 56; // int | 看板的栏ID
16701670
$estimatedDuration = 3.4; // float | 预估工时(单位:小时, 支持两位小数)
16711671
$duration = 56; // int | 预估工时。(单位:分钟)
1672-
$changeStates = new \stdClass; // object | 变更的状态 {source_id1: target_id1, source_id2: target_id2}
1672+
$changeStates = array('key' => "changeStates_example"); // map[string,string] | 变更的状态 {source_id1: target_id1, source_id2: target_id2}
16731673
$hierarchyChangeMethod = "hierarchyChangeMethod_example"; // string | 选择的层级结构(relevance: 改为关联关系, independence: 取消父子关系)
16741674

16751675
try {
@@ -1712,7 +1712,7 @@ Name | Type | Description | Notes
17121712
**kanbanColumnId** | **int**| 看板的栏ID | [optional]
17131713
**estimatedDuration** | **float**| 预估工时(单位:小时, 支持两位小数) | [optional]
17141714
**duration** | **int**| 预估工时。(单位:分钟) | [optional]
1715-
**changeStates** | [**object**](../Model/.md)| 变更的状态 {source_id1: target_id1, source_id2: target_id2} | [optional]
1715+
**changeStates** | [**map[string,string]**](../Model/string.md)| 变更的状态 {source_id1: target_id1, source_id2: target_id2} | [optional]
17161716
**hierarchyChangeMethod** | **string**| 选择的层级结构(relevance: 改为关联关系, independence: 取消父子关系) | [optional]
17171717

17181718
### Return type

docs/Model/AttachFile.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ Name | Type | Description | Notes
99
**fileType** | **string** | 附件的类型 | [optional]
1010
**previewUrl** | **string** | 预览链接 | [optional]
1111
**creator** | [**\GiteeEnterprise\Model\UserWithRemark**](UserWithRemark.md) | 附件的创建者 | [optional]
12+
**createdAt** | **string** | 附件的创建时间 | [optional]
13+
**updatedAt** | **string** | 附件的更新时间 | [optional]
1214
**canDelete** | **bool** | 能否删除附件 | [optional]
1315

1416
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

docs/Model/CommitBase.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**id** | **string** | Commit ID | [optional]
7-
**shortId** | **int** | Commit Short ID | [optional]
8-
**title** | **int** | Commit Title | [optional]
9-
**titleHtml** | **int** | Commit Html Title | [optional]
7+
**shortId** | **string** | Commit Short ID | [optional]
8+
**title** | **string** | Commit Title | [optional]
9+
**titleHtml** | **string** | Commit Html Title | [optional]
1010
**description** | **string** | Commit Description | [optional]
1111
**descriptionHtml** | **string** | Commit Html Description | [optional]
1212
**message** | **string** | Commit Message | [optional]
1313
**completeTitle** | **string** | Complete Commit Title | [optional]
1414
**completeTitleHtml** | **string** | Complete Commit Title Html | [optional]
1515
**messageHtml** | **string** | Commit Html Message | [optional]
16-
**author** | **int** | Commit 作者 | [optional]
17-
**committer** | **int** | Commit 提交人 | [optional]
18-
**authoredDate** | **int** | 推送时间 | [optional]
19-
**committedDate** | **int** | 提交时间 | [optional]
16+
**author** | [**\GiteeEnterprise\Model\UserWithRemark**](UserWithRemark.md) | Commit 作者 | [optional]
17+
**committer** | [**\GiteeEnterprise\Model\UserWithRemark**](UserWithRemark.md) | Commit 提交人 | [optional]
18+
**authoredDate** | [**\DateTime**](\DateTime.md) | 推送时间 | [optional]
19+
**committedDate** | [**\DateTime**](\DateTime.md) | 提交时间 | [optional]
2020
**signature** | [**\GiteeEnterprise\Model\CommitSignature**](CommitSignature.md) | 签名 | [optional]
21-
**buildState** | **int** | Gitee Go构建状态 | [optional]
21+
**buildState** | **object** | Gitee Go构建状态 | [optional]
2222

2323
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
2424

docs/Model/CommitDetail.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,22 @@
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**id** | **string** | Commit ID | [optional]
7-
**shortId** | **int** | Commit Short ID | [optional]
8-
**title** | **int** | Commit Title | [optional]
9-
**titleHtml** | **int** | Commit Html Title | [optional]
7+
**shortId** | **string** | Commit Short ID | [optional]
8+
**title** | **string** | Commit Title | [optional]
9+
**titleHtml** | **string** | Commit Html Title | [optional]
1010
**description** | **string** | Commit Description | [optional]
1111
**descriptionHtml** | **string** | Commit Html Description | [optional]
1212
**message** | **string** | Commit Message | [optional]
1313
**completeTitle** | **string** | Complete Commit Title | [optional]
1414
**completeTitleHtml** | **string** | Complete Commit Title Html | [optional]
1515
**messageHtml** | **string** | Commit Html Message | [optional]
16-
**author** | **int** | Commit 作者 | [optional]
17-
**committer** | **int** | Commit 提交人 | [optional]
18-
**authoredDate** | **int** | 推送时间 | [optional]
19-
**committedDate** | **int** | 提交时间 | [optional]
16+
**author** | [**\GiteeEnterprise\Model\UserWithRemark**](UserWithRemark.md) | Commit 作者 | [optional]
17+
**committer** | [**\GiteeEnterprise\Model\UserWithRemark**](UserWithRemark.md) | Commit 提交人 | [optional]
18+
**authoredDate** | [**\DateTime**](\DateTime.md) | 推送时间 | [optional]
19+
**committedDate** | [**\DateTime**](\DateTime.md) | 提交时间 | [optional]
2020
**signature** | [**\GiteeEnterprise\Model\CommitSignature**](CommitSignature.md) | 签名 | [optional]
21-
**buildState** | **int** | Gitee Go构建状态 | [optional]
21+
**buildState** | **object** | Gitee Go构建状态 | [optional]
22+
**parents** | [**null[]**](.md) | 父节点 | [optional]
2223
**diffFilesSize** | **int** | diff 文件大小 | [optional]
2324
**limitDiffFilesSize** | **int** | 可渲染的diff文件大小 | [optional]
2425
**isOverflow** | **bool** | diff大小是否超出限制 | [optional]

docs/Model/CommitList.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6+
**day** | [**\DateTime**](\DateTime.md) | 日期 | [optional]
67
**count** | **int** | commit 数 | [optional]
78
**commits** | [**\GiteeEnterprise\Model\CommitBase**](CommitBase.md) | commits 列表 | [optional]
89

docs/Model/CommitNote.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ Name | Type | Description | Notes
1010
**contentHtml** | **string** | 评论内容(html 格式) | [optional]
1111
**suggestions** | [**null[]**](.md) | 代码建议汇集信息{changed: boolean 代码是否不一致, raw: string 建议的code} | [optional]
1212
**reactions** | [**\GiteeEnterprise\Model\Reaction**](Reaction.md) | 表态 | [optional]
13+
**operating** | **object** | 评论编辑、删除权限 | [optional]
14+
**createdAt** | **string** | 创建时间 | [optional]
15+
**updatedAt** | **string** | 更新时间 | [optional]
1316
**lineCode** | **string** | 代码行标记 | [optional]
1417

1518
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

docs/Model/CommitNoteDetail.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,16 @@ Name | Type | Description | Notes
1010
**contentHtml** | **string** | 评论内容(html 格式) | [optional]
1111
**suggestions** | [**null[]**](.md) | 代码建议汇集信息{changed: boolean 代码是否不一致, raw: string 建议的code} | [optional]
1212
**reactions** | [**\GiteeEnterprise\Model\Reaction**](Reaction.md) | 表态 | [optional]
13+
**operating** | **object** | 评论编辑、删除权限 | [optional]
14+
**createdAt** | **string** | 创建时间 | [optional]
15+
**updatedAt** | **string** | 更新时间 | [optional]
1316
**lineCode** | **string** | 代码行标记 | [optional]
1417
**diffPositionId** | **int** | 评论引用的代码块 id | [optional]
1518
**ancestryIds** | [**null[]**](.md) | 上级评论的ids,上下级关系为树组index顺序 | [optional]
1619
**outdated** | **bool** | 代码评论是否过期 | [optional]
1720
**resolved** | **bool** | 代码评论是否解决 | [optional]
21+
**position** | **object** | 代码评论信息 | [optional]
22+
**parent** | **object** | 上级评论id,评论人信息 | [optional]
1823
**resolvedUser** | [**\GiteeEnterprise\Model\UserWithRemark**](UserWithRemark.md) | 评论解决人 | [optional]
1924

2025
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

docs/Model/DeployKeyLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ Name | Type | Description | Notes
88
**user** | [**\GiteeEnterprise\Model\UserWithRemark**](UserWithRemark.md) | 操作用户 | [optional]
99
**ip** | **string** | ip | [optional]
1010
**targetId** | **int** | 目标操作对象ID | [optional]
11+
**createdAt** | **string** | 创建时间 | [optional]
12+
**updatedAt** | **string** | 更新时间 | [optional]
1113
**title** | **string** | 操作对象名称 | [optional]
1214
**type** | **string** | 操作对象类型 | [optional]
1315
**operating** | **string** | 操作 | [optional]

docs/Model/Diff.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
1313
**statistic** | **string** | diff 统计 | [optional]
1414
**head** | **string** | diff head | [optional]
1515
**content** | **string** | diff 内容 | [optional]
16+
**patch** | **object** | diff内容 | [optional]
1617

1718
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
1819

0 commit comments

Comments
 (0)