foxclient 5.2.6__tar.gz → 5.2.7__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 (67) hide show
  1. {foxclient-5.2.6 → foxclient-5.2.7}/PKG-INFO +1 -1
  2. {foxclient-5.2.6 → foxclient-5.2.7}/README.md +2 -2
  3. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/__init__.py +2 -2
  4. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/api/device_api.py +1 -1
  5. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/api/paste_api.py +1 -1
  6. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/api/release_api.py +1 -1
  7. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/api/stats_api.py +1 -1
  8. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/api_client.py +2 -2
  9. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/configuration.py +3 -3
  10. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/exceptions.py +1 -1
  11. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/models/__init__.py +1 -1
  12. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/models/device_response.py +2 -4
  13. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/models/global_stats_aggregation_model.py +1 -1
  14. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/models/http_validation_error.py +1 -1
  15. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/models/list_response_release_response.py +1 -1
  16. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/models/list_response_short_device_response.py +1 -1
  17. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/models/list_response_short_release_response.py +1 -1
  18. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/models/list_response_str.py +1 -1
  19. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/models/maintainer_short_model.py +3 -5
  20. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/models/paste_input.py +1 -1
  21. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/models/paste_output.py +1 -1
  22. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/models/recovery_img_response.py +1 -1
  23. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/models/release_groups_response.py +1 -1
  24. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/models/release_response.py +2 -4
  25. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/models/release_type.py +1 -1
  26. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/models/releases_sort.py +1 -1
  27. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/models/response_get_releases.py +1 -1
  28. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/models/short_device_response.py +2 -4
  29. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/models/short_release_response.py +2 -4
  30. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/models/validation_error.py +1 -1
  31. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/models/validation_error_loc_inner.py +1 -1
  32. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/rest.py +2 -2
  33. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient.egg-info/PKG-INFO +1 -1
  34. {foxclient-5.2.6 → foxclient-5.2.7}/pyproject.toml +1 -1
  35. {foxclient-5.2.6 → foxclient-5.2.7}/setup.py +2 -2
  36. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_device_api.py +1 -1
  37. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_device_response.py +1 -5
  38. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_global_stats_aggregation_model.py +1 -1
  39. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_http_validation_error.py +1 -1
  40. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_list_response_release_response.py +1 -3
  41. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_list_response_short_device_response.py +1 -3
  42. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_list_response_short_release_response.py +1 -3
  43. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_list_response_str.py +1 -1
  44. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_maintainer_short_model.py +1 -3
  45. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_paste_api.py +1 -1
  46. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_paste_input.py +1 -1
  47. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_paste_output.py +1 -1
  48. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_recovery_img_response.py +1 -1
  49. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_release_api.py +1 -1
  50. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_release_groups_response.py +1 -3
  51. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_release_response.py +1 -3
  52. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_release_type.py +1 -1
  53. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_releases_sort.py +1 -1
  54. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_response_get_releases.py +1 -3
  55. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_short_device_response.py +1 -3
  56. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_short_release_response.py +1 -3
  57. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_stats_api.py +1 -1
  58. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_validation_error.py +1 -1
  59. {foxclient-5.2.6 → foxclient-5.2.7}/test/test_validation_error_loc_inner.py +1 -1
  60. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/api/__init__.py +0 -0
  61. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/api_response.py +0 -0
  62. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient/py.typed +0 -0
  63. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient.egg-info/SOURCES.txt +0 -0
  64. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient.egg-info/dependency_links.txt +0 -0
  65. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient.egg-info/requires.txt +0 -0
  66. {foxclient-5.2.6 → foxclient-5.2.7}/foxclient.egg-info/top_level.txt +0 -0
  67. {foxclient-5.2.6 → foxclient-5.2.7}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: foxclient
3
- Version: 5.2.6
3
+ Version: 5.2.7
4
4
  Summary: Fox API
5
5
  Home-page:
6
6
  Author: OpenAPI Generator community
@@ -12,8 +12,8 @@ The requests may be logged for analytics and development purposes.
12
12
 
13
13
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
14
14
 
15
- - API version: 5.2.6
16
- - Package version: 5.2.6
15
+ - API version: 5.2.7
16
+ - Package version: 5.2.7
17
17
  - Generator version: 7.13.0
18
18
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
19
19
 
@@ -7,7 +7,7 @@
7
7
 
8
8
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
9
9
 
10
- The version of the OpenAPI document: 5.2.6
10
+ The version of the OpenAPI document: 5.2.7
11
11
  Contact: admin@orangefox.tech
12
12
  Generated by OpenAPI Generator (https://openapi-generator.tech)
13
13
 
@@ -15,7 +15,7 @@
15
15
  """ # noqa: E501
16
16
 
17
17
 
18
- __version__ = "5.2.6"
18
+ __version__ = "5.2.7"
19
19
 
20
20
  # import apis into sdk package
21
21
  from foxclient.api.device_api import DeviceApi
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -91,7 +91,7 @@ class ApiClient:
91
91
  self.default_headers[header_name] = header_value
92
92
  self.cookie = cookie
93
93
  # Set default User-Agent.
94
- self.user_agent = 'OpenAPI-Generator/5.2.6/python'
94
+ self.user_agent = 'OpenAPI-Generator/5.2.7/python'
95
95
  self.client_side_validation = configuration.client_side_validation
96
96
 
97
97
  async def __aenter__(self):
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -515,8 +515,8 @@ class Configuration:
515
515
  return "Python SDK Debug Report:\n"\
516
516
  "OS: {env}\n"\
517
517
  "Python Version: {pyversion}\n"\
518
- "Version of the API: 5.2.6\n"\
519
- "SDK Package Version: 5.2.6".\
518
+ "Version of the API: 5.2.7\n"\
519
+ "SDK Package Version: 5.2.7".\
520
520
  format(env=sys.platform, pyversion=sys.version)
521
521
 
522
522
  def get_host_settings(self) -> List[HostSetting]:
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -6,7 +6,7 @@
6
6
 
7
7
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
8
8
 
9
- The version of the OpenAPI document: 5.2.6
9
+ The version of the OpenAPI document: 5.2.7
10
10
  Contact: admin@orangefox.tech
11
11
  Generated by OpenAPI Generator (https://openapi-generator.tech)
12
12
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -28,7 +28,6 @@ class DeviceResponse(BaseModel):
28
28
  """
29
29
  DeviceResponse
30
30
  """ # noqa: E501
31
- id: StrictStr = Field(alias="_id")
32
31
  codename: StrictStr = Field(description="Device codename, legacy")
33
32
  model_name: StrictStr = Field(description="Model name of device, does not include the OEM part, legacy")
34
33
  oem_name: StrictStr
@@ -41,7 +40,7 @@ class DeviceResponse(BaseModel):
41
40
  device_tree: Optional[StrictStr] = None
42
41
  full_name: StrictStr = Field(description="Full name of device / devices, legacy")
43
42
  url: StrictStr = Field(description="URL of the device on the official website")
44
- __properties: ClassVar[List[str]] = ["_id", "codename", "model_name", "oem_name", "id", "codenames", "model_names", "supported", "maintainer", "notes", "device_tree", "full_name", "url"]
43
+ __properties: ClassVar[List[str]] = ["codename", "model_name", "oem_name", "id", "codenames", "model_names", "supported", "maintainer", "notes", "device_tree", "full_name", "url"]
45
44
 
46
45
  model_config = ConfigDict(
47
46
  populate_by_name=True,
@@ -111,7 +110,6 @@ class DeviceResponse(BaseModel):
111
110
  return cls.model_validate(obj)
112
111
 
113
112
  _obj = cls.model_validate({
114
- "_id": obj.get("_id"),
115
113
  "codename": obj.get("codename"),
116
114
  "model_name": obj.get("model_name"),
117
115
  "oem_name": obj.get("oem_name"),
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -18,7 +18,7 @@ import pprint
18
18
  import re # noqa: F401
19
19
  import json
20
20
 
21
- from pydantic import BaseModel, ConfigDict, Field, StrictStr
21
+ from pydantic import BaseModel, ConfigDict, StrictStr
22
22
  from typing import Any, ClassVar, Dict, List
23
23
  from typing import Optional, Set
24
24
  from typing_extensions import Self
@@ -27,11 +27,10 @@ class MaintainerShortModel(BaseModel):
27
27
  """
28
28
  MaintainerShortModel
29
29
  """ # noqa: E501
30
- id: StrictStr = Field(alias="_id")
31
30
  id: StrictStr
32
31
  name: StrictStr
33
32
  username: StrictStr
34
- __properties: ClassVar[List[str]] = ["_id", "id", "name", "username"]
33
+ __properties: ClassVar[List[str]] = ["id", "name", "username"]
35
34
 
36
35
  model_config = ConfigDict(
37
36
  populate_by_name=True,
@@ -84,7 +83,6 @@ class MaintainerShortModel(BaseModel):
84
83
  return cls.model_validate(obj)
85
84
 
86
85
  _obj = cls.model_validate({
87
- "_id": obj.get("_id"),
88
86
  "id": obj.get("id"),
89
87
  "name": obj.get("name"),
90
88
  "username": obj.get("username")
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -29,7 +29,6 @@ class ReleaseResponse(BaseModel):
29
29
  """
30
30
  ReleaseResponse
31
31
  """ # noqa: E501
32
- id: StrictStr = Field(alias="_id")
33
32
  size: StrictInt
34
33
  id: StrictStr = Field(description="Release ID, that's how we indentify the release in the infrastructure")
35
34
  build_id: Optional[StrictStr] = None
@@ -48,7 +47,7 @@ class ReleaseResponse(BaseModel):
48
47
  notes: Optional[StrictStr]
49
48
  url: StrictStr = Field(description="URL of the release on the official website")
50
49
  mirrors: Dict[str, StrictStr] = Field(description="Mirrors list (deprecated)")
51
- __properties: ClassVar[List[str]] = ["_id", "size", "id", "build_id", "filename", "variant", "device_id", "date", "md5", "version", "type", "maintainer_id", "archived", "recovery_img", "changelog", "bugs", "notes", "url", "mirrors"]
50
+ __properties: ClassVar[List[str]] = ["size", "id", "build_id", "filename", "variant", "device_id", "date", "md5", "version", "type", "maintainer_id", "archived", "recovery_img", "changelog", "bugs", "notes", "url", "mirrors"]
52
51
 
53
52
  model_config = ConfigDict(
54
53
  populate_by_name=True,
@@ -128,7 +127,6 @@ class ReleaseResponse(BaseModel):
128
127
  return cls.model_validate(obj)
129
128
 
130
129
  _obj = cls.model_validate({
131
- "_id": obj.get("_id"),
132
130
  "size": obj.get("size"),
133
131
  "id": obj.get("id"),
134
132
  "build_id": obj.get("build_id"),
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -27,7 +27,6 @@ class ShortDeviceResponse(BaseModel):
27
27
  """
28
28
  ShortDeviceResponse
29
29
  """ # noqa: E501
30
- id: StrictStr = Field(alias="_id")
31
30
  codename: StrictStr = Field(description="Device codename, legacy")
32
31
  model_name: StrictStr = Field(description="Model name of device, does not include the OEM part, legacy")
33
32
  oem_name: StrictStr
@@ -37,7 +36,7 @@ class ShortDeviceResponse(BaseModel):
37
36
  supported: StrictBool
38
37
  full_name: StrictStr = Field(description="Full name of device / devices, legacy")
39
38
  url: StrictStr = Field(description="URL of the device on the official website")
40
- __properties: ClassVar[List[str]] = ["_id", "codename", "model_name", "oem_name", "id", "codenames", "model_names", "supported", "full_name", "url"]
39
+ __properties: ClassVar[List[str]] = ["codename", "model_name", "oem_name", "id", "codenames", "model_names", "supported", "full_name", "url"]
41
40
 
42
41
  model_config = ConfigDict(
43
42
  populate_by_name=True,
@@ -94,7 +93,6 @@ class ShortDeviceResponse(BaseModel):
94
93
  return cls.model_validate(obj)
95
94
 
96
95
  _obj = cls.model_validate({
97
- "_id": obj.get("_id"),
98
96
  "codename": obj.get("codename"),
99
97
  "model_name": obj.get("model_name"),
100
98
  "oem_name": obj.get("oem_name"),
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -28,7 +28,6 @@ class ShortReleaseResponse(BaseModel):
28
28
  """
29
29
  ShortReleaseResponse
30
30
  """ # noqa: E501
31
- id: StrictStr = Field(alias="_id")
32
31
  size: StrictInt
33
32
  id: StrictStr = Field(description="Release ID, that's how we indentify the release in the infrastructure")
34
33
  build_id: Optional[StrictStr] = None
@@ -41,7 +40,7 @@ class ShortReleaseResponse(BaseModel):
41
40
  type: ReleaseType
42
41
  maintainer_id: Optional[StrictStr] = None
43
42
  archived: StrictBool
44
- __properties: ClassVar[List[str]] = ["_id", "size", "id", "build_id", "filename", "variant", "device_id", "date", "md5", "version", "type", "maintainer_id", "archived"]
43
+ __properties: ClassVar[List[str]] = ["size", "id", "build_id", "filename", "variant", "device_id", "date", "md5", "version", "type", "maintainer_id", "archived"]
45
44
 
46
45
  model_config = ConfigDict(
47
46
  populate_by_name=True,
@@ -104,7 +103,6 @@ class ShortReleaseResponse(BaseModel):
104
103
  return cls.model_validate(obj)
105
104
 
106
105
  _obj = cls.model_validate({
107
- "_id": obj.get("_id"),
108
106
  "size": obj.get("size"),
109
107
  "id": obj.get("id"),
110
108
  "build_id": obj.get("build_id"),
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -204,7 +204,7 @@ class RESTClientObject:
204
204
  attempts=self.retries,
205
205
  factor=2.0,
206
206
  start_timeout=0.1,
207
- max_timeout=5.2.6
207
+ max_timeout=5.2.7
208
208
  )
209
209
  )
210
210
  pool_manager = self.retry_client
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: foxclient
3
- Version: 5.2.6
3
+ Version: 5.2.7
4
4
  Summary: Fox API
5
5
  Home-page:
6
6
  Author: OpenAPI Generator community
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "foxclient"
3
- version = "5.2.6"
3
+ version = "5.2.7"
4
4
  description = "Fox API"
5
5
  authors = ["OpenAPI Generator Community <admin@orangefox.tech>"]
6
6
  license = "NoLicense"
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -22,7 +22,7 @@ from setuptools import setup, find_packages # noqa: H301
22
22
  # prerequisite: setuptools
23
23
  # http://pypi.python.org/pypi/setuptools
24
24
  NAME = "foxclient"
25
- VERSION = "5.2.6"
25
+ VERSION = "5.2.7"
26
26
  PYTHON_REQUIRES = ">= 3.9"
27
27
  REQUIRES = [
28
28
  "urllib3 >= 2.1.0, < 3.0.0",
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -36,7 +36,6 @@ class TestDeviceResponse(unittest.TestCase):
36
36
  model = DeviceResponse()
37
37
  if include_optional:
38
38
  return DeviceResponse(
39
- id = '',
40
39
  codename = '',
41
40
  model_name = '',
42
41
  oem_name = '',
@@ -49,7 +48,6 @@ class TestDeviceResponse(unittest.TestCase):
49
48
  ],
50
49
  supported = True,
51
50
  maintainer = foxclient.models.maintainer_short_model.MaintainerShortModel(
52
- _id = '',
53
51
  id = '',
54
52
  name = '',
55
53
  username = '', ),
@@ -60,7 +58,6 @@ class TestDeviceResponse(unittest.TestCase):
60
58
  )
61
59
  else:
62
60
  return DeviceResponse(
63
- id = '',
64
61
  codename = '',
65
62
  model_name = '',
66
63
  oem_name = '',
@@ -73,7 +70,6 @@ class TestDeviceResponse(unittest.TestCase):
73
70
  ],
74
71
  supported = True,
75
72
  maintainer = foxclient.models.maintainer_short_model.MaintainerShortModel(
76
- _id = '',
77
73
  id = '',
78
74
  name = '',
79
75
  username = '', ),
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -38,7 +38,6 @@ class TestListResponseReleaseResponse(unittest.TestCase):
38
38
  return ListResponseReleaseResponse(
39
39
  data = [
40
40
  foxclient.models.release_response.ReleaseResponse(
41
- _id = '',
42
41
  size = 56,
43
42
  id = '',
44
43
  build_id = '',
@@ -72,7 +71,6 @@ class TestListResponseReleaseResponse(unittest.TestCase):
72
71
  return ListResponseReleaseResponse(
73
72
  data = [
74
73
  foxclient.models.release_response.ReleaseResponse(
75
- _id = '',
76
74
  size = 56,
77
75
  id = '',
78
76
  build_id = '',
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -38,7 +38,6 @@ class TestListResponseShortDeviceResponse(unittest.TestCase):
38
38
  return ListResponseShortDeviceResponse(
39
39
  data = [
40
40
  foxclient.models.short_device_response.ShortDeviceResponse(
41
- _id = '',
42
41
  codename = '',
43
42
  model_name = '',
44
43
  oem_name = '',
@@ -59,7 +58,6 @@ class TestListResponseShortDeviceResponse(unittest.TestCase):
59
58
  return ListResponseShortDeviceResponse(
60
59
  data = [
61
60
  foxclient.models.short_device_response.ShortDeviceResponse(
62
- _id = '',
63
61
  codename = '',
64
62
  model_name = '',
65
63
  oem_name = '',
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -38,7 +38,6 @@ class TestListResponseShortReleaseResponse(unittest.TestCase):
38
38
  return ListResponseShortReleaseResponse(
39
39
  data = [
40
40
  foxclient.models.short_release_response.ShortReleaseResponse(
41
- _id = '',
42
41
  size = 56,
43
42
  id = '',
44
43
  build_id = '',
@@ -58,7 +57,6 @@ class TestListResponseShortReleaseResponse(unittest.TestCase):
58
57
  return ListResponseShortReleaseResponse(
59
58
  data = [
60
59
  foxclient.models.short_release_response.ShortReleaseResponse(
61
- _id = '',
62
60
  size = 56,
63
61
  id = '',
64
62
  build_id = '',
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -36,14 +36,12 @@ class TestMaintainerShortModel(unittest.TestCase):
36
36
  model = MaintainerShortModel()
37
37
  if include_optional:
38
38
  return MaintainerShortModel(
39
- id = '',
40
39
  id = '',
41
40
  name = '',
42
41
  username = ''
43
42
  )
44
43
  else:
45
44
  return MaintainerShortModel(
46
- id = '',
47
45
  id = '',
48
46
  name = '',
49
47
  username = '',
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -39,7 +39,6 @@ class TestReleaseGroupsResponse(unittest.TestCase):
39
39
  data = {
40
40
  'key' : [
41
41
  foxclient.models.release_response.ReleaseResponse(
42
- _id = '',
43
42
  size = 56,
44
43
  id = '',
45
44
  build_id = '',
@@ -74,7 +73,6 @@ class TestReleaseGroupsResponse(unittest.TestCase):
74
73
  data = {
75
74
  'key' : [
76
75
  foxclient.models.release_response.ReleaseResponse(
77
- _id = '',
78
76
  size = 56,
79
77
  id = '',
80
78
  build_id = '',
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -36,7 +36,6 @@ class TestReleaseResponse(unittest.TestCase):
36
36
  model = ReleaseResponse()
37
37
  if include_optional:
38
38
  return ReleaseResponse(
39
- id = '',
40
39
  size = 56,
41
40
  id = '',
42
41
  build_id = '',
@@ -66,7 +65,6 @@ class TestReleaseResponse(unittest.TestCase):
66
65
  )
67
66
  else:
68
67
  return ReleaseResponse(
69
- id = '',
70
68
  size = 56,
71
69
  id = '',
72
70
  filename = '',
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -39,7 +39,6 @@ class TestResponseGetReleases(unittest.TestCase):
39
39
  data = {
40
40
  'key' : [
41
41
  foxclient.models.release_response.ReleaseResponse(
42
- _id = '',
43
42
  size = 56,
44
43
  id = '',
45
44
  build_id = '',
@@ -75,7 +74,6 @@ class TestResponseGetReleases(unittest.TestCase):
75
74
  data = {
76
75
  'key' : [
77
76
  foxclient.models.release_response.ReleaseResponse(
78
- _id = '',
79
77
  size = 56,
80
78
  id = '',
81
79
  build_id = '',
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -36,7 +36,6 @@ class TestShortDeviceResponse(unittest.TestCase):
36
36
  model = ShortDeviceResponse()
37
37
  if include_optional:
38
38
  return ShortDeviceResponse(
39
- id = '',
40
39
  codename = '',
41
40
  model_name = '',
42
41
  oem_name = '',
@@ -53,7 +52,6 @@ class TestShortDeviceResponse(unittest.TestCase):
53
52
  )
54
53
  else:
55
54
  return ShortDeviceResponse(
56
- id = '',
57
55
  codename = '',
58
56
  model_name = '',
59
57
  oem_name = '',
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -36,7 +36,6 @@ class TestShortReleaseResponse(unittest.TestCase):
36
36
  model = ShortReleaseResponse()
37
37
  if include_optional:
38
38
  return ShortReleaseResponse(
39
- id = '',
40
39
  size = 56,
41
40
  id = '',
42
41
  build_id = '',
@@ -52,7 +51,6 @@ class TestShortReleaseResponse(unittest.TestCase):
52
51
  )
53
52
  else:
54
53
  return ShortReleaseResponse(
55
- id = '',
56
54
  size = 56,
57
55
  id = '',
58
56
  filename = '',
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Warning: Please add a custom user agent header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
7
7
 
8
- The version of the OpenAPI document: 5.2.6
8
+ The version of the OpenAPI document: 5.2.7
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
File without changes
File without changes