unique_sdk 0.9.15__tar.gz → 0.9.16__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.

Potentially problematic release.


This version of unique_sdk might be problematic. Click here for more details.

Files changed (35) hide show
  1. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/CHANGELOG.md +3 -0
  2. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/PKG-INFO +4 -1
  3. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/pyproject.toml +1 -1
  4. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/_api_resource.py +1 -0
  5. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/api_resources/_search.py +4 -4
  6. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/LICENSE +0 -0
  7. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/README.md +0 -0
  8. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/__init__.py +0 -0
  9. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/_api_requestor.py +0 -0
  10. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/_api_version.py +0 -0
  11. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/_error.py +0 -0
  12. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/_http_client.py +0 -0
  13. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/_list_object.py +0 -0
  14. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/_object_classes.py +0 -0
  15. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/_request_options.py +0 -0
  16. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/_unique_object.py +0 -0
  17. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/_unique_ql.py +0 -0
  18. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/_unique_response.py +0 -0
  19. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/_util.py +0 -0
  20. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/_version.py +0 -0
  21. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/_webhook.py +0 -0
  22. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/api_resources/__init__.py +0 -0
  23. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/api_resources/_acronyms.py +0 -0
  24. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/api_resources/_chat_completion.py +0 -0
  25. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/api_resources/_content.py +0 -0
  26. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/api_resources/_embedding.py +0 -0
  27. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/api_resources/_event.py +0 -0
  28. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/api_resources/_integrated.py +0 -0
  29. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/api_resources/_message.py +0 -0
  30. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/api_resources/_search_string.py +0 -0
  31. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/api_resources/_short_term_memory.py +0 -0
  32. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/utils/chat_history.py +0 -0
  33. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/utils/file_io.py +0 -0
  34. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/utils/sources.py +0 -0
  35. {unique_sdk-0.9.15 → unique_sdk-0.9.16}/unique_sdk/utils/token.py +0 -0
@@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.9.16] - 2024-12-19
9
+ - Corrected return type of `Search.create` and `Search.create_async` to `List[Search]`
10
+ - Retry on `Connection aborted` error
8
11
 
9
12
  ## [0.9.15] - 2024-12-06
10
13
  - Add `Internal server error` and `You can retry your request` to the retry logic
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: unique_sdk
3
- Version: 0.9.15
3
+ Version: 0.9.16
4
4
  Summary:
5
5
  License: MIT
6
6
  Author: Martin Fadler
@@ -899,6 +899,9 @@ All notable changes to this project will be documented in this file.
899
899
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
900
900
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
901
901
 
902
+ ## [0.9.16] - 2024-12-19
903
+ - Corrected return type of `Search.create` and `Search.create_async` to `List[Search]`
904
+ - Retry on `Connection aborted` error
902
905
 
903
906
  ## [0.9.15] - 2024-12-06
904
907
  - Add `Internal server error` and `You can retry your request` to the retry logic
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "unique_sdk"
3
- version = "0.9.15"
3
+ version = "0.9.16"
4
4
  description = ""
5
5
  authors = [
6
6
  "Martin Fadler <martin.fadler@unique.ch>",
@@ -25,6 +25,7 @@ retry_dict = {
25
25
  "Invalid response body from API",
26
26
  "You can retry your request",
27
27
  "Internal server error",
28
+ "Connection aborted",
28
29
  ],
29
30
  "max_retries": 3,
30
31
  "backoff_factor": 2,
@@ -36,9 +36,9 @@ class Search(APIResource["Search"]):
36
36
  @classmethod
37
37
  def create(
38
38
  cls, user_id: str, company_id: str, **params: Unpack["Search.CreateParams"]
39
- ) -> "Search":
39
+ ) -> list["Search"]:
40
40
  return cast(
41
- "Search",
41
+ list["Search"],
42
42
  cls._static_request(
43
43
  "post",
44
44
  "/search/search",
@@ -51,9 +51,9 @@ class Search(APIResource["Search"]):
51
51
  @classmethod
52
52
  async def create_async(
53
53
  cls, user_id: str, company_id: str, **params: Unpack["Search.CreateParams"]
54
- ) -> "Search":
54
+ ) -> list["Search"]:
55
55
  return cast(
56
- "Search",
56
+ list["Search"],
57
57
  await cls._static_request_async(
58
58
  "post",
59
59
  "/search/search",
File without changes
File without changes