@@ -17,60 +17,60 @@ public interface IObservableCommitCommentReactionsClient
17
17
/// <remarks>https://developer.github.com/v3/reactions/#create-reaction-for-a-commit-comment</remarks>
18
18
/// <param name="owner">The owner of the repository</param>
19
19
/// <param name="name">The name of the repository</param>
20
- /// <param name="number ">The comment id</param>
20
+ /// <param name="commentId ">The comment id</param>
21
21
/// <param name="reaction">The reaction to create </param>
22
22
/// <returns></returns>
23
- IObservable < Reaction > Create ( string owner , string name , int number , NewReaction reaction ) ;
23
+ IObservable < Reaction > Create ( string owner , string name , long commentId , NewReaction reaction ) ;
24
24
25
25
/// <summary>
26
26
/// Creates a reaction for a specified Commit Comment
27
27
/// </summary>
28
28
/// <remarks>https://developer.github.com/v3/reactions/#create-reaction-for-a-commit-comment</remarks>
29
29
/// <param name="repositoryId">The Id of the repository</param>
30
- /// <param name="number ">The comment id</param>
30
+ /// <param name="commentId ">The comment id</param>
31
31
/// <param name="reaction">The reaction to create </param>
32
32
/// <returns></returns>
33
- IObservable < Reaction > Create ( long repositoryId , int number , NewReaction reaction ) ;
33
+ IObservable < Reaction > Create ( long repositoryId , long commentId , NewReaction reaction ) ;
34
34
35
35
/// <summary>
36
36
/// List reactions for a specified Commit Comment
37
37
/// </summary>
38
38
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment</remarks>
39
39
/// <param name="owner">The owner of the repository</param>
40
40
/// <param name="name">The name of the repository</param>
41
- /// <param name="number ">The comment id</param>
41
+ /// <param name="commentId ">The comment id</param>
42
42
/// <returns></returns>
43
- IObservable < Reaction > GetAll ( string owner , string name , int number ) ;
43
+ IObservable < Reaction > GetAll ( string owner , string name , long commentId ) ;
44
44
45
45
/// <summary>
46
46
/// List reactions for a specified Commit Comment
47
47
/// </summary>
48
48
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment</remarks>
49
49
/// <param name="owner">The owner of the repository</param>
50
50
/// <param name="name">The name of the repository</param>
51
- /// <param name="number ">The comment id</param>
51
+ /// <param name="commentId ">The comment id</param>
52
52
/// <param name="options">Options for changing the API response</param>
53
53
/// <returns></returns>
54
- IObservable < Reaction > GetAll ( string owner , string name , int number , ApiOptions options ) ;
54
+ IObservable < Reaction > GetAll ( string owner , string name , long commentId , ApiOptions options ) ;
55
55
56
56
/// <summary>
57
57
/// List reactions for a specified Commit Comment
58
58
/// </summary>
59
59
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment</remarks>
60
60
/// <param name="repositoryId">The owner of the repository</param>
61
- /// <param name="number ">The comment id</param>
61
+ /// <param name="commentId ">The comment id</param>
62
62
/// <returns></returns>
63
- IObservable < Reaction > GetAll ( long repositoryId , int number ) ;
63
+ IObservable < Reaction > GetAll ( long repositoryId , long commentId ) ;
64
64
65
65
/// <summary>
66
66
/// List reactions for a specified Commit Comment
67
67
/// </summary>
68
68
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment</remarks>
69
69
/// <param name="repositoryId">The owner of the repository</param>
70
- /// <param name="number ">The comment id</param>
70
+ /// <param name="commentId ">The comment id</param>
71
71
/// <param name="options">Options for changing the API response</param>
72
72
/// <returns></returns>
73
- IObservable < Reaction > GetAll ( long repositoryId , int number , ApiOptions options ) ;
73
+ IObservable < Reaction > GetAll ( long repositoryId , long commentId , ApiOptions options ) ;
74
74
75
75
/// <summary>
76
76
/// Deletes a reaction for a specified Commit Comment
@@ -81,7 +81,7 @@ public interface IObservableCommitCommentReactionsClient
81
81
/// <param name="commentId">The comment id</param>
82
82
/// <param name="reactionId">The reaction id</param>
83
83
/// <returns></returns>
84
- IObservable < Unit > Delete ( string owner , string name , int commentId , int reactionId ) ;
84
+ IObservable < Unit > Delete ( string owner , string name , long commentId , long reactionId ) ;
85
85
86
86
/// <summary>
87
87
/// Deletes a reaction for a specified Commit Comment
@@ -91,6 +91,6 @@ public interface IObservableCommitCommentReactionsClient
91
91
/// <param name="commentId">The comment id</param>
92
92
/// <param name="reactionId">The reaction id</param>
93
93
/// <returns></returns>
94
- IObservable < Unit > Delete ( long repositoryId , int commentId , int reactionId ) ;
94
+ IObservable < Unit > Delete ( long repositoryId , long commentId , long reactionId ) ;
95
95
}
96
96
}
0 commit comments