Update schemas

This commit is contained in:
Hugh Nimmo-Smith
2025-06-06 10:45:23 +01:00
parent 192ad7af3e
commit 0551b93cae
3 changed files with 4 additions and 5 deletions

View File

@@ -2559,9 +2559,8 @@
]
},
"plan_management_iframe_uri": {
"description": "Experimental feature to show a plan management tab and iframe",
"type": "string",
"format": "uri"
"description": "Experimental feature to show a plan management tab and iframe. This value is passed through \"as is\" to the client without any validation.",
"type": "string"
}
}
},

View File

@@ -1757,7 +1757,7 @@ type SiteConfig implements Node {
Whether users can log in with their email address.
"""
loginWithEmailAllowed: Boolean!
planManagementIframeUri: Url
planManagementIframeUri: String
"""
The ID of the site configuration.
"""

View File

@@ -1296,7 +1296,7 @@ export type SiteConfig = Node & {
passwordLoginEnabled: Scalars['Boolean']['output'];
/** Whether passwords are enabled and users can register using a password. */
passwordRegistrationEnabled: Scalars['Boolean']['output'];
planManagementIframeUri?: Maybe<Scalars['Url']['output']>;
planManagementIframeUri?: Maybe<Scalars['String']['output']>;
/** The URL to the privacy policy. */
policyUri?: Maybe<Scalars['Url']['output']>;
/** The server name of the homeserver. */