crypticorn 2.17.0rc5__py3-none-any.whl → 2.17.0rc6__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 (62) hide show
  1. crypticorn/auth/client/api/admin_api.py +6 -24
  2. crypticorn/auth/client/api/auth_api.py +36 -144
  3. crypticorn/auth/client/api/service_api.py +3 -12
  4. crypticorn/auth/client/api/user_api.py +33 -132
  5. crypticorn/auth/client/api/wallet_api.py +18 -72
  6. crypticorn/cli/templates/Dockerfile +5 -2
  7. crypticorn/common/auth.py +30 -0
  8. crypticorn/common/errors.py +10 -0
  9. crypticorn/common/pagination.py +1 -1
  10. crypticorn/common/router/admin_router.py +1 -11
  11. crypticorn/common/router/status_router.py +33 -2
  12. crypticorn/common/scopes.py +2 -2
  13. crypticorn/dex/client/api/admin_api.py +21 -84
  14. crypticorn/dex/client/api/signals_api.py +9 -36
  15. crypticorn/dex/client/api/status_api.py +6 -24
  16. crypticorn/hive/client/api/admin_api.py +18 -72
  17. crypticorn/hive/client/api/data_api.py +6 -24
  18. crypticorn/hive/client/api/models_api.py +21 -84
  19. crypticorn/hive/client/api/status_api.py +6 -24
  20. crypticorn/klines/client/api/admin_api.py +18 -72
  21. crypticorn/klines/client/api/change_in_timeframe_api.py +3 -12
  22. crypticorn/klines/client/api/funding_rates_api.py +3 -12
  23. crypticorn/klines/client/api/ohlcv_data_api.py +3 -12
  24. crypticorn/klines/client/api/status_api.py +6 -24
  25. crypticorn/klines/client/api/symbols_api.py +3 -12
  26. crypticorn/klines/client/api/udf_api.py +18 -72
  27. crypticorn/metrics/client/api/admin_api.py +18 -72
  28. crypticorn/metrics/client/api/exchanges_api.py +12 -48
  29. crypticorn/metrics/client/api/indicators_api.py +6 -24
  30. crypticorn/metrics/client/api/logs_api.py +3 -12
  31. crypticorn/metrics/client/api/marketcap_api.py +12 -48
  32. crypticorn/metrics/client/api/markets_api.py +3 -12
  33. crypticorn/metrics/client/api/quote_currencies_api.py +3 -12
  34. crypticorn/metrics/client/api/status_api.py +6 -24
  35. crypticorn/metrics/client/api/tokens_api.py +6 -24
  36. crypticorn/pay/client/api/admin_api.py +21 -84
  37. crypticorn/pay/client/api/now_payments_api.py +15 -60
  38. crypticorn/pay/client/api/payments_api.py +6 -24
  39. crypticorn/pay/client/api/products_api.py +12 -48
  40. crypticorn/pay/client/api/status_api.py +6 -24
  41. crypticorn/trade/client/__init__.py +10 -0
  42. crypticorn/trade/client/api/admin_api.py +21 -84
  43. crypticorn/trade/client/api/api_keys_api.py +207 -184
  44. crypticorn/trade/client/api/bots_api.py +2435 -662
  45. crypticorn/trade/client/api/exchanges_api.py +9 -36
  46. crypticorn/trade/client/api/notifications_api.py +18 -72
  47. crypticorn/trade/client/api/orders_api.py +3 -12
  48. crypticorn/trade/client/api/status_api.py +6 -24
  49. crypticorn/trade/client/api/strategies_api.py +15 -60
  50. crypticorn/trade/client/api/trading_actions_api.py +431 -112
  51. crypticorn/trade/client/configuration.py +2 -2
  52. crypticorn/trade/client/models/__init__.py +10 -0
  53. crypticorn/trade/client/models/paginated_response_futures_trading_action.py +134 -0
  54. crypticorn/trade/client/models/paginated_response_union_futures_trading_action_spot_trading_action.py +141 -0
  55. crypticorn/trade/client/models/paginated_response_union_futures_trading_action_spot_trading_action_data_inner.py +165 -0
  56. crypticorn/trade/client/models/spot_trading_action.py +207 -0
  57. {crypticorn-2.17.0rc5.dist-info → crypticorn-2.17.0rc6.dist-info}/METADATA +3 -3
  58. {crypticorn-2.17.0rc5.dist-info → crypticorn-2.17.0rc6.dist-info}/RECORD +62 -58
  59. {crypticorn-2.17.0rc5.dist-info → crypticorn-2.17.0rc6.dist-info}/WHEEL +0 -0
  60. {crypticorn-2.17.0rc5.dist-info → crypticorn-2.17.0rc6.dist-info}/entry_points.txt +0 -0
  61. {crypticorn-2.17.0rc5.dist-info → crypticorn-2.17.0rc6.dist-info}/licenses/LICENSE +0 -0
  62. {crypticorn-2.17.0rc5.dist-info → crypticorn-2.17.0rc6.dist-info}/top_level.txt +0 -0
@@ -69,10 +69,7 @@ class AdminApi:
69
69
  _headers: Optional[Dict[StrictStr, Any]] = None,
70
70
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
71
71
  ) -> Dict[str, object]:
72
- """Get Container Limits
73
-
74
- This method can work in both sync and async modes based on the is_sync flag.
75
- """
72
+ """Get Container Limits"""
76
73
  if self.is_sync:
77
74
  return self._get_container_limits_sync(
78
75
  _request_timeout=_request_timeout,
@@ -106,10 +103,7 @@ class AdminApi:
106
103
  _headers: Optional[Dict[StrictStr, Any]] = None,
107
104
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
108
105
  ) -> ApiResponse[Dict[str, object]]:
109
- """Get Container Limits with HTTP info
110
-
111
- This method can work in both sync and async modes based on the is_sync flag.
112
- """
106
+ """Get Container Limits with HTTP info"""
113
107
  if self.is_sync:
114
108
  return self._get_container_limits_sync_with_http_info(
115
109
  _request_timeout=_request_timeout,
@@ -143,10 +137,7 @@ class AdminApi:
143
137
  _headers: Optional[Dict[StrictStr, Any]] = None,
144
138
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
145
139
  ) -> RESTResponseType:
146
- """Get Container Limits without preloading content
147
-
148
- This method can work in both sync and async modes based on the is_sync flag.
149
- """
140
+ """Get Container Limits without preloading content"""
150
141
  if self.is_sync:
151
142
  return self._get_container_limits_sync_without_preload_content(
152
143
  _request_timeout=_request_timeout,
@@ -486,10 +477,7 @@ class AdminApi:
486
477
  _headers: Optional[Dict[StrictStr, Any]] = None,
487
478
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
488
479
  ) -> Dict[str, str]:
489
- """List Installed Packages
490
-
491
- This method can work in both sync and async modes based on the is_sync flag.
492
- """
480
+ """List Installed Packages"""
493
481
  if self.is_sync:
494
482
  return self._get_dependencies_sync(
495
483
  include=include,
@@ -531,10 +519,7 @@ class AdminApi:
531
519
  _headers: Optional[Dict[StrictStr, Any]] = None,
532
520
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
533
521
  ) -> ApiResponse[Dict[str, str]]:
534
- """List Installed Packages with HTTP info
535
-
536
- This method can work in both sync and async modes based on the is_sync flag.
537
- """
522
+ """List Installed Packages with HTTP info"""
538
523
  if self.is_sync:
539
524
  return self._get_dependencies_sync_with_http_info(
540
525
  include=include,
@@ -576,10 +561,7 @@ class AdminApi:
576
561
  _headers: Optional[Dict[StrictStr, Any]] = None,
577
562
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
578
563
  ) -> RESTResponseType:
579
- """List Installed Packages without preloading content
580
-
581
- This method can work in both sync and async modes based on the is_sync flag.
582
- """
564
+ """List Installed Packages without preloading content"""
583
565
  if self.is_sync:
584
566
  return self._get_dependencies_sync_without_preload_content(
585
567
  include=include,
@@ -970,10 +952,7 @@ class AdminApi:
970
952
  _headers: Optional[Dict[StrictStr, Any]] = None,
971
953
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
972
954
  ) -> LogLevel:
973
- """Get Logging Level
974
-
975
- This method can work in both sync and async modes based on the is_sync flag.
976
- """
955
+ """Get Logging Level"""
977
956
  if self.is_sync:
978
957
  return self._get_log_level_sync(
979
958
  _request_timeout=_request_timeout,
@@ -1007,10 +986,7 @@ class AdminApi:
1007
986
  _headers: Optional[Dict[StrictStr, Any]] = None,
1008
987
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1009
988
  ) -> ApiResponse[LogLevel]:
1010
- """Get Logging Level with HTTP info
1011
-
1012
- This method can work in both sync and async modes based on the is_sync flag.
1013
- """
989
+ """Get Logging Level with HTTP info"""
1014
990
  if self.is_sync:
1015
991
  return self._get_log_level_sync_with_http_info(
1016
992
  _request_timeout=_request_timeout,
@@ -1044,10 +1020,7 @@ class AdminApi:
1044
1020
  _headers: Optional[Dict[StrictStr, Any]] = None,
1045
1021
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1046
1022
  ) -> RESTResponseType:
1047
- """Get Logging Level without preloading content
1048
-
1049
- This method can work in both sync and async modes based on the is_sync flag.
1050
- """
1023
+ """Get Logging Level without preloading content"""
1051
1024
  if self.is_sync:
1052
1025
  return self._get_log_level_sync_without_preload_content(
1053
1026
  _request_timeout=_request_timeout,
@@ -1384,10 +1357,7 @@ class AdminApi:
1384
1357
  _headers: Optional[Dict[StrictStr, Any]] = None,
1385
1358
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1386
1359
  ) -> float:
1387
- """Get Memory Usage
1388
-
1389
- This method can work in both sync and async modes based on the is_sync flag.
1390
- """
1360
+ """Get Memory Usage"""
1391
1361
  if self.is_sync:
1392
1362
  return self._get_memory_usage_sync(
1393
1363
  _request_timeout=_request_timeout,
@@ -1421,10 +1391,7 @@ class AdminApi:
1421
1391
  _headers: Optional[Dict[StrictStr, Any]] = None,
1422
1392
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1423
1393
  ) -> ApiResponse[float]:
1424
- """Get Memory Usage with HTTP info
1425
-
1426
- This method can work in both sync and async modes based on the is_sync flag.
1427
- """
1394
+ """Get Memory Usage with HTTP info"""
1428
1395
  if self.is_sync:
1429
1396
  return self._get_memory_usage_sync_with_http_info(
1430
1397
  _request_timeout=_request_timeout,
@@ -1458,10 +1425,7 @@ class AdminApi:
1458
1425
  _headers: Optional[Dict[StrictStr, Any]] = None,
1459
1426
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1460
1427
  ) -> RESTResponseType:
1461
- """Get Memory Usage without preloading content
1462
-
1463
- This method can work in both sync and async modes based on the is_sync flag.
1464
- """
1428
+ """Get Memory Usage without preloading content"""
1465
1429
  if self.is_sync:
1466
1430
  return self._get_memory_usage_sync_without_preload_content(
1467
1431
  _request_timeout=_request_timeout,
@@ -1795,10 +1759,7 @@ class AdminApi:
1795
1759
  _headers: Optional[Dict[StrictStr, Any]] = None,
1796
1760
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1797
1761
  ) -> Dict[str, object]:
1798
- """Get Threads
1799
-
1800
- This method can work in both sync and async modes based on the is_sync flag.
1801
- """
1762
+ """Get Threads"""
1802
1763
  if self.is_sync:
1803
1764
  return self._get_threads_sync(
1804
1765
  _request_timeout=_request_timeout,
@@ -1832,10 +1793,7 @@ class AdminApi:
1832
1793
  _headers: Optional[Dict[StrictStr, Any]] = None,
1833
1794
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1834
1795
  ) -> ApiResponse[Dict[str, object]]:
1835
- """Get Threads with HTTP info
1836
-
1837
- This method can work in both sync and async modes based on the is_sync flag.
1838
- """
1796
+ """Get Threads with HTTP info"""
1839
1797
  if self.is_sync:
1840
1798
  return self._get_threads_sync_with_http_info(
1841
1799
  _request_timeout=_request_timeout,
@@ -1869,10 +1827,7 @@ class AdminApi:
1869
1827
  _headers: Optional[Dict[StrictStr, Any]] = None,
1870
1828
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1871
1829
  ) -> RESTResponseType:
1872
- """Get Threads without preloading content
1873
-
1874
- This method can work in both sync and async modes based on the is_sync flag.
1875
- """
1830
+ """Get Threads without preloading content"""
1876
1831
  if self.is_sync:
1877
1832
  return self._get_threads_sync_without_preload_content(
1878
1833
  _request_timeout=_request_timeout,
@@ -2207,10 +2162,7 @@ class AdminApi:
2207
2162
  _headers: Optional[Dict[StrictStr, Any]] = None,
2208
2163
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2209
2164
  ) -> str:
2210
- """Get Uptime
2211
-
2212
- This method can work in both sync and async modes based on the is_sync flag.
2213
- """
2165
+ """Get Uptime"""
2214
2166
  if self.is_sync:
2215
2167
  return self._get_uptime_sync(
2216
2168
  type=type,
@@ -2247,10 +2199,7 @@ class AdminApi:
2247
2199
  _headers: Optional[Dict[StrictStr, Any]] = None,
2248
2200
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2249
2201
  ) -> ApiResponse[str]:
2250
- """Get Uptime with HTTP info
2251
-
2252
- This method can work in both sync and async modes based on the is_sync flag.
2253
- """
2202
+ """Get Uptime with HTTP info"""
2254
2203
  if self.is_sync:
2255
2204
  return self._get_uptime_sync_with_http_info(
2256
2205
  type=type,
@@ -2287,10 +2236,7 @@ class AdminApi:
2287
2236
  _headers: Optional[Dict[StrictStr, Any]] = None,
2288
2237
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2289
2238
  ) -> RESTResponseType:
2290
- """Get Uptime without preloading content
2291
-
2292
- This method can work in both sync and async modes based on the is_sync flag.
2293
- """
2239
+ """Get Uptime without preloading content"""
2294
2240
  if self.is_sync:
2295
2241
  return self._get_uptime_sync_without_preload_content(
2296
2242
  type=type,
@@ -105,10 +105,7 @@ class ExchangesApi:
105
105
  _headers: Optional[Dict[StrictStr, Any]] = None,
106
106
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
107
107
  ) -> List[ExchangeAvailability]:
108
- """Get Available Exchanges
109
-
110
- This method can work in both sync and async modes based on the is_sync flag.
111
- """
108
+ """Get Available Exchanges"""
112
109
  if self.is_sync:
113
110
  return self._get_available_exchanges_sync(
114
111
  market=market,
@@ -188,10 +185,7 @@ class ExchangesApi:
188
185
  _headers: Optional[Dict[StrictStr, Any]] = None,
189
186
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
190
187
  ) -> ApiResponse[List[ExchangeAvailability]]:
191
- """Get Available Exchanges with HTTP info
192
-
193
- This method can work in both sync and async modes based on the is_sync flag.
194
- """
188
+ """Get Available Exchanges with HTTP info"""
195
189
  if self.is_sync:
196
190
  return self._get_available_exchanges_sync_with_http_info(
197
191
  market=market,
@@ -271,10 +265,7 @@ class ExchangesApi:
271
265
  _headers: Optional[Dict[StrictStr, Any]] = None,
272
266
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
273
267
  ) -> RESTResponseType:
274
- """Get Available Exchanges without preloading content
275
-
276
- This method can work in both sync and async modes based on the is_sync flag.
277
- """
268
+ """Get Available Exchanges without preloading content"""
278
269
  if self.is_sync:
279
270
  return self._get_available_exchanges_sync_without_preload_content(
280
271
  market=market,
@@ -938,10 +929,7 @@ class ExchangesApi:
938
929
  _headers: Optional[Dict[StrictStr, Any]] = None,
939
930
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
940
931
  ) -> List[str]:
941
- """Get Exchange List
942
-
943
- This method can work in both sync and async modes based on the is_sync flag.
944
- """
932
+ """Get Exchange List"""
945
933
  if self.is_sync:
946
934
  return self._get_available_exchanges_for_market_sync(
947
935
  market=market,
@@ -980,10 +968,7 @@ class ExchangesApi:
980
968
  _headers: Optional[Dict[StrictStr, Any]] = None,
981
969
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
982
970
  ) -> ApiResponse[List[str]]:
983
- """Get Exchange List with HTTP info
984
-
985
- This method can work in both sync and async modes based on the is_sync flag.
986
- """
971
+ """Get Exchange List with HTTP info"""
987
972
  if self.is_sync:
988
973
  return self._get_available_exchanges_for_market_sync_with_http_info(
989
974
  market=market,
@@ -1022,10 +1007,7 @@ class ExchangesApi:
1022
1007
  _headers: Optional[Dict[StrictStr, Any]] = None,
1023
1008
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1024
1009
  ) -> RESTResponseType:
1025
- """Get Exchange List without preloading content
1026
-
1027
- This method can work in both sync and async modes based on the is_sync flag.
1028
- """
1010
+ """Get Exchange List without preloading content"""
1029
1011
  if self.is_sync:
1030
1012
  return (
1031
1013
  self._get_available_exchanges_for_market_sync_without_preload_content(
@@ -1411,10 +1393,7 @@ class ExchangesApi:
1411
1393
  _headers: Optional[Dict[StrictStr, Any]] = None,
1412
1394
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1413
1395
  ) -> List[ExchangeMapping]:
1414
- """Get Exchange Mappings
1415
-
1416
- This method can work in both sync and async modes based on the is_sync flag.
1417
- """
1396
+ """Get Exchange Mappings"""
1418
1397
  if self.is_sync:
1419
1398
  return self._get_exchange_mappings_sync(
1420
1399
  market=market,
@@ -1459,10 +1438,7 @@ class ExchangesApi:
1459
1438
  _headers: Optional[Dict[StrictStr, Any]] = None,
1460
1439
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1461
1440
  ) -> ApiResponse[List[ExchangeMapping]]:
1462
- """Get Exchange Mappings with HTTP info
1463
-
1464
- This method can work in both sync and async modes based on the is_sync flag.
1465
- """
1441
+ """Get Exchange Mappings with HTTP info"""
1466
1442
  if self.is_sync:
1467
1443
  return self._get_exchange_mappings_sync_with_http_info(
1468
1444
  market=market,
@@ -1507,10 +1483,7 @@ class ExchangesApi:
1507
1483
  _headers: Optional[Dict[StrictStr, Any]] = None,
1508
1484
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1509
1485
  ) -> RESTResponseType:
1510
- """Get Exchange Mappings without preloading content
1511
-
1512
- This method can work in both sync and async modes based on the is_sync flag.
1513
- """
1486
+ """Get Exchange Mappings without preloading content"""
1514
1487
  if self.is_sync:
1515
1488
  return self._get_exchange_mappings_sync_without_preload_content(
1516
1489
  market=market,
@@ -1944,10 +1917,7 @@ class ExchangesApi:
1944
1917
  _headers: Optional[Dict[StrictStr, Any]] = None,
1945
1918
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1946
1919
  ) -> List[ExchangeMapping]:
1947
- """Get Exchange Mappings For Pair
1948
-
1949
- This method can work in both sync and async modes based on the is_sync flag.
1950
- """
1920
+ """Get Exchange Mappings For Pair"""
1951
1921
  if self.is_sync:
1952
1922
  return self._get_exchange_mappings_for_pair_sync(
1953
1923
  pair=pair,
@@ -2009,10 +1979,7 @@ class ExchangesApi:
2009
1979
  _headers: Optional[Dict[StrictStr, Any]] = None,
2010
1980
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2011
1981
  ) -> ApiResponse[List[ExchangeMapping]]:
2012
- """Get Exchange Mappings For Pair with HTTP info
2013
-
2014
- This method can work in both sync and async modes based on the is_sync flag.
2015
- """
1982
+ """Get Exchange Mappings For Pair with HTTP info"""
2016
1983
  if self.is_sync:
2017
1984
  return self._get_exchange_mappings_for_pair_sync_with_http_info(
2018
1985
  pair=pair,
@@ -2074,10 +2041,7 @@ class ExchangesApi:
2074
2041
  _headers: Optional[Dict[StrictStr, Any]] = None,
2075
2042
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2076
2043
  ) -> RESTResponseType:
2077
- """Get Exchange Mappings For Pair without preloading content
2078
-
2079
- This method can work in both sync and async modes based on the is_sync flag.
2080
- """
2044
+ """Get Exchange Mappings For Pair without preloading content"""
2081
2045
  if self.is_sync:
2082
2046
  return self._get_exchange_mappings_for_pair_sync_without_preload_content(
2083
2047
  pair=pair,
@@ -81,10 +81,7 @@ class IndicatorsApi:
81
81
  _headers: Optional[Dict[StrictStr, Any]] = None,
82
82
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
83
83
  ) -> Dict[str, object]:
84
- """Get Ker Indicator
85
-
86
- This method can work in both sync and async modes based on the is_sync flag.
87
- """
84
+ """Get Ker Indicator"""
88
85
  if self.is_sync:
89
86
  return self._get_ker_indicator_sync(
90
87
  symbol=symbol,
@@ -139,10 +136,7 @@ class IndicatorsApi:
139
136
  _headers: Optional[Dict[StrictStr, Any]] = None,
140
137
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
141
138
  ) -> ApiResponse[Dict[str, object]]:
142
- """Get Ker Indicator with HTTP info
143
-
144
- This method can work in both sync and async modes based on the is_sync flag.
145
- """
139
+ """Get Ker Indicator with HTTP info"""
146
140
  if self.is_sync:
147
141
  return self._get_ker_indicator_sync_with_http_info(
148
142
  symbol=symbol,
@@ -197,10 +191,7 @@ class IndicatorsApi:
197
191
  _headers: Optional[Dict[StrictStr, Any]] = None,
198
192
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
199
193
  ) -> RESTResponseType:
200
- """Get Ker Indicator without preloading content
201
-
202
- This method can work in both sync and async modes based on the is_sync flag.
203
- """
194
+ """Get Ker Indicator without preloading content"""
204
195
  if self.is_sync:
205
196
  return self._get_ker_indicator_sync_without_preload_content(
206
197
  symbol=symbol,
@@ -703,10 +694,7 @@ class IndicatorsApi:
703
694
  _headers: Optional[Dict[StrictStr, Any]] = None,
704
695
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
705
696
  ) -> Dict[str, object]:
706
- """Get Sma Indicator
707
-
708
- This method can work in both sync and async modes based on the is_sync flag.
709
- """
697
+ """Get Sma Indicator"""
710
698
  if self.is_sync:
711
699
  return self._get_sma_indicator_sync(
712
700
  symbol=symbol,
@@ -763,10 +751,7 @@ class IndicatorsApi:
763
751
  _headers: Optional[Dict[StrictStr, Any]] = None,
764
752
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
765
753
  ) -> ApiResponse[Dict[str, object]]:
766
- """Get Sma Indicator with HTTP info
767
-
768
- This method can work in both sync and async modes based on the is_sync flag.
769
- """
754
+ """Get Sma Indicator with HTTP info"""
770
755
  if self.is_sync:
771
756
  return self._get_sma_indicator_sync_with_http_info(
772
757
  symbol=symbol,
@@ -823,10 +808,7 @@ class IndicatorsApi:
823
808
  _headers: Optional[Dict[StrictStr, Any]] = None,
824
809
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
825
810
  ) -> RESTResponseType:
826
- """Get Sma Indicator without preloading content
827
-
828
- This method can work in both sync and async modes based on the is_sync flag.
829
- """
811
+ """Get Sma Indicator without preloading content"""
830
812
  if self.is_sync:
831
813
  return self._get_sma_indicator_sync_without_preload_content(
832
814
  symbol=symbol,
@@ -79,10 +79,7 @@ class LogsApi:
79
79
  _headers: Optional[Dict[StrictStr, Any]] = None,
80
80
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
81
81
  ) -> List[Dict[str, object]]:
82
- """Get Error Logs
83
-
84
- This method can work in both sync and async modes based on the is_sync flag.
85
- """
82
+ """Get Error Logs"""
86
83
  if self.is_sync:
87
84
  return self._get_metrics_error_logs_sync(
88
85
  severity=severity,
@@ -133,10 +130,7 @@ class LogsApi:
133
130
  _headers: Optional[Dict[StrictStr, Any]] = None,
134
131
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
135
132
  ) -> ApiResponse[List[Dict[str, object]]]:
136
- """Get Error Logs with HTTP info
137
-
138
- This method can work in both sync and async modes based on the is_sync flag.
139
- """
133
+ """Get Error Logs with HTTP info"""
140
134
  if self.is_sync:
141
135
  return self._get_metrics_error_logs_sync_with_http_info(
142
136
  severity=severity,
@@ -187,10 +181,7 @@ class LogsApi:
187
181
  _headers: Optional[Dict[StrictStr, Any]] = None,
188
182
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
189
183
  ) -> RESTResponseType:
190
- """Get Error Logs without preloading content
191
-
192
- This method can work in both sync and async modes based on the is_sync flag.
193
- """
184
+ """Get Error Logs without preloading content"""
194
185
  if self.is_sync:
195
186
  return self._get_metrics_error_logs_sync_without_preload_content(
196
187
  severity=severity,
@@ -77,10 +77,7 @@ class MarketcapApi:
77
77
  _headers: Optional[Dict[StrictStr, Any]] = None,
78
78
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
79
79
  ) -> List[Dict[str, object]]:
80
- """Get Current Marketcap
81
-
82
- This method can work in both sync and async modes based on the is_sync flag.
83
- """
80
+ """Get Current Marketcap"""
84
81
  if self.is_sync:
85
82
  return self._get_current_marketcap_sync(
86
83
  limit=limit,
@@ -120,10 +117,7 @@ class MarketcapApi:
120
117
  _headers: Optional[Dict[StrictStr, Any]] = None,
121
118
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
122
119
  ) -> ApiResponse[List[Dict[str, object]]]:
123
- """Get Current Marketcap with HTTP info
124
-
125
- This method can work in both sync and async modes based on the is_sync flag.
126
- """
120
+ """Get Current Marketcap with HTTP info"""
127
121
  if self.is_sync:
128
122
  return self._get_current_marketcap_sync_with_http_info(
129
123
  limit=limit,
@@ -163,10 +157,7 @@ class MarketcapApi:
163
157
  _headers: Optional[Dict[StrictStr, Any]] = None,
164
158
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
165
159
  ) -> RESTResponseType:
166
- """Get Current Marketcap without preloading content
167
-
168
- This method can work in both sync and async modes based on the is_sync flag.
169
- """
160
+ """Get Current Marketcap without preloading content"""
170
161
  if self.is_sync:
171
162
  return self._get_current_marketcap_sync_without_preload_content(
172
163
  limit=limit,
@@ -549,10 +540,7 @@ class MarketcapApi:
549
540
  _headers: Optional[Dict[StrictStr, Any]] = None,
550
541
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
551
542
  ) -> List[MarketcapRanking]:
552
- """Get Marketcap Between Timestamps
553
-
554
- This method can work in both sync and async modes based on the is_sync flag.
555
- """
543
+ """Get Marketcap Between Timestamps"""
556
544
  if self.is_sync:
557
545
  return self._get_marketcap_between_timestamps_sync(
558
546
  start_timestamp=start_timestamp,
@@ -596,10 +584,7 @@ class MarketcapApi:
596
584
  _headers: Optional[Dict[StrictStr, Any]] = None,
597
585
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
598
586
  ) -> ApiResponse[List[MarketcapRanking]]:
599
- """Get Marketcap Between Timestamps with HTTP info
600
-
601
- This method can work in both sync and async modes based on the is_sync flag.
602
- """
587
+ """Get Marketcap Between Timestamps with HTTP info"""
603
588
  if self.is_sync:
604
589
  return self._get_marketcap_between_timestamps_sync_with_http_info(
605
590
  start_timestamp=start_timestamp,
@@ -643,10 +628,7 @@ class MarketcapApi:
643
628
  _headers: Optional[Dict[StrictStr, Any]] = None,
644
629
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
645
630
  ) -> RESTResponseType:
646
- """Get Marketcap Between Timestamps without preloading content
647
-
648
- This method can work in both sync and async modes based on the is_sync flag.
649
- """
631
+ """Get Marketcap Between Timestamps without preloading content"""
650
632
  if self.is_sync:
651
633
  return self._get_marketcap_between_timestamps_sync_without_preload_content(
652
634
  start_timestamp=start_timestamp,
@@ -1080,10 +1062,7 @@ class MarketcapApi:
1080
1062
  _headers: Optional[Dict[StrictStr, Any]] = None,
1081
1063
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1082
1064
  ) -> List[MarketcapSymbolRanking]:
1083
- """Get Symbols Marketcap Between Timestamps
1084
-
1085
- This method can work in both sync and async modes based on the is_sync flag.
1086
- """
1065
+ """Get Symbols Marketcap Between Timestamps"""
1087
1066
  if self.is_sync:
1088
1067
  return self._get_marketcap_symbols_sync(
1089
1068
  start_timestamp=start_timestamp,
@@ -1149,10 +1128,7 @@ class MarketcapApi:
1149
1128
  _headers: Optional[Dict[StrictStr, Any]] = None,
1150
1129
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1151
1130
  ) -> ApiResponse[List[MarketcapSymbolRanking]]:
1152
- """Get Symbols Marketcap Between Timestamps with HTTP info
1153
-
1154
- This method can work in both sync and async modes based on the is_sync flag.
1155
- """
1131
+ """Get Symbols Marketcap Between Timestamps with HTTP info"""
1156
1132
  if self.is_sync:
1157
1133
  return self._get_marketcap_symbols_sync_with_http_info(
1158
1134
  start_timestamp=start_timestamp,
@@ -1218,10 +1194,7 @@ class MarketcapApi:
1218
1194
  _headers: Optional[Dict[StrictStr, Any]] = None,
1219
1195
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1220
1196
  ) -> RESTResponseType:
1221
- """Get Symbols Marketcap Between Timestamps without preloading content
1222
-
1223
- This method can work in both sync and async modes based on the is_sync flag.
1224
- """
1197
+ """Get Symbols Marketcap Between Timestamps without preloading content"""
1225
1198
  if self.is_sync:
1226
1199
  return self._get_marketcap_symbols_sync_without_preload_content(
1227
1200
  start_timestamp=start_timestamp,
@@ -1800,10 +1773,7 @@ class MarketcapApi:
1800
1773
  _headers: Optional[Dict[StrictStr, Any]] = None,
1801
1774
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1802
1775
  ) -> Dict[str, List[OHLCV]]:
1803
- """Get Symbols Marketcap With Ohlcv
1804
-
1805
- This method can work in both sync and async modes based on the is_sync flag.
1806
- """
1776
+ """Get Symbols Marketcap With Ohlcv"""
1807
1777
  if self.is_sync:
1808
1778
  return self._get_marketcap_symbols_with_ohlcv_sync(
1809
1779
  timestamp=timestamp,
@@ -1865,10 +1835,7 @@ class MarketcapApi:
1865
1835
  _headers: Optional[Dict[StrictStr, Any]] = None,
1866
1836
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1867
1837
  ) -> ApiResponse[Dict[str, List[OHLCV]]]:
1868
- """Get Symbols Marketcap With Ohlcv with HTTP info
1869
-
1870
- This method can work in both sync and async modes based on the is_sync flag.
1871
- """
1838
+ """Get Symbols Marketcap With Ohlcv with HTTP info"""
1872
1839
  if self.is_sync:
1873
1840
  return self._get_marketcap_symbols_with_ohlcv_sync_with_http_info(
1874
1841
  timestamp=timestamp,
@@ -1930,10 +1897,7 @@ class MarketcapApi:
1930
1897
  _headers: Optional[Dict[StrictStr, Any]] = None,
1931
1898
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1932
1899
  ) -> RESTResponseType:
1933
- """Get Symbols Marketcap With Ohlcv without preloading content
1934
-
1935
- This method can work in both sync and async modes based on the is_sync flag.
1936
- """
1900
+ """Get Symbols Marketcap With Ohlcv without preloading content"""
1937
1901
  if self.is_sync:
1938
1902
  return self._get_marketcap_symbols_with_ohlcv_sync_without_preload_content(
1939
1903
  timestamp=timestamp,
@@ -86,10 +86,7 @@ class MarketsApi:
86
86
  _headers: Optional[Dict[StrictStr, Any]] = None,
87
87
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
88
88
  ) -> List[Dict[str, object]]:
89
- """Get Markets For Symbol
90
-
91
- This method can work in both sync and async modes based on the is_sync flag.
92
- """
89
+ """Get Markets For Symbol"""
93
90
  if self.is_sync:
94
91
  return self._get_available_markets_for_symbol_sync(
95
92
  market=market,
@@ -148,10 +145,7 @@ class MarketsApi:
148
145
  _headers: Optional[Dict[StrictStr, Any]] = None,
149
146
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
150
147
  ) -> ApiResponse[List[Dict[str, object]]]:
151
- """Get Markets For Symbol with HTTP info
152
-
153
- This method can work in both sync and async modes based on the is_sync flag.
154
- """
148
+ """Get Markets For Symbol with HTTP info"""
155
149
  if self.is_sync:
156
150
  return self._get_available_markets_for_symbol_sync_with_http_info(
157
151
  market=market,
@@ -210,10 +204,7 @@ class MarketsApi:
210
204
  _headers: Optional[Dict[StrictStr, Any]] = None,
211
205
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
212
206
  ) -> RESTResponseType:
213
- """Get Markets For Symbol without preloading content
214
-
215
- This method can work in both sync and async modes based on the is_sync flag.
216
- """
207
+ """Get Markets For Symbol without preloading content"""
217
208
  if self.is_sync:
218
209
  return self._get_available_markets_for_symbol_sync_without_preload_content(
219
210
  market=market,
@@ -71,10 +71,7 @@ class QuoteCurrenciesApi:
71
71
  _headers: Optional[Dict[StrictStr, Any]] = None,
72
72
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
73
73
  ) -> List[str]:
74
- """Get Quote Currencies
75
-
76
- This method can work in both sync and async modes based on the is_sync flag.
77
- """
74
+ """Get Quote Currencies"""
78
75
  if self.is_sync:
79
76
  return self._get_quote_currencies_sync(
80
77
  market=market,
@@ -113,10 +110,7 @@ class QuoteCurrenciesApi:
113
110
  _headers: Optional[Dict[StrictStr, Any]] = None,
114
111
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
115
112
  ) -> ApiResponse[List[str]]:
116
- """Get Quote Currencies with HTTP info
117
-
118
- This method can work in both sync and async modes based on the is_sync flag.
119
- """
113
+ """Get Quote Currencies with HTTP info"""
120
114
  if self.is_sync:
121
115
  return self._get_quote_currencies_sync_with_http_info(
122
116
  market=market,
@@ -155,10 +149,7 @@ class QuoteCurrenciesApi:
155
149
  _headers: Optional[Dict[StrictStr, Any]] = None,
156
150
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
157
151
  ) -> RESTResponseType:
158
- """Get Quote Currencies without preloading content
159
-
160
- This method can work in both sync and async modes based on the is_sync flag.
161
- """
152
+ """Get Quote Currencies without preloading content"""
162
153
  if self.is_sync:
163
154
  return self._get_quote_currencies_sync_without_preload_content(
164
155
  market=market,