truto-python-sdk 0.1.1__tar.gz → 0.1.2__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 (24) hide show
  1. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/PKG-INFO +4 -4
  2. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/pyproject.toml +2 -2
  3. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/LICENSE +0 -0
  4. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/README.md +0 -0
  5. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/truto_python_sdk/__init__.py +0 -0
  6. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/truto_python_sdk/base_resource.py +0 -0
  7. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/truto_python_sdk/dict_to_query_string.py +0 -0
  8. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/truto_python_sdk/environment.py +0 -0
  9. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/truto_python_sdk/environment_integration.py +0 -0
  10. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/truto_python_sdk/environment_unified_model.py +0 -0
  11. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/truto_python_sdk/integrated_account.py +0 -0
  12. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/truto_python_sdk/integration.py +0 -0
  13. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/truto_python_sdk/link_token.py +0 -0
  14. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/truto_python_sdk/pagination_result.py +0 -0
  15. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/truto_python_sdk/proxy_api.py +0 -0
  16. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/truto_python_sdk/sync_job.py +0 -0
  17. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/truto_python_sdk/sync_job_cron_trigger.py +0 -0
  18. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/truto_python_sdk/sync_job_run.py +0 -0
  19. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/truto_python_sdk/team.py +0 -0
  20. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/truto_python_sdk/truto_api.py +0 -0
  21. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/truto_python_sdk/unified_api.py +0 -0
  22. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/truto_python_sdk/unified_model.py +0 -0
  23. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/truto_python_sdk/user.py +0 -0
  24. {truto_python_sdk-0.1.1 → truto_python_sdk-0.1.2}/truto_python_sdk/webhook.py +0 -0
@@ -1,14 +1,14 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: truto-python-sdk
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: Python3 SDK for the Truto API
5
- Home-page: https://github.com/trutohq/truto-python-sdk
6
5
  Author: Roopendra Talekar
7
6
  Author-email: roopendratalekar@gmail.com
8
7
  Requires-Python: >=3.12,<4.0
9
8
  Classifier: Programming Language :: Python :: 3
10
9
  Classifier: Programming Language :: Python :: 3.12
11
- Requires-Dist: aiohttp (==3.10.5)
10
+ Classifier: Programming Language :: Python :: 3.13
11
+ Requires-Dist: aiohttp (==3.12.14)
12
12
  Requires-Dist: asyncio (==3.4.3)
13
13
  Project-URL: Repository, https://github.com/trutohq/truto-python-sdk
14
14
  Description-Content-Type: text/markdown
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "truto-python-sdk"
3
- version = "0.1.1"
3
+ version = "0.1.2"
4
4
  description = "Python3 SDK for the Truto API"
5
5
  authors = ["Roopendra Talekar <roopendratalekar@gmail.com>"]
6
6
  readme = "README.md"
@@ -8,7 +8,7 @@ repository = "https://github.com/trutohq/truto-python-sdk"
8
8
 
9
9
  [tool.poetry.dependencies]
10
10
  python = "^3.12"
11
- aiohttp = "3.10.5"
11
+ aiohttp = "3.12.14"
12
12
  asyncio = "3.4.3"
13
13
 
14
14