github-schema 1.22.3 → 1.22.4

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.
@@ -1386,7 +1386,7 @@ type BranchActorAllowanceActor = App | Team | User;
1386
1386
  /** Parameters to be used for the branch_name_pattern rule */
1387
1387
  type BranchNamePatternParameters = {
1388
1388
  __typename?: 'BranchNamePatternParameters';
1389
- /** How this rule will appear to users. */
1389
+ /** How this rule appears when configuring it. */
1390
1390
  name?: Maybe<Scalars['String']['output']>;
1391
1391
  /** If true, the rule will fail if the pattern matches. */
1392
1392
  negate: Scalars['Boolean']['output'];
@@ -1397,7 +1397,7 @@ type BranchNamePatternParameters = {
1397
1397
  };
1398
1398
  /** Parameters to be used for the branch_name_pattern rule */
1399
1399
  type BranchNamePatternParametersInput = {
1400
- /** How this rule will appear to users. */
1400
+ /** How this rule appears when configuring it. */
1401
1401
  name?: InputMaybe<Scalars['String']['input']>;
1402
1402
  /** If true, the rule will fail if the pattern matches. */
1403
1403
  negate?: InputMaybe<Scalars['Boolean']['input']>;
@@ -2700,7 +2700,7 @@ type CommitAuthor = {
2700
2700
  /** Parameters to be used for the commit_author_email_pattern rule */
2701
2701
  type CommitAuthorEmailPatternParameters = {
2702
2702
  __typename?: 'CommitAuthorEmailPatternParameters';
2703
- /** How this rule will appear to users. */
2703
+ /** How this rule appears when configuring it. */
2704
2704
  name?: Maybe<Scalars['String']['output']>;
2705
2705
  /** If true, the rule will fail if the pattern matches. */
2706
2706
  negate: Scalars['Boolean']['output'];
@@ -2711,7 +2711,7 @@ type CommitAuthorEmailPatternParameters = {
2711
2711
  };
2712
2712
  /** Parameters to be used for the commit_author_email_pattern rule */
2713
2713
  type CommitAuthorEmailPatternParametersInput = {
2714
- /** How this rule will appear to users. */
2714
+ /** How this rule appears when configuring it. */
2715
2715
  name?: InputMaybe<Scalars['String']['input']>;
2716
2716
  /** If true, the rule will fail if the pattern matches. */
2717
2717
  negate?: InputMaybe<Scalars['Boolean']['input']>;
@@ -2924,7 +2924,7 @@ type CommitMessage = {
2924
2924
  /** Parameters to be used for the commit_message_pattern rule */
2925
2925
  type CommitMessagePatternParameters = {
2926
2926
  __typename?: 'CommitMessagePatternParameters';
2927
- /** How this rule will appear to users. */
2927
+ /** How this rule appears when configuring it. */
2928
2928
  name?: Maybe<Scalars['String']['output']>;
2929
2929
  /** If true, the rule will fail if the pattern matches. */
2930
2930
  negate: Scalars['Boolean']['output'];
@@ -2935,7 +2935,7 @@ type CommitMessagePatternParameters = {
2935
2935
  };
2936
2936
  /** Parameters to be used for the commit_message_pattern rule */
2937
2937
  type CommitMessagePatternParametersInput = {
2938
- /** How this rule will appear to users. */
2938
+ /** How this rule appears when configuring it. */
2939
2939
  name?: InputMaybe<Scalars['String']['input']>;
2940
2940
  /** If true, the rule will fail if the pattern matches. */
2941
2941
  negate?: InputMaybe<Scalars['Boolean']['input']>;
@@ -2978,7 +2978,7 @@ type CommittableBranch = {
2978
2978
  /** Parameters to be used for the committer_email_pattern rule */
2979
2979
  type CommitterEmailPatternParameters = {
2980
2980
  __typename?: 'CommitterEmailPatternParameters';
2981
- /** How this rule will appear to users. */
2981
+ /** How this rule appears when configuring it. */
2982
2982
  name?: Maybe<Scalars['String']['output']>;
2983
2983
  /** If true, the rule will fail if the pattern matches. */
2984
2984
  negate: Scalars['Boolean']['output'];
@@ -2989,7 +2989,7 @@ type CommitterEmailPatternParameters = {
2989
2989
  };
2990
2990
  /** Parameters to be used for the committer_email_pattern rule */
2991
2991
  type CommitterEmailPatternParametersInput = {
2992
- /** How this rule will appear to users. */
2992
+ /** How this rule appears when configuring it. */
2993
2993
  name?: InputMaybe<Scalars['String']['input']>;
2994
2994
  /** If true, the rule will fail if the pattern matches. */
2995
2995
  negate?: InputMaybe<Scalars['Boolean']['input']>;
@@ -21656,8 +21656,17 @@ type ReorderEnvironmentPayload = {
21656
21656
  };
21657
21657
  /** Autogenerated input type of ReplaceActorsForAssignable */
21658
21658
  type ReplaceActorsForAssignableInput = {
21659
- /** The ids of the actors to replace the existing assignees. */
21660
- actorIds: Array<Scalars['ID']['input']>;
21659
+ /**
21660
+ * The ids of the actors to replace the existing assignees. May be used as an
21661
+ * alternative to or in conjunction with actorLogins.
21662
+ */
21663
+ actorIds?: InputMaybe<Array<Scalars['ID']['input']>>;
21664
+ /**
21665
+ * The usernames of the actors to replace the existing assignees. May be used as
21666
+ * an alternative to or in conjunction with actorIds. For bots, use the login
21667
+ * format with [bot] suffix (e.g., 'my-app[bot]').
21668
+ */
21669
+ actorLogins?: InputMaybe<Array<Scalars['String']['input']>>;
21661
21670
  /** The id of the assignable object to replace the assignees for. */
21662
21671
  assignableId: Scalars['ID']['input'];
21663
21672
  /** A unique identifier for the client performing the mutation. */
@@ -27991,7 +28000,7 @@ type Tag = GitObject & Node & {
27991
28000
  /** Parameters to be used for the tag_name_pattern rule */
27992
28001
  type TagNamePatternParameters = {
27993
28002
  __typename?: 'TagNamePatternParameters';
27994
- /** How this rule will appear to users. */
28003
+ /** How this rule appears when configuring it. */
27995
28004
  name?: Maybe<Scalars['String']['output']>;
27996
28005
  /** If true, the rule will fail if the pattern matches. */
27997
28006
  negate: Scalars['Boolean']['output'];
@@ -28002,7 +28011,7 @@ type TagNamePatternParameters = {
28002
28011
  };
28003
28012
  /** Parameters to be used for the tag_name_pattern rule */
28004
28013
  type TagNamePatternParametersInput = {
28005
- /** How this rule will appear to users. */
28014
+ /** How this rule appears when configuring it. */
28006
28015
  name?: InputMaybe<Scalars['String']['input']>;
28007
28016
  /** If true, the rule will fail if the pattern matches. */
28008
28017
  negate?: InputMaybe<Scalars['Boolean']['input']>;
@@ -1386,7 +1386,7 @@ type BranchActorAllowanceActor = App | Team | User;
1386
1386
  /** Parameters to be used for the branch_name_pattern rule */
1387
1387
  type BranchNamePatternParameters = {
1388
1388
  __typename?: 'BranchNamePatternParameters';
1389
- /** How this rule will appear to users. */
1389
+ /** How this rule appears when configuring it. */
1390
1390
  name?: Maybe<Scalars['String']['output']>;
1391
1391
  /** If true, the rule will fail if the pattern matches. */
1392
1392
  negate: Scalars['Boolean']['output'];
@@ -1397,7 +1397,7 @@ type BranchNamePatternParameters = {
1397
1397
  };
1398
1398
  /** Parameters to be used for the branch_name_pattern rule */
1399
1399
  type BranchNamePatternParametersInput = {
1400
- /** How this rule will appear to users. */
1400
+ /** How this rule appears when configuring it. */
1401
1401
  name?: InputMaybe<Scalars['String']['input']>;
1402
1402
  /** If true, the rule will fail if the pattern matches. */
1403
1403
  negate?: InputMaybe<Scalars['Boolean']['input']>;
@@ -2700,7 +2700,7 @@ type CommitAuthor = {
2700
2700
  /** Parameters to be used for the commit_author_email_pattern rule */
2701
2701
  type CommitAuthorEmailPatternParameters = {
2702
2702
  __typename?: 'CommitAuthorEmailPatternParameters';
2703
- /** How this rule will appear to users. */
2703
+ /** How this rule appears when configuring it. */
2704
2704
  name?: Maybe<Scalars['String']['output']>;
2705
2705
  /** If true, the rule will fail if the pattern matches. */
2706
2706
  negate: Scalars['Boolean']['output'];
@@ -2711,7 +2711,7 @@ type CommitAuthorEmailPatternParameters = {
2711
2711
  };
2712
2712
  /** Parameters to be used for the commit_author_email_pattern rule */
2713
2713
  type CommitAuthorEmailPatternParametersInput = {
2714
- /** How this rule will appear to users. */
2714
+ /** How this rule appears when configuring it. */
2715
2715
  name?: InputMaybe<Scalars['String']['input']>;
2716
2716
  /** If true, the rule will fail if the pattern matches. */
2717
2717
  negate?: InputMaybe<Scalars['Boolean']['input']>;
@@ -2924,7 +2924,7 @@ type CommitMessage = {
2924
2924
  /** Parameters to be used for the commit_message_pattern rule */
2925
2925
  type CommitMessagePatternParameters = {
2926
2926
  __typename?: 'CommitMessagePatternParameters';
2927
- /** How this rule will appear to users. */
2927
+ /** How this rule appears when configuring it. */
2928
2928
  name?: Maybe<Scalars['String']['output']>;
2929
2929
  /** If true, the rule will fail if the pattern matches. */
2930
2930
  negate: Scalars['Boolean']['output'];
@@ -2935,7 +2935,7 @@ type CommitMessagePatternParameters = {
2935
2935
  };
2936
2936
  /** Parameters to be used for the commit_message_pattern rule */
2937
2937
  type CommitMessagePatternParametersInput = {
2938
- /** How this rule will appear to users. */
2938
+ /** How this rule appears when configuring it. */
2939
2939
  name?: InputMaybe<Scalars['String']['input']>;
2940
2940
  /** If true, the rule will fail if the pattern matches. */
2941
2941
  negate?: InputMaybe<Scalars['Boolean']['input']>;
@@ -2978,7 +2978,7 @@ type CommittableBranch = {
2978
2978
  /** Parameters to be used for the committer_email_pattern rule */
2979
2979
  type CommitterEmailPatternParameters = {
2980
2980
  __typename?: 'CommitterEmailPatternParameters';
2981
- /** How this rule will appear to users. */
2981
+ /** How this rule appears when configuring it. */
2982
2982
  name?: Maybe<Scalars['String']['output']>;
2983
2983
  /** If true, the rule will fail if the pattern matches. */
2984
2984
  negate: Scalars['Boolean']['output'];
@@ -2989,7 +2989,7 @@ type CommitterEmailPatternParameters = {
2989
2989
  };
2990
2990
  /** Parameters to be used for the committer_email_pattern rule */
2991
2991
  type CommitterEmailPatternParametersInput = {
2992
- /** How this rule will appear to users. */
2992
+ /** How this rule appears when configuring it. */
2993
2993
  name?: InputMaybe<Scalars['String']['input']>;
2994
2994
  /** If true, the rule will fail if the pattern matches. */
2995
2995
  negate?: InputMaybe<Scalars['Boolean']['input']>;
@@ -21656,8 +21656,17 @@ type ReorderEnvironmentPayload = {
21656
21656
  };
21657
21657
  /** Autogenerated input type of ReplaceActorsForAssignable */
21658
21658
  type ReplaceActorsForAssignableInput = {
21659
- /** The ids of the actors to replace the existing assignees. */
21660
- actorIds: Array<Scalars['ID']['input']>;
21659
+ /**
21660
+ * The ids of the actors to replace the existing assignees. May be used as an
21661
+ * alternative to or in conjunction with actorLogins.
21662
+ */
21663
+ actorIds?: InputMaybe<Array<Scalars['ID']['input']>>;
21664
+ /**
21665
+ * The usernames of the actors to replace the existing assignees. May be used as
21666
+ * an alternative to or in conjunction with actorIds. For bots, use the login
21667
+ * format with [bot] suffix (e.g., 'my-app[bot]').
21668
+ */
21669
+ actorLogins?: InputMaybe<Array<Scalars['String']['input']>>;
21661
21670
  /** The id of the assignable object to replace the assignees for. */
21662
21671
  assignableId: Scalars['ID']['input'];
21663
21672
  /** A unique identifier for the client performing the mutation. */
@@ -27991,7 +28000,7 @@ type Tag = GitObject & Node & {
27991
28000
  /** Parameters to be used for the tag_name_pattern rule */
27992
28001
  type TagNamePatternParameters = {
27993
28002
  __typename?: 'TagNamePatternParameters';
27994
- /** How this rule will appear to users. */
28003
+ /** How this rule appears when configuring it. */
27995
28004
  name?: Maybe<Scalars['String']['output']>;
27996
28005
  /** If true, the rule will fail if the pattern matches. */
27997
28006
  negate: Scalars['Boolean']['output'];
@@ -28002,7 +28011,7 @@ type TagNamePatternParameters = {
28002
28011
  };
28003
28012
  /** Parameters to be used for the tag_name_pattern rule */
28004
28013
  type TagNamePatternParametersInput = {
28005
- /** How this rule will appear to users. */
28014
+ /** How this rule appears when configuring it. */
28006
28015
  name?: InputMaybe<Scalars['String']['input']>;
28007
28016
  /** If true, the rule will fail if the pattern matches. */
28008
28017
  negate?: InputMaybe<Scalars['Boolean']['input']>;
@@ -2521,7 +2521,7 @@ Parameters to be used for the branch_name_pattern rule
2521
2521
  """
2522
2522
  type BranchNamePatternParameters {
2523
2523
  """
2524
- How this rule will appear to users.
2524
+ How this rule appears when configuring it.
2525
2525
  """
2526
2526
  name: String
2527
2527
 
@@ -2546,7 +2546,7 @@ Parameters to be used for the branch_name_pattern rule
2546
2546
  """
2547
2547
  input BranchNamePatternParametersInput {
2548
2548
  """
2549
- How this rule will appear to users.
2549
+ How this rule appears when configuring it.
2550
2550
  """
2551
2551
  name: String
2552
2552
 
@@ -5559,7 +5559,7 @@ Parameters to be used for the commit_author_email_pattern rule
5559
5559
  """
5560
5560
  type CommitAuthorEmailPatternParameters {
5561
5561
  """
5562
- How this rule will appear to users.
5562
+ How this rule appears when configuring it.
5563
5563
  """
5564
5564
  name: String
5565
5565
 
@@ -5584,7 +5584,7 @@ Parameters to be used for the commit_author_email_pattern rule
5584
5584
  """
5585
5585
  input CommitAuthorEmailPatternParametersInput {
5586
5586
  """
5587
- How this rule will appear to users.
5587
+ How this rule appears when configuring it.
5588
5588
  """
5589
5589
  name: String
5590
5590
 
@@ -6081,7 +6081,7 @@ Parameters to be used for the commit_message_pattern rule
6081
6081
  """
6082
6082
  type CommitMessagePatternParameters {
6083
6083
  """
6084
- How this rule will appear to users.
6084
+ How this rule appears when configuring it.
6085
6085
  """
6086
6086
  name: String
6087
6087
 
@@ -6106,7 +6106,7 @@ Parameters to be used for the commit_message_pattern rule
6106
6106
  """
6107
6107
  input CommitMessagePatternParametersInput {
6108
6108
  """
6109
- How this rule will appear to users.
6109
+ How this rule appears when configuring it.
6110
6110
  """
6111
6111
  name: String
6112
6112
 
@@ -6171,7 +6171,7 @@ Parameters to be used for the committer_email_pattern rule
6171
6171
  """
6172
6172
  type CommitterEmailPatternParameters {
6173
6173
  """
6174
- How this rule will appear to users.
6174
+ How this rule appears when configuring it.
6175
6175
  """
6176
6176
  name: String
6177
6177
 
@@ -6196,7 +6196,7 @@ Parameters to be used for the committer_email_pattern rule
6196
6196
  """
6197
6197
  input CommitterEmailPatternParametersInput {
6198
6198
  """
6199
- How this rule will appear to users.
6199
+ How this rule appears when configuring it.
6200
6200
  """
6201
6201
  name: String
6202
6202
 
@@ -44028,9 +44028,17 @@ Autogenerated input type of ReplaceActorsForAssignable
44028
44028
  """
44029
44029
  input ReplaceActorsForAssignableInput {
44030
44030
  """
44031
- The ids of the actors to replace the existing assignees.
44031
+ The ids of the actors to replace the existing assignees. May be used as an
44032
+ alternative to or in conjunction with actorLogins.
44032
44033
  """
44033
- actorIds: [ID!]!
44034
+ actorIds: [ID!]
44035
+
44036
+ """
44037
+ The usernames of the actors to replace the existing assignees. May be used as
44038
+ an alternative to or in conjunction with actorIds. For bots, use the login
44039
+ format with [bot] suffix (e.g., 'my-app[bot]').
44040
+ """
44041
+ actorLogins: [String!]
44034
44042
 
44035
44043
  """
44036
44044
  The id of the assignable object to replace the assignees for.
@@ -57153,7 +57161,7 @@ Parameters to be used for the tag_name_pattern rule
57153
57161
  """
57154
57162
  type TagNamePatternParameters {
57155
57163
  """
57156
- How this rule will appear to users.
57164
+ How this rule appears when configuring it.
57157
57165
  """
57158
57166
  name: String
57159
57167
 
@@ -57178,7 +57186,7 @@ Parameters to be used for the tag_name_pattern rule
57178
57186
  """
57179
57187
  input TagNamePatternParametersInput {
57180
57188
  """
57181
- How this rule will appear to users.
57189
+ How this rule appears when configuring it.
57182
57190
  """
57183
57191
  name: String
57184
57192
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-schema",
3
- "version": "1.22.3",
3
+ "version": "1.22.4",
4
4
  "description": "GitHub's GraphQL schema",
5
5
  "type": "module",
6
6
  "author": {