github-schema 1.21.6 → 1.21.8

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.
@@ -20454,6 +20454,21 @@ enum IssueTimelineItemsItemType {
20454
20454
  """
20455
20455
  ISSUE_COMMENT
20456
20456
 
20457
+ """
20458
+ Represents a 'issue_field_added' event on a given issue.
20459
+ """
20460
+ ISSUE_FIELD_ADDED_EVENT
20461
+
20462
+ """
20463
+ Represents a 'issue_field_changed' event on a given issue.
20464
+ """
20465
+ ISSUE_FIELD_CHANGED_EVENT
20466
+
20467
+ """
20468
+ Represents a 'issue_field_removed' event on a given issue.
20469
+ """
20470
+ ISSUE_FIELD_REMOVED_EVENT
20471
+
20457
20472
  """
20458
20473
  Represents a 'issue_type_added' event on a given issue.
20459
20474
  """
@@ -40968,6 +40983,21 @@ enum PullRequestTimelineItemsItemType {
40968
40983
  """
40969
40984
  ISSUE_COMMENT
40970
40985
 
40986
+ """
40987
+ Represents a 'issue_field_added' event on a given issue.
40988
+ """
40989
+ ISSUE_FIELD_ADDED_EVENT
40990
+
40991
+ """
40992
+ Represents a 'issue_field_changed' event on a given issue.
40993
+ """
40994
+ ISSUE_FIELD_CHANGED_EVENT
40995
+
40996
+ """
40997
+ Represents a 'issue_field_removed' event on a given issue.
40998
+ """
40999
+ ISSUE_FIELD_REMOVED_EVENT
41000
+
40971
41001
  """
40972
41002
  Represents a 'issue_type_added' event on a given issue.
40973
41003
  """
@@ -41288,6 +41318,8 @@ type PushAllowanceEdge {
41288
41318
  The query root of GitHub's GraphQL interface.
41289
41319
  """
41290
41320
  type Query implements Node {
41321
+ _entities(representations: [_Any!]!): [_Entity]!
41322
+
41291
41323
  """
41292
41324
  Look up a code of conduct by its key
41293
41325
  """
@@ -43165,7 +43197,7 @@ input RemoveAssigneesFromAssignableInput {
43165
43197
  assignableId: ID!
43166
43198
 
43167
43199
  """
43168
- The id of users to remove as assignees.
43200
+ The ids of actors to remove as assignees.
43169
43201
  """
43170
43202
  assigneeIds: [ID!]!
43171
43203
 
@@ -66248,3 +66280,7 @@ input WorkflowsParametersInput {
66248
66280
  A valid x509 certificate string
66249
66281
  """
66250
66282
  scalar X509Certificate
66283
+
66284
+ scalar _Any
66285
+
66286
+ union _Entity = Issue
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-schema",
3
- "version": "1.21.6",
3
+ "version": "1.21.8",
4
4
  "description": "GitHub's GraphQL schema",
5
5
  "type": "module",
6
6
  "author": {