Skip to content

Commit 27a1c9d

Browse files
authored
Fix project error (#3)
1 parent cf72dee commit 27a1c9d

File tree

189 files changed

+1401
-635
lines changed

Some content is hidden

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

189 files changed

+1401
-635
lines changed

docs/Model/IssueDetail.md

Lines changed: 55 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,62 @@
11
# IssueDetail
22

33
## Properties
4-
Name | Type | Description | Notes
5-
------------ |--------------------------------------------------------------------------------| ------------- | -------------
6-
**id** | **int** | 任务 ID | [optional]
7-
**rootId** | **int** | 根结点 ID | [optional]
8-
**parentId** | **int** | 父任务 ID | [optional]
9-
**projectId** | **int** | 关联项目 ID | [optional]
10-
**ident** | **string** | 任务全局唯一标识符 | [optional]
11-
**title** | **string** | 任务标题 | [optional]
12-
**issueStateId** | **int** | 任务状态id | [optional]
13-
**programId** | **int** | 项目id | [optional]
14-
**state** | **string** | 任务状态标识符: open, progressing, closed, rejected | [optional]
15-
**commentsCount** | **int** | 评论数量 | [optional]
16-
**priority** | **int** | 优先级标识符 | [optional]
17-
**branch** | **string** | 关联的分支名 | [optional]
18-
**priorityHuman** | **string** | 优先级中文名称 | [optional]
19-
**assignee** | [**\GiteeEnterprise\Model\UserWithRemark**](UserWithRemark.md) | 任务负责人 | [optional]
20-
**duration** | **int** | 预计工时。(单位:分钟) | [optional]
21-
**createdAt** | **string** | 任务创建时间 | [optional]
22-
**updatedAt** | **string** | 任务更新时间 | [optional]
23-
**collaborators** | [**\GiteeEnterprise\Model\UserWithRemark[]**](UserWithRemark.md) | 任务协作者 | [optional]
24-
**author** | [**\GiteeEnterprise\Model\UserWithRemark**](UserWithRemark.md) | 任务创建者 | [optional]
25-
**milestone** | [**\GiteeEnterprise\Model\Milestone**](Milestone.md) | 关联的里程碑 | [optional]
26-
**issueState** | [**\GiteeEnterprise\Model\IssueState**](IssueState.md) | 任务状态 | [optional]
27-
**issueType** | [**\GiteeEnterprise\Model\IssueType**](IssueType.md) | 任务类型 | [optional]
28-
**labels** | [**\GiteeEnterprise\Model\Label[]**](Label.md) | 任务关联的标签 | [optional]
29-
**issueExtra** | [**null[]**](.md) | 任务自定义字段值 | [optional]
30-
**planStartedAt** | **string** | 计划开始时间 | [optional]
31-
**deadline** | **string** | 计划完成时间 | [optional]
32-
**finishedAt** | **string** | 实际完成时间 | [optional]
33-
**startedAt** | **string** | 实际开始时间 | [optional]
34-
**securityHole** | **bool** | 是否是私有Issue | [optional]
35-
**isStar** | **bool** | 当前用户是否收藏过此任务 | [optional]
36-
**kanbanInfo** | **object** | 所属看板 | [optional]
37-
**scrumSprint** | [**\GiteeEnterprise\Model\ScrumSprint**](ScrumSprint.md) | 关联迭代 | [optional]
38-
**description** | **string** | 任务内容(markdown 格式) | [optional]
39-
**descriptionHtml** | **string** | 任务内容(html 格式) | [optional]
40-
**descriptionJson** | **string** | 工作项 JSON 格式内容 | [optional]
41-
**descriptionType** | **string** | 工作项描述文本类型 | [optional]
42-
**issueUrl** | **string** | PC的任务详情链接 | [optional]
43-
**program** | [**\GiteeEnterprise\Model\ProgramWithComponents**](ProgramWithComponents.md) | 关联的项目 | [optional]
44-
**project** | [**\GiteeEnterprise\Model\Project**](Project.md) | 关联的仓库 | [optional]
45-
**parent** | [**\GiteeEnterprise\Model\Issue**](Issue.md) | 父级任务 | [optional]
46-
**operateLogsCount** | **int** | 操作日志的数量 | [optional]
47-
**reactions** | **object** | 表态 | [optional]
48-
**attachFileIds** | **int** | issue附件id列表 | [optional]
49-
**securityHoleOperater** | **bool** | 私有issue操作者 | [optional]
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**id** | **int** | 任务 ID | [optional]
7+
**rootId** | **int** | 根结点 ID | [optional]
8+
**parentId** | **int** | 父任务 ID | [optional]
9+
**projectId** | **int** | 关联项目 ID | [optional]
10+
**ident** | **string** | 任务全局唯一标识符 | [optional]
11+
**title** | **string** | 任务标题 | [optional]
12+
**issueStateId** | **int** | 任务状态id | [optional]
13+
**programId** | **int** | 项目id | [optional]
14+
**state** | **string** | 任务状态标识符: open, progressing, closed, rejected | [optional]
15+
**commentsCount** | **int** | 评论数量 | [optional]
16+
**priority** | **int** | 优先级标识符 | [optional]
17+
**branch** | **string** | 关联的分支名 | [optional]
18+
**priorityHuman** | **string** | 优先级中文名称 | [optional]
19+
**assignee** | [**\GiteeEnterprise\Model\UserWithRemark**](UserWithRemark.md) | 任务负责人 | [optional]
20+
**duration** | **int** | 预计工时。(单位:分钟) | [optional]
21+
**createdAt** | **string** | 任务创建时间 | [optional]
22+
**updatedAt** | **string** | 任务更新时间 | [optional]
23+
**collaborators** | [**\GiteeEnterprise\Model\UserWithRemark[]**](UserWithRemark.md) | 任务协作者 | [optional]
24+
**author** | [**\GiteeEnterprise\Model\UserWithRemark**](UserWithRemark.md) | 任务创建者 | [optional]
25+
**milestone** | [**\GiteeEnterprise\Model\Milestone**](Milestone.md) | 关联的里程碑 | [optional]
26+
**issueState** | [**\GiteeEnterprise\Model\IssueState**](IssueState.md) | 任务状态 | [optional]
27+
**issueType** | [**\GiteeEnterprise\Model\IssueType**](IssueType.md) | 任务类型 | [optional]
28+
**labels** | [**\GiteeEnterprise\Model\Label[]**](Label.md) | 任务关联的标签 | [optional]
29+
**issueExtra** | [**null[]**](.md) | 任务自定义字段值 | [optional]
30+
**planStartedAt** | **string** | 计划开始时间 | [optional]
31+
**deadline** | **string** | 计划完成时间 | [optional]
32+
**finishedAt** | **string** | 实际完成时间 | [optional]
33+
**startedAt** | **string** | 实际开始时间 | [optional]
34+
**securityHole** | **bool** | 是否是私有Issue | [optional]
35+
**isStar** | **bool** | 当前用户是否收藏过此任务 | [optional]
36+
**kanbanInfo** | **object** | 所属看板 | [optional]
37+
**scrumSprint** | [**\GiteeEnterprise\Model\ScrumSprint**](ScrumSprint.md) | 关联迭代 | [optional]
38+
**description** | **string** | 任务内容(markdown 格式) | [optional]
39+
**descriptionHtml** | **string** | 任务内容(html 格式) | [optional]
40+
**descriptionJson** | **string** | 工作项 JSON 格式内容 | [optional]
41+
**descriptionType** | **string** | 工作项描述文本类型 | [optional]
42+
**issueUrl** | **string** | PC的任务详情链接 | [optional]
43+
**program** | [**\GiteeEnterprise\Model\ProgramWithComponents**](ProgramWithComponents.md) | 关联的项目 | [optional]
44+
**project** | [**\GiteeEnterprise\Model\Project**](Project.md) | 关联的仓库 | [optional]
45+
**parent** | [**\GiteeEnterprise\Model\Issue**](Issue.md) | 父级任务 | [optional]
46+
**operateLogsCount** | **int** | 操作日志的数量 | [optional]
47+
**reactions** | **object** | 表态 | [optional]
48+
**attachFileIds** | **int** | issue附件id列表 | [optional]
49+
**securityHoleOperater** | **bool** | 私有issue操作者 | [optional]
5050
**scrumVersion** | [**\GiteeEnterprise\Model\EnterpriseScrumVersion**](EnterpriseScrumVersion.md) | 关联版本 | [optional]
51-
**starredUsers** | [**\GiteeEnterprise\Model\UserWithRemark[]**](UserWithRemark.md) | 收藏了该任务的用户列表 | [optional]
52-
**triggerExecuteInfo** | **bool** | 是否有异步执行的触发器 | [optional]
53-
**estimatedDuration** | **float** | 预估工时(单位小时) | [optional]
54-
**registeredDuration** | **float** | 登记工时(单位小时) | [optional]
55-
**leftDuration** | **float** | 剩余工时(单位小时) | [optional]
56-
**isInheritSatisfying** | **bool** | 子工作项是否符合层级关系 | [optional]
57-
**version** | [**null[]**](.md) | 版本号集合 | [optional]
58-
**children** | [**\GiteeEnterprise\Model\Issue[]**](Issue.md) | 子任务 | [optional]
59-
**childrenCount** | **int** | 子任务数量 | [optional]
51+
**starredUsers** | [**\GiteeEnterprise\Model\UserWithRemark[]**](UserWithRemark.md) | 收藏了该任务的用户列表 | [optional]
52+
**triggerExecuteInfo** | **bool** | 是否有异步执行的触发器 | [optional]
53+
**estimatedDuration** | **float** | 预估工时(单位小时) | [optional]
54+
**registeredDuration** | **float** | 登记工时(单位小时) | [optional]
55+
**leftDuration** | **float** | 剩余工时(单位小时) | [optional]
56+
**isInheritSatisfying** | **bool** | 子工作项是否符合层级关系 | [optional]
57+
**version** | [**null[]**](.md) | 版本号集合 | [optional]
58+
**children** | [**\GiteeEnterprise\Model\Issue[]**](Issue.md) | 子任务 | [optional]
59+
**childrenCount** | **int** | 子任务数量 | [optional]
6060

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

docs/Model/IssueDetailWithRelatedInfos.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Name | Type | Description | Notes
4848
**attachFileIds** | **int** | issue附件id列表 | [optional]
4949
**securityHoleOperater** | **bool** | 私有issue操作者 | [optional]
5050
**scrumVersion** | [**\GiteeEnterprise\Model\EnterpriseScrumVersion**](EnterpriseScrumVersion.md) | 关联版本 | [optional]
51-
**starredUsers** | [**\GiteeEnterprise\Model\UserWithRemark**](UserWithRemark.md) | 收藏了该任务的用户列表 | [optional]
51+
**starredUsers** | [**\GiteeEnterprise\Model\UserWithRemark[]**](UserWithRemark.md) | 收藏了该任务的用户列表 | [optional]
5252
**triggerExecuteInfo** | **bool** | 是否有异步执行的触发器 | [optional]
5353
**estimatedDuration** | **float** | 预估工时(单位小时) | [optional]
5454
**registeredDuration** | **float** | 登记工时(单位小时) | [optional]

docs/Model/ProgramWithComponents.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# ProgramWithComponents
22

33
## Properties
4-
Name | Type | Description | Notes
5-
------------ |----------------------------------------------------------------------| ------------- | -------------
6-
**id** | **int** | 项目 id | [optional]
7-
**ident** | **string** | 项目编号 | [optional]
8-
**name** | **string** | 项目名称 | [optional]
9-
**description** | **string** | 项目描述 | [optional]
10-
**status** | **int** | 项目状态(0:开始 1:暂停 2:关闭) | [optional]
11-
**outsourced** | **bool** | 是否外包项目 | [optional]
12-
**type** | **string** | 项目类型(内部、外包) | [optional]
13-
**createdAt** | **string** | 创建时间 | [optional]
14-
**color** | **string** | 颜色 | [optional]
15-
**category** | **string** | 项目类型 | [optional]
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**id** | **int** | 项目 id | [optional]
7+
**ident** | **string** | 项目编号 | [optional]
8+
**name** | **string** | 项目名称 | [optional]
9+
**description** | **string** | 项目描述 | [optional]
10+
**status** | **int** | 项目状态(0:开始 1:暂停 2:关闭) | [optional]
11+
**outsourced** | **bool** | 是否外包项目 | [optional]
12+
**type** | **string** | 项目类型(内部、外包) | [optional]
13+
**createdAt** | **string** | 创建时间 | [optional]
14+
**color** | **string** | 颜色 | [optional]
15+
**category** | **string** | 项目类型 | [optional]
1616
**programExtraFields** | [**\GiteeEnterprise\Model\ProgramExtraField**](ProgramExtraField.md) | 项目自定义字段值 | [optional]
1717
**components** | [**\GiteeEnterprise\Model\ProgramComponent[]**](ProgramComponent.md) | 项目组件列表 | [optional]
1818

docs/Model/Project.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ Name | Type | Description | Notes
1010
**enterpriseId** | **int** | 企业 id | [optional]
1111
**createdAt** | **string** | 仓库创建时间 | [optional]
1212
**updatedAt** | **string** | 仓库更新时间 | [optional]
13+
**securityHoleEnabled** | **bool** | 是否允许用户创建涉及敏感信息的任务 | [optional]
14+
**namespace** | [**\GiteeEnterprise\Model\ModelNamespace**](ModelNamespace.md) | 仓库挂载的空间 | [optional]
15+
**creator** | [**\GiteeEnterprise\Model\UserWithRemark**](UserWithRemark.md) | 仓库创建者 | [optional]
16+
**pathWithNamespace** | **string** | 个人空间地址以及仓库路径 | [optional]
17+
**nameWithNamespace** | **string** | 个人空间名称以及仓库名称 | [optional]
18+
**scanCheckRun** | **bool** | 仓库是否开了scan质量门禁 | [optional]
1319

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

src/Api/AdminLogsStatisticApi.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
/**
1313
* Gitee Open API
1414
*
15-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
15+
* Gitee Enterprise SDK for PHP
1616
*
17-
* OpenAPI spec version: 0.1.334
17+
* OpenAPI spec version: 0.1.335
1818
*
1919
* Generated by: https://github.com/swagger-api/swagger-codegen.git
20-
* Swagger Codegen version: 2.4.23
20+
* Swagger Codegen version: 2.4.32
2121
*/
2222

2323
/**

src/Api/CustomizeIssueApi.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
/**
1313
* Gitee Open API
1414
*
15-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
15+
* Gitee Enterprise SDK for PHP
1616
*
17-
* OpenAPI spec version: 0.1.334
17+
* OpenAPI spec version: 0.1.335
1818
*
1919
* Generated by: https://github.com/swagger-api/swagger-codegen.git
20-
* Swagger Codegen version: 2.4.23
20+
* Swagger Codegen version: 2.4.32
2121
*/
2222

2323
/**

src/Api/DeployKeyApi.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
/**
1313
* Gitee Open API
1414
*
15-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
15+
* Gitee Enterprise SDK for PHP
1616
*
17-
* OpenAPI spec version: 0.1.334
17+
* OpenAPI spec version: 0.1.335
1818
*
1919
* Generated by: https://github.com/swagger-api/swagger-codegen.git
20-
* Swagger Codegen version: 2.4.23
20+
* Swagger Codegen version: 2.4.32
2121
*/
2222

2323
/**

src/Api/DocNodesApi.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
/**
1313
* Gitee Open API
1414
*
15-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
15+
* Gitee Enterprise SDK for PHP
1616
*
17-
* OpenAPI spec version: 0.1.334
17+
* OpenAPI spec version: 0.1.335
1818
*
1919
* Generated by: https://github.com/swagger-api/swagger-codegen.git
20-
* Swagger Codegen version: 2.4.23
20+
* Swagger Codegen version: 2.4.32
2121
*/
2222

2323
/**

src/Api/DocsApi.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
/**
1313
* Gitee Open API
1414
*
15-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
15+
* Gitee Enterprise SDK for PHP
1616
*
17-
* OpenAPI spec version: 0.1.334
17+
* OpenAPI spec version: 0.1.335
1818
*
1919
* Generated by: https://github.com/swagger-api/swagger-codegen.git
20-
* Swagger Codegen version: 2.4.23
20+
* Swagger Codegen version: 2.4.32
2121
*/
2222

2323
/**

src/Api/EditorsApi.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
/**
1313
* Gitee Open API
1414
*
15-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
15+
* Gitee Enterprise SDK for PHP
1616
*
17-
* OpenAPI spec version: 0.1.334
17+
* OpenAPI spec version: 0.1.335
1818
*
1919
* Generated by: https://github.com/swagger-api/swagger-codegen.git
20-
* Swagger Codegen version: 2.4.23
20+
* Swagger Codegen version: 2.4.32
2121
*/
2222

2323
/**

0 commit comments

Comments
 (0)