@revengai/sdk 3.56.0 → 3.57.0
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/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 +4 -4
- package/dist/apis/FunctionsAIDecompilationApi.js +76 -4
- 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/types/ObjectParamAPI.d.ts +198 -0
- package/dist/types/ObjectParamAPI.js +66 -66
- package/dist/types/ObjectParamAPI.js.map +1 -1
- package/dist/types/ObservableAPI.d.ts +66 -66
- package/dist/types/ObservableAPI.js +132 -132
- package/dist/types/ObservableAPI.js.map +1 -1
- package/dist/types/PromiseAPI.d.ts +66 -66
- package/dist/types/PromiseAPI.js +132 -132
- package/dist/types/PromiseAPI.js.map +1 -1
- package/package.json +1 -1
|
@@ -120,14 +120,14 @@ export declare class ObservableAnalysesCommentsApi {
|
|
|
120
120
|
private responseProcessor;
|
|
121
121
|
private configuration;
|
|
122
122
|
constructor(configuration: Configuration, requestFactory?: AnalysesCommentsApiRequestFactory, responseProcessor?: AnalysesCommentsApiResponseProcessor);
|
|
123
|
-
createAnalysisCommentWithHttpInfo(analysisId: number, commentBase: CommentBase, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseCommentResponse>>;
|
|
124
|
-
createAnalysisComment(analysisId: number, commentBase: CommentBase, _options?: ConfigurationOptions): Observable<BaseResponseCommentResponse>;
|
|
125
|
-
deleteAnalysisCommentWithHttpInfo(commentId: number, analysisId: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseBool>>;
|
|
126
|
-
deleteAnalysisComment(commentId: number, analysisId: number, _options?: ConfigurationOptions): Observable<BaseResponseBool>;
|
|
127
|
-
getAnalysisCommentsWithHttpInfo(analysisId: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseListCommentResponse>>;
|
|
128
|
-
getAnalysisComments(analysisId: number, _options?: ConfigurationOptions): Observable<BaseResponseListCommentResponse>;
|
|
129
|
-
updateAnalysisCommentWithHttpInfo(commentId: number, analysisId: number, commentUpdateRequest: CommentUpdateRequest, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseCommentResponse>>;
|
|
130
|
-
updateAnalysisComment(commentId: number, analysisId: number, commentUpdateRequest: CommentUpdateRequest, _options?: ConfigurationOptions): Observable<BaseResponseCommentResponse>;
|
|
123
|
+
createAnalysisCommentWithHttpInfo(analysisId: number, commentBase: CommentBase, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseCommentResponse>>;
|
|
124
|
+
createAnalysisComment(analysisId: number, commentBase: CommentBase, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseCommentResponse>;
|
|
125
|
+
deleteAnalysisCommentWithHttpInfo(commentId: number, analysisId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseBool>>;
|
|
126
|
+
deleteAnalysisComment(commentId: number, analysisId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseBool>;
|
|
127
|
+
getAnalysisCommentsWithHttpInfo(analysisId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseListCommentResponse>>;
|
|
128
|
+
getAnalysisComments(analysisId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseListCommentResponse>;
|
|
129
|
+
updateAnalysisCommentWithHttpInfo(commentId: number, analysisId: number, commentUpdateRequest: CommentUpdateRequest, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseCommentResponse>>;
|
|
130
|
+
updateAnalysisComment(commentId: number, analysisId: number, commentUpdateRequest: CommentUpdateRequest, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseCommentResponse>;
|
|
131
131
|
}
|
|
132
132
|
import { AnalysesCoreApiRequestFactory, AnalysesCoreApiResponseProcessor } from "../apis/AnalysesCoreApi";
|
|
133
133
|
export declare class ObservableAnalysesCoreApi {
|
|
@@ -135,38 +135,38 @@ export declare class ObservableAnalysesCoreApi {
|
|
|
135
135
|
private responseProcessor;
|
|
136
136
|
private configuration;
|
|
137
137
|
constructor(configuration: Configuration, requestFactory?: AnalysesCoreApiRequestFactory, responseProcessor?: AnalysesCoreApiResponseProcessor);
|
|
138
|
-
bulkAddAnalysisTagsWithHttpInfo(analysisBulkAddTagsRequest: AnalysisBulkAddTagsRequest, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseAnalysisBulkAddTagsResponse>>;
|
|
139
|
-
bulkAddAnalysisTags(analysisBulkAddTagsRequest: AnalysisBulkAddTagsRequest, _options?: ConfigurationOptions): Observable<BaseResponseAnalysisBulkAddTagsResponse>;
|
|
140
|
-
createAnalysisWithHttpInfo(analysisCreateRequest: AnalysisCreateRequest, xRevEngApplication?: string, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseAnalysisCreateResponse>>;
|
|
141
|
-
createAnalysis(analysisCreateRequest: AnalysisCreateRequest, xRevEngApplication?: string, _options?: ConfigurationOptions): Observable<BaseResponseAnalysisCreateResponse>;
|
|
142
|
-
deleteAnalysisWithHttpInfo(analysisId: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseDict>>;
|
|
143
|
-
deleteAnalysis(analysisId: number, _options?: ConfigurationOptions): Observable<BaseResponseDict>;
|
|
138
|
+
bulkAddAnalysisTagsWithHttpInfo(analysisBulkAddTagsRequest: AnalysisBulkAddTagsRequest, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseAnalysisBulkAddTagsResponse>>;
|
|
139
|
+
bulkAddAnalysisTags(analysisBulkAddTagsRequest: AnalysisBulkAddTagsRequest, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseAnalysisBulkAddTagsResponse>;
|
|
140
|
+
createAnalysisWithHttpInfo(analysisCreateRequest: AnalysisCreateRequest, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, xRevEngApplication?: string, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseAnalysisCreateResponse>>;
|
|
141
|
+
createAnalysis(analysisCreateRequest: AnalysisCreateRequest, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, xRevEngApplication?: string, _options?: ConfigurationOptions): Observable<BaseResponseAnalysisCreateResponse>;
|
|
142
|
+
deleteAnalysisWithHttpInfo(analysisId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseDict>>;
|
|
143
|
+
deleteAnalysis(analysisId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseDict>;
|
|
144
144
|
getAnalysisBasicInfoWithHttpInfo(analysisId: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseBasic>>;
|
|
145
145
|
getAnalysisBasicInfo(analysisId: number, _options?: ConfigurationOptions): Observable<BaseResponseBasic>;
|
|
146
|
-
getAnalysisFunctionMapWithHttpInfo(analysisId: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseAnalysisFunctionMapping>>;
|
|
147
|
-
getAnalysisFunctionMap(analysisId: number, _options?: ConfigurationOptions): Observable<BaseResponseAnalysisFunctionMapping>;
|
|
148
|
-
getAnalysisLogsWithHttpInfo(analysisId: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseLogs>>;
|
|
149
|
-
getAnalysisLogs(analysisId: number, _options?: ConfigurationOptions): Observable<BaseResponseLogs>;
|
|
150
|
-
getAnalysisParamsWithHttpInfo(analysisId: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseParams>>;
|
|
151
|
-
getAnalysisParams(analysisId: number, _options?: ConfigurationOptions): Observable<BaseResponseParams>;
|
|
146
|
+
getAnalysisFunctionMapWithHttpInfo(analysisId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseAnalysisFunctionMapping>>;
|
|
147
|
+
getAnalysisFunctionMap(analysisId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseAnalysisFunctionMapping>;
|
|
148
|
+
getAnalysisLogsWithHttpInfo(analysisId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseLogs>>;
|
|
149
|
+
getAnalysisLogs(analysisId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseLogs>;
|
|
150
|
+
getAnalysisParamsWithHttpInfo(analysisId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseParams>>;
|
|
151
|
+
getAnalysisParams(analysisId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseParams>;
|
|
152
152
|
getAnalysisStatusWithHttpInfo(analysisId: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseStatus>>;
|
|
153
153
|
getAnalysisStatus(analysisId: number, _options?: ConfigurationOptions): Observable<BaseResponseStatus>;
|
|
154
|
-
insertAnalysisLogWithHttpInfo(analysisId: number, insertAnalysisLogRequest: InsertAnalysisLogRequest, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponse>>;
|
|
155
|
-
insertAnalysisLog(analysisId: number, insertAnalysisLogRequest: InsertAnalysisLogRequest, _options?: ConfigurationOptions): Observable<BaseResponse>;
|
|
154
|
+
insertAnalysisLogWithHttpInfo(analysisId: number, insertAnalysisLogRequest: InsertAnalysisLogRequest, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponse>>;
|
|
155
|
+
insertAnalysisLog(analysisId: number, insertAnalysisLogRequest: InsertAnalysisLogRequest, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponse>;
|
|
156
156
|
listAnalysesWithHttpInfo(searchTerm?: string, workspace?: Array<Workspace>, status?: Array<StatusInput>, modelName?: Array<ModelName>, dynamicExecutionStatus?: DynamicExecutionStatusInput, usernames?: Array<string>, sha256Hash?: string, limit?: number, offset?: number, orderBy?: AppApiRestV2AnalysesEnumsOrderBy, order?: Order, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseRecent>>;
|
|
157
157
|
listAnalyses(searchTerm?: string, workspace?: Array<Workspace>, status?: Array<StatusInput>, modelName?: Array<ModelName>, dynamicExecutionStatus?: DynamicExecutionStatusInput, usernames?: Array<string>, sha256Hash?: string, limit?: number, offset?: number, orderBy?: AppApiRestV2AnalysesEnumsOrderBy, order?: Order, _options?: ConfigurationOptions): Observable<BaseResponseRecent>;
|
|
158
158
|
lookupBinaryIdWithHttpInfo(binaryId: number, _options?: ConfigurationOptions): Observable<HttpInfo<any>>;
|
|
159
159
|
lookupBinaryId(binaryId: number, _options?: ConfigurationOptions): Observable<any>;
|
|
160
160
|
putAnalysisStringsWithHttpInfo(analysisId: number, putAnalysisStringsRequest: PutAnalysisStringsRequest, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponse>>;
|
|
161
161
|
putAnalysisStrings(analysisId: number, putAnalysisStringsRequest: PutAnalysisStringsRequest, _options?: ConfigurationOptions): Observable<BaseResponse>;
|
|
162
|
-
requeueAnalysisWithHttpInfo(analysisId: number, reAnalysisForm: ReAnalysisForm, xRevEngApplication?: string, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseCreated>>;
|
|
163
|
-
requeueAnalysis(analysisId: number, reAnalysisForm: ReAnalysisForm, xRevEngApplication?: string, _options?: ConfigurationOptions): Observable<BaseResponseCreated>;
|
|
164
|
-
updateAnalysisWithHttpInfo(analysisId: number, analysisUpdateRequest: AnalysisUpdateRequest, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseAnalysisDetailResponse>>;
|
|
165
|
-
updateAnalysis(analysisId: number, analysisUpdateRequest: AnalysisUpdateRequest, _options?: ConfigurationOptions): Observable<BaseResponseAnalysisDetailResponse>;
|
|
166
|
-
updateAnalysisTagsWithHttpInfo(analysisId: number, analysisUpdateTagsRequest: AnalysisUpdateTagsRequest, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseAnalysisUpdateTagsResponse>>;
|
|
167
|
-
updateAnalysisTags(analysisId: number, analysisUpdateTagsRequest: AnalysisUpdateTagsRequest, _options?: ConfigurationOptions): Observable<BaseResponseAnalysisUpdateTagsResponse>;
|
|
168
|
-
uploadFileWithHttpInfo(uploadFileType: UploadFileType, file: HttpFile, packedPassword?: string, forceOverwrite?: boolean, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseUploadResponse>>;
|
|
169
|
-
uploadFile(uploadFileType: UploadFileType, file: HttpFile, packedPassword?: string, forceOverwrite?: boolean, _options?: ConfigurationOptions): Observable<BaseResponseUploadResponse>;
|
|
162
|
+
requeueAnalysisWithHttpInfo(analysisId: number, reAnalysisForm: ReAnalysisForm, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, xRevEngApplication?: string, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseCreated>>;
|
|
163
|
+
requeueAnalysis(analysisId: number, reAnalysisForm: ReAnalysisForm, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, xRevEngApplication?: string, _options?: ConfigurationOptions): Observable<BaseResponseCreated>;
|
|
164
|
+
updateAnalysisWithHttpInfo(analysisId: number, analysisUpdateRequest: AnalysisUpdateRequest, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseAnalysisDetailResponse>>;
|
|
165
|
+
updateAnalysis(analysisId: number, analysisUpdateRequest: AnalysisUpdateRequest, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseAnalysisDetailResponse>;
|
|
166
|
+
updateAnalysisTagsWithHttpInfo(analysisId: number, analysisUpdateTagsRequest: AnalysisUpdateTagsRequest, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseAnalysisUpdateTagsResponse>>;
|
|
167
|
+
updateAnalysisTags(analysisId: number, analysisUpdateTagsRequest: AnalysisUpdateTagsRequest, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseAnalysisUpdateTagsResponse>;
|
|
168
|
+
uploadFileWithHttpInfo(uploadFileType: UploadFileType, file: HttpFile, packedPassword?: string, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, forceOverwrite?: boolean, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseUploadResponse>>;
|
|
169
|
+
uploadFile(uploadFileType: UploadFileType, file: HttpFile, packedPassword?: string, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, forceOverwrite?: boolean, _options?: ConfigurationOptions): Observable<BaseResponseUploadResponse>;
|
|
170
170
|
}
|
|
171
171
|
import { AnalysesDynamicExecutionApiRequestFactory, AnalysesDynamicExecutionApiResponseProcessor } from "../apis/AnalysesDynamicExecutionApi";
|
|
172
172
|
export declare class ObservableAnalysesDynamicExecutionApi {
|
|
@@ -255,8 +255,8 @@ export declare class ObservableAuthenticationUsersApi {
|
|
|
255
255
|
getUser(userId: number, _options?: ConfigurationOptions): Observable<BaseResponseGetPublicUserResponse>;
|
|
256
256
|
getUserActivityWithHttpInfo(_options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseListUserActivityResponse>>;
|
|
257
257
|
getUserActivity(_options?: ConfigurationOptions): Observable<BaseResponseListUserActivityResponse>;
|
|
258
|
-
getUserCommentsWithHttpInfo(_options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseListCommentResponse>>;
|
|
259
|
-
getUserComments(_options?: ConfigurationOptions): Observable<BaseResponseListCommentResponse>;
|
|
258
|
+
getUserCommentsWithHttpInfo(endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseListCommentResponse>>;
|
|
259
|
+
getUserComments(endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseListCommentResponse>;
|
|
260
260
|
loginUserWithHttpInfo(loginRequest: LoginRequest, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseLoginResponse>>;
|
|
261
261
|
loginUser(loginRequest: LoginRequest, _options?: ConfigurationOptions): Observable<BaseResponseLoginResponse>;
|
|
262
262
|
}
|
|
@@ -266,22 +266,22 @@ export declare class ObservableBinariesApi {
|
|
|
266
266
|
private responseProcessor;
|
|
267
267
|
private configuration;
|
|
268
268
|
constructor(configuration: Configuration, requestFactory?: BinariesApiRequestFactory, responseProcessor?: BinariesApiResponseProcessor);
|
|
269
|
-
downloadZippedBinaryWithHttpInfo(binaryId: number, _options?: ConfigurationOptions): Observable<HttpInfo<HttpFile>>;
|
|
270
|
-
downloadZippedBinary(binaryId: number, _options?: ConfigurationOptions): Observable<HttpFile>;
|
|
271
|
-
getBinaryAdditionalDetailsWithHttpInfo(binaryId: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseBinaryAdditionalResponse>>;
|
|
272
|
-
getBinaryAdditionalDetails(binaryId: number, _options?: ConfigurationOptions): Observable<BaseResponseBinaryAdditionalResponse>;
|
|
273
|
-
getBinaryAdditionalDetailsStatusWithHttpInfo(binaryId: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseAdditionalDetailsStatusResponse>>;
|
|
274
|
-
getBinaryAdditionalDetailsStatus(binaryId: number, _options?: ConfigurationOptions): Observable<BaseResponseAdditionalDetailsStatusResponse>;
|
|
275
|
-
getBinaryDetailsWithHttpInfo(binaryId: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseBinaryDetailsResponse>>;
|
|
276
|
-
getBinaryDetails(binaryId: number, _options?: ConfigurationOptions): Observable<BaseResponseBinaryDetailsResponse>;
|
|
277
|
-
getBinaryDieInfoWithHttpInfo(binaryId: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseListDieMatch>>;
|
|
278
|
-
getBinaryDieInfo(binaryId: number, _options?: ConfigurationOptions): Observable<BaseResponseListDieMatch>;
|
|
279
|
-
getBinaryExternalsWithHttpInfo(binaryId: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseBinaryExternalsResponse>>;
|
|
280
|
-
getBinaryExternals(binaryId: number, _options?: ConfigurationOptions): Observable<BaseResponseBinaryExternalsResponse>;
|
|
281
|
-
getBinaryRelatedStatusWithHttpInfo(binaryId: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseBinariesRelatedStatusResponse>>;
|
|
282
|
-
getBinaryRelatedStatus(binaryId: number, _options?: ConfigurationOptions): Observable<BaseResponseBinariesRelatedStatusResponse>;
|
|
283
|
-
getRelatedBinariesWithHttpInfo(binaryId: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseChildBinariesResponse>>;
|
|
284
|
-
getRelatedBinaries(binaryId: number, _options?: ConfigurationOptions): Observable<BaseResponseChildBinariesResponse>;
|
|
269
|
+
downloadZippedBinaryWithHttpInfo(binaryId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<HttpFile>>;
|
|
270
|
+
downloadZippedBinary(binaryId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpFile>;
|
|
271
|
+
getBinaryAdditionalDetailsWithHttpInfo(binaryId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseBinaryAdditionalResponse>>;
|
|
272
|
+
getBinaryAdditionalDetails(binaryId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseBinaryAdditionalResponse>;
|
|
273
|
+
getBinaryAdditionalDetailsStatusWithHttpInfo(binaryId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseAdditionalDetailsStatusResponse>>;
|
|
274
|
+
getBinaryAdditionalDetailsStatus(binaryId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseAdditionalDetailsStatusResponse>;
|
|
275
|
+
getBinaryDetailsWithHttpInfo(binaryId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseBinaryDetailsResponse>>;
|
|
276
|
+
getBinaryDetails(binaryId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseBinaryDetailsResponse>;
|
|
277
|
+
getBinaryDieInfoWithHttpInfo(binaryId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseListDieMatch>>;
|
|
278
|
+
getBinaryDieInfo(binaryId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseListDieMatch>;
|
|
279
|
+
getBinaryExternalsWithHttpInfo(binaryId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseBinaryExternalsResponse>>;
|
|
280
|
+
getBinaryExternals(binaryId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseBinaryExternalsResponse>;
|
|
281
|
+
getBinaryRelatedStatusWithHttpInfo(binaryId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseBinariesRelatedStatusResponse>>;
|
|
282
|
+
getBinaryRelatedStatus(binaryId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseBinariesRelatedStatusResponse>;
|
|
283
|
+
getRelatedBinariesWithHttpInfo(binaryId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseChildBinariesResponse>>;
|
|
284
|
+
getRelatedBinaries(binaryId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseChildBinariesResponse>;
|
|
285
285
|
}
|
|
286
286
|
import { CollectionsApiRequestFactory, CollectionsApiResponseProcessor } from "../apis/CollectionsApi";
|
|
287
287
|
export declare class ObservableCollectionsApi {
|
|
@@ -334,8 +334,8 @@ export declare class ObservableFirmwareApi {
|
|
|
334
334
|
constructor(configuration: Configuration, requestFactory?: FirmwareApiRequestFactory, responseProcessor?: FirmwareApiResponseProcessor);
|
|
335
335
|
getBinariesForFirmwareTaskWithHttpInfo(taskId: string, _options?: ConfigurationOptions): Observable<HttpInfo<any>>;
|
|
336
336
|
getBinariesForFirmwareTask(taskId: string, _options?: ConfigurationOptions): Observable<any>;
|
|
337
|
-
uploadFirmwareWithHttpInfo(file: HttpFile, password?: string, _options?: ConfigurationOptions): Observable<HttpInfo<any>>;
|
|
338
|
-
uploadFirmware(file: HttpFile, password?: string, _options?: ConfigurationOptions): Observable<any>;
|
|
337
|
+
uploadFirmwareWithHttpInfo(file: HttpFile, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, password?: string, _options?: ConfigurationOptions): Observable<HttpInfo<any>>;
|
|
338
|
+
uploadFirmware(file: HttpFile, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, password?: string, _options?: ConfigurationOptions): Observable<any>;
|
|
339
339
|
}
|
|
340
340
|
import { FunctionsAIDecompilationApiRequestFactory, FunctionsAIDecompilationApiResponseProcessor } from "../apis/FunctionsAIDecompilationApi";
|
|
341
341
|
export declare class ObservableFunctionsAIDecompilationApi {
|
|
@@ -343,22 +343,22 @@ export declare class ObservableFunctionsAIDecompilationApi {
|
|
|
343
343
|
private responseProcessor;
|
|
344
344
|
private configuration;
|
|
345
345
|
constructor(configuration: Configuration, requestFactory?: FunctionsAIDecompilationApiRequestFactory, responseProcessor?: FunctionsAIDecompilationApiResponseProcessor);
|
|
346
|
-
createAiDecompilationCommentWithHttpInfo(functionId: number, functionCommentCreateRequest: FunctionCommentCreateRequest, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseCommentResponse>>;
|
|
347
|
-
createAiDecompilationComment(functionId: number, functionCommentCreateRequest: FunctionCommentCreateRequest, _options?: ConfigurationOptions): Observable<BaseResponseCommentResponse>;
|
|
346
|
+
createAiDecompilationCommentWithHttpInfo(functionId: number, functionCommentCreateRequest: FunctionCommentCreateRequest, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseCommentResponse>>;
|
|
347
|
+
createAiDecompilationComment(functionId: number, functionCommentCreateRequest: FunctionCommentCreateRequest, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseCommentResponse>;
|
|
348
348
|
createAiDecompilationTaskWithHttpInfo(functionId: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponse>>;
|
|
349
349
|
createAiDecompilationTask(functionId: number, _options?: ConfigurationOptions): Observable<BaseResponse>;
|
|
350
|
-
deleteAiDecompilationCommentWithHttpInfo(commentId: number, functionId: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseBool>>;
|
|
351
|
-
deleteAiDecompilationComment(commentId: number, functionId: number, _options?: ConfigurationOptions): Observable<BaseResponseBool>;
|
|
352
|
-
getAiDecompilationCommentsWithHttpInfo(functionId: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseListCommentResponse>>;
|
|
353
|
-
getAiDecompilationComments(functionId: number, _options?: ConfigurationOptions): Observable<BaseResponseListCommentResponse>;
|
|
350
|
+
deleteAiDecompilationCommentWithHttpInfo(commentId: number, functionId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseBool>>;
|
|
351
|
+
deleteAiDecompilationComment(commentId: number, functionId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseBool>;
|
|
352
|
+
getAiDecompilationCommentsWithHttpInfo(functionId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseListCommentResponse>>;
|
|
353
|
+
getAiDecompilationComments(functionId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseListCommentResponse>;
|
|
354
354
|
getAiDecompilationRatingWithHttpInfo(functionId: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseGetAiDecompilationRatingResponse>>;
|
|
355
355
|
getAiDecompilationRating(functionId: number, _options?: ConfigurationOptions): Observable<BaseResponseGetAiDecompilationRatingResponse>;
|
|
356
356
|
getAiDecompilationTaskResultWithHttpInfo(functionId: number, summarise?: boolean, generateInlineComments?: boolean, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseGetAiDecompilationTask>>;
|
|
357
357
|
getAiDecompilationTaskResult(functionId: number, summarise?: boolean, generateInlineComments?: boolean, _options?: ConfigurationOptions): Observable<BaseResponseGetAiDecompilationTask>;
|
|
358
358
|
getAiDecompilationTaskStatusWithHttpInfo(functionId: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseFunctionTaskResponse>>;
|
|
359
359
|
getAiDecompilationTaskStatus(functionId: number, _options?: ConfigurationOptions): Observable<BaseResponseFunctionTaskResponse>;
|
|
360
|
-
updateAiDecompilationCommentWithHttpInfo(commentId: number, functionId: number, commentUpdateRequest: CommentUpdateRequest, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseCommentResponse>>;
|
|
361
|
-
updateAiDecompilationComment(commentId: number, functionId: number, commentUpdateRequest: CommentUpdateRequest, _options?: ConfigurationOptions): Observable<BaseResponseCommentResponse>;
|
|
360
|
+
updateAiDecompilationCommentWithHttpInfo(commentId: number, functionId: number, commentUpdateRequest: CommentUpdateRequest, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseCommentResponse>>;
|
|
361
|
+
updateAiDecompilationComment(commentId: number, functionId: number, commentUpdateRequest: CommentUpdateRequest, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseCommentResponse>;
|
|
362
362
|
upsertAiDecompilationRatingWithHttpInfo(functionId: number, upsertAiDecomplationRatingRequest: UpsertAiDecomplationRatingRequest, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponse>>;
|
|
363
363
|
upsertAiDecompilationRating(functionId: number, upsertAiDecomplationRatingRequest: UpsertAiDecomplationRatingRequest, _options?: ConfigurationOptions): Observable<BaseResponse>;
|
|
364
364
|
}
|
|
@@ -435,14 +435,14 @@ export declare class ObservableFunctionsDecompilationApi {
|
|
|
435
435
|
private responseProcessor;
|
|
436
436
|
private configuration;
|
|
437
437
|
constructor(configuration: Configuration, requestFactory?: FunctionsDecompilationApiRequestFactory, responseProcessor?: FunctionsDecompilationApiResponseProcessor);
|
|
438
|
-
createDecompilationCommentWithHttpInfo(functionId: number, functionCommentCreateRequest: FunctionCommentCreateRequest, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseCommentResponse>>;
|
|
439
|
-
createDecompilationComment(functionId: number, functionCommentCreateRequest: FunctionCommentCreateRequest, _options?: ConfigurationOptions): Observable<BaseResponseCommentResponse>;
|
|
440
|
-
deleteDecompilationCommentWithHttpInfo(commentId: number, functionId: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseBool>>;
|
|
441
|
-
deleteDecompilationComment(commentId: number, functionId: number, _options?: ConfigurationOptions): Observable<BaseResponseBool>;
|
|
442
|
-
getDecompilationCommentsWithHttpInfo(functionId: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseListCommentResponse>>;
|
|
443
|
-
getDecompilationComments(functionId: number, _options?: ConfigurationOptions): Observable<BaseResponseListCommentResponse>;
|
|
444
|
-
updateDecompilationCommentWithHttpInfo(commentId: number, functionId: number, commentUpdateRequest: CommentUpdateRequest, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseCommentResponse>>;
|
|
445
|
-
updateDecompilationComment(commentId: number, functionId: number, commentUpdateRequest: CommentUpdateRequest, _options?: ConfigurationOptions): Observable<BaseResponseCommentResponse>;
|
|
438
|
+
createDecompilationCommentWithHttpInfo(functionId: number, functionCommentCreateRequest: FunctionCommentCreateRequest, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseCommentResponse>>;
|
|
439
|
+
createDecompilationComment(functionId: number, functionCommentCreateRequest: FunctionCommentCreateRequest, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseCommentResponse>;
|
|
440
|
+
deleteDecompilationCommentWithHttpInfo(commentId: number, functionId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseBool>>;
|
|
441
|
+
deleteDecompilationComment(commentId: number, functionId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseBool>;
|
|
442
|
+
getDecompilationCommentsWithHttpInfo(functionId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseListCommentResponse>>;
|
|
443
|
+
getDecompilationComments(functionId: number, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseListCommentResponse>;
|
|
444
|
+
updateDecompilationCommentWithHttpInfo(commentId: number, functionId: number, commentUpdateRequest: CommentUpdateRequest, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<HttpInfo<BaseResponseCommentResponse>>;
|
|
445
|
+
updateDecompilationComment(commentId: number, functionId: number, commentUpdateRequest: CommentUpdateRequest, endpointUrl?: string, localCacheDir?: string, localCacheMaxSizeMb?: number, customerSamplesBucket?: string, firmwareSamplesBucket?: string, maxRetryAttempts?: number, _options?: ConfigurationOptions): Observable<BaseResponseCommentResponse>;
|
|
446
446
|
}
|
|
447
447
|
import { FunctionsRenamingHistoryApiRequestFactory, FunctionsRenamingHistoryApiResponseProcessor } from "../apis/FunctionsRenamingHistoryApi";
|
|
448
448
|
export declare class ObservableFunctionsRenamingHistoryApi {
|