@@ -1721,6 +1721,86 @@ type BranchProtectionRuleEdge {
17211721 node: BranchProtectionRule
17221722}
17231723
1724+ """
1725+ The Common Vulnerability Scoring System
1726+ """
1727+ type CVSS {
1728+ """
1729+ The CVSS score associated with this advisory
1730+ """
1731+ score: Float!
1732+
1733+ """
1734+ The CVSS vector string associated with this advisory
1735+ """
1736+ vectorString: String
1737+ }
1738+
1739+ """
1740+ A common weakness enumeration
1741+ """
1742+ type CWE implements Node {
1743+ """
1744+ The id of the CWE
1745+ """
1746+ cweId: String!
1747+
1748+ """
1749+ A detailed description of this CWE
1750+ """
1751+ description: String!
1752+
1753+ """
1754+ ID of the object.
1755+ """
1756+ id: ID!
1757+
1758+ """
1759+ The name of this CWE
1760+ """
1761+ name: String!
1762+ }
1763+
1764+ """
1765+ The connection type for CWE.
1766+ """
1767+ type CWEConnection {
1768+ """
1769+ A list of edges.
1770+ """
1771+ edges: [CWEEdge]
1772+
1773+ """
1774+ A list of nodes.
1775+ """
1776+ nodes: [CWE]
1777+
1778+ """
1779+ Information to aid in pagination.
1780+ """
1781+ pageInfo: PageInfo!
1782+
1783+ """
1784+ Identifies the total count of items in the connection.
1785+ """
1786+ totalCount: Int!
1787+ }
1788+
1789+ """
1790+ An edge in a connection.
1791+ """
1792+ type CWEEdge {
1793+ """
1794+ A cursor for use in pagination.
1795+ """
1796+ cursor: String!
1797+
1798+ """
1799+ The item at the end of the edge.
1800+ """
1801+ node: CWE
1802+ }
1803+
17241804"""
17251805Autogenerated input type of CancelEnterpriseAdminInvitation
17261806"""
@@ -26227,6 +26307,11 @@ type Release implements Node & UniformResourceLocatable {
2622726307 name: String
2622826308 ): ReleaseAssetConnection!
2622926309
26310+ """
26311+ The repository that the release belongs to.
26312+ """
26313+ repository: Repository!
26314+
2623026315 """
2623126316 The HTTP path for this issue
2623226317 """
@@ -32350,6 +32435,36 @@ enum SearchType {
3235032435A GitHub Security Advisory
3235132436"""
3235232437type SecurityAdvisory implements Node {
32438+ """
32439+ The CVSS associated with this advisory
32440+ """
32441+ cvss: CVSS!
32442+
32443+ """
32444+ CWEs associated with this Advisory
32445+ """
32446+ cwes(
32447+ """
32448+ Returns the elements in the list that come after the specified cursor.
32449+ """
32450+ after: String
32451+
32452+ """
32453+ Returns the elements in the list that come before the specified cursor.
32454+ """
32455+ before: String
32456+
32457+ """
32458+ Returns the first _n_ elements from the list.
32459+ """
32460+ first: Int
32461+
32462+ """
32463+ Returns the last _n_ elements from the list.
32464+ """
32465+ last: Int
32466+ ): CWEConnection!
32467+
3235332468 """
3235432469 Identifies the primary key from the database.
3235532470 """
@@ -33181,10 +33296,61 @@ enum SponsorableOrderField {
3318133296 LOGIN
3318233297}
3318333298
33299+ """
33300+ A goal associated with a GitHub Sponsors listing, representing a target the sponsored maintainer would like to attain.
33301+ """
33302+ type SponsorsGoal {
33303+ """
33304+ A description of the goal from the maintainer.
33305+ """
33306+ description: String
33307+
33308+ """
33309+ What the objective of this goal is.
33310+ """
33311+ kind: SponsorsGoalKind!
33312+
33313+ """
33314+ The percentage representing how complete this goal is, between 0-100.
33315+ """
33316+ percentComplete: Int!
33317+
33318+ """
33319+ What the goal amount is. Represents a dollar amount for monthly sponsorship
33320+ amount goals. Represents a count of unique sponsors for total sponsors count goals.
33321+ """
33322+ targetValue: Int!
33323+
33324+ """
33325+ A brief summary of the kind and target value of this goal.
33326+ """
33327+ title: String!
33328+ }
33329+
33330+ """
33331+ The different kinds of goals a GitHub Sponsors member can have.
33332+ """
33333+ enum SponsorsGoalKind {
33334+ """
33335+ The goal is about getting a certain dollar amount from sponsorships each month.
33336+ """
33337+ MONTHLY_SPONSORSHIP_AMOUNT
33338+
33339+ """
33340+ The goal is about reaching a certain number of sponsors.
33341+ """
33342+ TOTAL_SPONSORS_COUNT
33343+ }
33344+
3318433345"""
3318533346A GitHub Sponsors listing.
3318633347"""
3318733348type SponsorsListing implements Node {
33349+ """
33350+ The current goal the maintainer is trying to reach with GitHub Sponsors, if any.
33351+ """
33352+ activeGoal: SponsorsGoal
33353+
3318833354 """
3318933355 Identifies the date and time when the object was created.
3319033356 """
0 commit comments