runapi-core 0.2.1__tar.gz → 0.2.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 (28) hide show
  1. {runapi_core-0.2.1 → runapi_core-0.2.2}/PKG-INFO +2 -2
  2. {runapi_core-0.2.1 → runapi_core-0.2.2}/pyproject.toml +1 -1
  3. {runapi_core-0.2.1 → runapi_core-0.2.2}/src/runapi/core/contract_gen.py +6 -0
  4. runapi_core-0.2.2/src/runapi/core/version.py +1 -0
  5. runapi_core-0.2.1/src/runapi/core/version.py +0 -1
  6. {runapi_core-0.2.1 → runapi_core-0.2.2}/README.md +0 -0
  7. {runapi_core-0.2.1 → runapi_core-0.2.2}/src/runapi/core/__init__.py +0 -0
  8. {runapi_core-0.2.1 → runapi_core-0.2.2}/src/runapi/core/auth.py +0 -0
  9. {runapi_core-0.2.1 → runapi_core-0.2.2}/src/runapi/core/config.py +0 -0
  10. {runapi_core-0.2.1 → runapi_core-0.2.2}/src/runapi/core/constants.py +0 -0
  11. {runapi_core-0.2.1 → runapi_core-0.2.2}/src/runapi/core/errors.py +0 -0
  12. {runapi_core-0.2.1 → runapi_core-0.2.2}/src/runapi/core/files.py +0 -0
  13. {runapi_core-0.2.1 → runapi_core-0.2.2}/src/runapi/core/http_client.py +0 -0
  14. {runapi_core-0.2.1 → runapi_core-0.2.2}/src/runapi/core/models.py +0 -0
  15. {runapi_core-0.2.1 → runapi_core-0.2.2}/src/runapi/core/multipart.py +0 -0
  16. {runapi_core-0.2.1 → runapi_core-0.2.2}/src/runapi/core/options.py +0 -0
  17. {runapi_core-0.2.1 → runapi_core-0.2.2}/src/runapi/core/polling.py +0 -0
  18. {runapi_core-0.2.1 → runapi_core-0.2.2}/src/runapi/core/py.typed +0 -0
  19. {runapi_core-0.2.1 → runapi_core-0.2.2}/src/runapi/core/resource.py +0 -0
  20. {runapi_core-0.2.1 → runapi_core-0.2.2}/src/runapi/core/response.py +0 -0
  21. {runapi_core-0.2.1 → runapi_core-0.2.2}/tests/test_auth.py +0 -0
  22. {runapi_core-0.2.1 → runapi_core-0.2.2}/tests/test_config.py +0 -0
  23. {runapi_core-0.2.1 → runapi_core-0.2.2}/tests/test_errors.py +0 -0
  24. {runapi_core-0.2.1 → runapi_core-0.2.2}/tests/test_files.py +0 -0
  25. {runapi_core-0.2.1 → runapi_core-0.2.2}/tests/test_http_client.py +0 -0
  26. {runapi_core-0.2.1 → runapi_core-0.2.2}/tests/test_models.py +0 -0
  27. {runapi_core-0.2.1 → runapi_core-0.2.2}/tests/test_polling.py +0 -0
  28. {runapi_core-0.2.1 → runapi_core-0.2.2}/tests/test_resource.py +0 -0
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: runapi-core
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: RunAPI core SDK for JavaScript, Python, Ruby, Go, Java, and PHP
5
5
  Project-URL: Homepage, https://runapi.ai/models
6
6
  Project-URL: Documentation, https://runapi.ai/docs#runapi-sdks
7
7
  Project-URL: Source, https://github.com/runapi-ai/core-sdk
8
8
  Project-URL: Issues, https://github.com/runapi-ai/core-sdk/issues
9
9
  Project-URL: Changelog, https://github.com/runapi-ai/core-sdk/blob/main/CHANGELOG.md
10
- Project-URL: Release Notes, https://github.com/runapi-ai/core-sdk/releases/tag/python%2Fv0.2.1
10
+ Project-URL: Release Notes, https://github.com/runapi-ai/core-sdk/releases/tag/python%2Fv0.2.2
11
11
  Author-email: RunAPI <contact@runapi.ai>
12
12
  License-Expression: Apache-2.0
13
13
  Keywords: api,core,golang,gradle,java,maven,pypi,python,ruby,runapi,runapi-ai,sdk,typescript
@@ -19,7 +19,7 @@ Documentation = "https://runapi.ai/docs#runapi-sdks"
19
19
  Source = "https://github.com/runapi-ai/core-sdk"
20
20
  Issues = "https://github.com/runapi-ai/core-sdk/issues"
21
21
  Changelog = "https://github.com/runapi-ai/core-sdk/blob/main/CHANGELOG.md"
22
- "Release Notes" = "https://github.com/runapi-ai/core-sdk/releases/tag/python%2Fv0.2.1"
22
+ "Release Notes" = "https://github.com/runapi-ai/core-sdk/releases/tag/python%2Fv0.2.2"
23
23
 
24
24
  [tool.hatch.version]
25
25
  path = "src/runapi/core/version.py"
@@ -1077,6 +1077,12 @@ CONTRACT = {
1077
1077
  }
1078
1078
  }
1079
1079
  },
1080
+ "suno/blend-lyrics": {
1081
+ "models": [],
1082
+ "fields_by_model": {
1083
+ "_": {}
1084
+ }
1085
+ },
1080
1086
  "suno/boost-style": {
1081
1087
  "models": [],
1082
1088
  "fields_by_model": {
@@ -0,0 +1 @@
1
+ __version__ = "0.2.2"
@@ -1 +0,0 @@
1
- __version__ = "0.2.1"
File without changes