foxinternalclient 5.2.8__tar.gz → 5.3.2__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 (131) hide show
  1. foxinternalclient-5.3.2/PKG-INFO +237 -0
  2. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/README.md +5 -3
  3. foxinternalclient-5.3.2/foxinternalclient/__init__.py +155 -0
  4. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/api/device_api.py +31 -31
  5. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/api/fox_factory_api.py +1 -1
  6. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/api/gitlab_api.py +1 -1
  7. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/api/internal_api.py +513 -1
  8. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/api/paste_api.py +1 -1
  9. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/api/release_api.py +8 -7
  10. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/api/stats_api.py +1 -1
  11. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/api_client.py +14 -7
  12. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/configuration.py +9 -5
  13. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/exceptions.py +1 -1
  14. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/__init__.py +2 -2
  15. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/body_change_password_profile_change_password_post.py +1 -1
  16. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/build_status_enum.py +1 -1
  17. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/build_task_response.py +1 -1
  18. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/build_task_short_response.py +1 -1
  19. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/device_internal_response.py +11 -2
  20. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/device_response.py +11 -2
  21. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/device_stats_response.py +1 -1
  22. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/device_update_body.py +1 -1
  23. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/ff_status_enum.py +1 -1
  24. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/ff_status_response.py +1 -1
  25. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/global_stats_aggregation_model.py +1 -1
  26. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/http_validation_error.py +1 -1
  27. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/list_response_build_task_short_response.py +1 -1
  28. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/list_response_release_response.py +1 -1
  29. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/list_response_short_device_response.py +1 -1
  30. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/list_response_short_release_response.py +1 -1
  31. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/list_response_str.py +1 -1
  32. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/list_response_user_short_response.py +1 -1
  33. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/log_list_response.py +1 -1
  34. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/log_response.py +1 -1
  35. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/maintainer_short_model.py +1 -1
  36. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/new_build_task_body.py +1 -1
  37. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/new_device_body.py +1 -1
  38. foxinternalclient-5.3.2/foxinternalclient/models/paste_input.py +89 -0
  39. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/paste_output.py +13 -13
  40. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/recovery_img_response.py +1 -1
  41. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/release_groups_response.py +1 -1
  42. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/release_internal_response.py +14 -4
  43. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/release_internal_response_prop_value.py +1 -1
  44. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/release_response.py +14 -4
  45. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/release_stats_response.py +1 -1
  46. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/release_type.py +1 -1
  47. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/release_update_body.py +1 -1
  48. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/releases_sort.py +1 -1
  49. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/response_get_releases.py +1 -1
  50. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/short_device_response.py +12 -3
  51. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/short_release_response.py +15 -5
  52. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/task_update_body.py +1 -1
  53. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/token_response.py +1 -1
  54. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/user_gitlab.py +1 -1
  55. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/user_internal_response.py +1 -1
  56. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/user_mail.py +1 -1
  57. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/user_short_response.py +1 -1
  58. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/user_telegram.py +1 -1
  59. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/user_update_body.py +1 -1
  60. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/validation_error.py +1 -1
  61. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/models/validation_error_loc_inner.py +1 -1
  62. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/rest.py +2 -2
  63. foxinternalclient-5.3.2/foxinternalclient.egg-info/PKG-INFO +237 -0
  64. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/pyproject.toml +19 -14
  65. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/setup.py +2 -2
  66. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_body_change_password_profile_change_password_post.py +1 -1
  67. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_build_status_enum.py +1 -1
  68. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_build_task_response.py +5 -1
  69. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_build_task_short_response.py +5 -1
  70. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_device_api.py +1 -1
  71. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_device_internal_response.py +3 -1
  72. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_device_response.py +3 -1
  73. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_device_stats_response.py +1 -1
  74. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_device_update_body.py +1 -1
  75. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_ff_status_enum.py +1 -1
  76. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_ff_status_response.py +1 -1
  77. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_fox_factory_api.py +1 -1
  78. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_gitlab_api.py +1 -1
  79. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_global_stats_aggregation_model.py +1 -1
  80. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_http_validation_error.py +1 -1
  81. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_internal_api.py +15 -1
  82. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_list_response_build_task_short_response.py +5 -1
  83. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_list_response_release_response.py +5 -1
  84. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_list_response_short_device_response.py +5 -1
  85. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_list_response_short_release_response.py +7 -3
  86. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_list_response_str.py +1 -1
  87. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_list_response_user_short_response.py +1 -1
  88. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_log_list_response.py +1 -1
  89. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_log_response.py +1 -1
  90. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_maintainer_short_model.py +1 -1
  91. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_new_build_task_body.py +1 -1
  92. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_new_device_body.py +1 -1
  93. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_paste_api.py +1 -1
  94. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_paste_input.py +3 -7
  95. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_paste_output.py +6 -5
  96. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_recovery_img_response.py +1 -1
  97. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_release_api.py +1 -1
  98. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_release_groups_response.py +5 -1
  99. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_release_internal_response.py +4 -1
  100. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_release_internal_response_prop_value.py +1 -1
  101. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_release_response.py +4 -1
  102. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_release_stats_response.py +1 -1
  103. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_release_type.py +1 -1
  104. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_release_update_body.py +1 -1
  105. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_releases_sort.py +1 -1
  106. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_response_get_releases.py +5 -1
  107. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_short_device_response.py +3 -1
  108. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_short_release_response.py +5 -2
  109. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_stats_api.py +1 -1
  110. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_task_update_body.py +1 -1
  111. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_token_response.py +1 -1
  112. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_user_gitlab.py +1 -1
  113. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_user_internal_response.py +5 -1
  114. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_user_mail.py +1 -1
  115. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_user_short_response.py +1 -1
  116. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_user_telegram.py +1 -1
  117. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_user_update_body.py +1 -1
  118. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_validation_error.py +1 -1
  119. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/test/test_validation_error_loc_inner.py +1 -1
  120. foxinternalclient-5.2.8/PKG-INFO +0 -25
  121. foxinternalclient-5.2.8/foxinternalclient/__init__.py +0 -87
  122. foxinternalclient-5.2.8/foxinternalclient/models/paste_input.py +0 -111
  123. foxinternalclient-5.2.8/foxinternalclient.egg-info/PKG-INFO +0 -25
  124. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/api/__init__.py +0 -0
  125. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/api_response.py +0 -0
  126. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient/py.typed +0 -0
  127. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient.egg-info/SOURCES.txt +0 -0
  128. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient.egg-info/dependency_links.txt +0 -0
  129. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient.egg-info/requires.txt +0 -0
  130. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/foxinternalclient.egg-info/top_level.txt +0 -0
  131. {foxinternalclient-5.2.8 → foxinternalclient-5.3.2}/setup.cfg +0 -0
@@ -0,0 +1,237 @@
1
+ Metadata-Version: 2.4
2
+ Name: foxinternalclient
3
+ Version: 5.3.2
4
+ Summary: Fox API
5
+ Home-page:
6
+ Author: OpenAPI Generator community
7
+ Author-email: OpenAPI Generator Community <admin@orangefox.tech>
8
+ Project-URL: Repository, https://github.com/GIT_USER_ID/GIT_REPO_ID
9
+ Keywords: OpenAPI,OpenAPI-Generator,Fox API
10
+ Requires-Python: >=3.9
11
+ Description-Content-Type: text/markdown
12
+ Requires-Dist: urllib3<3.0.0,>=2.1.0
13
+ Requires-Dist: python-dateutil>=2.8.2
14
+ Requires-Dist: aiohttp>=3.8.4
15
+ Requires-Dist: aiohttp-retry>=2.8.3
16
+ Requires-Dist: pydantic>=2
17
+ Requires-Dist: typing-extensions>=4.7.1
18
+ Dynamic: author
19
+
20
+ # foxinternalclient
21
+
22
+ Warning: Please add a custom user agent header to your requests.
23
+ This would help us fighting against DDoS attacks in future, while keeping your application's access to the API.
24
+ In future, this may be a mandatory requirement.
25
+
26
+ To reduce the system load, the API endpoints are rate limited.
27
+ The default limit is 30 requests per minute. Contact admin@orangefox.tech if you need a higher limit.
28
+
29
+ The requests may be logged for analytics and development purposes.
30
+
31
+
32
+ This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
33
+
34
+ - API version: 5.3.2
35
+ - Package version: 5.3.2
36
+ - Generator version: 7.17.0
37
+ - Build package: org.openapitools.codegen.languages.PythonClientCodegen
38
+
39
+ ## Requirements.
40
+
41
+ Python 3.9+
42
+
43
+ ## Installation & Usage
44
+ ### pip install
45
+
46
+ If the python package is hosted on a repository, you can install directly using:
47
+
48
+ ```sh
49
+ pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
50
+ ```
51
+ (you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
52
+
53
+ Then import the package:
54
+ ```python
55
+ import foxinternalclient
56
+ ```
57
+
58
+ ### Setuptools
59
+
60
+ Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
61
+
62
+ ```sh
63
+ python setup.py install --user
64
+ ```
65
+ (or `sudo python setup.py install` to install the package for all users)
66
+
67
+ Then import the package:
68
+ ```python
69
+ import foxinternalclient
70
+ ```
71
+
72
+ ### Tests
73
+
74
+ Execute `pytest` to run the tests.
75
+
76
+ ## Getting Started
77
+
78
+ Please follow the [installation procedure](#installation--usage) and then run the following:
79
+
80
+ ```python
81
+
82
+ import foxinternalclient
83
+ from foxinternalclient.rest import ApiException
84
+ from pprint import pprint
85
+
86
+ # Defining the host is optional and defaults to https://api.orangefox.download
87
+ # See configuration.py for a list of all supported configuration parameters.
88
+ configuration = foxinternalclient.Configuration(
89
+ host = "https://api.orangefox.download"
90
+ )
91
+
92
+
93
+
94
+ # Enter a context with an instance of the API client
95
+ async with foxinternalclient.ApiClient(configuration) as api_client:
96
+ # Create an instance of the API class
97
+ api_instance = foxinternalclient.DeviceApi(api_client)
98
+ device_id = 'device_id_example' # str | (optional)
99
+ id = 'id_example' # str | Filter by Device ID (deprecated) (optional)
100
+ codename = 'codename_example' # str | Not recommended to use when you can (optional)
101
+
102
+ try:
103
+ # Get Device
104
+ api_response = await api_instance.get_device(device_id=device_id, id=id, codename=codename)
105
+ print("The response of DeviceApi->get_device:\n")
106
+ pprint(api_response)
107
+ except ApiException as e:
108
+ print("Exception when calling DeviceApi->get_device: %s\n" % e)
109
+
110
+ ```
111
+
112
+ ## Documentation for API Endpoints
113
+
114
+ All URIs are relative to *https://api.orangefox.download*
115
+
116
+ Class | Method | HTTP request | Description
117
+ ------------ | ------------- | ------------- | -------------
118
+ *DeviceApi* | [**get_device**](docs/DeviceApi.md#get_device) | **GET** /devices/get | Get Device
119
+ *DeviceApi* | [**get_device_deprecated**](docs/DeviceApi.md#get_device_deprecated) | **GET** /devices/{device_id} | Get Device Short
120
+ *DeviceApi* | [**get_devices**](docs/DeviceApi.md#get_devices) | **GET** /devices/ | Get Devices
121
+ *DeviceApi* | [**get_oems**](docs/DeviceApi.md#get_oems) | **GET** /oems/ | Get Oems
122
+ *FoxFactoryApi* | [**cancel_task_factory_task_id_cancel_post**](docs/FoxFactoryApi.md#cancel_task_factory_task_id_cancel_post) | **POST** /factory/{task_id}/cancel | Cancel Task
123
+ *FoxFactoryApi* | [**delete_task_factory_task_id_delete**](docs/FoxFactoryApi.md#delete_task_factory_task_id_delete) | **DELETE** /factory/{task_id} | Delete Task
124
+ *FoxFactoryApi* | [**download_artifact_factory_task_id_artifact_get**](docs/FoxFactoryApi.md#download_artifact_factory_task_id_artifact_get) | **GET** /factory/{task_id}/artifact | Download Artifact
125
+ *FoxFactoryApi* | [**factory_status_factory_status_get**](docs/FoxFactoryApi.md#factory_status_factory_status_get) | **GET** /factory/status | Factory Status
126
+ *FoxFactoryApi* | [**get_task_factory_task_id_get**](docs/FoxFactoryApi.md#get_task_factory_task_id_get) | **GET** /factory/{task_id} | Get Task
127
+ *FoxFactoryApi* | [**list_tasks_factory_get**](docs/FoxFactoryApi.md#list_tasks_factory_get) | **GET** /factory/ | List Tasks
128
+ *FoxFactoryApi* | [**new_task_factory_post**](docs/FoxFactoryApi.md#new_task_factory_post) | **POST** /factory/ | New Task
129
+ *FoxFactoryApi* | [**update_task_factory_task_id_patch**](docs/FoxFactoryApi.md#update_task_factory_task_id_patch) | **PATCH** /factory/{task_id} | Update Task
130
+ *FoxFactoryApi* | [**update_worker_status_factory_update_status_post**](docs/FoxFactoryApi.md#update_worker_status_factory_update_status_post) | **POST** /factory/update_status | Update Worker Status
131
+ *FoxFactoryApi* | [**upload_artifact_factory_task_id_artifact_post**](docs/FoxFactoryApi.md#upload_artifact_factory_task_id_artifact_post) | **POST** /factory/{task_id}/artifact | Upload Artifact
132
+ *GitlabApi* | [**device_add_gitlab_repo_gitlab_device_device_id_gitlab_post**](docs/GitlabApi.md#device_add_gitlab_repo_gitlab_device_device_id_gitlab_post) | **POST** /gitlab/device/{device_id}/gitlab | Device Add Gitlab Repo
133
+ *InternalApi* | [**change_password_profile_change_password_post**](docs/InternalApi.md#change_password_profile_change_password_post) | **POST** /profile/change_password | Change Password
134
+ *InternalApi* | [**del_release_internal_releases_release_id_delete**](docs/InternalApi.md#del_release_internal_releases_release_id_delete) | **DELETE** /internal/releases/{release_id} | Del Release
135
+ *InternalApi* | [**delete_device_internal_devices_device_id_delete**](docs/InternalApi.md#delete_device_internal_devices_device_id_delete) | **DELETE** /internal/devices/{device_id} | Delete Device
136
+ *InternalApi* | [**delete_paste_internal_paste_paste_id_delete**](docs/InternalApi.md#delete_paste_internal_paste_paste_id_delete) | **DELETE** /internal/paste/{paste_id} | Delete Paste
137
+ *InternalApi* | [**delete_user_internal_users_user_id_delete**](docs/InternalApi.md#delete_user_internal_users_user_id_delete) | **DELETE** /internal/users/{user_id} | Delete User
138
+ *InternalApi* | [**edit_release_internal_releases_release_id_put**](docs/InternalApi.md#edit_release_internal_releases_release_id_put) | **PUT** /internal/releases/{release_id} | Edit Release
139
+ *InternalApi* | [**get_device_info_internal_devices_device_id_get**](docs/InternalApi.md#get_device_info_internal_devices_device_id_get) | **GET** /internal/devices/{device_id} | Get Device Info
140
+ *InternalApi* | [**get_logs_internal_logs_get**](docs/InternalApi.md#get_logs_internal_logs_get) | **GET** /internal/logs/ | Get Logs
141
+ *InternalApi* | [**get_release_info_internal_releases_release_id_get**](docs/InternalApi.md#get_release_info_internal_releases_release_id_get) | **GET** /internal/releases/{release_id} | Get Release Info
142
+ *InternalApi* | [**get_release_zip_internal_releases_release_id_dl_get**](docs/InternalApi.md#get_release_zip_internal_releases_release_id_dl_get) | **GET** /internal/releases/{release_id}/dl | Get Release Zip
143
+ *InternalApi* | [**get_user_by_id_internal_users_user_id_get**](docs/InternalApi.md#get_user_by_id_internal_users_user_id_get) | **GET** /internal/users/{user_id} | Get User By Id
144
+ *InternalApi* | [**list_pastes_internal_paste_get**](docs/InternalApi.md#list_pastes_internal_paste_get) | **GET** /internal/paste/ | List Pastes
145
+ *InternalApi* | [**list_users_internal_users_get**](docs/InternalApi.md#list_users_internal_users_get) | **GET** /internal/users/ | List Users
146
+ *InternalApi* | [**login_oauth_auth_login_post**](docs/InternalApi.md#login_oauth_auth_login_post) | **POST** /auth/login | Login Oauth
147
+ *InternalApi* | [**logout_auth_logout_post**](docs/InternalApi.md#logout_auth_logout_post) | **POST** /auth/logout | Logout
148
+ *InternalApi* | [**new_device_internal_devices_post**](docs/InternalApi.md#new_device_internal_devices_post) | **POST** /internal/devices/ | New Device
149
+ *InternalApi* | [**new_release_internal_releases_post**](docs/InternalApi.md#new_release_internal_releases_post) | **POST** /internal/releases/ | New Release
150
+ *InternalApi* | [**renew_auth_renew_post**](docs/InternalApi.md#renew_auth_renew_post) | **POST** /auth/renew | Renew
151
+ *InternalApi* | [**update_device_internal_devices_device_id_put**](docs/InternalApi.md#update_device_internal_devices_device_id_put) | **PUT** /internal/devices/{device_id} | Update Device
152
+ *InternalApi* | [**update_paste_internal_paste_paste_id_put**](docs/InternalApi.md#update_paste_internal_paste_paste_id_put) | **PUT** /internal/paste/{paste_id} | Update Paste
153
+ *InternalApi* | [**update_user_internal_users_user_id_put**](docs/InternalApi.md#update_user_internal_users_user_id_put) | **PUT** /internal/users/{user_id} | Update User
154
+ *PasteApi* | [**create_paste_paste_post**](docs/PasteApi.md#create_paste_paste_post) | **POST** /paste/ | Create Paste
155
+ *PasteApi* | [**get_paste_paste_paste_id_get**](docs/PasteApi.md#get_paste_paste_paste_id_get) | **GET** /paste/{paste_id} | Get Paste
156
+ *ReleaseApi* | [**get_release**](docs/ReleaseApi.md#get_release) | **GET** /releases/get | Get Release
157
+ *ReleaseApi* | [**get_release_deprecated**](docs/ReleaseApi.md#get_release_deprecated) | **GET** /releases/{release_id} | Get Release Short
158
+ *ReleaseApi* | [**get_releases**](docs/ReleaseApi.md#get_releases) | **GET** /releases/ | Get Releases
159
+ *ReleaseApi* | [**get_updates_deprecated**](docs/ReleaseApi.md#get_updates_deprecated) | **GET** /updates/{last_known_id} | Get Updates
160
+ *StatsApi* | [**get_public_stats**](docs/StatsApi.md#get_public_stats) | **GET** /stats/ | Public Stats
161
+
162
+
163
+ ## Documentation For Models
164
+
165
+ - [BodyChangePasswordProfileChangePasswordPost](docs/BodyChangePasswordProfileChangePasswordPost.md)
166
+ - [BuildStatusEnum](docs/BuildStatusEnum.md)
167
+ - [BuildTaskResponse](docs/BuildTaskResponse.md)
168
+ - [BuildTaskShortResponse](docs/BuildTaskShortResponse.md)
169
+ - [DeviceInternalResponse](docs/DeviceInternalResponse.md)
170
+ - [DeviceResponse](docs/DeviceResponse.md)
171
+ - [DeviceStatsResponse](docs/DeviceStatsResponse.md)
172
+ - [DeviceUpdateBody](docs/DeviceUpdateBody.md)
173
+ - [FFStatusEnum](docs/FFStatusEnum.md)
174
+ - [FFStatusResponse](docs/FFStatusResponse.md)
175
+ - [GlobalStatsAggregationModel](docs/GlobalStatsAggregationModel.md)
176
+ - [HTTPValidationError](docs/HTTPValidationError.md)
177
+ - [ListResponseBuildTaskShortResponse](docs/ListResponseBuildTaskShortResponse.md)
178
+ - [ListResponseReleaseResponse](docs/ListResponseReleaseResponse.md)
179
+ - [ListResponseShortDeviceResponse](docs/ListResponseShortDeviceResponse.md)
180
+ - [ListResponseShortReleaseResponse](docs/ListResponseShortReleaseResponse.md)
181
+ - [ListResponseStr](docs/ListResponseStr.md)
182
+ - [ListResponseUserShortResponse](docs/ListResponseUserShortResponse.md)
183
+ - [LogListResponse](docs/LogListResponse.md)
184
+ - [LogResponse](docs/LogResponse.md)
185
+ - [MaintainerShortModel](docs/MaintainerShortModel.md)
186
+ - [NewBuildTaskBody](docs/NewBuildTaskBody.md)
187
+ - [NewDeviceBody](docs/NewDeviceBody.md)
188
+ - [PasteInput](docs/PasteInput.md)
189
+ - [PasteOutput](docs/PasteOutput.md)
190
+ - [RecoveryImgResponse](docs/RecoveryImgResponse.md)
191
+ - [ReleaseGroupsResponse](docs/ReleaseGroupsResponse.md)
192
+ - [ReleaseInternalResponse](docs/ReleaseInternalResponse.md)
193
+ - [ReleaseInternalResponsePropValue](docs/ReleaseInternalResponsePropValue.md)
194
+ - [ReleaseResponse](docs/ReleaseResponse.md)
195
+ - [ReleaseStatsResponse](docs/ReleaseStatsResponse.md)
196
+ - [ReleaseType](docs/ReleaseType.md)
197
+ - [ReleaseUpdateBody](docs/ReleaseUpdateBody.md)
198
+ - [ReleasesSort](docs/ReleasesSort.md)
199
+ - [ResponseGetReleases](docs/ResponseGetReleases.md)
200
+ - [ShortDeviceResponse](docs/ShortDeviceResponse.md)
201
+ - [ShortReleaseResponse](docs/ShortReleaseResponse.md)
202
+ - [TaskUpdateBody](docs/TaskUpdateBody.md)
203
+ - [TokenResponse](docs/TokenResponse.md)
204
+ - [UserGitlab](docs/UserGitlab.md)
205
+ - [UserInternalResponse](docs/UserInternalResponse.md)
206
+ - [UserMail](docs/UserMail.md)
207
+ - [UserShortResponse](docs/UserShortResponse.md)
208
+ - [UserTelegram](docs/UserTelegram.md)
209
+ - [UserUpdateBody](docs/UserUpdateBody.md)
210
+ - [ValidationError](docs/ValidationError.md)
211
+ - [ValidationErrorLocInner](docs/ValidationErrorLocInner.md)
212
+
213
+
214
+ <a id="documentation-for-authorization"></a>
215
+ ## Documentation For Authorization
216
+
217
+
218
+ Authentication schemes defined for the API:
219
+ <a id="bearer_auth"></a>
220
+ ### bearer_auth
221
+
222
+ - **Type**: Bearer authentication (JWT)
223
+
224
+ <a id="oauth2_password"></a>
225
+ ### oauth2_password
226
+
227
+ - **Type**: OAuth
228
+ - **Flow**: password
229
+ - **Authorization URL**:
230
+ - **Scopes**: N/A
231
+
232
+
233
+ ## Author
234
+
235
+ admin@orangefox.tech
236
+
237
+
@@ -12,9 +12,9 @@ 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.8
16
- - Package version: 5.2.8
17
- - Generator version: 7.13.0
15
+ - API version: 5.3.2
16
+ - Package version: 5.3.2
17
+ - Generator version: 7.17.0
18
18
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
19
19
 
20
20
  ## Requirements.
@@ -113,6 +113,7 @@ Class | Method | HTTP request | Description
113
113
  *GitlabApi* | [**device_add_gitlab_repo_gitlab_device_device_id_gitlab_post**](docs/GitlabApi.md#device_add_gitlab_repo_gitlab_device_device_id_gitlab_post) | **POST** /gitlab/device/{device_id}/gitlab | Device Add Gitlab Repo
114
114
  *InternalApi* | [**change_password_profile_change_password_post**](docs/InternalApi.md#change_password_profile_change_password_post) | **POST** /profile/change_password | Change Password
115
115
  *InternalApi* | [**del_release_internal_releases_release_id_delete**](docs/InternalApi.md#del_release_internal_releases_release_id_delete) | **DELETE** /internal/releases/{release_id} | Del Release
116
+ *InternalApi* | [**delete_device_internal_devices_device_id_delete**](docs/InternalApi.md#delete_device_internal_devices_device_id_delete) | **DELETE** /internal/devices/{device_id} | Delete Device
116
117
  *InternalApi* | [**delete_paste_internal_paste_paste_id_delete**](docs/InternalApi.md#delete_paste_internal_paste_paste_id_delete) | **DELETE** /internal/paste/{paste_id} | Delete Paste
117
118
  *InternalApi* | [**delete_user_internal_users_user_id_delete**](docs/InternalApi.md#delete_user_internal_users_user_id_delete) | **DELETE** /internal/users/{user_id} | Delete User
118
119
  *InternalApi* | [**edit_release_internal_releases_release_id_put**](docs/InternalApi.md#edit_release_internal_releases_release_id_put) | **PUT** /internal/releases/{release_id} | Edit Release
@@ -121,6 +122,7 @@ Class | Method | HTTP request | Description
121
122
  *InternalApi* | [**get_release_info_internal_releases_release_id_get**](docs/InternalApi.md#get_release_info_internal_releases_release_id_get) | **GET** /internal/releases/{release_id} | Get Release Info
122
123
  *InternalApi* | [**get_release_zip_internal_releases_release_id_dl_get**](docs/InternalApi.md#get_release_zip_internal_releases_release_id_dl_get) | **GET** /internal/releases/{release_id}/dl | Get Release Zip
123
124
  *InternalApi* | [**get_user_by_id_internal_users_user_id_get**](docs/InternalApi.md#get_user_by_id_internal_users_user_id_get) | **GET** /internal/users/{user_id} | Get User By Id
125
+ *InternalApi* | [**list_pastes_internal_paste_get**](docs/InternalApi.md#list_pastes_internal_paste_get) | **GET** /internal/paste/ | List Pastes
124
126
  *InternalApi* | [**list_users_internal_users_get**](docs/InternalApi.md#list_users_internal_users_get) | **GET** /internal/users/ | List Users
125
127
  *InternalApi* | [**login_oauth_auth_login_post**](docs/InternalApi.md#login_oauth_auth_login_post) | **POST** /auth/login | Login Oauth
126
128
  *InternalApi* | [**logout_auth_logout_post**](docs/InternalApi.md#logout_auth_logout_post) | **POST** /auth/logout | Logout
@@ -0,0 +1,155 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ Fox API
7
+
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
+
10
+ The version of the OpenAPI document: 5.3.2
11
+ Contact: admin@orangefox.tech
12
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
13
+
14
+ Do not edit the class manually.
15
+ """ # noqa: E501
16
+
17
+
18
+ __version__ = "5.3.2"
19
+
20
+ # Define package exports
21
+ __all__ = [
22
+ "DeviceApi",
23
+ "FoxFactoryApi",
24
+ "GitlabApi",
25
+ "InternalApi",
26
+ "PasteApi",
27
+ "ReleaseApi",
28
+ "StatsApi",
29
+ "ApiResponse",
30
+ "ApiClient",
31
+ "Configuration",
32
+ "OpenApiException",
33
+ "ApiTypeError",
34
+ "ApiValueError",
35
+ "ApiKeyError",
36
+ "ApiAttributeError",
37
+ "ApiException",
38
+ "BodyChangePasswordProfileChangePasswordPost",
39
+ "BuildStatusEnum",
40
+ "BuildTaskResponse",
41
+ "BuildTaskShortResponse",
42
+ "DeviceInternalResponse",
43
+ "DeviceResponse",
44
+ "DeviceStatsResponse",
45
+ "DeviceUpdateBody",
46
+ "FFStatusEnum",
47
+ "FFStatusResponse",
48
+ "GlobalStatsAggregationModel",
49
+ "HTTPValidationError",
50
+ "ListResponseBuildTaskShortResponse",
51
+ "ListResponseReleaseResponse",
52
+ "ListResponseShortDeviceResponse",
53
+ "ListResponseShortReleaseResponse",
54
+ "ListResponseStr",
55
+ "ListResponseUserShortResponse",
56
+ "LogListResponse",
57
+ "LogResponse",
58
+ "MaintainerShortModel",
59
+ "NewBuildTaskBody",
60
+ "NewDeviceBody",
61
+ "PasteInput",
62
+ "PasteOutput",
63
+ "RecoveryImgResponse",
64
+ "ReleaseGroupsResponse",
65
+ "ReleaseInternalResponse",
66
+ "ReleaseInternalResponsePropValue",
67
+ "ReleaseResponse",
68
+ "ReleaseStatsResponse",
69
+ "ReleaseType",
70
+ "ReleaseUpdateBody",
71
+ "ReleasesSort",
72
+ "ResponseGetReleases",
73
+ "ShortDeviceResponse",
74
+ "ShortReleaseResponse",
75
+ "TaskUpdateBody",
76
+ "TokenResponse",
77
+ "UserGitlab",
78
+ "UserInternalResponse",
79
+ "UserMail",
80
+ "UserShortResponse",
81
+ "UserTelegram",
82
+ "UserUpdateBody",
83
+ "ValidationError",
84
+ "ValidationErrorLocInner",
85
+ ]
86
+
87
+ # import apis into sdk package
88
+ from foxinternalclient.api.device_api import DeviceApi as DeviceApi
89
+ from foxinternalclient.api.fox_factory_api import FoxFactoryApi as FoxFactoryApi
90
+ from foxinternalclient.api.gitlab_api import GitlabApi as GitlabApi
91
+ from foxinternalclient.api.internal_api import InternalApi as InternalApi
92
+ from foxinternalclient.api.paste_api import PasteApi as PasteApi
93
+ from foxinternalclient.api.release_api import ReleaseApi as ReleaseApi
94
+ from foxinternalclient.api.stats_api import StatsApi as StatsApi
95
+
96
+ # import ApiClient
97
+ from foxinternalclient.api_response import ApiResponse as ApiResponse
98
+ from foxinternalclient.api_client import ApiClient as ApiClient
99
+ from foxinternalclient.configuration import Configuration as Configuration
100
+ from foxinternalclient.exceptions import OpenApiException as OpenApiException
101
+ from foxinternalclient.exceptions import ApiTypeError as ApiTypeError
102
+ from foxinternalclient.exceptions import ApiValueError as ApiValueError
103
+ from foxinternalclient.exceptions import ApiKeyError as ApiKeyError
104
+ from foxinternalclient.exceptions import ApiAttributeError as ApiAttributeError
105
+ from foxinternalclient.exceptions import ApiException as ApiException
106
+
107
+ # import models into sdk package
108
+ from foxinternalclient.models.body_change_password_profile_change_password_post import BodyChangePasswordProfileChangePasswordPost as BodyChangePasswordProfileChangePasswordPost
109
+ from foxinternalclient.models.build_status_enum import BuildStatusEnum as BuildStatusEnum
110
+ from foxinternalclient.models.build_task_response import BuildTaskResponse as BuildTaskResponse
111
+ from foxinternalclient.models.build_task_short_response import BuildTaskShortResponse as BuildTaskShortResponse
112
+ from foxinternalclient.models.device_internal_response import DeviceInternalResponse as DeviceInternalResponse
113
+ from foxinternalclient.models.device_response import DeviceResponse as DeviceResponse
114
+ from foxinternalclient.models.device_stats_response import DeviceStatsResponse as DeviceStatsResponse
115
+ from foxinternalclient.models.device_update_body import DeviceUpdateBody as DeviceUpdateBody
116
+ from foxinternalclient.models.ff_status_enum import FFStatusEnum as FFStatusEnum
117
+ from foxinternalclient.models.ff_status_response import FFStatusResponse as FFStatusResponse
118
+ from foxinternalclient.models.global_stats_aggregation_model import GlobalStatsAggregationModel as GlobalStatsAggregationModel
119
+ from foxinternalclient.models.http_validation_error import HTTPValidationError as HTTPValidationError
120
+ from foxinternalclient.models.list_response_build_task_short_response import ListResponseBuildTaskShortResponse as ListResponseBuildTaskShortResponse
121
+ from foxinternalclient.models.list_response_release_response import ListResponseReleaseResponse as ListResponseReleaseResponse
122
+ from foxinternalclient.models.list_response_short_device_response import ListResponseShortDeviceResponse as ListResponseShortDeviceResponse
123
+ from foxinternalclient.models.list_response_short_release_response import ListResponseShortReleaseResponse as ListResponseShortReleaseResponse
124
+ from foxinternalclient.models.list_response_str import ListResponseStr as ListResponseStr
125
+ from foxinternalclient.models.list_response_user_short_response import ListResponseUserShortResponse as ListResponseUserShortResponse
126
+ from foxinternalclient.models.log_list_response import LogListResponse as LogListResponse
127
+ from foxinternalclient.models.log_response import LogResponse as LogResponse
128
+ from foxinternalclient.models.maintainer_short_model import MaintainerShortModel as MaintainerShortModel
129
+ from foxinternalclient.models.new_build_task_body import NewBuildTaskBody as NewBuildTaskBody
130
+ from foxinternalclient.models.new_device_body import NewDeviceBody as NewDeviceBody
131
+ from foxinternalclient.models.paste_input import PasteInput as PasteInput
132
+ from foxinternalclient.models.paste_output import PasteOutput as PasteOutput
133
+ from foxinternalclient.models.recovery_img_response import RecoveryImgResponse as RecoveryImgResponse
134
+ from foxinternalclient.models.release_groups_response import ReleaseGroupsResponse as ReleaseGroupsResponse
135
+ from foxinternalclient.models.release_internal_response import ReleaseInternalResponse as ReleaseInternalResponse
136
+ from foxinternalclient.models.release_internal_response_prop_value import ReleaseInternalResponsePropValue as ReleaseInternalResponsePropValue
137
+ from foxinternalclient.models.release_response import ReleaseResponse as ReleaseResponse
138
+ from foxinternalclient.models.release_stats_response import ReleaseStatsResponse as ReleaseStatsResponse
139
+ from foxinternalclient.models.release_type import ReleaseType as ReleaseType
140
+ from foxinternalclient.models.release_update_body import ReleaseUpdateBody as ReleaseUpdateBody
141
+ from foxinternalclient.models.releases_sort import ReleasesSort as ReleasesSort
142
+ from foxinternalclient.models.response_get_releases import ResponseGetReleases as ResponseGetReleases
143
+ from foxinternalclient.models.short_device_response import ShortDeviceResponse as ShortDeviceResponse
144
+ from foxinternalclient.models.short_release_response import ShortReleaseResponse as ShortReleaseResponse
145
+ from foxinternalclient.models.task_update_body import TaskUpdateBody as TaskUpdateBody
146
+ from foxinternalclient.models.token_response import TokenResponse as TokenResponse
147
+ from foxinternalclient.models.user_gitlab import UserGitlab as UserGitlab
148
+ from foxinternalclient.models.user_internal_response import UserInternalResponse as UserInternalResponse
149
+ from foxinternalclient.models.user_mail import UserMail as UserMail
150
+ from foxinternalclient.models.user_short_response import UserShortResponse as UserShortResponse
151
+ from foxinternalclient.models.user_telegram import UserTelegram as UserTelegram
152
+ from foxinternalclient.models.user_update_body import UserUpdateBody as UserUpdateBody
153
+ from foxinternalclient.models.validation_error import ValidationError as ValidationError
154
+ from foxinternalclient.models.validation_error_loc_inner import ValidationErrorLocInner as ValidationErrorLocInner
155
+
@@ -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.8
8
+ The version of the OpenAPI document: 5.3.2
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -620,12 +620,12 @@ class DeviceApi:
620
620
  async def get_devices(
621
621
  self,
622
622
  id: Annotated[Optional[List[StrictStr]], Field(description="Filter by Device IDs")] = None,
623
- id2: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by Device IDs (deprecated)")] = None,
624
- oem_name: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by OEM names")] = None,
625
- codename: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by device codenames")] = None,
626
- model_name: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by model names")] = None,
623
+ id2: Annotated[Optional[List[StrictStr]], Field(description="Filter by Device IDs (deprecated)")] = None,
624
+ oem_name: Annotated[Optional[List[StrictStr]], Field(description="Filter by OEM names")] = None,
625
+ codename: Annotated[Optional[List[StrictStr]], Field(description="Filter by device codenames")] = None,
626
+ model_name: Annotated[Optional[List[StrictStr]], Field(description="Filter by model names")] = None,
627
627
  supported: Annotated[Optional[StrictBool], Field(description="Supported status")] = None,
628
- maintainer: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by maintainer ID")] = None,
628
+ maintainer: Annotated[Optional[List[StrictStr]], Field(description="Filter by maintainer ID")] = None,
629
629
  freezed: Annotated[Optional[StrictBool], Field(description="Filter by Freezed status")] = None,
630
630
  has_releases: Annotated[Optional[StrictBool], Field(description="Filter by has releases status")] = None,
631
631
  skip: Annotated[Optional[StrictInt], Field(description="Skip query results")] = None,
@@ -650,17 +650,17 @@ class DeviceApi:
650
650
  :param id: Filter by Device IDs
651
651
  :type id: List[str]
652
652
  :param id2: Filter by Device IDs (deprecated)
653
- :type id2: List[Optional[str]]
653
+ :type id2: List[str]
654
654
  :param oem_name: Filter by OEM names
655
- :type oem_name: List[Optional[str]]
655
+ :type oem_name: List[str]
656
656
  :param codename: Filter by device codenames
657
- :type codename: List[Optional[str]]
657
+ :type codename: List[str]
658
658
  :param model_name: Filter by model names
659
- :type model_name: List[Optional[str]]
659
+ :type model_name: List[str]
660
660
  :param supported: Supported status
661
661
  :type supported: bool
662
662
  :param maintainer: Filter by maintainer ID
663
- :type maintainer: List[Optional[str]]
663
+ :type maintainer: List[str]
664
664
  :param freezed: Filter by Freezed status
665
665
  :type freezed: bool
666
666
  :param has_releases: Filter by has releases status
@@ -729,12 +729,12 @@ class DeviceApi:
729
729
  async def get_devices_with_http_info(
730
730
  self,
731
731
  id: Annotated[Optional[List[StrictStr]], Field(description="Filter by Device IDs")] = None,
732
- id2: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by Device IDs (deprecated)")] = None,
733
- oem_name: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by OEM names")] = None,
734
- codename: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by device codenames")] = None,
735
- model_name: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by model names")] = None,
732
+ id2: Annotated[Optional[List[StrictStr]], Field(description="Filter by Device IDs (deprecated)")] = None,
733
+ oem_name: Annotated[Optional[List[StrictStr]], Field(description="Filter by OEM names")] = None,
734
+ codename: Annotated[Optional[List[StrictStr]], Field(description="Filter by device codenames")] = None,
735
+ model_name: Annotated[Optional[List[StrictStr]], Field(description="Filter by model names")] = None,
736
736
  supported: Annotated[Optional[StrictBool], Field(description="Supported status")] = None,
737
- maintainer: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by maintainer ID")] = None,
737
+ maintainer: Annotated[Optional[List[StrictStr]], Field(description="Filter by maintainer ID")] = None,
738
738
  freezed: Annotated[Optional[StrictBool], Field(description="Filter by Freezed status")] = None,
739
739
  has_releases: Annotated[Optional[StrictBool], Field(description="Filter by has releases status")] = None,
740
740
  skip: Annotated[Optional[StrictInt], Field(description="Skip query results")] = None,
@@ -759,17 +759,17 @@ class DeviceApi:
759
759
  :param id: Filter by Device IDs
760
760
  :type id: List[str]
761
761
  :param id2: Filter by Device IDs (deprecated)
762
- :type id2: List[Optional[str]]
762
+ :type id2: List[str]
763
763
  :param oem_name: Filter by OEM names
764
- :type oem_name: List[Optional[str]]
764
+ :type oem_name: List[str]
765
765
  :param codename: Filter by device codenames
766
- :type codename: List[Optional[str]]
766
+ :type codename: List[str]
767
767
  :param model_name: Filter by model names
768
- :type model_name: List[Optional[str]]
768
+ :type model_name: List[str]
769
769
  :param supported: Supported status
770
770
  :type supported: bool
771
771
  :param maintainer: Filter by maintainer ID
772
- :type maintainer: List[Optional[str]]
772
+ :type maintainer: List[str]
773
773
  :param freezed: Filter by Freezed status
774
774
  :type freezed: bool
775
775
  :param has_releases: Filter by has releases status
@@ -838,12 +838,12 @@ class DeviceApi:
838
838
  async def get_devices_without_preload_content(
839
839
  self,
840
840
  id: Annotated[Optional[List[StrictStr]], Field(description="Filter by Device IDs")] = None,
841
- id2: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by Device IDs (deprecated)")] = None,
842
- oem_name: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by OEM names")] = None,
843
- codename: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by device codenames")] = None,
844
- model_name: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by model names")] = None,
841
+ id2: Annotated[Optional[List[StrictStr]], Field(description="Filter by Device IDs (deprecated)")] = None,
842
+ oem_name: Annotated[Optional[List[StrictStr]], Field(description="Filter by OEM names")] = None,
843
+ codename: Annotated[Optional[List[StrictStr]], Field(description="Filter by device codenames")] = None,
844
+ model_name: Annotated[Optional[List[StrictStr]], Field(description="Filter by model names")] = None,
845
845
  supported: Annotated[Optional[StrictBool], Field(description="Supported status")] = None,
846
- maintainer: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter by maintainer ID")] = None,
846
+ maintainer: Annotated[Optional[List[StrictStr]], Field(description="Filter by maintainer ID")] = None,
847
847
  freezed: Annotated[Optional[StrictBool], Field(description="Filter by Freezed status")] = None,
848
848
  has_releases: Annotated[Optional[StrictBool], Field(description="Filter by has releases status")] = None,
849
849
  skip: Annotated[Optional[StrictInt], Field(description="Skip query results")] = None,
@@ -868,17 +868,17 @@ class DeviceApi:
868
868
  :param id: Filter by Device IDs
869
869
  :type id: List[str]
870
870
  :param id2: Filter by Device IDs (deprecated)
871
- :type id2: List[Optional[str]]
871
+ :type id2: List[str]
872
872
  :param oem_name: Filter by OEM names
873
- :type oem_name: List[Optional[str]]
873
+ :type oem_name: List[str]
874
874
  :param codename: Filter by device codenames
875
- :type codename: List[Optional[str]]
875
+ :type codename: List[str]
876
876
  :param model_name: Filter by model names
877
- :type model_name: List[Optional[str]]
877
+ :type model_name: List[str]
878
878
  :param supported: Supported status
879
879
  :type supported: bool
880
880
  :param maintainer: Filter by maintainer ID
881
- :type maintainer: List[Optional[str]]
881
+ :type maintainer: List[str]
882
882
  :param freezed: Filter by Freezed status
883
883
  :type freezed: bool
884
884
  :param has_releases: Filter by has releases status
@@ -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.8
8
+ The version of the OpenAPI document: 5.3.2
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.8
8
+ The version of the OpenAPI document: 5.3.2
9
9
  Contact: admin@orangefox.tech
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11