revengai 1.94.0__py3-none-any.whl → 1.96.0__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.

Potentially problematic release.


This version of revengai might be problematic. Click here for more details.

@@ -15,7 +15,7 @@ from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
15
15
  from typing import Any, Dict, List, Optional, Tuple, Union
16
16
  from typing_extensions import Annotated
17
17
 
18
- from pydantic import Field, StrictBool, StrictInt, StrictStr
18
+ from pydantic import Field, StrictBool, StrictInt
19
19
  from typing import Optional
20
20
  from typing_extensions import Annotated
21
21
  from revengai.models.base_response import BaseResponse
@@ -52,7 +52,6 @@ class FunctionsAIDecompilationApi:
52
52
  self,
53
53
  function_id: StrictInt,
54
54
  function_comment_create_request: FunctionCommentCreateRequest,
55
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
56
55
  _request_timeout: Union[
57
56
  None,
58
57
  Annotated[StrictFloat, Field(gt=0)],
@@ -74,8 +73,6 @@ class FunctionsAIDecompilationApi:
74
73
  :type function_id: int
75
74
  :param function_comment_create_request: (required)
76
75
  :type function_comment_create_request: FunctionCommentCreateRequest
77
- :param authorization: API Key bearer token
78
- :type authorization: str
79
76
  :param _request_timeout: timeout setting for this request. If one
80
77
  number provided, it will be total request
81
78
  timeout. It can also be a pair (tuple) of
@@ -101,7 +98,6 @@ class FunctionsAIDecompilationApi:
101
98
  _param = self._create_ai_decompilation_comment_serialize(
102
99
  function_id=function_id,
103
100
  function_comment_create_request=function_comment_create_request,
104
- authorization=authorization,
105
101
  _request_auth=_request_auth,
106
102
  _content_type=_content_type,
107
103
  _headers=_headers,
@@ -129,7 +125,6 @@ class FunctionsAIDecompilationApi:
129
125
  self,
130
126
  function_id: StrictInt,
131
127
  function_comment_create_request: FunctionCommentCreateRequest,
132
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
133
128
  _request_timeout: Union[
134
129
  None,
135
130
  Annotated[StrictFloat, Field(gt=0)],
@@ -151,8 +146,6 @@ class FunctionsAIDecompilationApi:
151
146
  :type function_id: int
152
147
  :param function_comment_create_request: (required)
153
148
  :type function_comment_create_request: FunctionCommentCreateRequest
154
- :param authorization: API Key bearer token
155
- :type authorization: str
156
149
  :param _request_timeout: timeout setting for this request. If one
157
150
  number provided, it will be total request
158
151
  timeout. It can also be a pair (tuple) of
@@ -178,7 +171,6 @@ class FunctionsAIDecompilationApi:
178
171
  _param = self._create_ai_decompilation_comment_serialize(
179
172
  function_id=function_id,
180
173
  function_comment_create_request=function_comment_create_request,
181
- authorization=authorization,
182
174
  _request_auth=_request_auth,
183
175
  _content_type=_content_type,
184
176
  _headers=_headers,
@@ -206,7 +198,6 @@ class FunctionsAIDecompilationApi:
206
198
  self,
207
199
  function_id: StrictInt,
208
200
  function_comment_create_request: FunctionCommentCreateRequest,
209
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
210
201
  _request_timeout: Union[
211
202
  None,
212
203
  Annotated[StrictFloat, Field(gt=0)],
@@ -228,8 +219,6 @@ class FunctionsAIDecompilationApi:
228
219
  :type function_id: int
229
220
  :param function_comment_create_request: (required)
230
221
  :type function_comment_create_request: FunctionCommentCreateRequest
231
- :param authorization: API Key bearer token
232
- :type authorization: str
233
222
  :param _request_timeout: timeout setting for this request. If one
234
223
  number provided, it will be total request
235
224
  timeout. It can also be a pair (tuple) of
@@ -255,7 +244,6 @@ class FunctionsAIDecompilationApi:
255
244
  _param = self._create_ai_decompilation_comment_serialize(
256
245
  function_id=function_id,
257
246
  function_comment_create_request=function_comment_create_request,
258
- authorization=authorization,
259
247
  _request_auth=_request_auth,
260
248
  _content_type=_content_type,
261
249
  _headers=_headers,
@@ -278,7 +266,6 @@ class FunctionsAIDecompilationApi:
278
266
  self,
279
267
  function_id,
280
268
  function_comment_create_request,
281
- authorization,
282
269
  _request_auth,
283
270
  _content_type,
284
271
  _headers,
@@ -304,8 +291,6 @@ class FunctionsAIDecompilationApi:
304
291
  _path_params['function_id'] = function_id
305
292
  # process the query parameters
306
293
  # process the header parameters
307
- if authorization is not None:
308
- _header_params['authorization'] = authorization
309
294
  # process the form parameters
310
295
  # process the body parameter
311
296
  if function_comment_create_request is not None:
@@ -361,7 +346,6 @@ class FunctionsAIDecompilationApi:
361
346
  def create_ai_decompilation_task(
362
347
  self,
363
348
  function_id: StrictInt,
364
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
365
349
  _request_timeout: Union[
366
350
  None,
367
351
  Annotated[StrictFloat, Field(gt=0)],
@@ -381,8 +365,6 @@ class FunctionsAIDecompilationApi:
381
365
 
382
366
  :param function_id: (required)
383
367
  :type function_id: int
384
- :param authorization: API Key bearer token
385
- :type authorization: str
386
368
  :param _request_timeout: timeout setting for this request. If one
387
369
  number provided, it will be total request
388
370
  timeout. It can also be a pair (tuple) of
@@ -407,7 +389,6 @@ class FunctionsAIDecompilationApi:
407
389
 
408
390
  _param = self._create_ai_decompilation_task_serialize(
409
391
  function_id=function_id,
410
- authorization=authorization,
411
392
  _request_auth=_request_auth,
412
393
  _content_type=_content_type,
413
394
  _headers=_headers,
@@ -437,7 +418,6 @@ class FunctionsAIDecompilationApi:
437
418
  def create_ai_decompilation_task_with_http_info(
438
419
  self,
439
420
  function_id: StrictInt,
440
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
441
421
  _request_timeout: Union[
442
422
  None,
443
423
  Annotated[StrictFloat, Field(gt=0)],
@@ -457,8 +437,6 @@ class FunctionsAIDecompilationApi:
457
437
 
458
438
  :param function_id: (required)
459
439
  :type function_id: int
460
- :param authorization: API Key bearer token
461
- :type authorization: str
462
440
  :param _request_timeout: timeout setting for this request. If one
463
441
  number provided, it will be total request
464
442
  timeout. It can also be a pair (tuple) of
@@ -483,7 +461,6 @@ class FunctionsAIDecompilationApi:
483
461
 
484
462
  _param = self._create_ai_decompilation_task_serialize(
485
463
  function_id=function_id,
486
- authorization=authorization,
487
464
  _request_auth=_request_auth,
488
465
  _content_type=_content_type,
489
466
  _headers=_headers,
@@ -513,7 +490,6 @@ class FunctionsAIDecompilationApi:
513
490
  def create_ai_decompilation_task_without_preload_content(
514
491
  self,
515
492
  function_id: StrictInt,
516
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
517
493
  _request_timeout: Union[
518
494
  None,
519
495
  Annotated[StrictFloat, Field(gt=0)],
@@ -533,8 +509,6 @@ class FunctionsAIDecompilationApi:
533
509
 
534
510
  :param function_id: (required)
535
511
  :type function_id: int
536
- :param authorization: API Key bearer token
537
- :type authorization: str
538
512
  :param _request_timeout: timeout setting for this request. If one
539
513
  number provided, it will be total request
540
514
  timeout. It can also be a pair (tuple) of
@@ -559,7 +533,6 @@ class FunctionsAIDecompilationApi:
559
533
 
560
534
  _param = self._create_ai_decompilation_task_serialize(
561
535
  function_id=function_id,
562
- authorization=authorization,
563
536
  _request_auth=_request_auth,
564
537
  _content_type=_content_type,
565
538
  _headers=_headers,
@@ -584,7 +557,6 @@ class FunctionsAIDecompilationApi:
584
557
  def _create_ai_decompilation_task_serialize(
585
558
  self,
586
559
  function_id,
587
- authorization,
588
560
  _request_auth,
589
561
  _content_type,
590
562
  _headers,
@@ -610,8 +582,6 @@ class FunctionsAIDecompilationApi:
610
582
  _path_params['function_id'] = function_id
611
583
  # process the query parameters
612
584
  # process the header parameters
613
- if authorization is not None:
614
- _header_params['authorization'] = authorization
615
585
  # process the form parameters
616
586
  # process the body parameter
617
587
 
@@ -653,7 +623,6 @@ class FunctionsAIDecompilationApi:
653
623
  self,
654
624
  comment_id: Annotated[int, Field(strict=True, ge=1)],
655
625
  function_id: StrictInt,
656
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
657
626
  _request_timeout: Union[
658
627
  None,
659
628
  Annotated[StrictFloat, Field(gt=0)],
@@ -675,8 +644,6 @@ class FunctionsAIDecompilationApi:
675
644
  :type comment_id: int
676
645
  :param function_id: (required)
677
646
  :type function_id: int
678
- :param authorization: API Key bearer token
679
- :type authorization: str
680
647
  :param _request_timeout: timeout setting for this request. If one
681
648
  number provided, it will be total request
682
649
  timeout. It can also be a pair (tuple) of
@@ -702,7 +669,6 @@ class FunctionsAIDecompilationApi:
702
669
  _param = self._delete_ai_decompilation_comment_serialize(
703
670
  comment_id=comment_id,
704
671
  function_id=function_id,
705
- authorization=authorization,
706
672
  _request_auth=_request_auth,
707
673
  _content_type=_content_type,
708
674
  _headers=_headers,
@@ -731,7 +697,6 @@ class FunctionsAIDecompilationApi:
731
697
  self,
732
698
  comment_id: Annotated[int, Field(strict=True, ge=1)],
733
699
  function_id: StrictInt,
734
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
735
700
  _request_timeout: Union[
736
701
  None,
737
702
  Annotated[StrictFloat, Field(gt=0)],
@@ -753,8 +718,6 @@ class FunctionsAIDecompilationApi:
753
718
  :type comment_id: int
754
719
  :param function_id: (required)
755
720
  :type function_id: int
756
- :param authorization: API Key bearer token
757
- :type authorization: str
758
721
  :param _request_timeout: timeout setting for this request. If one
759
722
  number provided, it will be total request
760
723
  timeout. It can also be a pair (tuple) of
@@ -780,7 +743,6 @@ class FunctionsAIDecompilationApi:
780
743
  _param = self._delete_ai_decompilation_comment_serialize(
781
744
  comment_id=comment_id,
782
745
  function_id=function_id,
783
- authorization=authorization,
784
746
  _request_auth=_request_auth,
785
747
  _content_type=_content_type,
786
748
  _headers=_headers,
@@ -809,7 +771,6 @@ class FunctionsAIDecompilationApi:
809
771
  self,
810
772
  comment_id: Annotated[int, Field(strict=True, ge=1)],
811
773
  function_id: StrictInt,
812
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
813
774
  _request_timeout: Union[
814
775
  None,
815
776
  Annotated[StrictFloat, Field(gt=0)],
@@ -831,8 +792,6 @@ class FunctionsAIDecompilationApi:
831
792
  :type comment_id: int
832
793
  :param function_id: (required)
833
794
  :type function_id: int
834
- :param authorization: API Key bearer token
835
- :type authorization: str
836
795
  :param _request_timeout: timeout setting for this request. If one
837
796
  number provided, it will be total request
838
797
  timeout. It can also be a pair (tuple) of
@@ -858,7 +817,6 @@ class FunctionsAIDecompilationApi:
858
817
  _param = self._delete_ai_decompilation_comment_serialize(
859
818
  comment_id=comment_id,
860
819
  function_id=function_id,
861
- authorization=authorization,
862
820
  _request_auth=_request_auth,
863
821
  _content_type=_content_type,
864
822
  _headers=_headers,
@@ -882,7 +840,6 @@ class FunctionsAIDecompilationApi:
882
840
  self,
883
841
  comment_id,
884
842
  function_id,
885
- authorization,
886
843
  _request_auth,
887
844
  _content_type,
888
845
  _headers,
@@ -910,8 +867,6 @@ class FunctionsAIDecompilationApi:
910
867
  _path_params['function_id'] = function_id
911
868
  # process the query parameters
912
869
  # process the header parameters
913
- if authorization is not None:
914
- _header_params['authorization'] = authorization
915
870
  # process the form parameters
916
871
  # process the body parameter
917
872
 
@@ -952,7 +907,6 @@ class FunctionsAIDecompilationApi:
952
907
  def get_ai_decompilation_comments(
953
908
  self,
954
909
  function_id: StrictInt,
955
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
956
910
  _request_timeout: Union[
957
911
  None,
958
912
  Annotated[StrictFloat, Field(gt=0)],
@@ -972,8 +926,6 @@ class FunctionsAIDecompilationApi:
972
926
 
973
927
  :param function_id: (required)
974
928
  :type function_id: int
975
- :param authorization: API Key bearer token
976
- :type authorization: str
977
929
  :param _request_timeout: timeout setting for this request. If one
978
930
  number provided, it will be total request
979
931
  timeout. It can also be a pair (tuple) of
@@ -998,7 +950,6 @@ class FunctionsAIDecompilationApi:
998
950
 
999
951
  _param = self._get_ai_decompilation_comments_serialize(
1000
952
  function_id=function_id,
1001
- authorization=authorization,
1002
953
  _request_auth=_request_auth,
1003
954
  _content_type=_content_type,
1004
955
  _headers=_headers,
@@ -1024,7 +975,6 @@ class FunctionsAIDecompilationApi:
1024
975
  def get_ai_decompilation_comments_with_http_info(
1025
976
  self,
1026
977
  function_id: StrictInt,
1027
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
1028
978
  _request_timeout: Union[
1029
979
  None,
1030
980
  Annotated[StrictFloat, Field(gt=0)],
@@ -1044,8 +994,6 @@ class FunctionsAIDecompilationApi:
1044
994
 
1045
995
  :param function_id: (required)
1046
996
  :type function_id: int
1047
- :param authorization: API Key bearer token
1048
- :type authorization: str
1049
997
  :param _request_timeout: timeout setting for this request. If one
1050
998
  number provided, it will be total request
1051
999
  timeout. It can also be a pair (tuple) of
@@ -1070,7 +1018,6 @@ class FunctionsAIDecompilationApi:
1070
1018
 
1071
1019
  _param = self._get_ai_decompilation_comments_serialize(
1072
1020
  function_id=function_id,
1073
- authorization=authorization,
1074
1021
  _request_auth=_request_auth,
1075
1022
  _content_type=_content_type,
1076
1023
  _headers=_headers,
@@ -1096,7 +1043,6 @@ class FunctionsAIDecompilationApi:
1096
1043
  def get_ai_decompilation_comments_without_preload_content(
1097
1044
  self,
1098
1045
  function_id: StrictInt,
1099
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
1100
1046
  _request_timeout: Union[
1101
1047
  None,
1102
1048
  Annotated[StrictFloat, Field(gt=0)],
@@ -1116,8 +1062,6 @@ class FunctionsAIDecompilationApi:
1116
1062
 
1117
1063
  :param function_id: (required)
1118
1064
  :type function_id: int
1119
- :param authorization: API Key bearer token
1120
- :type authorization: str
1121
1065
  :param _request_timeout: timeout setting for this request. If one
1122
1066
  number provided, it will be total request
1123
1067
  timeout. It can also be a pair (tuple) of
@@ -1142,7 +1086,6 @@ class FunctionsAIDecompilationApi:
1142
1086
 
1143
1087
  _param = self._get_ai_decompilation_comments_serialize(
1144
1088
  function_id=function_id,
1145
- authorization=authorization,
1146
1089
  _request_auth=_request_auth,
1147
1090
  _content_type=_content_type,
1148
1091
  _headers=_headers,
@@ -1163,7 +1106,6 @@ class FunctionsAIDecompilationApi:
1163
1106
  def _get_ai_decompilation_comments_serialize(
1164
1107
  self,
1165
1108
  function_id,
1166
- authorization,
1167
1109
  _request_auth,
1168
1110
  _content_type,
1169
1111
  _headers,
@@ -1189,8 +1131,6 @@ class FunctionsAIDecompilationApi:
1189
1131
  _path_params['function_id'] = function_id
1190
1132
  # process the query parameters
1191
1133
  # process the header parameters
1192
- if authorization is not None:
1193
- _header_params['authorization'] = authorization
1194
1134
  # process the form parameters
1195
1135
  # process the body parameter
1196
1136
 
@@ -1231,7 +1171,6 @@ class FunctionsAIDecompilationApi:
1231
1171
  def get_ai_decompilation_rating(
1232
1172
  self,
1233
1173
  function_id: StrictInt,
1234
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
1235
1174
  _request_timeout: Union[
1236
1175
  None,
1237
1176
  Annotated[StrictFloat, Field(gt=0)],
@@ -1250,8 +1189,6 @@ class FunctionsAIDecompilationApi:
1250
1189
 
1251
1190
  :param function_id: (required)
1252
1191
  :type function_id: int
1253
- :param authorization: API Key bearer token
1254
- :type authorization: str
1255
1192
  :param _request_timeout: timeout setting for this request. If one
1256
1193
  number provided, it will be total request
1257
1194
  timeout. It can also be a pair (tuple) of
@@ -1276,7 +1213,6 @@ class FunctionsAIDecompilationApi:
1276
1213
 
1277
1214
  _param = self._get_ai_decompilation_rating_serialize(
1278
1215
  function_id=function_id,
1279
- authorization=authorization,
1280
1216
  _request_auth=_request_auth,
1281
1217
  _content_type=_content_type,
1282
1218
  _headers=_headers,
@@ -1302,7 +1238,6 @@ class FunctionsAIDecompilationApi:
1302
1238
  def get_ai_decompilation_rating_with_http_info(
1303
1239
  self,
1304
1240
  function_id: StrictInt,
1305
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
1306
1241
  _request_timeout: Union[
1307
1242
  None,
1308
1243
  Annotated[StrictFloat, Field(gt=0)],
@@ -1321,8 +1256,6 @@ class FunctionsAIDecompilationApi:
1321
1256
 
1322
1257
  :param function_id: (required)
1323
1258
  :type function_id: int
1324
- :param authorization: API Key bearer token
1325
- :type authorization: str
1326
1259
  :param _request_timeout: timeout setting for this request. If one
1327
1260
  number provided, it will be total request
1328
1261
  timeout. It can also be a pair (tuple) of
@@ -1347,7 +1280,6 @@ class FunctionsAIDecompilationApi:
1347
1280
 
1348
1281
  _param = self._get_ai_decompilation_rating_serialize(
1349
1282
  function_id=function_id,
1350
- authorization=authorization,
1351
1283
  _request_auth=_request_auth,
1352
1284
  _content_type=_content_type,
1353
1285
  _headers=_headers,
@@ -1373,7 +1305,6 @@ class FunctionsAIDecompilationApi:
1373
1305
  def get_ai_decompilation_rating_without_preload_content(
1374
1306
  self,
1375
1307
  function_id: StrictInt,
1376
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
1377
1308
  _request_timeout: Union[
1378
1309
  None,
1379
1310
  Annotated[StrictFloat, Field(gt=0)],
@@ -1392,8 +1323,6 @@ class FunctionsAIDecompilationApi:
1392
1323
 
1393
1324
  :param function_id: (required)
1394
1325
  :type function_id: int
1395
- :param authorization: API Key bearer token
1396
- :type authorization: str
1397
1326
  :param _request_timeout: timeout setting for this request. If one
1398
1327
  number provided, it will be total request
1399
1328
  timeout. It can also be a pair (tuple) of
@@ -1418,7 +1347,6 @@ class FunctionsAIDecompilationApi:
1418
1347
 
1419
1348
  _param = self._get_ai_decompilation_rating_serialize(
1420
1349
  function_id=function_id,
1421
- authorization=authorization,
1422
1350
  _request_auth=_request_auth,
1423
1351
  _content_type=_content_type,
1424
1352
  _headers=_headers,
@@ -1439,7 +1367,6 @@ class FunctionsAIDecompilationApi:
1439
1367
  def _get_ai_decompilation_rating_serialize(
1440
1368
  self,
1441
1369
  function_id,
1442
- authorization,
1443
1370
  _request_auth,
1444
1371
  _content_type,
1445
1372
  _headers,
@@ -1465,8 +1392,6 @@ class FunctionsAIDecompilationApi:
1465
1392
  _path_params['function_id'] = function_id
1466
1393
  # process the query parameters
1467
1394
  # process the header parameters
1468
- if authorization is not None:
1469
- _header_params['authorization'] = authorization
1470
1395
  # process the form parameters
1471
1396
  # process the body parameter
1472
1397
 
@@ -1509,7 +1434,6 @@ class FunctionsAIDecompilationApi:
1509
1434
  function_id: StrictInt,
1510
1435
  summarise: Annotated[Optional[StrictBool], Field(description="Generate a summary for the decompilation")] = None,
1511
1436
  generate_inline_comments: Annotated[Optional[StrictBool], Field(description="Generate inline comments for the decompilation (only works if summarise is enabled)")] = None,
1512
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
1513
1437
  _request_timeout: Union[
1514
1438
  None,
1515
1439
  Annotated[StrictFloat, Field(gt=0)],
@@ -1533,8 +1457,6 @@ class FunctionsAIDecompilationApi:
1533
1457
  :type summarise: bool
1534
1458
  :param generate_inline_comments: Generate inline comments for the decompilation (only works if summarise is enabled)
1535
1459
  :type generate_inline_comments: bool
1536
- :param authorization: API Key bearer token
1537
- :type authorization: str
1538
1460
  :param _request_timeout: timeout setting for this request. If one
1539
1461
  number provided, it will be total request
1540
1462
  timeout. It can also be a pair (tuple) of
@@ -1561,7 +1483,6 @@ class FunctionsAIDecompilationApi:
1561
1483
  function_id=function_id,
1562
1484
  summarise=summarise,
1563
1485
  generate_inline_comments=generate_inline_comments,
1564
- authorization=authorization,
1565
1486
  _request_auth=_request_auth,
1566
1487
  _content_type=_content_type,
1567
1488
  _headers=_headers,
@@ -1590,7 +1511,6 @@ class FunctionsAIDecompilationApi:
1590
1511
  function_id: StrictInt,
1591
1512
  summarise: Annotated[Optional[StrictBool], Field(description="Generate a summary for the decompilation")] = None,
1592
1513
  generate_inline_comments: Annotated[Optional[StrictBool], Field(description="Generate inline comments for the decompilation (only works if summarise is enabled)")] = None,
1593
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
1594
1514
  _request_timeout: Union[
1595
1515
  None,
1596
1516
  Annotated[StrictFloat, Field(gt=0)],
@@ -1614,8 +1534,6 @@ class FunctionsAIDecompilationApi:
1614
1534
  :type summarise: bool
1615
1535
  :param generate_inline_comments: Generate inline comments for the decompilation (only works if summarise is enabled)
1616
1536
  :type generate_inline_comments: bool
1617
- :param authorization: API Key bearer token
1618
- :type authorization: str
1619
1537
  :param _request_timeout: timeout setting for this request. If one
1620
1538
  number provided, it will be total request
1621
1539
  timeout. It can also be a pair (tuple) of
@@ -1642,7 +1560,6 @@ class FunctionsAIDecompilationApi:
1642
1560
  function_id=function_id,
1643
1561
  summarise=summarise,
1644
1562
  generate_inline_comments=generate_inline_comments,
1645
- authorization=authorization,
1646
1563
  _request_auth=_request_auth,
1647
1564
  _content_type=_content_type,
1648
1565
  _headers=_headers,
@@ -1671,7 +1588,6 @@ class FunctionsAIDecompilationApi:
1671
1588
  function_id: StrictInt,
1672
1589
  summarise: Annotated[Optional[StrictBool], Field(description="Generate a summary for the decompilation")] = None,
1673
1590
  generate_inline_comments: Annotated[Optional[StrictBool], Field(description="Generate inline comments for the decompilation (only works if summarise is enabled)")] = None,
1674
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
1675
1591
  _request_timeout: Union[
1676
1592
  None,
1677
1593
  Annotated[StrictFloat, Field(gt=0)],
@@ -1695,8 +1611,6 @@ class FunctionsAIDecompilationApi:
1695
1611
  :type summarise: bool
1696
1612
  :param generate_inline_comments: Generate inline comments for the decompilation (only works if summarise is enabled)
1697
1613
  :type generate_inline_comments: bool
1698
- :param authorization: API Key bearer token
1699
- :type authorization: str
1700
1614
  :param _request_timeout: timeout setting for this request. If one
1701
1615
  number provided, it will be total request
1702
1616
  timeout. It can also be a pair (tuple) of
@@ -1723,7 +1637,6 @@ class FunctionsAIDecompilationApi:
1723
1637
  function_id=function_id,
1724
1638
  summarise=summarise,
1725
1639
  generate_inline_comments=generate_inline_comments,
1726
- authorization=authorization,
1727
1640
  _request_auth=_request_auth,
1728
1641
  _content_type=_content_type,
1729
1642
  _headers=_headers,
@@ -1747,7 +1660,6 @@ class FunctionsAIDecompilationApi:
1747
1660
  function_id,
1748
1661
  summarise,
1749
1662
  generate_inline_comments,
1750
- authorization,
1751
1663
  _request_auth,
1752
1664
  _content_type,
1753
1665
  _headers,
@@ -1781,8 +1693,6 @@ class FunctionsAIDecompilationApi:
1781
1693
  _query_params.append(('generate_inline_comments', generate_inline_comments))
1782
1694
 
1783
1695
  # process the header parameters
1784
- if authorization is not None:
1785
- _header_params['authorization'] = authorization
1786
1696
  # process the form parameters
1787
1697
  # process the body parameter
1788
1698
 
@@ -1823,7 +1733,6 @@ class FunctionsAIDecompilationApi:
1823
1733
  def get_ai_decompilation_task_status(
1824
1734
  self,
1825
1735
  function_id: StrictInt,
1826
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
1827
1736
  _request_timeout: Union[
1828
1737
  None,
1829
1738
  Annotated[StrictFloat, Field(gt=0)],
@@ -1842,8 +1751,6 @@ class FunctionsAIDecompilationApi:
1842
1751
 
1843
1752
  :param function_id: (required)
1844
1753
  :type function_id: int
1845
- :param authorization: API Key bearer token
1846
- :type authorization: str
1847
1754
  :param _request_timeout: timeout setting for this request. If one
1848
1755
  number provided, it will be total request
1849
1756
  timeout. It can also be a pair (tuple) of
@@ -1868,7 +1775,6 @@ class FunctionsAIDecompilationApi:
1868
1775
 
1869
1776
  _param = self._get_ai_decompilation_task_status_serialize(
1870
1777
  function_id=function_id,
1871
- authorization=authorization,
1872
1778
  _request_auth=_request_auth,
1873
1779
  _content_type=_content_type,
1874
1780
  _headers=_headers,
@@ -1894,7 +1800,6 @@ class FunctionsAIDecompilationApi:
1894
1800
  def get_ai_decompilation_task_status_with_http_info(
1895
1801
  self,
1896
1802
  function_id: StrictInt,
1897
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
1898
1803
  _request_timeout: Union[
1899
1804
  None,
1900
1805
  Annotated[StrictFloat, Field(gt=0)],
@@ -1913,8 +1818,6 @@ class FunctionsAIDecompilationApi:
1913
1818
 
1914
1819
  :param function_id: (required)
1915
1820
  :type function_id: int
1916
- :param authorization: API Key bearer token
1917
- :type authorization: str
1918
1821
  :param _request_timeout: timeout setting for this request. If one
1919
1822
  number provided, it will be total request
1920
1823
  timeout. It can also be a pair (tuple) of
@@ -1939,7 +1842,6 @@ class FunctionsAIDecompilationApi:
1939
1842
 
1940
1843
  _param = self._get_ai_decompilation_task_status_serialize(
1941
1844
  function_id=function_id,
1942
- authorization=authorization,
1943
1845
  _request_auth=_request_auth,
1944
1846
  _content_type=_content_type,
1945
1847
  _headers=_headers,
@@ -1965,7 +1867,6 @@ class FunctionsAIDecompilationApi:
1965
1867
  def get_ai_decompilation_task_status_without_preload_content(
1966
1868
  self,
1967
1869
  function_id: StrictInt,
1968
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
1969
1870
  _request_timeout: Union[
1970
1871
  None,
1971
1872
  Annotated[StrictFloat, Field(gt=0)],
@@ -1984,8 +1885,6 @@ class FunctionsAIDecompilationApi:
1984
1885
 
1985
1886
  :param function_id: (required)
1986
1887
  :type function_id: int
1987
- :param authorization: API Key bearer token
1988
- :type authorization: str
1989
1888
  :param _request_timeout: timeout setting for this request. If one
1990
1889
  number provided, it will be total request
1991
1890
  timeout. It can also be a pair (tuple) of
@@ -2010,7 +1909,6 @@ class FunctionsAIDecompilationApi:
2010
1909
 
2011
1910
  _param = self._get_ai_decompilation_task_status_serialize(
2012
1911
  function_id=function_id,
2013
- authorization=authorization,
2014
1912
  _request_auth=_request_auth,
2015
1913
  _content_type=_content_type,
2016
1914
  _headers=_headers,
@@ -2031,7 +1929,6 @@ class FunctionsAIDecompilationApi:
2031
1929
  def _get_ai_decompilation_task_status_serialize(
2032
1930
  self,
2033
1931
  function_id,
2034
- authorization,
2035
1932
  _request_auth,
2036
1933
  _content_type,
2037
1934
  _headers,
@@ -2057,8 +1954,6 @@ class FunctionsAIDecompilationApi:
2057
1954
  _path_params['function_id'] = function_id
2058
1955
  # process the query parameters
2059
1956
  # process the header parameters
2060
- if authorization is not None:
2061
- _header_params['authorization'] = authorization
2062
1957
  # process the form parameters
2063
1958
  # process the body parameter
2064
1959
 
@@ -2101,7 +1996,6 @@ class FunctionsAIDecompilationApi:
2101
1996
  comment_id: Annotated[int, Field(strict=True, ge=1)],
2102
1997
  function_id: StrictInt,
2103
1998
  comment_update_request: CommentUpdateRequest,
2104
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
2105
1999
  _request_timeout: Union[
2106
2000
  None,
2107
2001
  Annotated[StrictFloat, Field(gt=0)],
@@ -2125,8 +2019,6 @@ class FunctionsAIDecompilationApi:
2125
2019
  :type function_id: int
2126
2020
  :param comment_update_request: (required)
2127
2021
  :type comment_update_request: CommentUpdateRequest
2128
- :param authorization: API Key bearer token
2129
- :type authorization: str
2130
2022
  :param _request_timeout: timeout setting for this request. If one
2131
2023
  number provided, it will be total request
2132
2024
  timeout. It can also be a pair (tuple) of
@@ -2153,7 +2045,6 @@ class FunctionsAIDecompilationApi:
2153
2045
  comment_id=comment_id,
2154
2046
  function_id=function_id,
2155
2047
  comment_update_request=comment_update_request,
2156
- authorization=authorization,
2157
2048
  _request_auth=_request_auth,
2158
2049
  _content_type=_content_type,
2159
2050
  _headers=_headers,
@@ -2183,7 +2074,6 @@ class FunctionsAIDecompilationApi:
2183
2074
  comment_id: Annotated[int, Field(strict=True, ge=1)],
2184
2075
  function_id: StrictInt,
2185
2076
  comment_update_request: CommentUpdateRequest,
2186
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
2187
2077
  _request_timeout: Union[
2188
2078
  None,
2189
2079
  Annotated[StrictFloat, Field(gt=0)],
@@ -2207,8 +2097,6 @@ class FunctionsAIDecompilationApi:
2207
2097
  :type function_id: int
2208
2098
  :param comment_update_request: (required)
2209
2099
  :type comment_update_request: CommentUpdateRequest
2210
- :param authorization: API Key bearer token
2211
- :type authorization: str
2212
2100
  :param _request_timeout: timeout setting for this request. If one
2213
2101
  number provided, it will be total request
2214
2102
  timeout. It can also be a pair (tuple) of
@@ -2235,7 +2123,6 @@ class FunctionsAIDecompilationApi:
2235
2123
  comment_id=comment_id,
2236
2124
  function_id=function_id,
2237
2125
  comment_update_request=comment_update_request,
2238
- authorization=authorization,
2239
2126
  _request_auth=_request_auth,
2240
2127
  _content_type=_content_type,
2241
2128
  _headers=_headers,
@@ -2265,7 +2152,6 @@ class FunctionsAIDecompilationApi:
2265
2152
  comment_id: Annotated[int, Field(strict=True, ge=1)],
2266
2153
  function_id: StrictInt,
2267
2154
  comment_update_request: CommentUpdateRequest,
2268
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
2269
2155
  _request_timeout: Union[
2270
2156
  None,
2271
2157
  Annotated[StrictFloat, Field(gt=0)],
@@ -2289,8 +2175,6 @@ class FunctionsAIDecompilationApi:
2289
2175
  :type function_id: int
2290
2176
  :param comment_update_request: (required)
2291
2177
  :type comment_update_request: CommentUpdateRequest
2292
- :param authorization: API Key bearer token
2293
- :type authorization: str
2294
2178
  :param _request_timeout: timeout setting for this request. If one
2295
2179
  number provided, it will be total request
2296
2180
  timeout. It can also be a pair (tuple) of
@@ -2317,7 +2201,6 @@ class FunctionsAIDecompilationApi:
2317
2201
  comment_id=comment_id,
2318
2202
  function_id=function_id,
2319
2203
  comment_update_request=comment_update_request,
2320
- authorization=authorization,
2321
2204
  _request_auth=_request_auth,
2322
2205
  _content_type=_content_type,
2323
2206
  _headers=_headers,
@@ -2342,7 +2225,6 @@ class FunctionsAIDecompilationApi:
2342
2225
  comment_id,
2343
2226
  function_id,
2344
2227
  comment_update_request,
2345
- authorization,
2346
2228
  _request_auth,
2347
2229
  _content_type,
2348
2230
  _headers,
@@ -2370,8 +2252,6 @@ class FunctionsAIDecompilationApi:
2370
2252
  _path_params['function_id'] = function_id
2371
2253
  # process the query parameters
2372
2254
  # process the header parameters
2373
- if authorization is not None:
2374
- _header_params['authorization'] = authorization
2375
2255
  # process the form parameters
2376
2256
  # process the body parameter
2377
2257
  if comment_update_request is not None:
@@ -2428,7 +2308,6 @@ class FunctionsAIDecompilationApi:
2428
2308
  self,
2429
2309
  function_id: StrictInt,
2430
2310
  upsert_ai_decomplation_rating_request: UpsertAiDecomplationRatingRequest,
2431
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
2432
2311
  _request_timeout: Union[
2433
2312
  None,
2434
2313
  Annotated[StrictFloat, Field(gt=0)],
@@ -2449,8 +2328,6 @@ class FunctionsAIDecompilationApi:
2449
2328
  :type function_id: int
2450
2329
  :param upsert_ai_decomplation_rating_request: (required)
2451
2330
  :type upsert_ai_decomplation_rating_request: UpsertAiDecomplationRatingRequest
2452
- :param authorization: API Key bearer token
2453
- :type authorization: str
2454
2331
  :param _request_timeout: timeout setting for this request. If one
2455
2332
  number provided, it will be total request
2456
2333
  timeout. It can also be a pair (tuple) of
@@ -2476,7 +2353,6 @@ class FunctionsAIDecompilationApi:
2476
2353
  _param = self._upsert_ai_decompilation_rating_serialize(
2477
2354
  function_id=function_id,
2478
2355
  upsert_ai_decomplation_rating_request=upsert_ai_decomplation_rating_request,
2479
- authorization=authorization,
2480
2356
  _request_auth=_request_auth,
2481
2357
  _content_type=_content_type,
2482
2358
  _headers=_headers,
@@ -2503,7 +2379,6 @@ class FunctionsAIDecompilationApi:
2503
2379
  self,
2504
2380
  function_id: StrictInt,
2505
2381
  upsert_ai_decomplation_rating_request: UpsertAiDecomplationRatingRequest,
2506
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
2507
2382
  _request_timeout: Union[
2508
2383
  None,
2509
2384
  Annotated[StrictFloat, Field(gt=0)],
@@ -2524,8 +2399,6 @@ class FunctionsAIDecompilationApi:
2524
2399
  :type function_id: int
2525
2400
  :param upsert_ai_decomplation_rating_request: (required)
2526
2401
  :type upsert_ai_decomplation_rating_request: UpsertAiDecomplationRatingRequest
2527
- :param authorization: API Key bearer token
2528
- :type authorization: str
2529
2402
  :param _request_timeout: timeout setting for this request. If one
2530
2403
  number provided, it will be total request
2531
2404
  timeout. It can also be a pair (tuple) of
@@ -2551,7 +2424,6 @@ class FunctionsAIDecompilationApi:
2551
2424
  _param = self._upsert_ai_decompilation_rating_serialize(
2552
2425
  function_id=function_id,
2553
2426
  upsert_ai_decomplation_rating_request=upsert_ai_decomplation_rating_request,
2554
- authorization=authorization,
2555
2427
  _request_auth=_request_auth,
2556
2428
  _content_type=_content_type,
2557
2429
  _headers=_headers,
@@ -2578,7 +2450,6 @@ class FunctionsAIDecompilationApi:
2578
2450
  self,
2579
2451
  function_id: StrictInt,
2580
2452
  upsert_ai_decomplation_rating_request: UpsertAiDecomplationRatingRequest,
2581
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
2582
2453
  _request_timeout: Union[
2583
2454
  None,
2584
2455
  Annotated[StrictFloat, Field(gt=0)],
@@ -2599,8 +2470,6 @@ class FunctionsAIDecompilationApi:
2599
2470
  :type function_id: int
2600
2471
  :param upsert_ai_decomplation_rating_request: (required)
2601
2472
  :type upsert_ai_decomplation_rating_request: UpsertAiDecomplationRatingRequest
2602
- :param authorization: API Key bearer token
2603
- :type authorization: str
2604
2473
  :param _request_timeout: timeout setting for this request. If one
2605
2474
  number provided, it will be total request
2606
2475
  timeout. It can also be a pair (tuple) of
@@ -2626,7 +2495,6 @@ class FunctionsAIDecompilationApi:
2626
2495
  _param = self._upsert_ai_decompilation_rating_serialize(
2627
2496
  function_id=function_id,
2628
2497
  upsert_ai_decomplation_rating_request=upsert_ai_decomplation_rating_request,
2629
- authorization=authorization,
2630
2498
  _request_auth=_request_auth,
2631
2499
  _content_type=_content_type,
2632
2500
  _headers=_headers,
@@ -2648,7 +2516,6 @@ class FunctionsAIDecompilationApi:
2648
2516
  self,
2649
2517
  function_id,
2650
2518
  upsert_ai_decomplation_rating_request,
2651
- authorization,
2652
2519
  _request_auth,
2653
2520
  _content_type,
2654
2521
  _headers,
@@ -2674,8 +2541,6 @@ class FunctionsAIDecompilationApi:
2674
2541
  _path_params['function_id'] = function_id
2675
2542
  # process the query parameters
2676
2543
  # process the header parameters
2677
- if authorization is not None:
2678
- _header_params['authorization'] = authorization
2679
2544
  # process the form parameters
2680
2545
  # process the body parameter
2681
2546
  if upsert_ai_decomplation_rating_request is not None: