crypticorn 2.5.1__py3-none-any.whl → 2.5.3__py3-none-any.whl

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 (191) hide show
  1. crypticorn/cli/init.py +3 -0
  2. crypticorn/common/__init__.py +1 -0
  3. crypticorn/common/enums.py +3 -1
  4. crypticorn/common/errors.py +42 -21
  5. crypticorn/common/mixins.py +20 -0
  6. crypticorn/common/scopes.py +4 -20
  7. crypticorn/common/status_router.py +44 -0
  8. crypticorn/common/utils.py +13 -14
  9. crypticorn/hive/client/__init__.py +1 -5
  10. crypticorn/hive/client/api/data_api.py +1 -33
  11. crypticorn/hive/client/api/models_api.py +8 -104
  12. crypticorn/hive/client/api/status_api.py +481 -9
  13. crypticorn/hive/client/configuration.py +12 -4
  14. crypticorn/hive/client/models/__init__.py +1 -5
  15. crypticorn/hive/client/models/coins.py +0 -1
  16. crypticorn/hive/client/models/data_version.py +0 -1
  17. crypticorn/{metrics/client/models/error_response.py → hive/client/models/exception_detail.py} +26 -21
  18. crypticorn/hive/client/rest.py +4 -1
  19. crypticorn/klines/client/__init__.py +0 -5
  20. crypticorn/klines/client/api/change_in_timeframe_api.py +8 -9
  21. crypticorn/klines/client/api/ohlcv_data_api.py +7 -8
  22. crypticorn/klines/client/api/status_api.py +481 -6
  23. crypticorn/klines/client/api/symbols_api.py +7 -8
  24. crypticorn/klines/client/api/udf_api.py +0 -227
  25. crypticorn/klines/client/models/__init__.py +0 -5
  26. crypticorn/klines/client/models/exception_detail.py +3 -6
  27. crypticorn/klines/client/models/search_symbol.py +4 -3
  28. crypticorn/klines/client/models/udf_config.py +1 -2
  29. crypticorn/metrics/client/__init__.py +1 -6
  30. crypticorn/metrics/client/api/exchanges_api.py +29 -31
  31. crypticorn/metrics/client/api/indicators_api.py +15 -16
  32. crypticorn/metrics/client/api/logs_api.py +1 -1
  33. crypticorn/metrics/client/api/marketcap_api.py +15 -16
  34. crypticorn/metrics/client/api/markets_api.py +15 -16
  35. crypticorn/metrics/client/api/status_api.py +477 -2
  36. crypticorn/metrics/client/api/tokens_api.py +1 -1
  37. crypticorn/metrics/client/api_client.py +1 -1
  38. crypticorn/metrics/client/configuration.py +3 -5
  39. crypticorn/metrics/client/exceptions.py +1 -1
  40. crypticorn/metrics/client/models/__init__.py +1 -6
  41. crypticorn/metrics/client/models/exception_detail.py +4 -7
  42. crypticorn/metrics/client/models/severity.py +1 -1
  43. crypticorn/metrics/client/models/time_interval.py +1 -1
  44. crypticorn/metrics/client/models/trading_status.py +1 -1
  45. crypticorn/metrics/client/rest.py +1 -1
  46. crypticorn/pay/client/__init__.py +3 -8
  47. crypticorn/pay/client/api/now_payments_api.py +14 -17
  48. crypticorn/pay/client/api/payments_api.py +2 -11
  49. crypticorn/pay/client/api/products_api.py +2 -11
  50. crypticorn/pay/client/api/status_api.py +483 -8
  51. crypticorn/pay/client/api_client.py +2 -2
  52. crypticorn/pay/client/configuration.py +3 -3
  53. crypticorn/pay/client/exceptions.py +2 -2
  54. crypticorn/pay/client/models/__init__.py +3 -8
  55. crypticorn/{metrics/client/models/base_response_dict.py → pay/client/models/exception_detail.py} +28 -20
  56. crypticorn/pay/client/models/now_create_invoice_req.py +2 -2
  57. crypticorn/pay/client/models/now_create_invoice_res.py +2 -2
  58. crypticorn/pay/client/models/payment.py +2 -2
  59. crypticorn/pay/client/models/payment_status.py +2 -2
  60. crypticorn/pay/client/models/product_create.py +2 -2
  61. crypticorn/pay/client/models/product_read.py +2 -2
  62. crypticorn/pay/client/models/product_sub_read.py +2 -2
  63. crypticorn/pay/client/models/product_update.py +2 -2
  64. crypticorn/pay/client/models/scope.py +2 -2
  65. crypticorn/pay/client/models/services.py +2 -2
  66. crypticorn/pay/client/rest.py +2 -2
  67. crypticorn/trade/client/__init__.py +4 -9
  68. crypticorn/trade/client/api/api_keys_api.py +5 -20
  69. crypticorn/trade/client/api/bots_api.py +7 -19
  70. crypticorn/trade/client/api/exchanges_api.py +8 -8
  71. crypticorn/trade/client/api/futures_trading_panel_api.py +10 -22
  72. crypticorn/trade/client/api/notifications_api.py +10 -25
  73. crypticorn/trade/client/api/orders_api.py +2 -5
  74. crypticorn/trade/client/api/status_api.py +483 -8
  75. crypticorn/trade/client/api/strategies_api.py +5 -17
  76. crypticorn/trade/client/api/trading_actions_api.py +18 -26
  77. crypticorn/trade/client/api_client.py +2 -2
  78. crypticorn/trade/client/configuration.py +5 -5
  79. crypticorn/trade/client/exceptions.py +2 -2
  80. crypticorn/trade/client/models/__init__.py +4 -9
  81. crypticorn/trade/client/models/action_model.py +3 -4
  82. crypticorn/trade/client/models/bot_model.py +2 -2
  83. crypticorn/trade/client/models/bot_status.py +2 -2
  84. crypticorn/{klines/client/models/error_response.py → trade/client/models/exception_detail.py} +26 -21
  85. crypticorn/trade/client/models/exchange_key_model.py +4 -13
  86. crypticorn/trade/client/models/execution_ids.py +2 -2
  87. crypticorn/trade/client/models/futures_balance.py +2 -2
  88. crypticorn/trade/client/models/futures_trading_action.py +3 -4
  89. crypticorn/trade/client/models/margin_mode.py +2 -2
  90. crypticorn/trade/client/models/notification_model.py +2 -2
  91. crypticorn/trade/client/models/order_model.py +6 -16
  92. crypticorn/trade/client/models/order_status.py +2 -2
  93. crypticorn/trade/client/models/post_futures_action.py +2 -2
  94. crypticorn/trade/client/models/spot_trading_action.py +3 -4
  95. crypticorn/trade/client/models/strategy_exchange_info.py +4 -5
  96. crypticorn/trade/client/models/strategy_model_input.py +3 -4
  97. crypticorn/trade/client/models/strategy_model_output.py +3 -4
  98. crypticorn/trade/client/models/tpsl.py +5 -3
  99. crypticorn/trade/client/models/trading_action_type.py +2 -2
  100. crypticorn/trade/client/rest.py +2 -2
  101. {crypticorn-2.5.1.dist-info → crypticorn-2.5.3.dist-info}/METADATA +1 -1
  102. crypticorn-2.5.3.dist-info/RECORD +223 -0
  103. crypticorn/hive/client/models/http_validation_error.py +0 -99
  104. crypticorn/hive/client/models/validation_error.py +0 -105
  105. crypticorn/hive/client/models/validation_error_loc_inner.py +0 -159
  106. crypticorn/klines/client/api/health_check_api.py +0 -265
  107. crypticorn/klines/client/models/api_error_identifier.py +0 -108
  108. crypticorn/klines/client/models/api_error_level.py +0 -37
  109. crypticorn/klines/client/models/api_error_type.py +0 -37
  110. crypticorn/klines/client/models/base_response_health_check_response.py +0 -114
  111. crypticorn/klines/client/models/base_response_list_change_in_timeframe_response.py +0 -123
  112. crypticorn/klines/client/models/base_response_list_funding_rate_response.py +0 -118
  113. crypticorn/klines/client/models/base_response_list_str.py +0 -106
  114. crypticorn/klines/client/models/base_response_ohlcv_response.py +0 -114
  115. crypticorn/klines/client/models/change_in_timeframe_response.py +0 -86
  116. crypticorn/klines/client/models/exchange.py +0 -91
  117. crypticorn/klines/client/models/funding_rate_response.py +0 -92
  118. crypticorn/klines/client/models/health_check_response.py +0 -91
  119. crypticorn/klines/client/models/history_error_response.py +0 -89
  120. crypticorn/klines/client/models/history_no_data_response.py +0 -99
  121. crypticorn/klines/client/models/history_success_response.py +0 -99
  122. crypticorn/klines/client/models/http_validation_error.py +0 -99
  123. crypticorn/klines/client/models/internal_exchange.py +0 -39
  124. crypticorn/klines/client/models/market.py +0 -35
  125. crypticorn/klines/client/models/market_type.py +0 -35
  126. crypticorn/klines/client/models/ohlcv_response.py +0 -105
  127. crypticorn/klines/client/models/response_get_history_udf_history_get.py +0 -198
  128. crypticorn/klines/client/models/response_get_udf_history.py +0 -198
  129. crypticorn/klines/client/models/search_symbol_response.py +0 -104
  130. crypticorn/klines/client/models/symbol_group_response.py +0 -83
  131. crypticorn/klines/client/models/symbol_info_response.py +0 -131
  132. crypticorn/klines/client/models/udf_config_response.py +0 -160
  133. crypticorn/klines/client/models/validation_error.py +0 -105
  134. crypticorn/klines/client/models/validation_error_loc_inner.py +0 -159
  135. crypticorn/metrics/client/api/health_check_api.py +0 -265
  136. crypticorn/metrics/client/models/api_error_identifier.py +0 -108
  137. crypticorn/metrics/client/models/api_error_level.py +0 -37
  138. crypticorn/metrics/client/models/api_error_type.py +0 -37
  139. crypticorn/metrics/client/models/base_response_health_check_response.py +0 -114
  140. crypticorn/metrics/client/models/base_response_list_dict.py +0 -106
  141. crypticorn/metrics/client/models/base_response_list_exchange_mapping.py +0 -118
  142. crypticorn/metrics/client/models/base_response_list_str.py +0 -106
  143. crypticorn/metrics/client/models/exchange_mapping.py +0 -134
  144. crypticorn/metrics/client/models/health_check_response.py +0 -91
  145. crypticorn/metrics/client/models/http_validation_error.py +0 -99
  146. crypticorn/metrics/client/models/internal_exchange.py +0 -39
  147. crypticorn/metrics/client/models/market.py +0 -35
  148. crypticorn/metrics/client/models/market_type.py +0 -35
  149. crypticorn/metrics/client/models/validation_error.py +0 -105
  150. crypticorn/metrics/client/models/validation_error_loc_inner.py +0 -159
  151. crypticorn/pay/client/models/api_status_res.py +0 -83
  152. crypticorn/pay/client/models/body_create_now_invoice.py +0 -98
  153. crypticorn/pay/client/models/body_create_product.py +0 -98
  154. crypticorn/pay/client/models/body_get_products.py +0 -87
  155. crypticorn/pay/client/models/body_handle_now_webhook.py +0 -98
  156. crypticorn/pay/client/models/body_update_product.py +0 -98
  157. crypticorn/pay/client/models/combined_payment_history.py +0 -101
  158. crypticorn/pay/client/models/create_invoice_req.py +0 -188
  159. crypticorn/pay/client/models/create_invoice_res.py +0 -188
  160. crypticorn/pay/client/models/currency.py +0 -165
  161. crypticorn/pay/client/models/estimate_price_req.py +0 -91
  162. crypticorn/pay/client/models/estimate_price_res.py +0 -102
  163. crypticorn/pay/client/models/get_currencies_res.py +0 -99
  164. crypticorn/pay/client/models/get_payment_status_res.py +0 -222
  165. crypticorn/pay/client/models/get_payments_list_res.py +0 -109
  166. crypticorn/pay/client/models/http_validation_error.py +0 -99
  167. crypticorn/pay/client/models/min_amount_req.py +0 -124
  168. crypticorn/pay/client/models/min_amount_res.py +0 -105
  169. crypticorn/pay/client/models/now_api_status_res.py +0 -83
  170. crypticorn/pay/client/models/now_fee_structure.py +0 -104
  171. crypticorn/pay/client/models/now_payment_model.py +0 -124
  172. crypticorn/pay/client/models/now_payment_status.py +0 -42
  173. crypticorn/pay/client/models/now_webhook_payload.py +0 -181
  174. crypticorn/pay/client/models/partial_product_update_model.py +0 -150
  175. crypticorn/pay/client/models/product.py +0 -87
  176. crypticorn/pay/client/models/product_model.py +0 -128
  177. crypticorn/pay/client/models/product_subs_model.py +0 -108
  178. crypticorn/pay/client/models/product_update_model.py +0 -150
  179. crypticorn/pay/client/models/unified_payment_model.py +0 -112
  180. crypticorn/pay/client/models/validation_error.py +0 -105
  181. crypticorn/pay/client/models/validation_error_loc_inner.py +0 -159
  182. crypticorn/trade/client/models/api_key_model.py +0 -156
  183. crypticorn/trade/client/models/exchange.py +0 -35
  184. crypticorn/trade/client/models/http_validation_error.py +0 -99
  185. crypticorn/trade/client/models/market_type.py +0 -35
  186. crypticorn/trade/client/models/validation_error.py +0 -105
  187. crypticorn/trade/client/models/validation_error_loc_inner.py +0 -159
  188. crypticorn-2.5.1.dist-info/RECORD +0 -307
  189. {crypticorn-2.5.1.dist-info → crypticorn-2.5.3.dist-info}/WHEEL +0 -0
  190. {crypticorn-2.5.1.dist-info → crypticorn-2.5.3.dist-info}/entry_points.txt +0 -0
  191. {crypticorn-2.5.1.dist-info → crypticorn-2.5.3.dist-info}/top_level.txt +0 -0
@@ -5,9 +5,9 @@
5
5
  """
6
6
  Payment API
7
7
 
8
- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
8
+ API for accepting payments and storing subscriptions
9
9
 
10
- The version of the OpenAPI document: 0.1.0
10
+ The version of the OpenAPI document: 1.0.0
11
11
  Generated by OpenAPI Generator (https://openapi-generator.tech)
12
12
 
13
13
  Do not edit the class manually.
@@ -34,8 +34,7 @@ from crypticorn.pay.client.exceptions import ApiAttributeError
34
34
  from crypticorn.pay.client.exceptions import ApiException
35
35
 
36
36
  # import models into sdk package
37
- from crypticorn.pay.client.models.http_validation_error import HTTPValidationError
38
- from crypticorn.pay.client.models.now_api_status_res import NowAPIStatusRes
37
+ from crypticorn.pay.client.models.exception_detail import ExceptionDetail
39
38
  from crypticorn.pay.client.models.now_create_invoice_req import NowCreateInvoiceReq
40
39
  from crypticorn.pay.client.models.now_create_invoice_res import NowCreateInvoiceRes
41
40
  from crypticorn.pay.client.models.payment import Payment
@@ -46,7 +45,3 @@ from crypticorn.pay.client.models.product_sub_read import ProductSubRead
46
45
  from crypticorn.pay.client.models.product_update import ProductUpdate
47
46
  from crypticorn.pay.client.models.scope import Scope
48
47
  from crypticorn.pay.client.models.services import Services
49
- from crypticorn.pay.client.models.validation_error import ValidationError
50
- from crypticorn.pay.client.models.validation_error_loc_inner import (
51
- ValidationErrorLocInner,
52
- )
@@ -3,9 +3,9 @@
3
3
  """
4
4
  Payment API
5
5
 
6
- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ API for accepting payments and storing subscriptions
7
7
 
8
- The version of the OpenAPI document: 0.1.0
8
+ The version of the OpenAPI document: 1.0.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -16,8 +16,8 @@ from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
16
16
  from typing import Any, Dict, List, Optional, Tuple, Union
17
17
  from typing_extensions import Annotated
18
18
 
19
+ from pydantic import StrictStr
19
20
  from typing import Any
20
- from crypticorn.pay.client.models.now_api_status_res import NowAPIStatusRes
21
21
  from crypticorn.pay.client.models.now_create_invoice_req import NowCreateInvoiceReq
22
22
  from crypticorn.pay.client.models.now_create_invoice_res import NowCreateInvoiceRes
23
23
 
@@ -91,8 +91,7 @@ class NOWPaymentsApi:
91
91
  )
92
92
 
93
93
  _response_types_map: Dict[str, Optional[str]] = {
94
- "200": "NowCreateInvoiceRes",
95
- "422": "HTTPValidationError",
94
+ "201": "NowCreateInvoiceRes",
96
95
  }
97
96
  response_data = await self.api_client.call_api(
98
97
  *_param, _request_timeout=_request_timeout
@@ -156,8 +155,7 @@ class NOWPaymentsApi:
156
155
  )
157
156
 
158
157
  _response_types_map: Dict[str, Optional[str]] = {
159
- "200": "NowCreateInvoiceRes",
160
- "422": "HTTPValidationError",
158
+ "201": "NowCreateInvoiceRes",
161
159
  }
162
160
  response_data = await self.api_client.call_api(
163
161
  *_param, _request_timeout=_request_timeout
@@ -221,8 +219,7 @@ class NOWPaymentsApi:
221
219
  )
222
220
 
223
221
  _response_types_map: Dict[str, Optional[str]] = {
224
- "200": "NowCreateInvoiceRes",
225
- "422": "HTTPValidationError",
222
+ "201": "NowCreateInvoiceRes",
226
223
  }
227
224
  response_data = await self.api_client.call_api(
228
225
  *_param, _request_timeout=_request_timeout
@@ -307,7 +304,7 @@ class NOWPaymentsApi:
307
304
  _content_type: Optional[StrictStr] = None,
308
305
  _headers: Optional[Dict[StrictStr, Any]] = None,
309
306
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
310
- ) -> NowAPIStatusRes:
307
+ ) -> str:
311
308
  """Get Status
312
309
 
313
310
  Get the status of the NOWPayments API
@@ -342,7 +339,7 @@ class NOWPaymentsApi:
342
339
  )
343
340
 
344
341
  _response_types_map: Dict[str, Optional[str]] = {
345
- "200": "NowAPIStatusRes",
342
+ "200": "str",
346
343
  }
347
344
  response_data = await self.api_client.call_api(
348
345
  *_param, _request_timeout=_request_timeout
@@ -367,7 +364,7 @@ class NOWPaymentsApi:
367
364
  _content_type: Optional[StrictStr] = None,
368
365
  _headers: Optional[Dict[StrictStr, Any]] = None,
369
366
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
370
- ) -> ApiResponse[NowAPIStatusRes]:
367
+ ) -> ApiResponse[str]:
371
368
  """Get Status
372
369
 
373
370
  Get the status of the NOWPayments API
@@ -402,7 +399,7 @@ class NOWPaymentsApi:
402
399
  )
403
400
 
404
401
  _response_types_map: Dict[str, Optional[str]] = {
405
- "200": "NowAPIStatusRes",
402
+ "200": "str",
406
403
  }
407
404
  response_data = await self.api_client.call_api(
408
405
  *_param, _request_timeout=_request_timeout
@@ -462,7 +459,7 @@ class NOWPaymentsApi:
462
459
  )
463
460
 
464
461
  _response_types_map: Dict[str, Optional[str]] = {
465
- "200": "NowAPIStatusRes",
462
+ "200": "str",
466
463
  }
467
464
  response_data = await self.api_client.call_api(
468
465
  *_param, _request_timeout=_request_timeout
@@ -569,7 +566,7 @@ class NOWPaymentsApi:
569
566
  )
570
567
 
571
568
  _response_types_map: Dict[str, Optional[str]] = {
572
- "200": "object",
569
+ "201": "object",
573
570
  }
574
571
  response_data = await self.api_client.call_api(
575
572
  *_param, _request_timeout=_request_timeout
@@ -629,7 +626,7 @@ class NOWPaymentsApi:
629
626
  )
630
627
 
631
628
  _response_types_map: Dict[str, Optional[str]] = {
632
- "200": "object",
629
+ "201": "object",
633
630
  }
634
631
  response_data = await self.api_client.call_api(
635
632
  *_param, _request_timeout=_request_timeout
@@ -689,7 +686,7 @@ class NOWPaymentsApi:
689
686
  )
690
687
 
691
688
  _response_types_map: Dict[str, Optional[str]] = {
692
- "200": "object",
689
+ "201": "object",
693
690
  }
694
691
  response_data = await self.api_client.call_api(
695
692
  *_param, _request_timeout=_request_timeout
@@ -3,9 +3,9 @@
3
3
  """
4
4
  Payment API
5
5
 
6
- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ API for accepting payments and storing subscriptions
7
7
 
8
- The version of the OpenAPI document: 0.1.0
8
+ The version of the OpenAPI document: 1.0.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -96,7 +96,6 @@ class PaymentsApi:
96
96
 
97
97
  _response_types_map: Dict[str, Optional[str]] = {
98
98
  "200": "Payment",
99
- "422": "HTTPValidationError",
100
99
  }
101
100
  response_data = await self.api_client.call_api(
102
101
  *_param, _request_timeout=_request_timeout
@@ -164,7 +163,6 @@ class PaymentsApi:
164
163
 
165
164
  _response_types_map: Dict[str, Optional[str]] = {
166
165
  "200": "Payment",
167
- "422": "HTTPValidationError",
168
166
  }
169
167
  response_data = await self.api_client.call_api(
170
168
  *_param, _request_timeout=_request_timeout
@@ -232,7 +230,6 @@ class PaymentsApi:
232
230
 
233
231
  _response_types_map: Dict[str, Optional[str]] = {
234
232
  "200": "Payment",
235
- "422": "HTTPValidationError",
236
233
  }
237
234
  response_data = await self.api_client.call_api(
238
235
  *_param, _request_timeout=_request_timeout
@@ -363,7 +360,6 @@ class PaymentsApi:
363
360
 
364
361
  _response_types_map: Dict[str, Optional[str]] = {
365
362
  "200": "List[Payment]",
366
- "422": "HTTPValidationError",
367
363
  }
368
364
  response_data = await self.api_client.call_api(
369
365
  *_param, _request_timeout=_request_timeout
@@ -442,7 +438,6 @@ class PaymentsApi:
442
438
 
443
439
  _response_types_map: Dict[str, Optional[str]] = {
444
440
  "200": "List[Payment]",
445
- "422": "HTTPValidationError",
446
441
  }
447
442
  response_data = await self.api_client.call_api(
448
443
  *_param, _request_timeout=_request_timeout
@@ -521,7 +516,6 @@ class PaymentsApi:
521
516
 
522
517
  _response_types_map: Dict[str, Optional[str]] = {
523
518
  "200": "List[Payment]",
524
- "422": "HTTPValidationError",
525
519
  }
526
520
  response_data = await self.api_client.call_api(
527
521
  *_param, _request_timeout=_request_timeout
@@ -648,7 +642,6 @@ class PaymentsApi:
648
642
 
649
643
  _response_types_map: Dict[str, Optional[str]] = {
650
644
  "200": "List[ProductSubRead]",
651
- "422": "HTTPValidationError",
652
645
  }
653
646
  response_data = await self.api_client.call_api(
654
647
  *_param, _request_timeout=_request_timeout
@@ -718,7 +711,6 @@ class PaymentsApi:
718
711
 
719
712
  _response_types_map: Dict[str, Optional[str]] = {
720
713
  "200": "List[ProductSubRead]",
721
- "422": "HTTPValidationError",
722
714
  }
723
715
  response_data = await self.api_client.call_api(
724
716
  *_param, _request_timeout=_request_timeout
@@ -788,7 +780,6 @@ class PaymentsApi:
788
780
 
789
781
  _response_types_map: Dict[str, Optional[str]] = {
790
782
  "200": "List[ProductSubRead]",
791
- "422": "HTTPValidationError",
792
783
  }
793
784
  response_data = await self.api_client.call_api(
794
785
  *_param, _request_timeout=_request_timeout
@@ -3,9 +3,9 @@
3
3
  """
4
4
  Payment API
5
5
 
6
- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ API for accepting payments and storing subscriptions
7
7
 
8
- The version of the OpenAPI document: 0.1.0
8
+ The version of the OpenAPI document: 1.0.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -94,7 +94,6 @@ class ProductsApi:
94
94
 
95
95
  _response_types_map: Dict[str, Optional[str]] = {
96
96
  "201": "ProductRead",
97
- "422": "HTTPValidationError",
98
97
  }
99
98
  response_data = await self.api_client.call_api(
100
99
  *_param, _request_timeout=_request_timeout
@@ -159,7 +158,6 @@ class ProductsApi:
159
158
 
160
159
  _response_types_map: Dict[str, Optional[str]] = {
161
160
  "201": "ProductRead",
162
- "422": "HTTPValidationError",
163
161
  }
164
162
  response_data = await self.api_client.call_api(
165
163
  *_param, _request_timeout=_request_timeout
@@ -224,7 +222,6 @@ class ProductsApi:
224
222
 
225
223
  _response_types_map: Dict[str, Optional[str]] = {
226
224
  "201": "ProductRead",
227
- "422": "HTTPValidationError",
228
225
  }
229
226
  response_data = await self.api_client.call_api(
230
227
  *_param, _request_timeout=_request_timeout
@@ -363,7 +360,6 @@ class ProductsApi:
363
360
 
364
361
  _response_types_map: Dict[str, Optional[str]] = {
365
362
  "200": "List[ProductRead]",
366
- "422": "HTTPValidationError",
367
363
  }
368
364
  response_data = await self.api_client.call_api(
369
365
  *_param, _request_timeout=_request_timeout
@@ -442,7 +438,6 @@ class ProductsApi:
442
438
 
443
439
  _response_types_map: Dict[str, Optional[str]] = {
444
440
  "200": "List[ProductRead]",
445
- "422": "HTTPValidationError",
446
441
  }
447
442
  response_data = await self.api_client.call_api(
448
443
  *_param, _request_timeout=_request_timeout
@@ -521,7 +516,6 @@ class ProductsApi:
521
516
 
522
517
  _response_types_map: Dict[str, Optional[str]] = {
523
518
  "200": "List[ProductRead]",
524
- "422": "HTTPValidationError",
525
519
  }
526
520
  response_data = await self.api_client.call_api(
527
521
  *_param, _request_timeout=_request_timeout
@@ -647,7 +641,6 @@ class ProductsApi:
647
641
 
648
642
  _response_types_map: Dict[str, Optional[str]] = {
649
643
  "200": "ProductRead",
650
- "422": "HTTPValidationError",
651
644
  }
652
645
  response_data = await self.api_client.call_api(
653
646
  *_param, _request_timeout=_request_timeout
@@ -716,7 +709,6 @@ class ProductsApi:
716
709
 
717
710
  _response_types_map: Dict[str, Optional[str]] = {
718
711
  "200": "ProductRead",
719
- "422": "HTTPValidationError",
720
712
  }
721
713
  response_data = await self.api_client.call_api(
722
714
  *_param, _request_timeout=_request_timeout
@@ -785,7 +777,6 @@ class ProductsApi:
785
777
 
786
778
  _response_types_map: Dict[str, Optional[str]] = {
787
779
  "200": "ProductRead",
788
- "422": "HTTPValidationError",
789
780
  }
790
781
  response_data = await self.api_client.call_api(
791
782
  *_param, _request_timeout=_request_timeout