You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "position of the comment in the diff",
920
920
},
921
921
"line": map[string]interface{}{
922
-
"type": "number",
922
+
"type": []string{"number", "null"},
923
923
"description": "line number in the file to comment on. For multi-line comments, the end of the line range",
924
924
},
925
925
"side": map[string]interface{}{
926
-
"type": "string",
926
+
"type": []string{"string", "null"},
927
927
"description": "The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range. (LEFT or RIGHT)",
928
928
},
929
929
"start_line": map[string]interface{}{
930
-
"type": "number",
930
+
"type": []string{"number", "null"},
931
931
"description": "The first line of the range to which the comment refers. Required for multi-line comments.",
932
932
},
933
933
"start_side": map[string]interface{}{
934
-
"type": "string",
934
+
"type": []string{"string", "null"},
935
935
"description": "The side of the diff on which the start line resides for multi-line comments. (LEFT or RIGHT)",
0 commit comments