crypticorn 2.17.0rc4__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 (151) hide show
  1. crypticorn/auth/client/api/admin_api.py +6 -26
  2. crypticorn/auth/client/api/auth_api.py +36 -148
  3. crypticorn/auth/client/api/service_api.py +3 -16
  4. crypticorn/auth/client/api/user_api.py +33 -136
  5. crypticorn/auth/client/api/wallet_api.py +18 -76
  6. crypticorn/auth/client/api_client.py +0 -5
  7. crypticorn/auth/client/models/add_wallet_request.py +1 -1
  8. crypticorn/auth/client/models/authorize_user_request.py +1 -1
  9. crypticorn/auth/client/models/create_api_key_request.py +1 -1
  10. crypticorn/auth/client/models/create_user_request.py +1 -1
  11. crypticorn/auth/client/models/get_api_keys200_response_inner.py +1 -1
  12. crypticorn/auth/client/models/list_wallets200_response_balances_inner_sale_round.py +1 -1
  13. crypticorn/auth/client/models/list_wallets200_response_balances_inner_wallet.py +1 -1
  14. crypticorn/auth/client/models/list_wallets200_response_balances_inner_wallet_vesting_wallets_inner.py +1 -1
  15. crypticorn/auth/client/models/list_wallets200_response_data_inner.py +1 -1
  16. crypticorn/auth/client/models/logout_default_response.py +1 -1
  17. crypticorn/auth/client/models/oauth_callback200_response_user.py +1 -1
  18. crypticorn/auth/client/models/refresh_token_info200_response_user_session.py +1 -1
  19. crypticorn/auth/client/models/rotate_tokens200_response.py +1 -1
  20. crypticorn/auth/client/models/token_info200_response.py +1 -1
  21. crypticorn/auth/client/models/update_user_request.py +1 -1
  22. crypticorn/auth/client/models/user_by_username200_response.py +1 -1
  23. crypticorn/auth/client/models/verify200_response.py +1 -1
  24. crypticorn/auth/client/models/verify_email200_response_auth.py +1 -1
  25. crypticorn/auth/client/models/verify_email200_response_auth_auth.py +1 -1
  26. crypticorn/auth/client/models/whoami200_response.py +1 -1
  27. crypticorn/cli/init.py +1 -1
  28. crypticorn/cli/templates/.env.docker.temp +3 -0
  29. crypticorn/cli/templates/.env.example.temp +4 -0
  30. crypticorn/cli/templates/Dockerfile +5 -2
  31. crypticorn/client.py +0 -1
  32. crypticorn/common/auth.py +31 -4
  33. crypticorn/common/decorators.py +1 -2
  34. crypticorn/common/enums.py +0 -2
  35. crypticorn/common/errors.py +10 -0
  36. crypticorn/common/metrics.py +1 -1
  37. crypticorn/common/middleware.py +0 -1
  38. crypticorn/common/pagination.py +116 -24
  39. crypticorn/common/router/admin_router.py +1 -11
  40. crypticorn/common/router/status_router.py +33 -2
  41. crypticorn/common/scopes.py +2 -2
  42. crypticorn/common/utils.py +1 -2
  43. crypticorn/dex/__init__.py +6 -0
  44. crypticorn/dex/client/__init__.py +49 -0
  45. crypticorn/dex/client/api/__init__.py +6 -0
  46. crypticorn/dex/client/api/admin_api.py +2983 -0
  47. crypticorn/dex/client/api/signals_api.py +1794 -0
  48. crypticorn/dex/client/api/status_api.py +889 -0
  49. crypticorn/dex/client/api_client.py +753 -0
  50. crypticorn/dex/client/api_response.py +20 -0
  51. crypticorn/dex/client/configuration.py +620 -0
  52. crypticorn/dex/client/exceptions.py +220 -0
  53. crypticorn/dex/client/models/__init__.py +30 -0
  54. crypticorn/dex/client/models/api_error_identifier.py +121 -0
  55. crypticorn/dex/client/models/api_error_level.py +37 -0
  56. crypticorn/dex/client/models/api_error_type.py +37 -0
  57. crypticorn/dex/client/models/exception_detail.py +117 -0
  58. crypticorn/dex/client/models/log_level.py +38 -0
  59. crypticorn/dex/client/models/paginated_response_signal_with_token.py +134 -0
  60. crypticorn/dex/client/models/risk.py +86 -0
  61. crypticorn/dex/client/models/signal_overview_stats.py +156 -0
  62. crypticorn/dex/client/models/signal_volume.py +84 -0
  63. crypticorn/dex/client/models/signal_with_token.py +163 -0
  64. crypticorn/dex/client/models/token_data.py +127 -0
  65. crypticorn/dex/client/models/token_detail.py +116 -0
  66. crypticorn/dex/client/py.typed +0 -0
  67. crypticorn/dex/client/rest.py +217 -0
  68. crypticorn/dex/main.py +1 -0
  69. crypticorn/hive/client/api/admin_api.py +18 -75
  70. crypticorn/hive/client/api/data_api.py +6 -28
  71. crypticorn/hive/client/api/models_api.py +22 -88
  72. crypticorn/hive/client/api/status_api.py +6 -27
  73. crypticorn/hive/client/api_client.py +0 -5
  74. crypticorn/hive/client/models/coin_info.py +1 -1
  75. crypticorn/hive/client/models/exception_detail.py +1 -1
  76. crypticorn/hive/client/models/target_info.py +1 -1
  77. crypticorn/hive/utils.py +2 -2
  78. crypticorn/klines/client/api/admin_api.py +18 -75
  79. crypticorn/klines/client/api/change_in_timeframe_api.py +3 -16
  80. crypticorn/klines/client/api/funding_rates_api.py +3 -16
  81. crypticorn/klines/client/api/ohlcv_data_api.py +3 -16
  82. crypticorn/klines/client/api/status_api.py +6 -27
  83. crypticorn/klines/client/api/symbols_api.py +3 -16
  84. crypticorn/klines/client/api/udf_api.py +18 -74
  85. crypticorn/klines/client/api_client.py +0 -5
  86. crypticorn/klines/client/models/exception_detail.py +1 -1
  87. crypticorn/klines/client/models/ohlcv.py +1 -1
  88. crypticorn/klines/client/models/symbol_group.py +1 -1
  89. crypticorn/klines/client/models/udf_config.py +1 -1
  90. crypticorn/metrics/client/api/admin_api.py +18 -75
  91. crypticorn/metrics/client/api/exchanges_api.py +12 -52
  92. crypticorn/metrics/client/api/indicators_api.py +6 -28
  93. crypticorn/metrics/client/api/logs_api.py +3 -16
  94. crypticorn/metrics/client/api/marketcap_api.py +12 -52
  95. crypticorn/metrics/client/api/markets_api.py +3 -16
  96. crypticorn/metrics/client/api/quote_currencies_api.py +3 -16
  97. crypticorn/metrics/client/api/status_api.py +6 -27
  98. crypticorn/metrics/client/api/tokens_api.py +6 -26
  99. crypticorn/metrics/client/api_client.py +0 -5
  100. crypticorn/metrics/client/models/exception_detail.py +1 -1
  101. crypticorn/metrics/client/models/exchange_mapping.py +1 -1
  102. crypticorn/metrics/client/models/marketcap_ranking.py +1 -1
  103. crypticorn/metrics/client/models/marketcap_symbol_ranking.py +1 -1
  104. crypticorn/metrics/client/models/ohlcv.py +1 -1
  105. crypticorn/pay/client/api/admin_api.py +21 -87
  106. crypticorn/pay/client/api/now_payments_api.py +15 -64
  107. crypticorn/pay/client/api/payments_api.py +6 -28
  108. crypticorn/pay/client/api/products_api.py +12 -52
  109. crypticorn/pay/client/api/status_api.py +6 -27
  110. crypticorn/pay/client/api_client.py +0 -5
  111. crypticorn/pay/client/models/exception_detail.py +1 -1
  112. crypticorn/pay/client/models/now_create_invoice_req.py +1 -1
  113. crypticorn/pay/client/models/now_create_invoice_res.py +1 -1
  114. crypticorn/pay/client/models/product.py +1 -1
  115. crypticorn/pay/client/models/product_create.py +1 -1
  116. crypticorn/pay/client/models/product_update.py +1 -1
  117. crypticorn/trade/client/__init__.py +15 -0
  118. crypticorn/trade/client/api/admin_api.py +43 -107
  119. crypticorn/trade/client/api/api_keys_api.py +207 -184
  120. crypticorn/trade/client/api/bots_api.py +6557 -240
  121. crypticorn/trade/client/api/exchanges_api.py +9 -36
  122. crypticorn/trade/client/api/notifications_api.py +18 -72
  123. crypticorn/trade/client/api/orders_api.py +220 -115
  124. crypticorn/trade/client/api/status_api.py +6 -24
  125. crypticorn/trade/client/api/strategies_api.py +15 -60
  126. crypticorn/trade/client/api/trading_actions_api.py +431 -112
  127. crypticorn/trade/client/models/__init__.py +15 -0
  128. crypticorn/trade/client/models/bot.py +7 -18
  129. crypticorn/trade/client/models/bot_create.py +17 -1
  130. crypticorn/trade/client/models/bot_update.py +17 -1
  131. crypticorn/trade/client/models/exchange_key_create.py +17 -1
  132. crypticorn/trade/client/models/exchange_key_update.py +17 -1
  133. crypticorn/trade/client/models/notification.py +17 -1
  134. crypticorn/trade/client/models/notification_create.py +17 -1
  135. crypticorn/trade/client/models/notification_update.py +17 -1
  136. crypticorn/trade/client/models/orders_count.py +88 -0
  137. crypticorn/trade/client/models/paginated_response_futures_trading_action.py +134 -0
  138. crypticorn/trade/client/models/paginated_response_order.py +134 -0
  139. crypticorn/trade/client/models/paginated_response_union_futures_trading_action_spot_trading_action.py +141 -0
  140. crypticorn/trade/client/models/paginated_response_union_futures_trading_action_spot_trading_action_data_inner.py +165 -0
  141. crypticorn/trade/client/models/pn_l.py +95 -0
  142. crypticorn/trade/client/models/spot_trading_action.py +207 -0
  143. crypticorn/trade/client/models/strategy.py +17 -1
  144. crypticorn/trade/client/models/strategy_create.py +17 -1
  145. crypticorn/trade/client/models/strategy_update.py +17 -1
  146. {crypticorn-2.17.0rc4.dist-info → crypticorn-2.17.0rc6.dist-info}/METADATA +3 -3
  147. {crypticorn-2.17.0rc4.dist-info → crypticorn-2.17.0rc6.dist-info}/RECORD +151 -116
  148. {crypticorn-2.17.0rc4.dist-info → crypticorn-2.17.0rc6.dist-info}/WHEEL +0 -0
  149. {crypticorn-2.17.0rc4.dist-info → crypticorn-2.17.0rc6.dist-info}/entry_points.txt +0 -0
  150. {crypticorn-2.17.0rc4.dist-info → crypticorn-2.17.0rc6.dist-info}/licenses/LICENSE +0 -0
  151. {crypticorn-2.17.0rc4.dist-info → crypticorn-2.17.0rc6.dist-info}/top_level.txt +0 -0
@@ -70,10 +70,7 @@ class ExchangesApi:
70
70
  _headers: Optional[Dict[StrictStr, Any]] = None,
71
71
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
72
72
  ) -> List[Exchange]:
73
- """Get All Exchanges
74
-
75
- This method can work in both sync and async modes based on the is_sync flag.
76
- """
73
+ """Get All Exchanges"""
77
74
  if self.is_sync:
78
75
  return self._get_all_exchanges_sync(
79
76
  _request_timeout=_request_timeout,
@@ -107,10 +104,7 @@ class ExchangesApi:
107
104
  _headers: Optional[Dict[StrictStr, Any]] = None,
108
105
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
109
106
  ) -> ApiResponse[List[Exchange]]:
110
- """Get All Exchanges with HTTP info
111
-
112
- This method can work in both sync and async modes based on the is_sync flag.
113
- """
107
+ """Get All Exchanges with HTTP info"""
114
108
  if self.is_sync:
115
109
  return self._get_all_exchanges_sync_with_http_info(
116
110
  _request_timeout=_request_timeout,
@@ -144,10 +138,7 @@ class ExchangesApi:
144
138
  _headers: Optional[Dict[StrictStr, Any]] = None,
145
139
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
146
140
  ) -> RESTResponseType:
147
- """Get All Exchanges without preloading content
148
-
149
- This method can work in both sync and async modes based on the is_sync flag.
150
- """
141
+ """Get All Exchanges without preloading content"""
151
142
  if self.is_sync:
152
143
  return self._get_all_exchanges_sync_without_preload_content(
153
144
  _request_timeout=_request_timeout,
@@ -481,10 +472,7 @@ class ExchangesApi:
481
472
  _headers: Optional[Dict[StrictStr, Any]] = None,
482
473
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
483
474
  ) -> List[Exchange]:
484
- """Get Planned Exchanges
485
-
486
- This method can work in both sync and async modes based on the is_sync flag.
487
- """
475
+ """Get Planned Exchanges"""
488
476
  if self.is_sync:
489
477
  return self._get_planned_exchanges_sync(
490
478
  _request_timeout=_request_timeout,
@@ -518,10 +506,7 @@ class ExchangesApi:
518
506
  _headers: Optional[Dict[StrictStr, Any]] = None,
519
507
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
520
508
  ) -> ApiResponse[List[Exchange]]:
521
- """Get Planned Exchanges with HTTP info
522
-
523
- This method can work in both sync and async modes based on the is_sync flag.
524
- """
509
+ """Get Planned Exchanges with HTTP info"""
525
510
  if self.is_sync:
526
511
  return self._get_planned_exchanges_sync_with_http_info(
527
512
  _request_timeout=_request_timeout,
@@ -555,10 +540,7 @@ class ExchangesApi:
555
540
  _headers: Optional[Dict[StrictStr, Any]] = None,
556
541
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
557
542
  ) -> RESTResponseType:
558
- """Get Planned Exchanges without preloading content
559
-
560
- This method can work in both sync and async modes based on the is_sync flag.
561
- """
543
+ """Get Planned Exchanges without preloading content"""
562
544
  if self.is_sync:
563
545
  return self._get_planned_exchanges_sync_without_preload_content(
564
546
  _request_timeout=_request_timeout,
@@ -892,10 +874,7 @@ class ExchangesApi:
892
874
  _headers: Optional[Dict[StrictStr, Any]] = None,
893
875
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
894
876
  ) -> List[Exchange]:
895
- """Get Tradeable Exchanges
896
-
897
- This method can work in both sync and async modes based on the is_sync flag.
898
- """
877
+ """Get Tradeable Exchanges"""
899
878
  if self.is_sync:
900
879
  return self._get_tradeable_exchanges_sync(
901
880
  _request_timeout=_request_timeout,
@@ -929,10 +908,7 @@ class ExchangesApi:
929
908
  _headers: Optional[Dict[StrictStr, Any]] = None,
930
909
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
931
910
  ) -> ApiResponse[List[Exchange]]:
932
- """Get Tradeable Exchanges with HTTP info
933
-
934
- This method can work in both sync and async modes based on the is_sync flag.
935
- """
911
+ """Get Tradeable Exchanges with HTTP info"""
936
912
  if self.is_sync:
937
913
  return self._get_tradeable_exchanges_sync_with_http_info(
938
914
  _request_timeout=_request_timeout,
@@ -966,10 +942,7 @@ class ExchangesApi:
966
942
  _headers: Optional[Dict[StrictStr, Any]] = None,
967
943
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
968
944
  ) -> RESTResponseType:
969
- """Get Tradeable Exchanges without preloading content
970
-
971
- This method can work in both sync and async modes based on the is_sync flag.
972
- """
945
+ """Get Tradeable Exchanges without preloading content"""
973
946
  if self.is_sync:
974
947
  return self._get_tradeable_exchanges_sync_without_preload_content(
975
948
  _request_timeout=_request_timeout,
@@ -74,10 +74,7 @@ class NotificationsApi:
74
74
  _headers: Optional[Dict[StrictStr, Any]] = None,
75
75
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
76
76
  ) -> object:
77
- """Create Notification
78
-
79
- This method can work in both sync and async modes based on the is_sync flag.
80
- """
77
+ """Create Notification"""
81
78
  if self.is_sync:
82
79
  return self._create_notification_sync(
83
80
  notification_create=notification_create,
@@ -114,10 +111,7 @@ class NotificationsApi:
114
111
  _headers: Optional[Dict[StrictStr, Any]] = None,
115
112
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
116
113
  ) -> ApiResponse[object]:
117
- """Create Notification with HTTP info
118
-
119
- This method can work in both sync and async modes based on the is_sync flag.
120
- """
114
+ """Create Notification with HTTP info"""
121
115
  if self.is_sync:
122
116
  return self._create_notification_sync_with_http_info(
123
117
  notification_create=notification_create,
@@ -154,10 +148,7 @@ class NotificationsApi:
154
148
  _headers: Optional[Dict[StrictStr, Any]] = None,
155
149
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
156
150
  ) -> RESTResponseType:
157
- """Create Notification without preloading content
158
-
159
- This method can work in both sync and async modes based on the is_sync flag.
160
- """
151
+ """Create Notification without preloading content"""
161
152
  if self.is_sync:
162
153
  return self._create_notification_sync_without_preload_content(
163
154
  notification_create=notification_create,
@@ -525,10 +516,7 @@ class NotificationsApi:
525
516
  _headers: Optional[Dict[StrictStr, Any]] = None,
526
517
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
527
518
  ) -> None:
528
- """Delete Notification
529
-
530
- This method can work in both sync and async modes based on the is_sync flag.
531
- """
519
+ """Delete Notification"""
532
520
  if self.is_sync:
533
521
  return self._delete_notification_sync(
534
522
  id=id,
@@ -565,10 +553,7 @@ class NotificationsApi:
565
553
  _headers: Optional[Dict[StrictStr, Any]] = None,
566
554
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
567
555
  ) -> ApiResponse[None]:
568
- """Delete Notification with HTTP info
569
-
570
- This method can work in both sync and async modes based on the is_sync flag.
571
- """
556
+ """Delete Notification with HTTP info"""
572
557
  if self.is_sync:
573
558
  return self._delete_notification_sync_with_http_info(
574
559
  id=id,
@@ -605,10 +590,7 @@ class NotificationsApi:
605
590
  _headers: Optional[Dict[StrictStr, Any]] = None,
606
591
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
607
592
  ) -> RESTResponseType:
608
- """Delete Notification without preloading content
609
-
610
- This method can work in both sync and async modes based on the is_sync flag.
611
- """
593
+ """Delete Notification without preloading content"""
612
594
  if self.is_sync:
613
595
  return self._delete_notification_sync_without_preload_content(
614
596
  id=id,
@@ -962,10 +944,7 @@ class NotificationsApi:
962
944
  _headers: Optional[Dict[StrictStr, Any]] = None,
963
945
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
964
946
  ) -> None:
965
- """Delete Notifications
966
-
967
- This method can work in both sync and async modes based on the is_sync flag.
968
- """
947
+ """Delete Notifications"""
969
948
  if self.is_sync:
970
949
  return self._delete_notifications_sync(
971
950
  _request_timeout=_request_timeout,
@@ -999,10 +978,7 @@ class NotificationsApi:
999
978
  _headers: Optional[Dict[StrictStr, Any]] = None,
1000
979
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1001
980
  ) -> ApiResponse[None]:
1002
- """Delete Notifications with HTTP info
1003
-
1004
- This method can work in both sync and async modes based on the is_sync flag.
1005
- """
981
+ """Delete Notifications with HTTP info"""
1006
982
  if self.is_sync:
1007
983
  return self._delete_notifications_sync_with_http_info(
1008
984
  _request_timeout=_request_timeout,
@@ -1036,10 +1012,7 @@ class NotificationsApi:
1036
1012
  _headers: Optional[Dict[StrictStr, Any]] = None,
1037
1013
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1038
1014
  ) -> RESTResponseType:
1039
- """Delete Notifications without preloading content
1040
-
1041
- This method can work in both sync and async modes based on the is_sync flag.
1042
- """
1015
+ """Delete Notifications without preloading content"""
1043
1016
  if self.is_sync:
1044
1017
  return self._delete_notifications_sync_without_preload_content(
1045
1018
  _request_timeout=_request_timeout,
@@ -1375,10 +1348,7 @@ class NotificationsApi:
1375
1348
  _headers: Optional[Dict[StrictStr, Any]] = None,
1376
1349
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1377
1350
  ) -> List[Notification]:
1378
- """Get Notifications
1379
-
1380
- This method can work in both sync and async modes based on the is_sync flag.
1381
- """
1351
+ """Get Notifications"""
1382
1352
  if self.is_sync:
1383
1353
  return self._get_notifications_sync(
1384
1354
  limit=limit,
@@ -1418,10 +1388,7 @@ class NotificationsApi:
1418
1388
  _headers: Optional[Dict[StrictStr, Any]] = None,
1419
1389
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1420
1390
  ) -> ApiResponse[List[Notification]]:
1421
- """Get Notifications with HTTP info
1422
-
1423
- This method can work in both sync and async modes based on the is_sync flag.
1424
- """
1391
+ """Get Notifications with HTTP info"""
1425
1392
  if self.is_sync:
1426
1393
  return self._get_notifications_sync_with_http_info(
1427
1394
  limit=limit,
@@ -1461,10 +1428,7 @@ class NotificationsApi:
1461
1428
  _headers: Optional[Dict[StrictStr, Any]] = None,
1462
1429
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1463
1430
  ) -> RESTResponseType:
1464
- """Get Notifications without preloading content
1465
-
1466
- This method can work in both sync and async modes based on the is_sync flag.
1467
- """
1431
+ """Get Notifications without preloading content"""
1468
1432
  if self.is_sync:
1469
1433
  return self._get_notifications_sync_without_preload_content(
1470
1434
  limit=limit,
@@ -1850,10 +1814,7 @@ class NotificationsApi:
1850
1814
  _headers: Optional[Dict[StrictStr, Any]] = None,
1851
1815
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1852
1816
  ) -> None:
1853
- """Update Notification
1854
-
1855
- This method can work in both sync and async modes based on the is_sync flag.
1856
- """
1817
+ """Update Notification"""
1857
1818
  if self.is_sync:
1858
1819
  return self._update_notification_sync(
1859
1820
  id=id,
@@ -1893,10 +1854,7 @@ class NotificationsApi:
1893
1854
  _headers: Optional[Dict[StrictStr, Any]] = None,
1894
1855
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1895
1856
  ) -> ApiResponse[None]:
1896
- """Update Notification with HTTP info
1897
-
1898
- This method can work in both sync and async modes based on the is_sync flag.
1899
- """
1857
+ """Update Notification with HTTP info"""
1900
1858
  if self.is_sync:
1901
1859
  return self._update_notification_sync_with_http_info(
1902
1860
  id=id,
@@ -1936,10 +1894,7 @@ class NotificationsApi:
1936
1894
  _headers: Optional[Dict[StrictStr, Any]] = None,
1937
1895
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1938
1896
  ) -> RESTResponseType:
1939
- """Update Notification without preloading content
1940
-
1941
- This method can work in both sync and async modes based on the is_sync flag.
1942
- """
1897
+ """Update Notification without preloading content"""
1943
1898
  if self.is_sync:
1944
1899
  return self._update_notification_sync_without_preload_content(
1945
1900
  id=id,
@@ -2330,10 +2285,7 @@ class NotificationsApi:
2330
2285
  _headers: Optional[Dict[StrictStr, Any]] = None,
2331
2286
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2332
2287
  ) -> None:
2333
- """Update Notifications
2334
-
2335
- This method can work in both sync and async modes based on the is_sync flag.
2336
- """
2288
+ """Update Notifications"""
2337
2289
  if self.is_sync:
2338
2290
  return self._update_notifications_sync(
2339
2291
  notification_update=notification_update,
@@ -2370,10 +2322,7 @@ class NotificationsApi:
2370
2322
  _headers: Optional[Dict[StrictStr, Any]] = None,
2371
2323
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2372
2324
  ) -> ApiResponse[None]:
2373
- """Update Notifications with HTTP info
2374
-
2375
- This method can work in both sync and async modes based on the is_sync flag.
2376
- """
2325
+ """Update Notifications with HTTP info"""
2377
2326
  if self.is_sync:
2378
2327
  return self._update_notifications_sync_with_http_info(
2379
2328
  notification_update=notification_update,
@@ -2410,10 +2359,7 @@ class NotificationsApi:
2410
2359
  _headers: Optional[Dict[StrictStr, Any]] = None,
2411
2360
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2412
2361
  ) -> RESTResponseType:
2413
- """Update Notifications without preloading content
2414
-
2415
- This method can work in both sync and async modes based on the is_sync flag.
2416
- """
2362
+ """Update Notifications without preloading content"""
2417
2363
  if self.is_sync:
2418
2364
  return self._update_notifications_sync_without_preload_content(
2419
2365
  notification_update=notification_update,