forked from moralmunky/Home-Assistant-Mail-And-Packages
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(shipper): add support for BuildingLink (moralmunky#877)
* Add support for buildinglink * Add support for buildinglink * Add support for buildinglink
- Loading branch information
1 parent
a3cf468
commit 7dcefe9
Showing
1 changed file
with
21 additions
and
0 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 |
---|---|---|
|
@@ -556,6 +556,20 @@ | |
"subject": ["delivery is delayed"], | ||
}, | ||
"walmart_tracking": {"pattern": ["#[0-9]{7}-[0-9]{7}"]}, | ||
# BuildingLink | ||
"buildinglink_delivered": { | ||
"email": ["[email protected]"], | ||
"subject": [ | ||
"Your Amazon order has arrived", | ||
"Your USPS delivery has arrived", | ||
"Your UPS delivery has arrived", | ||
"Your FEDEX delivery has arrived", | ||
"You have a package delivery", | ||
"You have a DHL delivery", | ||
"You have an envelope", | ||
], | ||
}, | ||
"buildinglink_tracking": {}, | ||
# Post NL | ||
"post_nl_delivering": { | ||
"email": ["[email protected]"], | ||
|
@@ -992,6 +1006,13 @@ | |
icon="mdi:archive-alert", | ||
key="walmart_exception", | ||
), | ||
# BuildingLink | ||
"buildinglink_delivered": SensorEntityDescription( | ||
name="Mail BuildingLink Delivered", | ||
native_unit_of_measurement="package(s)", | ||
icon="mdi:package-variant-closed", | ||
key="buildinglink_delivered", | ||
), | ||
# Post NL | ||
"post_nl_delivering": SensorEntityDescription( | ||
name="Post NL Delivering", | ||
|