Schema update

This commit is contained in:
Quentin Gliech
2023-06-14 09:24:49 +02:00
parent 63d4bfd0d4
commit 119e3300de
2 changed files with 6 additions and 0 deletions
+4
View File
@@ -554,6 +554,10 @@ enum SetPrimaryEmailStatus {
The email address was not found
"""
NOT_FOUND
"""
Can't make an unverified email address primary
"""
UNVERIFIED
}
type UpstreamOAuth2Link implements Node & CreationEvent {
+2
View File
@@ -440,6 +440,8 @@ export enum SetPrimaryEmailStatus {
NotFound = "NOT_FOUND",
/** The email address was set as primary */
Set = "SET",
/** Can't make an unverified email address primary */
Unverified = "UNVERIFIED",
}
export type UpstreamOAuth2Link = CreationEvent &