@@ -825,6 +825,36 @@ type App implements Node {
825825 description: String
826826 id: ID!
827827
828+ """
829+ The IP addresses of the app.
830+ """
831+ ipAllowListEntries(
832+ """
833+ Returns the elements in the list that come after the specified cursor.
834+ """
835+ after: String
836+
837+ """
838+ Returns the elements in the list that come before the specified cursor.
839+ """
840+ before: String
841+
842+ """
843+ Returns the first _n_ elements from the list.
844+ """
845+ first: Int
846+
847+ """
848+ Returns the last _n_ elements from the list.
849+ """
850+ last: Int
851+
852+ """
853+ Ordering options for IP allow list entries returned.
854+ """
855+ orderBy: IpAllowListEntryOrder = {field: ALLOW_LIST_VALUE, direction: ASC}
856+ ): IpAllowListEntryConnection!
857+
828858 """
829859 The hex color code, without the leading '#', for the logo background.
830860 """
@@ -5754,7 +5784,7 @@ input CreateIpAllowListEntryInput {
57545784 """
57555785 The ID of the owner for which to create the new IP allow list entry.
57565786 """
5757- ownerId: ID! @possibleTypes(concreteTypes: ["Enterprise", "Organization"], abstractType: "IpAllowListOwner")
5787+ ownerId: ID! @possibleTypes(concreteTypes: ["App", " Enterprise", "Organization"], abstractType: "IpAllowListOwner")
57585788}
57595789
57605790"""
@@ -7315,13 +7345,20 @@ type DependencyGraphDependency @preview(toggledBy: "hawkgirl-preview") {
73157345 """
73167346 hasDependencies: Boolean!
73177347
7348+ """
7349+ The original name of the package, as it appears in the manifest.
7350+ """
7351+ packageLabel: String!
7352+
73187353 """
73197354 The dependency package manager
73207355 """
73217356 packageManager: String
73227357
73237358 """
7324- The required package name
7359+ The name of the package in the canonical form used by the package manager.
7360+ This may differ from the original textual form (see packageLabel), for example
7361+ in a package manager that uses case-insensitive comparisons.
73257362 """
73267363 packageName: String!
73277364
@@ -13597,7 +13634,7 @@ enum IpAllowListForInstalledAppsEnabledSettingValue {
1359713634"""
1359813635Types that can own an IP allow list.
1359913636"""
13600- union IpAllowListOwner = Enterprise | Organization
13637+ union IpAllowListOwner = App | Enterprise | Organization
1360113638
1360213639"""
1360313640An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.
@@ -41950,7 +41987,7 @@ input UpdateIpAllowListEnabledSettingInput {
4195041987 """
4195141988 The ID of the owner on which to set the IP allow list enabled setting.
4195241989 """
41953- ownerId: ID! @possibleTypes(concreteTypes: ["Enterprise", "Organization"], abstractType: "IpAllowListOwner")
41990+ ownerId: ID! @possibleTypes(concreteTypes: ["App", " Enterprise", "Organization"], abstractType: "IpAllowListOwner")
4195441991
4195541992 """
4195641993 The value for the IP allow list enabled setting.
@@ -42030,7 +42067,7 @@ input UpdateIpAllowListForInstalledAppsEnabledSettingInput {
4203042067 """
4203142068 The ID of the owner.
4203242069 """
42033- ownerId: ID! @possibleTypes(concreteTypes: ["Enterprise", "Organization"], abstractType: "IpAllowListOwner")
42070+ ownerId: ID! @possibleTypes(concreteTypes: ["App", " Enterprise", "Organization"], abstractType: "IpAllowListOwner")
4203442071
4203542072 """
4203642073 The value for the IP allow list configuration for installed GitHub Apps setting.
0 commit comments