producteca 2.0.20__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.
- {producteca-2.0.20 → producteca-2.0.21}/PKG-INFO +1 -1
- {producteca-2.0.20 → producteca-2.0.21}/producteca/sales_orders/sales_orders.py +1 -1
- {producteca-2.0.20 → producteca-2.0.21}/pyproject.toml +1 -1
- {producteca-2.0.20 → producteca-2.0.21}/LICENSE +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/README.md +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/__init__.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/abstract/__init__.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/abstract/abstract_dataclass.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/client.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/config/__init__.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/config/config.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/payments/__init__.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/payments/payments.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/payments/tests/__init__.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/payments/tests/test_payments.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/products/__init__.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/products/products.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/products/search_products.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/products/tests/__init__.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/products/tests/test_products.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/products/tests/test_search_products.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/sales_orders/__init__.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/sales_orders/search_sale_orders.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/sales_orders/tests/__init__.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/sales_orders/tests/search.json +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/sales_orders/tests/test_sales_orders.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/sales_orders/tests/test_search_so.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/shipments/__init__.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/shipments/shipment.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/shipments/tests/__init__.py +0 -0
- {producteca-2.0.20 → producteca-2.0.21}/producteca/shipments/tests/test_shipment.py +0 -0
|
@@ -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
|
|
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
|
|
File without changes
|