python-bestbuy 0.2.3__tar.gz → 0.2.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/PKG-INFO +1 -1
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/models/commerce.py +6 -6
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/pyproject.toml +1 -1
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/.gitignore +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/LICENSE +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/README.md +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/__init__.py +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/clients/__init__.py +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/clients/base.py +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/clients/catalog.py +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/clients/commerce.py +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/configs/__init__.py +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/configs/base.py +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/configs/catalog.py +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/configs/commerce.py +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/exceptions/__init__.py +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/loggers.py +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/models/__init__.py +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/models/catalog.py +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/operations/__init__.py +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/operations/base.py +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/operations/catalog.py +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/operations/commerce.py +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/operations/pagination.py +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/py.typed +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/query.py +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/typing.py +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/utils/__init__.py +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/utils/encryption.py +0 -0
- {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/utils/errors.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-bestbuy
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: Python client library for Best Buy's Catalog and Commerce APIs
|
|
5
5
|
Project-URL: Homepage, https://github.com/bbify/python-bestbuy
|
|
6
6
|
Project-URL: Repository, https://github.com/bbify/python-bestbuy
|
|
@@ -374,14 +374,14 @@ class HomeDeliveryFulfillment(BaseXmlModel, tag="homedelivery-fulfillment"):
|
|
|
374
374
|
|
|
375
375
|
class Fulfillment(BaseXmlModel, tag="fulfillment"):
|
|
376
376
|
status: Optional[str] = attr(name="status", default=None)
|
|
377
|
-
|
|
378
|
-
tag="address-fulfillment",
|
|
377
|
+
address_fulfillments: List[AddressFulfillment] = element(
|
|
378
|
+
tag="address-fulfillment", default_factory=list
|
|
379
379
|
)
|
|
380
|
-
|
|
381
|
-
tag="store-fulfillment",
|
|
380
|
+
store_fulfillments: List[StoreFulfillment] = element(
|
|
381
|
+
tag="store-fulfillment", default_factory=list
|
|
382
382
|
)
|
|
383
|
-
|
|
384
|
-
tag="homedelivery-fulfillment",
|
|
383
|
+
homedelivery_fulfillments: List[HomeDeliveryFulfillment] = element(
|
|
384
|
+
tag="homedelivery-fulfillment", default_factory=list
|
|
385
385
|
)
|
|
386
386
|
|
|
387
387
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|