@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.
Files changed (43) hide show
  1. package/README.md +1 -1
  2. package/dist/apis/AnalysesCommentsApi.d.ts +4 -4
  3. package/dist/apis/AnalysesCommentsApi.js +76 -4
  4. package/dist/apis/AnalysesCommentsApi.js.map +1 -1
  5. package/dist/apis/AnalysesCoreApi.d.ts +11 -11
  6. package/dist/apis/AnalysesCoreApi.js +209 -11
  7. package/dist/apis/AnalysesCoreApi.js.map +1 -1
  8. package/dist/apis/AuthenticationUsersApi.d.ts +1 -1
  9. package/dist/apis/AuthenticationUsersApi.js +19 -1
  10. package/dist/apis/AuthenticationUsersApi.js.map +1 -1
  11. package/dist/apis/BinariesApi.d.ts +8 -8
  12. package/dist/apis/BinariesApi.js +152 -8
  13. package/dist/apis/BinariesApi.js.map +1 -1
  14. package/dist/apis/FirmwareApi.d.ts +1 -1
  15. package/dist/apis/FirmwareApi.js +19 -1
  16. package/dist/apis/FirmwareApi.js.map +1 -1
  17. package/dist/apis/FunctionsAIDecompilationApi.d.ts +6 -6
  18. package/dist/apis/FunctionsAIDecompilationApi.js +78 -6
  19. package/dist/apis/FunctionsAIDecompilationApi.js.map +1 -1
  20. package/dist/apis/FunctionsDecompilationApi.d.ts +4 -4
  21. package/dist/apis/FunctionsDecompilationApi.js +76 -4
  22. package/dist/apis/FunctionsDecompilationApi.js.map +1 -1
  23. package/dist/models/{BaseResponseGetAiDecompilationRatingResponse.d.ts → BaseResponseUnionGetAiDecompilationRatingResponseNoneType.d.ts} +1 -1
  24. package/dist/models/BaseResponseUnionGetAiDecompilationRatingResponseNoneType.js +47 -0
  25. package/dist/models/BaseResponseUnionGetAiDecompilationRatingResponseNoneType.js.map +1 -0
  26. package/dist/models/ObjectSerializer.d.ts +1 -1
  27. package/dist/models/ObjectSerializer.js +3 -3
  28. package/dist/models/ObjectSerializer.js.map +1 -1
  29. package/dist/models/all.d.ts +1 -1
  30. package/dist/models/all.js +1 -1
  31. package/dist/models/all.js.map +1 -1
  32. package/dist/types/ObjectParamAPI.d.ts +201 -3
  33. package/dist/types/ObjectParamAPI.js +66 -66
  34. package/dist/types/ObjectParamAPI.js.map +1 -1
  35. package/dist/types/ObservableAPI.d.ts +69 -69
  36. package/dist/types/ObservableAPI.js +132 -132
  37. package/dist/types/ObservableAPI.js.map +1 -1
  38. package/dist/types/PromiseAPI.d.ts +69 -69
  39. package/dist/types/PromiseAPI.js +132 -132
  40. package/dist/types/PromiseAPI.js.map +1 -1
  41. package/package.json +1 -1
  42. package/dist/models/BaseResponseGetAiDecompilationRatingResponse.js +0 -47
  43. package/dist/models/BaseResponseGetAiDecompilationRatingResponse.js.map +0 -1
@@ -11,10 +11,10 @@ var ObservableAnalysesCommentsApi = (function () {
11
11
  this.requestFactory = requestFactory || new AnalysesCommentsApi_1.AnalysesCommentsApiRequestFactory(configuration);
12
12
  this.responseProcessor = responseProcessor || new AnalysesCommentsApi_1.AnalysesCommentsApiResponseProcessor();
13
13
  }
14
- ObservableAnalysesCommentsApi.prototype.createAnalysisCommentWithHttpInfo = function (analysisId, commentBase, _options) {
14
+ ObservableAnalysesCommentsApi.prototype.createAnalysisCommentWithHttpInfo = function (analysisId, commentBase, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
15
15
  var _this = this;
16
16
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
17
- var requestContextPromise = this.requestFactory.createAnalysisComment(analysisId, commentBase, _config);
17
+ var requestContextPromise = this.requestFactory.createAnalysisComment(analysisId, commentBase, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
18
18
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
19
19
  var _loop_1 = function (middleware) {
20
20
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -36,13 +36,13 @@ var ObservableAnalysesCommentsApi = (function () {
36
36
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.createAnalysisCommentWithHttpInfo(rsp); }));
37
37
  }));
38
38
  };
39
- ObservableAnalysesCommentsApi.prototype.createAnalysisComment = function (analysisId, commentBase, _options) {
40
- return this.createAnalysisCommentWithHttpInfo(analysisId, commentBase, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
39
+ ObservableAnalysesCommentsApi.prototype.createAnalysisComment = function (analysisId, commentBase, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
40
+ return this.createAnalysisCommentWithHttpInfo(analysisId, commentBase, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
41
41
  };
42
- ObservableAnalysesCommentsApi.prototype.deleteAnalysisCommentWithHttpInfo = function (commentId, analysisId, _options) {
42
+ ObservableAnalysesCommentsApi.prototype.deleteAnalysisCommentWithHttpInfo = function (commentId, analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
43
43
  var _this = this;
44
44
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
45
- var requestContextPromise = this.requestFactory.deleteAnalysisComment(commentId, analysisId, _config);
45
+ var requestContextPromise = this.requestFactory.deleteAnalysisComment(commentId, analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
46
46
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
47
47
  var _loop_3 = function (middleware) {
48
48
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -64,13 +64,13 @@ var ObservableAnalysesCommentsApi = (function () {
64
64
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.deleteAnalysisCommentWithHttpInfo(rsp); }));
65
65
  }));
66
66
  };
67
- ObservableAnalysesCommentsApi.prototype.deleteAnalysisComment = function (commentId, analysisId, _options) {
68
- return this.deleteAnalysisCommentWithHttpInfo(commentId, analysisId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
67
+ ObservableAnalysesCommentsApi.prototype.deleteAnalysisComment = function (commentId, analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
68
+ return this.deleteAnalysisCommentWithHttpInfo(commentId, analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
69
69
  };
70
- ObservableAnalysesCommentsApi.prototype.getAnalysisCommentsWithHttpInfo = function (analysisId, _options) {
70
+ ObservableAnalysesCommentsApi.prototype.getAnalysisCommentsWithHttpInfo = function (analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
71
71
  var _this = this;
72
72
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
73
- var requestContextPromise = this.requestFactory.getAnalysisComments(analysisId, _config);
73
+ var requestContextPromise = this.requestFactory.getAnalysisComments(analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
74
74
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
75
75
  var _loop_5 = function (middleware) {
76
76
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -92,13 +92,13 @@ var ObservableAnalysesCommentsApi = (function () {
92
92
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.getAnalysisCommentsWithHttpInfo(rsp); }));
93
93
  }));
94
94
  };
95
- ObservableAnalysesCommentsApi.prototype.getAnalysisComments = function (analysisId, _options) {
96
- return this.getAnalysisCommentsWithHttpInfo(analysisId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
95
+ ObservableAnalysesCommentsApi.prototype.getAnalysisComments = function (analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
96
+ return this.getAnalysisCommentsWithHttpInfo(analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
97
97
  };
98
- ObservableAnalysesCommentsApi.prototype.updateAnalysisCommentWithHttpInfo = function (commentId, analysisId, commentUpdateRequest, _options) {
98
+ ObservableAnalysesCommentsApi.prototype.updateAnalysisCommentWithHttpInfo = function (commentId, analysisId, commentUpdateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
99
99
  var _this = this;
100
100
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
101
- var requestContextPromise = this.requestFactory.updateAnalysisComment(commentId, analysisId, commentUpdateRequest, _config);
101
+ var requestContextPromise = this.requestFactory.updateAnalysisComment(commentId, analysisId, commentUpdateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
102
102
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
103
103
  var _loop_7 = function (middleware) {
104
104
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -120,8 +120,8 @@ var ObservableAnalysesCommentsApi = (function () {
120
120
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.updateAnalysisCommentWithHttpInfo(rsp); }));
121
121
  }));
122
122
  };
123
- ObservableAnalysesCommentsApi.prototype.updateAnalysisComment = function (commentId, analysisId, commentUpdateRequest, _options) {
124
- return this.updateAnalysisCommentWithHttpInfo(commentId, analysisId, commentUpdateRequest, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
123
+ ObservableAnalysesCommentsApi.prototype.updateAnalysisComment = function (commentId, analysisId, commentUpdateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
124
+ return this.updateAnalysisCommentWithHttpInfo(commentId, analysisId, commentUpdateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
125
125
  };
126
126
  return ObservableAnalysesCommentsApi;
127
127
  }());
@@ -133,10 +133,10 @@ var ObservableAnalysesCoreApi = (function () {
133
133
  this.requestFactory = requestFactory || new AnalysesCoreApi_1.AnalysesCoreApiRequestFactory(configuration);
134
134
  this.responseProcessor = responseProcessor || new AnalysesCoreApi_1.AnalysesCoreApiResponseProcessor();
135
135
  }
136
- ObservableAnalysesCoreApi.prototype.bulkAddAnalysisTagsWithHttpInfo = function (analysisBulkAddTagsRequest, _options) {
136
+ ObservableAnalysesCoreApi.prototype.bulkAddAnalysisTagsWithHttpInfo = function (analysisBulkAddTagsRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
137
137
  var _this = this;
138
138
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
139
- var requestContextPromise = this.requestFactory.bulkAddAnalysisTags(analysisBulkAddTagsRequest, _config);
139
+ var requestContextPromise = this.requestFactory.bulkAddAnalysisTags(analysisBulkAddTagsRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
140
140
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
141
141
  var _loop_9 = function (middleware) {
142
142
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -158,13 +158,13 @@ var ObservableAnalysesCoreApi = (function () {
158
158
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.bulkAddAnalysisTagsWithHttpInfo(rsp); }));
159
159
  }));
160
160
  };
161
- ObservableAnalysesCoreApi.prototype.bulkAddAnalysisTags = function (analysisBulkAddTagsRequest, _options) {
162
- return this.bulkAddAnalysisTagsWithHttpInfo(analysisBulkAddTagsRequest, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
161
+ ObservableAnalysesCoreApi.prototype.bulkAddAnalysisTags = function (analysisBulkAddTagsRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
162
+ return this.bulkAddAnalysisTagsWithHttpInfo(analysisBulkAddTagsRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
163
163
  };
164
- ObservableAnalysesCoreApi.prototype.createAnalysisWithHttpInfo = function (analysisCreateRequest, xRevEngApplication, _options) {
164
+ ObservableAnalysesCoreApi.prototype.createAnalysisWithHttpInfo = function (analysisCreateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, xRevEngApplication, _options) {
165
165
  var _this = this;
166
166
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
167
- var requestContextPromise = this.requestFactory.createAnalysis(analysisCreateRequest, xRevEngApplication, _config);
167
+ var requestContextPromise = this.requestFactory.createAnalysis(analysisCreateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, xRevEngApplication, _config);
168
168
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
169
169
  var _loop_11 = function (middleware) {
170
170
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -186,13 +186,13 @@ var ObservableAnalysesCoreApi = (function () {
186
186
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.createAnalysisWithHttpInfo(rsp); }));
187
187
  }));
188
188
  };
189
- ObservableAnalysesCoreApi.prototype.createAnalysis = function (analysisCreateRequest, xRevEngApplication, _options) {
190
- return this.createAnalysisWithHttpInfo(analysisCreateRequest, xRevEngApplication, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
189
+ ObservableAnalysesCoreApi.prototype.createAnalysis = function (analysisCreateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, xRevEngApplication, _options) {
190
+ return this.createAnalysisWithHttpInfo(analysisCreateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, xRevEngApplication, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
191
191
  };
192
- ObservableAnalysesCoreApi.prototype.deleteAnalysisWithHttpInfo = function (analysisId, _options) {
192
+ ObservableAnalysesCoreApi.prototype.deleteAnalysisWithHttpInfo = function (analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
193
193
  var _this = this;
194
194
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
195
- var requestContextPromise = this.requestFactory.deleteAnalysis(analysisId, _config);
195
+ var requestContextPromise = this.requestFactory.deleteAnalysis(analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
196
196
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
197
197
  var _loop_13 = function (middleware) {
198
198
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -214,8 +214,8 @@ var ObservableAnalysesCoreApi = (function () {
214
214
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.deleteAnalysisWithHttpInfo(rsp); }));
215
215
  }));
216
216
  };
217
- ObservableAnalysesCoreApi.prototype.deleteAnalysis = function (analysisId, _options) {
218
- return this.deleteAnalysisWithHttpInfo(analysisId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
217
+ ObservableAnalysesCoreApi.prototype.deleteAnalysis = function (analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
218
+ return this.deleteAnalysisWithHttpInfo(analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
219
219
  };
220
220
  ObservableAnalysesCoreApi.prototype.getAnalysisBasicInfoWithHttpInfo = function (analysisId, _options) {
221
221
  var _this = this;
@@ -245,10 +245,10 @@ var ObservableAnalysesCoreApi = (function () {
245
245
  ObservableAnalysesCoreApi.prototype.getAnalysisBasicInfo = function (analysisId, _options) {
246
246
  return this.getAnalysisBasicInfoWithHttpInfo(analysisId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
247
247
  };
248
- ObservableAnalysesCoreApi.prototype.getAnalysisFunctionMapWithHttpInfo = function (analysisId, _options) {
248
+ ObservableAnalysesCoreApi.prototype.getAnalysisFunctionMapWithHttpInfo = function (analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
249
249
  var _this = this;
250
250
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
251
- var requestContextPromise = this.requestFactory.getAnalysisFunctionMap(analysisId, _config);
251
+ var requestContextPromise = this.requestFactory.getAnalysisFunctionMap(analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
252
252
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
253
253
  var _loop_17 = function (middleware) {
254
254
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -270,13 +270,13 @@ var ObservableAnalysesCoreApi = (function () {
270
270
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.getAnalysisFunctionMapWithHttpInfo(rsp); }));
271
271
  }));
272
272
  };
273
- ObservableAnalysesCoreApi.prototype.getAnalysisFunctionMap = function (analysisId, _options) {
274
- return this.getAnalysisFunctionMapWithHttpInfo(analysisId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
273
+ ObservableAnalysesCoreApi.prototype.getAnalysisFunctionMap = function (analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
274
+ return this.getAnalysisFunctionMapWithHttpInfo(analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
275
275
  };
276
- ObservableAnalysesCoreApi.prototype.getAnalysisLogsWithHttpInfo = function (analysisId, _options) {
276
+ ObservableAnalysesCoreApi.prototype.getAnalysisLogsWithHttpInfo = function (analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
277
277
  var _this = this;
278
278
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
279
- var requestContextPromise = this.requestFactory.getAnalysisLogs(analysisId, _config);
279
+ var requestContextPromise = this.requestFactory.getAnalysisLogs(analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
280
280
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
281
281
  var _loop_19 = function (middleware) {
282
282
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -298,13 +298,13 @@ var ObservableAnalysesCoreApi = (function () {
298
298
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.getAnalysisLogsWithHttpInfo(rsp); }));
299
299
  }));
300
300
  };
301
- ObservableAnalysesCoreApi.prototype.getAnalysisLogs = function (analysisId, _options) {
302
- return this.getAnalysisLogsWithHttpInfo(analysisId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
301
+ ObservableAnalysesCoreApi.prototype.getAnalysisLogs = function (analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
302
+ return this.getAnalysisLogsWithHttpInfo(analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
303
303
  };
304
- ObservableAnalysesCoreApi.prototype.getAnalysisParamsWithHttpInfo = function (analysisId, _options) {
304
+ ObservableAnalysesCoreApi.prototype.getAnalysisParamsWithHttpInfo = function (analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
305
305
  var _this = this;
306
306
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
307
- var requestContextPromise = this.requestFactory.getAnalysisParams(analysisId, _config);
307
+ var requestContextPromise = this.requestFactory.getAnalysisParams(analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
308
308
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
309
309
  var _loop_21 = function (middleware) {
310
310
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -326,8 +326,8 @@ var ObservableAnalysesCoreApi = (function () {
326
326
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.getAnalysisParamsWithHttpInfo(rsp); }));
327
327
  }));
328
328
  };
329
- ObservableAnalysesCoreApi.prototype.getAnalysisParams = function (analysisId, _options) {
330
- return this.getAnalysisParamsWithHttpInfo(analysisId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
329
+ ObservableAnalysesCoreApi.prototype.getAnalysisParams = function (analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
330
+ return this.getAnalysisParamsWithHttpInfo(analysisId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
331
331
  };
332
332
  ObservableAnalysesCoreApi.prototype.getAnalysisStatusWithHttpInfo = function (analysisId, _options) {
333
333
  var _this = this;
@@ -357,10 +357,10 @@ var ObservableAnalysesCoreApi = (function () {
357
357
  ObservableAnalysesCoreApi.prototype.getAnalysisStatus = function (analysisId, _options) {
358
358
  return this.getAnalysisStatusWithHttpInfo(analysisId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
359
359
  };
360
- ObservableAnalysesCoreApi.prototype.insertAnalysisLogWithHttpInfo = function (analysisId, insertAnalysisLogRequest, _options) {
360
+ ObservableAnalysesCoreApi.prototype.insertAnalysisLogWithHttpInfo = function (analysisId, insertAnalysisLogRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
361
361
  var _this = this;
362
362
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
363
- var requestContextPromise = this.requestFactory.insertAnalysisLog(analysisId, insertAnalysisLogRequest, _config);
363
+ var requestContextPromise = this.requestFactory.insertAnalysisLog(analysisId, insertAnalysisLogRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
364
364
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
365
365
  var _loop_25 = function (middleware) {
366
366
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -382,8 +382,8 @@ var ObservableAnalysesCoreApi = (function () {
382
382
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.insertAnalysisLogWithHttpInfo(rsp); }));
383
383
  }));
384
384
  };
385
- ObservableAnalysesCoreApi.prototype.insertAnalysisLog = function (analysisId, insertAnalysisLogRequest, _options) {
386
- return this.insertAnalysisLogWithHttpInfo(analysisId, insertAnalysisLogRequest, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
385
+ ObservableAnalysesCoreApi.prototype.insertAnalysisLog = function (analysisId, insertAnalysisLogRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
386
+ return this.insertAnalysisLogWithHttpInfo(analysisId, insertAnalysisLogRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
387
387
  };
388
388
  ObservableAnalysesCoreApi.prototype.listAnalysesWithHttpInfo = function (searchTerm, workspace, status, modelName, dynamicExecutionStatus, usernames, sha256Hash, limit, offset, orderBy, order, _options) {
389
389
  var _this = this;
@@ -469,10 +469,10 @@ var ObservableAnalysesCoreApi = (function () {
469
469
  ObservableAnalysesCoreApi.prototype.putAnalysisStrings = function (analysisId, putAnalysisStringsRequest, _options) {
470
470
  return this.putAnalysisStringsWithHttpInfo(analysisId, putAnalysisStringsRequest, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
471
471
  };
472
- ObservableAnalysesCoreApi.prototype.requeueAnalysisWithHttpInfo = function (analysisId, reAnalysisForm, xRevEngApplication, _options) {
472
+ ObservableAnalysesCoreApi.prototype.requeueAnalysisWithHttpInfo = function (analysisId, reAnalysisForm, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, xRevEngApplication, _options) {
473
473
  var _this = this;
474
474
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
475
- var requestContextPromise = this.requestFactory.requeueAnalysis(analysisId, reAnalysisForm, xRevEngApplication, _config);
475
+ var requestContextPromise = this.requestFactory.requeueAnalysis(analysisId, reAnalysisForm, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, xRevEngApplication, _config);
476
476
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
477
477
  var _loop_33 = function (middleware) {
478
478
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -494,13 +494,13 @@ var ObservableAnalysesCoreApi = (function () {
494
494
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.requeueAnalysisWithHttpInfo(rsp); }));
495
495
  }));
496
496
  };
497
- ObservableAnalysesCoreApi.prototype.requeueAnalysis = function (analysisId, reAnalysisForm, xRevEngApplication, _options) {
498
- return this.requeueAnalysisWithHttpInfo(analysisId, reAnalysisForm, xRevEngApplication, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
497
+ ObservableAnalysesCoreApi.prototype.requeueAnalysis = function (analysisId, reAnalysisForm, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, xRevEngApplication, _options) {
498
+ return this.requeueAnalysisWithHttpInfo(analysisId, reAnalysisForm, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, xRevEngApplication, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
499
499
  };
500
- ObservableAnalysesCoreApi.prototype.updateAnalysisWithHttpInfo = function (analysisId, analysisUpdateRequest, _options) {
500
+ ObservableAnalysesCoreApi.prototype.updateAnalysisWithHttpInfo = function (analysisId, analysisUpdateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
501
501
  var _this = this;
502
502
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
503
- var requestContextPromise = this.requestFactory.updateAnalysis(analysisId, analysisUpdateRequest, _config);
503
+ var requestContextPromise = this.requestFactory.updateAnalysis(analysisId, analysisUpdateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
504
504
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
505
505
  var _loop_35 = function (middleware) {
506
506
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -522,13 +522,13 @@ var ObservableAnalysesCoreApi = (function () {
522
522
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.updateAnalysisWithHttpInfo(rsp); }));
523
523
  }));
524
524
  };
525
- ObservableAnalysesCoreApi.prototype.updateAnalysis = function (analysisId, analysisUpdateRequest, _options) {
526
- return this.updateAnalysisWithHttpInfo(analysisId, analysisUpdateRequest, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
525
+ ObservableAnalysesCoreApi.prototype.updateAnalysis = function (analysisId, analysisUpdateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
526
+ return this.updateAnalysisWithHttpInfo(analysisId, analysisUpdateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
527
527
  };
528
- ObservableAnalysesCoreApi.prototype.updateAnalysisTagsWithHttpInfo = function (analysisId, analysisUpdateTagsRequest, _options) {
528
+ ObservableAnalysesCoreApi.prototype.updateAnalysisTagsWithHttpInfo = function (analysisId, analysisUpdateTagsRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
529
529
  var _this = this;
530
530
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
531
- var requestContextPromise = this.requestFactory.updateAnalysisTags(analysisId, analysisUpdateTagsRequest, _config);
531
+ var requestContextPromise = this.requestFactory.updateAnalysisTags(analysisId, analysisUpdateTagsRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
532
532
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
533
533
  var _loop_37 = function (middleware) {
534
534
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -550,13 +550,13 @@ var ObservableAnalysesCoreApi = (function () {
550
550
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.updateAnalysisTagsWithHttpInfo(rsp); }));
551
551
  }));
552
552
  };
553
- ObservableAnalysesCoreApi.prototype.updateAnalysisTags = function (analysisId, analysisUpdateTagsRequest, _options) {
554
- return this.updateAnalysisTagsWithHttpInfo(analysisId, analysisUpdateTagsRequest, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
553
+ ObservableAnalysesCoreApi.prototype.updateAnalysisTags = function (analysisId, analysisUpdateTagsRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
554
+ return this.updateAnalysisTagsWithHttpInfo(analysisId, analysisUpdateTagsRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
555
555
  };
556
- ObservableAnalysesCoreApi.prototype.uploadFileWithHttpInfo = function (uploadFileType, file, packedPassword, forceOverwrite, _options) {
556
+ ObservableAnalysesCoreApi.prototype.uploadFileWithHttpInfo = function (uploadFileType, file, packedPassword, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, forceOverwrite, _options) {
557
557
  var _this = this;
558
558
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
559
- var requestContextPromise = this.requestFactory.uploadFile(uploadFileType, file, packedPassword, forceOverwrite, _config);
559
+ var requestContextPromise = this.requestFactory.uploadFile(uploadFileType, file, packedPassword, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, forceOverwrite, _config);
560
560
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
561
561
  var _loop_39 = function (middleware) {
562
562
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -578,8 +578,8 @@ var ObservableAnalysesCoreApi = (function () {
578
578
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.uploadFileWithHttpInfo(rsp); }));
579
579
  }));
580
580
  };
581
- ObservableAnalysesCoreApi.prototype.uploadFile = function (uploadFileType, file, packedPassword, forceOverwrite, _options) {
582
- return this.uploadFileWithHttpInfo(uploadFileType, file, packedPassword, forceOverwrite, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
581
+ ObservableAnalysesCoreApi.prototype.uploadFile = function (uploadFileType, file, packedPassword, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, forceOverwrite, _options) {
582
+ return this.uploadFileWithHttpInfo(uploadFileType, file, packedPassword, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, forceOverwrite, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
583
583
  };
584
584
  return ObservableAnalysesCoreApi;
585
585
  }());
@@ -1285,10 +1285,10 @@ var ObservableAuthenticationUsersApi = (function () {
1285
1285
  ObservableAuthenticationUsersApi.prototype.getUserActivity = function (_options) {
1286
1286
  return this.getUserActivityWithHttpInfo(_options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
1287
1287
  };
1288
- ObservableAuthenticationUsersApi.prototype.getUserCommentsWithHttpInfo = function (_options) {
1288
+ ObservableAuthenticationUsersApi.prototype.getUserCommentsWithHttpInfo = function (endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
1289
1289
  var _this = this;
1290
1290
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
1291
- var requestContextPromise = this.requestFactory.getUserComments(_config);
1291
+ var requestContextPromise = this.requestFactory.getUserComments(endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
1292
1292
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
1293
1293
  var _loop_87 = function (middleware) {
1294
1294
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -1310,8 +1310,8 @@ var ObservableAuthenticationUsersApi = (function () {
1310
1310
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.getUserCommentsWithHttpInfo(rsp); }));
1311
1311
  }));
1312
1312
  };
1313
- ObservableAuthenticationUsersApi.prototype.getUserComments = function (_options) {
1314
- return this.getUserCommentsWithHttpInfo(_options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
1313
+ ObservableAuthenticationUsersApi.prototype.getUserComments = function (endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
1314
+ return this.getUserCommentsWithHttpInfo(endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
1315
1315
  };
1316
1316
  ObservableAuthenticationUsersApi.prototype.loginUserWithHttpInfo = function (loginRequest, _options) {
1317
1317
  var _this = this;
@@ -1351,10 +1351,10 @@ var ObservableBinariesApi = (function () {
1351
1351
  this.requestFactory = requestFactory || new BinariesApi_1.BinariesApiRequestFactory(configuration);
1352
1352
  this.responseProcessor = responseProcessor || new BinariesApi_1.BinariesApiResponseProcessor();
1353
1353
  }
1354
- ObservableBinariesApi.prototype.downloadZippedBinaryWithHttpInfo = function (binaryId, _options) {
1354
+ ObservableBinariesApi.prototype.downloadZippedBinaryWithHttpInfo = function (binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
1355
1355
  var _this = this;
1356
1356
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
1357
- var requestContextPromise = this.requestFactory.downloadZippedBinary(binaryId, _config);
1357
+ var requestContextPromise = this.requestFactory.downloadZippedBinary(binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
1358
1358
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
1359
1359
  var _loop_91 = function (middleware) {
1360
1360
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -1376,13 +1376,13 @@ var ObservableBinariesApi = (function () {
1376
1376
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.downloadZippedBinaryWithHttpInfo(rsp); }));
1377
1377
  }));
1378
1378
  };
1379
- ObservableBinariesApi.prototype.downloadZippedBinary = function (binaryId, _options) {
1380
- return this.downloadZippedBinaryWithHttpInfo(binaryId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
1379
+ ObservableBinariesApi.prototype.downloadZippedBinary = function (binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
1380
+ return this.downloadZippedBinaryWithHttpInfo(binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
1381
1381
  };
1382
- ObservableBinariesApi.prototype.getBinaryAdditionalDetailsWithHttpInfo = function (binaryId, _options) {
1382
+ ObservableBinariesApi.prototype.getBinaryAdditionalDetailsWithHttpInfo = function (binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
1383
1383
  var _this = this;
1384
1384
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
1385
- var requestContextPromise = this.requestFactory.getBinaryAdditionalDetails(binaryId, _config);
1385
+ var requestContextPromise = this.requestFactory.getBinaryAdditionalDetails(binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
1386
1386
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
1387
1387
  var _loop_93 = function (middleware) {
1388
1388
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -1404,13 +1404,13 @@ var ObservableBinariesApi = (function () {
1404
1404
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.getBinaryAdditionalDetailsWithHttpInfo(rsp); }));
1405
1405
  }));
1406
1406
  };
1407
- ObservableBinariesApi.prototype.getBinaryAdditionalDetails = function (binaryId, _options) {
1408
- return this.getBinaryAdditionalDetailsWithHttpInfo(binaryId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
1407
+ ObservableBinariesApi.prototype.getBinaryAdditionalDetails = function (binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
1408
+ return this.getBinaryAdditionalDetailsWithHttpInfo(binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
1409
1409
  };
1410
- ObservableBinariesApi.prototype.getBinaryAdditionalDetailsStatusWithHttpInfo = function (binaryId, _options) {
1410
+ ObservableBinariesApi.prototype.getBinaryAdditionalDetailsStatusWithHttpInfo = function (binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
1411
1411
  var _this = this;
1412
1412
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
1413
- var requestContextPromise = this.requestFactory.getBinaryAdditionalDetailsStatus(binaryId, _config);
1413
+ var requestContextPromise = this.requestFactory.getBinaryAdditionalDetailsStatus(binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
1414
1414
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
1415
1415
  var _loop_95 = function (middleware) {
1416
1416
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -1432,13 +1432,13 @@ var ObservableBinariesApi = (function () {
1432
1432
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.getBinaryAdditionalDetailsStatusWithHttpInfo(rsp); }));
1433
1433
  }));
1434
1434
  };
1435
- ObservableBinariesApi.prototype.getBinaryAdditionalDetailsStatus = function (binaryId, _options) {
1436
- return this.getBinaryAdditionalDetailsStatusWithHttpInfo(binaryId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
1435
+ ObservableBinariesApi.prototype.getBinaryAdditionalDetailsStatus = function (binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
1436
+ return this.getBinaryAdditionalDetailsStatusWithHttpInfo(binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
1437
1437
  };
1438
- ObservableBinariesApi.prototype.getBinaryDetailsWithHttpInfo = function (binaryId, _options) {
1438
+ ObservableBinariesApi.prototype.getBinaryDetailsWithHttpInfo = function (binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
1439
1439
  var _this = this;
1440
1440
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
1441
- var requestContextPromise = this.requestFactory.getBinaryDetails(binaryId, _config);
1441
+ var requestContextPromise = this.requestFactory.getBinaryDetails(binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
1442
1442
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
1443
1443
  var _loop_97 = function (middleware) {
1444
1444
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -1460,13 +1460,13 @@ var ObservableBinariesApi = (function () {
1460
1460
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.getBinaryDetailsWithHttpInfo(rsp); }));
1461
1461
  }));
1462
1462
  };
1463
- ObservableBinariesApi.prototype.getBinaryDetails = function (binaryId, _options) {
1464
- return this.getBinaryDetailsWithHttpInfo(binaryId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
1463
+ ObservableBinariesApi.prototype.getBinaryDetails = function (binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
1464
+ return this.getBinaryDetailsWithHttpInfo(binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
1465
1465
  };
1466
- ObservableBinariesApi.prototype.getBinaryDieInfoWithHttpInfo = function (binaryId, _options) {
1466
+ ObservableBinariesApi.prototype.getBinaryDieInfoWithHttpInfo = function (binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
1467
1467
  var _this = this;
1468
1468
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
1469
- var requestContextPromise = this.requestFactory.getBinaryDieInfo(binaryId, _config);
1469
+ var requestContextPromise = this.requestFactory.getBinaryDieInfo(binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
1470
1470
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
1471
1471
  var _loop_99 = function (middleware) {
1472
1472
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -1488,13 +1488,13 @@ var ObservableBinariesApi = (function () {
1488
1488
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.getBinaryDieInfoWithHttpInfo(rsp); }));
1489
1489
  }));
1490
1490
  };
1491
- ObservableBinariesApi.prototype.getBinaryDieInfo = function (binaryId, _options) {
1492
- return this.getBinaryDieInfoWithHttpInfo(binaryId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
1491
+ ObservableBinariesApi.prototype.getBinaryDieInfo = function (binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
1492
+ return this.getBinaryDieInfoWithHttpInfo(binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
1493
1493
  };
1494
- ObservableBinariesApi.prototype.getBinaryExternalsWithHttpInfo = function (binaryId, _options) {
1494
+ ObservableBinariesApi.prototype.getBinaryExternalsWithHttpInfo = function (binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
1495
1495
  var _this = this;
1496
1496
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
1497
- var requestContextPromise = this.requestFactory.getBinaryExternals(binaryId, _config);
1497
+ var requestContextPromise = this.requestFactory.getBinaryExternals(binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
1498
1498
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
1499
1499
  var _loop_101 = function (middleware) {
1500
1500
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -1516,13 +1516,13 @@ var ObservableBinariesApi = (function () {
1516
1516
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.getBinaryExternalsWithHttpInfo(rsp); }));
1517
1517
  }));
1518
1518
  };
1519
- ObservableBinariesApi.prototype.getBinaryExternals = function (binaryId, _options) {
1520
- return this.getBinaryExternalsWithHttpInfo(binaryId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
1519
+ ObservableBinariesApi.prototype.getBinaryExternals = function (binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
1520
+ return this.getBinaryExternalsWithHttpInfo(binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
1521
1521
  };
1522
- ObservableBinariesApi.prototype.getBinaryRelatedStatusWithHttpInfo = function (binaryId, _options) {
1522
+ ObservableBinariesApi.prototype.getBinaryRelatedStatusWithHttpInfo = function (binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
1523
1523
  var _this = this;
1524
1524
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
1525
- var requestContextPromise = this.requestFactory.getBinaryRelatedStatus(binaryId, _config);
1525
+ var requestContextPromise = this.requestFactory.getBinaryRelatedStatus(binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
1526
1526
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
1527
1527
  var _loop_103 = function (middleware) {
1528
1528
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -1544,13 +1544,13 @@ var ObservableBinariesApi = (function () {
1544
1544
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.getBinaryRelatedStatusWithHttpInfo(rsp); }));
1545
1545
  }));
1546
1546
  };
1547
- ObservableBinariesApi.prototype.getBinaryRelatedStatus = function (binaryId, _options) {
1548
- return this.getBinaryRelatedStatusWithHttpInfo(binaryId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
1547
+ ObservableBinariesApi.prototype.getBinaryRelatedStatus = function (binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
1548
+ return this.getBinaryRelatedStatusWithHttpInfo(binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
1549
1549
  };
1550
- ObservableBinariesApi.prototype.getRelatedBinariesWithHttpInfo = function (binaryId, _options) {
1550
+ ObservableBinariesApi.prototype.getRelatedBinariesWithHttpInfo = function (binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
1551
1551
  var _this = this;
1552
1552
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
1553
- var requestContextPromise = this.requestFactory.getRelatedBinaries(binaryId, _config);
1553
+ var requestContextPromise = this.requestFactory.getRelatedBinaries(binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
1554
1554
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
1555
1555
  var _loop_105 = function (middleware) {
1556
1556
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -1572,8 +1572,8 @@ var ObservableBinariesApi = (function () {
1572
1572
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.getRelatedBinariesWithHttpInfo(rsp); }));
1573
1573
  }));
1574
1574
  };
1575
- ObservableBinariesApi.prototype.getRelatedBinaries = function (binaryId, _options) {
1576
- return this.getRelatedBinariesWithHttpInfo(binaryId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
1575
+ ObservableBinariesApi.prototype.getRelatedBinaries = function (binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
1576
+ return this.getRelatedBinariesWithHttpInfo(binaryId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
1577
1577
  };
1578
1578
  return ObservableBinariesApi;
1579
1579
  }());
@@ -1951,10 +1951,10 @@ var ObservableFirmwareApi = (function () {
1951
1951
  ObservableFirmwareApi.prototype.getBinariesForFirmwareTask = function (taskId, _options) {
1952
1952
  return this.getBinariesForFirmwareTaskWithHttpInfo(taskId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
1953
1953
  };
1954
- ObservableFirmwareApi.prototype.uploadFirmwareWithHttpInfo = function (file, password, _options) {
1954
+ ObservableFirmwareApi.prototype.uploadFirmwareWithHttpInfo = function (file, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, password, _options) {
1955
1955
  var _this = this;
1956
1956
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
1957
- var requestContextPromise = this.requestFactory.uploadFirmware(file, password, _config);
1957
+ var requestContextPromise = this.requestFactory.uploadFirmware(file, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, password, _config);
1958
1958
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
1959
1959
  var _loop_131 = function (middleware) {
1960
1960
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -1976,8 +1976,8 @@ var ObservableFirmwareApi = (function () {
1976
1976
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.uploadFirmwareWithHttpInfo(rsp); }));
1977
1977
  }));
1978
1978
  };
1979
- ObservableFirmwareApi.prototype.uploadFirmware = function (file, password, _options) {
1980
- return this.uploadFirmwareWithHttpInfo(file, password, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
1979
+ ObservableFirmwareApi.prototype.uploadFirmware = function (file, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, password, _options) {
1980
+ return this.uploadFirmwareWithHttpInfo(file, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, password, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
1981
1981
  };
1982
1982
  return ObservableFirmwareApi;
1983
1983
  }());
@@ -1989,10 +1989,10 @@ var ObservableFunctionsAIDecompilationApi = (function () {
1989
1989
  this.requestFactory = requestFactory || new FunctionsAIDecompilationApi_1.FunctionsAIDecompilationApiRequestFactory(configuration);
1990
1990
  this.responseProcessor = responseProcessor || new FunctionsAIDecompilationApi_1.FunctionsAIDecompilationApiResponseProcessor();
1991
1991
  }
1992
- ObservableFunctionsAIDecompilationApi.prototype.createAiDecompilationCommentWithHttpInfo = function (functionId, functionCommentCreateRequest, _options) {
1992
+ ObservableFunctionsAIDecompilationApi.prototype.createAiDecompilationCommentWithHttpInfo = function (functionId, functionCommentCreateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
1993
1993
  var _this = this;
1994
1994
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
1995
- var requestContextPromise = this.requestFactory.createAiDecompilationComment(functionId, functionCommentCreateRequest, _config);
1995
+ var requestContextPromise = this.requestFactory.createAiDecompilationComment(functionId, functionCommentCreateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
1996
1996
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
1997
1997
  var _loop_133 = function (middleware) {
1998
1998
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -2014,8 +2014,8 @@ var ObservableFunctionsAIDecompilationApi = (function () {
2014
2014
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.createAiDecompilationCommentWithHttpInfo(rsp); }));
2015
2015
  }));
2016
2016
  };
2017
- ObservableFunctionsAIDecompilationApi.prototype.createAiDecompilationComment = function (functionId, functionCommentCreateRequest, _options) {
2018
- return this.createAiDecompilationCommentWithHttpInfo(functionId, functionCommentCreateRequest, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
2017
+ ObservableFunctionsAIDecompilationApi.prototype.createAiDecompilationComment = function (functionId, functionCommentCreateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
2018
+ return this.createAiDecompilationCommentWithHttpInfo(functionId, functionCommentCreateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
2019
2019
  };
2020
2020
  ObservableFunctionsAIDecompilationApi.prototype.createAiDecompilationTaskWithHttpInfo = function (functionId, _options) {
2021
2021
  var _this = this;
@@ -2045,10 +2045,10 @@ var ObservableFunctionsAIDecompilationApi = (function () {
2045
2045
  ObservableFunctionsAIDecompilationApi.prototype.createAiDecompilationTask = function (functionId, _options) {
2046
2046
  return this.createAiDecompilationTaskWithHttpInfo(functionId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
2047
2047
  };
2048
- ObservableFunctionsAIDecompilationApi.prototype.deleteAiDecompilationCommentWithHttpInfo = function (commentId, functionId, _options) {
2048
+ ObservableFunctionsAIDecompilationApi.prototype.deleteAiDecompilationCommentWithHttpInfo = function (commentId, functionId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
2049
2049
  var _this = this;
2050
2050
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
2051
- var requestContextPromise = this.requestFactory.deleteAiDecompilationComment(commentId, functionId, _config);
2051
+ var requestContextPromise = this.requestFactory.deleteAiDecompilationComment(commentId, functionId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
2052
2052
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
2053
2053
  var _loop_137 = function (middleware) {
2054
2054
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -2070,13 +2070,13 @@ var ObservableFunctionsAIDecompilationApi = (function () {
2070
2070
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.deleteAiDecompilationCommentWithHttpInfo(rsp); }));
2071
2071
  }));
2072
2072
  };
2073
- ObservableFunctionsAIDecompilationApi.prototype.deleteAiDecompilationComment = function (commentId, functionId, _options) {
2074
- return this.deleteAiDecompilationCommentWithHttpInfo(commentId, functionId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
2073
+ ObservableFunctionsAIDecompilationApi.prototype.deleteAiDecompilationComment = function (commentId, functionId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
2074
+ return this.deleteAiDecompilationCommentWithHttpInfo(commentId, functionId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
2075
2075
  };
2076
- ObservableFunctionsAIDecompilationApi.prototype.getAiDecompilationCommentsWithHttpInfo = function (functionId, _options) {
2076
+ ObservableFunctionsAIDecompilationApi.prototype.getAiDecompilationCommentsWithHttpInfo = function (functionId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
2077
2077
  var _this = this;
2078
2078
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
2079
- var requestContextPromise = this.requestFactory.getAiDecompilationComments(functionId, _config);
2079
+ var requestContextPromise = this.requestFactory.getAiDecompilationComments(functionId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
2080
2080
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
2081
2081
  var _loop_139 = function (middleware) {
2082
2082
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -2098,8 +2098,8 @@ var ObservableFunctionsAIDecompilationApi = (function () {
2098
2098
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.getAiDecompilationCommentsWithHttpInfo(rsp); }));
2099
2099
  }));
2100
2100
  };
2101
- ObservableFunctionsAIDecompilationApi.prototype.getAiDecompilationComments = function (functionId, _options) {
2102
- return this.getAiDecompilationCommentsWithHttpInfo(functionId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
2101
+ ObservableFunctionsAIDecompilationApi.prototype.getAiDecompilationComments = function (functionId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
2102
+ return this.getAiDecompilationCommentsWithHttpInfo(functionId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
2103
2103
  };
2104
2104
  ObservableFunctionsAIDecompilationApi.prototype.getAiDecompilationRatingWithHttpInfo = function (functionId, _options) {
2105
2105
  var _this = this;
@@ -2185,10 +2185,10 @@ var ObservableFunctionsAIDecompilationApi = (function () {
2185
2185
  ObservableFunctionsAIDecompilationApi.prototype.getAiDecompilationTaskStatus = function (functionId, _options) {
2186
2186
  return this.getAiDecompilationTaskStatusWithHttpInfo(functionId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
2187
2187
  };
2188
- ObservableFunctionsAIDecompilationApi.prototype.updateAiDecompilationCommentWithHttpInfo = function (commentId, functionId, commentUpdateRequest, _options) {
2188
+ ObservableFunctionsAIDecompilationApi.prototype.updateAiDecompilationCommentWithHttpInfo = function (commentId, functionId, commentUpdateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
2189
2189
  var _this = this;
2190
2190
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
2191
- var requestContextPromise = this.requestFactory.updateAiDecompilationComment(commentId, functionId, commentUpdateRequest, _config);
2191
+ var requestContextPromise = this.requestFactory.updateAiDecompilationComment(commentId, functionId, commentUpdateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
2192
2192
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
2193
2193
  var _loop_147 = function (middleware) {
2194
2194
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -2210,8 +2210,8 @@ var ObservableFunctionsAIDecompilationApi = (function () {
2210
2210
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.updateAiDecompilationCommentWithHttpInfo(rsp); }));
2211
2211
  }));
2212
2212
  };
2213
- ObservableFunctionsAIDecompilationApi.prototype.updateAiDecompilationComment = function (commentId, functionId, commentUpdateRequest, _options) {
2214
- return this.updateAiDecompilationCommentWithHttpInfo(commentId, functionId, commentUpdateRequest, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
2213
+ ObservableFunctionsAIDecompilationApi.prototype.updateAiDecompilationComment = function (commentId, functionId, commentUpdateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
2214
+ return this.updateAiDecompilationCommentWithHttpInfo(commentId, functionId, commentUpdateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
2215
2215
  };
2216
2216
  ObservableFunctionsAIDecompilationApi.prototype.upsertAiDecompilationRatingWithHttpInfo = function (functionId, upsertAiDecomplationRatingRequest, _options) {
2217
2217
  var _this = this;
@@ -2925,10 +2925,10 @@ var ObservableFunctionsDecompilationApi = (function () {
2925
2925
  this.requestFactory = requestFactory || new FunctionsDecompilationApi_1.FunctionsDecompilationApiRequestFactory(configuration);
2926
2926
  this.responseProcessor = responseProcessor || new FunctionsDecompilationApi_1.FunctionsDecompilationApiResponseProcessor();
2927
2927
  }
2928
- ObservableFunctionsDecompilationApi.prototype.createDecompilationCommentWithHttpInfo = function (functionId, functionCommentCreateRequest, _options) {
2928
+ ObservableFunctionsDecompilationApi.prototype.createDecompilationCommentWithHttpInfo = function (functionId, functionCommentCreateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
2929
2929
  var _this = this;
2930
2930
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
2931
- var requestContextPromise = this.requestFactory.createDecompilationComment(functionId, functionCommentCreateRequest, _config);
2931
+ var requestContextPromise = this.requestFactory.createDecompilationComment(functionId, functionCommentCreateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
2932
2932
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
2933
2933
  var _loop_197 = function (middleware) {
2934
2934
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -2950,13 +2950,13 @@ var ObservableFunctionsDecompilationApi = (function () {
2950
2950
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.createDecompilationCommentWithHttpInfo(rsp); }));
2951
2951
  }));
2952
2952
  };
2953
- ObservableFunctionsDecompilationApi.prototype.createDecompilationComment = function (functionId, functionCommentCreateRequest, _options) {
2954
- return this.createDecompilationCommentWithHttpInfo(functionId, functionCommentCreateRequest, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
2953
+ ObservableFunctionsDecompilationApi.prototype.createDecompilationComment = function (functionId, functionCommentCreateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
2954
+ return this.createDecompilationCommentWithHttpInfo(functionId, functionCommentCreateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
2955
2955
  };
2956
- ObservableFunctionsDecompilationApi.prototype.deleteDecompilationCommentWithHttpInfo = function (commentId, functionId, _options) {
2956
+ ObservableFunctionsDecompilationApi.prototype.deleteDecompilationCommentWithHttpInfo = function (commentId, functionId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
2957
2957
  var _this = this;
2958
2958
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
2959
- var requestContextPromise = this.requestFactory.deleteDecompilationComment(commentId, functionId, _config);
2959
+ var requestContextPromise = this.requestFactory.deleteDecompilationComment(commentId, functionId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
2960
2960
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
2961
2961
  var _loop_199 = function (middleware) {
2962
2962
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -2978,13 +2978,13 @@ var ObservableFunctionsDecompilationApi = (function () {
2978
2978
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.deleteDecompilationCommentWithHttpInfo(rsp); }));
2979
2979
  }));
2980
2980
  };
2981
- ObservableFunctionsDecompilationApi.prototype.deleteDecompilationComment = function (commentId, functionId, _options) {
2982
- return this.deleteDecompilationCommentWithHttpInfo(commentId, functionId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
2981
+ ObservableFunctionsDecompilationApi.prototype.deleteDecompilationComment = function (commentId, functionId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
2982
+ return this.deleteDecompilationCommentWithHttpInfo(commentId, functionId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
2983
2983
  };
2984
- ObservableFunctionsDecompilationApi.prototype.getDecompilationCommentsWithHttpInfo = function (functionId, _options) {
2984
+ ObservableFunctionsDecompilationApi.prototype.getDecompilationCommentsWithHttpInfo = function (functionId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
2985
2985
  var _this = this;
2986
2986
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
2987
- var requestContextPromise = this.requestFactory.getDecompilationComments(functionId, _config);
2987
+ var requestContextPromise = this.requestFactory.getDecompilationComments(functionId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
2988
2988
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
2989
2989
  var _loop_201 = function (middleware) {
2990
2990
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -3006,13 +3006,13 @@ var ObservableFunctionsDecompilationApi = (function () {
3006
3006
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.getDecompilationCommentsWithHttpInfo(rsp); }));
3007
3007
  }));
3008
3008
  };
3009
- ObservableFunctionsDecompilationApi.prototype.getDecompilationComments = function (functionId, _options) {
3010
- return this.getDecompilationCommentsWithHttpInfo(functionId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
3009
+ ObservableFunctionsDecompilationApi.prototype.getDecompilationComments = function (functionId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
3010
+ return this.getDecompilationCommentsWithHttpInfo(functionId, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
3011
3011
  };
3012
- ObservableFunctionsDecompilationApi.prototype.updateDecompilationCommentWithHttpInfo = function (commentId, functionId, commentUpdateRequest, _options) {
3012
+ ObservableFunctionsDecompilationApi.prototype.updateDecompilationCommentWithHttpInfo = function (commentId, functionId, commentUpdateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
3013
3013
  var _this = this;
3014
3014
  var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
3015
- var requestContextPromise = this.requestFactory.updateDecompilationComment(commentId, functionId, commentUpdateRequest, _config);
3015
+ var requestContextPromise = this.requestFactory.updateDecompilationComment(commentId, functionId, commentUpdateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _config);
3016
3016
  var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
3017
3017
  var _loop_203 = function (middleware) {
3018
3018
  middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
@@ -3034,8 +3034,8 @@ var ObservableFunctionsDecompilationApi = (function () {
3034
3034
  return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.updateDecompilationCommentWithHttpInfo(rsp); }));
3035
3035
  }));
3036
3036
  };
3037
- ObservableFunctionsDecompilationApi.prototype.updateDecompilationComment = function (commentId, functionId, commentUpdateRequest, _options) {
3038
- return this.updateDecompilationCommentWithHttpInfo(commentId, functionId, commentUpdateRequest, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
3037
+ ObservableFunctionsDecompilationApi.prototype.updateDecompilationComment = function (commentId, functionId, commentUpdateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options) {
3038
+ return this.updateDecompilationCommentWithHttpInfo(commentId, functionId, commentUpdateRequest, endpointUrl, localCacheDir, localCacheMaxSizeMb, customerSamplesBucket, firmwareSamplesBucket, maxRetryAttempts, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
3039
3039
  };
3040
3040
  return ObservableFunctionsDecompilationApi;
3041
3041
  }());