changedInput schema / properties / authorIds / description
Previous value: -"Creator user ID list, multiple separated by commas"New value: +"创建者用户ID列表,多个以逗号分隔。示例:'62c795xxxb468af8' 或 '62c795xxxb468af8,62c795xxxb468af9'"
changedInput schema / properties / createdAfter / description
Previous value: -"End creation time, time format is ISO 8601, for example: 2019-03-15T08:00:00Z"New value: +"截止创建时间,时间格式为ISO 8601。查询创建时间不晚于此时间的合并请求。示例:'2024-04-05T15:30:45Z'"
changedInput schema / properties / createdBefore / description
Previous value: -"Start creation time, time format is ISO 8601, for example: 2019-03-15T08:00:00Z"New value: +"起始创建时间,时间格式为ISO 8601。查询创建时间不早于此时间的合并请求。示例:'2024-04-05T15:30:45Z'"
changedInput schema / properties / orderBy / description
Previous value: -"Sort field. Possible values: created_at (creation time), updated_at (update time, default)"New value: +"排序字段。created_at - 按创建时间排序;updated_at - 按更新时间排序(默认)。示例:'updated_at'"
addedInput schema / properties / orderBy / enum
Added value: +[
+ "created_at",
+ "updated_at"
+]
changedInput schema / properties / organizationId / description
Previous value: -"Organization ID, can be found in the basic information page of the organization admin console"New value: +"组织ID,可在组织管理后台的基本信息页面获取。示例:'60d54f3daccf2bbd6659f3ad'"
changedInput schema / properties / page / description
Previous value: -"Page number"New value: +"页码,从1开始。示例:1"
changedInput schema / properties / perPage / description
Previous value: -"Items per page"New value: +"每页大小,默认20。示例:20"
changedInput schema / properties / projectIds / description
Previous value: -"Repository ID or a combination of organization ID and repository name list, for example: 2835387 or organizationId%2Frepo-name (Note: slashes need to be URL encoded as %2F), multiple separated by commas"New value: +"代码库ID或者路径列表,多个以逗号分隔。示例:'2813489,2813490' 或 '2813489,60de7a6852743a5162b5f957%2FDemoRepo'(注意:斜杠需要URL编码为%2F)"
changedInput schema / properties / reviewerIds / description
Previous value: -"Reviewer user ID list, multiple separated by commas"New value: +"评审人用户ID列表,多个以逗号分隔。示例:'62c795xxxb468af8' 或 '62c795xxxb468af8,62c795xxxb468af9'"
changedInput schema / properties / search / description
Previous value: -"Title keyword search"New value: +"标题关键字搜索,用于在合并请求标题中搜索。示例:'mr title' 或 'bug fix'"
changedInput schema / properties / sort / description
Previous value: -"Sort order. Possible values: asc (ascending), desc (descending, default)"New value: +"排序方式。asc - 升序;desc - 降序(默认)。示例:'desc'"
addedInput schema / properties / sort / enum
Added value: +[
+ "asc",
+ "desc"
+]
addedInput schema / properties / state / anyOf
Added value: +[
+ {
+ "enum": [
+ "opened",
+ "merged",
+ "closed"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
changedInput schema / properties / state / description
Previous value: -"Merge request filter status. Possible values: opened, merged, closed. Default is null, which queries all statuses"New value: +"合并请求筛选状态。opened - 已开启;merged - 已合并;closed - 已关闭。默认为null,即查询全部状态。示例:'opened'"
removedInput schema / properties / state / type
Removed value: -[
- "string",
- "null"
-]