mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
Remove /en slug in docs.github.com links (and stop VSCode from formatting on save) (#2573)
This commit is contained in:
10
.github/workflows/codeql-analysis.yml
vendored
10
.github/workflows/codeql-analysis.yml
vendored
@@ -48,20 +48,20 @@ jobs:
|
|||||||
# If you wish to specify custom queries, you can do so here or in a config file.
|
# If you wish to specify custom queries, you can do so here or in a config file.
|
||||||
# By default, queries listed here will override any specified in a config file.
|
# By default, queries listed here will override any specified in a config file.
|
||||||
# Prefix the list here with "+" to use these queries and those in the config file.
|
# Prefix the list here with "+" to use these queries and those in the config file.
|
||||||
|
|
||||||
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
|
# Details on CodeQL's query packs refer to : https://docs.github.com/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
|
||||||
# queries: security-extended,security-and-quality
|
# queries: security-extended,security-and-quality
|
||||||
|
|
||||||
|
|
||||||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||||
# If this step fails, then you should remove it and run the build manually (see below)
|
# If this step fails, then you should remove it and run the build manually (see below)
|
||||||
- name: Autobuild
|
- name: Autobuild
|
||||||
uses: github/codeql-action/autobuild@v2
|
uses: github/codeql-action/autobuild@v2
|
||||||
|
|
||||||
# ℹ️ Command-line programs to run using the OS shell.
|
# ℹ️ Command-line programs to run using the OS shell.
|
||||||
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
# 📚 See https://docs.github.com/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
||||||
|
|
||||||
# If the Autobuild fails above, remove it and uncomment the following three lines.
|
# If the Autobuild fails above, remove it and uncomment the following three lines.
|
||||||
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
|
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
|
||||||
|
|
||||||
# - run: |
|
# - run: |
|
||||||
|
|||||||
1
.vscode/settings.json
vendored
1
.vscode/settings.json
vendored
@@ -1,4 +1,5 @@
|
|||||||
{
|
{
|
||||||
|
"editor.formatOnSave": false,
|
||||||
"files.exclude": {
|
"files.exclude": {
|
||||||
"**/bin": true,
|
"**/bin": true,
|
||||||
"**/obj": true,
|
"**/obj": true,
|
||||||
|
|||||||
@@ -68,7 +68,7 @@
|
|||||||
/// A client for GitHub's Enterprise Pre-receive Hooks API
|
/// A client for GitHub's Enterprise Pre-receive Hooks API
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#pre-receive-hooks">Enterprise Pre-receive Hooks API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#pre-receive-hooks">Enterprise Pre-receive Hooks API documentation</a> for more information.
|
||||||
///</remarks>
|
///</remarks>
|
||||||
IObservableEnterprisePreReceiveHooksClient PreReceiveHook { get; }
|
IObservableEnterprisePreReceiveHooksClient PreReceiveHook { get; }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ namespace Octokit.Reactive
|
|||||||
/// A client for GitHub's Enterprise Pre-receive Hooks API
|
/// A client for GitHub's Enterprise Pre-receive Hooks API
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#pre-receive-hooks">Enterprise Pre-receive Hooks API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#pre-receive-hooks">Enterprise Pre-receive Hooks API documentation</a> for more information.
|
||||||
///</remarks>
|
///</remarks>
|
||||||
public interface IObservableEnterprisePreReceiveHooksClient
|
public interface IObservableEnterprisePreReceiveHooksClient
|
||||||
{
|
{
|
||||||
@@ -15,7 +15,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets all <see cref="PreReceiveHook"/>s.
|
/// Gets all <see cref="PreReceiveHook"/>s.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#list-pre-receive-hooks">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#list-pre-receive-hooks">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
IObservable<PreReceiveHook> GetAll();
|
IObservable<PreReceiveHook> GetAll();
|
||||||
@@ -24,7 +24,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets all <see cref="PreReceiveHook"/>s.
|
/// Gets all <see cref="PreReceiveHook"/>s.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#list-pre-receive-hooks">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#list-pre-receive-hooks">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
@@ -34,7 +34,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets a single <see cref="PreReceiveHook"/>.
|
/// Gets a single <see cref="PreReceiveHook"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#get-a-pre-receive-hook">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#get-a-pre-receive-hook">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="hookId">The id of the pre-receive hook</param>
|
/// <param name="hookId">The id of the pre-receive hook</param>
|
||||||
/// <exception cref="NotFoundException">Thrown when the specified <paramref name="hookId"/> does not exist.</exception>
|
/// <exception cref="NotFoundException">Thrown when the specified <paramref name="hookId"/> does not exist.</exception>
|
||||||
@@ -45,7 +45,7 @@ namespace Octokit.Reactive
|
|||||||
/// Creates a new <see cref="PreReceiveHook"/>.
|
/// Creates a new <see cref="PreReceiveHook"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#create-a-pre-receive-hook">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#create-a-pre-receive-hook">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="newPreReceiveHook">A description of the pre-receive hook to create</param>
|
/// <param name="newPreReceiveHook">A description of the pre-receive hook to create</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
@@ -55,7 +55,7 @@ namespace Octokit.Reactive
|
|||||||
/// Edits an existing <see cref="PreReceiveHook"/>.
|
/// Edits an existing <see cref="PreReceiveHook"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#update-a-pre-receive-hook">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#update-a-pre-receive-hook">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="hookId">The id of the pre-receive hook</param>
|
/// <param name="hookId">The id of the pre-receive hook</param>
|
||||||
/// <param name="updatePreReceiveHook">A description of the pre-receive hook to edit</param>
|
/// <param name="updatePreReceiveHook">A description of the pre-receive hook to edit</param>
|
||||||
@@ -67,7 +67,7 @@ namespace Octokit.Reactive
|
|||||||
/// Deletes an existing <see cref="PreReceiveHook"/>.
|
/// Deletes an existing <see cref="PreReceiveHook"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#delete-a-pre-receive-hook">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#delete-a-pre-receive-hook">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="hookId">The id of the pre-receive hook</param>
|
/// <param name="hookId">The id of the pre-receive hook</param>
|
||||||
/// <exception cref="NotFoundException">Thrown when the specified <paramref name="hookId"/> does not exist.</exception>
|
/// <exception cref="NotFoundException">Thrown when the specified <paramref name="hookId"/> does not exist.</exception>
|
||||||
|
|||||||
@@ -82,7 +82,7 @@
|
|||||||
/// A client for GitHub's Enterprise Pre-receive Hooks API
|
/// A client for GitHub's Enterprise Pre-receive Hooks API
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#pre-receive-hooks">Enterprise Pre-receive Hooks API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#pre-receive-hooks">Enterprise Pre-receive Hooks API documentation</a> for more information.
|
||||||
///</remarks>
|
///</remarks>
|
||||||
public IObservableEnterprisePreReceiveHooksClient PreReceiveHook { get; private set; }
|
public IObservableEnterprisePreReceiveHooksClient PreReceiveHook { get; private set; }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ namespace Octokit.Reactive
|
|||||||
/// A client for GitHub's Enterprise Pre-receive Hooks API
|
/// A client for GitHub's Enterprise Pre-receive Hooks API
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#pre-receive-hooks">Enterprise Pre-receive Hooks API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#pre-receive-hooks">Enterprise Pre-receive Hooks API documentation</a> for more information.
|
||||||
///</remarks>
|
///</remarks>
|
||||||
public class ObservableEnterprisePreReceiveHooksClient : IObservableEnterprisePreReceiveHooksClient
|
public class ObservableEnterprisePreReceiveHooksClient : IObservableEnterprisePreReceiveHooksClient
|
||||||
{
|
{
|
||||||
@@ -28,7 +28,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets all <see cref="PreReceiveHook"/>s.
|
/// Gets all <see cref="PreReceiveHook"/>s.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#list-pre-receive-hooks">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#list-pre-receive-hooks">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
public IObservable<PreReceiveHook> GetAll()
|
public IObservable<PreReceiveHook> GetAll()
|
||||||
@@ -40,7 +40,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets all <see cref="PreReceiveHook"/>s.
|
/// Gets all <see cref="PreReceiveHook"/>s.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#list-pre-receive-hooks">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#list-pre-receive-hooks">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
@@ -55,7 +55,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets a single <see cref="PreReceiveHook"/>.
|
/// Gets a single <see cref="PreReceiveHook"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#get-a-pre-receive-hook">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#get-a-pre-receive-hook">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="hookId">The id of the pre-receive hook</param>
|
/// <param name="hookId">The id of the pre-receive hook</param>
|
||||||
/// <exception cref="NotFoundException">Thrown when the specified <paramref name="hookId"/> does not exist.</exception>
|
/// <exception cref="NotFoundException">Thrown when the specified <paramref name="hookId"/> does not exist.</exception>
|
||||||
@@ -69,7 +69,7 @@ namespace Octokit.Reactive
|
|||||||
/// Creates a new <see cref="PreReceiveHook"/>.
|
/// Creates a new <see cref="PreReceiveHook"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#create-a-pre-receive-hook">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#create-a-pre-receive-hook">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="newPreReceiveHook">A description of the pre-receive hook to create</param>
|
/// <param name="newPreReceiveHook">A description of the pre-receive hook to create</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
@@ -84,7 +84,7 @@ namespace Octokit.Reactive
|
|||||||
/// Edits an existing <see cref="PreReceiveHook"/>.
|
/// Edits an existing <see cref="PreReceiveHook"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#update-a-pre-receive-hook">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#update-a-pre-receive-hook">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="hookId">The id of the pre-receive hook</param>
|
/// <param name="hookId">The id of the pre-receive hook</param>
|
||||||
/// <param name="updatePreReceiveHook">A description of the pre-receive hook to edit</param>
|
/// <param name="updatePreReceiveHook">A description of the pre-receive hook to edit</param>
|
||||||
@@ -101,7 +101,7 @@ namespace Octokit.Reactive
|
|||||||
/// Deletes an existing <see cref="PreReceiveHook"/>.
|
/// Deletes an existing <see cref="PreReceiveHook"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#delete-a-pre-receive-hook">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#delete-a-pre-receive-hook">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="hookId">The id of the pre-receive hook</param>
|
/// <param name="hookId">The id of the pre-receive hook</param>
|
||||||
/// <exception cref="NotFoundException">Thrown when the specified <paramref name="hookId"/> does not exist.</exception>
|
/// <exception cref="NotFoundException">Thrown when the specified <paramref name="hookId"/> does not exist.</exception>
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
IObservable<Reaction> GetAll(string owner, string name, int number);
|
IObservable<Reaction> GetAll(string owner, string name, int number);
|
||||||
|
|
||||||
@@ -58,7 +58,7 @@ namespace Octokit.Reactive
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment</remarks>
|
||||||
/// <param name="repositoryId">The owner of the repository</param>
|
/// <param name="repositoryId">The owner of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
IObservable<Reaction> GetAll(long repositoryId, int number);
|
IObservable<Reaction> GetAll(long repositoryId, int number);
|
||||||
|
|
||||||
@@ -75,7 +75,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Commit Comment
|
/// Deletes a reaction for a specified Commit Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-a-commit-comment-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-a-commit-comment-reaction</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="commentId">The comment id</param>
|
/// <param name="commentId">The comment id</param>
|
||||||
@@ -86,7 +86,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Commit Comment
|
/// Deletes a reaction for a specified Commit Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-a-commit-comment-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-a-commit-comment-reaction</remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="commentId">The comment id</param>
|
/// <param name="commentId">The comment id</param>
|
||||||
/// <param name="reactionId">The reaction id</param>
|
/// <param name="reactionId">The reaction id</param>
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
IObservable<Reaction> GetAll(string owner, string name, int number);
|
IObservable<Reaction> GetAll(string owner, string name, int number);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -46,7 +46,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
IObservable<Reaction> GetAll(string owner, string name, int number, ApiOptions options);
|
IObservable<Reaction> GetAll(string owner, string name, int number, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -54,7 +54,7 @@ namespace Octokit.Reactive
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
IObservable<Reaction> GetAll(long repositoryId, int number);
|
IObservable<Reaction> GetAll(long repositoryId, int number);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -63,13 +63,13 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
IObservable<Reaction> GetAll(long repositoryId, int number, ApiOptions options);
|
IObservable<Reaction> GetAll(long repositoryId, int number, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Issue Comment
|
/// Deletes a reaction for a specified Issue Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-an-issue-comment-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-an-issue-comment-reaction</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="commentId">The comment id</param>
|
/// <param name="commentId">The comment id</param>
|
||||||
@@ -80,7 +80,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Commit Comment
|
/// Deletes a reaction for a specified Commit Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-an-issue-comment-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-an-issue-comment-reaction</remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="commentId">The comment id</param>
|
/// <param name="commentId">The comment id</param>
|
||||||
/// <param name="reactionId">The reaction id</param>
|
/// <param name="reactionId">The reaction id</param>
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The issue id</param>
|
/// <param name="number">The issue id</param>
|
||||||
IObservable<Reaction> GetAll(string owner, string name, int number);
|
IObservable<Reaction> GetAll(string owner, string name, int number);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -27,7 +27,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The issue id</param>
|
/// <param name="number">The issue id</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
IObservable<Reaction> GetAll(string owner, string name, int number, ApiOptions options);
|
IObservable<Reaction> GetAll(string owner, string name, int number, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -35,7 +35,7 @@ namespace Octokit.Reactive
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The issue id</param>
|
/// <param name="number">The issue id</param>
|
||||||
IObservable<Reaction> GetAll(long repositoryId, int number);
|
IObservable<Reaction> GetAll(long repositoryId, int number);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -44,7 +44,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The issue id</param>
|
/// <param name="number">The issue id</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
IObservable<Reaction> GetAll(long repositoryId, int number, ApiOptions options);
|
IObservable<Reaction> GetAll(long repositoryId, int number, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -69,7 +69,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Issue
|
/// Deletes a reaction for a specified Issue
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-an-issue-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-an-issue-reaction</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="issueNumber">The issue number</param>
|
/// <param name="issueNumber">The issue number</param>
|
||||||
@@ -80,7 +80,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Issue
|
/// Deletes a reaction for a specified Issue
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-an-issue-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-an-issue-reaction</remarks>
|
||||||
/// <param name="repositoryId">The owner of the repository</param>
|
/// <param name="repositoryId">The owner of the repository</param>
|
||||||
/// <param name="issueNumber">The issue number</param>
|
/// <param name="issueNumber">The issue number</param>
|
||||||
/// <param name="reactionId">The reaction id</param>
|
/// <param name="reactionId">The reaction id</param>
|
||||||
|
|||||||
@@ -253,7 +253,7 @@ namespace Octokit.Reactive
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
/// See the <a href="http://developer.github.com/v3/orgs/members/#publicize-a-users-membership">API documentation</a>
|
/// See the <a href="http://developer.github.com/v3/orgs/members/#publicize-a-users-membership">API documentation</a>
|
||||||
/// for more information.
|
/// for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="org">The login for the organization</param>
|
/// <param name="org">The login for the organization</param>
|
||||||
@@ -289,7 +289,7 @@ namespace Octokit.Reactive
|
|||||||
IObservable<OrganizationMembership> GetOrganizationMembership(string org, string user);
|
IObservable<OrganizationMembership> GetOrganizationMembership(string org, string user);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Add a user to the organization or update the user's role withing the organization.
|
/// Add a user to the organization or update the user's role withing the organization.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
@@ -345,7 +345,7 @@ namespace Octokit.Reactive
|
|||||||
/// List failed organization invitations.
|
/// List failed organization invitations.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/orgs/members#list-failed-organization-invitations">API Documentation</a>
|
/// See the <a href="https://docs.github.com/rest/orgs/members#list-failed-organization-invitations">API Documentation</a>
|
||||||
/// for more information.
|
/// for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="org">The login for the organization</param>
|
/// <param name="org">The login for the organization</param>
|
||||||
@@ -356,7 +356,7 @@ namespace Octokit.Reactive
|
|||||||
/// List failed organization invitations.
|
/// List failed organization invitations.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/orgs/members#list-failed-organization-invitations">API Documentation</a>
|
/// See the <a href="https://docs.github.com/rest/orgs/members#list-failed-organization-invitations">API Documentation</a>
|
||||||
/// for more information.
|
/// for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="org">The login for the organization</param>
|
/// <param name="org">The login for the organization</param>
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
IObservable<Reaction> GetAll(string owner, string name, int number);
|
IObservable<Reaction> GetAll(string owner, string name, int number);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -27,7 +27,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
IObservable<Reaction> GetAll(string owner, string name, int number, ApiOptions options);
|
IObservable<Reaction> GetAll(string owner, string name, int number, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -35,7 +35,7 @@ namespace Octokit.Reactive
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
IObservable<Reaction> GetAll(long repositoryId, int number);
|
IObservable<Reaction> GetAll(long repositoryId, int number);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -44,7 +44,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
IObservable<Reaction> GetAll(long repositoryId, int number, ApiOptions options);
|
IObservable<Reaction> GetAll(long repositoryId, int number, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -69,7 +69,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Pull Request comment
|
/// Deletes a reaction for a specified Pull Request comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-a-pull-request-comment-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-a-pull-request-comment-reaction</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="commentId">The comment id</param>
|
/// <param name="commentId">The comment id</param>
|
||||||
@@ -80,7 +80,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Pull Request comment
|
/// Deletes a reaction for a specified Pull Request comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-a-pull-request-comment-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-a-pull-request-comment-reaction</remarks>
|
||||||
/// <param name="repositoryId">The owner of the repository</param>
|
/// <param name="repositoryId">The owner of the repository</param>
|
||||||
/// <param name="commentId">The comment id</param>
|
/// <param name="commentId">The comment id</param>
|
||||||
/// <param name="reactionId">The reaction id</param>
|
/// <param name="reactionId">The reaction id</param>
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ namespace Octokit.Reactive
|
|||||||
/// Generates a <see cref="GeneratedReleaseNotes"/>s for the specified repository with auto generated notes.
|
/// Generates a <see cref="GeneratedReleaseNotes"/>s for the specified repository with auto generated notes.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/releases/releases#generate-release-notes-content-for-a-release">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="owner">The repository's owner</param>
|
/// <param name="owner">The repository's owner</param>
|
||||||
/// <param name="name">The repository's name</param>
|
/// <param name="name">The repository's name</param>
|
||||||
@@ -29,7 +29,7 @@ namespace Octokit.Reactive
|
|||||||
/// Generates a <see cref="GeneratedReleaseNotes"/>s for the specified repository with auto generated notes.
|
/// Generates a <see cref="GeneratedReleaseNotes"/>s for the specified repository with auto generated notes.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/releases/releases#generate-release-notes-content-for-a-release">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="data">The request for generating release notes</param>
|
/// <param name="data">The request for generating release notes</param>
|
||||||
|
|||||||
@@ -76,7 +76,7 @@ namespace Octokit.Reactive
|
|||||||
/// Checks if vulnerability alerts are enabled for the specified repository.
|
/// Checks if vulnerability alerts are enabled for the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/rest/reference/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="owner">The current owner of the repository</param>
|
/// <param name="owner">The current owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
@@ -209,7 +209,7 @@ namespace Octokit.Reactive
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/statuses/">Commit Status API documentation</a> for more
|
/// See the <a href="http://developer.github.com/v3/repos/statuses/">Commit Status API documentation</a> for more
|
||||||
/// details. Also check out the <a href="https://github.com/blog/1227-commit-status-api">blog post</a>
|
/// details. Also check out the <a href="https://github.com/blog/1227-commit-status-api">blog post</a>
|
||||||
/// that announced this feature.
|
/// that announced this feature.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
IObservableCommitStatusClient Status { get; }
|
IObservableCommitStatusClient Status { get; }
|
||||||
@@ -249,7 +249,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// A client for GitHub's Repository Forks API.
|
/// A client for GitHub's Repository Forks API.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>See <a href="http://developer.github.com/v3/repos/forks/">Forks API documentation</a> for more information.</remarks>
|
/// <remarks>See <a href="http://developer.github.com/v3/repos/forks/">Forks API documentation</a> for more information.</remarks>
|
||||||
IObservableRepositoryForksClient Forks { get; }
|
IObservableRepositoryForksClient Forks { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -583,7 +583,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets all topics for the specified owner and repository name.
|
/// Gets all topics for the specified owner and repository name.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
@@ -595,7 +595,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets all topics for the specified owner and repository name.
|
/// Gets all topics for the specified owner and repository name.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
@@ -606,7 +606,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets all topics for the specified repository ID.
|
/// Gets all topics for the specified repository ID.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
@@ -617,7 +617,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets all topics for the specified repository ID.
|
/// Gets all topics for the specified repository ID.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <returns>All topics associated with the repository.</returns>
|
/// <returns>All topics associated with the repository.</returns>
|
||||||
@@ -627,7 +627,7 @@ namespace Octokit.Reactive
|
|||||||
/// Replaces all topics for the specified repository.
|
/// Replaces all topics for the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#replace-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#replace-all-repository-topics">API documentation</a> for more details
|
||||||
///
|
///
|
||||||
/// This is a replacement operation; it is not additive. To clear repository topics, for example, you could specify an empty list of topics here.
|
/// This is a replacement operation; it is not additive. To clear repository topics, for example, you could specify an empty list of topics here.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
@@ -640,7 +640,7 @@ namespace Octokit.Reactive
|
|||||||
/// Replaces all topics for the specified repository.
|
/// Replaces all topics for the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#replace-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#replace-all-repository-topics">API documentation</a> for more details
|
||||||
///
|
///
|
||||||
/// This is a replacement operation; it is not additive. To clear repository topics, for example, you could specify an empty list of topics here.
|
/// This is a replacement operation; it is not additive. To clear repository topics, for example, you could specify an empty list of topics here.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
|
|||||||
@@ -63,7 +63,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public IObservable<Reaction> GetAll(string owner, string name, int number)
|
public IObservable<Reaction> GetAll(string owner, string name, int number)
|
||||||
{
|
{
|
||||||
@@ -77,7 +77,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public IObservable<Reaction> GetAll(string owner, string name, int number, ApiOptions options)
|
public IObservable<Reaction> GetAll(string owner, string name, int number, ApiOptions options)
|
||||||
{
|
{
|
||||||
@@ -93,7 +93,7 @@ namespace Octokit.Reactive
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment</remarks>
|
||||||
/// <param name="repositoryId">The owner of the repository</param>
|
/// <param name="repositoryId">The owner of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public IObservable<Reaction> GetAll(long repositoryId, int number)
|
public IObservable<Reaction> GetAll(long repositoryId, int number)
|
||||||
{
|
{
|
||||||
@@ -118,7 +118,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Commit Comment
|
/// Deletes a reaction for a specified Commit Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-a-commit-comment-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-a-commit-comment-reaction</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="commentId">The comment id</param>
|
/// <param name="commentId">The comment id</param>
|
||||||
@@ -136,7 +136,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Commit Comment
|
/// Deletes a reaction for a specified Commit Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-a-commit-comment-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-a-commit-comment-reaction</remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="commentId">The comment id</param>
|
/// <param name="commentId">The comment id</param>
|
||||||
/// <param name="reactionid">The reaction id</param>
|
/// <param name="reactionid">The reaction id</param>
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
public IObservable<Reaction> GetAll(string owner, string name, int number)
|
public IObservable<Reaction> GetAll(string owner, string name, int number)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
||||||
@@ -77,7 +77,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
public IObservable<Reaction> GetAll(string owner, string name, int number, ApiOptions options)
|
public IObservable<Reaction> GetAll(string owner, string name, int number, ApiOptions options)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
||||||
@@ -92,7 +92,7 @@ namespace Octokit.Reactive
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
public IObservable<Reaction> GetAll(long repositoryId, int number)
|
public IObservable<Reaction> GetAll(long repositoryId, int number)
|
||||||
{
|
{
|
||||||
return GetAll(repositoryId, number, ApiOptions.None);
|
return GetAll(repositoryId, number, ApiOptions.None);
|
||||||
@@ -104,7 +104,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
public IObservable<Reaction> GetAll(long repositoryId, int number, ApiOptions options)
|
public IObservable<Reaction> GetAll(long repositoryId, int number, ApiOptions options)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNull(options, nameof(options));
|
Ensure.ArgumentNotNull(options, nameof(options));
|
||||||
@@ -115,7 +115,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Issue Comment
|
/// Deletes a reaction for a specified Issue Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-an-issue-comment-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-an-issue-comment-reaction</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="commentId">The comment id</param>
|
/// <param name="commentId">The comment id</param>
|
||||||
@@ -133,7 +133,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Commit Comment
|
/// Deletes a reaction for a specified Commit Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-an-issue-comment-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-an-issue-comment-reaction</remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="commentId">The comment id</param>
|
/// <param name="commentId">The comment id</param>
|
||||||
/// <param name="reactionId">The reaction id</param>
|
/// <param name="reactionId">The reaction id</param>
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The issue id</param>
|
/// <param name="number">The issue id</param>
|
||||||
public IObservable<Reaction> GetAll(string owner, string name, int number)
|
public IObservable<Reaction> GetAll(string owner, string name, int number)
|
||||||
{
|
{
|
||||||
return GetAll(owner, name, number, ApiOptions.None);
|
return GetAll(owner, name, number, ApiOptions.None);
|
||||||
@@ -43,7 +43,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The issue id</param>
|
/// <param name="number">The issue id</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
public IObservable<Reaction> GetAll(string owner, string name, int number, ApiOptions options)
|
public IObservable<Reaction> GetAll(string owner, string name, int number, ApiOptions options)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
||||||
@@ -58,7 +58,7 @@ namespace Octokit.Reactive
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The issue id</param>
|
/// <param name="number">The issue id</param>
|
||||||
public IObservable<Reaction> GetAll(long repositoryId, int number)
|
public IObservable<Reaction> GetAll(long repositoryId, int number)
|
||||||
{
|
{
|
||||||
return GetAll(repositoryId, number, ApiOptions.None);
|
return GetAll(repositoryId, number, ApiOptions.None);
|
||||||
@@ -70,7 +70,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The issue id</param>
|
/// <param name="number">The issue id</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
public IObservable<Reaction> GetAll(long repositoryId, int number, ApiOptions options)
|
public IObservable<Reaction> GetAll(long repositoryId, int number, ApiOptions options)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNull(options, nameof(options));
|
Ensure.ArgumentNotNull(options, nameof(options));
|
||||||
@@ -112,7 +112,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Issue
|
/// Deletes a reaction for a specified Issue
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-an-issue-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-an-issue-reaction</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="issueNumber">The issue number</param>
|
/// <param name="issueNumber">The issue number</param>
|
||||||
@@ -130,7 +130,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Issue
|
/// Deletes a reaction for a specified Issue
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-an-issue-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-an-issue-reaction</remarks>
|
||||||
/// <param name="repositoryId">The owner of the repository</param>
|
/// <param name="repositoryId">The owner of the repository</param>
|
||||||
/// <param name="issueNumber">The issue number</param>
|
/// <param name="issueNumber">The issue number</param>
|
||||||
/// <param name="reactionId">The reaction id</param>
|
/// <param name="reactionId">The reaction id</param>
|
||||||
|
|||||||
@@ -343,7 +343,7 @@ namespace Octokit.Reactive
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
/// See the <a href="http://developer.github.com/v3/orgs/members/#publicize-a-users-membership">API documentation</a>
|
/// See the <a href="http://developer.github.com/v3/orgs/members/#publicize-a-users-membership">API documentation</a>
|
||||||
/// for more information.
|
/// for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="org">The login for the organization</param>
|
/// <param name="org">The login for the organization</param>
|
||||||
@@ -397,7 +397,7 @@ namespace Octokit.Reactive
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Add a user to the organization or update the user's role withing the organization.
|
/// Add a user to the organization or update the user's role withing the organization.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
@@ -477,7 +477,7 @@ namespace Octokit.Reactive
|
|||||||
/// List failed organization invitations.
|
/// List failed organization invitations.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/orgs/members#list-failed-organization-invitations">API Documentation</a>
|
/// See the <a href="https://docs.github.com/rest/orgs/members#list-failed-organization-invitations">API Documentation</a>
|
||||||
/// for more information.
|
/// for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="org">The login for the organization</param>
|
/// <param name="org">The login for the organization</param>
|
||||||
@@ -493,7 +493,7 @@ namespace Octokit.Reactive
|
|||||||
/// List failed organization invitations.
|
/// List failed organization invitations.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/orgs/members#list-failed-organization-invitations">API Documentation</a>
|
/// See the <a href="https://docs.github.com/rest/orgs/members#list-failed-organization-invitations">API Documentation</a>
|
||||||
/// for more information.
|
/// for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="org">The login for the organization</param>
|
/// <param name="org">The login for the organization</param>
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
public IObservable<Reaction> GetAll(string owner, string name, int number)
|
public IObservable<Reaction> GetAll(string owner, string name, int number)
|
||||||
{
|
{
|
||||||
return GetAll(owner, name, number, ApiOptions.None);
|
return GetAll(owner, name, number, ApiOptions.None);
|
||||||
@@ -50,7 +50,7 @@ namespace Octokit.Reactive
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
public IObservable<Reaction> GetAll(long repositoryId, int number)
|
public IObservable<Reaction> GetAll(long repositoryId, int number)
|
||||||
{
|
{
|
||||||
return GetAll(repositoryId, number, ApiOptions.None);
|
return GetAll(repositoryId, number, ApiOptions.None);
|
||||||
@@ -62,7 +62,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
public IObservable<Reaction> GetAll(long repositoryId, int number, ApiOptions options)
|
public IObservable<Reaction> GetAll(long repositoryId, int number, ApiOptions options)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNull(options, nameof(options));
|
Ensure.ArgumentNotNull(options, nameof(options));
|
||||||
@@ -104,7 +104,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Pull Request comment
|
/// Deletes a reaction for a specified Pull Request comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-a-pull-request-comment-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-a-pull-request-comment-reaction</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="commentId">The comment id</param>
|
/// <param name="commentId">The comment id</param>
|
||||||
@@ -122,7 +122,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Pull Request comment
|
/// Deletes a reaction for a specified Pull Request comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-a-pull-request-comment-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-a-pull-request-comment-reaction</remarks>
|
||||||
/// <param name="repositoryId">The owner of the repository</param>
|
/// <param name="repositoryId">The owner of the repository</param>
|
||||||
/// <param name="commentId">The comment id</param>
|
/// <param name="commentId">The comment id</param>
|
||||||
/// <param name="reactionId">The reaction id</param>
|
/// <param name="reactionId">The reaction id</param>
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ namespace Octokit.Reactive
|
|||||||
/// Generates a <see cref="GeneratedReleaseNotes"/>s for the specified repository with auto generated notes.
|
/// Generates a <see cref="GeneratedReleaseNotes"/>s for the specified repository with auto generated notes.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/releases/releases#generate-release-notes-content-for-a-release">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="owner">The repository's owner</param>
|
/// <param name="owner">The repository's owner</param>
|
||||||
/// <param name="name">The repository's name</param>
|
/// <param name="name">The repository's name</param>
|
||||||
@@ -48,7 +48,7 @@ namespace Octokit.Reactive
|
|||||||
/// Generates a <see cref="GeneratedReleaseNotes"/>s for the specified repository with auto generated notes.
|
/// Generates a <see cref="GeneratedReleaseNotes"/>s for the specified repository with auto generated notes.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/releases/releases#generate-release-notes-content-for-a-release">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="data">The request for generating release notes</param>
|
/// <param name="data">The request for generating release notes</param>
|
||||||
|
|||||||
@@ -155,7 +155,7 @@ namespace Octokit.Reactive
|
|||||||
/// Checks if vulnerability alerts are enabled for the specified repository.
|
/// Checks if vulnerability alerts are enabled for the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/rest/reference/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="owner">The current owner of the repository</param>
|
/// <param name="owner">The current owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
@@ -889,7 +889,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets all topics for the specified owner and repository name.
|
/// Gets all topics for the specified owner and repository name.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
@@ -904,7 +904,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets all topics for the specified owner and repository name.
|
/// Gets all topics for the specified owner and repository name.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
@@ -918,7 +918,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets all topics for the specified repository ID.
|
/// Gets all topics for the specified repository ID.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
@@ -932,7 +932,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets all topics for the specified repository ID.
|
/// Gets all topics for the specified repository ID.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <returns>All topics associated with the repository.</returns>
|
/// <returns>All topics associated with the repository.</returns>
|
||||||
@@ -945,7 +945,7 @@ namespace Octokit.Reactive
|
|||||||
/// Replaces all topics for the specified repository.
|
/// Replaces all topics for the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#replace-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#replace-all-repository-topics">API documentation</a> for more details
|
||||||
///
|
///
|
||||||
/// This is a replacement operation; it is not additive. To clear repository topics, for example, you could specify an empty list of topics here.
|
/// This is a replacement operation; it is not additive. To clear repository topics, for example, you could specify an empty list of topics here.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
@@ -961,7 +961,7 @@ namespace Octokit.Reactive
|
|||||||
/// Replaces all topics for the specified repository.
|
/// Replaces all topics for the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#replace-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#replace-all-repository-topics">API documentation</a> for more details
|
||||||
///
|
///
|
||||||
/// This is a replacement operation; it is not additive. To clear repository topics, for example, you could specify an empty list of topics here.
|
/// This is a replacement operation; it is not additive. To clear repository topics, for example, you could specify an empty list of topics here.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
|
|||||||
@@ -116,7 +116,7 @@ namespace Octokit
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Commit Comment
|
/// Deletes a reaction for a specified Commit Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-a-commit-comment-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-a-commit-comment-reaction</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="commentId">The comment id</param>
|
/// <param name="commentId">The comment id</param>
|
||||||
@@ -134,7 +134,7 @@ namespace Octokit
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Commit Comment
|
/// Deletes a reaction for a specified Commit Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-a-commit-comment-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-a-commit-comment-reaction</remarks>
|
||||||
/// <param name="repositoryId">The owner of the repository</param>
|
/// <param name="repositoryId">The owner of the repository</param>
|
||||||
/// <param name="commentId">The comment id</param>
|
/// <param name="commentId">The comment id</param>
|
||||||
/// <param name="reactionId">The reaction id</param>
|
/// <param name="reactionId">The reaction id</param>
|
||||||
|
|||||||
@@ -84,7 +84,7 @@
|
|||||||
/// A client for GitHub's Enterprise Pre-receive Hooks API
|
/// A client for GitHub's Enterprise Pre-receive Hooks API
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#pre-receive-hooks">Enterprise Pre-receive Hooks API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#pre-receive-hooks">Enterprise Pre-receive Hooks API documentation</a> for more information.
|
||||||
///</remarks>
|
///</remarks>
|
||||||
public IEnterprisePreReceiveHooksClient PreReceiveHook { get; private set; }
|
public IEnterprisePreReceiveHooksClient PreReceiveHook { get; private set; }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ namespace Octokit
|
|||||||
/// A client for GitHub's Enterprise Pre-receive Hooks API
|
/// A client for GitHub's Enterprise Pre-receive Hooks API
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#pre-receive-hooks">Enterprise Pre-receive Hooks API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#pre-receive-hooks">Enterprise Pre-receive Hooks API documentation</a> for more information.
|
||||||
///</remarks>
|
///</remarks>
|
||||||
public class EnterprisePreReceiveHooksClient : ApiClient, IEnterprisePreReceiveHooksClient
|
public class EnterprisePreReceiveHooksClient : ApiClient, IEnterprisePreReceiveHooksClient
|
||||||
{
|
{
|
||||||
@@ -23,7 +23,7 @@ namespace Octokit
|
|||||||
/// Gets all <see cref="PreReceiveHook"/>s.
|
/// Gets all <see cref="PreReceiveHook"/>s.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#list-pre-receive-hooks">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#list-pre-receive-hooks">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
[ManualRoute("GET", "/admin/pre-receive-hooks")]
|
[ManualRoute("GET", "/admin/pre-receive-hooks")]
|
||||||
@@ -36,7 +36,7 @@ namespace Octokit
|
|||||||
/// Gets all <see cref="PreReceiveHook"/>s.
|
/// Gets all <see cref="PreReceiveHook"/>s.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#list-pre-receive-hooks">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#list-pre-receive-hooks">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
@@ -51,7 +51,7 @@ namespace Octokit
|
|||||||
/// Gets a single <see cref="PreReceiveHook"/>.
|
/// Gets a single <see cref="PreReceiveHook"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#get-a-pre-receive-hook">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#get-a-pre-receive-hook">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="hookId">The id of the pre-receive hook</param>
|
/// <param name="hookId">The id of the pre-receive hook</param>
|
||||||
/// <exception cref="NotFoundException">Thrown when the specified <paramref name="hookId"/> does not exist.</exception>
|
/// <exception cref="NotFoundException">Thrown when the specified <paramref name="hookId"/> does not exist.</exception>
|
||||||
@@ -67,7 +67,7 @@ namespace Octokit
|
|||||||
/// Creates a new <see cref="PreReceiveHook"/>.
|
/// Creates a new <see cref="PreReceiveHook"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#create-a-pre-receive-hook">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#create-a-pre-receive-hook">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="newPreReceiveHook">A description of the pre-receive hook to create</param>
|
/// <param name="newPreReceiveHook">A description of the pre-receive hook to create</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
@@ -84,7 +84,7 @@ namespace Octokit
|
|||||||
/// Edits an existing <see cref="PreReceiveHook"/>.
|
/// Edits an existing <see cref="PreReceiveHook"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#update-a-pre-receive-hook">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#update-a-pre-receive-hook">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="hookId">The id of the pre-receive hook</param>
|
/// <param name="hookId">The id of the pre-receive hook</param>
|
||||||
/// <param name="updatePreReceiveHook">A description of the pre-receive hook to edit</param>
|
/// <param name="updatePreReceiveHook">A description of the pre-receive hook to edit</param>
|
||||||
@@ -103,7 +103,7 @@ namespace Octokit
|
|||||||
/// Deletes an existing <see cref="PreReceiveHook"/>.
|
/// Deletes an existing <see cref="PreReceiveHook"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#delete-a-pre-receive-hook">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#delete-a-pre-receive-hook">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="hookId">The id of the pre-receive hook</param>
|
/// <param name="hookId">The id of the pre-receive hook</param>
|
||||||
/// <exception cref="NotFoundException">Thrown when the specified <paramref name="hookId"/> does not exist.</exception>
|
/// <exception cref="NotFoundException">Thrown when the specified <paramref name="hookId"/> does not exist.</exception>
|
||||||
|
|||||||
@@ -68,7 +68,7 @@
|
|||||||
/// A client for GitHub's Enterprise Pre-receive Hooks API
|
/// A client for GitHub's Enterprise Pre-receive Hooks API
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server@3.3/rest/reference/enterprise-admin#pre-receive-hooks">Enterprise Pre-receive Hooks API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#pre-receive-hooks">Enterprise Pre-receive Hooks API documentation</a> for more information.
|
||||||
///</remarks>
|
///</remarks>
|
||||||
IEnterprisePreReceiveHooksClient PreReceiveHook { get; }
|
IEnterprisePreReceiveHooksClient PreReceiveHook { get; }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ namespace Octokit
|
|||||||
/// A client for GitHub's Enterprise Pre-receive Hooks API
|
/// A client for GitHub's Enterprise Pre-receive Hooks API
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#pre-receive-hooks">Enterprise Pre-receive Hooks API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#pre-receive-hooks">Enterprise Pre-receive Hooks API documentation</a> for more information.
|
||||||
///</remarks>
|
///</remarks>
|
||||||
public interface IEnterprisePreReceiveHooksClient
|
public interface IEnterprisePreReceiveHooksClient
|
||||||
{
|
{
|
||||||
@@ -15,7 +15,7 @@ namespace Octokit
|
|||||||
/// Gets all <see cref="PreReceiveHook"/>s.
|
/// Gets all <see cref="PreReceiveHook"/>s.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#list-pre-receive-hooks">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#list-pre-receive-hooks">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
Task<IReadOnlyList<PreReceiveHook>> GetAll();
|
Task<IReadOnlyList<PreReceiveHook>> GetAll();
|
||||||
@@ -24,7 +24,7 @@ namespace Octokit
|
|||||||
/// Gets all <see cref="PreReceiveHook"/>s.
|
/// Gets all <see cref="PreReceiveHook"/>s.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#list-pre-receive-hooks">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#list-pre-receive-hooks">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
@@ -34,7 +34,7 @@ namespace Octokit
|
|||||||
/// Gets a single <see cref="PreReceiveHook"/>.
|
/// Gets a single <see cref="PreReceiveHook"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#get-a-pre-receive-hook">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#get-a-pre-receive-hook">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="hookId">The id of the pre-receive hook</param>
|
/// <param name="hookId">The id of the pre-receive hook</param>
|
||||||
/// <exception cref="NotFoundException">Thrown when the specified <paramref name="hookId"/> does not exist.</exception>
|
/// <exception cref="NotFoundException">Thrown when the specified <paramref name="hookId"/> does not exist.</exception>
|
||||||
@@ -45,7 +45,7 @@ namespace Octokit
|
|||||||
/// Creates a new <see cref="PreReceiveHook"/>.
|
/// Creates a new <see cref="PreReceiveHook"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#create-a-pre-receive-hook">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#create-a-pre-receive-hook">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="newPreReceiveHook">A description of the pre-receive hook to create</param>
|
/// <param name="newPreReceiveHook">A description of the pre-receive hook to create</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
@@ -55,7 +55,7 @@ namespace Octokit
|
|||||||
/// Edits an existing <see cref="PreReceiveHook"/>.
|
/// Edits an existing <see cref="PreReceiveHook"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#update-a-pre-receive-hook">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#update-a-pre-receive-hook">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="hookId">The id of the pre-receive hook</param>
|
/// <param name="hookId">The id of the pre-receive hook</param>
|
||||||
/// <param name="updatePreReceiveHook">A description of the pre-receive hook to edit</param>
|
/// <param name="updatePreReceiveHook">A description of the pre-receive hook to edit</param>
|
||||||
@@ -67,11 +67,11 @@ namespace Octokit
|
|||||||
/// Deletes an existing <see cref="PreReceiveHook"/>.
|
/// Deletes an existing <see cref="PreReceiveHook"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/enterprise-server/rest/reference/enterprise-admin#delete-a-pre-receive-hook">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#delete-a-pre-receive-hook">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="hookId">The id of the pre-receive hook</param>
|
/// <param name="hookId">The id of the pre-receive hook</param>
|
||||||
/// <exception cref="NotFoundException">Thrown when the specified <paramref name="hookId"/> does not exist.</exception>
|
/// <exception cref="NotFoundException">Thrown when the specified <paramref name="hookId"/> does not exist.</exception>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
Task Delete(long hookId);
|
Task Delete(long hookId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ namespace Octokit
|
|||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
Task<IReadOnlyList<Reaction>> GetAll(string owner, string name, int number);
|
Task<IReadOnlyList<Reaction>> GetAll(string owner, string name, int number);
|
||||||
|
|
||||||
@@ -58,7 +58,7 @@ namespace Octokit
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment</remarks>
|
||||||
/// <param name="repositoryId">The owner of the repository</param>
|
/// <param name="repositoryId">The owner of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
Task<IReadOnlyList<Reaction>> GetAll(long repositoryId, int number);
|
Task<IReadOnlyList<Reaction>> GetAll(long repositoryId, int number);
|
||||||
|
|
||||||
@@ -68,14 +68,14 @@ namespace Octokit
|
|||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment</remarks>
|
||||||
/// <param name="repositoryId">The owner of the repository</param>
|
/// <param name="repositoryId">The owner of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
Task<IReadOnlyList<Reaction>> GetAll(long repositoryId, int number, ApiOptions options);
|
Task<IReadOnlyList<Reaction>> GetAll(long repositoryId, int number, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Commit Comment
|
/// Deletes a reaction for a specified Commit Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-a-commit-comment-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-a-commit-comment-reaction</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="commentId">The comment id</param>
|
/// <param name="commentId">The comment id</param>
|
||||||
@@ -86,7 +86,7 @@ namespace Octokit
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Commit Comment
|
/// Deletes a reaction for a specified Commit Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-a-commit-comment-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-a-commit-comment-reaction</remarks>
|
||||||
/// <param name="repositoryId">The owner of the repository</param>
|
/// <param name="repositoryId">The owner of the repository</param>
|
||||||
/// <param name="commentId">The comment id</param>
|
/// <param name="commentId">The comment id</param>
|
||||||
/// <param name="reactionId">The reaction id</param>
|
/// <param name="reactionId">The reaction id</param>
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ namespace Octokit
|
|||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
Task<IReadOnlyList<Reaction>> GetAll(string owner, string name, int number);
|
Task<IReadOnlyList<Reaction>> GetAll(string owner, string name, int number);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -46,7 +46,7 @@ namespace Octokit
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
Task<IReadOnlyList<Reaction>> GetAll(string owner, string name, int number, ApiOptions options);
|
Task<IReadOnlyList<Reaction>> GetAll(string owner, string name, int number, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -54,7 +54,7 @@ namespace Octokit
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
Task<IReadOnlyList<Reaction>> GetAll(long repositoryId, int number);
|
Task<IReadOnlyList<Reaction>> GetAll(long repositoryId, int number);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -63,13 +63,13 @@ namespace Octokit
|
|||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
Task<IReadOnlyList<Reaction>> GetAll(long repositoryId, int number, ApiOptions options);
|
Task<IReadOnlyList<Reaction>> GetAll(long repositoryId, int number, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Commit Comment
|
/// Deletes a reaction for a specified Commit Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-a-commit-comment-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-a-commit-comment-reaction</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="commentId">The comment id</param>
|
/// <param name="commentId">The comment id</param>
|
||||||
@@ -80,7 +80,7 @@ namespace Octokit
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Commit Comment
|
/// Deletes a reaction for a specified Commit Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-a-commit-comment-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-a-commit-comment-reaction</remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="commentId">The comment id</param>
|
/// <param name="commentId">The comment id</param>
|
||||||
/// <param name="reactionId">The reaction id</param>
|
/// <param name="reactionId">The reaction id</param>
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ namespace Octokit
|
|||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The issue id</param>
|
/// <param name="number">The issue id</param>
|
||||||
Task<IReadOnlyList<Reaction>> GetAll(string owner, string name, int number);
|
Task<IReadOnlyList<Reaction>> GetAll(string owner, string name, int number);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -27,7 +27,7 @@ namespace Octokit
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The issue id</param>
|
/// <param name="number">The issue id</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
Task<IReadOnlyList<Reaction>> GetAll(string owner, string name, int number, ApiOptions options);
|
Task<IReadOnlyList<Reaction>> GetAll(string owner, string name, int number, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -35,7 +35,7 @@ namespace Octokit
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The issue id</param>
|
/// <param name="number">The issue id</param>
|
||||||
Task<IReadOnlyList<Reaction>> GetAll(long repositoryId, int number);
|
Task<IReadOnlyList<Reaction>> GetAll(long repositoryId, int number);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -44,7 +44,7 @@ namespace Octokit
|
|||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The issue id</param>
|
/// <param name="number">The issue id</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
Task<IReadOnlyList<Reaction>> GetAll(long repositoryId, int number, ApiOptions options);
|
Task<IReadOnlyList<Reaction>> GetAll(long repositoryId, int number, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -69,7 +69,7 @@ namespace Octokit
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Issue
|
/// Deletes a reaction for a specified Issue
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-an-issue-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-an-issue-reaction</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="issueNumber">The issue number</param>
|
/// <param name="issueNumber">The issue number</param>
|
||||||
@@ -80,7 +80,7 @@ namespace Octokit
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Issue
|
/// Deletes a reaction for a specified Issue
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-an-issue-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-an-issue-reaction</remarks>
|
||||||
/// <param name="repositoryId">The owner of the repository</param>
|
/// <param name="repositoryId">The owner of the repository</param>
|
||||||
/// <param name="issueNumber">The issue number</param>
|
/// <param name="issueNumber">The issue number</param>
|
||||||
/// <param name="reactionId">The reaction id</param>
|
/// <param name="reactionId">The reaction id</param>
|
||||||
|
|||||||
@@ -259,7 +259,7 @@ namespace Octokit
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
/// See the <a href="http://developer.github.com/v3/orgs/members/#publicize-a-users-membership">API documentation</a>
|
/// See the <a href="http://developer.github.com/v3/orgs/members/#publicize-a-users-membership">API documentation</a>
|
||||||
/// for more information.
|
/// for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="org">The login for the organization</param>
|
/// <param name="org">The login for the organization</param>
|
||||||
@@ -295,7 +295,7 @@ namespace Octokit
|
|||||||
Task<OrganizationMembership> GetOrganizationMembership(string org, string user);
|
Task<OrganizationMembership> GetOrganizationMembership(string org, string user);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Add a user to the organization or update the user's role withing the organization.
|
/// Add a user to the organization or update the user's role withing the organization.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
@@ -351,7 +351,7 @@ namespace Octokit
|
|||||||
/// List failed organization invitations.
|
/// List failed organization invitations.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/orgs/members#list-failed-organization-invitations">API Documentation</a>
|
/// See the <a href="https://docs.github.com/rest/orgs/members#list-failed-organization-invitations">API Documentation</a>
|
||||||
/// for more information.
|
/// for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="org">The login for the organization</param>
|
/// <param name="org">The login for the organization</param>
|
||||||
@@ -362,7 +362,7 @@ namespace Octokit
|
|||||||
/// List failed organization invitations.
|
/// List failed organization invitations.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/orgs/members#list-failed-organization-invitations">API Documentation</a>
|
/// See the <a href="https://docs.github.com/rest/orgs/members#list-failed-organization-invitations">API Documentation</a>
|
||||||
/// for more information.
|
/// for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="org">The login for the organization</param>
|
/// <param name="org">The login for the organization</param>
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ namespace Octokit
|
|||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
Task<IReadOnlyList<Reaction>> GetAll(string owner, string name, int number);
|
Task<IReadOnlyList<Reaction>> GetAll(string owner, string name, int number);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -27,7 +27,7 @@ namespace Octokit
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
Task<IReadOnlyList<Reaction>> GetAll(string owner, string name, int number, ApiOptions options);
|
Task<IReadOnlyList<Reaction>> GetAll(string owner, string name, int number, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -35,7 +35,7 @@ namespace Octokit
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
Task<IReadOnlyList<Reaction>> GetAll(long repositoryId, int number);
|
Task<IReadOnlyList<Reaction>> GetAll(long repositoryId, int number);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -44,7 +44,7 @@ namespace Octokit
|
|||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
Task<IReadOnlyList<Reaction>> GetAll(long repositoryId, int number, ApiOptions options);
|
Task<IReadOnlyList<Reaction>> GetAll(long repositoryId, int number, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -69,7 +69,7 @@ namespace Octokit
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Pull Request comment
|
/// Deletes a reaction for a specified Pull Request comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-a-pull-request-comment-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-a-pull-request-comment-reaction</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="commentId">The issue id</param>
|
/// <param name="commentId">The issue id</param>
|
||||||
@@ -80,7 +80,7 @@ namespace Octokit
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Pull Request comment
|
/// Deletes a reaction for a specified Pull Request comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-a-pull-request-comment-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-a-pull-request-comment-reaction</remarks>
|
||||||
/// <param name="repositoryId">The owner of the repository</param>
|
/// <param name="repositoryId">The owner of the repository</param>
|
||||||
/// <param name="commentId">The issue id</param>
|
/// <param name="commentId">The issue id</param>
|
||||||
/// <param name="reactionId">The reaction id</param>
|
/// <param name="reactionId">The reaction id</param>
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ namespace Octokit
|
|||||||
/// Generates a <see cref="GeneratedReleaseNotes"/>s for the specified repository with auto generated notes.
|
/// Generates a <see cref="GeneratedReleaseNotes"/>s for the specified repository with auto generated notes.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/releases/releases#generate-release-notes-content-for-a-release">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="owner">The repository's owner</param>
|
/// <param name="owner">The repository's owner</param>
|
||||||
/// <param name="name">The repository's name</param>
|
/// <param name="name">The repository's name</param>
|
||||||
@@ -29,7 +29,7 @@ namespace Octokit
|
|||||||
/// Generates a <see cref="GeneratedReleaseNotes"/>s for the specified repository with auto generated notes.
|
/// Generates a <see cref="GeneratedReleaseNotes"/>s for the specified repository with auto generated notes.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/releases/releases#generate-release-notes-content-for-a-release">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="data">The request for generating release notes</param>
|
/// <param name="data">The request for generating release notes</param>
|
||||||
|
|||||||
@@ -137,7 +137,7 @@ namespace Octokit
|
|||||||
/// Checks if vulnerability alerts are enabled for the specified repository.
|
/// Checks if vulnerability alerts are enabled for the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/rest/reference/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="owner">The current owner of the repository</param>
|
/// <param name="owner">The current owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
@@ -303,7 +303,7 @@ namespace Octokit
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/statuses/">Commit Status API documentation</a> for more
|
/// See the <a href="http://developer.github.com/v3/repos/statuses/">Commit Status API documentation</a> for more
|
||||||
/// details. Also check out the <a href="https://github.com/blog/1227-commit-status-api">blog post</a>
|
/// details. Also check out the <a href="https://github.com/blog/1227-commit-status-api">blog post</a>
|
||||||
/// that announced this feature.
|
/// that announced this feature.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
ICommitStatusClient Status { get; }
|
ICommitStatusClient Status { get; }
|
||||||
@@ -317,7 +317,7 @@ namespace Octokit
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// A client for GitHub's Repository Forks API.
|
/// A client for GitHub's Repository Forks API.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>See <a href="http://developer.github.com/v3/repos/forks/">Forks API documentation</a> for more information.</remarks>
|
/// <remarks>See <a href="http://developer.github.com/v3/repos/forks/">Forks API documentation</a> for more information.</remarks>
|
||||||
IRepositoryForksClient Forks { get; }
|
IRepositoryForksClient Forks { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -647,7 +647,7 @@ namespace Octokit
|
|||||||
/// Gets all topics for the specified owner and repository name.
|
/// Gets all topics for the specified owner and repository name.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
@@ -659,7 +659,7 @@ namespace Octokit
|
|||||||
/// Gets all topics for the specified owner and repository name.
|
/// Gets all topics for the specified owner and repository name.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
@@ -670,7 +670,7 @@ namespace Octokit
|
|||||||
/// Gets all topics for the specified repository ID.
|
/// Gets all topics for the specified repository ID.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
@@ -681,7 +681,7 @@ namespace Octokit
|
|||||||
/// Gets all topics for the specified repository ID.
|
/// Gets all topics for the specified repository ID.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <returns>All topics associated with the repository.</returns>
|
/// <returns>All topics associated with the repository.</returns>
|
||||||
@@ -691,7 +691,7 @@ namespace Octokit
|
|||||||
/// Replaces all topics for the specified repository.
|
/// Replaces all topics for the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#replace-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#replace-all-repository-topics">API documentation</a> for more details
|
||||||
///
|
///
|
||||||
/// This is a replacement operation; it is not additive. To clear repository topics, for example, you could specify an empty list of topics here.
|
/// This is a replacement operation; it is not additive. To clear repository topics, for example, you could specify an empty list of topics here.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
@@ -704,7 +704,7 @@ namespace Octokit
|
|||||||
/// Replaces all topics for the specified repository.
|
/// Replaces all topics for the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#replace-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#replace-all-repository-topics">API documentation</a> for more details
|
||||||
///
|
///
|
||||||
/// This is a replacement operation; it is not additive. To clear repository topics, for example, you could specify an empty list of topics here.
|
/// This is a replacement operation; it is not additive. To clear repository topics, for example, you could specify an empty list of topics here.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
|
|||||||
@@ -110,7 +110,7 @@ namespace Octokit
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Issue
|
/// Deletes a reaction for a specified Issue
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-an-issue-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-an-issue-reaction</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="issueNumber">The issue id</param>
|
/// <param name="issueNumber">The issue id</param>
|
||||||
@@ -128,7 +128,7 @@ namespace Octokit
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Issue
|
/// Deletes a reaction for a specified Issue
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-an-issue-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-an-issue-reaction</remarks>
|
||||||
/// <param name="repositoryId">The owner of the repository</param>
|
/// <param name="repositoryId">The owner of the repository</param>
|
||||||
/// <param name="issueNumber">The issue id</param>
|
/// <param name="issueNumber">The issue id</param>
|
||||||
/// <param name="reactionId">The reaction id</param>
|
/// <param name="reactionId">The reaction id</param>
|
||||||
|
|||||||
@@ -572,7 +572,7 @@ namespace Octokit
|
|||||||
/// List failed organization invitations.
|
/// List failed organization invitations.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/orgs/members#list-failed-organization-invitations">API Documentation</a>
|
/// See the <a href="https://docs.github.com/rest/orgs/members#list-failed-organization-invitations">API Documentation</a>
|
||||||
/// for more information.
|
/// for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="org">The login for the organization</param>
|
/// <param name="org">The login for the organization</param>
|
||||||
@@ -589,7 +589,7 @@ namespace Octokit
|
|||||||
/// List failed organization invitations.
|
/// List failed organization invitations.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/orgs/members#list-failed-organization-invitations">API Documentation</a>
|
/// See the <a href="https://docs.github.com/rest/orgs/members#list-failed-organization-invitations">API Documentation</a>
|
||||||
/// for more information.
|
/// for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="org">The login for the organization</param>
|
/// <param name="org">The login for the organization</param>
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ namespace Octokit
|
|||||||
/// A client for GitHub's Packages API.
|
/// A client for GitHub's Packages API.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/packages">Packages API documentation</a> for more details.
|
/// See the <a href="https://docs.github.com/rest/packages">Packages API documentation</a> for more details.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
public class PackagesClient : ApiClient, IPackagesClient
|
public class PackagesClient : ApiClient, IPackagesClient
|
||||||
{
|
{
|
||||||
@@ -55,7 +55,7 @@ namespace Octokit
|
|||||||
Ensure.ArgumentNotNullOrEmptyString(packageName, nameof(packageName));
|
Ensure.ArgumentNotNullOrEmptyString(packageName, nameof(packageName));
|
||||||
|
|
||||||
var route = ApiUrls.PackageOrg(org, packageType, packageName);
|
var route = ApiUrls.PackageOrg(org, packageType, packageName);
|
||||||
|
|
||||||
return ApiConnection.Get<Package>(route);
|
return ApiConnection.Get<Package>(route);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -95,7 +95,7 @@ namespace Octokit
|
|||||||
Ensure.ArgumentNotNullOrEmptyString(packageName, nameof(packageName));
|
Ensure.ArgumentNotNullOrEmptyString(packageName, nameof(packageName));
|
||||||
|
|
||||||
var route = ApiUrls.PackageRestoreOrg(org, packageType, packageName);
|
var route = ApiUrls.PackageRestoreOrg(org, packageType, packageName);
|
||||||
|
|
||||||
return ApiConnection.Post(route);
|
return ApiConnection.Post(route);
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|||||||
@@ -110,7 +110,7 @@ namespace Octokit
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Pull Request comment
|
/// Deletes a reaction for a specified Pull Request comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-a-pull-request-comment-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-a-pull-request-comment-reaction</remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="commentId">The comment id</param>
|
/// <param name="commentId">The comment id</param>
|
||||||
@@ -128,7 +128,7 @@ namespace Octokit
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a reaction for a specified Pull Request comment
|
/// Deletes a reaction for a specified Pull Request comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://docs.github.com/en/rest/reactions#delete-a-pull-request-comment-reaction</remarks>
|
/// <remarks>https://docs.github.com/rest/reactions#delete-a-pull-request-comment-reaction</remarks>
|
||||||
/// <param name="repositoryId">The owner of the repository</param>
|
/// <param name="repositoryId">The owner of the repository</param>
|
||||||
/// <param name="commentId">The comment id</param>
|
/// <param name="commentId">The comment id</param>
|
||||||
/// <param name="reactionId">The reaction id</param>
|
/// <param name="reactionId">The reaction id</param>
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ namespace Octokit
|
|||||||
/// Generates a <see cref="GeneratedReleaseNotes"/>s for the specified repository with auto generated notes.
|
/// Generates a <see cref="GeneratedReleaseNotes"/>s for the specified repository with auto generated notes.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/releases/releases#generate-release-notes-content-for-a-release">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="owner">The repository's owner</param>
|
/// <param name="owner">The repository's owner</param>
|
||||||
/// <param name="name">The repository's name</param>
|
/// <param name="name">The repository's name</param>
|
||||||
@@ -45,7 +45,7 @@ namespace Octokit
|
|||||||
/// Generates a <see cref="GeneratedReleaseNotes"/>s for the specified repository with auto generated notes.
|
/// Generates a <see cref="GeneratedReleaseNotes"/>s for the specified repository with auto generated notes.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/releases/releases#generate-release-notes-content-for-a-release">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The Id of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="data">The request for generating release notes</param>
|
/// <param name="data">The request for generating release notes</param>
|
||||||
|
|||||||
@@ -211,7 +211,7 @@ namespace Octokit
|
|||||||
/// Checks if vulnerability alerts are enabled for the specified repository.
|
/// Checks if vulnerability alerts are enabled for the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository">API documentation</a> for more information.
|
/// See the <a href="https://docs.github.com/rest/reference/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="owner">The current owner of the repository</param>
|
/// <param name="owner">The current owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
@@ -307,7 +307,7 @@ namespace Octokit
|
|||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
/// <returns>A <see cref="IReadOnlyList{Repository}"/> of <see cref="Repository"/>.</returns>
|
/// <returns>A <see cref="IReadOnlyList{Repository}"/> of <see cref="Repository"/>.</returns>
|
||||||
[ManualRoute("GET", "/repositories")]
|
[ManualRoute("GET", "/repositories")]
|
||||||
public Task<IReadOnlyList<Repository>> GetAllPublic()
|
public Task<IReadOnlyList<Repository>> GetAllPublic()
|
||||||
{
|
{
|
||||||
@@ -749,7 +749,7 @@ namespace Octokit
|
|||||||
/// Gets all topics for the specified repository ID.
|
/// Gets all topics for the specified repository ID.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
@@ -768,7 +768,7 @@ namespace Octokit
|
|||||||
/// Gets all topics for the specified repository ID.
|
/// Gets all topics for the specified repository ID.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <returns>All topics associated with the repository.</returns>
|
/// <returns>All topics associated with the repository.</returns>
|
||||||
@@ -783,7 +783,7 @@ namespace Octokit
|
|||||||
/// Gets all topics for the specified owner and repository name.
|
/// Gets all topics for the specified owner and repository name.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
@@ -806,7 +806,7 @@ namespace Octokit
|
|||||||
/// Gets all topics for the specified owner and repository name.
|
/// Gets all topics for the specified owner and repository name.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#get-all-repository-topics">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
@@ -822,7 +822,7 @@ namespace Octokit
|
|||||||
/// Replaces all topics for the specified repository.
|
/// Replaces all topics for the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#replace-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#replace-all-repository-topics">API documentation</a> for more details
|
||||||
///
|
///
|
||||||
/// This is a replacement operation; it is not additive. To clear repository topics, for example, you could specify an empty list of topics here.
|
/// This is a replacement operation; it is not additive. To clear repository topics, for example, you could specify an empty list of topics here.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
@@ -847,7 +847,7 @@ namespace Octokit
|
|||||||
/// Replaces all topics for the specified repository.
|
/// Replaces all topics for the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://docs.github.com/en/rest/reference/repos#replace-all-repository-topics">API documentation</a> for more details
|
/// See the <a href="https://docs.github.com/rest/reference/repos#replace-all-repository-topics">API documentation</a> for more details
|
||||||
///
|
///
|
||||||
/// This is a replacement operation; it is not additive. To clear repository topics, for example, you could specify an empty list of topics here.
|
/// This is a replacement operation; it is not additive. To clear repository topics, for example, you could specify an empty list of topics here.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ namespace Octokit
|
|||||||
/// This occurs when GitHub perceives misuse of the API. You may get this if
|
/// This occurs when GitHub perceives misuse of the API. You may get this if
|
||||||
/// you are polling heavily, creating content rapidly or making concurrent requests.
|
/// you are polling heavily, creating content rapidly or making concurrent requests.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// <para>See https://docs.github.com/en/rest/overview/resources-in-the-rest-api#secondary-rate-limits for more details.</para>
|
/// <para>See https://docs.github.com/rest/overview/resources-in-the-rest-api#secondary-rate-limits for more details.</para>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Serializable]
|
[Serializable]
|
||||||
[SuppressMessage("Microsoft.Design", "CA1032:ImplementStandardExceptionConstructors",
|
[SuppressMessage("Microsoft.Design", "CA1032:ImplementStandardExceptionConstructors",
|
||||||
|
|||||||
@@ -230,7 +230,7 @@ namespace Octokit
|
|||||||
/// Access GitHub's Pacakges API.
|
/// Access GitHub's Pacakges API.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// Refer to the API documentation for more information: https://docs.github.com/en/rest/packages
|
/// Refer to the API documentation for more information: https://docs.github.com/rest/packages
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
public IPackagesClient Packages { get; private set; }
|
public IPackagesClient Packages { get; private set; }
|
||||||
|
|
||||||
|
|||||||
@@ -91,7 +91,7 @@ namespace Octokit
|
|||||||
/// Access GitHub's Pacakges API.
|
/// Access GitHub's Pacakges API.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// Refer to the API documentation for more information: https://docs.github.com/en/rest/packages
|
/// Refer to the API documentation for more information: https://docs.github.com/rest/packages
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
IPackagesClient Packages { get; }
|
IPackagesClient Packages { get; }
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ namespace Octokit
|
|||||||
/// Used to generate release notes for a given tag.
|
/// Used to generate release notes for a given tag.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// API: https://docs.github.com/en/rest/releases/releases#generate-release-notes-content-for-a-release
|
/// API: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
||||||
public class GenerateReleaseNotesRequest
|
public class GenerateReleaseNotesRequest
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ namespace Octokit
|
|||||||
/// Used to retrieve generated release notes.
|
/// Used to retrieve generated release notes.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// API: https://docs.github.com/en/rest/releases/releases#generate-release-notes-content-for-a-release
|
/// API: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release
|
||||||
/// The generated release notes are not saved anywhere.
|
/// The generated release notes are not saved anywhere.
|
||||||
/// They are intended to be generated and used when creating a new release.
|
/// They are intended to be generated and used when creating a new release.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
|
|||||||
Reference in New Issue
Block a user