github-schema 1.20.10 → 1.20.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2747,6 +2747,8 @@ type CommitComment = Comment & Deletable & Minimizable & Node & Reactable & Repo
2747
2747
  viewerCanMinimize: Scalars['Boolean']['output'];
2748
2748
  /** Can user react to this subject */
2749
2749
  viewerCanReact: Scalars['Boolean']['output'];
2750
+ /** Check if the current viewer can unminimize this object. */
2751
+ viewerCanUnminimize: Scalars['Boolean']['output'];
2750
2752
  /** Check if the current viewer can update this object. */
2751
2753
  viewerCanUpdate: Scalars['Boolean']['output'];
2752
2754
  /** Reasons why the current viewer can not update this comment. */
@@ -5731,7 +5733,7 @@ type Discussion = Closable & Comment & Deletable & Labelable & Lockable & Node &
5731
5733
  answerChosenAt?: Maybe<Scalars['DateTime']['output']>;
5732
5734
  /** The user who chose this discussion's answer, if answered. */
5733
5735
  answerChosenBy?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
5734
- /** The actor who authored the comment. */
5736
+ /** The actor who authored the discussion. */
5735
5737
  author?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
5736
5738
  /** Author's association with the subject of the comment. */
5737
5739
  authorAssociation: CommentAuthorAssociation;
@@ -5969,6 +5971,8 @@ type DiscussionComment = Comment & Deletable & Minimizable & Node & Reactable &
5969
5971
  viewerCanReact: Scalars['Boolean']['output'];
5970
5972
  /** Can the current user unmark this comment as an answer? */
5971
5973
  viewerCanUnmarkAsAnswer: Scalars['Boolean']['output'];
5974
+ /** Check if the current viewer can unminimize this object. */
5975
+ viewerCanUnminimize: Scalars['Boolean']['output'];
5972
5976
  /** Check if the current viewer can update this object. */
5973
5977
  viewerCanUpdate: Scalars['Boolean']['output'];
5974
5978
  /** Whether or not the current user can add or remove an upvote on this subject. */
@@ -8139,6 +8143,8 @@ type GistComment = Comment & Deletable & Minimizable & Node & Updatable & Updata
8139
8143
  viewerCanDelete: Scalars['Boolean']['output'];
8140
8144
  /** Check if the current viewer can minimize this object. */
8141
8145
  viewerCanMinimize: Scalars['Boolean']['output'];
8146
+ /** Check if the current viewer can unminimize this object. */
8147
+ viewerCanUnminimize: Scalars['Boolean']['output'];
8142
8148
  /** Check if the current viewer can update this object. */
8143
8149
  viewerCanUpdate: Scalars['Boolean']['output'];
8144
8150
  /** Reasons why the current viewer can not update this comment. */
@@ -9006,6 +9012,8 @@ type IssueComment = Comment & Deletable & Minimizable & Node & Reactable & Repos
9006
9012
  viewerCanMinimize: Scalars['Boolean']['output'];
9007
9013
  /** Can user react to this subject */
9008
9014
  viewerCanReact: Scalars['Boolean']['output'];
9015
+ /** Check if the current viewer can unminimize this object. */
9016
+ viewerCanUnminimize: Scalars['Boolean']['output'];
9009
9017
  /** Check if the current viewer can update this object. */
9010
9018
  viewerCanUpdate: Scalars['Boolean']['output'];
9011
9019
  /** Reasons why the current viewer can not update this comment. */
@@ -10894,6 +10902,8 @@ type Minimizable = {
10894
10902
  minimizedReason?: Maybe<Scalars['String']['output']>;
10895
10903
  /** Check if the current viewer can minimize this object. */
10896
10904
  viewerCanMinimize: Scalars['Boolean']['output'];
10905
+ /** Check if the current viewer can unminimize this object. */
10906
+ viewerCanUnminimize: Scalars['Boolean']['output'];
10897
10907
  };
10898
10908
  /** Autogenerated input type of MinimizeComment */
10899
10909
  type MinimizeCommentInput = {
@@ -19763,6 +19773,8 @@ type PullRequestReview = Comment & Deletable & Minimizable & Node & Reactable &
19763
19773
  viewerCanMinimize: Scalars['Boolean']['output'];
19764
19774
  /** Can user react to this subject */
19765
19775
  viewerCanReact: Scalars['Boolean']['output'];
19776
+ /** Check if the current viewer can unminimize this object. */
19777
+ viewerCanUnminimize: Scalars['Boolean']['output'];
19766
19778
  /** Check if the current viewer can update this object. */
19767
19779
  viewerCanUpdate: Scalars['Boolean']['output'];
19768
19780
  /** Reasons why the current viewer can not update this comment. */
@@ -19902,6 +19914,8 @@ type PullRequestReviewComment = Comment & Deletable & Minimizable & Node & React
19902
19914
  viewerCanMinimize: Scalars['Boolean']['output'];
19903
19915
  /** Can user react to this subject */
19904
19916
  viewerCanReact: Scalars['Boolean']['output'];
19917
+ /** Check if the current viewer can unminimize this object. */
19918
+ viewerCanUnminimize: Scalars['Boolean']['output'];
19905
19919
  /** Check if the current viewer can update this object. */
19906
19920
  viewerCanUpdate: Scalars['Boolean']['output'];
19907
19921
  /** Reasons why the current viewer can not update this comment. */
@@ -24842,6 +24856,7 @@ type RepositoryRulesetBypassActor = Node & {
24842
24856
  /** The bypass mode for a specific actor on a ruleset. */
24843
24857
  type RepositoryRulesetBypassActorBypassMode = /** The actor can always bypass rules */
24844
24858
  'ALWAYS'
24859
+ /** The actor is exempt from rules without generating a pass / fail result */ | 'EXEMPT'
24845
24860
  /** The actor can only bypass rules via a pull request */ | 'PULL_REQUEST';
24846
24861
  /** The connection type for RepositoryRulesetBypassActor. */
24847
24862
  type RepositoryRulesetBypassActorConnection = {
@@ -2747,6 +2747,8 @@ type CommitComment = Comment & Deletable & Minimizable & Node & Reactable & Repo
2747
2747
  viewerCanMinimize: Scalars['Boolean']['output'];
2748
2748
  /** Can user react to this subject */
2749
2749
  viewerCanReact: Scalars['Boolean']['output'];
2750
+ /** Check if the current viewer can unminimize this object. */
2751
+ viewerCanUnminimize: Scalars['Boolean']['output'];
2750
2752
  /** Check if the current viewer can update this object. */
2751
2753
  viewerCanUpdate: Scalars['Boolean']['output'];
2752
2754
  /** Reasons why the current viewer can not update this comment. */
@@ -5731,7 +5733,7 @@ type Discussion = Closable & Comment & Deletable & Labelable & Lockable & Node &
5731
5733
  answerChosenAt?: Maybe<Scalars['DateTime']['output']>;
5732
5734
  /** The user who chose this discussion's answer, if answered. */
5733
5735
  answerChosenBy?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
5734
- /** The actor who authored the comment. */
5736
+ /** The actor who authored the discussion. */
5735
5737
  author?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
5736
5738
  /** Author's association with the subject of the comment. */
5737
5739
  authorAssociation: CommentAuthorAssociation;
@@ -5969,6 +5971,8 @@ type DiscussionComment = Comment & Deletable & Minimizable & Node & Reactable &
5969
5971
  viewerCanReact: Scalars['Boolean']['output'];
5970
5972
  /** Can the current user unmark this comment as an answer? */
5971
5973
  viewerCanUnmarkAsAnswer: Scalars['Boolean']['output'];
5974
+ /** Check if the current viewer can unminimize this object. */
5975
+ viewerCanUnminimize: Scalars['Boolean']['output'];
5972
5976
  /** Check if the current viewer can update this object. */
5973
5977
  viewerCanUpdate: Scalars['Boolean']['output'];
5974
5978
  /** Whether or not the current user can add or remove an upvote on this subject. */
@@ -8139,6 +8143,8 @@ type GistComment = Comment & Deletable & Minimizable & Node & Updatable & Updata
8139
8143
  viewerCanDelete: Scalars['Boolean']['output'];
8140
8144
  /** Check if the current viewer can minimize this object. */
8141
8145
  viewerCanMinimize: Scalars['Boolean']['output'];
8146
+ /** Check if the current viewer can unminimize this object. */
8147
+ viewerCanUnminimize: Scalars['Boolean']['output'];
8142
8148
  /** Check if the current viewer can update this object. */
8143
8149
  viewerCanUpdate: Scalars['Boolean']['output'];
8144
8150
  /** Reasons why the current viewer can not update this comment. */
@@ -9006,6 +9012,8 @@ type IssueComment = Comment & Deletable & Minimizable & Node & Reactable & Repos
9006
9012
  viewerCanMinimize: Scalars['Boolean']['output'];
9007
9013
  /** Can user react to this subject */
9008
9014
  viewerCanReact: Scalars['Boolean']['output'];
9015
+ /** Check if the current viewer can unminimize this object. */
9016
+ viewerCanUnminimize: Scalars['Boolean']['output'];
9009
9017
  /** Check if the current viewer can update this object. */
9010
9018
  viewerCanUpdate: Scalars['Boolean']['output'];
9011
9019
  /** Reasons why the current viewer can not update this comment. */
@@ -10894,6 +10902,8 @@ type Minimizable = {
10894
10902
  minimizedReason?: Maybe<Scalars['String']['output']>;
10895
10903
  /** Check if the current viewer can minimize this object. */
10896
10904
  viewerCanMinimize: Scalars['Boolean']['output'];
10905
+ /** Check if the current viewer can unminimize this object. */
10906
+ viewerCanUnminimize: Scalars['Boolean']['output'];
10897
10907
  };
10898
10908
  /** Autogenerated input type of MinimizeComment */
10899
10909
  type MinimizeCommentInput = {
@@ -19763,6 +19773,8 @@ type PullRequestReview = Comment & Deletable & Minimizable & Node & Reactable &
19763
19773
  viewerCanMinimize: Scalars['Boolean']['output'];
19764
19774
  /** Can user react to this subject */
19765
19775
  viewerCanReact: Scalars['Boolean']['output'];
19776
+ /** Check if the current viewer can unminimize this object. */
19777
+ viewerCanUnminimize: Scalars['Boolean']['output'];
19766
19778
  /** Check if the current viewer can update this object. */
19767
19779
  viewerCanUpdate: Scalars['Boolean']['output'];
19768
19780
  /** Reasons why the current viewer can not update this comment. */
@@ -19902,6 +19914,8 @@ type PullRequestReviewComment = Comment & Deletable & Minimizable & Node & React
19902
19914
  viewerCanMinimize: Scalars['Boolean']['output'];
19903
19915
  /** Can user react to this subject */
19904
19916
  viewerCanReact: Scalars['Boolean']['output'];
19917
+ /** Check if the current viewer can unminimize this object. */
19918
+ viewerCanUnminimize: Scalars['Boolean']['output'];
19905
19919
  /** Check if the current viewer can update this object. */
19906
19920
  viewerCanUpdate: Scalars['Boolean']['output'];
19907
19921
  /** Reasons why the current viewer can not update this comment. */
@@ -24842,6 +24856,7 @@ type RepositoryRulesetBypassActor = Node & {
24842
24856
  /** The bypass mode for a specific actor on a ruleset. */
24843
24857
  type RepositoryRulesetBypassActorBypassMode = /** The actor can always bypass rules */
24844
24858
  'ALWAYS'
24859
+ /** The actor is exempt from rules without generating a pass / fail result */ | 'EXEMPT'
24845
24860
  /** The actor can only bypass rules via a pull request */ | 'PULL_REQUEST';
24846
24861
  /** The connection type for RepositoryRulesetBypassActor. */
24847
24862
  type RepositoryRulesetBypassActorConnection = {