asaas-python-sdk 1.4.0__tar.gz → 1.4.1__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 (28) hide show
  1. {asaas_python_sdk-1.4.0/src/asaas_python_sdk.egg-info → asaas_python_sdk-1.4.1}/PKG-INFO +1 -1
  2. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/pyproject.toml +1 -1
  3. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/src/asaas/dtos/payment.py +6 -4
  4. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1/src/asaas_python_sdk.egg-info}/PKG-INFO +1 -1
  5. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/LICENSE +0 -0
  6. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/README.md +0 -0
  7. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/setup.cfg +0 -0
  8. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/src/__init__.py +0 -0
  9. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/src/asaas/__init__.py +0 -0
  10. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/src/asaas/api.py +0 -0
  11. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/src/asaas/apis/__init__.py +0 -0
  12. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/src/asaas/apis/accounts.py +0 -0
  13. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/src/asaas/apis/credit_cards.py +0 -0
  14. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/src/asaas/apis/customers.py +0 -0
  15. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/src/asaas/apis/payments.py +0 -0
  16. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/src/asaas/apis/subscriptions.py +0 -0
  17. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/src/asaas/apis/webhooks.py +0 -0
  18. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/src/asaas/dtos/__init__.py +0 -0
  19. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/src/asaas/dtos/account.py +0 -0
  20. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/src/asaas/dtos/billing_type.py +0 -0
  21. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/src/asaas/dtos/credit_card.py +0 -0
  22. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/src/asaas/dtos/customer.py +0 -0
  23. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/src/asaas/dtos/split.py +0 -0
  24. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/src/asaas/dtos/subscription.py +0 -0
  25. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/src/asaas/dtos/webhook.py +0 -0
  26. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/src/asaas_python_sdk.egg-info/SOURCES.txt +0 -0
  27. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/src/asaas_python_sdk.egg-info/dependency_links.txt +0 -0
  28. {asaas_python_sdk-1.4.0 → asaas_python_sdk-1.4.1}/src/asaas_python_sdk.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: asaas-python-sdk
3
- Version: 1.4.0
3
+ Version: 1.4.1
4
4
  Summary: Client de comunicaçao c/ API do ASAAS
5
5
  Author-email: Filipe Coelho <filipe@fmconsult.com.br>
6
6
  License: MIT License
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "asaas-python-sdk"
7
- version = "1.4.0"
7
+ version = "1.4.1"
8
8
  description = "Client de comunicaçao c/ API do ASAAS"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
@@ -48,9 +48,11 @@ class Filter(CustomObject):
48
48
  class Payment(CustomObject):
49
49
  customer:str
50
50
  billingType:BillingType
51
- value:float
52
51
  dueDate:str
53
- description:str
54
- externalReference:str
55
- installmentValue:float
52
+ description:str = None
53
+ externalReference:str = None
54
+ value:float = None
55
+ totalValue:float = None
56
+ installmentCount:int = None
57
+ installmentValue:float = None
56
58
  split: Optional[List[Split]] = None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: asaas-python-sdk
3
- Version: 1.4.0
3
+ Version: 1.4.1
4
4
  Summary: Client de comunicaçao c/ API do ASAAS
5
5
  Author-email: Filipe Coelho <filipe@fmconsult.com.br>
6
6
  License: MIT License