foxclient 5.2.2__tar.gz → 5.2.4__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 (61) hide show
  1. {foxclient-5.2.2 → foxclient-5.2.4}/PKG-INFO +1 -1
  2. {foxclient-5.2.2 → foxclient-5.2.4}/README.md +4 -4
  3. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/__init__.py +2 -2
  4. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/api/device_api.py +7 -7
  5. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/api/release_api.py +1 -1
  6. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/api/stats_api.py +1 -1
  7. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/api_client.py +2 -2
  8. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/configuration.py +3 -3
  9. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/exceptions.py +1 -1
  10. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/models/__init__.py +1 -1
  11. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/models/device_response.py +1 -1
  12. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/models/global_stats_aggregation_model.py +1 -1
  13. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/models/http_validation_error.py +1 -1
  14. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/models/list_response_release_response.py +1 -1
  15. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/models/list_response_short_device_response.py +1 -1
  16. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/models/list_response_short_release_response.py +1 -1
  17. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/models/list_response_str.py +1 -1
  18. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/models/maintainer_short_model.py +1 -1
  19. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/models/recovery_img_response.py +1 -1
  20. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/models/release_groups_response.py +1 -1
  21. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/models/release_response.py +4 -5
  22. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/models/release_type.py +1 -1
  23. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/models/releases_sort.py +1 -1
  24. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/models/response_get_releases.py +1 -1
  25. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/models/short_device_response.py +1 -1
  26. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/models/short_release_response.py +4 -5
  27. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/models/validation_error.py +1 -1
  28. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/models/validation_error_loc_inner.py +1 -1
  29. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/rest.py +2 -2
  30. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient.egg-info/PKG-INFO +1 -1
  31. {foxclient-5.2.2 → foxclient-5.2.4}/pyproject.toml +1 -1
  32. {foxclient-5.2.2 → foxclient-5.2.4}/setup.py +2 -2
  33. {foxclient-5.2.2 → foxclient-5.2.4}/test/test_device_api.py +1 -1
  34. {foxclient-5.2.2 → foxclient-5.2.4}/test/test_device_response.py +9 -9
  35. {foxclient-5.2.2 → foxclient-5.2.4}/test/test_global_stats_aggregation_model.py +1 -1
  36. {foxclient-5.2.2 → foxclient-5.2.4}/test/test_http_validation_error.py +1 -1
  37. {foxclient-5.2.2 → foxclient-5.2.4}/test/test_list_response_release_response.py +11 -11
  38. {foxclient-5.2.2 → foxclient-5.2.4}/test/test_list_response_short_device_response.py +5 -5
  39. {foxclient-5.2.2 → foxclient-5.2.4}/test/test_list_response_short_release_response.py +11 -11
  40. {foxclient-5.2.2 → foxclient-5.2.4}/test/test_list_response_str.py +1 -1
  41. {foxclient-5.2.2 → foxclient-5.2.4}/test/test_maintainer_short_model.py +5 -5
  42. {foxclient-5.2.2 → foxclient-5.2.4}/test/test_recovery_img_response.py +1 -1
  43. {foxclient-5.2.2 → foxclient-5.2.4}/test/test_release_api.py +1 -1
  44. {foxclient-5.2.2 → foxclient-5.2.4}/test/test_release_groups_response.py +11 -11
  45. {foxclient-5.2.2 → foxclient-5.2.4}/test/test_release_response.py +10 -10
  46. {foxclient-5.2.2 → foxclient-5.2.4}/test/test_release_type.py +1 -1
  47. {foxclient-5.2.2 → foxclient-5.2.4}/test/test_releases_sort.py +1 -1
  48. {foxclient-5.2.2 → foxclient-5.2.4}/test/test_response_get_releases.py +11 -11
  49. {foxclient-5.2.2 → foxclient-5.2.4}/test/test_short_device_response.py +5 -5
  50. {foxclient-5.2.2 → foxclient-5.2.4}/test/test_short_release_response.py +10 -10
  51. {foxclient-5.2.2 → foxclient-5.2.4}/test/test_stats_api.py +1 -1
  52. {foxclient-5.2.2 → foxclient-5.2.4}/test/test_validation_error.py +1 -1
  53. {foxclient-5.2.2 → foxclient-5.2.4}/test/test_validation_error_loc_inner.py +1 -1
  54. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/api/__init__.py +0 -0
  55. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/api_response.py +0 -0
  56. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient/py.typed +0 -0
  57. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient.egg-info/SOURCES.txt +0 -0
  58. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient.egg-info/dependency_links.txt +0 -0
  59. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient.egg-info/requires.txt +0 -0
  60. {foxclient-5.2.2 → foxclient-5.2.4}/foxclient.egg-info/top_level.txt +0 -0
  61. {foxclient-5.2.2 → foxclient-5.2.4}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: foxclient
3
- Version: 5.2.2
3
+ Version: 5.2.4
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.2
16
- - Package version: 5.2.2
15
+ - API version: 5.2.4
16
+ - Package version: 5.2.4
17
17
  - Generator version: 7.13.0
18
18
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
19
19
 
@@ -76,8 +76,8 @@ configuration = foxclient.Configuration(
76
76
  async with foxclient.ApiClient(configuration) as api_client:
77
77
  # Create an instance of the API class
78
78
  api_instance = foxclient.DeviceApi(api_client)
79
- device_id = '5f7a5c5b5c5b5c5b5c5b5c5b' # str | (optional)
80
- id = '5f7a5c5b5c5b5c5b5c5b5c5b' # str | Filter by Device ID (deprecated) (optional)
79
+ device_id = 'device_id_example' # str | (optional)
80
+ id = 'id_example' # str | Filter by Device ID (deprecated) (optional)
81
81
  codename = 'codename_example' # str | Not recommended to use when you can (optional)
82
82
 
83
83
  try:
@@ -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.2
10
+ The version of the OpenAPI document: 5.2.4
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.2"
18
+ __version__ = "5.2.4"
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.2
8
+ The version of the OpenAPI document: 5.2.4
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -621,7 +621,7 @@ class DeviceApi:
621
621
  self,
622
622
  id: Annotated[Optional[List[StrictStr]], Field(description="Filter by Device IDs")] = None,
623
623
  id2: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by Device IDs (deprecated)")] = None,
624
- oem_name: Annotated[Optional[List[StrictStr]], Field(description="Filter by OEM names")] = None,
624
+ oem_name: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by OEM names")] = None,
625
625
  codename: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by device codenames")] = None,
626
626
  model_name: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by model names")] = None,
627
627
  supported: Annotated[Optional[StrictBool], Field(description="Supported status")] = None,
@@ -652,7 +652,7 @@ class DeviceApi:
652
652
  :param id2: Filter by Device IDs (deprecated)
653
653
  :type id2: List[Optional[str]]
654
654
  :param oem_name: Filter by OEM names
655
- :type oem_name: List[str]
655
+ :type oem_name: List[Optional[str]]
656
656
  :param codename: Filter by device codenames
657
657
  :type codename: List[Optional[str]]
658
658
  :param model_name: Filter by model names
@@ -730,7 +730,7 @@ class DeviceApi:
730
730
  self,
731
731
  id: Annotated[Optional[List[StrictStr]], Field(description="Filter by Device IDs")] = None,
732
732
  id2: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by Device IDs (deprecated)")] = None,
733
- oem_name: Annotated[Optional[List[StrictStr]], Field(description="Filter by OEM names")] = None,
733
+ oem_name: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by OEM names")] = None,
734
734
  codename: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by device codenames")] = None,
735
735
  model_name: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by model names")] = None,
736
736
  supported: Annotated[Optional[StrictBool], Field(description="Supported status")] = None,
@@ -761,7 +761,7 @@ class DeviceApi:
761
761
  :param id2: Filter by Device IDs (deprecated)
762
762
  :type id2: List[Optional[str]]
763
763
  :param oem_name: Filter by OEM names
764
- :type oem_name: List[str]
764
+ :type oem_name: List[Optional[str]]
765
765
  :param codename: Filter by device codenames
766
766
  :type codename: List[Optional[str]]
767
767
  :param model_name: Filter by model names
@@ -839,7 +839,7 @@ class DeviceApi:
839
839
  self,
840
840
  id: Annotated[Optional[List[StrictStr]], Field(description="Filter by Device IDs")] = None,
841
841
  id2: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by Device IDs (deprecated)")] = None,
842
- oem_name: Annotated[Optional[List[StrictStr]], Field(description="Filter by OEM names")] = None,
842
+ oem_name: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by OEM names")] = None,
843
843
  codename: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by device codenames")] = None,
844
844
  model_name: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by model names")] = None,
845
845
  supported: Annotated[Optional[StrictBool], Field(description="Supported status")] = None,
@@ -870,7 +870,7 @@ class DeviceApi:
870
870
  :param id2: Filter by Device IDs (deprecated)
871
871
  :type id2: List[Optional[str]]
872
872
  :param oem_name: Filter by OEM names
873
- :type oem_name: List[str]
873
+ :type oem_name: List[Optional[str]]
874
874
  :param codename: Filter by device codenames
875
875
  :type codename: List[Optional[str]]
876
876
  :param model_name: Filter by model names
@@ -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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2/python'
94
+ self.user_agent = 'OpenAPI-Generator/5.2.4/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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2\n"\
519
- "SDK Package Version: 5.2.2".\
518
+ "Version of the API: 5.2.4\n"\
519
+ "SDK Package Version: 5.2.4".\
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
9
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -18,9 +18,8 @@ import pprint
18
18
  import re # noqa: F401
19
19
  import json
20
20
 
21
- from datetime import datetime
22
- from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictInt, StrictStr
23
- from typing import Any, ClassVar, Dict, List, Optional
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictFloat, StrictInt, StrictStr
22
+ from typing import Any, ClassVar, Dict, List, Optional, Union
24
23
  from foxclient.models.recovery_img_response import RecoveryImgResponse
25
24
  from foxclient.models.release_type import ReleaseType
26
25
  from typing import Optional, Set
@@ -37,7 +36,7 @@ class ReleaseResponse(BaseModel):
37
36
  filename: StrictStr
38
37
  variant: StrictStr
39
38
  device_id: StrictStr
40
- var_date: datetime = Field(alias="date")
39
+ var_date: Union[StrictFloat, StrictInt] = Field(alias="date")
41
40
  md5: StrictStr
42
41
  version: StrictStr
43
42
  type: ReleaseType
@@ -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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -18,9 +18,8 @@ import pprint
18
18
  import re # noqa: F401
19
19
  import json
20
20
 
21
- from datetime import datetime
22
- from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictInt, StrictStr
23
- from typing import Any, ClassVar, Dict, List, Optional
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictFloat, StrictInt, StrictStr
22
+ from typing import Any, ClassVar, Dict, List, Optional, Union
24
23
  from foxclient.models.release_type import ReleaseType
25
24
  from typing import Optional, Set
26
25
  from typing_extensions import Self
@@ -36,7 +35,7 @@ class ShortReleaseResponse(BaseModel):
36
35
  filename: StrictStr
37
36
  variant: StrictStr
38
37
  device_id: StrictStr
39
- var_date: datetime = Field(alias="date")
38
+ var_date: Union[StrictFloat, StrictInt] = Field(alias="date")
40
39
  md5: StrictStr
41
40
  version: StrictStr
42
41
  type: ReleaseType
@@ -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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
207
+ max_timeout=5.2.4
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.2
3
+ Version: 5.2.4
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.2"
3
+ version = "5.2.4"
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2"
25
+ VERSION = "5.2.4"
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -36,11 +36,11 @@ class TestDeviceResponse(unittest.TestCase):
36
36
  model = DeviceResponse()
37
37
  if include_optional:
38
38
  return DeviceResponse(
39
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
39
+ id = '',
40
40
  codename = '',
41
41
  model_name = '',
42
42
  oem_name = '',
43
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
43
+ id = '',
44
44
  codenames = [
45
45
  ''
46
46
  ],
@@ -49,8 +49,8 @@ class TestDeviceResponse(unittest.TestCase):
49
49
  ],
50
50
  supported = True,
51
51
  maintainer = foxclient.models.maintainer_short_model.MaintainerShortModel(
52
- _id = '5f7a5c5b5c5b5c5b5c5b5c5b',
53
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
52
+ _id = '',
53
+ id = '',
54
54
  name = '',
55
55
  username = '', ),
56
56
  notes = '',
@@ -60,11 +60,11 @@ class TestDeviceResponse(unittest.TestCase):
60
60
  )
61
61
  else:
62
62
  return DeviceResponse(
63
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
63
+ id = '',
64
64
  codename = '',
65
65
  model_name = '',
66
66
  oem_name = '',
67
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
67
+ id = '',
68
68
  codenames = [
69
69
  ''
70
70
  ],
@@ -73,8 +73,8 @@ class TestDeviceResponse(unittest.TestCase):
73
73
  ],
74
74
  supported = True,
75
75
  maintainer = foxclient.models.maintainer_short_model.MaintainerShortModel(
76
- _id = '5f7a5c5b5c5b5c5b5c5b5c5b',
77
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
76
+ _id = '',
77
+ id = '',
78
78
  name = '',
79
79
  username = '', ),
80
80
  full_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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -38,18 +38,18 @@ class TestListResponseReleaseResponse(unittest.TestCase):
38
38
  return ListResponseReleaseResponse(
39
39
  data = [
40
40
  foxclient.models.release_response.ReleaseResponse(
41
- _id = '5f7a5c5b5c5b5c5b5c5b5c5b',
41
+ _id = '',
42
42
  size = 56,
43
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
43
+ id = '',
44
44
  build_id = '',
45
45
  filename = '',
46
46
  variant = '',
47
- device_id = '5f7a5c5b5c5b5c5b5c5b5c5b',
48
- date = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
47
+ device_id = '',
48
+ date = 1.337,
49
49
  md5 = '',
50
50
  version = '',
51
51
  type = 'stable',
52
- maintainer_id = '5f7a5c5b5c5b5c5b5c5b5c5b',
52
+ maintainer_id = '',
53
53
  archived = True,
54
54
  recovery_img = foxclient.models.recovery_img_response.RecoveryImgResponse(
55
55
  size = 56,
@@ -72,18 +72,18 @@ class TestListResponseReleaseResponse(unittest.TestCase):
72
72
  return ListResponseReleaseResponse(
73
73
  data = [
74
74
  foxclient.models.release_response.ReleaseResponse(
75
- _id = '5f7a5c5b5c5b5c5b5c5b5c5b',
75
+ _id = '',
76
76
  size = 56,
77
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
77
+ id = '',
78
78
  build_id = '',
79
79
  filename = '',
80
80
  variant = '',
81
- device_id = '5f7a5c5b5c5b5c5b5c5b5c5b',
82
- date = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
81
+ device_id = '',
82
+ date = 1.337,
83
83
  md5 = '',
84
84
  version = '',
85
85
  type = 'stable',
86
- maintainer_id = '5f7a5c5b5c5b5c5b5c5b5c5b',
86
+ maintainer_id = '',
87
87
  archived = True,
88
88
  recovery_img = foxclient.models.recovery_img_response.RecoveryImgResponse(
89
89
  size = 56,
@@ -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.2
8
+ The version of the OpenAPI document: 5.2.4
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -38,11 +38,11 @@ class TestListResponseShortDeviceResponse(unittest.TestCase):
38
38
  return ListResponseShortDeviceResponse(
39
39
  data = [
40
40
  foxclient.models.short_device_response.ShortDeviceResponse(
41
- _id = '5f7a5c5b5c5b5c5b5c5b5c5b',
41
+ _id = '',
42
42
  codename = '',
43
43
  model_name = '',
44
44
  oem_name = '',
45
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
45
+ id = '',
46
46
  codenames = [
47
47
  ''
48
48
  ],
@@ -59,11 +59,11 @@ class TestListResponseShortDeviceResponse(unittest.TestCase):
59
59
  return ListResponseShortDeviceResponse(
60
60
  data = [
61
61
  foxclient.models.short_device_response.ShortDeviceResponse(
62
- _id = '5f7a5c5b5c5b5c5b5c5b5c5b',
62
+ _id = '',
63
63
  codename = '',
64
64
  model_name = '',
65
65
  oem_name = '',
66
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
66
+ id = '',
67
67
  codenames = [
68
68
  ''
69
69
  ],
@@ -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.2
8
+ The version of the OpenAPI document: 5.2.4
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -38,18 +38,18 @@ class TestListResponseShortReleaseResponse(unittest.TestCase):
38
38
  return ListResponseShortReleaseResponse(
39
39
  data = [
40
40
  foxclient.models.short_release_response.ShortReleaseResponse(
41
- _id = '5f7a5c5b5c5b5c5b5c5b5c5b',
41
+ _id = '',
42
42
  size = 56,
43
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
43
+ id = '',
44
44
  build_id = '',
45
45
  filename = '',
46
46
  variant = '',
47
- device_id = '5f7a5c5b5c5b5c5b5c5b5c5b',
48
- date = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
47
+ device_id = '',
48
+ date = 1.337,
49
49
  md5 = '',
50
50
  version = '',
51
51
  type = 'stable',
52
- maintainer_id = '5f7a5c5b5c5b5c5b5c5b5c5b',
52
+ maintainer_id = '',
53
53
  archived = True, )
54
54
  ],
55
55
  count = 56
@@ -58,18 +58,18 @@ class TestListResponseShortReleaseResponse(unittest.TestCase):
58
58
  return ListResponseShortReleaseResponse(
59
59
  data = [
60
60
  foxclient.models.short_release_response.ShortReleaseResponse(
61
- _id = '5f7a5c5b5c5b5c5b5c5b5c5b',
61
+ _id = '',
62
62
  size = 56,
63
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
63
+ id = '',
64
64
  build_id = '',
65
65
  filename = '',
66
66
  variant = '',
67
- device_id = '5f7a5c5b5c5b5c5b5c5b5c5b',
68
- date = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
67
+ device_id = '',
68
+ date = 1.337,
69
69
  md5 = '',
70
70
  version = '',
71
71
  type = 'stable',
72
- maintainer_id = '5f7a5c5b5c5b5c5b5c5b5c5b',
72
+ maintainer_id = '',
73
73
  archived = True, )
74
74
  ],
75
75
  count = 56,
@@ -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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -36,15 +36,15 @@ class TestMaintainerShortModel(unittest.TestCase):
36
36
  model = MaintainerShortModel()
37
37
  if include_optional:
38
38
  return MaintainerShortModel(
39
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
40
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
39
+ id = '',
40
+ id = '',
41
41
  name = '',
42
42
  username = ''
43
43
  )
44
44
  else:
45
45
  return MaintainerShortModel(
46
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
47
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
46
+ id = '',
47
+ id = '',
48
48
  name = '',
49
49
  username = '',
50
50
  )
@@ -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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -39,18 +39,18 @@ class TestReleaseGroupsResponse(unittest.TestCase):
39
39
  data = {
40
40
  'key' : [
41
41
  foxclient.models.release_response.ReleaseResponse(
42
- _id = '5f7a5c5b5c5b5c5b5c5b5c5b',
42
+ _id = '',
43
43
  size = 56,
44
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
44
+ id = '',
45
45
  build_id = '',
46
46
  filename = '',
47
47
  variant = '',
48
- device_id = '5f7a5c5b5c5b5c5b5c5b5c5b',
49
- date = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
48
+ device_id = '',
49
+ date = 1.337,
50
50
  md5 = '',
51
51
  version = '',
52
52
  type = 'stable',
53
- maintainer_id = '5f7a5c5b5c5b5c5b5c5b5c5b',
53
+ maintainer_id = '',
54
54
  archived = True,
55
55
  recovery_img = foxclient.models.recovery_img_response.RecoveryImgResponse(
56
56
  size = 56,
@@ -74,18 +74,18 @@ class TestReleaseGroupsResponse(unittest.TestCase):
74
74
  data = {
75
75
  'key' : [
76
76
  foxclient.models.release_response.ReleaseResponse(
77
- _id = '5f7a5c5b5c5b5c5b5c5b5c5b',
77
+ _id = '',
78
78
  size = 56,
79
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
79
+ id = '',
80
80
  build_id = '',
81
81
  filename = '',
82
82
  variant = '',
83
- device_id = '5f7a5c5b5c5b5c5b5c5b5c5b',
84
- date = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
83
+ device_id = '',
84
+ date = 1.337,
85
85
  md5 = '',
86
86
  version = '',
87
87
  type = 'stable',
88
- maintainer_id = '5f7a5c5b5c5b5c5b5c5b5c5b',
88
+ maintainer_id = '',
89
89
  archived = True,
90
90
  recovery_img = foxclient.models.recovery_img_response.RecoveryImgResponse(
91
91
  size = 56,
@@ -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.2
8
+ The version of the OpenAPI document: 5.2.4
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -36,18 +36,18 @@ class TestReleaseResponse(unittest.TestCase):
36
36
  model = ReleaseResponse()
37
37
  if include_optional:
38
38
  return ReleaseResponse(
39
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
39
+ id = '',
40
40
  size = 56,
41
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
41
+ id = '',
42
42
  build_id = '',
43
43
  filename = '',
44
44
  variant = '',
45
- device_id = '5f7a5c5b5c5b5c5b5c5b5c5b',
46
- var_date = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
45
+ device_id = '',
46
+ var_date = 1.337,
47
47
  md5 = '',
48
48
  version = '',
49
49
  type = 'stable',
50
- maintainer_id = '5f7a5c5b5c5b5c5b5c5b5c5b',
50
+ maintainer_id = '',
51
51
  archived = True,
52
52
  recovery_img = foxclient.models.recovery_img_response.RecoveryImgResponse(
53
53
  size = 56,
@@ -66,13 +66,13 @@ class TestReleaseResponse(unittest.TestCase):
66
66
  )
67
67
  else:
68
68
  return ReleaseResponse(
69
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
69
+ id = '',
70
70
  size = 56,
71
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
71
+ id = '',
72
72
  filename = '',
73
73
  variant = '',
74
- device_id = '5f7a5c5b5c5b5c5b5c5b5c5b',
75
- var_date = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
74
+ device_id = '',
75
+ var_date = 1.337,
76
76
  md5 = '',
77
77
  version = '',
78
78
  type = 'stable',
@@ -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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -39,18 +39,18 @@ class TestResponseGetReleases(unittest.TestCase):
39
39
  data = {
40
40
  'key' : [
41
41
  foxclient.models.release_response.ReleaseResponse(
42
- _id = '5f7a5c5b5c5b5c5b5c5b5c5b',
42
+ _id = '',
43
43
  size = 56,
44
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
44
+ id = '',
45
45
  build_id = '',
46
46
  filename = '',
47
47
  variant = '',
48
- device_id = '5f7a5c5b5c5b5c5b5c5b5c5b',
49
- date = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
48
+ device_id = '',
49
+ date = 1.337,
50
50
  md5 = '',
51
51
  version = '',
52
52
  type = 'stable',
53
- maintainer_id = '5f7a5c5b5c5b5c5b5c5b5c5b',
53
+ maintainer_id = '',
54
54
  archived = True,
55
55
  recovery_img = foxclient.models.recovery_img_response.RecoveryImgResponse(
56
56
  size = 56,
@@ -75,18 +75,18 @@ class TestResponseGetReleases(unittest.TestCase):
75
75
  data = {
76
76
  'key' : [
77
77
  foxclient.models.release_response.ReleaseResponse(
78
- _id = '5f7a5c5b5c5b5c5b5c5b5c5b',
78
+ _id = '',
79
79
  size = 56,
80
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
80
+ id = '',
81
81
  build_id = '',
82
82
  filename = '',
83
83
  variant = '',
84
- device_id = '5f7a5c5b5c5b5c5b5c5b5c5b',
85
- date = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
84
+ device_id = '',
85
+ date = 1.337,
86
86
  md5 = '',
87
87
  version = '',
88
88
  type = 'stable',
89
- maintainer_id = '5f7a5c5b5c5b5c5b5c5b5c5b',
89
+ maintainer_id = '',
90
90
  archived = True,
91
91
  recovery_img = foxclient.models.recovery_img_response.RecoveryImgResponse(
92
92
  size = 56,
@@ -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.2
8
+ The version of the OpenAPI document: 5.2.4
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -36,11 +36,11 @@ class TestShortDeviceResponse(unittest.TestCase):
36
36
  model = ShortDeviceResponse()
37
37
  if include_optional:
38
38
  return ShortDeviceResponse(
39
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
39
+ id = '',
40
40
  codename = '',
41
41
  model_name = '',
42
42
  oem_name = '',
43
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
43
+ id = '',
44
44
  codenames = [
45
45
  ''
46
46
  ],
@@ -53,11 +53,11 @@ class TestShortDeviceResponse(unittest.TestCase):
53
53
  )
54
54
  else:
55
55
  return ShortDeviceResponse(
56
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
56
+ id = '',
57
57
  codename = '',
58
58
  model_name = '',
59
59
  oem_name = '',
60
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
60
+ id = '',
61
61
  codenames = [
62
62
  ''
63
63
  ],
@@ -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.2
8
+ The version of the OpenAPI document: 5.2.4
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -36,29 +36,29 @@ class TestShortReleaseResponse(unittest.TestCase):
36
36
  model = ShortReleaseResponse()
37
37
  if include_optional:
38
38
  return ShortReleaseResponse(
39
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
39
+ id = '',
40
40
  size = 56,
41
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
41
+ id = '',
42
42
  build_id = '',
43
43
  filename = '',
44
44
  variant = '',
45
- device_id = '5f7a5c5b5c5b5c5b5c5b5c5b',
46
- var_date = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
45
+ device_id = '',
46
+ var_date = 1.337,
47
47
  md5 = '',
48
48
  version = '',
49
49
  type = 'stable',
50
- maintainer_id = '5f7a5c5b5c5b5c5b5c5b5c5b',
50
+ maintainer_id = '',
51
51
  archived = True
52
52
  )
53
53
  else:
54
54
  return ShortReleaseResponse(
55
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
55
+ id = '',
56
56
  size = 56,
57
- id = '5f7a5c5b5c5b5c5b5c5b5c5b',
57
+ id = '',
58
58
  filename = '',
59
59
  variant = '',
60
- device_id = '5f7a5c5b5c5b5c5b5c5b5c5b',
61
- var_date = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
60
+ device_id = '',
61
+ var_date = 1.337,
62
62
  md5 = '',
63
63
  version = '',
64
64
  type = 'stable',
@@ -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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
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.2
8
+ The version of the OpenAPI document: 5.2.4
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
File without changes
File without changes