mixpeek 0.10.0__tar.gz → 0.11.0__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 (123) hide show
  1. mixpeek-0.11.0/.release-please-manifest.json +3 -0
  2. {mixpeek-0.10.0 → mixpeek-0.11.0}/CHANGELOG.md +8 -0
  3. {mixpeek-0.10.0 → mixpeek-0.11.0}/PKG-INFO +2 -2
  4. {mixpeek-0.10.0 → mixpeek-0.11.0}/SECURITY.md +1 -1
  5. {mixpeek-0.10.0 → mixpeek-0.11.0}/pyproject.toml +2 -2
  6. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_version.py +1 -1
  7. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/tasks.py +3 -0
  8. mixpeek-0.10.0/.release-please-manifest.json +0 -3
  9. {mixpeek-0.10.0 → mixpeek-0.11.0}/.gitignore +0 -0
  10. {mixpeek-0.10.0 → mixpeek-0.11.0}/CONTRIBUTING.md +0 -0
  11. {mixpeek-0.10.0 → mixpeek-0.11.0}/LICENSE +0 -0
  12. {mixpeek-0.10.0 → mixpeek-0.11.0}/README.md +0 -0
  13. {mixpeek-0.10.0 → mixpeek-0.11.0}/api.md +0 -0
  14. {mixpeek-0.10.0 → mixpeek-0.11.0}/bin/check-release-environment +0 -0
  15. {mixpeek-0.10.0 → mixpeek-0.11.0}/bin/publish-pypi +0 -0
  16. {mixpeek-0.10.0 → mixpeek-0.11.0}/examples/.keep +0 -0
  17. {mixpeek-0.10.0 → mixpeek-0.11.0}/examples/example.py +0 -0
  18. {mixpeek-0.10.0 → mixpeek-0.11.0}/mypy.ini +0 -0
  19. {mixpeek-0.10.0 → mixpeek-0.11.0}/noxfile.py +0 -0
  20. {mixpeek-0.10.0 → mixpeek-0.11.0}/release-please-config.json +0 -0
  21. {mixpeek-0.10.0 → mixpeek-0.11.0}/requirements-dev.lock +0 -0
  22. {mixpeek-0.10.0 → mixpeek-0.11.0}/requirements.lock +0 -0
  23. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/__init__.py +0 -0
  24. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_base_client.py +0 -0
  25. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_client.py +0 -0
  26. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_compat.py +0 -0
  27. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_constants.py +0 -0
  28. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_exceptions.py +0 -0
  29. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_files.py +0 -0
  30. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_models.py +0 -0
  31. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_qs.py +0 -0
  32. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_resource.py +0 -0
  33. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_response.py +0 -0
  34. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_streaming.py +0 -0
  35. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_types.py +0 -0
  36. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_utils/__init__.py +0 -0
  37. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_utils/_logs.py +0 -0
  38. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_utils/_proxy.py +0 -0
  39. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_utils/_reflection.py +0 -0
  40. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_utils/_streams.py +0 -0
  41. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_utils/_sync.py +0 -0
  42. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_utils/_transform.py +0 -0
  43. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_utils/_typing.py +0 -0
  44. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_utils/_utils.py +0 -0
  45. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/lib/.keep +0 -0
  46. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/py.typed +0 -0
  47. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/__init__.py +0 -0
  48. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/accounts/__init__.py +0 -0
  49. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/accounts/accounts.py +0 -0
  50. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/accounts/private.py +0 -0
  51. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/agent/__init__.py +0 -0
  52. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/agent/agent.py +0 -0
  53. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/agent/task.py +0 -0
  54. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/collections/__init__.py +0 -0
  55. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/collections/collections.py +0 -0
  56. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/collections/files.py +0 -0
  57. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/describe.py +0 -0
  58. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/embed.py +0 -0
  59. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/indexes.py +0 -0
  60. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/read.py +0 -0
  61. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/recognize.py +0 -0
  62. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/search.py +0 -0
  63. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/transcribe.py +0 -0
  64. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/__init__.py +0 -0
  65. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/accounts/__init__.py +0 -0
  66. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/accounts/private_update_params.py +0 -0
  67. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/accounts/user.py +0 -0
  68. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/agent/__init__.py +0 -0
  69. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/agent_create_params.py +0 -0
  70. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/agentresponse.py +0 -0
  71. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/collection_search_params.py +0 -0
  72. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/collections/__init__.py +0 -0
  73. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/collections/file_create_params.py +0 -0
  74. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/collections/file_full_params.py +0 -0
  75. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/collections/file_update_params.py +0 -0
  76. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/collections/fileresponse.py +0 -0
  77. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/collections/groupedfiledata.py +0 -0
  78. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/describe_upload_params.py +0 -0
  79. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/describe_url_params.py +0 -0
  80. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/embed_create_params.py +0 -0
  81. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/embeddingresponse.py +0 -0
  82. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/index_face_params.py +0 -0
  83. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/index_upload_params.py +0 -0
  84. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/index_url_params.py +0 -0
  85. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/search_text_params.py +0 -0
  86. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/search_upload_params.py +0 -0
  87. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/search_url_params.py +0 -0
  88. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/taskresponse.py +0 -0
  89. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/transcribe_url_params.py +0 -0
  90. {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek_sdk/lib/.keep +0 -0
  91. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/__init__.py +0 -0
  92. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/__init__.py +0 -0
  93. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/accounts/__init__.py +0 -0
  94. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/accounts/test_private.py +0 -0
  95. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/agent/__init__.py +0 -0
  96. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/agent/test_task.py +0 -0
  97. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/collections/__init__.py +0 -0
  98. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/collections/test_files.py +0 -0
  99. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/test_agent.py +0 -0
  100. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/test_collections.py +0 -0
  101. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/test_describe.py +0 -0
  102. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/test_embed.py +0 -0
  103. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/test_indexes.py +0 -0
  104. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/test_read.py +0 -0
  105. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/test_recognize.py +0 -0
  106. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/test_search.py +0 -0
  107. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/test_tasks.py +0 -0
  108. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/test_transcribe.py +0 -0
  109. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/conftest.py +0 -0
  110. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/sample_file.txt +0 -0
  111. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_client.py +0 -0
  112. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_deepcopy.py +0 -0
  113. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_extract_files.py +0 -0
  114. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_files.py +0 -0
  115. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_models.py +0 -0
  116. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_qs.py +0 -0
  117. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_required_args.py +0 -0
  118. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_response.py +0 -0
  119. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_streaming.py +0 -0
  120. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_transform.py +0 -0
  121. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_utils/test_proxy.py +0 -0
  122. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_utils/test_typing.py +0 -0
  123. {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/utils.py +0 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.11.0"
3
+ }
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.11.0 (2024-10-08)
4
+
5
+ Full Changelog: [v0.10.0...v0.11.0](https://github.com/mixpeek/python-client/compare/v0.10.0...v0.11.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** update via SDK Studio ([#17](https://github.com/mixpeek/python-client/issues/17)) ([2b56978](https://github.com/mixpeek/python-client/commit/2b569781f873fb5756939bfbdecb1bed118afc6d))
10
+
3
11
  ## 0.10.0 (2024-10-08)
4
12
 
5
13
  Full Changelog: [v0.9.0...v0.10.0](https://github.com/mixpeek/python-client/compare/v0.9.0...v0.10.0)
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: mixpeek
3
- Version: 0.10.0
3
+ Version: 0.11.0
4
4
  Summary: The official Python library for the mixpeek-sdk API
5
5
  Project-URL: Homepage, https://github.com/mixpeek/python-client
6
6
  Project-URL: Repository, https://github.com/mixpeek/python-client
7
- Author-email: Mixpeek SDK <dev-feedback@mixpeek-sdk.com>
7
+ Author-email: Mixpeek SDK <dev-feedback-test@mixpeek-sdk.com>
8
8
  License-Expression: Apache-2.0
9
9
  License-File: LICENSE
10
10
  Classifier: Intended Audience :: Developers
@@ -20,7 +20,7 @@ or products provided by Mixpeek SDK please follow the respective company's secur
20
20
 
21
21
  ### Mixpeek SDK Terms and Policies
22
22
 
23
- Please contact dev-feedback@mixpeek-sdk.com for any questions or concerns regarding security of our services.
23
+ Please contact dev-feedback-test@mixpeek-sdk.com for any questions or concerns regarding security of our services.
24
24
 
25
25
  ---
26
26
 
@@ -1,11 +1,11 @@
1
1
  [project]
2
2
  name = "mixpeek"
3
- version = "0.10.0"
3
+ version = "0.11.0"
4
4
  description = "The official Python library for the mixpeek-sdk API"
5
5
  dynamic = ["readme"]
6
6
  license = "Apache-2.0"
7
7
  authors = [
8
- { name = "Mixpeek SDK", email = "dev-feedback@mixpeek-sdk.com" },
8
+ { name = "Mixpeek SDK", email = "dev-feedback-test@mixpeek-sdk.com" },
9
9
  ]
10
10
  dependencies = [
11
11
  "httpx>=0.23.0, <1",
@@ -1,4 +1,4 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  __title__ = "mixpeek"
4
- __version__ = "0.10.0" # x-release-please-version
4
+ __version__ = "0.11.0" # x-release-please-version
@@ -21,6 +21,9 @@ __all__ = ["TasksResource", "AsyncTasksResource"]
21
21
 
22
22
 
23
23
  class TasksResource(SyncAPIResource):
24
+ def wait_on_task(self, task: Task) -> None:
25
+ pass
26
+
24
27
  @cached_property
25
28
  def with_raw_response(self) -> TasksResourceWithRawResponse:
26
29
  """
@@ -1,3 +0,0 @@
1
- {
2
- ".": "0.10.0"
3
- }
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