Skip to content
Developer Preview

AccountLoginCompletedParams

Experimental

account/loginCompleted params: exactly {outcome, message?}. message is a display string from the typed error vocabulary — never key material, store content, or an echo of the raw params.

  • messageExperimental
  • outcomeExperimental
Source

schema/msp/experimental/msp.schema.json#/types/AccountLoginCompletedParams

{
"description": "`account/loginCompleted` params: exactly `{outcome, message?}`. `message` is a display string from the typed error\nvocabulary — never key material, store content, or an echo of the raw\nparams.",
"properties": {
"message": {
"description": "Optional display message.",
"type": "string"
},
"outcome": {
"$ref": "#/$defs/AccountLoginOutcome",
"description": "How the flow ended."
}
},
"required": [
"outcome"
],
"type": "object",
"x-msp-descriptor": "account/loginCompleted",
"x-msp-stability": "experimental"
}