@@ -11,8 +11,8 @@ The `JSONObject` scalar type represents JSON objects as specified by [ECMA-404](
1111scalar JSONObject
1212
1313input GetRequestContextArgs {
14- """Echoes back the input """
15- echo : String
14+ """Returns extra debug info """
15+ debug : String
1616}
1717
1818type ClerkActor {
@@ -329,7 +329,7 @@ type ClerkUserProperties {
329329 """
330330 A getter boolean to check if the user has uploaded an image or one was copied from OAuth. Returns false if Clerk is displaying an avatar for the user.
331331 """
332- hasImage : Boolean !
332+ hasImage : Boolean
333333
334334 """Information about the user's primary email address."""
335335 primaryEmailAddress : ClerkUserEmailAdress
@@ -342,10 +342,10 @@ type ClerkUserProperties {
342342 """
343343 An array of all the EmailAddress objects associated with the user. Includes the primary.
344344 """
345- emailAdresses : [ClerkUserEmailAdress ]!
345+ emailAddresses : [ClerkUserEmailAdress ]!
346346
347347 """A getter boolean to check if the user has verified an email address."""
348- hasVerifiedEmailAddress : Boolean !
348+ hasVerifiedEmailAddress : Boolean
349349
350350 """Information about the user's primary phone number."""
351351 primaryPhoneNumber : ClerkUserPhoneNumber
@@ -361,49 +361,49 @@ type ClerkUserProperties {
361361 phoneNumbers : [ClerkUserPhoneNumber ]!
362362
363363 """A getter boolean to check if the user has verified a phone number."""
364- hasVerifiedPhoneNumber : Boolean !
364+ hasVerifiedPhoneNumber : Boolean
365365
366366 """
367367 An array of all the ExternalAccount objects associated with the user via OAuth. Note: This includes both verified & unverified external accounts.
368368 """
369369 externalAccounts : [ClerkExternalAccount ]!
370370
371371 """A getter for the user's list of verified external accounts."""
372- verifiedExternalAccounts : [ClerkExternalAccount ]!
372+ verifiedExternalAccounts : [ClerkExternalAccount ]
373373
374374 """A getter for the user's list of unverified external accounts."""
375- unverifiedExternalAccounts : [ClerkExternalAccount ]!
375+ unverifiedExternalAccounts : [ClerkExternalAccount ]
376376
377377 """
378378 A list of OrganizationMemberships representing the list of organizations the user is member with.
379379 """
380- organizationMemberships : [ClerkOrganizationMembership ]!
380+ organizationMemberships : [ClerkOrganizationMembership ]
381381
382382 """A boolean indicating whether the user has a password on their account."""
383- passwordEnabled : Boolean !
383+ passwordEnabled : Boolean
384384
385385 """
386386 A boolean indicating whether the user has enabled TOTP by generating a TOTP secret and verifying it via an authenticator app.
387387 """
388- totpEnabled : Boolean !
388+ totpEnabled : Boolean
389389
390390 """
391391 A boolean indicating whether the user has enabled two-factor authentication.
392392 """
393- twoFactorEnabled : Boolean !
393+ twoFactorEnabled : Boolean
394394
395395 """A boolean indicating whether the user has enabled Backup codes."""
396- backupCodeEnabled : Boolean !
396+ backupCodeEnabled : Boolean
397397
398398 """
399399 A boolean indicating whether the organization creation is enabled for the user or not.
400400 """
401- createOrganizationEnabled : Boolean !
401+ createOrganizationEnabled : Boolean
402402
403403 """
404404 A boolean indicating whether the user is able to delete their own account or not.
405405 """
406- deleteSelfEnabled : Boolean !
406+ deleteSelfEnabled : Boolean
407407
408408 """
409409 Date when the user last signed in. May be empty if the user has never signed in.
0 commit comments