monkey-front-core 0.0.50 → 0.0.51
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/esm2020/lib/core/interfaces/monkeyecx-config.mjs +1 -1
- package/esm2020/lib/core/services/monkeyecx-service.service.mjs +8 -8
- package/fesm2015/monkey-front-core.mjs +6 -6
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +7 -7
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/interfaces/monkeyecx-config.d.ts +11 -0
- package/monkey-front-core-0.0.51.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.50.tgz +0 -0
|
@@ -2090,7 +2090,7 @@ class MonkeyEcxService {
|
|
|
2090
2090
|
'governmentIdType',
|
|
2091
2091
|
'governmentIdMask',
|
|
2092
2092
|
'screenType',
|
|
2093
|
-
'screenTab'
|
|
2093
|
+
'screenTab',
|
|
2094
2094
|
]) {
|
|
2095
2095
|
delete params[field];
|
|
2096
2096
|
}
|
|
@@ -2104,7 +2104,7 @@ class MonkeyEcxService {
|
|
|
2104
2104
|
}
|
|
2105
2105
|
put(url, params) {
|
|
2106
2106
|
return this.http.put(url, this.handlelize({
|
|
2107
|
-
...params
|
|
2107
|
+
...params,
|
|
2108
2108
|
}));
|
|
2109
2109
|
}
|
|
2110
2110
|
delete(url, params) {
|
|
@@ -2124,11 +2124,11 @@ class MonkeyEcxService {
|
|
|
2124
2124
|
.replace(new RegExp(/"/g), '');
|
|
2125
2125
|
}
|
|
2126
2126
|
const blob = new Blob([body], {
|
|
2127
|
-
type: `${contentType}
|
|
2127
|
+
type: `${contentType}`,
|
|
2128
2128
|
});
|
|
2129
2129
|
return {
|
|
2130
2130
|
filename,
|
|
2131
|
-
blob
|
|
2131
|
+
blob,
|
|
2132
2132
|
};
|
|
2133
2133
|
}, (err) => {
|
|
2134
2134
|
throwError(err);
|
|
@@ -2148,11 +2148,11 @@ class MonkeyEcxService {
|
|
|
2148
2148
|
.replace(new RegExp(/"/g), '');
|
|
2149
2149
|
}
|
|
2150
2150
|
const blob = new Blob([body], {
|
|
2151
|
-
type: `${contentType}
|
|
2151
|
+
type: `${contentType}`,
|
|
2152
2152
|
});
|
|
2153
2153
|
return {
|
|
2154
2154
|
filename,
|
|
2155
|
-
blob
|
|
2155
|
+
blob,
|
|
2156
2156
|
};
|
|
2157
2157
|
}), catchError((err) => {
|
|
2158
2158
|
return throwError(err);
|
|
@@ -2164,7 +2164,7 @@ MonkeyEcxService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", ver
|
|
|
2164
2164
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxService, decorators: [{
|
|
2165
2165
|
type: Injectable,
|
|
2166
2166
|
args: [{
|
|
2167
|
-
providedIn: 'root'
|
|
2167
|
+
providedIn: 'root',
|
|
2168
2168
|
}]
|
|
2169
2169
|
}], ctorParameters: function () { return [{ type: i1$4.HttpClient }, { type: MonkeyEcxHandlingService }]; } });
|
|
2170
2170
|
|