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.
- mixpeek-0.11.0/.release-please-manifest.json +3 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/CHANGELOG.md +8 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/PKG-INFO +2 -2
- {mixpeek-0.10.0 → mixpeek-0.11.0}/SECURITY.md +1 -1
- {mixpeek-0.10.0 → mixpeek-0.11.0}/pyproject.toml +2 -2
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_version.py +1 -1
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/tasks.py +3 -0
- mixpeek-0.10.0/.release-please-manifest.json +0 -3
- {mixpeek-0.10.0 → mixpeek-0.11.0}/.gitignore +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/CONTRIBUTING.md +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/LICENSE +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/README.md +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/api.md +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/bin/check-release-environment +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/bin/publish-pypi +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/examples/.keep +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/examples/example.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/mypy.ini +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/noxfile.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/release-please-config.json +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/requirements-dev.lock +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/requirements.lock +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/__init__.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_base_client.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_client.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_compat.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_constants.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_exceptions.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_files.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_models.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_qs.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_resource.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_response.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_streaming.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_types.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_utils/__init__.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_utils/_logs.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_utils/_proxy.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_utils/_reflection.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_utils/_streams.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_utils/_sync.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_utils/_transform.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_utils/_typing.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/_utils/_utils.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/lib/.keep +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/py.typed +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/__init__.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/accounts/__init__.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/accounts/accounts.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/accounts/private.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/agent/__init__.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/agent/agent.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/agent/task.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/collections/__init__.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/collections/collections.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/collections/files.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/describe.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/embed.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/indexes.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/read.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/recognize.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/search.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/resources/transcribe.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/__init__.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/accounts/__init__.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/accounts/private_update_params.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/accounts/user.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/agent/__init__.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/agent_create_params.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/agentresponse.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/collection_search_params.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/collections/__init__.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/collections/file_create_params.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/collections/file_full_params.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/collections/file_update_params.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/collections/fileresponse.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/collections/groupedfiledata.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/describe_upload_params.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/describe_url_params.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/embed_create_params.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/embeddingresponse.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/index_face_params.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/index_upload_params.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/index_url_params.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/search_text_params.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/search_upload_params.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/search_url_params.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/taskresponse.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek/types/transcribe_url_params.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/src/mixpeek_sdk/lib/.keep +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/__init__.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/__init__.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/accounts/__init__.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/accounts/test_private.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/agent/__init__.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/agent/test_task.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/collections/__init__.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/collections/test_files.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/test_agent.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/test_collections.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/test_describe.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/test_embed.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/test_indexes.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/test_read.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/test_recognize.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/test_search.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/test_tasks.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/api_resources/test_transcribe.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/conftest.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/sample_file.txt +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_client.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_deepcopy.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_extract_files.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_files.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_models.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_qs.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_required_args.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_response.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_streaming.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_transform.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_utils/test_proxy.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/test_utils/test_typing.py +0 -0
- {mixpeek-0.10.0 → mixpeek-0.11.0}/tests/utils.py +0 -0
@@ -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.
|
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.
|
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",
|
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
|
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
|
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
|
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
|
File without changes
|
File without changes
|
File without changes
|