@@ -3085,12 +3085,12 @@ type Commit implements GitObject & Node & Subscribable & UniformResourceLocatabl
3085
3085
committedDate: DateTime!
3086
3086
3087
3087
"""
3088
- Check if commited via GitHub web UI.
3088
+ Check if committed via GitHub web UI.
3089
3089
"""
3090
3090
committedViaWeb: Boolean!
3091
3091
3092
3092
"""
3093
- Committership details of the commit.
3093
+ Committer details of the commit.
3094
3094
"""
3095
3095
committer: GitActor
3096
3096
@@ -3955,6 +3955,12 @@ type ContributionCalendarDay {
3955
3955
"""
3956
3956
contributionCount: Int!
3957
3957
3958
+ """
3959
+ Indication of contributions, relative to other days. Can be used to indicate
3960
+ which color to represent this day on a calendar.
3961
+ """
3962
+ contributionLevel: ContributionLevel!
3963
+
3958
3964
"""
3959
3965
The day this square represents.
3960
3966
"""
@@ -4006,6 +4012,36 @@ type ContributionCalendarWeek {
4006
4012
firstDay: Date!
4007
4013
}
4008
4014
4015
+ """
4016
+ Varying levels of contributions from none to many.
4017
+ """
4018
+ enum ContributionLevel {
4019
+ """
4020
+ Lowest 25% of days of contributions.
4021
+ """
4022
+ FIRST_QUARTILE
4023
+
4024
+ """
4025
+ Highest 25% of days of contributions. More contributions than the third quartile.
4026
+ """
4027
+ FOURTH_QUARTILE
4028
+
4029
+ """
4030
+ No contributions occurred.
4031
+ """
4032
+ NONE
4033
+
4034
+ """
4035
+ Second lowest 25% of days of contributions. More contributions than the first quartile.
4036
+ """
4037
+ SECOND_QUARTILE
4038
+
4039
+ """
4040
+ Second highest 25% of days of contributions. More contributions than second quartile, less than the fourth quartile.
4041
+ """
4042
+ THIRD_QUARTILE
4043
+ }
4044
+
4009
4045
"""
4010
4046
Ordering options for contribution connections.
4011
4047
"""
@@ -5387,7 +5423,7 @@ input CreateTeamDiscussionInput {
5387
5423
clientMutationId: String
5388
5424
5389
5425
"""
5390
- If true, restricts the visiblity of this discussion to team members and
5426
+ If true, restricts the visibility of this discussion to team members and
5391
5427
organization admins. If false or not specified, allows any organization member
5392
5428
to view this discussion.
5393
5429
"""
@@ -6844,6 +6880,11 @@ enum DeploymentStatusState {
6844
6880
The deployment was successful.
6845
6881
"""
6846
6882
SUCCESS
6883
+
6884
+ """
6885
+ The deployment is waiting.
6886
+ """
6887
+ WAITING
6847
6888
}
6848
6889
6849
6890
"""
@@ -10458,7 +10499,7 @@ enum GitSignatureState {
10458
10499
NO_USER
10459
10500
10460
10501
"""
10461
- Valid siganture , though certificate revocation check failed
10502
+ Valid signature , though certificate revocation check failed
10462
10503
"""
10463
10504
OCSP_ERROR
10464
10505
@@ -13512,7 +13553,7 @@ type Milestone implements Closable & Node & UniformResourceLocatable {
13512
13553
number: Int!
13513
13554
13514
13555
"""
13515
- Indentifies the percentage complete for the milestone
13556
+ Identifies the percentage complete for the milestone
13516
13557
"""
13517
13558
progressPercentage: Float!
13518
13559
@@ -16982,7 +17023,7 @@ type OrgRestoreMemberAuditEntry implements AuditEntry & Node & OrganizationAudit
16982
17023
restoredCustomEmailRoutingsCount: Int
16983
17024
16984
17025
"""
16985
- The number of issue assignemnts for the restored member.
17026
+ The number of issue assignments for the restored member.
16986
17027
"""
16987
17028
restoredIssueAssignmentsCount: Int
16988
17029
@@ -18502,7 +18543,7 @@ type OrganizationIdentityProvider implements Node {
18502
18543
id: ID!
18503
18544
18504
18545
"""
18505
- The x509 certificate used by the Identity Provder to sign assertions and responses.
18546
+ The x509 certificate used by the Identity Provider to sign assertions and responses.
18506
18547
"""
18507
18548
idpCertificate: X509Certificate
18508
18549
@@ -19121,7 +19162,7 @@ type PinnedIssueEdge @preview(toggledBy: "elektra-preview") {
19121
19162
}
19122
19163
19123
19164
"""
19124
- An ISO-8601 encoded UTC date string with millisecond precison .
19165
+ An ISO-8601 encoded UTC date string with millisecond precision .
19125
19166
"""
19126
19167
scalar PreciseDateTime
19127
19168
@@ -23827,6 +23868,11 @@ type Release implements Node & UniformResourceLocatable {
23827
23868
"""
23828
23869
isDraft: Boolean!
23829
23870
23871
+ """
23872
+ Whether or not the release is the latest releast
23873
+ """
23874
+ isLatest: Boolean!
23875
+
23830
23876
"""
23831
23877
Whether or not the release is a prerelease
23832
23878
"""
@@ -26277,7 +26323,7 @@ type RepoCreateAuditEntry implements AuditEntry & Node & OrganizationAuditEntryD
26277
26323
forkParentName: String
26278
26324
26279
26325
"""
26280
- The name of the root repository for this netork .
26326
+ The name of the root repository for this network .
26281
26327
"""
26282
26328
forkSourceName: String
26283
26329
id: ID!
@@ -27305,6 +27351,11 @@ type Repository implements Node & ProjectOwner & RepositoryInfo & Starrable & Su
27305
27351
orderBy: LanguageOrder
27306
27352
): LanguageConnection
27307
27353
27354
+ """
27355
+ Get the latest release for the repository if one exists.
27356
+ """
27357
+ latestRelease: Release
27358
+
27308
27359
"""
27309
27360
The license associated with the repository
27310
27361
"""
@@ -28926,7 +28977,7 @@ type RepositoryVulnerabilityAlert implements Node & RepositoryNode {
28926
28977
dismissReason: String
28927
28978
28928
28979
"""
28929
- When was the alert dimissed ?
28980
+ When was the alert dismissed ?
28930
28981
"""
28931
28982
dismissedAt: DateTime
28932
28983
@@ -28947,7 +28998,7 @@ type RepositoryVulnerabilityAlert implements Node & RepositoryNode {
28947
28998
securityAdvisory: SecurityAdvisory
28948
28999
28949
29000
"""
28950
- The associated security vulnerablity
29001
+ The associated security vulnerability
28951
29002
"""
28952
29003
securityVulnerability: SecurityVulnerability
28953
29004
@@ -30065,7 +30116,7 @@ type SmimeSignature implements GitSignature {
30065
30116
}
30066
30117
30067
30118
"""
30068
- Entites that can sponsor others via GitHub Sponsors
30119
+ Entities that can sponsor others via GitHub Sponsors
30069
30120
"""
30070
30121
union Sponsor = Organization | User
30071
30122
@@ -35314,7 +35365,7 @@ input UpdateTeamReviewAssignmentInput @preview(toggledBy: "stone-crop-preview")
35314
35365
excludedTeamMemberIds: [ID!] @possibleTypes(concreteTypes: ["User"])
35315
35366
35316
35367
"""
35317
- The Node ID of the team to update review assginments of
35368
+ The Node ID of the team to update review assignments of
35318
35369
"""
35319
35370
id: ID! @possibleTypes(concreteTypes: ["Team"])
35320
35371
@@ -36710,6 +36761,72 @@ enum UserStatusOrderField {
36710
36761
UPDATED_AT
36711
36762
}
36712
36763
36764
+ """
36765
+ A domain that can be verified for an organization or an enterprise.
36766
+ """
36767
+ type VerifiableDomain implements Node {
36768
+ """
36769
+ Identifies the primary key from the database.
36770
+ """
36771
+ databaseId: Int
36772
+
36773
+ """
36774
+ The DNS host name that should be used for verification.
36775
+ """
36776
+ dnsHostName: URI
36777
+
36778
+ """
36779
+ The unicode encoded domain.
36780
+ """
36781
+ domain: URI!
36782
+
36783
+ """
36784
+ Whether a TXT record for verification with the expected host name was found.
36785
+ """
36786
+ hasFoundHostName: Boolean!
36787
+
36788
+ """
36789
+ Whether a TXT record for verification with the expected verification token was found.
36790
+ """
36791
+ hasFoundVerificationToken: Boolean!
36792
+ id: ID!
36793
+
36794
+ """
36795
+ Whether this domain is required to exist for an organization policy to be enforced.
36796
+ """
36797
+ isRequiredForPolicyEnforcement: Boolean!
36798
+
36799
+ """
36800
+ Whether or not the domain is verified.
36801
+ """
36802
+ isVerified: Boolean!
36803
+
36804
+ """
36805
+ The owner of the domain.
36806
+ """
36807
+ owner: VerifiableDomainOwner!
36808
+
36809
+ """
36810
+ The punycode encoded domain.
36811
+ """
36812
+ punycodeEncodedDomain: URI!
36813
+
36814
+ """
36815
+ The time that the current verification token will expire.
36816
+ """
36817
+ tokenExpirationTime: DateTime
36818
+
36819
+ """
36820
+ The current verification token for the domain.
36821
+ """
36822
+ verificationToken: String
36823
+ }
36824
+
36825
+ """
36826
+ Types that can own a verifiable domain.
36827
+ """
36828
+ union VerifiableDomainOwner = Enterprise | Organization
36829
+
36713
36830
"""
36714
36831
A hovercard context with a message describing how the viewer is related.
36715
36832
"""
0 commit comments