github-schema 1.22.4 → 1.22.5

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.
@@ -8715,7 +8715,7 @@ type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lockable
8715
8715
  */
8716
8716
  projectCards: ProjectCardConnection;
8717
8717
  /** List of project items associated with this issue. */
8718
- projectItems: ProjectV2ItemConnection;
8718
+ projectItems?: Maybe<ProjectV2ItemConnection>;
8719
8719
  /** Find a project by number. */
8720
8720
  projectV2?: Maybe<ProjectV2>;
8721
8721
  /** A list of projects under the owner. */
@@ -19337,7 +19337,7 @@ type PullRequest = Assignable & Closable & Comment & Labelable & Lockable & Node
19337
19337
  */
19338
19338
  projectCards: ProjectCardConnection;
19339
19339
  /** List of project items associated with this pull request. */
19340
- projectItems: ProjectV2ItemConnection;
19340
+ projectItems?: Maybe<ProjectV2ItemConnection>;
19341
19341
  /** Find a project by number. */
19342
19342
  projectV2?: Maybe<ProjectV2>;
19343
19343
  /** A list of projects under the owner. */
@@ -8715,7 +8715,7 @@ type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lockable
8715
8715
  */
8716
8716
  projectCards: ProjectCardConnection;
8717
8717
  /** List of project items associated with this issue. */
8718
- projectItems: ProjectV2ItemConnection;
8718
+ projectItems?: Maybe<ProjectV2ItemConnection>;
8719
8719
  /** Find a project by number. */
8720
8720
  projectV2?: Maybe<ProjectV2>;
8721
8721
  /** A list of projects under the owner. */
@@ -19337,7 +19337,7 @@ type PullRequest = Assignable & Closable & Comment & Labelable & Lockable & Node
19337
19337
  */
19338
19338
  projectCards: ProjectCardConnection;
19339
19339
  /** List of project items associated with this pull request. */
19340
- projectItems: ProjectV2ItemConnection;
19340
+ projectItems?: Maybe<ProjectV2ItemConnection>;
19341
19341
  /** Find a project by number. */
19342
19342
  projectV2?: Maybe<ProjectV2>;
19343
19343
  /** A list of projects under the owner. */
@@ -19155,7 +19155,7 @@ type Issue implements Assignable & Closable & Comment & Deletable & Labelable &
19155
19155
  Returns the last _n_ elements from the list.
19156
19156
  """
19157
19157
  last: Int
19158
- ): ProjectV2ItemConnection!
19158
+ ): ProjectV2ItemConnection
19159
19159
 
19160
19160
  """
19161
19161
  Find a project by number.
@@ -38641,7 +38641,7 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
38641
38641
  Returns the last _n_ elements from the list.
38642
38642
  """
38643
38643
  last: Int
38644
- ): ProjectV2ItemConnection!
38644
+ ): ProjectV2ItemConnection
38645
38645
 
38646
38646
  """
38647
38647
  Find a project by number.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-schema",
3
- "version": "1.22.4",
3
+ "version": "1.22.5",
4
4
  "description": "GitHub's GraphQL schema",
5
5
  "type": "module",
6
6
  "author": {