crypticorn 2.17.0rc5__py3-none-any.whl → 2.17.0rc7__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 +30 -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.0rc7.dist-info}/METADATA +3 -3
  58. {crypticorn-2.17.0rc5.dist-info → crypticorn-2.17.0rc7.dist-info}/RECORD +62 -58
  59. {crypticorn-2.17.0rc5.dist-info → crypticorn-2.17.0rc7.dist-info}/WHEEL +0 -0
  60. {crypticorn-2.17.0rc5.dist-info → crypticorn-2.17.0rc7.dist-info}/entry_points.txt +0 -0
  61. {crypticorn-2.17.0rc5.dist-info → crypticorn-2.17.0rc7.dist-info}/licenses/LICENSE +0 -0
  62. {crypticorn-2.17.0rc5.dist-info → crypticorn-2.17.0rc7.dist-info}/top_level.txt +0 -0
@@ -75,10 +75,7 @@ class AdminApi:
75
75
  _headers: Optional[Dict[StrictStr, Any]] = None,
76
76
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
77
77
  ) -> LogoutDefaultResponseIssuesInner:
78
- """Revoke user tokens
79
-
80
- This method can work in both sync and async modes based on the is_sync flag.
81
- """
78
+ """Revoke user tokens"""
82
79
  if self.is_sync:
83
80
  return self._revoke_user_tokens_sync(
84
81
  revoke_user_tokens_request=revoke_user_tokens_request,
@@ -115,10 +112,7 @@ class AdminApi:
115
112
  _headers: Optional[Dict[StrictStr, Any]] = None,
116
113
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
117
114
  ) -> ApiResponse[LogoutDefaultResponseIssuesInner]:
118
- """Revoke user tokens with HTTP info
119
-
120
- This method can work in both sync and async modes based on the is_sync flag.
121
- """
115
+ """Revoke user tokens with HTTP info"""
122
116
  if self.is_sync:
123
117
  return self._revoke_user_tokens_sync_with_http_info(
124
118
  revoke_user_tokens_request=revoke_user_tokens_request,
@@ -155,10 +149,7 @@ class AdminApi:
155
149
  _headers: Optional[Dict[StrictStr, Any]] = None,
156
150
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
157
151
  ) -> RESTResponseType:
158
- """Revoke user tokens without preloading content
159
-
160
- This method can work in both sync and async modes based on the is_sync flag.
161
- """
152
+ """Revoke user tokens without preloading content"""
162
153
  if self.is_sync:
163
154
  return self._revoke_user_tokens_sync_without_preload_content(
164
155
  revoke_user_tokens_request=revoke_user_tokens_request,
@@ -525,10 +516,7 @@ class AdminApi:
525
516
  _headers: Optional[Dict[StrictStr, Any]] = None,
526
517
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
527
518
  ) -> List[Whoami200Response]:
528
- """User List
529
-
530
- This method can work in both sync and async modes based on the is_sync flag.
531
- """
519
+ """User List"""
532
520
  if self.is_sync:
533
521
  return self._user_list_sync(
534
522
  _request_timeout=_request_timeout,
@@ -562,10 +550,7 @@ class AdminApi:
562
550
  _headers: Optional[Dict[StrictStr, Any]] = None,
563
551
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
564
552
  ) -> ApiResponse[List[Whoami200Response]]:
565
- """User List with HTTP info
566
-
567
- This method can work in both sync and async modes based on the is_sync flag.
568
- """
553
+ """User List with HTTP info"""
569
554
  if self.is_sync:
570
555
  return self._user_list_sync_with_http_info(
571
556
  _request_timeout=_request_timeout,
@@ -599,10 +584,7 @@ class AdminApi:
599
584
  _headers: Optional[Dict[StrictStr, Any]] = None,
600
585
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
601
586
  ) -> RESTResponseType:
602
- """User List without preloading content
603
-
604
- This method can work in both sync and async modes based on the is_sync flag.
605
- """
587
+ """User List without preloading content"""
606
588
  if self.is_sync:
607
589
  return self._user_list_sync_without_preload_content(
608
590
  _request_timeout=_request_timeout,
@@ -90,10 +90,7 @@ class AuthApi:
90
90
  _headers: Optional[Dict[StrictStr, Any]] = None,
91
91
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
92
92
  ) -> AuthorizeUser200Response:
93
- """Authorize a user
94
-
95
- This method can work in both sync and async modes based on the is_sync flag.
96
- """
93
+ """Authorize a user"""
97
94
  if self.is_sync:
98
95
  return self._authorize_user_sync(
99
96
  authorize_user_request=authorize_user_request,
@@ -130,10 +127,7 @@ class AuthApi:
130
127
  _headers: Optional[Dict[StrictStr, Any]] = None,
131
128
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
132
129
  ) -> ApiResponse[AuthorizeUser200Response]:
133
- """Authorize a user with HTTP info
134
-
135
- This method can work in both sync and async modes based on the is_sync flag.
136
- """
130
+ """Authorize a user with HTTP info"""
137
131
  if self.is_sync:
138
132
  return self._authorize_user_sync_with_http_info(
139
133
  authorize_user_request=authorize_user_request,
@@ -170,10 +164,7 @@ class AuthApi:
170
164
  _headers: Optional[Dict[StrictStr, Any]] = None,
171
165
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
172
166
  ) -> RESTResponseType:
173
- """Authorize a user without preloading content
174
-
175
- This method can work in both sync and async modes based on the is_sync flag.
176
- """
167
+ """Authorize a user without preloading content"""
177
168
  if self.is_sync:
178
169
  return self._authorize_user_sync_without_preload_content(
179
170
  authorize_user_request=authorize_user_request,
@@ -541,10 +532,7 @@ class AuthApi:
541
532
  _headers: Optional[Dict[StrictStr, Any]] = None,
542
533
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
543
534
  ) -> CreateApiKey200Response:
544
- """Create API Key
545
-
546
- This method can work in both sync and async modes based on the is_sync flag.
547
- """
535
+ """Create API Key"""
548
536
  if self.is_sync:
549
537
  return self._create_api_key_sync(
550
538
  create_api_key_request=create_api_key_request,
@@ -581,10 +569,7 @@ class AuthApi:
581
569
  _headers: Optional[Dict[StrictStr, Any]] = None,
582
570
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
583
571
  ) -> ApiResponse[CreateApiKey200Response]:
584
- """Create API Key with HTTP info
585
-
586
- This method can work in both sync and async modes based on the is_sync flag.
587
- """
572
+ """Create API Key with HTTP info"""
588
573
  if self.is_sync:
589
574
  return self._create_api_key_sync_with_http_info(
590
575
  create_api_key_request=create_api_key_request,
@@ -621,10 +606,7 @@ class AuthApi:
621
606
  _headers: Optional[Dict[StrictStr, Any]] = None,
622
607
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
623
608
  ) -> RESTResponseType:
624
- """Create API Key without preloading content
625
-
626
- This method can work in both sync and async modes based on the is_sync flag.
627
- """
609
+ """Create API Key without preloading content"""
628
610
  if self.is_sync:
629
611
  return self._create_api_key_sync_without_preload_content(
630
612
  create_api_key_request=create_api_key_request,
@@ -992,10 +974,7 @@ class AuthApi:
992
974
  _headers: Optional[Dict[StrictStr, Any]] = None,
993
975
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
994
976
  ) -> object:
995
- """Delete API Key
996
-
997
- This method can work in both sync and async modes based on the is_sync flag.
998
- """
977
+ """Delete API Key"""
999
978
  if self.is_sync:
1000
979
  return self._delete_api_key_sync(
1001
980
  id=id,
@@ -1032,10 +1011,7 @@ class AuthApi:
1032
1011
  _headers: Optional[Dict[StrictStr, Any]] = None,
1033
1012
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1034
1013
  ) -> ApiResponse[object]:
1035
- """Delete API Key with HTTP info
1036
-
1037
- This method can work in both sync and async modes based on the is_sync flag.
1038
- """
1014
+ """Delete API Key with HTTP info"""
1039
1015
  if self.is_sync:
1040
1016
  return self._delete_api_key_sync_with_http_info(
1041
1017
  id=id,
@@ -1072,10 +1048,7 @@ class AuthApi:
1072
1048
  _headers: Optional[Dict[StrictStr, Any]] = None,
1073
1049
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1074
1050
  ) -> RESTResponseType:
1075
- """Delete API Key without preloading content
1076
-
1077
- This method can work in both sync and async modes based on the is_sync flag.
1078
- """
1051
+ """Delete API Key without preloading content"""
1079
1052
  if self.is_sync:
1080
1053
  return self._delete_api_key_sync_without_preload_content(
1081
1054
  id=id,
@@ -1434,10 +1407,7 @@ class AuthApi:
1434
1407
  _headers: Optional[Dict[StrictStr, Any]] = None,
1435
1408
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1436
1409
  ) -> List[GetApiKeys200ResponseInner]:
1437
- """Get API Keys
1438
-
1439
- This method can work in both sync and async modes based on the is_sync flag.
1440
- """
1410
+ """Get API Keys"""
1441
1411
  if self.is_sync:
1442
1412
  return self._get_api_keys_sync(
1443
1413
  _request_timeout=_request_timeout,
@@ -1471,10 +1441,7 @@ class AuthApi:
1471
1441
  _headers: Optional[Dict[StrictStr, Any]] = None,
1472
1442
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1473
1443
  ) -> ApiResponse[List[GetApiKeys200ResponseInner]]:
1474
- """Get API Keys with HTTP info
1475
-
1476
- This method can work in both sync and async modes based on the is_sync flag.
1477
- """
1444
+ """Get API Keys with HTTP info"""
1478
1445
  if self.is_sync:
1479
1446
  return self._get_api_keys_sync_with_http_info(
1480
1447
  _request_timeout=_request_timeout,
@@ -1508,10 +1475,7 @@ class AuthApi:
1508
1475
  _headers: Optional[Dict[StrictStr, Any]] = None,
1509
1476
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1510
1477
  ) -> RESTResponseType:
1511
- """Get API Keys without preloading content
1512
-
1513
- This method can work in both sync and async modes based on the is_sync flag.
1514
- """
1478
+ """Get API Keys without preloading content"""
1515
1479
  if self.is_sync:
1516
1480
  return self._get_api_keys_sync_without_preload_content(
1517
1481
  _request_timeout=_request_timeout,
@@ -1846,10 +1810,7 @@ class AuthApi:
1846
1810
  _headers: Optional[Dict[StrictStr, Any]] = None,
1847
1811
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1848
1812
  ) -> str:
1849
- """Get Google Auth URL
1850
-
1851
- This method can work in both sync and async modes based on the is_sync flag.
1852
- """
1813
+ """Get Google Auth URL"""
1853
1814
  if self.is_sync:
1854
1815
  return self._get_google_auth_url_sync(
1855
1816
  origin=origin,
@@ -1886,10 +1847,7 @@ class AuthApi:
1886
1847
  _headers: Optional[Dict[StrictStr, Any]] = None,
1887
1848
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1888
1849
  ) -> ApiResponse[str]:
1889
- """Get Google Auth URL with HTTP info
1890
-
1891
- This method can work in both sync and async modes based on the is_sync flag.
1892
- """
1850
+ """Get Google Auth URL with HTTP info"""
1893
1851
  if self.is_sync:
1894
1852
  return self._get_google_auth_url_sync_with_http_info(
1895
1853
  origin=origin,
@@ -1926,10 +1884,7 @@ class AuthApi:
1926
1884
  _headers: Optional[Dict[StrictStr, Any]] = None,
1927
1885
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1928
1886
  ) -> RESTResponseType:
1929
- """Get Google Auth URL without preloading content
1930
-
1931
- This method can work in both sync and async modes based on the is_sync flag.
1932
- """
1887
+ """Get Google Auth URL without preloading content"""
1933
1888
  if self.is_sync:
1934
1889
  return self._get_google_auth_url_sync_without_preload_content(
1935
1890
  origin=origin,
@@ -2293,10 +2248,7 @@ class AuthApi:
2293
2248
  _headers: Optional[Dict[StrictStr, Any]] = None,
2294
2249
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2295
2250
  ) -> OauthCallback200Response:
2296
- """OAuth Callback
2297
-
2298
- This method can work in both sync and async modes based on the is_sync flag.
2299
- """
2251
+ """OAuth Callback"""
2300
2252
  if self.is_sync:
2301
2253
  return self._oauth_callback_sync(
2302
2254
  code=code,
@@ -2345,10 +2297,7 @@ class AuthApi:
2345
2297
  _headers: Optional[Dict[StrictStr, Any]] = None,
2346
2298
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2347
2299
  ) -> ApiResponse[OauthCallback200Response]:
2348
- """OAuth Callback with HTTP info
2349
-
2350
- This method can work in both sync and async modes based on the is_sync flag.
2351
- """
2300
+ """OAuth Callback with HTTP info"""
2352
2301
  if self.is_sync:
2353
2302
  return self._oauth_callback_sync_with_http_info(
2354
2303
  code=code,
@@ -2397,10 +2346,7 @@ class AuthApi:
2397
2346
  _headers: Optional[Dict[StrictStr, Any]] = None,
2398
2347
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2399
2348
  ) -> RESTResponseType:
2400
- """OAuth Callback without preloading content
2401
-
2402
- This method can work in both sync and async modes based on the is_sync flag.
2403
- """
2349
+ """OAuth Callback without preloading content"""
2404
2350
  if self.is_sync:
2405
2351
  return self._oauth_callback_sync_without_preload_content(
2406
2352
  code=code,
@@ -2863,10 +2809,7 @@ class AuthApi:
2863
2809
  _headers: Optional[Dict[StrictStr, Any]] = None,
2864
2810
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2865
2811
  ) -> RefreshTokenInfo200Response:
2866
- """Refresh token info
2867
-
2868
- This method can work in both sync and async modes based on the is_sync flag.
2869
- """
2812
+ """Refresh token info"""
2870
2813
  if self.is_sync:
2871
2814
  return self._refresh_token_info_sync(
2872
2815
  x_refresh_token=x_refresh_token,
@@ -2906,10 +2849,7 @@ class AuthApi:
2906
2849
  _headers: Optional[Dict[StrictStr, Any]] = None,
2907
2850
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2908
2851
  ) -> ApiResponse[RefreshTokenInfo200Response]:
2909
- """Refresh token info with HTTP info
2910
-
2911
- This method can work in both sync and async modes based on the is_sync flag.
2912
- """
2852
+ """Refresh token info with HTTP info"""
2913
2853
  if self.is_sync:
2914
2854
  return self._refresh_token_info_sync_with_http_info(
2915
2855
  x_refresh_token=x_refresh_token,
@@ -2949,10 +2889,7 @@ class AuthApi:
2949
2889
  _headers: Optional[Dict[StrictStr, Any]] = None,
2950
2890
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2951
2891
  ) -> RESTResponseType:
2952
- """Refresh token info without preloading content
2953
-
2954
- This method can work in both sync and async modes based on the is_sync flag.
2955
- """
2892
+ """Refresh token info without preloading content"""
2956
2893
  if self.is_sync:
2957
2894
  return self._refresh_token_info_sync_without_preload_content(
2958
2895
  x_refresh_token=x_refresh_token,
@@ -3331,10 +3268,7 @@ class AuthApi:
3331
3268
  _headers: Optional[Dict[StrictStr, Any]] = None,
3332
3269
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
3333
3270
  ) -> RotateTokens200Response:
3334
- """Refresh token scopes
3335
-
3336
- This method can work in both sync and async modes based on the is_sync flag.
3337
- """
3271
+ """Refresh token scopes"""
3338
3272
  if self.is_sync:
3339
3273
  return self._refresh_token_scopes_sync(
3340
3274
  x_refresh_token=x_refresh_token,
@@ -3374,10 +3308,7 @@ class AuthApi:
3374
3308
  _headers: Optional[Dict[StrictStr, Any]] = None,
3375
3309
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
3376
3310
  ) -> ApiResponse[RotateTokens200Response]:
3377
- """Refresh token scopes with HTTP info
3378
-
3379
- This method can work in both sync and async modes based on the is_sync flag.
3380
- """
3311
+ """Refresh token scopes with HTTP info"""
3381
3312
  if self.is_sync:
3382
3313
  return self._refresh_token_scopes_sync_with_http_info(
3383
3314
  x_refresh_token=x_refresh_token,
@@ -3417,10 +3348,7 @@ class AuthApi:
3417
3348
  _headers: Optional[Dict[StrictStr, Any]] = None,
3418
3349
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
3419
3350
  ) -> RESTResponseType:
3420
- """Refresh token scopes without preloading content
3421
-
3422
- This method can work in both sync and async modes based on the is_sync flag.
3423
- """
3351
+ """Refresh token scopes without preloading content"""
3424
3352
  if self.is_sync:
3425
3353
  return self._refresh_token_scopes_sync_without_preload_content(
3426
3354
  x_refresh_token=x_refresh_token,
@@ -3799,10 +3727,7 @@ class AuthApi:
3799
3727
  _headers: Optional[Dict[StrictStr, Any]] = None,
3800
3728
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
3801
3729
  ) -> RotateTokens200Response:
3802
- """Rotate tokens
3803
-
3804
- This method can work in both sync and async modes based on the is_sync flag.
3805
- """
3730
+ """Rotate tokens"""
3806
3731
  if self.is_sync:
3807
3732
  return self._rotate_tokens_sync(
3808
3733
  x_refresh_token=x_refresh_token,
@@ -3842,10 +3767,7 @@ class AuthApi:
3842
3767
  _headers: Optional[Dict[StrictStr, Any]] = None,
3843
3768
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
3844
3769
  ) -> ApiResponse[RotateTokens200Response]:
3845
- """Rotate tokens with HTTP info
3846
-
3847
- This method can work in both sync and async modes based on the is_sync flag.
3848
- """
3770
+ """Rotate tokens with HTTP info"""
3849
3771
  if self.is_sync:
3850
3772
  return self._rotate_tokens_sync_with_http_info(
3851
3773
  x_refresh_token=x_refresh_token,
@@ -3885,10 +3807,7 @@ class AuthApi:
3885
3807
  _headers: Optional[Dict[StrictStr, Any]] = None,
3886
3808
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
3887
3809
  ) -> RESTResponseType:
3888
- """Rotate tokens without preloading content
3889
-
3890
- This method can work in both sync and async modes based on the is_sync flag.
3891
- """
3810
+ """Rotate tokens without preloading content"""
3892
3811
  if self.is_sync:
3893
3812
  return self._rotate_tokens_sync_without_preload_content(
3894
3813
  x_refresh_token=x_refresh_token,
@@ -4267,10 +4186,7 @@ class AuthApi:
4267
4186
  _headers: Optional[Dict[StrictStr, Any]] = None,
4268
4187
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
4269
4188
  ) -> TokenInfo200Response:
4270
- """Token info
4271
-
4272
- This method can work in both sync and async modes based on the is_sync flag.
4273
- """
4189
+ """Token info"""
4274
4190
  if self.is_sync:
4275
4191
  return self._token_info_sync(
4276
4192
  x_refresh_token=x_refresh_token,
@@ -4310,10 +4226,7 @@ class AuthApi:
4310
4226
  _headers: Optional[Dict[StrictStr, Any]] = None,
4311
4227
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
4312
4228
  ) -> ApiResponse[TokenInfo200Response]:
4313
- """Token info with HTTP info
4314
-
4315
- This method can work in both sync and async modes based on the is_sync flag.
4316
- """
4229
+ """Token info with HTTP info"""
4317
4230
  if self.is_sync:
4318
4231
  return self._token_info_sync_with_http_info(
4319
4232
  x_refresh_token=x_refresh_token,
@@ -4353,10 +4266,7 @@ class AuthApi:
4353
4266
  _headers: Optional[Dict[StrictStr, Any]] = None,
4354
4267
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
4355
4268
  ) -> RESTResponseType:
4356
- """Token info without preloading content
4357
-
4358
- This method can work in both sync and async modes based on the is_sync flag.
4359
- """
4269
+ """Token info without preloading content"""
4360
4270
  if self.is_sync:
4361
4271
  return self._token_info_sync_without_preload_content(
4362
4272
  x_refresh_token=x_refresh_token,
@@ -4731,10 +4641,7 @@ class AuthApi:
4731
4641
  _headers: Optional[Dict[StrictStr, Any]] = None,
4732
4642
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
4733
4643
  ) -> Verify200Response:
4734
- """Verify Bearer Token
4735
-
4736
- This method can work in both sync and async modes based on the is_sync flag.
4737
- """
4644
+ """Verify Bearer Token"""
4738
4645
  if self.is_sync:
4739
4646
  return self._verify_sync(
4740
4647
  _request_timeout=_request_timeout,
@@ -4768,10 +4675,7 @@ class AuthApi:
4768
4675
  _headers: Optional[Dict[StrictStr, Any]] = None,
4769
4676
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
4770
4677
  ) -> ApiResponse[Verify200Response]:
4771
- """Verify Bearer Token with HTTP info
4772
-
4773
- This method can work in both sync and async modes based on the is_sync flag.
4774
- """
4678
+ """Verify Bearer Token with HTTP info"""
4775
4679
  if self.is_sync:
4776
4680
  return self._verify_sync_with_http_info(
4777
4681
  _request_timeout=_request_timeout,
@@ -4805,10 +4709,7 @@ class AuthApi:
4805
4709
  _headers: Optional[Dict[StrictStr, Any]] = None,
4806
4710
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
4807
4711
  ) -> RESTResponseType:
4808
- """Verify Bearer Token without preloading content
4809
-
4810
- This method can work in both sync and async modes based on the is_sync flag.
4811
- """
4712
+ """Verify Bearer Token without preloading content"""
4812
4713
  if self.is_sync:
4813
4714
  return self._verify_sync_without_preload_content(
4814
4715
  _request_timeout=_request_timeout,
@@ -5143,10 +5044,7 @@ class AuthApi:
5143
5044
  _headers: Optional[Dict[StrictStr, Any]] = None,
5144
5045
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
5145
5046
  ) -> Verify200Response:
5146
- """Verify API Key
5147
-
5148
- This method can work in both sync and async modes based on the is_sync flag.
5149
- """
5047
+ """Verify API Key"""
5150
5048
  if self.is_sync:
5151
5049
  return self._verify_api_key_sync(
5152
5050
  api_key=api_key,
@@ -5183,10 +5081,7 @@ class AuthApi:
5183
5081
  _headers: Optional[Dict[StrictStr, Any]] = None,
5184
5082
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
5185
5083
  ) -> ApiResponse[Verify200Response]:
5186
- """Verify API Key with HTTP info
5187
-
5188
- This method can work in both sync and async modes based on the is_sync flag.
5189
- """
5084
+ """Verify API Key with HTTP info"""
5190
5085
  if self.is_sync:
5191
5086
  return self._verify_api_key_sync_with_http_info(
5192
5087
  api_key=api_key,
@@ -5223,10 +5118,7 @@ class AuthApi:
5223
5118
  _headers: Optional[Dict[StrictStr, Any]] = None,
5224
5119
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
5225
5120
  ) -> RESTResponseType:
5226
- """Verify API Key without preloading content
5227
-
5228
- This method can work in both sync and async modes based on the is_sync flag.
5229
- """
5121
+ """Verify API Key without preloading content"""
5230
5122
  if self.is_sync:
5231
5123
  return self._verify_api_key_sync_without_preload_content(
5232
5124
  api_key=api_key,
@@ -75,10 +75,7 @@ class ServiceApi:
75
75
  _headers: Optional[Dict[StrictStr, Any]] = None,
76
76
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
77
77
  ) -> ListWallets200ResponseUserValue:
78
- """Get the balances of a user by email
79
-
80
- This method can work in both sync and async modes based on the is_sync flag.
81
- """
78
+ """Get the balances of a user by email"""
82
79
  if self.is_sync:
83
80
  return self._get_balances_by_email_sync(
84
81
  email=email,
@@ -121,10 +118,7 @@ class ServiceApi:
121
118
  _headers: Optional[Dict[StrictStr, Any]] = None,
122
119
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
123
120
  ) -> ApiResponse[ListWallets200ResponseUserValue]:
124
- """Get the balances of a user by email with HTTP info
125
-
126
- This method can work in both sync and async modes based on the is_sync flag.
127
- """
121
+ """Get the balances of a user by email with HTTP info"""
128
122
  if self.is_sync:
129
123
  return self._get_balances_by_email_sync_with_http_info(
130
124
  email=email,
@@ -167,10 +161,7 @@ class ServiceApi:
167
161
  _headers: Optional[Dict[StrictStr, Any]] = None,
168
162
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
169
163
  ) -> RESTResponseType:
170
- """Get the balances of a user by email without preloading content
171
-
172
- This method can work in both sync and async modes based on the is_sync flag.
173
- """
164
+ """Get the balances of a user by email without preloading content"""
174
165
  if self.is_sync:
175
166
  return self._get_balances_by_email_sync_without_preload_content(
176
167
  email=email,