producteca 2.0.18__tar.gz → 2.0.21__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.

Potentially problematic release.


This version of producteca might be problematic. Click here for more details.

Files changed (31) hide show
  1. {producteca-2.0.18 → producteca-2.0.21}/PKG-INFO +2 -2
  2. {producteca-2.0.18 → producteca-2.0.21}/producteca/sales_orders/sales_orders.py +1 -1
  3. {producteca-2.0.18 → producteca-2.0.21}/pyproject.toml +2 -2
  4. {producteca-2.0.18 → producteca-2.0.21}/LICENSE +0 -0
  5. {producteca-2.0.18 → producteca-2.0.21}/README.md +0 -0
  6. {producteca-2.0.18 → producteca-2.0.21}/producteca/__init__.py +0 -0
  7. {producteca-2.0.18 → producteca-2.0.21}/producteca/abstract/__init__.py +0 -0
  8. {producteca-2.0.18 → producteca-2.0.21}/producteca/abstract/abstract_dataclass.py +0 -0
  9. {producteca-2.0.18 → producteca-2.0.21}/producteca/client.py +0 -0
  10. {producteca-2.0.18 → producteca-2.0.21}/producteca/config/__init__.py +0 -0
  11. {producteca-2.0.18 → producteca-2.0.21}/producteca/config/config.py +0 -0
  12. {producteca-2.0.18 → producteca-2.0.21}/producteca/payments/__init__.py +0 -0
  13. {producteca-2.0.18 → producteca-2.0.21}/producteca/payments/payments.py +0 -0
  14. {producteca-2.0.18 → producteca-2.0.21}/producteca/payments/tests/__init__.py +0 -0
  15. {producteca-2.0.18 → producteca-2.0.21}/producteca/payments/tests/test_payments.py +0 -0
  16. {producteca-2.0.18 → producteca-2.0.21}/producteca/products/__init__.py +0 -0
  17. {producteca-2.0.18 → producteca-2.0.21}/producteca/products/products.py +0 -0
  18. {producteca-2.0.18 → producteca-2.0.21}/producteca/products/search_products.py +0 -0
  19. {producteca-2.0.18 → producteca-2.0.21}/producteca/products/tests/__init__.py +0 -0
  20. {producteca-2.0.18 → producteca-2.0.21}/producteca/products/tests/test_products.py +0 -0
  21. {producteca-2.0.18 → producteca-2.0.21}/producteca/products/tests/test_search_products.py +0 -0
  22. {producteca-2.0.18 → producteca-2.0.21}/producteca/sales_orders/__init__.py +0 -0
  23. {producteca-2.0.18 → producteca-2.0.21}/producteca/sales_orders/search_sale_orders.py +0 -0
  24. {producteca-2.0.18 → producteca-2.0.21}/producteca/sales_orders/tests/__init__.py +0 -0
  25. {producteca-2.0.18 → producteca-2.0.21}/producteca/sales_orders/tests/search.json +0 -0
  26. {producteca-2.0.18 → producteca-2.0.21}/producteca/sales_orders/tests/test_sales_orders.py +0 -0
  27. {producteca-2.0.18 → producteca-2.0.21}/producteca/sales_orders/tests/test_search_so.py +0 -0
  28. {producteca-2.0.18 → producteca-2.0.21}/producteca/shipments/__init__.py +0 -0
  29. {producteca-2.0.18 → producteca-2.0.21}/producteca/shipments/shipment.py +0 -0
  30. {producteca-2.0.18 → producteca-2.0.21}/producteca/shipments/tests/__init__.py +0 -0
  31. {producteca-2.0.18 → producteca-2.0.21}/producteca/shipments/tests/test_shipment.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: producteca
3
- Version: 2.0.18
3
+ Version: 2.0.21
4
4
  Summary:
5
5
  Author: Chroma Agency, Matias Rivera
6
6
  Author-email: mrivera@chroma.agency
@@ -12,7 +12,7 @@ Classifier: Programming Language :: Python :: 3.10
12
12
  Classifier: Programming Language :: Python :: 3.11
13
13
  Classifier: Programming Language :: Python :: 3.12
14
14
  Requires-Dist: coverage (>=7.2.0,<8.0.0)
15
- Requires-Dist: pydantic (>=2.10.0,<3.0.0)
15
+ Requires-Dist: pydantic (>=2.7.4,<3.0.0)
16
16
  Requires-Dist: requests (>=2.32.4,<3.0.0)
17
17
  Requires-Dist: typing_extensions (>=4.10.0,<5.0.0)
18
18
  Description-Content-Type: text/markdown
@@ -208,7 +208,7 @@ class SaleOrderInvoiceIntegrationPut(SaleOrderInvoiceIntegrationAbstract):
208
208
  class SaleOrder(BaseModel):
209
209
  tags: Optional[List[str]] = None
210
210
  integrations: Optional[List[SaleOrderIntegrationId]] = None
211
- invoice_integration: SaleOrderInvoiceIntegration = Field(alias="invoiceIntegration")
211
+ invoice_integration: Optional[SaleOrderInvoiceIntegration] = Field(None, alias="invoiceIntegration")
212
212
  channel: Optional[str] = None
213
213
  pii_expired: Optional[bool] = Field(None, alias="piiExpired")
214
214
  contact: Optional[SaleOrderContact] = None
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "producteca"
3
- version = "2.0.18"
3
+ version = "2.0.21"
4
4
  description = ""
5
5
  authors = ["Chroma Agency, Matias Rivera <mrivera@chroma.agency>"]
6
6
  readme = "README.md"
@@ -14,7 +14,7 @@ test = 'scripts:test'
14
14
  python = "^3.8"
15
15
  requests = "^2.32.4"
16
16
  coverage = "^7.2.0"
17
- pydantic = "^2.10.0"
17
+ pydantic = "^2.7.4"
18
18
  typing_extensions = "^4.10.0"
19
19
 
20
20
 
File without changes
File without changes