@@ -313,8 +313,11 @@ input AddPullRequestReviewThreadInput {
313
313
"""Body of the thread's first comment."""
314
314
body: String!
315
315
316
+ """The node ID of the pull request reviewing"""
317
+ pullRequestId: ID
318
+
316
319
"""The Node ID of the review to modify."""
317
- pullRequestReviewId: ID!
320
+ pullRequestReviewId: ID
318
321
319
322
"""
320
323
The line of the blob to which the thread refers. The end of the line range for multi-line comments.
@@ -6099,12 +6102,39 @@ type ExternalIdentityEdge {
6099
6102
6100
6103
"""SAML attributes for the External Identity"""
6101
6104
type ExternalIdentitySamlAttributes {
6105
+ """The emails associated with the SAML identity"""
6106
+ emails: [UserEmailMetadata!]
6107
+
6108
+ """Family name of the SAML identity"""
6109
+ familyName: String
6110
+
6111
+ """Given name of the SAML identity"""
6112
+ givenName: String
6113
+
6114
+ """The groups linked to this identity in IDP"""
6115
+ groups: [String!]
6116
+
6102
6117
"""The NameID of the SAML identity"""
6103
6118
nameId: String
6119
+
6120
+ """The userName of the SAML identity"""
6121
+ username: String
6104
6122
}
6105
6123
6106
6124
"""SCIM attributes for the External Identity"""
6107
6125
type ExternalIdentityScimAttributes {
6126
+ """The emails associated with the SCIM identity"""
6127
+ emails: [UserEmailMetadata!]
6128
+
6129
+ """Family name of the SCIM identity"""
6130
+ familyName: String
6131
+
6132
+ """Given name of the SCIM identity"""
6133
+ givenName: String
6134
+
6135
+ """The groups linked to this identity in IDP"""
6136
+ groups: [String!]
6137
+
6108
6138
"""The userName of the SCIM identity"""
6109
6139
username: String
6110
6140
}
@@ -24031,6 +24061,18 @@ type UserEdge {
24031
24061
node: User
24032
24062
}
24033
24063
24064
+ """Email attributes from External Identity"""
24065
+ type UserEmailMetadata {
24066
+ """Boolean to identify primary emails"""
24067
+ primary: Boolean
24068
+
24069
+ """Type of email"""
24070
+ type: String
24071
+
24072
+ """Email id"""
24073
+ value: String!
24074
+ }
24075
+
24034
24076
"""The user's description of what they're currently doing."""
24035
24077
type UserStatus implements Node {
24036
24078
"""Identifies the date and time when the object was created."""
0 commit comments