@revengai/sdk 2.15.0 → 2.18.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -5
- package/dist/apis/FunctionsDecompilationApi.d.ts +0 -9
- package/dist/apis/FunctionsDecompilationApi.js +0 -243
- package/dist/apis/FunctionsDecompilationApi.js.map +1 -1
- package/dist/models/ModelName.d.ts +6 -8
- package/dist/models/ModelName.js +6 -8
- package/dist/models/ModelName.js.map +1 -1
- package/dist/models/ObjectSerializer.d.ts +0 -2
- package/dist/models/ObjectSerializer.js +0 -6
- package/dist/models/ObjectSerializer.js.map +1 -1
- package/dist/models/all.d.ts +0 -2
- package/dist/models/all.js +0 -2
- package/dist/models/all.js.map +1 -1
- package/dist/types/ObjectParamAPI.d.ts +0 -16
- package/dist/types/ObjectParamAPI.js +0 -18
- package/dist/types/ObjectParamAPI.js.map +1 -1
- package/dist/types/ObservableAPI.d.ts +0 -7
- package/dist/types/ObservableAPI.js +50 -134
- package/dist/types/ObservableAPI.js.map +1 -1
- package/dist/types/PromiseAPI.d.ts +0 -7
- package/dist/types/PromiseAPI.js +0 -30
- package/dist/types/PromiseAPI.js.map +1 -1
- package/package.json +1 -1
- package/dist/models/BaseResponseDecompilationResponse.d.ts +0 -27
- package/dist/models/BaseResponseDecompilationResponse.js +0 -47
- package/dist/models/BaseResponseDecompilationResponse.js.map +0 -1
- package/dist/models/DecompilationResponse.d.ts +0 -22
- package/dist/models/DecompilationResponse.js +0 -35
- package/dist/models/DecompilationResponse.js.map +0 -1
|
@@ -2737,10 +2737,10 @@ var ObservableFunctionsDecompilationApi = (function () {
|
|
|
2737
2737
|
this.requestFactory = requestFactory || new FunctionsDecompilationApi_1.FunctionsDecompilationApiRequestFactory(configuration);
|
|
2738
2738
|
this.responseProcessor = responseProcessor || new FunctionsDecompilationApi_1.FunctionsDecompilationApiResponseProcessor();
|
|
2739
2739
|
}
|
|
2740
|
-
ObservableFunctionsDecompilationApi.prototype.
|
|
2740
|
+
ObservableFunctionsDecompilationApi.prototype.createDecompilationCommentWithHttpInfo = function (functionId, functionCommentCreateRequest, _options) {
|
|
2741
2741
|
var _this = this;
|
|
2742
2742
|
var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
|
|
2743
|
-
var requestContextPromise = this.requestFactory.
|
|
2743
|
+
var requestContextPromise = this.requestFactory.createDecompilationComment(functionId, functionCommentCreateRequest, _config);
|
|
2744
2744
|
var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
|
|
2745
2745
|
var _loop_185 = function (middleware) {
|
|
2746
2746
|
middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
|
|
@@ -2759,89 +2759,33 @@ var ObservableFunctionsDecompilationApi = (function () {
|
|
|
2759
2759
|
var middleware = _a[_i];
|
|
2760
2760
|
_loop_186(middleware);
|
|
2761
2761
|
}
|
|
2762
|
-
return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.checkFunctionDecompilationTaskWithHttpInfo(rsp); }));
|
|
2763
|
-
}));
|
|
2764
|
-
};
|
|
2765
|
-
ObservableFunctionsDecompilationApi.prototype.checkFunctionDecompilationTask = function (functionId, _options) {
|
|
2766
|
-
return this.checkFunctionDecompilationTaskWithHttpInfo(functionId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
|
|
2767
|
-
};
|
|
2768
|
-
ObservableFunctionsDecompilationApi.prototype.createDecompilationCommentWithHttpInfo = function (functionId, functionCommentCreateRequest, _options) {
|
|
2769
|
-
var _this = this;
|
|
2770
|
-
var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
|
|
2771
|
-
var requestContextPromise = this.requestFactory.createDecompilationComment(functionId, functionCommentCreateRequest, _config);
|
|
2772
|
-
var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
|
|
2773
|
-
var _loop_187 = function (middleware) {
|
|
2774
|
-
middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
|
|
2775
|
-
};
|
|
2776
|
-
for (var _i = 0, _a = _config.middleware; _i < _a.length; _i++) {
|
|
2777
|
-
var middleware = _a[_i];
|
|
2778
|
-
_loop_187(middleware);
|
|
2779
|
-
}
|
|
2780
|
-
return middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return _config.httpApi.send(ctx); })).
|
|
2781
|
-
pipe((0, rxjsStub_2.mergeMap)(function (response) {
|
|
2782
|
-
var middlewarePostObservable = (0, rxjsStub_1.of)(response);
|
|
2783
|
-
var _loop_188 = function (middleware) {
|
|
2784
|
-
middlewarePostObservable = middlewarePostObservable.pipe((0, rxjsStub_2.mergeMap)(function (rsp) { return middleware.post(rsp); }));
|
|
2785
|
-
};
|
|
2786
|
-
for (var _i = 0, _a = _config.middleware.reverse(); _i < _a.length; _i++) {
|
|
2787
|
-
var middleware = _a[_i];
|
|
2788
|
-
_loop_188(middleware);
|
|
2789
|
-
}
|
|
2790
2762
|
return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.createDecompilationCommentWithHttpInfo(rsp); }));
|
|
2791
2763
|
}));
|
|
2792
2764
|
};
|
|
2793
2765
|
ObservableFunctionsDecompilationApi.prototype.createDecompilationComment = function (functionId, functionCommentCreateRequest, _options) {
|
|
2794
2766
|
return this.createDecompilationCommentWithHttpInfo(functionId, functionCommentCreateRequest, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
|
|
2795
2767
|
};
|
|
2796
|
-
ObservableFunctionsDecompilationApi.prototype.createFunctionDecompilationTaskWithHttpInfo = function (functionId, _options) {
|
|
2797
|
-
var _this = this;
|
|
2798
|
-
var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
|
|
2799
|
-
var requestContextPromise = this.requestFactory.createFunctionDecompilationTask(functionId, _config);
|
|
2800
|
-
var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
|
|
2801
|
-
var _loop_189 = function (middleware) {
|
|
2802
|
-
middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
|
|
2803
|
-
};
|
|
2804
|
-
for (var _i = 0, _a = _config.middleware; _i < _a.length; _i++) {
|
|
2805
|
-
var middleware = _a[_i];
|
|
2806
|
-
_loop_189(middleware);
|
|
2807
|
-
}
|
|
2808
|
-
return middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return _config.httpApi.send(ctx); })).
|
|
2809
|
-
pipe((0, rxjsStub_2.mergeMap)(function (response) {
|
|
2810
|
-
var middlewarePostObservable = (0, rxjsStub_1.of)(response);
|
|
2811
|
-
var _loop_190 = function (middleware) {
|
|
2812
|
-
middlewarePostObservable = middlewarePostObservable.pipe((0, rxjsStub_2.mergeMap)(function (rsp) { return middleware.post(rsp); }));
|
|
2813
|
-
};
|
|
2814
|
-
for (var _i = 0, _a = _config.middleware.reverse(); _i < _a.length; _i++) {
|
|
2815
|
-
var middleware = _a[_i];
|
|
2816
|
-
_loop_190(middleware);
|
|
2817
|
-
}
|
|
2818
|
-
return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.createFunctionDecompilationTaskWithHttpInfo(rsp); }));
|
|
2819
|
-
}));
|
|
2820
|
-
};
|
|
2821
|
-
ObservableFunctionsDecompilationApi.prototype.createFunctionDecompilationTask = function (functionId, _options) {
|
|
2822
|
-
return this.createFunctionDecompilationTaskWithHttpInfo(functionId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
|
|
2823
|
-
};
|
|
2824
2768
|
ObservableFunctionsDecompilationApi.prototype.deleteDecompilationCommentWithHttpInfo = function (commentId, functionId, _options) {
|
|
2825
2769
|
var _this = this;
|
|
2826
2770
|
var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
|
|
2827
2771
|
var requestContextPromise = this.requestFactory.deleteDecompilationComment(commentId, functionId, _config);
|
|
2828
2772
|
var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
|
|
2829
|
-
var
|
|
2773
|
+
var _loop_187 = function (middleware) {
|
|
2830
2774
|
middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
|
|
2831
2775
|
};
|
|
2832
2776
|
for (var _i = 0, _a = _config.middleware; _i < _a.length; _i++) {
|
|
2833
2777
|
var middleware = _a[_i];
|
|
2834
|
-
|
|
2778
|
+
_loop_187(middleware);
|
|
2835
2779
|
}
|
|
2836
2780
|
return middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return _config.httpApi.send(ctx); })).
|
|
2837
2781
|
pipe((0, rxjsStub_2.mergeMap)(function (response) {
|
|
2838
2782
|
var middlewarePostObservable = (0, rxjsStub_1.of)(response);
|
|
2839
|
-
var
|
|
2783
|
+
var _loop_188 = function (middleware) {
|
|
2840
2784
|
middlewarePostObservable = middlewarePostObservable.pipe((0, rxjsStub_2.mergeMap)(function (rsp) { return middleware.post(rsp); }));
|
|
2841
2785
|
};
|
|
2842
2786
|
for (var _i = 0, _a = _config.middleware.reverse(); _i < _a.length; _i++) {
|
|
2843
2787
|
var middleware = _a[_i];
|
|
2844
|
-
|
|
2788
|
+
_loop_188(middleware);
|
|
2845
2789
|
}
|
|
2846
2790
|
return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.deleteDecompilationCommentWithHttpInfo(rsp); }));
|
|
2847
2791
|
}));
|
|
@@ -2854,22 +2798,22 @@ var ObservableFunctionsDecompilationApi = (function () {
|
|
|
2854
2798
|
var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
|
|
2855
2799
|
var requestContextPromise = this.requestFactory.getDecompilationComments(functionId, _config);
|
|
2856
2800
|
var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
|
|
2857
|
-
var
|
|
2801
|
+
var _loop_189 = function (middleware) {
|
|
2858
2802
|
middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
|
|
2859
2803
|
};
|
|
2860
2804
|
for (var _i = 0, _a = _config.middleware; _i < _a.length; _i++) {
|
|
2861
2805
|
var middleware = _a[_i];
|
|
2862
|
-
|
|
2806
|
+
_loop_189(middleware);
|
|
2863
2807
|
}
|
|
2864
2808
|
return middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return _config.httpApi.send(ctx); })).
|
|
2865
2809
|
pipe((0, rxjsStub_2.mergeMap)(function (response) {
|
|
2866
2810
|
var middlewarePostObservable = (0, rxjsStub_1.of)(response);
|
|
2867
|
-
var
|
|
2811
|
+
var _loop_190 = function (middleware) {
|
|
2868
2812
|
middlewarePostObservable = middlewarePostObservable.pipe((0, rxjsStub_2.mergeMap)(function (rsp) { return middleware.post(rsp); }));
|
|
2869
2813
|
};
|
|
2870
2814
|
for (var _i = 0, _a = _config.middleware.reverse(); _i < _a.length; _i++) {
|
|
2871
2815
|
var middleware = _a[_i];
|
|
2872
|
-
|
|
2816
|
+
_loop_190(middleware);
|
|
2873
2817
|
}
|
|
2874
2818
|
return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.getDecompilationCommentsWithHttpInfo(rsp); }));
|
|
2875
2819
|
}));
|
|
@@ -2877,55 +2821,27 @@ var ObservableFunctionsDecompilationApi = (function () {
|
|
|
2877
2821
|
ObservableFunctionsDecompilationApi.prototype.getDecompilationComments = function (functionId, _options) {
|
|
2878
2822
|
return this.getDecompilationCommentsWithHttpInfo(functionId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
|
|
2879
2823
|
};
|
|
2880
|
-
ObservableFunctionsDecompilationApi.prototype.getFunctionDecompilationWithHttpInfo = function (functionId, _options) {
|
|
2881
|
-
var _this = this;
|
|
2882
|
-
var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
|
|
2883
|
-
var requestContextPromise = this.requestFactory.getFunctionDecompilation(functionId, _config);
|
|
2884
|
-
var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
|
|
2885
|
-
var _loop_195 = function (middleware) {
|
|
2886
|
-
middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
|
|
2887
|
-
};
|
|
2888
|
-
for (var _i = 0, _a = _config.middleware; _i < _a.length; _i++) {
|
|
2889
|
-
var middleware = _a[_i];
|
|
2890
|
-
_loop_195(middleware);
|
|
2891
|
-
}
|
|
2892
|
-
return middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return _config.httpApi.send(ctx); })).
|
|
2893
|
-
pipe((0, rxjsStub_2.mergeMap)(function (response) {
|
|
2894
|
-
var middlewarePostObservable = (0, rxjsStub_1.of)(response);
|
|
2895
|
-
var _loop_196 = function (middleware) {
|
|
2896
|
-
middlewarePostObservable = middlewarePostObservable.pipe((0, rxjsStub_2.mergeMap)(function (rsp) { return middleware.post(rsp); }));
|
|
2897
|
-
};
|
|
2898
|
-
for (var _i = 0, _a = _config.middleware.reverse(); _i < _a.length; _i++) {
|
|
2899
|
-
var middleware = _a[_i];
|
|
2900
|
-
_loop_196(middleware);
|
|
2901
|
-
}
|
|
2902
|
-
return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.getFunctionDecompilationWithHttpInfo(rsp); }));
|
|
2903
|
-
}));
|
|
2904
|
-
};
|
|
2905
|
-
ObservableFunctionsDecompilationApi.prototype.getFunctionDecompilation = function (functionId, _options) {
|
|
2906
|
-
return this.getFunctionDecompilationWithHttpInfo(functionId, _options).pipe((0, rxjsStub_2.map)(function (apiResponse) { return apiResponse.data; }));
|
|
2907
|
-
};
|
|
2908
2824
|
ObservableFunctionsDecompilationApi.prototype.updateDecompilationCommentWithHttpInfo = function (commentId, functionId, commentUpdateRequest, _options) {
|
|
2909
2825
|
var _this = this;
|
|
2910
2826
|
var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
|
|
2911
2827
|
var requestContextPromise = this.requestFactory.updateDecompilationComment(commentId, functionId, commentUpdateRequest, _config);
|
|
2912
2828
|
var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
|
|
2913
|
-
var
|
|
2829
|
+
var _loop_191 = function (middleware) {
|
|
2914
2830
|
middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
|
|
2915
2831
|
};
|
|
2916
2832
|
for (var _i = 0, _a = _config.middleware; _i < _a.length; _i++) {
|
|
2917
2833
|
var middleware = _a[_i];
|
|
2918
|
-
|
|
2834
|
+
_loop_191(middleware);
|
|
2919
2835
|
}
|
|
2920
2836
|
return middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return _config.httpApi.send(ctx); })).
|
|
2921
2837
|
pipe((0, rxjsStub_2.mergeMap)(function (response) {
|
|
2922
2838
|
var middlewarePostObservable = (0, rxjsStub_1.of)(response);
|
|
2923
|
-
var
|
|
2839
|
+
var _loop_192 = function (middleware) {
|
|
2924
2840
|
middlewarePostObservable = middlewarePostObservable.pipe((0, rxjsStub_2.mergeMap)(function (rsp) { return middleware.post(rsp); }));
|
|
2925
2841
|
};
|
|
2926
2842
|
for (var _i = 0, _a = _config.middleware.reverse(); _i < _a.length; _i++) {
|
|
2927
2843
|
var middleware = _a[_i];
|
|
2928
|
-
|
|
2844
|
+
_loop_192(middleware);
|
|
2929
2845
|
}
|
|
2930
2846
|
return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.updateDecompilationCommentWithHttpInfo(rsp); }));
|
|
2931
2847
|
}));
|
|
@@ -2948,22 +2864,22 @@ var ObservableFunctionsRenamingHistoryApi = (function () {
|
|
|
2948
2864
|
var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
|
|
2949
2865
|
var requestContextPromise = this.requestFactory.batchRenameFunction(functionsListRename, _config);
|
|
2950
2866
|
var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
|
|
2951
|
-
var
|
|
2867
|
+
var _loop_193 = function (middleware) {
|
|
2952
2868
|
middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
|
|
2953
2869
|
};
|
|
2954
2870
|
for (var _i = 0, _a = _config.middleware; _i < _a.length; _i++) {
|
|
2955
2871
|
var middleware = _a[_i];
|
|
2956
|
-
|
|
2872
|
+
_loop_193(middleware);
|
|
2957
2873
|
}
|
|
2958
2874
|
return middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return _config.httpApi.send(ctx); })).
|
|
2959
2875
|
pipe((0, rxjsStub_2.mergeMap)(function (response) {
|
|
2960
2876
|
var middlewarePostObservable = (0, rxjsStub_1.of)(response);
|
|
2961
|
-
var
|
|
2877
|
+
var _loop_194 = function (middleware) {
|
|
2962
2878
|
middlewarePostObservable = middlewarePostObservable.pipe((0, rxjsStub_2.mergeMap)(function (rsp) { return middleware.post(rsp); }));
|
|
2963
2879
|
};
|
|
2964
2880
|
for (var _i = 0, _a = _config.middleware.reverse(); _i < _a.length; _i++) {
|
|
2965
2881
|
var middleware = _a[_i];
|
|
2966
|
-
|
|
2882
|
+
_loop_194(middleware);
|
|
2967
2883
|
}
|
|
2968
2884
|
return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.batchRenameFunctionWithHttpInfo(rsp); }));
|
|
2969
2885
|
}));
|
|
@@ -2976,22 +2892,22 @@ var ObservableFunctionsRenamingHistoryApi = (function () {
|
|
|
2976
2892
|
var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
|
|
2977
2893
|
var requestContextPromise = this.requestFactory.getFunctionNameHistory(functionId, _config);
|
|
2978
2894
|
var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
|
|
2979
|
-
var
|
|
2895
|
+
var _loop_195 = function (middleware) {
|
|
2980
2896
|
middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
|
|
2981
2897
|
};
|
|
2982
2898
|
for (var _i = 0, _a = _config.middleware; _i < _a.length; _i++) {
|
|
2983
2899
|
var middleware = _a[_i];
|
|
2984
|
-
|
|
2900
|
+
_loop_195(middleware);
|
|
2985
2901
|
}
|
|
2986
2902
|
return middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return _config.httpApi.send(ctx); })).
|
|
2987
2903
|
pipe((0, rxjsStub_2.mergeMap)(function (response) {
|
|
2988
2904
|
var middlewarePostObservable = (0, rxjsStub_1.of)(response);
|
|
2989
|
-
var
|
|
2905
|
+
var _loop_196 = function (middleware) {
|
|
2990
2906
|
middlewarePostObservable = middlewarePostObservable.pipe((0, rxjsStub_2.mergeMap)(function (rsp) { return middleware.post(rsp); }));
|
|
2991
2907
|
};
|
|
2992
2908
|
for (var _i = 0, _a = _config.middleware.reverse(); _i < _a.length; _i++) {
|
|
2993
2909
|
var middleware = _a[_i];
|
|
2994
|
-
|
|
2910
|
+
_loop_196(middleware);
|
|
2995
2911
|
}
|
|
2996
2912
|
return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.getFunctionNameHistoryWithHttpInfo(rsp); }));
|
|
2997
2913
|
}));
|
|
@@ -3004,22 +2920,22 @@ var ObservableFunctionsRenamingHistoryApi = (function () {
|
|
|
3004
2920
|
var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
|
|
3005
2921
|
var requestContextPromise = this.requestFactory.renameFunctionId(functionId, functionRename, _config);
|
|
3006
2922
|
var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
|
|
3007
|
-
var
|
|
2923
|
+
var _loop_197 = function (middleware) {
|
|
3008
2924
|
middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
|
|
3009
2925
|
};
|
|
3010
2926
|
for (var _i = 0, _a = _config.middleware; _i < _a.length; _i++) {
|
|
3011
2927
|
var middleware = _a[_i];
|
|
3012
|
-
|
|
2928
|
+
_loop_197(middleware);
|
|
3013
2929
|
}
|
|
3014
2930
|
return middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return _config.httpApi.send(ctx); })).
|
|
3015
2931
|
pipe((0, rxjsStub_2.mergeMap)(function (response) {
|
|
3016
2932
|
var middlewarePostObservable = (0, rxjsStub_1.of)(response);
|
|
3017
|
-
var
|
|
2933
|
+
var _loop_198 = function (middleware) {
|
|
3018
2934
|
middlewarePostObservable = middlewarePostObservable.pipe((0, rxjsStub_2.mergeMap)(function (rsp) { return middleware.post(rsp); }));
|
|
3019
2935
|
};
|
|
3020
2936
|
for (var _i = 0, _a = _config.middleware.reverse(); _i < _a.length; _i++) {
|
|
3021
2937
|
var middleware = _a[_i];
|
|
3022
|
-
|
|
2938
|
+
_loop_198(middleware);
|
|
3023
2939
|
}
|
|
3024
2940
|
return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.renameFunctionIdWithHttpInfo(rsp); }));
|
|
3025
2941
|
}));
|
|
@@ -3032,22 +2948,22 @@ var ObservableFunctionsRenamingHistoryApi = (function () {
|
|
|
3032
2948
|
var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
|
|
3033
2949
|
var requestContextPromise = this.requestFactory.revertFunctionName(functionId, historyId, _config);
|
|
3034
2950
|
var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
|
|
3035
|
-
var
|
|
2951
|
+
var _loop_199 = function (middleware) {
|
|
3036
2952
|
middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
|
|
3037
2953
|
};
|
|
3038
2954
|
for (var _i = 0, _a = _config.middleware; _i < _a.length; _i++) {
|
|
3039
2955
|
var middleware = _a[_i];
|
|
3040
|
-
|
|
2956
|
+
_loop_199(middleware);
|
|
3041
2957
|
}
|
|
3042
2958
|
return middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return _config.httpApi.send(ctx); })).
|
|
3043
2959
|
pipe((0, rxjsStub_2.mergeMap)(function (response) {
|
|
3044
2960
|
var middlewarePostObservable = (0, rxjsStub_1.of)(response);
|
|
3045
|
-
var
|
|
2961
|
+
var _loop_200 = function (middleware) {
|
|
3046
2962
|
middlewarePostObservable = middlewarePostObservable.pipe((0, rxjsStub_2.mergeMap)(function (rsp) { return middleware.post(rsp); }));
|
|
3047
2963
|
};
|
|
3048
2964
|
for (var _i = 0, _a = _config.middleware.reverse(); _i < _a.length; _i++) {
|
|
3049
2965
|
var middleware = _a[_i];
|
|
3050
|
-
|
|
2966
|
+
_loop_200(middleware);
|
|
3051
2967
|
}
|
|
3052
2968
|
return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.revertFunctionNameWithHttpInfo(rsp); }));
|
|
3053
2969
|
}));
|
|
@@ -3070,22 +2986,22 @@ var ObservableModelsApi = (function () {
|
|
|
3070
2986
|
var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
|
|
3071
2987
|
var requestContextPromise = this.requestFactory.getModels(_config);
|
|
3072
2988
|
var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
|
|
3073
|
-
var
|
|
2989
|
+
var _loop_201 = function (middleware) {
|
|
3074
2990
|
middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
|
|
3075
2991
|
};
|
|
3076
2992
|
for (var _i = 0, _a = _config.middleware; _i < _a.length; _i++) {
|
|
3077
2993
|
var middleware = _a[_i];
|
|
3078
|
-
|
|
2994
|
+
_loop_201(middleware);
|
|
3079
2995
|
}
|
|
3080
2996
|
return middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return _config.httpApi.send(ctx); })).
|
|
3081
2997
|
pipe((0, rxjsStub_2.mergeMap)(function (response) {
|
|
3082
2998
|
var middlewarePostObservable = (0, rxjsStub_1.of)(response);
|
|
3083
|
-
var
|
|
2999
|
+
var _loop_202 = function (middleware) {
|
|
3084
3000
|
middlewarePostObservable = middlewarePostObservable.pipe((0, rxjsStub_2.mergeMap)(function (rsp) { return middleware.post(rsp); }));
|
|
3085
3001
|
};
|
|
3086
3002
|
for (var _i = 0, _a = _config.middleware.reverse(); _i < _a.length; _i++) {
|
|
3087
3003
|
var middleware = _a[_i];
|
|
3088
|
-
|
|
3004
|
+
_loop_202(middleware);
|
|
3089
3005
|
}
|
|
3090
3006
|
return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.getModelsWithHttpInfo(rsp); }));
|
|
3091
3007
|
}));
|
|
@@ -3108,22 +3024,22 @@ var ObservableSearchApi = (function () {
|
|
|
3108
3024
|
var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
|
|
3109
3025
|
var requestContextPromise = this.requestFactory.searchBinaries(page, pageSize, partialName, partialSha256, tags, modelName, userFilesOnly, _config);
|
|
3110
3026
|
var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
|
|
3111
|
-
var
|
|
3027
|
+
var _loop_203 = function (middleware) {
|
|
3112
3028
|
middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
|
|
3113
3029
|
};
|
|
3114
3030
|
for (var _i = 0, _a = _config.middleware; _i < _a.length; _i++) {
|
|
3115
3031
|
var middleware = _a[_i];
|
|
3116
|
-
|
|
3032
|
+
_loop_203(middleware);
|
|
3117
3033
|
}
|
|
3118
3034
|
return middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return _config.httpApi.send(ctx); })).
|
|
3119
3035
|
pipe((0, rxjsStub_2.mergeMap)(function (response) {
|
|
3120
3036
|
var middlewarePostObservable = (0, rxjsStub_1.of)(response);
|
|
3121
|
-
var
|
|
3037
|
+
var _loop_204 = function (middleware) {
|
|
3122
3038
|
middlewarePostObservable = middlewarePostObservable.pipe((0, rxjsStub_2.mergeMap)(function (rsp) { return middleware.post(rsp); }));
|
|
3123
3039
|
};
|
|
3124
3040
|
for (var _i = 0, _a = _config.middleware.reverse(); _i < _a.length; _i++) {
|
|
3125
3041
|
var middleware = _a[_i];
|
|
3126
|
-
|
|
3042
|
+
_loop_204(middleware);
|
|
3127
3043
|
}
|
|
3128
3044
|
return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.searchBinariesWithHttpInfo(rsp); }));
|
|
3129
3045
|
}));
|
|
@@ -3136,22 +3052,22 @@ var ObservableSearchApi = (function () {
|
|
|
3136
3052
|
var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
|
|
3137
3053
|
var requestContextPromise = this.requestFactory.searchCollections(page, pageSize, partialCollectionName, partialBinaryName, partialBinarySha256, tags, modelName, filters, orderBy, orderByDirection, _config);
|
|
3138
3054
|
var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
|
|
3139
|
-
var
|
|
3055
|
+
var _loop_205 = function (middleware) {
|
|
3140
3056
|
middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
|
|
3141
3057
|
};
|
|
3142
3058
|
for (var _i = 0, _a = _config.middleware; _i < _a.length; _i++) {
|
|
3143
3059
|
var middleware = _a[_i];
|
|
3144
|
-
|
|
3060
|
+
_loop_205(middleware);
|
|
3145
3061
|
}
|
|
3146
3062
|
return middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return _config.httpApi.send(ctx); })).
|
|
3147
3063
|
pipe((0, rxjsStub_2.mergeMap)(function (response) {
|
|
3148
3064
|
var middlewarePostObservable = (0, rxjsStub_1.of)(response);
|
|
3149
|
-
var
|
|
3065
|
+
var _loop_206 = function (middleware) {
|
|
3150
3066
|
middlewarePostObservable = middlewarePostObservable.pipe((0, rxjsStub_2.mergeMap)(function (rsp) { return middleware.post(rsp); }));
|
|
3151
3067
|
};
|
|
3152
3068
|
for (var _i = 0, _a = _config.middleware.reverse(); _i < _a.length; _i++) {
|
|
3153
3069
|
var middleware = _a[_i];
|
|
3154
|
-
|
|
3070
|
+
_loop_206(middleware);
|
|
3155
3071
|
}
|
|
3156
3072
|
return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.searchCollectionsWithHttpInfo(rsp); }));
|
|
3157
3073
|
}));
|
|
@@ -3164,22 +3080,22 @@ var ObservableSearchApi = (function () {
|
|
|
3164
3080
|
var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
|
|
3165
3081
|
var requestContextPromise = this.requestFactory.searchFunctions(page, pageSize, partialName, modelName, _config);
|
|
3166
3082
|
var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
|
|
3167
|
-
var
|
|
3083
|
+
var _loop_207 = function (middleware) {
|
|
3168
3084
|
middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
|
|
3169
3085
|
};
|
|
3170
3086
|
for (var _i = 0, _a = _config.middleware; _i < _a.length; _i++) {
|
|
3171
3087
|
var middleware = _a[_i];
|
|
3172
|
-
|
|
3088
|
+
_loop_207(middleware);
|
|
3173
3089
|
}
|
|
3174
3090
|
return middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return _config.httpApi.send(ctx); })).
|
|
3175
3091
|
pipe((0, rxjsStub_2.mergeMap)(function (response) {
|
|
3176
3092
|
var middlewarePostObservable = (0, rxjsStub_1.of)(response);
|
|
3177
|
-
var
|
|
3093
|
+
var _loop_208 = function (middleware) {
|
|
3178
3094
|
middlewarePostObservable = middlewarePostObservable.pipe((0, rxjsStub_2.mergeMap)(function (rsp) { return middleware.post(rsp); }));
|
|
3179
3095
|
};
|
|
3180
3096
|
for (var _i = 0, _a = _config.middleware.reverse(); _i < _a.length; _i++) {
|
|
3181
3097
|
var middleware = _a[_i];
|
|
3182
|
-
|
|
3098
|
+
_loop_208(middleware);
|
|
3183
3099
|
}
|
|
3184
3100
|
return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.searchFunctionsWithHttpInfo(rsp); }));
|
|
3185
3101
|
}));
|
|
@@ -3192,22 +3108,22 @@ var ObservableSearchApi = (function () {
|
|
|
3192
3108
|
var _config = (0, configuration_1.mergeConfiguration)(this.configuration, _options);
|
|
3193
3109
|
var requestContextPromise = this.requestFactory.searchTags(partialName, page, pageSize, _config);
|
|
3194
3110
|
var middlewarePreObservable = (0, rxjsStub_1.from)(requestContextPromise);
|
|
3195
|
-
var
|
|
3111
|
+
var _loop_209 = function (middleware) {
|
|
3196
3112
|
middlewarePreObservable = middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return middleware.pre(ctx); }));
|
|
3197
3113
|
};
|
|
3198
3114
|
for (var _i = 0, _a = _config.middleware; _i < _a.length; _i++) {
|
|
3199
3115
|
var middleware = _a[_i];
|
|
3200
|
-
|
|
3116
|
+
_loop_209(middleware);
|
|
3201
3117
|
}
|
|
3202
3118
|
return middlewarePreObservable.pipe((0, rxjsStub_2.mergeMap)(function (ctx) { return _config.httpApi.send(ctx); })).
|
|
3203
3119
|
pipe((0, rxjsStub_2.mergeMap)(function (response) {
|
|
3204
3120
|
var middlewarePostObservable = (0, rxjsStub_1.of)(response);
|
|
3205
|
-
var
|
|
3121
|
+
var _loop_210 = function (middleware) {
|
|
3206
3122
|
middlewarePostObservable = middlewarePostObservable.pipe((0, rxjsStub_2.mergeMap)(function (rsp) { return middleware.post(rsp); }));
|
|
3207
3123
|
};
|
|
3208
3124
|
for (var _i = 0, _a = _config.middleware.reverse(); _i < _a.length; _i++) {
|
|
3209
3125
|
var middleware = _a[_i];
|
|
3210
|
-
|
|
3126
|
+
_loop_210(middleware);
|
|
3211
3127
|
}
|
|
3212
3128
|
return middlewarePostObservable.pipe((0, rxjsStub_2.map)(function (rsp) { return _this.responseProcessor.searchTagsWithHttpInfo(rsp); }));
|
|
3213
3129
|
}));
|