changedInput schema / properties / commentType / description
Previous value: -"Comment type. Possible values: GLOBAL_COMMENT, INLINE_COMMENT"New value: +"评论类型。GLOBAL_COMMENT - 全局评论;INLINE_COMMENT - 行内评论"
addedInput schema / properties / commentType / enum
Added value: +[
+ "GLOBAL_COMMENT",
+ "INLINE_COMMENT"
+]
changedInput schema / properties / filePath / description
Previous value: -"Filter by file path (for inline comments)"New value: +"文件路径过滤,仅用于行内评论。可以过滤特定文件的评论。示例:'/src/main/java/com/example/MyClass.java' 或 'src/utils/helper.ts'"
changedInput schema / properties / filePath / type
Previous value: -[
- "string",
- "null"
-]New value: +"string"
changedInput schema / properties / localId / description
Previous value: -"Change request local ID"New value: +"合并请求局部ID,表示代码库中第几个合并请求。示例:'1' 或 '42'"
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'"
removedInput schema / properties / patchSetBizIds / anyOf
Removed value: -[
- {
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- {
- "type": "null"
- }
-]
changedInput schema / properties / patchSetBizIds / description
Previous value: -"Associated version ID list, each comment is associated with a version, indicating which version the comment was posted on, for global comments, it's associated with the latest merge source version"New value: +"关联版本ID列表,每个评论都关联一个版本,表示该评论是在哪个版本上发布的。对于全局评论,关联的是最新合并源版本。示例:['bf117304dfe44d5d9b1132f348edf92e', '537367017a9841738ac4269fbf6aacbe']"
addedInput schema / properties / patchSetBizIds / items
Added value: +{
+ "type": "string"
+}
addedInput schema / properties / patchSetBizIds / type
Added value: +"array"
changedInput schema / properties / repositoryId / description
Previous value: -"Repository ID or a combination of organization ID and repository name, for example: 2835387 or organizationId%2Frepo-name (Note: slashes need to be URL encoded as %2F)"New value: +"代码库ID或者URL-Encoder编码的全路径。示例:'2835387' 或 '60de7a6852743a5162b5f957%2FDemoRepo'(注意:斜杠需要URL编码为%2F)"
changedInput schema / properties / resolved / description
Previous value: -"Whether marked as resolved"New value: +"是否已解决。true - 只查询已解决的评论;false - 只查询未解决的评论(默认值)"
changedInput schema / properties / state / description
Previous value: -"Comment state. Possible values: OPENED, DRAFT"New value: +"评论状态。OPENED - 已发布的评论;DRAFT - 草稿评论"
addedInput schema / properties / state / enum
Added value: +[
+ "OPENED",
+ "DRAFT"
+]