mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 05:07:41 +00:00
Fix issues with SimpliSafe email-based 2FA (#71180)
* FIx issues with email-based SimpliSafe 2FA * Bump
This commit is contained in:
parent
63679d3d29
commit
802adaf43c
@ -3,7 +3,7 @@
|
|||||||
"name": "SimpliSafe",
|
"name": "SimpliSafe",
|
||||||
"config_flow": true,
|
"config_flow": true,
|
||||||
"documentation": "https://www.home-assistant.io/integrations/simplisafe",
|
"documentation": "https://www.home-assistant.io/integrations/simplisafe",
|
||||||
"requirements": ["simplisafe-python==2022.04.1"],
|
"requirements": ["simplisafe-python==2022.05.0"],
|
||||||
"codeowners": ["@bachya"],
|
"codeowners": ["@bachya"],
|
||||||
"iot_class": "cloud_polling",
|
"iot_class": "cloud_polling",
|
||||||
"dhcp": [
|
"dhcp": [
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
"reauth_successful": "[%key:common::config_flow::abort::reauth_successful%]"
|
"reauth_successful": "[%key:common::config_flow::abort::reauth_successful%]"
|
||||||
},
|
},
|
||||||
"progress": {
|
"progress": {
|
||||||
"email_2fa": "Input the two-factor authentication code\nsent to you via email."
|
"email_2fa": "Check your email for a verification link from Simplisafe."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"options": {
|
"options": {
|
||||||
|
@ -3,23 +3,16 @@
|
|||||||
"abort": {
|
"abort": {
|
||||||
"already_configured": "This SimpliSafe account is already in use.",
|
"already_configured": "This SimpliSafe account is already in use.",
|
||||||
"email_2fa_timed_out": "Timed out while waiting for email-based two-factor authentication.",
|
"email_2fa_timed_out": "Timed out while waiting for email-based two-factor authentication.",
|
||||||
"reauth_successful": "Re-authentication was successful",
|
"reauth_successful": "Re-authentication was successful"
|
||||||
"wrong_account": "The user credentials provided do not match this SimpliSafe account."
|
|
||||||
},
|
},
|
||||||
"error": {
|
"error": {
|
||||||
"2fa_timed_out": "Timed out while waiting for two-factor authentication",
|
|
||||||
"identifier_exists": "Account already registered",
|
|
||||||
"invalid_auth": "Invalid authentication",
|
"invalid_auth": "Invalid authentication",
|
||||||
"still_awaiting_mfa": "Still awaiting MFA email click",
|
|
||||||
"unknown": "Unexpected error"
|
"unknown": "Unexpected error"
|
||||||
},
|
},
|
||||||
"progress": {
|
"progress": {
|
||||||
"email_2fa": "Input the two-factor authentication code\nsent to you via email."
|
"email_2fa": "Check your email for a verification link from Simplisafe."
|
||||||
},
|
},
|
||||||
"step": {
|
"step": {
|
||||||
"mfa": {
|
|
||||||
"title": "SimpliSafe Multi-Factor Authentication"
|
|
||||||
},
|
|
||||||
"reauth_confirm": {
|
"reauth_confirm": {
|
||||||
"data": {
|
"data": {
|
||||||
"password": "Password"
|
"password": "Password"
|
||||||
@ -35,13 +28,10 @@
|
|||||||
},
|
},
|
||||||
"user": {
|
"user": {
|
||||||
"data": {
|
"data": {
|
||||||
"auth_code": "Authorization Code",
|
|
||||||
"code": "Code (used in Home Assistant UI)",
|
|
||||||
"password": "Password",
|
"password": "Password",
|
||||||
"username": "Username"
|
"username": "Username"
|
||||||
},
|
},
|
||||||
"description": "Input your username and password.",
|
"description": "Input your username and password."
|
||||||
"title": "Fill in your information."
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -2156,7 +2156,7 @@ simplehound==0.3
|
|||||||
simplepush==1.1.4
|
simplepush==1.1.4
|
||||||
|
|
||||||
# homeassistant.components.simplisafe
|
# homeassistant.components.simplisafe
|
||||||
simplisafe-python==2022.04.1
|
simplisafe-python==2022.05.0
|
||||||
|
|
||||||
# homeassistant.components.sisyphus
|
# homeassistant.components.sisyphus
|
||||||
sisyphus-control==3.1.2
|
sisyphus-control==3.1.2
|
||||||
|
@ -1407,7 +1407,7 @@ sharkiq==0.0.1
|
|||||||
simplehound==0.3
|
simplehound==0.3
|
||||||
|
|
||||||
# homeassistant.components.simplisafe
|
# homeassistant.components.simplisafe
|
||||||
simplisafe-python==2022.04.1
|
simplisafe-python==2022.05.0
|
||||||
|
|
||||||
# homeassistant.components.slack
|
# homeassistant.components.slack
|
||||||
slackclient==2.5.0
|
slackclient==2.5.0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user