@revengai/sdk 3.56.0 → 3.57.2
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.
- package/README.md +1 -1
- package/dist/apis/AnalysesCommentsApi.d.ts +4 -4
- package/dist/apis/AnalysesCommentsApi.js +76 -4
- package/dist/apis/AnalysesCommentsApi.js.map +1 -1
- package/dist/apis/AnalysesCoreApi.d.ts +11 -11
- package/dist/apis/AnalysesCoreApi.js +209 -11
- package/dist/apis/AnalysesCoreApi.js.map +1 -1
- package/dist/apis/AuthenticationUsersApi.d.ts +1 -1
- package/dist/apis/AuthenticationUsersApi.js +19 -1
- package/dist/apis/AuthenticationUsersApi.js.map +1 -1
- package/dist/apis/BinariesApi.d.ts +8 -8
- package/dist/apis/BinariesApi.js +152 -8
- package/dist/apis/BinariesApi.js.map +1 -1
- package/dist/apis/FirmwareApi.d.ts +1 -1
- package/dist/apis/FirmwareApi.js +19 -1
- package/dist/apis/FirmwareApi.js.map +1 -1
- package/dist/apis/FunctionsAIDecompilationApi.d.ts +6 -6
- package/dist/apis/FunctionsAIDecompilationApi.js +78 -6
- package/dist/apis/FunctionsAIDecompilationApi.js.map +1 -1
- package/dist/apis/FunctionsDecompilationApi.d.ts +4 -4
- package/dist/apis/FunctionsDecompilationApi.js +76 -4
- package/dist/apis/FunctionsDecompilationApi.js.map +1 -1
- package/dist/models/{BaseResponseGetAiDecompilationRatingResponse.d.ts → BaseResponseUnionGetAiDecompilationRatingResponseNoneType.d.ts} +1 -1
- package/dist/models/BaseResponseUnionGetAiDecompilationRatingResponseNoneType.js +47 -0
- package/dist/models/BaseResponseUnionGetAiDecompilationRatingResponseNoneType.js.map +1 -0
- package/dist/models/ObjectSerializer.d.ts +1 -1
- package/dist/models/ObjectSerializer.js +3 -3
- package/dist/models/ObjectSerializer.js.map +1 -1
- package/dist/models/all.d.ts +1 -1
- package/dist/models/all.js +1 -1
- package/dist/models/all.js.map +1 -1
- package/dist/types/ObjectParamAPI.d.ts +201 -3
- package/dist/types/ObjectParamAPI.js +66 -66
- package/dist/types/ObjectParamAPI.js.map +1 -1
- package/dist/types/ObservableAPI.d.ts +69 -69
- package/dist/types/ObservableAPI.js +132 -132
- package/dist/types/ObservableAPI.js.map +1 -1
- package/dist/types/PromiseAPI.d.ts +69 -69
- package/dist/types/PromiseAPI.js +132 -132
- package/dist/types/PromiseAPI.js.map +1 -1
- package/package.json +1 -1
- package/dist/models/BaseResponseGetAiDecompilationRatingResponse.js +0 -47
- package/dist/models/BaseResponseGetAiDecompilationRatingResponse.js.map +0 -1
|
@@ -55,7 +55,6 @@ import { BaseResponseFunctionTaskResponse } from '../models/BaseResponseFunction
|
|
|
55
55
|
import { BaseResponseFunctionsDetailResponse } from '../models/BaseResponseFunctionsDetailResponse';
|
|
56
56
|
import { BaseResponseGenerateFunctionDataTypes } from '../models/BaseResponseGenerateFunctionDataTypes';
|
|
57
57
|
import { BaseResponseGenerationStatusList } from '../models/BaseResponseGenerationStatusList';
|
|
58
|
-
import { BaseResponseGetAiDecompilationRatingResponse } from '../models/BaseResponseGetAiDecompilationRatingResponse';
|
|
59
58
|
import { BaseResponseGetAiDecompilationTask } from '../models/BaseResponseGetAiDecompilationTask';
|
|
60
59
|
import { BaseResponseGetMeResponse } from '../models/BaseResponseGetMeResponse';
|
|
61
60
|
import { BaseResponseGetPublicUserResponse } from '../models/BaseResponseGetPublicUserResponse';
|
|
@@ -82,6 +81,7 @@ import { BaseResponseStr } from '../models/BaseResponseStr';
|
|
|
82
81
|
import { BaseResponseTTPS } from '../models/BaseResponseTTPS';
|
|
83
82
|
import { BaseResponseTagSearchResponse } from '../models/BaseResponseTagSearchResponse';
|
|
84
83
|
import { BaseResponseTaskResponse } from '../models/BaseResponseTaskResponse';
|
|
84
|
+
import { BaseResponseUnionGetAiDecompilationRatingResponseNoneType } from '../models/BaseResponseUnionGetAiDecompilationRatingResponseNoneType';
|
|
85
85
|
import { BaseResponseUploadResponse } from '../models/BaseResponseUploadResponse';
|
|
86
86
|
import { BaseResponseVulnerabilities } from '../models/BaseResponseVulnerabilities';
|
|
87
87
|
import { BaseResponseXrefResponse } from '../models/BaseResponseXrefResponse';
|
|
@@ -117,18 +117,42 @@ import { AnalysesCommentsApiRequestFactory, AnalysesCommentsApiResponseProcessor
|
|
|
117
117
|
export interface AnalysesCommentsApiCreateAnalysisCommentRequest {
|
|
118
118
|
analysisId: number;
|
|
119
119
|
commentBase: CommentBase;
|
|
120
|
+
endpointUrl?: string;
|
|
121
|
+
localCacheDir?: string;
|
|
122
|
+
localCacheMaxSizeMb?: number;
|
|
123
|
+
customerSamplesBucket?: string;
|
|
124
|
+
firmwareSamplesBucket?: string;
|
|
125
|
+
maxRetryAttempts?: number;
|
|
120
126
|
}
|
|
121
127
|
export interface AnalysesCommentsApiDeleteAnalysisCommentRequest {
|
|
122
128
|
commentId: number;
|
|
123
129
|
analysisId: number;
|
|
130
|
+
endpointUrl?: string;
|
|
131
|
+
localCacheDir?: string;
|
|
132
|
+
localCacheMaxSizeMb?: number;
|
|
133
|
+
customerSamplesBucket?: string;
|
|
134
|
+
firmwareSamplesBucket?: string;
|
|
135
|
+
maxRetryAttempts?: number;
|
|
124
136
|
}
|
|
125
137
|
export interface AnalysesCommentsApiGetAnalysisCommentsRequest {
|
|
126
138
|
analysisId: number;
|
|
139
|
+
endpointUrl?: string;
|
|
140
|
+
localCacheDir?: string;
|
|
141
|
+
localCacheMaxSizeMb?: number;
|
|
142
|
+
customerSamplesBucket?: string;
|
|
143
|
+
firmwareSamplesBucket?: string;
|
|
144
|
+
maxRetryAttempts?: number;
|
|
127
145
|
}
|
|
128
146
|
export interface AnalysesCommentsApiUpdateAnalysisCommentRequest {
|
|
129
147
|
commentId: number;
|
|
130
148
|
analysisId: number;
|
|
131
149
|
commentUpdateRequest: CommentUpdateRequest;
|
|
150
|
+
endpointUrl?: string;
|
|
151
|
+
localCacheDir?: string;
|
|
152
|
+
localCacheMaxSizeMb?: number;
|
|
153
|
+
customerSamplesBucket?: string;
|
|
154
|
+
firmwareSamplesBucket?: string;
|
|
155
|
+
maxRetryAttempts?: number;
|
|
132
156
|
}
|
|
133
157
|
export declare class ObjectAnalysesCommentsApi {
|
|
134
158
|
private api;
|
|
@@ -145,25 +169,61 @@ export declare class ObjectAnalysesCommentsApi {
|
|
|
145
169
|
import { AnalysesCoreApiRequestFactory, AnalysesCoreApiResponseProcessor } from "../apis/AnalysesCoreApi";
|
|
146
170
|
export interface AnalysesCoreApiBulkAddAnalysisTagsRequest {
|
|
147
171
|
analysisBulkAddTagsRequest: AnalysisBulkAddTagsRequest;
|
|
172
|
+
endpointUrl?: string;
|
|
173
|
+
localCacheDir?: string;
|
|
174
|
+
localCacheMaxSizeMb?: number;
|
|
175
|
+
customerSamplesBucket?: string;
|
|
176
|
+
firmwareSamplesBucket?: string;
|
|
177
|
+
maxRetryAttempts?: number;
|
|
148
178
|
}
|
|
149
179
|
export interface AnalysesCoreApiCreateAnalysisRequest {
|
|
150
180
|
analysisCreateRequest: AnalysisCreateRequest;
|
|
181
|
+
endpointUrl?: string;
|
|
182
|
+
localCacheDir?: string;
|
|
183
|
+
localCacheMaxSizeMb?: number;
|
|
184
|
+
customerSamplesBucket?: string;
|
|
185
|
+
firmwareSamplesBucket?: string;
|
|
186
|
+
maxRetryAttempts?: number;
|
|
151
187
|
xRevEngApplication?: string;
|
|
152
188
|
}
|
|
153
189
|
export interface AnalysesCoreApiDeleteAnalysisRequest {
|
|
154
190
|
analysisId: number;
|
|
191
|
+
endpointUrl?: string;
|
|
192
|
+
localCacheDir?: string;
|
|
193
|
+
localCacheMaxSizeMb?: number;
|
|
194
|
+
customerSamplesBucket?: string;
|
|
195
|
+
firmwareSamplesBucket?: string;
|
|
196
|
+
maxRetryAttempts?: number;
|
|
155
197
|
}
|
|
156
198
|
export interface AnalysesCoreApiGetAnalysisBasicInfoRequest {
|
|
157
199
|
analysisId: number;
|
|
158
200
|
}
|
|
159
201
|
export interface AnalysesCoreApiGetAnalysisFunctionMapRequest {
|
|
160
202
|
analysisId: number;
|
|
203
|
+
endpointUrl?: string;
|
|
204
|
+
localCacheDir?: string;
|
|
205
|
+
localCacheMaxSizeMb?: number;
|
|
206
|
+
customerSamplesBucket?: string;
|
|
207
|
+
firmwareSamplesBucket?: string;
|
|
208
|
+
maxRetryAttempts?: number;
|
|
161
209
|
}
|
|
162
210
|
export interface AnalysesCoreApiGetAnalysisLogsRequest {
|
|
163
211
|
analysisId: number;
|
|
212
|
+
endpointUrl?: string;
|
|
213
|
+
localCacheDir?: string;
|
|
214
|
+
localCacheMaxSizeMb?: number;
|
|
215
|
+
customerSamplesBucket?: string;
|
|
216
|
+
firmwareSamplesBucket?: string;
|
|
217
|
+
maxRetryAttempts?: number;
|
|
164
218
|
}
|
|
165
219
|
export interface AnalysesCoreApiGetAnalysisParamsRequest {
|
|
166
220
|
analysisId: number;
|
|
221
|
+
endpointUrl?: string;
|
|
222
|
+
localCacheDir?: string;
|
|
223
|
+
localCacheMaxSizeMb?: number;
|
|
224
|
+
customerSamplesBucket?: string;
|
|
225
|
+
firmwareSamplesBucket?: string;
|
|
226
|
+
maxRetryAttempts?: number;
|
|
167
227
|
}
|
|
168
228
|
export interface AnalysesCoreApiGetAnalysisStatusRequest {
|
|
169
229
|
analysisId: number;
|
|
@@ -171,6 +231,12 @@ export interface AnalysesCoreApiGetAnalysisStatusRequest {
|
|
|
171
231
|
export interface AnalysesCoreApiInsertAnalysisLogRequest {
|
|
172
232
|
analysisId: number;
|
|
173
233
|
insertAnalysisLogRequest: InsertAnalysisLogRequest;
|
|
234
|
+
endpointUrl?: string;
|
|
235
|
+
localCacheDir?: string;
|
|
236
|
+
localCacheMaxSizeMb?: number;
|
|
237
|
+
customerSamplesBucket?: string;
|
|
238
|
+
firmwareSamplesBucket?: string;
|
|
239
|
+
maxRetryAttempts?: number;
|
|
174
240
|
}
|
|
175
241
|
export interface AnalysesCoreApiListAnalysesRequest {
|
|
176
242
|
searchTerm?: string;
|
|
@@ -195,20 +261,44 @@ export interface AnalysesCoreApiPutAnalysisStringsRequest {
|
|
|
195
261
|
export interface AnalysesCoreApiRequeueAnalysisRequest {
|
|
196
262
|
analysisId: number;
|
|
197
263
|
reAnalysisForm: ReAnalysisForm;
|
|
264
|
+
endpointUrl?: string;
|
|
265
|
+
localCacheDir?: string;
|
|
266
|
+
localCacheMaxSizeMb?: number;
|
|
267
|
+
customerSamplesBucket?: string;
|
|
268
|
+
firmwareSamplesBucket?: string;
|
|
269
|
+
maxRetryAttempts?: number;
|
|
198
270
|
xRevEngApplication?: string;
|
|
199
271
|
}
|
|
200
272
|
export interface AnalysesCoreApiUpdateAnalysisRequest {
|
|
201
273
|
analysisId: number;
|
|
202
274
|
analysisUpdateRequest: AnalysisUpdateRequest;
|
|
275
|
+
endpointUrl?: string;
|
|
276
|
+
localCacheDir?: string;
|
|
277
|
+
localCacheMaxSizeMb?: number;
|
|
278
|
+
customerSamplesBucket?: string;
|
|
279
|
+
firmwareSamplesBucket?: string;
|
|
280
|
+
maxRetryAttempts?: number;
|
|
203
281
|
}
|
|
204
282
|
export interface AnalysesCoreApiUpdateAnalysisTagsRequest {
|
|
205
283
|
analysisId: number;
|
|
206
284
|
analysisUpdateTagsRequest: AnalysisUpdateTagsRequest;
|
|
285
|
+
endpointUrl?: string;
|
|
286
|
+
localCacheDir?: string;
|
|
287
|
+
localCacheMaxSizeMb?: number;
|
|
288
|
+
customerSamplesBucket?: string;
|
|
289
|
+
firmwareSamplesBucket?: string;
|
|
290
|
+
maxRetryAttempts?: number;
|
|
207
291
|
}
|
|
208
292
|
export interface AnalysesCoreApiUploadFileRequest {
|
|
209
293
|
uploadFileType: UploadFileType;
|
|
210
294
|
file: HttpFile;
|
|
211
295
|
packedPassword?: string;
|
|
296
|
+
endpointUrl?: string;
|
|
297
|
+
localCacheDir?: string;
|
|
298
|
+
localCacheMaxSizeMb?: number;
|
|
299
|
+
customerSamplesBucket?: string;
|
|
300
|
+
firmwareSamplesBucket?: string;
|
|
301
|
+
maxRetryAttempts?: number;
|
|
212
302
|
forceOverwrite?: boolean;
|
|
213
303
|
}
|
|
214
304
|
export declare class ObjectAnalysesCoreApi {
|
|
@@ -393,6 +483,12 @@ export interface AuthenticationUsersApiGetUserRequest {
|
|
|
393
483
|
export interface AuthenticationUsersApiGetUserActivityRequest {
|
|
394
484
|
}
|
|
395
485
|
export interface AuthenticationUsersApiGetUserCommentsRequest {
|
|
486
|
+
endpointUrl?: string;
|
|
487
|
+
localCacheDir?: string;
|
|
488
|
+
localCacheMaxSizeMb?: number;
|
|
489
|
+
customerSamplesBucket?: string;
|
|
490
|
+
firmwareSamplesBucket?: string;
|
|
491
|
+
maxRetryAttempts?: number;
|
|
396
492
|
}
|
|
397
493
|
export interface AuthenticationUsersApiLoginUserRequest {
|
|
398
494
|
loginRequest: LoginRequest;
|
|
@@ -414,27 +510,75 @@ export declare class ObjectAuthenticationUsersApi {
|
|
|
414
510
|
import { BinariesApiRequestFactory, BinariesApiResponseProcessor } from "../apis/BinariesApi";
|
|
415
511
|
export interface BinariesApiDownloadZippedBinaryRequest {
|
|
416
512
|
binaryId: number;
|
|
513
|
+
endpointUrl?: string;
|
|
514
|
+
localCacheDir?: string;
|
|
515
|
+
localCacheMaxSizeMb?: number;
|
|
516
|
+
customerSamplesBucket?: string;
|
|
517
|
+
firmwareSamplesBucket?: string;
|
|
518
|
+
maxRetryAttempts?: number;
|
|
417
519
|
}
|
|
418
520
|
export interface BinariesApiGetBinaryAdditionalDetailsRequest {
|
|
419
521
|
binaryId: number;
|
|
522
|
+
endpointUrl?: string;
|
|
523
|
+
localCacheDir?: string;
|
|
524
|
+
localCacheMaxSizeMb?: number;
|
|
525
|
+
customerSamplesBucket?: string;
|
|
526
|
+
firmwareSamplesBucket?: string;
|
|
527
|
+
maxRetryAttempts?: number;
|
|
420
528
|
}
|
|
421
529
|
export interface BinariesApiGetBinaryAdditionalDetailsStatusRequest {
|
|
422
530
|
binaryId: number;
|
|
531
|
+
endpointUrl?: string;
|
|
532
|
+
localCacheDir?: string;
|
|
533
|
+
localCacheMaxSizeMb?: number;
|
|
534
|
+
customerSamplesBucket?: string;
|
|
535
|
+
firmwareSamplesBucket?: string;
|
|
536
|
+
maxRetryAttempts?: number;
|
|
423
537
|
}
|
|
424
538
|
export interface BinariesApiGetBinaryDetailsRequest {
|
|
425
539
|
binaryId: number;
|
|
540
|
+
endpointUrl?: string;
|
|
541
|
+
localCacheDir?: string;
|
|
542
|
+
localCacheMaxSizeMb?: number;
|
|
543
|
+
customerSamplesBucket?: string;
|
|
544
|
+
firmwareSamplesBucket?: string;
|
|
545
|
+
maxRetryAttempts?: number;
|
|
426
546
|
}
|
|
427
547
|
export interface BinariesApiGetBinaryDieInfoRequest {
|
|
428
548
|
binaryId: number;
|
|
549
|
+
endpointUrl?: string;
|
|
550
|
+
localCacheDir?: string;
|
|
551
|
+
localCacheMaxSizeMb?: number;
|
|
552
|
+
customerSamplesBucket?: string;
|
|
553
|
+
firmwareSamplesBucket?: string;
|
|
554
|
+
maxRetryAttempts?: number;
|
|
429
555
|
}
|
|
430
556
|
export interface BinariesApiGetBinaryExternalsRequest {
|
|
431
557
|
binaryId: number;
|
|
558
|
+
endpointUrl?: string;
|
|
559
|
+
localCacheDir?: string;
|
|
560
|
+
localCacheMaxSizeMb?: number;
|
|
561
|
+
customerSamplesBucket?: string;
|
|
562
|
+
firmwareSamplesBucket?: string;
|
|
563
|
+
maxRetryAttempts?: number;
|
|
432
564
|
}
|
|
433
565
|
export interface BinariesApiGetBinaryRelatedStatusRequest {
|
|
434
566
|
binaryId: number;
|
|
567
|
+
endpointUrl?: string;
|
|
568
|
+
localCacheDir?: string;
|
|
569
|
+
localCacheMaxSizeMb?: number;
|
|
570
|
+
customerSamplesBucket?: string;
|
|
571
|
+
firmwareSamplesBucket?: string;
|
|
572
|
+
maxRetryAttempts?: number;
|
|
435
573
|
}
|
|
436
574
|
export interface BinariesApiGetRelatedBinariesRequest {
|
|
437
575
|
binaryId: number;
|
|
576
|
+
endpointUrl?: string;
|
|
577
|
+
localCacheDir?: string;
|
|
578
|
+
localCacheMaxSizeMb?: number;
|
|
579
|
+
customerSamplesBucket?: string;
|
|
580
|
+
firmwareSamplesBucket?: string;
|
|
581
|
+
maxRetryAttempts?: number;
|
|
438
582
|
}
|
|
439
583
|
export declare class ObjectBinariesApi {
|
|
440
584
|
private api;
|
|
@@ -544,6 +688,12 @@ export interface FirmwareApiGetBinariesForFirmwareTaskRequest {
|
|
|
544
688
|
}
|
|
545
689
|
export interface FirmwareApiUploadFirmwareRequest {
|
|
546
690
|
file: HttpFile;
|
|
691
|
+
endpointUrl?: string;
|
|
692
|
+
localCacheDir?: string;
|
|
693
|
+
localCacheMaxSizeMb?: number;
|
|
694
|
+
customerSamplesBucket?: string;
|
|
695
|
+
firmwareSamplesBucket?: string;
|
|
696
|
+
maxRetryAttempts?: number;
|
|
547
697
|
password?: string;
|
|
548
698
|
}
|
|
549
699
|
export declare class ObjectFirmwareApi {
|
|
@@ -558,6 +708,12 @@ import { FunctionsAIDecompilationApiRequestFactory, FunctionsAIDecompilationApiR
|
|
|
558
708
|
export interface FunctionsAIDecompilationApiCreateAiDecompilationCommentRequest {
|
|
559
709
|
functionId: number;
|
|
560
710
|
functionCommentCreateRequest: FunctionCommentCreateRequest;
|
|
711
|
+
endpointUrl?: string;
|
|
712
|
+
localCacheDir?: string;
|
|
713
|
+
localCacheMaxSizeMb?: number;
|
|
714
|
+
customerSamplesBucket?: string;
|
|
715
|
+
firmwareSamplesBucket?: string;
|
|
716
|
+
maxRetryAttempts?: number;
|
|
561
717
|
}
|
|
562
718
|
export interface FunctionsAIDecompilationApiCreateAiDecompilationTaskRequest {
|
|
563
719
|
functionId: number;
|
|
@@ -565,9 +721,21 @@ export interface FunctionsAIDecompilationApiCreateAiDecompilationTaskRequest {
|
|
|
565
721
|
export interface FunctionsAIDecompilationApiDeleteAiDecompilationCommentRequest {
|
|
566
722
|
commentId: number;
|
|
567
723
|
functionId: number;
|
|
724
|
+
endpointUrl?: string;
|
|
725
|
+
localCacheDir?: string;
|
|
726
|
+
localCacheMaxSizeMb?: number;
|
|
727
|
+
customerSamplesBucket?: string;
|
|
728
|
+
firmwareSamplesBucket?: string;
|
|
729
|
+
maxRetryAttempts?: number;
|
|
568
730
|
}
|
|
569
731
|
export interface FunctionsAIDecompilationApiGetAiDecompilationCommentsRequest {
|
|
570
732
|
functionId: number;
|
|
733
|
+
endpointUrl?: string;
|
|
734
|
+
localCacheDir?: string;
|
|
735
|
+
localCacheMaxSizeMb?: number;
|
|
736
|
+
customerSamplesBucket?: string;
|
|
737
|
+
firmwareSamplesBucket?: string;
|
|
738
|
+
maxRetryAttempts?: number;
|
|
571
739
|
}
|
|
572
740
|
export interface FunctionsAIDecompilationApiGetAiDecompilationRatingRequest {
|
|
573
741
|
functionId: number;
|
|
@@ -584,6 +752,12 @@ export interface FunctionsAIDecompilationApiUpdateAiDecompilationCommentRequest
|
|
|
584
752
|
commentId: number;
|
|
585
753
|
functionId: number;
|
|
586
754
|
commentUpdateRequest: CommentUpdateRequest;
|
|
755
|
+
endpointUrl?: string;
|
|
756
|
+
localCacheDir?: string;
|
|
757
|
+
localCacheMaxSizeMb?: number;
|
|
758
|
+
customerSamplesBucket?: string;
|
|
759
|
+
firmwareSamplesBucket?: string;
|
|
760
|
+
maxRetryAttempts?: number;
|
|
587
761
|
}
|
|
588
762
|
export interface FunctionsAIDecompilationApiUpsertAiDecompilationRatingRequest {
|
|
589
763
|
functionId: number;
|
|
@@ -600,8 +774,8 @@ export declare class ObjectFunctionsAIDecompilationApi {
|
|
|
600
774
|
deleteAiDecompilationComment(param: FunctionsAIDecompilationApiDeleteAiDecompilationCommentRequest, options?: ConfigurationOptions): Promise<BaseResponseBool>;
|
|
601
775
|
getAiDecompilationCommentsWithHttpInfo(param: FunctionsAIDecompilationApiGetAiDecompilationCommentsRequest, options?: ConfigurationOptions): Promise<HttpInfo<BaseResponseListCommentResponse>>;
|
|
602
776
|
getAiDecompilationComments(param: FunctionsAIDecompilationApiGetAiDecompilationCommentsRequest, options?: ConfigurationOptions): Promise<BaseResponseListCommentResponse>;
|
|
603
|
-
getAiDecompilationRatingWithHttpInfo(param: FunctionsAIDecompilationApiGetAiDecompilationRatingRequest, options?: ConfigurationOptions): Promise<HttpInfo<
|
|
604
|
-
getAiDecompilationRating(param: FunctionsAIDecompilationApiGetAiDecompilationRatingRequest, options?: ConfigurationOptions): Promise<
|
|
777
|
+
getAiDecompilationRatingWithHttpInfo(param: FunctionsAIDecompilationApiGetAiDecompilationRatingRequest, options?: ConfigurationOptions): Promise<HttpInfo<BaseResponseUnionGetAiDecompilationRatingResponseNoneType>>;
|
|
778
|
+
getAiDecompilationRating(param: FunctionsAIDecompilationApiGetAiDecompilationRatingRequest, options?: ConfigurationOptions): Promise<BaseResponseUnionGetAiDecompilationRatingResponseNoneType>;
|
|
605
779
|
getAiDecompilationTaskResultWithHttpInfo(param: FunctionsAIDecompilationApiGetAiDecompilationTaskResultRequest, options?: ConfigurationOptions): Promise<HttpInfo<BaseResponseGetAiDecompilationTask>>;
|
|
606
780
|
getAiDecompilationTaskResult(param: FunctionsAIDecompilationApiGetAiDecompilationTaskResultRequest, options?: ConfigurationOptions): Promise<BaseResponseGetAiDecompilationTask>;
|
|
607
781
|
getAiDecompilationTaskStatusWithHttpInfo(param: FunctionsAIDecompilationApiGetAiDecompilationTaskStatusRequest, options?: ConfigurationOptions): Promise<HttpInfo<BaseResponseFunctionTaskResponse>>;
|
|
@@ -763,18 +937,42 @@ import { FunctionsDecompilationApiRequestFactory, FunctionsDecompilationApiRespo
|
|
|
763
937
|
export interface FunctionsDecompilationApiCreateDecompilationCommentRequest {
|
|
764
938
|
functionId: number;
|
|
765
939
|
functionCommentCreateRequest: FunctionCommentCreateRequest;
|
|
940
|
+
endpointUrl?: string;
|
|
941
|
+
localCacheDir?: string;
|
|
942
|
+
localCacheMaxSizeMb?: number;
|
|
943
|
+
customerSamplesBucket?: string;
|
|
944
|
+
firmwareSamplesBucket?: string;
|
|
945
|
+
maxRetryAttempts?: number;
|
|
766
946
|
}
|
|
767
947
|
export interface FunctionsDecompilationApiDeleteDecompilationCommentRequest {
|
|
768
948
|
commentId: number;
|
|
769
949
|
functionId: number;
|
|
950
|
+
endpointUrl?: string;
|
|
951
|
+
localCacheDir?: string;
|
|
952
|
+
localCacheMaxSizeMb?: number;
|
|
953
|
+
customerSamplesBucket?: string;
|
|
954
|
+
firmwareSamplesBucket?: string;
|
|
955
|
+
maxRetryAttempts?: number;
|
|
770
956
|
}
|
|
771
957
|
export interface FunctionsDecompilationApiGetDecompilationCommentsRequest {
|
|
772
958
|
functionId: number;
|
|
959
|
+
endpointUrl?: string;
|
|
960
|
+
localCacheDir?: string;
|
|
961
|
+
localCacheMaxSizeMb?: number;
|
|
962
|
+
customerSamplesBucket?: string;
|
|
963
|
+
firmwareSamplesBucket?: string;
|
|
964
|
+
maxRetryAttempts?: number;
|
|
773
965
|
}
|
|
774
966
|
export interface FunctionsDecompilationApiUpdateDecompilationCommentRequest {
|
|
775
967
|
commentId: number;
|
|
776
968
|
functionId: number;
|
|
777
969
|
commentUpdateRequest: CommentUpdateRequest;
|
|
970
|
+
endpointUrl?: string;
|
|
971
|
+
localCacheDir?: string;
|
|
972
|
+
localCacheMaxSizeMb?: number;
|
|
973
|
+
customerSamplesBucket?: string;
|
|
974
|
+
firmwareSamplesBucket?: string;
|
|
975
|
+
maxRetryAttempts?: number;
|
|
778
976
|
}
|
|
779
977
|
export declare class ObjectFunctionsDecompilationApi {
|
|
780
978
|
private api;
|