diff --git a/Octokit.GraphQL/Model/AbortQueuedMigrationsInput.cs b/Octokit.GraphQL/Model/AbortQueuedMigrationsInput.cs
index 8c49e519..9606cd25 100644
--- a/Octokit.GraphQL/Model/AbortQueuedMigrationsInput.cs
+++ b/Octokit.GraphQL/Model/AbortQueuedMigrationsInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class AbortQueuedMigrationsInput
{
///
- /// The ID of the organization that is running the migrations.
+ /// A unique identifier for the client performing the mutation.
///
- public ID OwnerId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the organization that is running the migrations.
///
- public string ClientMutationId { get; set; }
+ public ID OwnerId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/AbortRepositoryMigrationInput.cs b/Octokit.GraphQL/Model/AbortRepositoryMigrationInput.cs
index cff96e3a..f84c50db 100644
--- a/Octokit.GraphQL/Model/AbortRepositoryMigrationInput.cs
+++ b/Octokit.GraphQL/Model/AbortRepositoryMigrationInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class AbortRepositoryMigrationInput
{
///
- /// The ID of the migration to be aborted.
+ /// A unique identifier for the client performing the mutation.
///
- public ID MigrationId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the migration to be aborted.
///
- public string ClientMutationId { get; set; }
+ public ID MigrationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/AcceptEnterpriseAdministratorInvitationInput.cs b/Octokit.GraphQL/Model/AcceptEnterpriseAdministratorInvitationInput.cs
index d22f3576..76c6b9e5 100644
--- a/Octokit.GraphQL/Model/AcceptEnterpriseAdministratorInvitationInput.cs
+++ b/Octokit.GraphQL/Model/AcceptEnterpriseAdministratorInvitationInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class AcceptEnterpriseAdministratorInvitationInput
{
///
- /// The id of the invitation being accepted
+ /// A unique identifier for the client performing the mutation.
///
- public ID InvitationId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The id of the invitation being accepted
///
- public string ClientMutationId { get; set; }
+ public ID InvitationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/AcceptTopicSuggestionInput.cs b/Octokit.GraphQL/Model/AcceptTopicSuggestionInput.cs
index cd198196..770ae35f 100644
--- a/Octokit.GraphQL/Model/AcceptTopicSuggestionInput.cs
+++ b/Octokit.GraphQL/Model/AcceptTopicSuggestionInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class AcceptTopicSuggestionInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the repository.
/// **Upcoming Change on 2024-04-01 UTC**
@@ -23,10 +28,5 @@ public class AcceptTopicSuggestionInput
/// **Reason:** Suggested topics are no longer supported
///
public string Name { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/AddAssigneesToAssignableInput.cs b/Octokit.GraphQL/Model/AddAssigneesToAssignableInput.cs
index d4af0260..d92e6b5a 100644
--- a/Octokit.GraphQL/Model/AddAssigneesToAssignableInput.cs
+++ b/Octokit.GraphQL/Model/AddAssigneesToAssignableInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class AddAssigneesToAssignableInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The id of the assignable object to add assignees to.
///
@@ -17,10 +22,5 @@ public class AddAssigneesToAssignableInput
/// The id of users to add as assignees.
///
public IEnumerable AssigneeIds { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/AddCommentInput.cs b/Octokit.GraphQL/Model/AddCommentInput.cs
index 9bafc149..d95021cb 100644
--- a/Octokit.GraphQL/Model/AddCommentInput.cs
+++ b/Octokit.GraphQL/Model/AddCommentInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class AddCommentInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the subject to modify.
///
@@ -17,10 +22,5 @@ public class AddCommentInput
/// The contents of the comment.
///
public string Body { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/AddDiscussionCommentInput.cs b/Octokit.GraphQL/Model/AddDiscussionCommentInput.cs
index c4477d24..9c605c2f 100644
--- a/Octokit.GraphQL/Model/AddDiscussionCommentInput.cs
+++ b/Octokit.GraphQL/Model/AddDiscussionCommentInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class AddDiscussionCommentInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the discussion to comment on.
///
@@ -22,10 +27,5 @@ public class AddDiscussionCommentInput
/// The contents of the comment.
///
public string Body { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/AddDiscussionPollVoteInput.cs b/Octokit.GraphQL/Model/AddDiscussionPollVoteInput.cs
index 6c916d03..a0af83c0 100644
--- a/Octokit.GraphQL/Model/AddDiscussionPollVoteInput.cs
+++ b/Octokit.GraphQL/Model/AddDiscussionPollVoteInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class AddDiscussionPollVoteInput
{
///
- /// The Node ID of the discussion poll option to vote for.
+ /// A unique identifier for the client performing the mutation.
///
- public ID PollOptionId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The Node ID of the discussion poll option to vote for.
///
- public string ClientMutationId { get; set; }
+ public ID PollOptionId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/AddEnterpriseOrganizationMemberInput.cs b/Octokit.GraphQL/Model/AddEnterpriseOrganizationMemberInput.cs
index 5fa70c8e..d57edf11 100644
--- a/Octokit.GraphQL/Model/AddEnterpriseOrganizationMemberInput.cs
+++ b/Octokit.GraphQL/Model/AddEnterpriseOrganizationMemberInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class AddEnterpriseOrganizationMemberInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the enterprise which owns the organization.
///
@@ -27,10 +32,5 @@ public class AddEnterpriseOrganizationMemberInput
/// The role to assign the users in the organization
///
public OrganizationMemberRole? Role { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/AddEnterpriseSupportEntitlementInput.cs b/Octokit.GraphQL/Model/AddEnterpriseSupportEntitlementInput.cs
index d79ca0f1..a1f60e66 100644
--- a/Octokit.GraphQL/Model/AddEnterpriseSupportEntitlementInput.cs
+++ b/Octokit.GraphQL/Model/AddEnterpriseSupportEntitlementInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class AddEnterpriseSupportEntitlementInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the Enterprise which the admin belongs to.
///
@@ -17,10 +22,5 @@ public class AddEnterpriseSupportEntitlementInput
/// The login of a member who will receive the support entitlement.
///
public string Login { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/AddLabelsToLabelableInput.cs b/Octokit.GraphQL/Model/AddLabelsToLabelableInput.cs
index 0ce651a0..deda774e 100644
--- a/Octokit.GraphQL/Model/AddLabelsToLabelableInput.cs
+++ b/Octokit.GraphQL/Model/AddLabelsToLabelableInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class AddLabelsToLabelableInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The id of the labelable object to add labels to.
///
@@ -17,10 +22,5 @@ public class AddLabelsToLabelableInput
/// The ids of the labels to add.
///
public IEnumerable LabelIds { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/AddProjectCardInput.cs b/Octokit.GraphQL/Model/AddProjectCardInput.cs
index 2b0931bc..7cd2e65d 100644
--- a/Octokit.GraphQL/Model/AddProjectCardInput.cs
+++ b/Octokit.GraphQL/Model/AddProjectCardInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class AddProjectCardInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the ProjectColumn.
///
@@ -22,10 +27,5 @@ public class AddProjectCardInput
/// The note on the card.
///
public string Note { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/AddProjectColumnInput.cs b/Octokit.GraphQL/Model/AddProjectColumnInput.cs
index 76f9a54e..6b8c7665 100644
--- a/Octokit.GraphQL/Model/AddProjectColumnInput.cs
+++ b/Octokit.GraphQL/Model/AddProjectColumnInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class AddProjectColumnInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the project.
///
@@ -17,10 +22,5 @@ public class AddProjectColumnInput
/// The name of the column.
///
public string Name { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/AddProjectV2DraftIssueInput.cs b/Octokit.GraphQL/Model/AddProjectV2DraftIssueInput.cs
index 26d84d3c..cb95bf30 100644
--- a/Octokit.GraphQL/Model/AddProjectV2DraftIssueInput.cs
+++ b/Octokit.GraphQL/Model/AddProjectV2DraftIssueInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class AddProjectV2DraftIssueInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the Project to add the draft issue to.
///
@@ -27,10 +32,5 @@ public class AddProjectV2DraftIssueInput
/// The IDs of the assignees of the draft issue.
///
public IEnumerable AssigneeIds { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/AddProjectV2ItemByIdInput.cs b/Octokit.GraphQL/Model/AddProjectV2ItemByIdInput.cs
index 83be4e22..1b1a5395 100644
--- a/Octokit.GraphQL/Model/AddProjectV2ItemByIdInput.cs
+++ b/Octokit.GraphQL/Model/AddProjectV2ItemByIdInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class AddProjectV2ItemByIdInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the Project to add the item to.
///
@@ -17,10 +22,5 @@ public class AddProjectV2ItemByIdInput
/// The id of the Issue or Pull Request to add.
///
public ID ContentId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/AddPullRequestReviewCommentInput.cs b/Octokit.GraphQL/Model/AddPullRequestReviewCommentInput.cs
index 238f2def..f91273a9 100644
--- a/Octokit.GraphQL/Model/AddPullRequestReviewCommentInput.cs
+++ b/Octokit.GraphQL/Model/AddPullRequestReviewCommentInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class AddPullRequestReviewCommentInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The node ID of the pull request reviewing
/// **Upcoming Change on 2023-10-01 UTC**
@@ -63,10 +68,5 @@ public class AddPullRequestReviewCommentInput
/// **Reason:** We are deprecating the addPullRequestReviewComment mutation
///
public ID? InReplyTo { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/AddPullRequestReviewInput.cs b/Octokit.GraphQL/Model/AddPullRequestReviewInput.cs
index bbe0ed11..e9ddfa1b 100644
--- a/Octokit.GraphQL/Model/AddPullRequestReviewInput.cs
+++ b/Octokit.GraphQL/Model/AddPullRequestReviewInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class AddPullRequestReviewInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the pull request to modify.
///
@@ -40,10 +45,5 @@ public class AddPullRequestReviewInput
/// The review line comment threads.
///
public IEnumerable Threads { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/AddPullRequestReviewThreadInput.cs b/Octokit.GraphQL/Model/AddPullRequestReviewThreadInput.cs
index 7d076a45..ebee9954 100644
--- a/Octokit.GraphQL/Model/AddPullRequestReviewThreadInput.cs
+++ b/Octokit.GraphQL/Model/AddPullRequestReviewThreadInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class AddPullRequestReviewThreadInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// Path to the file being commented on.
///
@@ -52,10 +57,5 @@ public class AddPullRequestReviewThreadInput
/// The level at which the comments in the corresponding thread are targeted, can be a diff line or a file
///
public PullRequestReviewThreadSubjectType? SubjectType { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/AddPullRequestReviewThreadReplyInput.cs b/Octokit.GraphQL/Model/AddPullRequestReviewThreadReplyInput.cs
index d90a1214..5293d648 100644
--- a/Octokit.GraphQL/Model/AddPullRequestReviewThreadReplyInput.cs
+++ b/Octokit.GraphQL/Model/AddPullRequestReviewThreadReplyInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class AddPullRequestReviewThreadReplyInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the pending review to which the reply will belong.
///
@@ -22,10 +27,5 @@ public class AddPullRequestReviewThreadReplyInput
/// The text of the reply.
///
public string Body { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/AddReactionInput.cs b/Octokit.GraphQL/Model/AddReactionInput.cs
index ee76b2cb..ff239b33 100644
--- a/Octokit.GraphQL/Model/AddReactionInput.cs
+++ b/Octokit.GraphQL/Model/AddReactionInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class AddReactionInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the subject to modify.
///
@@ -17,10 +22,5 @@ public class AddReactionInput
/// The name of the emoji to react with.
///
public ReactionContent Content { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/AddStarInput.cs b/Octokit.GraphQL/Model/AddStarInput.cs
index 2f78818e..704a466c 100644
--- a/Octokit.GraphQL/Model/AddStarInput.cs
+++ b/Octokit.GraphQL/Model/AddStarInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class AddStarInput
{
///
- /// The Starrable ID to star.
+ /// A unique identifier for the client performing the mutation.
///
- public ID StarrableId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The Starrable ID to star.
///
- public string ClientMutationId { get; set; }
+ public ID StarrableId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/AddUpvoteInput.cs b/Octokit.GraphQL/Model/AddUpvoteInput.cs
index 065252f0..47557a8d 100644
--- a/Octokit.GraphQL/Model/AddUpvoteInput.cs
+++ b/Octokit.GraphQL/Model/AddUpvoteInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class AddUpvoteInput
{
///
- /// The Node ID of the discussion or comment to upvote.
+ /// A unique identifier for the client performing the mutation.
///
- public ID SubjectId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The Node ID of the discussion or comment to upvote.
///
- public string ClientMutationId { get; set; }
+ public ID SubjectId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/AddVerifiableDomainInput.cs b/Octokit.GraphQL/Model/AddVerifiableDomainInput.cs
index 46ec5368..ef628e3d 100644
--- a/Octokit.GraphQL/Model/AddVerifiableDomainInput.cs
+++ b/Octokit.GraphQL/Model/AddVerifiableDomainInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class AddVerifiableDomainInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the owner to add the domain to
///
@@ -17,10 +22,5 @@ public class AddVerifiableDomainInput
/// The URL of the domain
///
public string Domain { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/ApproveDeploymentsInput.cs b/Octokit.GraphQL/Model/ApproveDeploymentsInput.cs
index fd42381b..039ae5ff 100644
--- a/Octokit.GraphQL/Model/ApproveDeploymentsInput.cs
+++ b/Octokit.GraphQL/Model/ApproveDeploymentsInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class ApproveDeploymentsInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The node ID of the workflow run containing the pending deployments.
///
@@ -22,10 +27,5 @@ public class ApproveDeploymentsInput
/// Optional comment for approving deployments
///
public string Comment { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/ApproveVerifiableDomainInput.cs b/Octokit.GraphQL/Model/ApproveVerifiableDomainInput.cs
index 976fa4f9..28c0a7ca 100644
--- a/Octokit.GraphQL/Model/ApproveVerifiableDomainInput.cs
+++ b/Octokit.GraphQL/Model/ApproveVerifiableDomainInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class ApproveVerifiableDomainInput
{
///
- /// The ID of the verifiable domain to approve.
+ /// A unique identifier for the client performing the mutation.
///
- public ID Id { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the verifiable domain to approve.
///
- public string ClientMutationId { get; set; }
+ public ID Id { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/ArchiveProjectV2ItemInput.cs b/Octokit.GraphQL/Model/ArchiveProjectV2ItemInput.cs
index 7d15440b..da7c2264 100644
--- a/Octokit.GraphQL/Model/ArchiveProjectV2ItemInput.cs
+++ b/Octokit.GraphQL/Model/ArchiveProjectV2ItemInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class ArchiveProjectV2ItemInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the Project to archive the item from.
///
@@ -17,10 +22,5 @@ public class ArchiveProjectV2ItemInput
/// The ID of the ProjectV2Item to archive.
///
public ID ItemId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/ArchiveRepositoryInput.cs b/Octokit.GraphQL/Model/ArchiveRepositoryInput.cs
index b4758b2b..6ef5526c 100644
--- a/Octokit.GraphQL/Model/ArchiveRepositoryInput.cs
+++ b/Octokit.GraphQL/Model/ArchiveRepositoryInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class ArchiveRepositoryInput
{
///
- /// The ID of the repository to mark as archived.
+ /// A unique identifier for the client performing the mutation.
///
- public ID RepositoryId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the repository to mark as archived.
///
- public string ClientMutationId { get; set; }
+ public ID RepositoryId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CancelEnterpriseAdminInvitationInput.cs b/Octokit.GraphQL/Model/CancelEnterpriseAdminInvitationInput.cs
index 229c4482..dc2b0cc9 100644
--- a/Octokit.GraphQL/Model/CancelEnterpriseAdminInvitationInput.cs
+++ b/Octokit.GraphQL/Model/CancelEnterpriseAdminInvitationInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class CancelEnterpriseAdminInvitationInput
{
///
- /// The Node ID of the pending enterprise administrator invitation.
+ /// A unique identifier for the client performing the mutation.
///
- public ID InvitationId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The Node ID of the pending enterprise administrator invitation.
///
- public string ClientMutationId { get; set; }
+ public ID InvitationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CancelSponsorshipInput.cs b/Octokit.GraphQL/Model/CancelSponsorshipInput.cs
index 6cf7c3c3..868c5799 100644
--- a/Octokit.GraphQL/Model/CancelSponsorshipInput.cs
+++ b/Octokit.GraphQL/Model/CancelSponsorshipInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CancelSponsorshipInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the user or organization who is acting as the sponsor, paying for the sponsorship. Required if sponsorLogin is not given.
///
@@ -27,10 +32,5 @@ public class CancelSponsorshipInput
/// The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.
///
public string SponsorableLogin { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/ChangeUserStatusInput.cs b/Octokit.GraphQL/Model/ChangeUserStatusInput.cs
index e2d72361..b6dd71c9 100644
--- a/Octokit.GraphQL/Model/ChangeUserStatusInput.cs
+++ b/Octokit.GraphQL/Model/ChangeUserStatusInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class ChangeUserStatusInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The emoji to represent your status. Can either be a native Unicode emoji or an emoji name with colons, e.g., :grinning:.
///
@@ -32,10 +37,5 @@ public class ChangeUserStatusInput
/// If set, the user status will not be shown after this date.
///
public DateTimeOffset? ExpiresAt { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CheckStatusState.cs b/Octokit.GraphQL/Model/CheckStatusState.cs
index 8a9a7d38..05a5dd00 100644
--- a/Octokit.GraphQL/Model/CheckStatusState.cs
+++ b/Octokit.GraphQL/Model/CheckStatusState.cs
@@ -11,6 +11,12 @@ namespace Octokit.GraphQL.Model
[JsonConverter(typeof(StringEnumConverter))]
public enum CheckStatusState
{
+ ///
+ /// The check suite or run has been requested.
+ ///
+ [EnumMember(Value = "REQUESTED")]
+ Requested,
+
///
/// The check suite or run has been queued.
///
@@ -40,11 +46,5 @@ public enum CheckStatusState
///
[EnumMember(Value = "PENDING")]
Pending,
-
- ///
- /// The check suite or run has been requested.
- ///
- [EnumMember(Value = "REQUESTED")]
- Requested,
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/ClearLabelsFromLabelableInput.cs b/Octokit.GraphQL/Model/ClearLabelsFromLabelableInput.cs
index ef5bae4b..c395ab8a 100644
--- a/Octokit.GraphQL/Model/ClearLabelsFromLabelableInput.cs
+++ b/Octokit.GraphQL/Model/ClearLabelsFromLabelableInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class ClearLabelsFromLabelableInput
{
///
- /// The id of the labelable object to clear the labels from.
+ /// A unique identifier for the client performing the mutation.
///
- public ID LabelableId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The id of the labelable object to clear the labels from.
///
- public string ClientMutationId { get; set; }
+ public ID LabelableId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/ClearProjectV2ItemFieldValueInput.cs b/Octokit.GraphQL/Model/ClearProjectV2ItemFieldValueInput.cs
index f0be6edb..bebb0243 100644
--- a/Octokit.GraphQL/Model/ClearProjectV2ItemFieldValueInput.cs
+++ b/Octokit.GraphQL/Model/ClearProjectV2ItemFieldValueInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class ClearProjectV2ItemFieldValueInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the Project.
///
@@ -22,10 +27,5 @@ public class ClearProjectV2ItemFieldValueInput
/// The ID of the field to be cleared.
///
public ID FieldId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CloneProjectInput.cs b/Octokit.GraphQL/Model/CloneProjectInput.cs
index 6a0f1732..dcace48c 100644
--- a/Octokit.GraphQL/Model/CloneProjectInput.cs
+++ b/Octokit.GraphQL/Model/CloneProjectInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CloneProjectInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The owner ID to create the project under.
///
@@ -37,10 +42,5 @@ public class CloneProjectInput
/// The visibility of the project, defaults to false (private).
///
public bool? Public { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CloneTemplateRepositoryInput.cs b/Octokit.GraphQL/Model/CloneTemplateRepositoryInput.cs
index 1c799090..35234cd3 100644
--- a/Octokit.GraphQL/Model/CloneTemplateRepositoryInput.cs
+++ b/Octokit.GraphQL/Model/CloneTemplateRepositoryInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CloneTemplateRepositoryInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the template repository.
///
@@ -37,10 +42,5 @@ public class CloneTemplateRepositoryInput
/// Whether to copy all branches from the template to the new repository. Defaults to copying only the default branch of the template.
///
public bool? IncludeAllBranches { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CloseDiscussionInput.cs b/Octokit.GraphQL/Model/CloseDiscussionInput.cs
index 1c3a2790..81ec38e0 100644
--- a/Octokit.GraphQL/Model/CloseDiscussionInput.cs
+++ b/Octokit.GraphQL/Model/CloseDiscussionInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CloseDiscussionInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// ID of the discussion to be closed.
///
@@ -17,10 +22,5 @@ public class CloseDiscussionInput
/// The reason why the discussion is being closed.
///
public DiscussionCloseReason? Reason { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CloseIssueInput.cs b/Octokit.GraphQL/Model/CloseIssueInput.cs
index 15293fd4..9ec4a3ad 100644
--- a/Octokit.GraphQL/Model/CloseIssueInput.cs
+++ b/Octokit.GraphQL/Model/CloseIssueInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CloseIssueInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// ID of the issue to be closed.
///
@@ -17,10 +22,5 @@ public class CloseIssueInput
/// The reason the issue is to be closed.
///
public IssueClosedStateReason? StateReason { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/ClosePullRequestInput.cs b/Octokit.GraphQL/Model/ClosePullRequestInput.cs
index 7dae0e15..5b924891 100644
--- a/Octokit.GraphQL/Model/ClosePullRequestInput.cs
+++ b/Octokit.GraphQL/Model/ClosePullRequestInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class ClosePullRequestInput
{
///
- /// ID of the pull request to be closed.
+ /// A unique identifier for the client performing the mutation.
///
- public ID PullRequestId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// ID of the pull request to be closed.
///
- public string ClientMutationId { get; set; }
+ public ID PullRequestId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/ConvertProjectCardNoteToIssueInput.cs b/Octokit.GraphQL/Model/ConvertProjectCardNoteToIssueInput.cs
index 107c8d35..943ffc1f 100644
--- a/Octokit.GraphQL/Model/ConvertProjectCardNoteToIssueInput.cs
+++ b/Octokit.GraphQL/Model/ConvertProjectCardNoteToIssueInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class ConvertProjectCardNoteToIssueInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ProjectCard ID to convert.
///
@@ -27,10 +32,5 @@ public class ConvertProjectCardNoteToIssueInput
/// The body of the newly created issue.
///
public string Body { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/ConvertPullRequestToDraftInput.cs b/Octokit.GraphQL/Model/ConvertPullRequestToDraftInput.cs
index cd02a30f..22cc3353 100644
--- a/Octokit.GraphQL/Model/ConvertPullRequestToDraftInput.cs
+++ b/Octokit.GraphQL/Model/ConvertPullRequestToDraftInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class ConvertPullRequestToDraftInput
{
///
- /// ID of the pull request to convert to draft
+ /// A unique identifier for the client performing the mutation.
///
- public ID PullRequestId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// ID of the pull request to convert to draft
///
- public string ClientMutationId { get; set; }
+ public ID PullRequestId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CopyProjectV2Input.cs b/Octokit.GraphQL/Model/CopyProjectV2Input.cs
index 8b8dbb50..142d091b 100644
--- a/Octokit.GraphQL/Model/CopyProjectV2Input.cs
+++ b/Octokit.GraphQL/Model/CopyProjectV2Input.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CopyProjectV2Input
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the source Project to copy.
///
@@ -27,10 +32,5 @@ public class CopyProjectV2Input
/// Include draft issues in the new project
///
public bool? IncludeDraftIssues { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateAttributionInvitationInput.cs b/Octokit.GraphQL/Model/CreateAttributionInvitationInput.cs
index 27f3ff23..02e97676 100644
--- a/Octokit.GraphQL/Model/CreateAttributionInvitationInput.cs
+++ b/Octokit.GraphQL/Model/CreateAttributionInvitationInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateAttributionInvitationInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the owner scoping the reattributable data.
///
@@ -22,10 +27,5 @@ public class CreateAttributionInvitationInput
/// The Node ID of the account which may claim the data.
///
public ID TargetId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateBranchProtectionRuleInput.cs b/Octokit.GraphQL/Model/CreateBranchProtectionRuleInput.cs
index 7ddf8668..18fa78c9 100644
--- a/Octokit.GraphQL/Model/CreateBranchProtectionRuleInput.cs
+++ b/Octokit.GraphQL/Model/CreateBranchProtectionRuleInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateBranchProtectionRuleInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The global relay id of the repository in which a new branch protection rule should be created in.
///
@@ -147,10 +152,5 @@ public class CreateBranchProtectionRuleInput
/// Whether users can pull changes from upstream when the branch is locked. Set to `true` to allow fork syncing. Set to `false` to prevent fork syncing.
///
public bool? LockAllowsFetchAndMerge { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateCheckRunInput.cs b/Octokit.GraphQL/Model/CreateCheckRunInput.cs
index 53e014db..98e8316f 100644
--- a/Octokit.GraphQL/Model/CreateCheckRunInput.cs
+++ b/Octokit.GraphQL/Model/CreateCheckRunInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateCheckRunInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The node ID of the repository.
///
@@ -62,10 +67,5 @@ public class CreateCheckRunInput
/// Possible further actions the integrator can perform, which a user may trigger.
///
public IEnumerable Actions { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateCheckSuiteInput.cs b/Octokit.GraphQL/Model/CreateCheckSuiteInput.cs
index ecb105d0..fe21afdc 100644
--- a/Octokit.GraphQL/Model/CreateCheckSuiteInput.cs
+++ b/Octokit.GraphQL/Model/CreateCheckSuiteInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateCheckSuiteInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the repository.
///
@@ -17,10 +22,5 @@ public class CreateCheckSuiteInput
/// The SHA of the head commit.
///
public string HeadSha { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateCommitOnBranchInput.cs b/Octokit.GraphQL/Model/CreateCommitOnBranchInput.cs
index 7b0091ba..a87ff9ef 100644
--- a/Octokit.GraphQL/Model/CreateCommitOnBranchInput.cs
+++ b/Octokit.GraphQL/Model/CreateCommitOnBranchInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateCommitOnBranchInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Ref to be updated. Must be a branch.
///
@@ -27,10 +32,5 @@ public class CreateCommitOnBranchInput
/// The git commit oid expected at the head of the branch prior to the commit
///
public string ExpectedHeadOid { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateDiscussionInput.cs b/Octokit.GraphQL/Model/CreateDiscussionInput.cs
index 99848dbc..32879d0a 100644
--- a/Octokit.GraphQL/Model/CreateDiscussionInput.cs
+++ b/Octokit.GraphQL/Model/CreateDiscussionInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateDiscussionInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The id of the repository on which to create the discussion.
///
@@ -27,10 +32,5 @@ public class CreateDiscussionInput
/// The id of the discussion category to associate with this discussion.
///
public ID CategoryId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateEnterpriseOrganizationInput.cs b/Octokit.GraphQL/Model/CreateEnterpriseOrganizationInput.cs
index e766bc96..9a76d12e 100644
--- a/Octokit.GraphQL/Model/CreateEnterpriseOrganizationInput.cs
+++ b/Octokit.GraphQL/Model/CreateEnterpriseOrganizationInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateEnterpriseOrganizationInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the enterprise owning the new organization.
///
@@ -32,10 +37,5 @@ public class CreateEnterpriseOrganizationInput
/// The logins for the administrators of the new organization.
///
public IEnumerable AdminLogins { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateEnvironmentInput.cs b/Octokit.GraphQL/Model/CreateEnvironmentInput.cs
index 357f07f9..080a4cd8 100644
--- a/Octokit.GraphQL/Model/CreateEnvironmentInput.cs
+++ b/Octokit.GraphQL/Model/CreateEnvironmentInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateEnvironmentInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The node ID of the repository.
///
@@ -17,10 +22,5 @@ public class CreateEnvironmentInput
/// The name of the environment.
///
public string Name { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateIpAllowListEntryInput.cs b/Octokit.GraphQL/Model/CreateIpAllowListEntryInput.cs
index 0d6ced06..d178d115 100644
--- a/Octokit.GraphQL/Model/CreateIpAllowListEntryInput.cs
+++ b/Octokit.GraphQL/Model/CreateIpAllowListEntryInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateIpAllowListEntryInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the owner for which to create the new IP allow list entry.
///
@@ -27,10 +32,5 @@ public class CreateIpAllowListEntryInput
/// Whether the IP allow list entry is active when an IP allow list is enabled.
///
public bool IsActive { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateIssueInput.cs b/Octokit.GraphQL/Model/CreateIssueInput.cs
index 235f028a..5c1c6c1e 100644
--- a/Octokit.GraphQL/Model/CreateIssueInput.cs
+++ b/Octokit.GraphQL/Model/CreateIssueInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateIssueInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the repository.
///
@@ -47,10 +52,5 @@ public class CreateIssueInput
/// The name of an issue template in the repository, assigns labels and assignees from the template to the issue
///
public string IssueTemplate { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateLinkedBranchInput.cs b/Octokit.GraphQL/Model/CreateLinkedBranchInput.cs
index fbd2f1ce..010859d3 100644
--- a/Octokit.GraphQL/Model/CreateLinkedBranchInput.cs
+++ b/Octokit.GraphQL/Model/CreateLinkedBranchInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateLinkedBranchInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// ID of the issue to link to.
///
@@ -27,10 +32,5 @@ public class CreateLinkedBranchInput
/// ID of the repository to create the branch in. Defaults to the issue repository.
///
public ID? RepositoryId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateMigrationSourceInput.cs b/Octokit.GraphQL/Model/CreateMigrationSourceInput.cs
index 423a1279..96b77188 100644
--- a/Octokit.GraphQL/Model/CreateMigrationSourceInput.cs
+++ b/Octokit.GraphQL/Model/CreateMigrationSourceInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateMigrationSourceInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The migration source name.
///
@@ -37,10 +42,5 @@ public class CreateMigrationSourceInput
/// The GitHub personal access token of the user importing to the target repository.
///
public string GithubPat { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateProjectInput.cs b/Octokit.GraphQL/Model/CreateProjectInput.cs
index 282b8df5..865c0db0 100644
--- a/Octokit.GraphQL/Model/CreateProjectInput.cs
+++ b/Octokit.GraphQL/Model/CreateProjectInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateProjectInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The owner ID to create the project under.
///
@@ -32,10 +37,5 @@ public class CreateProjectInput
/// A list of repository IDs to create as linked repositories for the project
///
public IEnumerable RepositoryIds { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateProjectV2FieldInput.cs b/Octokit.GraphQL/Model/CreateProjectV2FieldInput.cs
index 02981d73..ad6257d3 100644
--- a/Octokit.GraphQL/Model/CreateProjectV2FieldInput.cs
+++ b/Octokit.GraphQL/Model/CreateProjectV2FieldInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateProjectV2FieldInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the Project to create the field in.
///
@@ -27,10 +32,5 @@ public class CreateProjectV2FieldInput
/// Options for a single select field. At least one value is required if data_type is SINGLE_SELECT
///
public IEnumerable SingleSelectOptions { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateProjectV2Input.cs b/Octokit.GraphQL/Model/CreateProjectV2Input.cs
index 03b6623b..7223c36f 100644
--- a/Octokit.GraphQL/Model/CreateProjectV2Input.cs
+++ b/Octokit.GraphQL/Model/CreateProjectV2Input.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateProjectV2Input
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The owner ID to create the project under.
///
@@ -27,10 +32,5 @@ public class CreateProjectV2Input
/// The team to link the project to. The team will be granted read permissions.
///
public ID? TeamId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreatePullRequestInput.cs b/Octokit.GraphQL/Model/CreatePullRequestInput.cs
index b3a5d218..1693af94 100644
--- a/Octokit.GraphQL/Model/CreatePullRequestInput.cs
+++ b/Octokit.GraphQL/Model/CreatePullRequestInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreatePullRequestInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the repository.
///
@@ -50,10 +55,5 @@ public class CreatePullRequestInput
/// Indicates whether this pull request should be a draft.
///
public bool? Draft { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateRefInput.cs b/Octokit.GraphQL/Model/CreateRefInput.cs
index cdbf780d..30ab5aa1 100644
--- a/Octokit.GraphQL/Model/CreateRefInput.cs
+++ b/Octokit.GraphQL/Model/CreateRefInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateRefInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the Repository to create the Ref in.
///
@@ -22,10 +27,5 @@ public class CreateRefInput
/// The GitObjectID that the new Ref shall target. Must point to a commit.
///
public string Oid { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateRepositoryInput.cs b/Octokit.GraphQL/Model/CreateRepositoryInput.cs
index 55c25efa..d8d6ae8a 100644
--- a/Octokit.GraphQL/Model/CreateRepositoryInput.cs
+++ b/Octokit.GraphQL/Model/CreateRepositoryInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateRepositoryInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The name of the new repository.
///
@@ -52,10 +57,5 @@ public class CreateRepositoryInput
/// When an organization is specified as the owner, this ID identifies the team that should be granted access to the new repository.
///
public ID? TeamId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateRepositoryRulesetInput.cs b/Octokit.GraphQL/Model/CreateRepositoryRulesetInput.cs
index 90ae32a8..7ddcd02d 100644
--- a/Octokit.GraphQL/Model/CreateRepositoryRulesetInput.cs
+++ b/Octokit.GraphQL/Model/CreateRepositoryRulesetInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateRepositoryRulesetInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The global relay id of the source in which a new ruleset should be created in.
///
@@ -42,10 +47,5 @@ public class CreateRepositoryRulesetInput
/// A list of actors that are allowed to bypass rules in this ruleset.
///
public IEnumerable BypassActors { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateSponsorsListingInput.cs b/Octokit.GraphQL/Model/CreateSponsorsListingInput.cs
index ef4a7325..4dbb7f97 100644
--- a/Octokit.GraphQL/Model/CreateSponsorsListingInput.cs
+++ b/Octokit.GraphQL/Model/CreateSponsorsListingInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateSponsorsListingInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The username of the organization to create a GitHub Sponsors profile for, if desired. Defaults to creating a GitHub Sponsors profile for the authenticated user if omitted.
///
@@ -42,10 +47,5 @@ public class CreateSponsorsListingInput
/// Provide an introduction to serve as the main focus that appears on your GitHub Sponsors profile. It's a great opportunity to help potential sponsors learn more about you, your work, and why their sponsorship is important to you. GitHub-flavored Markdown is supported.
///
public string FullDescription { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateSponsorsTierInput.cs b/Octokit.GraphQL/Model/CreateSponsorsTierInput.cs
index cb5bfbf9..d9b9f03f 100644
--- a/Octokit.GraphQL/Model/CreateSponsorsTierInput.cs
+++ b/Octokit.GraphQL/Model/CreateSponsorsTierInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateSponsorsTierInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the user or organization who owns the GitHub Sponsors profile. Defaults to the current user if omitted and sponsorableLogin is not given.
///
@@ -57,10 +62,5 @@ public class CreateSponsorsTierInput
/// Whether to make the tier available immediately for sponsors to choose. Defaults to creating a draft tier that will not be publicly visible.
///
public bool? Publish { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateSponsorshipInput.cs b/Octokit.GraphQL/Model/CreateSponsorshipInput.cs
index fb12ce08..4e134df7 100644
--- a/Octokit.GraphQL/Model/CreateSponsorshipInput.cs
+++ b/Octokit.GraphQL/Model/CreateSponsorshipInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateSponsorshipInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the user or organization who is acting as the sponsor, paying for the sponsorship. Required if sponsorLogin is not given.
///
@@ -52,10 +57,5 @@ public class CreateSponsorshipInput
/// Specify whether others should be able to see that the sponsor is sponsoring the sponsorable. Public visibility still does not reveal which tier is used.
///
public SponsorshipPrivacy? PrivacyLevel { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateSponsorshipsInput.cs b/Octokit.GraphQL/Model/CreateSponsorshipsInput.cs
index 981bc850..40cd057e 100644
--- a/Octokit.GraphQL/Model/CreateSponsorshipsInput.cs
+++ b/Octokit.GraphQL/Model/CreateSponsorshipsInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateSponsorshipsInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The username of the user or organization who is acting as the sponsor, paying for the sponsorships.
///
@@ -29,8 +34,8 @@ public class CreateSponsorshipsInput
public SponsorshipPrivacy? PrivacyLevel { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// Whether the sponsorships created should continue each billing cycle for the sponsor (monthly or annually), versus lasting only a single month. Defaults to one-time sponsorships.
///
- public string ClientMutationId { get; set; }
+ public bool? Recurring { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateTeamDiscussionCommentInput.cs b/Octokit.GraphQL/Model/CreateTeamDiscussionCommentInput.cs
index 8d5ec000..584159d3 100644
--- a/Octokit.GraphQL/Model/CreateTeamDiscussionCommentInput.cs
+++ b/Octokit.GraphQL/Model/CreateTeamDiscussionCommentInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateTeamDiscussionCommentInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the discussion to which the comment belongs. This field is required.
/// **Upcoming Change on 2024-07-01 UTC**
@@ -23,10 +28,5 @@ public class CreateTeamDiscussionCommentInput
/// **Reason:** The Team Discussions feature is deprecated in favor of Organization Discussions.
///
public string Body { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateTeamDiscussionInput.cs b/Octokit.GraphQL/Model/CreateTeamDiscussionInput.cs
index 0b04c674..e5e06510 100644
--- a/Octokit.GraphQL/Model/CreateTeamDiscussionInput.cs
+++ b/Octokit.GraphQL/Model/CreateTeamDiscussionInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateTeamDiscussionInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the team to which the discussion belongs. This field is required.
/// **Upcoming Change on 2024-07-01 UTC**
@@ -39,10 +44,5 @@ public class CreateTeamDiscussionInput
/// **Reason:** The Team Discussions feature is deprecated in favor of Organization Discussions.
///
public bool? Private { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/CreateUserListInput.cs b/Octokit.GraphQL/Model/CreateUserListInput.cs
index ae7fca83..1dbb4e8d 100644
--- a/Octokit.GraphQL/Model/CreateUserListInput.cs
+++ b/Octokit.GraphQL/Model/CreateUserListInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class CreateUserListInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The name of the new list
///
@@ -22,10 +27,5 @@ public class CreateUserListInput
/// Whether or not the list is private
///
public bool? IsPrivate { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeclineTopicSuggestionInput.cs b/Octokit.GraphQL/Model/DeclineTopicSuggestionInput.cs
index 09366fc5..deac93c9 100644
--- a/Octokit.GraphQL/Model/DeclineTopicSuggestionInput.cs
+++ b/Octokit.GraphQL/Model/DeclineTopicSuggestionInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class DeclineTopicSuggestionInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the repository.
/// **Upcoming Change on 2024-04-01 UTC**
@@ -31,10 +36,5 @@ public class DeclineTopicSuggestionInput
/// **Reason:** Suggested topics are no longer supported
///
public TopicSuggestionDeclineReason? Reason { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeleteBranchProtectionRuleInput.cs b/Octokit.GraphQL/Model/DeleteBranchProtectionRuleInput.cs
index aab58e22..8812bc70 100644
--- a/Octokit.GraphQL/Model/DeleteBranchProtectionRuleInput.cs
+++ b/Octokit.GraphQL/Model/DeleteBranchProtectionRuleInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DeleteBranchProtectionRuleInput
{
///
- /// The global relay id of the branch protection rule to be deleted.
+ /// A unique identifier for the client performing the mutation.
///
- public ID BranchProtectionRuleId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The global relay id of the branch protection rule to be deleted.
///
- public string ClientMutationId { get; set; }
+ public ID BranchProtectionRuleId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeleteDeploymentInput.cs b/Octokit.GraphQL/Model/DeleteDeploymentInput.cs
index efcb6227..d1e57af4 100644
--- a/Octokit.GraphQL/Model/DeleteDeploymentInput.cs
+++ b/Octokit.GraphQL/Model/DeleteDeploymentInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DeleteDeploymentInput
{
///
- /// The Node ID of the deployment to be deleted.
+ /// A unique identifier for the client performing the mutation.
///
- public ID Id { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The Node ID of the deployment to be deleted.
///
- public string ClientMutationId { get; set; }
+ public ID Id { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeleteDiscussionCommentInput.cs b/Octokit.GraphQL/Model/DeleteDiscussionCommentInput.cs
index be645edc..98da417c 100644
--- a/Octokit.GraphQL/Model/DeleteDiscussionCommentInput.cs
+++ b/Octokit.GraphQL/Model/DeleteDiscussionCommentInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DeleteDiscussionCommentInput
{
///
- /// The Node id of the discussion comment to delete.
+ /// A unique identifier for the client performing the mutation.
///
- public ID Id { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The Node id of the discussion comment to delete.
///
- public string ClientMutationId { get; set; }
+ public ID Id { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeleteDiscussionInput.cs b/Octokit.GraphQL/Model/DeleteDiscussionInput.cs
index 308ca0f0..b2bddfb0 100644
--- a/Octokit.GraphQL/Model/DeleteDiscussionInput.cs
+++ b/Octokit.GraphQL/Model/DeleteDiscussionInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DeleteDiscussionInput
{
///
- /// The id of the discussion to delete.
+ /// A unique identifier for the client performing the mutation.
///
- public ID Id { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The id of the discussion to delete.
///
- public string ClientMutationId { get; set; }
+ public ID Id { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeleteEnvironmentInput.cs b/Octokit.GraphQL/Model/DeleteEnvironmentInput.cs
index 3d706468..00b0fa5d 100644
--- a/Octokit.GraphQL/Model/DeleteEnvironmentInput.cs
+++ b/Octokit.GraphQL/Model/DeleteEnvironmentInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DeleteEnvironmentInput
{
///
- /// The Node ID of the environment to be deleted.
+ /// A unique identifier for the client performing the mutation.
///
- public ID Id { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The Node ID of the environment to be deleted.
///
- public string ClientMutationId { get; set; }
+ public ID Id { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeleteIpAllowListEntryInput.cs b/Octokit.GraphQL/Model/DeleteIpAllowListEntryInput.cs
index 2d98649f..1cf86a00 100644
--- a/Octokit.GraphQL/Model/DeleteIpAllowListEntryInput.cs
+++ b/Octokit.GraphQL/Model/DeleteIpAllowListEntryInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DeleteIpAllowListEntryInput
{
///
- /// The ID of the IP allow list entry to delete.
+ /// A unique identifier for the client performing the mutation.
///
- public ID IpAllowListEntryId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the IP allow list entry to delete.
///
- public string ClientMutationId { get; set; }
+ public ID IpAllowListEntryId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeleteIssueCommentInput.cs b/Octokit.GraphQL/Model/DeleteIssueCommentInput.cs
index b22b4fdf..337aa664 100644
--- a/Octokit.GraphQL/Model/DeleteIssueCommentInput.cs
+++ b/Octokit.GraphQL/Model/DeleteIssueCommentInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DeleteIssueCommentInput
{
///
- /// The ID of the comment to delete.
+ /// A unique identifier for the client performing the mutation.
///
- public ID Id { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the comment to delete.
///
- public string ClientMutationId { get; set; }
+ public ID Id { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeleteIssueInput.cs b/Octokit.GraphQL/Model/DeleteIssueInput.cs
index c4543fa6..4830e5de 100644
--- a/Octokit.GraphQL/Model/DeleteIssueInput.cs
+++ b/Octokit.GraphQL/Model/DeleteIssueInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DeleteIssueInput
{
///
- /// The ID of the issue to delete.
+ /// A unique identifier for the client performing the mutation.
///
- public ID IssueId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the issue to delete.
///
- public string ClientMutationId { get; set; }
+ public ID IssueId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeleteLinkedBranchInput.cs b/Octokit.GraphQL/Model/DeleteLinkedBranchInput.cs
index 445f7a14..0cf2ab8e 100644
--- a/Octokit.GraphQL/Model/DeleteLinkedBranchInput.cs
+++ b/Octokit.GraphQL/Model/DeleteLinkedBranchInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DeleteLinkedBranchInput
{
///
- /// The ID of the linked branch
+ /// A unique identifier for the client performing the mutation.
///
- public ID LinkedBranchId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the linked branch
///
- public string ClientMutationId { get; set; }
+ public ID LinkedBranchId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeleteProjectCardInput.cs b/Octokit.GraphQL/Model/DeleteProjectCardInput.cs
index 3a82c62b..50f78659 100644
--- a/Octokit.GraphQL/Model/DeleteProjectCardInput.cs
+++ b/Octokit.GraphQL/Model/DeleteProjectCardInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DeleteProjectCardInput
{
///
- /// The id of the card to delete.
+ /// A unique identifier for the client performing the mutation.
///
- public ID CardId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The id of the card to delete.
///
- public string ClientMutationId { get; set; }
+ public ID CardId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeleteProjectColumnInput.cs b/Octokit.GraphQL/Model/DeleteProjectColumnInput.cs
index 036363b5..ec0586e7 100644
--- a/Octokit.GraphQL/Model/DeleteProjectColumnInput.cs
+++ b/Octokit.GraphQL/Model/DeleteProjectColumnInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DeleteProjectColumnInput
{
///
- /// The id of the column to delete.
+ /// A unique identifier for the client performing the mutation.
///
- public ID ColumnId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The id of the column to delete.
///
- public string ClientMutationId { get; set; }
+ public ID ColumnId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeleteProjectInput.cs b/Octokit.GraphQL/Model/DeleteProjectInput.cs
index 1b7b7bcb..47dd5e7c 100644
--- a/Octokit.GraphQL/Model/DeleteProjectInput.cs
+++ b/Octokit.GraphQL/Model/DeleteProjectInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DeleteProjectInput
{
///
- /// The Project ID to update.
+ /// A unique identifier for the client performing the mutation.
///
- public ID ProjectId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The Project ID to update.
///
- public string ClientMutationId { get; set; }
+ public ID ProjectId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeleteProjectV2FieldInput.cs b/Octokit.GraphQL/Model/DeleteProjectV2FieldInput.cs
index 0551df5c..4708ed21 100644
--- a/Octokit.GraphQL/Model/DeleteProjectV2FieldInput.cs
+++ b/Octokit.GraphQL/Model/DeleteProjectV2FieldInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DeleteProjectV2FieldInput
{
///
- /// The ID of the field to delete.
+ /// A unique identifier for the client performing the mutation.
///
- public ID FieldId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the field to delete.
///
- public string ClientMutationId { get; set; }
+ public ID FieldId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeleteProjectV2Input.cs b/Octokit.GraphQL/Model/DeleteProjectV2Input.cs
index 50e4a025..d7248953 100644
--- a/Octokit.GraphQL/Model/DeleteProjectV2Input.cs
+++ b/Octokit.GraphQL/Model/DeleteProjectV2Input.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DeleteProjectV2Input
{
///
- /// The ID of the Project to delete.
+ /// A unique identifier for the client performing the mutation.
///
- public ID ProjectId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the Project to delete.
///
- public string ClientMutationId { get; set; }
+ public ID ProjectId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeleteProjectV2ItemInput.cs b/Octokit.GraphQL/Model/DeleteProjectV2ItemInput.cs
index 89dfe38b..5fda989a 100644
--- a/Octokit.GraphQL/Model/DeleteProjectV2ItemInput.cs
+++ b/Octokit.GraphQL/Model/DeleteProjectV2ItemInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class DeleteProjectV2ItemInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the Project from which the item should be removed.
///
@@ -17,10 +22,5 @@ public class DeleteProjectV2ItemInput
/// The ID of the item to be removed.
///
public ID ItemId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeleteProjectV2WorkflowInput.cs b/Octokit.GraphQL/Model/DeleteProjectV2WorkflowInput.cs
index 425ab776..43e33270 100644
--- a/Octokit.GraphQL/Model/DeleteProjectV2WorkflowInput.cs
+++ b/Octokit.GraphQL/Model/DeleteProjectV2WorkflowInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DeleteProjectV2WorkflowInput
{
///
- /// The ID of the workflow to be removed.
+ /// A unique identifier for the client performing the mutation.
///
- public ID WorkflowId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the workflow to be removed.
///
- public string ClientMutationId { get; set; }
+ public ID WorkflowId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeletePullRequestReviewCommentInput.cs b/Octokit.GraphQL/Model/DeletePullRequestReviewCommentInput.cs
index 16efd584..8d5a6776 100644
--- a/Octokit.GraphQL/Model/DeletePullRequestReviewCommentInput.cs
+++ b/Octokit.GraphQL/Model/DeletePullRequestReviewCommentInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DeletePullRequestReviewCommentInput
{
///
- /// The ID of the comment to delete.
+ /// A unique identifier for the client performing the mutation.
///
- public ID Id { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the comment to delete.
///
- public string ClientMutationId { get; set; }
+ public ID Id { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeletePullRequestReviewInput.cs b/Octokit.GraphQL/Model/DeletePullRequestReviewInput.cs
index d5c138df..7460200f 100644
--- a/Octokit.GraphQL/Model/DeletePullRequestReviewInput.cs
+++ b/Octokit.GraphQL/Model/DeletePullRequestReviewInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DeletePullRequestReviewInput
{
///
- /// The Node ID of the pull request review to delete.
+ /// A unique identifier for the client performing the mutation.
///
- public ID PullRequestReviewId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The Node ID of the pull request review to delete.
///
- public string ClientMutationId { get; set; }
+ public ID PullRequestReviewId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeleteRefInput.cs b/Octokit.GraphQL/Model/DeleteRefInput.cs
index a7bcef1f..8b187d0a 100644
--- a/Octokit.GraphQL/Model/DeleteRefInput.cs
+++ b/Octokit.GraphQL/Model/DeleteRefInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DeleteRefInput
{
///
- /// The Node ID of the Ref to be deleted.
+ /// A unique identifier for the client performing the mutation.
///
- public ID RefId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The Node ID of the Ref to be deleted.
///
- public string ClientMutationId { get; set; }
+ public ID RefId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeleteRepositoryRulesetInput.cs b/Octokit.GraphQL/Model/DeleteRepositoryRulesetInput.cs
index 2a497379..7d356266 100644
--- a/Octokit.GraphQL/Model/DeleteRepositoryRulesetInput.cs
+++ b/Octokit.GraphQL/Model/DeleteRepositoryRulesetInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DeleteRepositoryRulesetInput
{
///
- /// The global relay id of the repository ruleset to be deleted.
+ /// A unique identifier for the client performing the mutation.
///
- public ID RepositoryRulesetId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The global relay id of the repository ruleset to be deleted.
///
- public string ClientMutationId { get; set; }
+ public ID RepositoryRulesetId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeleteTeamDiscussionCommentInput.cs b/Octokit.GraphQL/Model/DeleteTeamDiscussionCommentInput.cs
index 09507e49..a8f95e0c 100644
--- a/Octokit.GraphQL/Model/DeleteTeamDiscussionCommentInput.cs
+++ b/Octokit.GraphQL/Model/DeleteTeamDiscussionCommentInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DeleteTeamDiscussionCommentInput
{
///
- /// The ID of the comment to delete.
+ /// A unique identifier for the client performing the mutation.
///
- public ID Id { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the comment to delete.
///
- public string ClientMutationId { get; set; }
+ public ID Id { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeleteTeamDiscussionInput.cs b/Octokit.GraphQL/Model/DeleteTeamDiscussionInput.cs
index 16f7fcae..cc3fbb4c 100644
--- a/Octokit.GraphQL/Model/DeleteTeamDiscussionInput.cs
+++ b/Octokit.GraphQL/Model/DeleteTeamDiscussionInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DeleteTeamDiscussionInput
{
///
- /// The discussion ID to delete.
+ /// A unique identifier for the client performing the mutation.
///
- public ID Id { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The discussion ID to delete.
///
- public string ClientMutationId { get; set; }
+ public ID Id { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeleteUserListInput.cs b/Octokit.GraphQL/Model/DeleteUserListInput.cs
index a31105be..8b414ef4 100644
--- a/Octokit.GraphQL/Model/DeleteUserListInput.cs
+++ b/Octokit.GraphQL/Model/DeleteUserListInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DeleteUserListInput
{
///
- /// The ID of the list to delete.
+ /// A unique identifier for the client performing the mutation.
///
- public ID ListId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the list to delete.
///
- public string ClientMutationId { get; set; }
+ public ID ListId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DeleteVerifiableDomainInput.cs b/Octokit.GraphQL/Model/DeleteVerifiableDomainInput.cs
index 95987ba1..29c368d2 100644
--- a/Octokit.GraphQL/Model/DeleteVerifiableDomainInput.cs
+++ b/Octokit.GraphQL/Model/DeleteVerifiableDomainInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DeleteVerifiableDomainInput
{
///
- /// The ID of the verifiable domain to delete.
+ /// A unique identifier for the client performing the mutation.
///
- public ID Id { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the verifiable domain to delete.
///
- public string ClientMutationId { get; set; }
+ public ID Id { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DequeuePullRequestInput.cs b/Octokit.GraphQL/Model/DequeuePullRequestInput.cs
index f8145724..5f878a29 100644
--- a/Octokit.GraphQL/Model/DequeuePullRequestInput.cs
+++ b/Octokit.GraphQL/Model/DequeuePullRequestInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DequeuePullRequestInput
{
///
- /// The ID of the pull request to be dequeued.
+ /// A unique identifier for the client performing the mutation.
///
- public ID Id { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the pull request to be dequeued.
///
- public string ClientMutationId { get; set; }
+ public ID Id { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DisablePullRequestAutoMergeInput.cs b/Octokit.GraphQL/Model/DisablePullRequestAutoMergeInput.cs
index 875fbf65..fe85c9d0 100644
--- a/Octokit.GraphQL/Model/DisablePullRequestAutoMergeInput.cs
+++ b/Octokit.GraphQL/Model/DisablePullRequestAutoMergeInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class DisablePullRequestAutoMergeInput
{
///
- /// ID of the pull request to disable auto merge on.
+ /// A unique identifier for the client performing the mutation.
///
- public ID PullRequestId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// ID of the pull request to disable auto merge on.
///
- public string ClientMutationId { get; set; }
+ public ID PullRequestId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DismissPullRequestReviewInput.cs b/Octokit.GraphQL/Model/DismissPullRequestReviewInput.cs
index 045ce36f..34ba9c19 100644
--- a/Octokit.GraphQL/Model/DismissPullRequestReviewInput.cs
+++ b/Octokit.GraphQL/Model/DismissPullRequestReviewInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class DismissPullRequestReviewInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the pull request review to modify.
///
@@ -17,10 +22,5 @@ public class DismissPullRequestReviewInput
/// The contents of the pull request review dismissal message.
///
public string Message { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/DismissRepositoryVulnerabilityAlertInput.cs b/Octokit.GraphQL/Model/DismissRepositoryVulnerabilityAlertInput.cs
index 36058d89..6852eb59 100644
--- a/Octokit.GraphQL/Model/DismissRepositoryVulnerabilityAlertInput.cs
+++ b/Octokit.GraphQL/Model/DismissRepositoryVulnerabilityAlertInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class DismissRepositoryVulnerabilityAlertInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Dependabot alert ID to dismiss.
///
@@ -17,10 +22,5 @@ public class DismissRepositoryVulnerabilityAlertInput
/// The reason the Dependabot alert is being dismissed.
///
public DismissReason DismissReason { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/EnablePullRequestAutoMergeInput.cs b/Octokit.GraphQL/Model/EnablePullRequestAutoMergeInput.cs
index af82dc39..c10512a1 100644
--- a/Octokit.GraphQL/Model/EnablePullRequestAutoMergeInput.cs
+++ b/Octokit.GraphQL/Model/EnablePullRequestAutoMergeInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class EnablePullRequestAutoMergeInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// ID of the pull request to enable auto-merge on.
///
@@ -37,10 +42,5 @@ public class EnablePullRequestAutoMergeInput
/// The expected head OID of the pull request.
///
public string ExpectedHeadOid { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/EnqueuePullRequestInput.cs b/Octokit.GraphQL/Model/EnqueuePullRequestInput.cs
index d4a8f72f..a0c221c1 100644
--- a/Octokit.GraphQL/Model/EnqueuePullRequestInput.cs
+++ b/Octokit.GraphQL/Model/EnqueuePullRequestInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class EnqueuePullRequestInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the pull request to enqueue.
///
@@ -22,10 +27,5 @@ public class EnqueuePullRequestInput
/// The expected head OID of the pull request.
///
public string ExpectedHeadOid { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/FollowOrganizationInput.cs b/Octokit.GraphQL/Model/FollowOrganizationInput.cs
index aeadcb20..d38933c6 100644
--- a/Octokit.GraphQL/Model/FollowOrganizationInput.cs
+++ b/Octokit.GraphQL/Model/FollowOrganizationInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class FollowOrganizationInput
{
///
- /// ID of the organization to follow.
+ /// A unique identifier for the client performing the mutation.
///
- public ID OrganizationId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// ID of the organization to follow.
///
- public string ClientMutationId { get; set; }
+ public ID OrganizationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/FollowUserInput.cs b/Octokit.GraphQL/Model/FollowUserInput.cs
index ec7a4748..6b002d32 100644
--- a/Octokit.GraphQL/Model/FollowUserInput.cs
+++ b/Octokit.GraphQL/Model/FollowUserInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class FollowUserInput
{
///
- /// ID of the user to follow.
+ /// A unique identifier for the client performing the mutation.
///
- public ID UserId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// ID of the user to follow.
///
- public string ClientMutationId { get; set; }
+ public ID UserId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/FundingPlatform.cs b/Octokit.GraphQL/Model/FundingPlatform.cs
index 2224a716..5fab6600 100644
--- a/Octokit.GraphQL/Model/FundingPlatform.cs
+++ b/Octokit.GraphQL/Model/FundingPlatform.cs
@@ -59,12 +59,6 @@ public enum FundingPlatform
[EnumMember(Value = "ISSUEHUNT")]
Issuehunt,
- ///
- /// Otechie funding platform.
- ///
- [EnumMember(Value = "OTECHIE")]
- Otechie,
-
///
/// LFX Crowdfunding funding platform.
///
@@ -77,6 +71,12 @@ public enum FundingPlatform
[EnumMember(Value = "POLAR")]
Polar,
+ ///
+ /// Buy Me a Coffee funding platform.
+ ///
+ [EnumMember(Value = "BUY_ME_A_COFFEE")]
+ BuyMeACoffee,
+
///
/// Custom funding platform.
///
diff --git a/Octokit.GraphQL/Model/GrantEnterpriseOrganizationsMigratorRoleInput.cs b/Octokit.GraphQL/Model/GrantEnterpriseOrganizationsMigratorRoleInput.cs
index 6f3f56d3..c20c833f 100644
--- a/Octokit.GraphQL/Model/GrantEnterpriseOrganizationsMigratorRoleInput.cs
+++ b/Octokit.GraphQL/Model/GrantEnterpriseOrganizationsMigratorRoleInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class GrantEnterpriseOrganizationsMigratorRoleInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the enterprise to which all organizations managed by it will be granted the migrator role.
///
@@ -17,10 +22,5 @@ public class GrantEnterpriseOrganizationsMigratorRoleInput
/// The login of the user to grant the migrator role
///
public string Login { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/GrantMigratorRoleInput.cs b/Octokit.GraphQL/Model/GrantMigratorRoleInput.cs
index 64a1f06a..b029e1d0 100644
--- a/Octokit.GraphQL/Model/GrantMigratorRoleInput.cs
+++ b/Octokit.GraphQL/Model/GrantMigratorRoleInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class GrantMigratorRoleInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the organization that the user/team belongs to.
///
@@ -22,10 +27,5 @@ public class GrantMigratorRoleInput
/// Specifies the type of the actor, can be either USER or TEAM.
///
public ActorType ActorType { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/InviteEnterpriseAdminInput.cs b/Octokit.GraphQL/Model/InviteEnterpriseAdminInput.cs
index 7a6b92c9..d5e54af1 100644
--- a/Octokit.GraphQL/Model/InviteEnterpriseAdminInput.cs
+++ b/Octokit.GraphQL/Model/InviteEnterpriseAdminInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class InviteEnterpriseAdminInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the enterprise to which you want to invite an administrator.
///
@@ -27,10 +32,5 @@ public class InviteEnterpriseAdminInput
/// The role of the administrator.
///
public EnterpriseAdministratorRole? Role { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/LinkProjectV2ToRepositoryInput.cs b/Octokit.GraphQL/Model/LinkProjectV2ToRepositoryInput.cs
index 3b005cca..15e8d104 100644
--- a/Octokit.GraphQL/Model/LinkProjectV2ToRepositoryInput.cs
+++ b/Octokit.GraphQL/Model/LinkProjectV2ToRepositoryInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class LinkProjectV2ToRepositoryInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the project to link to the repository.
///
@@ -17,10 +22,5 @@ public class LinkProjectV2ToRepositoryInput
/// The ID of the repository to link to the project.
///
public ID RepositoryId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/LinkProjectV2ToTeamInput.cs b/Octokit.GraphQL/Model/LinkProjectV2ToTeamInput.cs
index fc9c0f2c..38af57a2 100644
--- a/Octokit.GraphQL/Model/LinkProjectV2ToTeamInput.cs
+++ b/Octokit.GraphQL/Model/LinkProjectV2ToTeamInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class LinkProjectV2ToTeamInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the project to link to the team.
///
@@ -17,10 +22,5 @@ public class LinkProjectV2ToTeamInput
/// The ID of the team to link to the project.
///
public ID TeamId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/LinkRepositoryToProjectInput.cs b/Octokit.GraphQL/Model/LinkRepositoryToProjectInput.cs
index dfe145a5..05bc7b51 100644
--- a/Octokit.GraphQL/Model/LinkRepositoryToProjectInput.cs
+++ b/Octokit.GraphQL/Model/LinkRepositoryToProjectInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class LinkRepositoryToProjectInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the Project to link to a Repository
///
@@ -17,10 +22,5 @@ public class LinkRepositoryToProjectInput
/// The ID of the Repository to link to a Project.
///
public ID RepositoryId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/LockLockableInput.cs b/Octokit.GraphQL/Model/LockLockableInput.cs
index 2c0eeb0b..86bc7e76 100644
--- a/Octokit.GraphQL/Model/LockLockableInput.cs
+++ b/Octokit.GraphQL/Model/LockLockableInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class LockLockableInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// ID of the item to be locked.
///
@@ -17,10 +22,5 @@ public class LockLockableInput
/// A reason for why the item will be locked.
///
public LockReason? LockReason { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/MarkDiscussionCommentAsAnswerInput.cs b/Octokit.GraphQL/Model/MarkDiscussionCommentAsAnswerInput.cs
index 58fdf9bb..f4a56f2a 100644
--- a/Octokit.GraphQL/Model/MarkDiscussionCommentAsAnswerInput.cs
+++ b/Octokit.GraphQL/Model/MarkDiscussionCommentAsAnswerInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class MarkDiscussionCommentAsAnswerInput
{
///
- /// The Node ID of the discussion comment to mark as an answer.
+ /// A unique identifier for the client performing the mutation.
///
- public ID Id { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The Node ID of the discussion comment to mark as an answer.
///
- public string ClientMutationId { get; set; }
+ public ID Id { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/MarkFileAsViewedInput.cs b/Octokit.GraphQL/Model/MarkFileAsViewedInput.cs
index 992ebb16..88ed5d26 100644
--- a/Octokit.GraphQL/Model/MarkFileAsViewedInput.cs
+++ b/Octokit.GraphQL/Model/MarkFileAsViewedInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class MarkFileAsViewedInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the pull request.
///
@@ -17,10 +22,5 @@ public class MarkFileAsViewedInput
/// The path of the file to mark as viewed
///
public string Path { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/MarkNotificationAsDoneInput.cs b/Octokit.GraphQL/Model/MarkNotificationAsDoneInput.cs
index df396534..92c2a316 100644
--- a/Octokit.GraphQL/Model/MarkNotificationAsDoneInput.cs
+++ b/Octokit.GraphQL/Model/MarkNotificationAsDoneInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class MarkNotificationAsDoneInput
{
///
- /// The NotificationThread id.
+ /// A unique identifier for the client performing the mutation.
///
- public ID Id { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The NotificationThread id.
///
- public string ClientMutationId { get; set; }
+ public ID Id { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/MarkProjectV2AsTemplateInput.cs b/Octokit.GraphQL/Model/MarkProjectV2AsTemplateInput.cs
index fa2323be..f9126e3f 100644
--- a/Octokit.GraphQL/Model/MarkProjectV2AsTemplateInput.cs
+++ b/Octokit.GraphQL/Model/MarkProjectV2AsTemplateInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class MarkProjectV2AsTemplateInput
{
///
- /// The ID of the Project to mark as a template.
+ /// A unique identifier for the client performing the mutation.
///
- public ID ProjectId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the Project to mark as a template.
///
- public string ClientMutationId { get; set; }
+ public ID ProjectId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/MarkPullRequestReadyForReviewInput.cs b/Octokit.GraphQL/Model/MarkPullRequestReadyForReviewInput.cs
index 7de8fce7..79920137 100644
--- a/Octokit.GraphQL/Model/MarkPullRequestReadyForReviewInput.cs
+++ b/Octokit.GraphQL/Model/MarkPullRequestReadyForReviewInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class MarkPullRequestReadyForReviewInput
{
///
- /// ID of the pull request to be marked as ready for review.
+ /// A unique identifier for the client performing the mutation.
///
- public ID PullRequestId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// ID of the pull request to be marked as ready for review.
///
- public string ClientMutationId { get; set; }
+ public ID PullRequestId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/MergeBranchInput.cs b/Octokit.GraphQL/Model/MergeBranchInput.cs
index bee813fe..5ed85dfd 100644
--- a/Octokit.GraphQL/Model/MergeBranchInput.cs
+++ b/Octokit.GraphQL/Model/MergeBranchInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class MergeBranchInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the Repository containing the base branch that will be modified.
///
@@ -32,10 +37,5 @@ public class MergeBranchInput
/// The email address to associate with this commit.
///
public string AuthorEmail { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/MergePullRequestInput.cs b/Octokit.GraphQL/Model/MergePullRequestInput.cs
index 0b9fd7d6..a983cc6d 100644
--- a/Octokit.GraphQL/Model/MergePullRequestInput.cs
+++ b/Octokit.GraphQL/Model/MergePullRequestInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class MergePullRequestInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// ID of the pull request to be merged.
///
@@ -37,10 +42,5 @@ public class MergePullRequestInput
/// The email address to associate with this merge.
///
public string AuthorEmail { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/MinimizeCommentInput.cs b/Octokit.GraphQL/Model/MinimizeCommentInput.cs
index b04eb83a..02e87875 100644
--- a/Octokit.GraphQL/Model/MinimizeCommentInput.cs
+++ b/Octokit.GraphQL/Model/MinimizeCommentInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class MinimizeCommentInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the subject to modify.
///
@@ -17,10 +22,5 @@ public class MinimizeCommentInput
/// The classification of comment
///
public ReportedContentClassifiers Classifier { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/MoveProjectCardInput.cs b/Octokit.GraphQL/Model/MoveProjectCardInput.cs
index 0e9859ad..412733bc 100644
--- a/Octokit.GraphQL/Model/MoveProjectCardInput.cs
+++ b/Octokit.GraphQL/Model/MoveProjectCardInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class MoveProjectCardInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The id of the card to move.
///
@@ -22,10 +27,5 @@ public class MoveProjectCardInput
/// Place the new card after the card with this id. Pass null to place it at the top.
///
public ID? AfterCardId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/MoveProjectColumnInput.cs b/Octokit.GraphQL/Model/MoveProjectColumnInput.cs
index 4de4c3a3..6c8af204 100644
--- a/Octokit.GraphQL/Model/MoveProjectColumnInput.cs
+++ b/Octokit.GraphQL/Model/MoveProjectColumnInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class MoveProjectColumnInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The id of the column to move.
///
@@ -17,10 +22,5 @@ public class MoveProjectColumnInput
/// Place the new column after the column with this id. Pass null to place it at the front.
///
public ID? AfterColumnId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/PinIssueInput.cs b/Octokit.GraphQL/Model/PinIssueInput.cs
index 4112845f..357ef732 100644
--- a/Octokit.GraphQL/Model/PinIssueInput.cs
+++ b/Octokit.GraphQL/Model/PinIssueInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class PinIssueInput
{
///
- /// The ID of the issue to be pinned
+ /// A unique identifier for the client performing the mutation.
///
- public ID IssueId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the issue to be pinned
///
- public string ClientMutationId { get; set; }
+ public ID IssueId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/PublishSponsorsTierInput.cs b/Octokit.GraphQL/Model/PublishSponsorsTierInput.cs
index 6f04f373..cb111097 100644
--- a/Octokit.GraphQL/Model/PublishSponsorsTierInput.cs
+++ b/Octokit.GraphQL/Model/PublishSponsorsTierInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class PublishSponsorsTierInput
{
///
- /// The ID of the draft tier to publish.
+ /// A unique identifier for the client performing the mutation.
///
- public ID TierId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the draft tier to publish.
///
- public string ClientMutationId { get; set; }
+ public ID TierId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/RegenerateEnterpriseIdentityProviderRecoveryCodesInput.cs b/Octokit.GraphQL/Model/RegenerateEnterpriseIdentityProviderRecoveryCodesInput.cs
index f6757b6e..e60c7e27 100644
--- a/Octokit.GraphQL/Model/RegenerateEnterpriseIdentityProviderRecoveryCodesInput.cs
+++ b/Octokit.GraphQL/Model/RegenerateEnterpriseIdentityProviderRecoveryCodesInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class RegenerateEnterpriseIdentityProviderRecoveryCodesInput
{
///
- /// The ID of the enterprise on which to set an identity provider.
+ /// A unique identifier for the client performing the mutation.
///
- public ID EnterpriseId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the enterprise on which to set an identity provider.
///
- public string ClientMutationId { get; set; }
+ public ID EnterpriseId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/RegenerateVerifiableDomainTokenInput.cs b/Octokit.GraphQL/Model/RegenerateVerifiableDomainTokenInput.cs
index 20e3a8bc..93d5af78 100644
--- a/Octokit.GraphQL/Model/RegenerateVerifiableDomainTokenInput.cs
+++ b/Octokit.GraphQL/Model/RegenerateVerifiableDomainTokenInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class RegenerateVerifiableDomainTokenInput
{
///
- /// The ID of the verifiable domain to regenerate the verification token of.
+ /// A unique identifier for the client performing the mutation.
///
- public ID Id { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the verifiable domain to regenerate the verification token of.
///
- public string ClientMutationId { get; set; }
+ public ID Id { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/RejectDeploymentsInput.cs b/Octokit.GraphQL/Model/RejectDeploymentsInput.cs
index 829556e7..89007d46 100644
--- a/Octokit.GraphQL/Model/RejectDeploymentsInput.cs
+++ b/Octokit.GraphQL/Model/RejectDeploymentsInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class RejectDeploymentsInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The node ID of the workflow run containing the pending deployments.
///
@@ -22,10 +27,5 @@ public class RejectDeploymentsInput
/// Optional comment for rejecting deployments
///
public string Comment { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/RemoveAssigneesFromAssignableInput.cs b/Octokit.GraphQL/Model/RemoveAssigneesFromAssignableInput.cs
index b4d4dbfd..adb1068e 100644
--- a/Octokit.GraphQL/Model/RemoveAssigneesFromAssignableInput.cs
+++ b/Octokit.GraphQL/Model/RemoveAssigneesFromAssignableInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class RemoveAssigneesFromAssignableInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The id of the assignable object to remove assignees from.
///
@@ -17,10 +22,5 @@ public class RemoveAssigneesFromAssignableInput
/// The id of users to remove as assignees.
///
public IEnumerable AssigneeIds { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/RemoveEnterpriseAdminInput.cs b/Octokit.GraphQL/Model/RemoveEnterpriseAdminInput.cs
index e046bb65..fbb560d8 100644
--- a/Octokit.GraphQL/Model/RemoveEnterpriseAdminInput.cs
+++ b/Octokit.GraphQL/Model/RemoveEnterpriseAdminInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class RemoveEnterpriseAdminInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Enterprise ID from which to remove the administrator.
///
@@ -17,10 +22,5 @@ public class RemoveEnterpriseAdminInput
/// The login of the user to remove as an administrator.
///
public string Login { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/RemoveEnterpriseIdentityProviderInput.cs b/Octokit.GraphQL/Model/RemoveEnterpriseIdentityProviderInput.cs
index 04e24fb3..4c6d3dc3 100644
--- a/Octokit.GraphQL/Model/RemoveEnterpriseIdentityProviderInput.cs
+++ b/Octokit.GraphQL/Model/RemoveEnterpriseIdentityProviderInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class RemoveEnterpriseIdentityProviderInput
{
///
- /// The ID of the enterprise from which to remove the identity provider.
+ /// A unique identifier for the client performing the mutation.
///
- public ID EnterpriseId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the enterprise from which to remove the identity provider.
///
- public string ClientMutationId { get; set; }
+ public ID EnterpriseId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/RemoveEnterpriseMemberInput.cs b/Octokit.GraphQL/Model/RemoveEnterpriseMemberInput.cs
index a4cbc668..fb3b01c9 100644
--- a/Octokit.GraphQL/Model/RemoveEnterpriseMemberInput.cs
+++ b/Octokit.GraphQL/Model/RemoveEnterpriseMemberInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class RemoveEnterpriseMemberInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the enterprise from which the user should be removed.
///
@@ -17,10 +22,5 @@ public class RemoveEnterpriseMemberInput
/// The ID of the user to remove from the enterprise.
///
public ID UserId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/RemoveEnterpriseOrganizationInput.cs b/Octokit.GraphQL/Model/RemoveEnterpriseOrganizationInput.cs
index d3217023..b1bc9f9b 100644
--- a/Octokit.GraphQL/Model/RemoveEnterpriseOrganizationInput.cs
+++ b/Octokit.GraphQL/Model/RemoveEnterpriseOrganizationInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class RemoveEnterpriseOrganizationInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the enterprise from which the organization should be removed.
///
@@ -17,10 +22,5 @@ public class RemoveEnterpriseOrganizationInput
/// The ID of the organization to remove from the enterprise.
///
public ID OrganizationId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/RemoveEnterpriseSupportEntitlementInput.cs b/Octokit.GraphQL/Model/RemoveEnterpriseSupportEntitlementInput.cs
index f9f0e213..6bd95cca 100644
--- a/Octokit.GraphQL/Model/RemoveEnterpriseSupportEntitlementInput.cs
+++ b/Octokit.GraphQL/Model/RemoveEnterpriseSupportEntitlementInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class RemoveEnterpriseSupportEntitlementInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the Enterprise which the admin belongs to.
///
@@ -17,10 +22,5 @@ public class RemoveEnterpriseSupportEntitlementInput
/// The login of a member who will lose the support entitlement.
///
public string Login { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/RemoveLabelsFromLabelableInput.cs b/Octokit.GraphQL/Model/RemoveLabelsFromLabelableInput.cs
index 1c105499..a62bb62b 100644
--- a/Octokit.GraphQL/Model/RemoveLabelsFromLabelableInput.cs
+++ b/Octokit.GraphQL/Model/RemoveLabelsFromLabelableInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class RemoveLabelsFromLabelableInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The id of the Labelable to remove labels from.
///
@@ -17,10 +22,5 @@ public class RemoveLabelsFromLabelableInput
/// The ids of labels to remove.
///
public IEnumerable LabelIds { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/RemoveOutsideCollaboratorInput.cs b/Octokit.GraphQL/Model/RemoveOutsideCollaboratorInput.cs
index 9037447a..d2b05e56 100644
--- a/Octokit.GraphQL/Model/RemoveOutsideCollaboratorInput.cs
+++ b/Octokit.GraphQL/Model/RemoveOutsideCollaboratorInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class RemoveOutsideCollaboratorInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the outside collaborator to remove.
///
@@ -17,10 +22,5 @@ public class RemoveOutsideCollaboratorInput
/// The ID of the organization to remove the outside collaborator from.
///
public ID OrganizationId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/RemoveReactionInput.cs b/Octokit.GraphQL/Model/RemoveReactionInput.cs
index 6aa2d9e4..ccd9de5b 100644
--- a/Octokit.GraphQL/Model/RemoveReactionInput.cs
+++ b/Octokit.GraphQL/Model/RemoveReactionInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class RemoveReactionInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the subject to modify.
///
@@ -17,10 +22,5 @@ public class RemoveReactionInput
/// The name of the emoji reaction to remove.
///
public ReactionContent Content { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/RemoveStarInput.cs b/Octokit.GraphQL/Model/RemoveStarInput.cs
index 5ab72a6a..9b242a1c 100644
--- a/Octokit.GraphQL/Model/RemoveStarInput.cs
+++ b/Octokit.GraphQL/Model/RemoveStarInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class RemoveStarInput
{
///
- /// The Starrable ID to unstar.
+ /// A unique identifier for the client performing the mutation.
///
- public ID StarrableId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The Starrable ID to unstar.
///
- public string ClientMutationId { get; set; }
+ public ID StarrableId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/RemoveUpvoteInput.cs b/Octokit.GraphQL/Model/RemoveUpvoteInput.cs
index 6e69292c..138c111d 100644
--- a/Octokit.GraphQL/Model/RemoveUpvoteInput.cs
+++ b/Octokit.GraphQL/Model/RemoveUpvoteInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class RemoveUpvoteInput
{
///
- /// The Node ID of the discussion or comment to remove upvote.
+ /// A unique identifier for the client performing the mutation.
///
- public ID SubjectId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The Node ID of the discussion or comment to remove upvote.
///
- public string ClientMutationId { get; set; }
+ public ID SubjectId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/ReopenDiscussionInput.cs b/Octokit.GraphQL/Model/ReopenDiscussionInput.cs
index 346b00d9..4f730e6a 100644
--- a/Octokit.GraphQL/Model/ReopenDiscussionInput.cs
+++ b/Octokit.GraphQL/Model/ReopenDiscussionInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class ReopenDiscussionInput
{
///
- /// ID of the discussion to be reopened.
+ /// A unique identifier for the client performing the mutation.
///
- public ID DiscussionId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// ID of the discussion to be reopened.
///
- public string ClientMutationId { get; set; }
+ public ID DiscussionId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/ReopenIssueInput.cs b/Octokit.GraphQL/Model/ReopenIssueInput.cs
index 3ebf7c76..694687ff 100644
--- a/Octokit.GraphQL/Model/ReopenIssueInput.cs
+++ b/Octokit.GraphQL/Model/ReopenIssueInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class ReopenIssueInput
{
///
- /// ID of the issue to be opened.
+ /// A unique identifier for the client performing the mutation.
///
- public ID IssueId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// ID of the issue to be opened.
///
- public string ClientMutationId { get; set; }
+ public ID IssueId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/ReopenPullRequestInput.cs b/Octokit.GraphQL/Model/ReopenPullRequestInput.cs
index 0d5d7690..b8cd400a 100644
--- a/Octokit.GraphQL/Model/ReopenPullRequestInput.cs
+++ b/Octokit.GraphQL/Model/ReopenPullRequestInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class ReopenPullRequestInput
{
///
- /// ID of the pull request to be reopened.
+ /// A unique identifier for the client performing the mutation.
///
- public ID PullRequestId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// ID of the pull request to be reopened.
///
- public string ClientMutationId { get; set; }
+ public ID PullRequestId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/Repository.cs b/Octokit.GraphQL/Model/Repository.cs
index 4cd7cccd..fe688260 100644
--- a/Octokit.GraphQL/Model/Repository.cs
+++ b/Octokit.GraphQL/Model/Repository.cs
@@ -194,8 +194,9 @@ internal Repository(Expression expression) : base(expression)
/// Returns the elements in the list that come after the specified cursor.
/// Returns the last _n_ elements from the list.
/// Returns the elements in the list that come before the specified cursor.
+ /// The names of the environments to be returned.
/// Ordering options for the environments
- public EnvironmentConnection Environments(Arg? first = null, Arg? after = null, Arg? last = null, Arg? before = null, Arg? orderBy = null) => this.CreateMethodCall(x => x.Environments(first, after, last, before, orderBy), Octokit.GraphQL.Model.EnvironmentConnection.Create);
+ public EnvironmentConnection Environments(Arg? first = null, Arg? after = null, Arg? last = null, Arg? before = null, Arg>? names = null, Arg? orderBy = null) => this.CreateMethodCall(x => x.Environments(first, after, last, before, names, orderBy), Octokit.GraphQL.Model.EnvironmentConnection.Create);
///
/// Returns how many forks there are of this repository in the whole network.
@@ -522,6 +523,11 @@ internal Repository(Expression expression) : base(expression)
/// Returns the elements in the list that come before the specified cursor.
public PinnedIssueConnection PinnedIssues(Arg? first = null, Arg? after = null, Arg? last = null, Arg? before = null) => this.CreateMethodCall(x => x.PinnedIssues(first, after, last, before), Octokit.GraphQL.Model.PinnedIssueConnection.Create);
+ ///
+ /// Returns information about the availability of certain features and limits based on the repository's billing plan.
+ ///
+ public RepositoryPlanFeatures PlanFeatures => this.CreateProperty(x => x.PlanFeatures, Octokit.GraphQL.Model.RepositoryPlanFeatures.Create);
+
///
/// The primary language of the repository's code.
///
diff --git a/Octokit.GraphQL/Model/RepositoryPlanFeatures.cs b/Octokit.GraphQL/Model/RepositoryPlanFeatures.cs
new file mode 100644
index 00000000..47543a3d
--- /dev/null
+++ b/Octokit.GraphQL/Model/RepositoryPlanFeatures.cs
@@ -0,0 +1,48 @@
+namespace Octokit.GraphQL.Model
+{
+ using System;
+ using System.Collections.Generic;
+ using System.Linq.Expressions;
+ using Octokit.GraphQL.Core;
+ using Octokit.GraphQL.Core.Builders;
+
+ ///
+ /// Information about the availability of features and limits for a repository based on its billing plan.
+ ///
+ public class RepositoryPlanFeatures : QueryableValue
+ {
+ internal RepositoryPlanFeatures(Expression expression) : base(expression)
+ {
+ }
+
+ ///
+ /// Whether reviews can be automatically requested and enforced with a CODEOWNERS file
+ ///
+ public bool Codeowners { get; }
+
+ ///
+ /// Whether pull requests can be created as or converted to draft
+ ///
+ public bool DraftPullRequests { get; }
+
+ ///
+ /// Maximum number of users that can be assigned to an issue or pull request
+ ///
+ public int MaximumAssignees { get; }
+
+ ///
+ /// Maximum number of manually-requested reviews on a pull request
+ ///
+ public int MaximumManualReviewRequests { get; }
+
+ ///
+ /// Whether teams can be requested to review pull requests
+ ///
+ public bool TeamReviewRequests { get; }
+
+ internal static RepositoryPlanFeatures Create(Expression expression)
+ {
+ return new RepositoryPlanFeatures(expression);
+ }
+ }
+}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/RepositoryRuleType.cs b/Octokit.GraphQL/Model/RepositoryRuleType.cs
index f0864d17..0e88580d 100644
--- a/Octokit.GraphQL/Model/RepositoryRuleType.cs
+++ b/Octokit.GraphQL/Model/RepositoryRuleType.cs
@@ -149,12 +149,6 @@ public enum RepositoryRuleType
[EnumMember(Value = "WORKFLOWS")]
Workflows,
- ///
- /// Commits pushed to matching refs must have verified signatures.
- ///
- [EnumMember(Value = "RULESET_REQUIRED_SIGNATURES")]
- RulesetRequiredSignatures,
-
///
/// Secret scanning
///
diff --git a/Octokit.GraphQL/Model/RequestReviewsInput.cs b/Octokit.GraphQL/Model/RequestReviewsInput.cs
index 5d3d4cca..f61d7332 100644
--- a/Octokit.GraphQL/Model/RequestReviewsInput.cs
+++ b/Octokit.GraphQL/Model/RequestReviewsInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class RequestReviewsInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the pull request to modify.
///
@@ -27,10 +32,5 @@ public class RequestReviewsInput
/// Add users to the set rather than replace.
///
public bool? Union { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/RerequestCheckSuiteInput.cs b/Octokit.GraphQL/Model/RerequestCheckSuiteInput.cs
index 00884467..dbe27b85 100644
--- a/Octokit.GraphQL/Model/RerequestCheckSuiteInput.cs
+++ b/Octokit.GraphQL/Model/RerequestCheckSuiteInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class RerequestCheckSuiteInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the repository.
///
@@ -17,10 +22,5 @@ public class RerequestCheckSuiteInput
/// The Node ID of the check suite.
///
public ID CheckSuiteId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/ResolveReviewThreadInput.cs b/Octokit.GraphQL/Model/ResolveReviewThreadInput.cs
index 06b2b0d8..ecb06123 100644
--- a/Octokit.GraphQL/Model/ResolveReviewThreadInput.cs
+++ b/Octokit.GraphQL/Model/ResolveReviewThreadInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class ResolveReviewThreadInput
{
///
- /// The ID of the thread to resolve
+ /// A unique identifier for the client performing the mutation.
///
- public ID ThreadId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the thread to resolve
///
- public string ClientMutationId { get; set; }
+ public ID ThreadId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/RetireSponsorsTierInput.cs b/Octokit.GraphQL/Model/RetireSponsorsTierInput.cs
index 59fbc483..37750753 100644
--- a/Octokit.GraphQL/Model/RetireSponsorsTierInput.cs
+++ b/Octokit.GraphQL/Model/RetireSponsorsTierInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class RetireSponsorsTierInput
{
///
- /// The ID of the published tier to retire.
+ /// A unique identifier for the client performing the mutation.
///
- public ID TierId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the published tier to retire.
///
- public string ClientMutationId { get; set; }
+ public ID TierId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/RevertPullRequestInput.cs b/Octokit.GraphQL/Model/RevertPullRequestInput.cs
index 3d7c51d2..6a15d42e 100644
--- a/Octokit.GraphQL/Model/RevertPullRequestInput.cs
+++ b/Octokit.GraphQL/Model/RevertPullRequestInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class RevertPullRequestInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the pull request to revert.
///
@@ -27,10 +32,5 @@ public class RevertPullRequestInput
/// Indicates whether the revert pull request should be a draft.
///
public bool? Draft { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/RevokeEnterpriseOrganizationsMigratorRoleInput.cs b/Octokit.GraphQL/Model/RevokeEnterpriseOrganizationsMigratorRoleInput.cs
index 670e6bb4..e17dd375 100644
--- a/Octokit.GraphQL/Model/RevokeEnterpriseOrganizationsMigratorRoleInput.cs
+++ b/Octokit.GraphQL/Model/RevokeEnterpriseOrganizationsMigratorRoleInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class RevokeEnterpriseOrganizationsMigratorRoleInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the enterprise to which all organizations managed by it will be granted the migrator role.
///
@@ -17,10 +22,5 @@ public class RevokeEnterpriseOrganizationsMigratorRoleInput
/// The login of the user to revoke the migrator role
///
public string Login { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/RevokeMigratorRoleInput.cs b/Octokit.GraphQL/Model/RevokeMigratorRoleInput.cs
index 5b922ff3..9dad71de 100644
--- a/Octokit.GraphQL/Model/RevokeMigratorRoleInput.cs
+++ b/Octokit.GraphQL/Model/RevokeMigratorRoleInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class RevokeMigratorRoleInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the organization that the user/team belongs to.
///
@@ -22,10 +27,5 @@ public class RevokeMigratorRoleInput
/// Specifies the type of the actor, can be either USER or TEAM.
///
public ActorType ActorType { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/SetEnterpriseIdentityProviderInput.cs b/Octokit.GraphQL/Model/SetEnterpriseIdentityProviderInput.cs
index ced74269..720785a7 100644
--- a/Octokit.GraphQL/Model/SetEnterpriseIdentityProviderInput.cs
+++ b/Octokit.GraphQL/Model/SetEnterpriseIdentityProviderInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class SetEnterpriseIdentityProviderInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the enterprise on which to set an identity provider.
///
@@ -37,10 +42,5 @@ public class SetEnterpriseIdentityProviderInput
/// The digest algorithm used to sign SAML requests for the identity provider.
///
public SamlDigestAlgorithm DigestMethod { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/SetOrganizationInteractionLimitInput.cs b/Octokit.GraphQL/Model/SetOrganizationInteractionLimitInput.cs
index 73315994..1553b1b7 100644
--- a/Octokit.GraphQL/Model/SetOrganizationInteractionLimitInput.cs
+++ b/Octokit.GraphQL/Model/SetOrganizationInteractionLimitInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class SetOrganizationInteractionLimitInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the organization to set a limit for.
///
@@ -22,10 +27,5 @@ public class SetOrganizationInteractionLimitInput
/// When this limit should expire.
///
public RepositoryInteractionLimitExpiry? Expiry { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/SetRepositoryInteractionLimitInput.cs b/Octokit.GraphQL/Model/SetRepositoryInteractionLimitInput.cs
index 474e440e..a2ac88b8 100644
--- a/Octokit.GraphQL/Model/SetRepositoryInteractionLimitInput.cs
+++ b/Octokit.GraphQL/Model/SetRepositoryInteractionLimitInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class SetRepositoryInteractionLimitInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the repository to set a limit for.
///
@@ -22,10 +27,5 @@ public class SetRepositoryInteractionLimitInput
/// When this limit should expire.
///
public RepositoryInteractionLimitExpiry? Expiry { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/SetUserInteractionLimitInput.cs b/Octokit.GraphQL/Model/SetUserInteractionLimitInput.cs
index 067a631b..e2c9db4a 100644
--- a/Octokit.GraphQL/Model/SetUserInteractionLimitInput.cs
+++ b/Octokit.GraphQL/Model/SetUserInteractionLimitInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class SetUserInteractionLimitInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the user to set a limit for.
///
@@ -22,10 +27,5 @@ public class SetUserInteractionLimitInput
/// When this limit should expire.
///
public RepositoryInteractionLimitExpiry? Expiry { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/StartOrganizationMigrationInput.cs b/Octokit.GraphQL/Model/StartOrganizationMigrationInput.cs
index 054aed34..4ae9a8e2 100644
--- a/Octokit.GraphQL/Model/StartOrganizationMigrationInput.cs
+++ b/Octokit.GraphQL/Model/StartOrganizationMigrationInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class StartOrganizationMigrationInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The URL of the organization to migrate.
///
@@ -27,10 +32,5 @@ public class StartOrganizationMigrationInput
/// The migration source access token.
///
public string SourceAccessToken { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/StartRepositoryMigrationInput.cs b/Octokit.GraphQL/Model/StartRepositoryMigrationInput.cs
index 0cf8f6e4..dcb55737 100644
--- a/Octokit.GraphQL/Model/StartRepositoryMigrationInput.cs
+++ b/Octokit.GraphQL/Model/StartRepositoryMigrationInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class StartRepositoryMigrationInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the migration source.
///
@@ -67,10 +72,5 @@ public class StartRepositoryMigrationInput
/// Whether to lock the source repository.
///
public bool? LockSource { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/SubmitPullRequestReviewInput.cs b/Octokit.GraphQL/Model/SubmitPullRequestReviewInput.cs
index 4c20222c..998162af 100644
--- a/Octokit.GraphQL/Model/SubmitPullRequestReviewInput.cs
+++ b/Octokit.GraphQL/Model/SubmitPullRequestReviewInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class SubmitPullRequestReviewInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Pull Request ID to submit any pending reviews.
///
@@ -27,10 +32,5 @@ public class SubmitPullRequestReviewInput
/// The text field to set on the Pull Request Review.
///
public string Body { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/TransferEnterpriseOrganizationInput.cs b/Octokit.GraphQL/Model/TransferEnterpriseOrganizationInput.cs
index 5f196156..64c887d9 100644
--- a/Octokit.GraphQL/Model/TransferEnterpriseOrganizationInput.cs
+++ b/Octokit.GraphQL/Model/TransferEnterpriseOrganizationInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class TransferEnterpriseOrganizationInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the organization to transfer.
///
@@ -17,10 +22,5 @@ public class TransferEnterpriseOrganizationInput
/// The ID of the enterprise where the organization should be transferred.
///
public ID DestinationEnterpriseId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/TransferIssueInput.cs b/Octokit.GraphQL/Model/TransferIssueInput.cs
index b8f76779..58137aca 100644
--- a/Octokit.GraphQL/Model/TransferIssueInput.cs
+++ b/Octokit.GraphQL/Model/TransferIssueInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class TransferIssueInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the issue to be transferred
///
@@ -22,10 +27,5 @@ public class TransferIssueInput
/// Whether to create labels if they don't exist in the target repository (matched by name)
///
public bool? CreateLabelsIfMissing { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UnarchiveProjectV2ItemInput.cs b/Octokit.GraphQL/Model/UnarchiveProjectV2ItemInput.cs
index cc47a709..96fbae3d 100644
--- a/Octokit.GraphQL/Model/UnarchiveProjectV2ItemInput.cs
+++ b/Octokit.GraphQL/Model/UnarchiveProjectV2ItemInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UnarchiveProjectV2ItemInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the Project to archive the item from.
///
@@ -17,10 +22,5 @@ public class UnarchiveProjectV2ItemInput
/// The ID of the ProjectV2Item to unarchive.
///
public ID ItemId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UnarchiveRepositoryInput.cs b/Octokit.GraphQL/Model/UnarchiveRepositoryInput.cs
index a4d728f3..075d0f74 100644
--- a/Octokit.GraphQL/Model/UnarchiveRepositoryInput.cs
+++ b/Octokit.GraphQL/Model/UnarchiveRepositoryInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class UnarchiveRepositoryInput
{
///
- /// The ID of the repository to unarchive.
+ /// A unique identifier for the client performing the mutation.
///
- public ID RepositoryId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the repository to unarchive.
///
- public string ClientMutationId { get; set; }
+ public ID RepositoryId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UnfollowOrganizationInput.cs b/Octokit.GraphQL/Model/UnfollowOrganizationInput.cs
index d2021249..82e1130c 100644
--- a/Octokit.GraphQL/Model/UnfollowOrganizationInput.cs
+++ b/Octokit.GraphQL/Model/UnfollowOrganizationInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class UnfollowOrganizationInput
{
///
- /// ID of the organization to unfollow.
+ /// A unique identifier for the client performing the mutation.
///
- public ID OrganizationId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// ID of the organization to unfollow.
///
- public string ClientMutationId { get; set; }
+ public ID OrganizationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UnfollowUserInput.cs b/Octokit.GraphQL/Model/UnfollowUserInput.cs
index 5c78d845..862d4b42 100644
--- a/Octokit.GraphQL/Model/UnfollowUserInput.cs
+++ b/Octokit.GraphQL/Model/UnfollowUserInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class UnfollowUserInput
{
///
- /// ID of the user to unfollow.
+ /// A unique identifier for the client performing the mutation.
///
- public ID UserId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// ID of the user to unfollow.
///
- public string ClientMutationId { get; set; }
+ public ID UserId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UnlinkProjectV2FromRepositoryInput.cs b/Octokit.GraphQL/Model/UnlinkProjectV2FromRepositoryInput.cs
index 44753cc1..fd803cef 100644
--- a/Octokit.GraphQL/Model/UnlinkProjectV2FromRepositoryInput.cs
+++ b/Octokit.GraphQL/Model/UnlinkProjectV2FromRepositoryInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UnlinkProjectV2FromRepositoryInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the project to unlink from the repository.
///
@@ -17,10 +22,5 @@ public class UnlinkProjectV2FromRepositoryInput
/// The ID of the repository to unlink from the project.
///
public ID RepositoryId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UnlinkProjectV2FromTeamInput.cs b/Octokit.GraphQL/Model/UnlinkProjectV2FromTeamInput.cs
index 997820d2..5b08caa4 100644
--- a/Octokit.GraphQL/Model/UnlinkProjectV2FromTeamInput.cs
+++ b/Octokit.GraphQL/Model/UnlinkProjectV2FromTeamInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UnlinkProjectV2FromTeamInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the project to unlink from the team.
///
@@ -17,10 +22,5 @@ public class UnlinkProjectV2FromTeamInput
/// The ID of the team to unlink from the project.
///
public ID TeamId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UnlinkRepositoryFromProjectInput.cs b/Octokit.GraphQL/Model/UnlinkRepositoryFromProjectInput.cs
index 315a3d9f..c37bbdd1 100644
--- a/Octokit.GraphQL/Model/UnlinkRepositoryFromProjectInput.cs
+++ b/Octokit.GraphQL/Model/UnlinkRepositoryFromProjectInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UnlinkRepositoryFromProjectInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the Project linked to the Repository.
///
@@ -17,10 +22,5 @@ public class UnlinkRepositoryFromProjectInput
/// The ID of the Repository linked to the Project.
///
public ID RepositoryId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UnlockLockableInput.cs b/Octokit.GraphQL/Model/UnlockLockableInput.cs
index 4a757f3e..092edaeb 100644
--- a/Octokit.GraphQL/Model/UnlockLockableInput.cs
+++ b/Octokit.GraphQL/Model/UnlockLockableInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class UnlockLockableInput
{
///
- /// ID of the item to be unlocked.
+ /// A unique identifier for the client performing the mutation.
///
- public ID LockableId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// ID of the item to be unlocked.
///
- public string ClientMutationId { get; set; }
+ public ID LockableId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UnmarkDiscussionCommentAsAnswerInput.cs b/Octokit.GraphQL/Model/UnmarkDiscussionCommentAsAnswerInput.cs
index 64ba8053..2aff780f 100644
--- a/Octokit.GraphQL/Model/UnmarkDiscussionCommentAsAnswerInput.cs
+++ b/Octokit.GraphQL/Model/UnmarkDiscussionCommentAsAnswerInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class UnmarkDiscussionCommentAsAnswerInput
{
///
- /// The Node ID of the discussion comment to unmark as an answer.
+ /// A unique identifier for the client performing the mutation.
///
- public ID Id { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The Node ID of the discussion comment to unmark as an answer.
///
- public string ClientMutationId { get; set; }
+ public ID Id { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UnmarkFileAsViewedInput.cs b/Octokit.GraphQL/Model/UnmarkFileAsViewedInput.cs
index 1319e861..bc347fe6 100644
--- a/Octokit.GraphQL/Model/UnmarkFileAsViewedInput.cs
+++ b/Octokit.GraphQL/Model/UnmarkFileAsViewedInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UnmarkFileAsViewedInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the pull request.
///
@@ -17,10 +22,5 @@ public class UnmarkFileAsViewedInput
/// The path of the file to mark as unviewed
///
public string Path { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UnmarkIssueAsDuplicateInput.cs b/Octokit.GraphQL/Model/UnmarkIssueAsDuplicateInput.cs
index 961a7e6a..6bdfefc5 100644
--- a/Octokit.GraphQL/Model/UnmarkIssueAsDuplicateInput.cs
+++ b/Octokit.GraphQL/Model/UnmarkIssueAsDuplicateInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UnmarkIssueAsDuplicateInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// ID of the issue or pull request currently marked as a duplicate.
///
@@ -17,10 +22,5 @@ public class UnmarkIssueAsDuplicateInput
/// ID of the issue or pull request currently considered canonical/authoritative/original.
///
public ID CanonicalId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UnmarkProjectV2AsTemplateInput.cs b/Octokit.GraphQL/Model/UnmarkProjectV2AsTemplateInput.cs
index dac9a124..a3c228db 100644
--- a/Octokit.GraphQL/Model/UnmarkProjectV2AsTemplateInput.cs
+++ b/Octokit.GraphQL/Model/UnmarkProjectV2AsTemplateInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class UnmarkProjectV2AsTemplateInput
{
///
- /// The ID of the Project to unmark as a template.
+ /// A unique identifier for the client performing the mutation.
///
- public ID ProjectId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the Project to unmark as a template.
///
- public string ClientMutationId { get; set; }
+ public ID ProjectId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UnminimizeCommentInput.cs b/Octokit.GraphQL/Model/UnminimizeCommentInput.cs
index 7f659bd6..8e26d094 100644
--- a/Octokit.GraphQL/Model/UnminimizeCommentInput.cs
+++ b/Octokit.GraphQL/Model/UnminimizeCommentInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class UnminimizeCommentInput
{
///
- /// The Node ID of the subject to modify.
+ /// A unique identifier for the client performing the mutation.
///
- public ID SubjectId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The Node ID of the subject to modify.
///
- public string ClientMutationId { get; set; }
+ public ID SubjectId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UnpinIssueInput.cs b/Octokit.GraphQL/Model/UnpinIssueInput.cs
index 3d94cc5c..a65a32b9 100644
--- a/Octokit.GraphQL/Model/UnpinIssueInput.cs
+++ b/Octokit.GraphQL/Model/UnpinIssueInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class UnpinIssueInput
{
///
- /// The ID of the issue to be unpinned
+ /// A unique identifier for the client performing the mutation.
///
- public ID IssueId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the issue to be unpinned
///
- public string ClientMutationId { get; set; }
+ public ID IssueId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UnresolveReviewThreadInput.cs b/Octokit.GraphQL/Model/UnresolveReviewThreadInput.cs
index a83fe6b9..fc7a3ead 100644
--- a/Octokit.GraphQL/Model/UnresolveReviewThreadInput.cs
+++ b/Octokit.GraphQL/Model/UnresolveReviewThreadInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class UnresolveReviewThreadInput
{
///
- /// The ID of the thread to unresolve
+ /// A unique identifier for the client performing the mutation.
///
- public ID ThreadId { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the thread to unresolve
///
- public string ClientMutationId { get; set; }
+ public ID ThreadId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UnsubscribeFromNotificationsInput.cs b/Octokit.GraphQL/Model/UnsubscribeFromNotificationsInput.cs
index af471dbf..33935a45 100644
--- a/Octokit.GraphQL/Model/UnsubscribeFromNotificationsInput.cs
+++ b/Octokit.GraphQL/Model/UnsubscribeFromNotificationsInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class UnsubscribeFromNotificationsInput
{
///
- /// The NotificationThread IDs of the objects to unsubscribe from.
+ /// A unique identifier for the client performing the mutation.
///
- public IEnumerable Ids { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The NotificationThread IDs of the objects to unsubscribe from.
///
- public string ClientMutationId { get; set; }
+ public IEnumerable Ids { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateBranchProtectionRuleInput.cs b/Octokit.GraphQL/Model/UpdateBranchProtectionRuleInput.cs
index e914a132..aaf26dd2 100644
--- a/Octokit.GraphQL/Model/UpdateBranchProtectionRuleInput.cs
+++ b/Octokit.GraphQL/Model/UpdateBranchProtectionRuleInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateBranchProtectionRuleInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The global relay id of the branch protection rule to be updated.
///
@@ -147,10 +152,5 @@ public class UpdateBranchProtectionRuleInput
/// Whether users can pull changes from upstream when the branch is locked. Set to `true` to allow fork syncing. Set to `false` to prevent fork syncing.
///
public bool? LockAllowsFetchAndMerge { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateCheckRunInput.cs b/Octokit.GraphQL/Model/UpdateCheckRunInput.cs
index ec5166c4..8a708fd7 100644
--- a/Octokit.GraphQL/Model/UpdateCheckRunInput.cs
+++ b/Octokit.GraphQL/Model/UpdateCheckRunInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateCheckRunInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The node ID of the repository.
///
@@ -62,10 +67,5 @@ public class UpdateCheckRunInput
/// Possible further actions the integrator can perform, which a user may trigger.
///
public IEnumerable Actions { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateCheckSuitePreferencesInput.cs b/Octokit.GraphQL/Model/UpdateCheckSuitePreferencesInput.cs
index 2a1597d8..9cd8f398 100644
--- a/Octokit.GraphQL/Model/UpdateCheckSuitePreferencesInput.cs
+++ b/Octokit.GraphQL/Model/UpdateCheckSuitePreferencesInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateCheckSuitePreferencesInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the repository.
///
@@ -17,10 +22,5 @@ public class UpdateCheckSuitePreferencesInput
/// The check suite preferences to modify.
///
public IEnumerable AutoTriggerPreferences { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateDiscussionCommentInput.cs b/Octokit.GraphQL/Model/UpdateDiscussionCommentInput.cs
index d54655bd..67229746 100644
--- a/Octokit.GraphQL/Model/UpdateDiscussionCommentInput.cs
+++ b/Octokit.GraphQL/Model/UpdateDiscussionCommentInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateDiscussionCommentInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the discussion comment to update.
///
@@ -17,10 +22,5 @@ public class UpdateDiscussionCommentInput
/// The new contents of the comment body.
///
public string Body { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateDiscussionInput.cs b/Octokit.GraphQL/Model/UpdateDiscussionInput.cs
index bbcec0ce..55379ff1 100644
--- a/Octokit.GraphQL/Model/UpdateDiscussionInput.cs
+++ b/Octokit.GraphQL/Model/UpdateDiscussionInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateDiscussionInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the discussion to update.
///
@@ -27,10 +32,5 @@ public class UpdateDiscussionInput
/// The Node ID of a discussion category within the same repository to change this discussion to.
///
public ID? CategoryId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateEnterpriseAdministratorRoleInput.cs b/Octokit.GraphQL/Model/UpdateEnterpriseAdministratorRoleInput.cs
index 7e54a769..c2c6f8cc 100644
--- a/Octokit.GraphQL/Model/UpdateEnterpriseAdministratorRoleInput.cs
+++ b/Octokit.GraphQL/Model/UpdateEnterpriseAdministratorRoleInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateEnterpriseAdministratorRoleInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the Enterprise which the admin belongs to.
///
@@ -22,10 +27,5 @@ public class UpdateEnterpriseAdministratorRoleInput
/// The new role for the Enterprise administrator.
///
public EnterpriseAdministratorRole Role { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput.cs b/Octokit.GraphQL/Model/UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput.cs
index 342989aa..a35c471f 100644
--- a/Octokit.GraphQL/Model/UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput.cs
+++ b/Octokit.GraphQL/Model/UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the enterprise on which to set the allow private repository forking setting.
///
@@ -22,10 +27,5 @@ public class UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput
/// The value for the allow private repository forking policy on the enterprise.
///
public EnterpriseAllowPrivateRepositoryForkingPolicyValue? PolicyValue { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateEnterpriseDefaultRepositoryPermissionSettingInput.cs b/Octokit.GraphQL/Model/UpdateEnterpriseDefaultRepositoryPermissionSettingInput.cs
index 7061ec00..414860c4 100644
--- a/Octokit.GraphQL/Model/UpdateEnterpriseDefaultRepositoryPermissionSettingInput.cs
+++ b/Octokit.GraphQL/Model/UpdateEnterpriseDefaultRepositoryPermissionSettingInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateEnterpriseDefaultRepositoryPermissionSettingInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the enterprise on which to set the base repository permission setting.
///
@@ -17,10 +22,5 @@ public class UpdateEnterpriseDefaultRepositoryPermissionSettingInput
/// The value for the base repository permission setting on the enterprise.
///
public EnterpriseDefaultRepositoryPermissionSettingValue SettingValue { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput.cs b/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput.cs
index b2e6602c..6f547675 100644
--- a/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput.cs
+++ b/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the enterprise on which to set the members can change repository visibility setting.
///
@@ -17,10 +22,5 @@ public class UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput
/// The value for the members can change repository visibility setting on the enterprise.
///
public EnterpriseEnabledDisabledSettingValue SettingValue { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanCreateRepositoriesSettingInput.cs b/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanCreateRepositoriesSettingInput.cs
index 429014ae..7c18b728 100644
--- a/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanCreateRepositoriesSettingInput.cs
+++ b/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanCreateRepositoriesSettingInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateEnterpriseMembersCanCreateRepositoriesSettingInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the enterprise on which to set the members can create repositories setting.
///
@@ -37,10 +42,5 @@ public class UpdateEnterpriseMembersCanCreateRepositoriesSettingInput
/// Allow members to create internal repositories. Defaults to current value.
///
public bool? MembersCanCreateInternalRepositories { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanDeleteIssuesSettingInput.cs b/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanDeleteIssuesSettingInput.cs
index a27792f6..af40978f 100644
--- a/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanDeleteIssuesSettingInput.cs
+++ b/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanDeleteIssuesSettingInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateEnterpriseMembersCanDeleteIssuesSettingInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the enterprise on which to set the members can delete issues setting.
///
@@ -17,10 +22,5 @@ public class UpdateEnterpriseMembersCanDeleteIssuesSettingInput
/// The value for the members can delete issues setting on the enterprise.
///
public EnterpriseEnabledDisabledSettingValue SettingValue { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput.cs b/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput.cs
index e820ee9e..bb1d17ae 100644
--- a/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput.cs
+++ b/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the enterprise on which to set the members can delete repositories setting.
///
@@ -17,10 +22,5 @@ public class UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput
/// The value for the members can delete repositories setting on the enterprise.
///
public EnterpriseEnabledDisabledSettingValue SettingValue { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput.cs b/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput.cs
index 9cd46159..fc76c606 100644
--- a/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput.cs
+++ b/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the enterprise on which to set the members can invite collaborators setting.
///
@@ -17,10 +22,5 @@ public class UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput
/// The value for the members can invite collaborators setting on the enterprise.
///
public EnterpriseEnabledDisabledSettingValue SettingValue { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanMakePurchasesSettingInput.cs b/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanMakePurchasesSettingInput.cs
index f7ba9c2e..c6a8b027 100644
--- a/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanMakePurchasesSettingInput.cs
+++ b/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanMakePurchasesSettingInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateEnterpriseMembersCanMakePurchasesSettingInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the enterprise on which to set the members can make purchases setting.
///
@@ -17,10 +22,5 @@ public class UpdateEnterpriseMembersCanMakePurchasesSettingInput
/// The value for the members can make purchases setting on the enterprise.
///
public EnterpriseMembersCanMakePurchasesSettingValue SettingValue { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput.cs b/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput.cs
index b0ec943b..42c7af6f 100644
--- a/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput.cs
+++ b/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the enterprise on which to set the members can update protected branches setting.
///
@@ -17,10 +22,5 @@ public class UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput
/// The value for the members can update protected branches setting on the enterprise.
///
public EnterpriseEnabledDisabledSettingValue SettingValue { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput.cs b/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput.cs
index ecc74aa4..0d2ffa7d 100644
--- a/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput.cs
+++ b/Octokit.GraphQL/Model/UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the enterprise on which to set the members can view dependency insights setting.
///
@@ -17,10 +22,5 @@ public class UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput
/// The value for the members can view dependency insights setting on the enterprise.
///
public EnterpriseEnabledDisabledSettingValue SettingValue { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateEnterpriseOrganizationProjectsSettingInput.cs b/Octokit.GraphQL/Model/UpdateEnterpriseOrganizationProjectsSettingInput.cs
index 1d259945..ea5bc191 100644
--- a/Octokit.GraphQL/Model/UpdateEnterpriseOrganizationProjectsSettingInput.cs
+++ b/Octokit.GraphQL/Model/UpdateEnterpriseOrganizationProjectsSettingInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateEnterpriseOrganizationProjectsSettingInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the enterprise on which to set the organization projects setting.
///
@@ -17,10 +22,5 @@ public class UpdateEnterpriseOrganizationProjectsSettingInput
/// The value for the organization projects setting on the enterprise.
///
public EnterpriseEnabledDisabledSettingValue SettingValue { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateEnterpriseOwnerOrganizationRoleInput.cs b/Octokit.GraphQL/Model/UpdateEnterpriseOwnerOrganizationRoleInput.cs
index 77581985..7298ec11 100644
--- a/Octokit.GraphQL/Model/UpdateEnterpriseOwnerOrganizationRoleInput.cs
+++ b/Octokit.GraphQL/Model/UpdateEnterpriseOwnerOrganizationRoleInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateEnterpriseOwnerOrganizationRoleInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the Enterprise which the owner belongs to.
///
@@ -22,10 +27,5 @@ public class UpdateEnterpriseOwnerOrganizationRoleInput
/// The role to assume in the organization.
///
public RoleInOrganization OrganizationRole { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateEnterpriseProfileInput.cs b/Octokit.GraphQL/Model/UpdateEnterpriseProfileInput.cs
index ca2556ec..df7d26b1 100644
--- a/Octokit.GraphQL/Model/UpdateEnterpriseProfileInput.cs
+++ b/Octokit.GraphQL/Model/UpdateEnterpriseProfileInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateEnterpriseProfileInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Enterprise ID to update.
///
@@ -32,10 +37,5 @@ public class UpdateEnterpriseProfileInput
/// The location of the enterprise.
///
public string Location { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateEnterpriseRepositoryProjectsSettingInput.cs b/Octokit.GraphQL/Model/UpdateEnterpriseRepositoryProjectsSettingInput.cs
index bfb35332..8fc15d20 100644
--- a/Octokit.GraphQL/Model/UpdateEnterpriseRepositoryProjectsSettingInput.cs
+++ b/Octokit.GraphQL/Model/UpdateEnterpriseRepositoryProjectsSettingInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateEnterpriseRepositoryProjectsSettingInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the enterprise on which to set the repository projects setting.
///
@@ -17,10 +22,5 @@ public class UpdateEnterpriseRepositoryProjectsSettingInput
/// The value for the repository projects setting on the enterprise.
///
public EnterpriseEnabledDisabledSettingValue SettingValue { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateEnterpriseTeamDiscussionsSettingInput.cs b/Octokit.GraphQL/Model/UpdateEnterpriseTeamDiscussionsSettingInput.cs
index 6ad0c69b..bc8ab7e4 100644
--- a/Octokit.GraphQL/Model/UpdateEnterpriseTeamDiscussionsSettingInput.cs
+++ b/Octokit.GraphQL/Model/UpdateEnterpriseTeamDiscussionsSettingInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateEnterpriseTeamDiscussionsSettingInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the enterprise on which to set the team discussions setting.
///
@@ -17,10 +22,5 @@ public class UpdateEnterpriseTeamDiscussionsSettingInput
/// The value for the team discussions setting on the enterprise.
///
public EnterpriseEnabledDisabledSettingValue SettingValue { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput.cs b/Octokit.GraphQL/Model/UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput.cs
index 3a1b2c86..50477ad7 100644
--- a/Octokit.GraphQL/Model/UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput.cs
+++ b/Octokit.GraphQL/Model/UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the enterprise on which to set the two factor authentication required setting.
///
@@ -17,10 +22,5 @@ public class UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput
/// The value for the two factor authentication required setting on the enterprise.
///
public EnterpriseEnabledSettingValue SettingValue { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateEnvironmentInput.cs b/Octokit.GraphQL/Model/UpdateEnvironmentInput.cs
index 5da1e26f..d549980e 100644
--- a/Octokit.GraphQL/Model/UpdateEnvironmentInput.cs
+++ b/Octokit.GraphQL/Model/UpdateEnvironmentInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateEnvironmentInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The node ID of the environment.
///
@@ -27,10 +32,5 @@ public class UpdateEnvironmentInput
/// Whether deployments to this environment can be approved by the user who created the deployment.
///
public bool? PreventSelfReview { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateIpAllowListEnabledSettingInput.cs b/Octokit.GraphQL/Model/UpdateIpAllowListEnabledSettingInput.cs
index 9822cced..f12295a8 100644
--- a/Octokit.GraphQL/Model/UpdateIpAllowListEnabledSettingInput.cs
+++ b/Octokit.GraphQL/Model/UpdateIpAllowListEnabledSettingInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateIpAllowListEnabledSettingInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the owner on which to set the IP allow list enabled setting.
///
@@ -17,10 +22,5 @@ public class UpdateIpAllowListEnabledSettingInput
/// The value for the IP allow list enabled setting.
///
public IpAllowListEnabledSettingValue SettingValue { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateIpAllowListEntryInput.cs b/Octokit.GraphQL/Model/UpdateIpAllowListEntryInput.cs
index 870af6f6..ea444ff0 100644
--- a/Octokit.GraphQL/Model/UpdateIpAllowListEntryInput.cs
+++ b/Octokit.GraphQL/Model/UpdateIpAllowListEntryInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateIpAllowListEntryInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the IP allow list entry to update.
///
@@ -27,10 +32,5 @@ public class UpdateIpAllowListEntryInput
/// Whether the IP allow list entry is active when an IP allow list is enabled.
///
public bool IsActive { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateIpAllowListForInstalledAppsEnabledSettingInput.cs b/Octokit.GraphQL/Model/UpdateIpAllowListForInstalledAppsEnabledSettingInput.cs
index 621ccb94..025e9128 100644
--- a/Octokit.GraphQL/Model/UpdateIpAllowListForInstalledAppsEnabledSettingInput.cs
+++ b/Octokit.GraphQL/Model/UpdateIpAllowListForInstalledAppsEnabledSettingInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateIpAllowListForInstalledAppsEnabledSettingInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the owner.
///
@@ -17,10 +22,5 @@ public class UpdateIpAllowListForInstalledAppsEnabledSettingInput
/// The value for the IP allow list configuration for installed GitHub Apps setting.
///
public IpAllowListForInstalledAppsEnabledSettingValue SettingValue { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateIssueCommentInput.cs b/Octokit.GraphQL/Model/UpdateIssueCommentInput.cs
index f9e02361..66c9ff3c 100644
--- a/Octokit.GraphQL/Model/UpdateIssueCommentInput.cs
+++ b/Octokit.GraphQL/Model/UpdateIssueCommentInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateIssueCommentInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the IssueComment to modify.
///
@@ -17,10 +22,5 @@ public class UpdateIssueCommentInput
/// The updated text of the comment.
///
public string Body { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateIssueInput.cs b/Octokit.GraphQL/Model/UpdateIssueInput.cs
index 51f8f1b2..442854f9 100644
--- a/Octokit.GraphQL/Model/UpdateIssueInput.cs
+++ b/Octokit.GraphQL/Model/UpdateIssueInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateIssueInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the Issue to modify.
///
@@ -47,10 +52,5 @@ public class UpdateIssueInput
/// An array of Node IDs for projects associated with this issue.
///
public IEnumerable ProjectIds { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateNotificationRestrictionSettingInput.cs b/Octokit.GraphQL/Model/UpdateNotificationRestrictionSettingInput.cs
index 4c106028..0a721668 100644
--- a/Octokit.GraphQL/Model/UpdateNotificationRestrictionSettingInput.cs
+++ b/Octokit.GraphQL/Model/UpdateNotificationRestrictionSettingInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateNotificationRestrictionSettingInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the owner on which to set the restrict notifications setting.
///
@@ -17,10 +22,5 @@ public class UpdateNotificationRestrictionSettingInput
/// The value for the restrict notifications setting.
///
public NotificationRestrictionSettingValue SettingValue { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateOrganizationAllowPrivateRepositoryForkingSettingInput.cs b/Octokit.GraphQL/Model/UpdateOrganizationAllowPrivateRepositoryForkingSettingInput.cs
index b63d8a4e..57b49575 100644
--- a/Octokit.GraphQL/Model/UpdateOrganizationAllowPrivateRepositoryForkingSettingInput.cs
+++ b/Octokit.GraphQL/Model/UpdateOrganizationAllowPrivateRepositoryForkingSettingInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateOrganizationAllowPrivateRepositoryForkingSettingInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the organization on which to set the allow private repository forking setting.
///
@@ -17,10 +22,5 @@ public class UpdateOrganizationAllowPrivateRepositoryForkingSettingInput
/// Enable forking of private repositories in the organization?
///
public bool ForkingEnabled { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateOrganizationWebCommitSignoffSettingInput.cs b/Octokit.GraphQL/Model/UpdateOrganizationWebCommitSignoffSettingInput.cs
index 656221a6..1361daa8 100644
--- a/Octokit.GraphQL/Model/UpdateOrganizationWebCommitSignoffSettingInput.cs
+++ b/Octokit.GraphQL/Model/UpdateOrganizationWebCommitSignoffSettingInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateOrganizationWebCommitSignoffSettingInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the organization on which to set the web commit signoff setting.
///
@@ -17,10 +22,5 @@ public class UpdateOrganizationWebCommitSignoffSettingInput
/// Enable signoff on web-based commits for repositories in the organization?
///
public bool WebCommitSignoffRequired { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdatePatreonSponsorabilityInput.cs b/Octokit.GraphQL/Model/UpdatePatreonSponsorabilityInput.cs
index f011f824..0a77c24c 100644
--- a/Octokit.GraphQL/Model/UpdatePatreonSponsorabilityInput.cs
+++ b/Octokit.GraphQL/Model/UpdatePatreonSponsorabilityInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdatePatreonSponsorabilityInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The username of the organization with the GitHub Sponsors profile, if any. Defaults to the GitHub Sponsors profile for the authenticated user if omitted.
///
@@ -17,10 +22,5 @@ public class UpdatePatreonSponsorabilityInput
/// Whether Patreon tiers should be shown on the GitHub Sponsors profile page, allowing potential sponsors to make their payment through Patreon instead of GitHub.
///
public bool EnablePatreonSponsorships { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateProjectCardInput.cs b/Octokit.GraphQL/Model/UpdateProjectCardInput.cs
index dff06b7a..7825d6ff 100644
--- a/Octokit.GraphQL/Model/UpdateProjectCardInput.cs
+++ b/Octokit.GraphQL/Model/UpdateProjectCardInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateProjectCardInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ProjectCard ID to update.
///
@@ -22,10 +27,5 @@ public class UpdateProjectCardInput
/// The note of ProjectCard.
///
public string Note { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateProjectColumnInput.cs b/Octokit.GraphQL/Model/UpdateProjectColumnInput.cs
index 64c3d165..25f76862 100644
--- a/Octokit.GraphQL/Model/UpdateProjectColumnInput.cs
+++ b/Octokit.GraphQL/Model/UpdateProjectColumnInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateProjectColumnInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ProjectColumn ID to update.
///
@@ -17,10 +22,5 @@ public class UpdateProjectColumnInput
/// The name of project column.
///
public string Name { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateProjectInput.cs b/Octokit.GraphQL/Model/UpdateProjectInput.cs
index 457eda6a..ec973942 100644
--- a/Octokit.GraphQL/Model/UpdateProjectInput.cs
+++ b/Octokit.GraphQL/Model/UpdateProjectInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateProjectInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Project ID to update.
///
@@ -32,10 +37,5 @@ public class UpdateProjectInput
/// Whether the project is public or not.
///
public bool? Public { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateProjectV2CollaboratorsInput.cs b/Octokit.GraphQL/Model/UpdateProjectV2CollaboratorsInput.cs
index 2ac6ed21..db53d171 100644
--- a/Octokit.GraphQL/Model/UpdateProjectV2CollaboratorsInput.cs
+++ b/Octokit.GraphQL/Model/UpdateProjectV2CollaboratorsInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateProjectV2CollaboratorsInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the project to update the collaborators for.
///
@@ -17,10 +22,5 @@ public class UpdateProjectV2CollaboratorsInput
/// The collaborators to update.
///
public IEnumerable Collaborators { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateProjectV2DraftIssueInput.cs b/Octokit.GraphQL/Model/UpdateProjectV2DraftIssueInput.cs
index 82a1a822..934155f6 100644
--- a/Octokit.GraphQL/Model/UpdateProjectV2DraftIssueInput.cs
+++ b/Octokit.GraphQL/Model/UpdateProjectV2DraftIssueInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateProjectV2DraftIssueInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the draft issue to update.
///
@@ -27,10 +32,5 @@ public class UpdateProjectV2DraftIssueInput
/// The IDs of the assignees of the draft issue.
///
public IEnumerable AssigneeIds { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateProjectV2Input.cs b/Octokit.GraphQL/Model/UpdateProjectV2Input.cs
index b49bcef5..cb9ac126 100644
--- a/Octokit.GraphQL/Model/UpdateProjectV2Input.cs
+++ b/Octokit.GraphQL/Model/UpdateProjectV2Input.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateProjectV2Input
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the Project to update.
///
@@ -37,10 +42,5 @@ public class UpdateProjectV2Input
/// Set the project to public or private.
///
public bool? Public { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateProjectV2ItemFieldValueInput.cs b/Octokit.GraphQL/Model/UpdateProjectV2ItemFieldValueInput.cs
index 0971e57d..280297ac 100644
--- a/Octokit.GraphQL/Model/UpdateProjectV2ItemFieldValueInput.cs
+++ b/Octokit.GraphQL/Model/UpdateProjectV2ItemFieldValueInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateProjectV2ItemFieldValueInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the Project.
///
@@ -27,10 +32,5 @@ public class UpdateProjectV2ItemFieldValueInput
/// The value which will be set on the field.
///
public ProjectV2FieldValue Value { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateProjectV2ItemPositionInput.cs b/Octokit.GraphQL/Model/UpdateProjectV2ItemPositionInput.cs
index 6cfb962e..e6f05e4b 100644
--- a/Octokit.GraphQL/Model/UpdateProjectV2ItemPositionInput.cs
+++ b/Octokit.GraphQL/Model/UpdateProjectV2ItemPositionInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateProjectV2ItemPositionInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the Project.
///
@@ -22,10 +27,5 @@ public class UpdateProjectV2ItemPositionInput
/// The ID of the item to position this item after. If omitted or set to null the item will be moved to top.
///
public ID? AfterId { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdatePullRequestBranchInput.cs b/Octokit.GraphQL/Model/UpdatePullRequestBranchInput.cs
index d2f52b63..d8b2f880 100644
--- a/Octokit.GraphQL/Model/UpdatePullRequestBranchInput.cs
+++ b/Octokit.GraphQL/Model/UpdatePullRequestBranchInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdatePullRequestBranchInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the pull request.
///
@@ -22,10 +27,5 @@ public class UpdatePullRequestBranchInput
/// The update branch method to use. If omitted, defaults to 'MERGE'
///
public PullRequestBranchUpdateMethod? UpdateMethod { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdatePullRequestInput.cs b/Octokit.GraphQL/Model/UpdatePullRequestInput.cs
index 51d348fb..f514c230 100644
--- a/Octokit.GraphQL/Model/UpdatePullRequestInput.cs
+++ b/Octokit.GraphQL/Model/UpdatePullRequestInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdatePullRequestInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the pull request.
///
@@ -58,10 +63,5 @@ public class UpdatePullRequestInput
/// An array of Node IDs for projects associated with this pull request.
///
public IEnumerable ProjectIds { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdatePullRequestReviewCommentInput.cs b/Octokit.GraphQL/Model/UpdatePullRequestReviewCommentInput.cs
index 9be59048..eeba8baf 100644
--- a/Octokit.GraphQL/Model/UpdatePullRequestReviewCommentInput.cs
+++ b/Octokit.GraphQL/Model/UpdatePullRequestReviewCommentInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdatePullRequestReviewCommentInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the comment to modify.
///
@@ -17,10 +22,5 @@ public class UpdatePullRequestReviewCommentInput
/// The text of the comment.
///
public string Body { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdatePullRequestReviewInput.cs b/Octokit.GraphQL/Model/UpdatePullRequestReviewInput.cs
index 4a4f56fe..ccb1628c 100644
--- a/Octokit.GraphQL/Model/UpdatePullRequestReviewInput.cs
+++ b/Octokit.GraphQL/Model/UpdatePullRequestReviewInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdatePullRequestReviewInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the pull request review to modify.
///
@@ -17,10 +22,5 @@ public class UpdatePullRequestReviewInput
/// The contents of the pull request review body.
///
public string Body { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateRefInput.cs b/Octokit.GraphQL/Model/UpdateRefInput.cs
index cc1f4329..92c3e23a 100644
--- a/Octokit.GraphQL/Model/UpdateRefInput.cs
+++ b/Octokit.GraphQL/Model/UpdateRefInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateRefInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the Ref to be updated.
///
@@ -22,10 +27,5 @@ public class UpdateRefInput
/// Permit updates of branch Refs that are not fast-forwards?
///
public bool? Force { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateRepositoryInput.cs b/Octokit.GraphQL/Model/UpdateRepositoryInput.cs
index 3bb224c0..de73a871 100644
--- a/Octokit.GraphQL/Model/UpdateRepositoryInput.cs
+++ b/Octokit.GraphQL/Model/UpdateRepositoryInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateRepositoryInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the repository to update.
///
@@ -57,10 +62,5 @@ public class UpdateRepositoryInput
/// Indicates if the repository displays a Sponsor button for financial contributions.
///
public bool? HasSponsorshipsEnabled { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateRepositoryRulesetInput.cs b/Octokit.GraphQL/Model/UpdateRepositoryRulesetInput.cs
index f997998d..bbbe525e 100644
--- a/Octokit.GraphQL/Model/UpdateRepositoryRulesetInput.cs
+++ b/Octokit.GraphQL/Model/UpdateRepositoryRulesetInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateRepositoryRulesetInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The global relay id of the repository ruleset to be updated.
///
@@ -42,10 +47,5 @@ public class UpdateRepositoryRulesetInput
/// A list of actors that are allowed to bypass rules in this ruleset.
///
public IEnumerable BypassActors { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateRepositoryWebCommitSignoffSettingInput.cs b/Octokit.GraphQL/Model/UpdateRepositoryWebCommitSignoffSettingInput.cs
index 842505a5..da0da4bd 100644
--- a/Octokit.GraphQL/Model/UpdateRepositoryWebCommitSignoffSettingInput.cs
+++ b/Octokit.GraphQL/Model/UpdateRepositoryWebCommitSignoffSettingInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateRepositoryWebCommitSignoffSettingInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the repository to update.
///
@@ -17,10 +22,5 @@ public class UpdateRepositoryWebCommitSignoffSettingInput
/// Indicates if the repository should require signoff on web-based commits.
///
public bool WebCommitSignoffRequired { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateSponsorshipPreferencesInput.cs b/Octokit.GraphQL/Model/UpdateSponsorshipPreferencesInput.cs
index 95aab7ce..0a27ca46 100644
--- a/Octokit.GraphQL/Model/UpdateSponsorshipPreferencesInput.cs
+++ b/Octokit.GraphQL/Model/UpdateSponsorshipPreferencesInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateSponsorshipPreferencesInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the user or organization who is acting as the sponsor, paying for the sponsorship. Required if sponsorLogin is not given.
///
@@ -37,10 +42,5 @@ public class UpdateSponsorshipPreferencesInput
/// Specify whether others should be able to see that the sponsor is sponsoring the sponsorable. Public visibility still does not reveal which tier is used.
///
public SponsorshipPrivacy? PrivacyLevel { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateSubscriptionInput.cs b/Octokit.GraphQL/Model/UpdateSubscriptionInput.cs
index cf4e383a..3e7f2d52 100644
--- a/Octokit.GraphQL/Model/UpdateSubscriptionInput.cs
+++ b/Octokit.GraphQL/Model/UpdateSubscriptionInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateSubscriptionInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the subscribable object to modify.
///
@@ -17,10 +22,5 @@ public class UpdateSubscriptionInput
/// The new state of the subscription.
///
public SubscriptionState State { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateTeamDiscussionCommentInput.cs b/Octokit.GraphQL/Model/UpdateTeamDiscussionCommentInput.cs
index 543edc85..6ad36fb2 100644
--- a/Octokit.GraphQL/Model/UpdateTeamDiscussionCommentInput.cs
+++ b/Octokit.GraphQL/Model/UpdateTeamDiscussionCommentInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateTeamDiscussionCommentInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the comment to modify.
///
@@ -22,10 +27,5 @@ public class UpdateTeamDiscussionCommentInput
/// The current version of the body content.
///
public string BodyVersion { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateTeamDiscussionInput.cs b/Octokit.GraphQL/Model/UpdateTeamDiscussionInput.cs
index 04f1d4d2..b4fe731c 100644
--- a/Octokit.GraphQL/Model/UpdateTeamDiscussionInput.cs
+++ b/Octokit.GraphQL/Model/UpdateTeamDiscussionInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateTeamDiscussionInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the discussion to modify.
///
@@ -32,10 +37,5 @@ public class UpdateTeamDiscussionInput
/// If provided, sets the pinned state of the updated discussion.
///
public bool? Pinned { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateTeamsRepositoryInput.cs b/Octokit.GraphQL/Model/UpdateTeamsRepositoryInput.cs
index d97b92fa..a5644003 100644
--- a/Octokit.GraphQL/Model/UpdateTeamsRepositoryInput.cs
+++ b/Octokit.GraphQL/Model/UpdateTeamsRepositoryInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateTeamsRepositoryInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// Repository ID being granted access to.
///
@@ -22,10 +27,5 @@ public class UpdateTeamsRepositoryInput
/// Permission that should be granted to the teams.
///
public RepositoryPermission Permission { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateTopicsInput.cs b/Octokit.GraphQL/Model/UpdateTopicsInput.cs
index 425a533c..1ed64cd0 100644
--- a/Octokit.GraphQL/Model/UpdateTopicsInput.cs
+++ b/Octokit.GraphQL/Model/UpdateTopicsInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateTopicsInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The Node ID of the repository.
///
@@ -17,10 +22,5 @@ public class UpdateTopicsInput
/// An array of topic names.
///
public IEnumerable TopicNames { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateUserListInput.cs b/Octokit.GraphQL/Model/UpdateUserListInput.cs
index a08566b3..58e2c94b 100644
--- a/Octokit.GraphQL/Model/UpdateUserListInput.cs
+++ b/Octokit.GraphQL/Model/UpdateUserListInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateUserListInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The ID of the list to update.
///
@@ -27,10 +32,5 @@ public class UpdateUserListInput
/// Whether or not the list is private
///
public bool? IsPrivate { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/UpdateUserListsForItemInput.cs b/Octokit.GraphQL/Model/UpdateUserListsForItemInput.cs
index e792468b..4aa0e30a 100644
--- a/Octokit.GraphQL/Model/UpdateUserListsForItemInput.cs
+++ b/Octokit.GraphQL/Model/UpdateUserListsForItemInput.cs
@@ -8,6 +8,11 @@ namespace Octokit.GraphQL.Model
///
public class UpdateUserListsForItemInput
{
+ ///
+ /// A unique identifier for the client performing the mutation.
+ ///
+ public string ClientMutationId { get; set; }
+
///
/// The item to add to the list
///
@@ -22,10 +27,5 @@ public class UpdateUserListsForItemInput
/// The suggested lists to create and add this item to
///
public IEnumerable SuggestedListIds { get; set; }
-
- ///
- /// A unique identifier for the client performing the mutation.
- ///
- public string ClientMutationId { get; set; }
}
}
\ No newline at end of file
diff --git a/Octokit.GraphQL/Model/VerifyVerifiableDomainInput.cs b/Octokit.GraphQL/Model/VerifyVerifiableDomainInput.cs
index 91055e4d..6558251c 100644
--- a/Octokit.GraphQL/Model/VerifyVerifiableDomainInput.cs
+++ b/Octokit.GraphQL/Model/VerifyVerifiableDomainInput.cs
@@ -9,13 +9,13 @@ namespace Octokit.GraphQL.Model
public class VerifyVerifiableDomainInput
{
///
- /// The ID of the verifiable domain to verify.
+ /// A unique identifier for the client performing the mutation.
///
- public ID Id { get; set; }
+ public string ClientMutationId { get; set; }
///
- /// A unique identifier for the client performing the mutation.
+ /// The ID of the verifiable domain to verify.
///
- public string ClientMutationId { get; set; }
+ public ID Id { get; set; }
}
}
\ No newline at end of file