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.
Files changed (30) hide show
  1. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/PKG-INFO +1 -1
  2. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/models/commerce.py +6 -6
  3. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/pyproject.toml +1 -1
  4. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/.gitignore +0 -0
  5. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/LICENSE +0 -0
  6. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/README.md +0 -0
  7. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/__init__.py +0 -0
  8. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/clients/__init__.py +0 -0
  9. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/clients/base.py +0 -0
  10. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/clients/catalog.py +0 -0
  11. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/clients/commerce.py +0 -0
  12. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/configs/__init__.py +0 -0
  13. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/configs/base.py +0 -0
  14. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/configs/catalog.py +0 -0
  15. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/configs/commerce.py +0 -0
  16. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/exceptions/__init__.py +0 -0
  17. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/loggers.py +0 -0
  18. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/models/__init__.py +0 -0
  19. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/models/catalog.py +0 -0
  20. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/operations/__init__.py +0 -0
  21. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/operations/base.py +0 -0
  22. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/operations/catalog.py +0 -0
  23. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/operations/commerce.py +0 -0
  24. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/operations/pagination.py +0 -0
  25. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/py.typed +0 -0
  26. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/query.py +0 -0
  27. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/typing.py +0 -0
  28. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/utils/__init__.py +0 -0
  29. {python_bestbuy-0.2.3 → python_bestbuy-0.2.4}/bestbuy/utils/encryption.py +0 -0
  30. {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
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
- address_fulfillment: Optional[AddressFulfillment] = element(
378
- tag="address-fulfillment", default=None
377
+ address_fulfillments: List[AddressFulfillment] = element(
378
+ tag="address-fulfillment", default_factory=list
379
379
  )
380
- store_fulfillment: Optional[StoreFulfillment] = element(
381
- tag="store-fulfillment", default=None
380
+ store_fulfillments: List[StoreFulfillment] = element(
381
+ tag="store-fulfillment", default_factory=list
382
382
  )
383
- homedelivery_fulfillment: Optional[HomeDeliveryFulfillment] = element(
384
- tag="homedelivery-fulfillment", default=None
383
+ homedelivery_fulfillments: List[HomeDeliveryFulfillment] = element(
384
+ tag="homedelivery-fulfillment", default_factory=list
385
385
  )
386
386
 
387
387
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "python-bestbuy"
7
- version = "0.2.3"
7
+ version = "0.2.4"
8
8
  description = "Python client library for Best Buy's Catalog and Commerce APIs"
9
9
  readme = "README.md"
10
10
  license = "MIT"
File without changes
File without changes