-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
19 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
|
||
DOMAIN = "mail_and_packages" | ||
DOMAIN_DATA = f"{DOMAIN}_data" | ||
VERSION = "0.3.23" | ||
VERSION = "0.3.25" | ||
ISSUE_URL = "http://github.com/moralmunky/Home-Assistant-Mail-And-Packages" | ||
PLATFORM = "sensor" | ||
PLATFORMS = ["binary_sensor", "camera", "sensor"] | ||
|
@@ -551,15 +551,23 @@ | |
}, | ||
"intelcom_tracking": {"pattern": ["INTLCMD[0-9]{9}"]}, | ||
# Walmart | ||
"walmart_delivering": { | ||
"email": ["[email protected]"], | ||
"subject": ["Out for delivery"], | ||
}, | ||
"walmart_delivered": { | ||
"email": ["[email protected]"], | ||
"subject": ["Your order was delivered", "Some of your items were delivered"], | ||
"subject": [ | ||
"Your order was delivered", | ||
"Some of your items were delivered", | ||
"Delivered:", | ||
], | ||
}, | ||
"walmart_exception": { | ||
"email": ["[email protected]"], | ||
"subject": ["delivery is delayed"], | ||
}, | ||
"walmart_tracking": {"pattern": ["#[0-9]{7}-[0-9]{7}"]}, | ||
"walmart_tracking": {"pattern": ["#[0-9]{7}-[0-9]{7,8}"]}, | ||
# BuildingLink | ||
"buildinglink_delivered": { | ||
"email": ["[email protected]"], | ||
|
@@ -998,6 +1006,12 @@ | |
key="intelcom_packages", | ||
), | ||
# Walmart | ||
"walmart_delivering": SensorEntityDescription( | ||
name="Mail Walmart Delivering", | ||
native_unit_of_measurement="package(s)", | ||
icon="mdi:truck-delivery", | ||
key="walmart_delivering", | ||
), | ||
"walmart_delivered": SensorEntityDescription( | ||
name="Mail Walmart Delivered", | ||
native_unit_of_measurement="package(s)", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,5 +16,5 @@ | |
"Pillow>=9.0", | ||
"dateparser" | ||
], | ||
"version": "0.3.23" | ||
"version": "0.3.25" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters