removedInput schema / properties / app_id
Removed value: -{
- "type": "string"
-}
removedInput schema / properties / entity_id
Removed value: -{
- "type": "string"
-}
removedInput schema / properties / entity_type
Removed value: -{
- "type": "string"
-}
addedInput schema / properties / error
Added value: +{
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Error object with status and messaging details, if the entity can't be presented."
+}
addedInput schema / properties / metadata
Added value: +{
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Flexpane metadata keyed by entity ID, each describing the entity to present."
+}
addedInput schema / properties / trigger_id
Added value: +{
+ "description": "Reference to the user action that initiated the request.",
+ "type": "string"
+}
addedInput schema / properties / user_auth_required
Added value: +{
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Whether the user must authenticate before details can be shown."
+}
addedInput schema / properties / user_auth_url
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Custom URL where the user can authenticate."
+}
changedInput schema / required
Previous value: -[
- "app_id",
- "entity_id",
- "entity_type"
-]New value: +[
+ "trigger_id"
+]