1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-11-20 12:02:22 +03:00

Schema update

This commit is contained in:
Quentin Gliech
2023-04-28 19:58:43 +02:00
parent 63d4bfd0d4
commit 119e3300de
2 changed files with 6 additions and 0 deletions

View File

@@ -554,6 +554,10 @@ enum SetPrimaryEmailStatus {
The email address was not found The email address was not found
""" """
NOT_FOUND NOT_FOUND
"""
Can't make an unverified email address primary
"""
UNVERIFIED
} }
type UpstreamOAuth2Link implements Node & CreationEvent { type UpstreamOAuth2Link implements Node & CreationEvent {

View File

@@ -440,6 +440,8 @@ export enum SetPrimaryEmailStatus {
NotFound = "NOT_FOUND", NotFound = "NOT_FOUND",
/** The email address was set as primary */ /** The email address was set as primary */
Set = "SET", Set = "SET",
/** Can't make an unverified email address primary */
Unverified = "UNVERIFIED",
} }
export type UpstreamOAuth2Link = CreationEvent & export type UpstreamOAuth2Link = CreationEvent &