@ekyc_qoobiss/qbs-ect-cmp 4.5.0 → 4.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/{TranslationUtils-ff21cb33.js → TranslationUtils-fe06fc2a.js} +3 -2
- package/dist/cjs/{TranslationUtils-ff21cb33.js.map → TranslationUtils-fe06fc2a.js.map} +1 -1
- package/dist/cjs/agreement-check.cjs.entry.js +1 -1
- package/dist/cjs/agreement-info_23.cjs.entry.js +2 -2
- package/dist/cjs/random-actions.cjs.entry.js +1 -1
- package/dist/collection/helpers/ApiCall.js +2 -1
- package/dist/collection/helpers/ApiCall.js.map +1 -1
- package/dist/esm/{TranslationUtils-d4bb5067.js → TranslationUtils-1a5714cc.js} +3 -2
- package/dist/esm/{TranslationUtils-d4bb5067.js.map → TranslationUtils-1a5714cc.js.map} +1 -1
- package/dist/esm/agreement-check.entry.js +1 -1
- package/dist/esm/agreement-info_23.entry.js +2 -2
- package/dist/esm/random-actions.entry.js +1 -1
- package/dist/qbs-ect-cmp/{p-717973c8.js → p-686bbe12.js} +2 -2
- package/dist/qbs-ect-cmp/p-686bbe12.js.map +1 -0
- package/dist/qbs-ect-cmp/{p-bf5b323c.entry.js → p-7cd895a8.entry.js} +3 -3
- package/dist/qbs-ect-cmp/{p-62312620.entry.js → p-9785a999.entry.js} +2 -2
- package/dist/qbs-ect-cmp/{p-b1d50e64.entry.js → p-e6656d7a.entry.js} +2 -2
- package/dist/qbs-ect-cmp/qbs-ect-cmp.esm.js +1 -1
- package/package.json +1 -1
- package/dist/qbs-ect-cmp/p-717973c8.js.map +0 -1
- /package/dist/qbs-ect-cmp/{p-bf5b323c.entry.js.map → p-7cd895a8.entry.js.map} +0 -0
- /package/dist/qbs-ect-cmp/{p-62312620.entry.js.map → p-9785a999.entry.js.map} +0 -0
- /package/dist/qbs-ect-cmp/{p-b1d50e64.entry.js.map → p-e6656d7a.entry.js.map} +0 -0
|
@@ -6305,7 +6305,8 @@ class ApiCall {
|
|
|
6305
6305
|
async http(request) {
|
|
6306
6306
|
const response = await fetch(request);
|
|
6307
6307
|
if (!response.ok) {
|
|
6308
|
-
|
|
6308
|
+
let text = await response.text();
|
|
6309
|
+
throw new Error(text !== null && text !== void 0 ? text : response.statusText);
|
|
6309
6310
|
}
|
|
6310
6311
|
try {
|
|
6311
6312
|
// may error if there is no body
|
|
@@ -6570,4 +6571,4 @@ exports.Translations = Translations;
|
|
|
6570
6571
|
exports.db = db;
|
|
6571
6572
|
exports.state = state;
|
|
6572
6573
|
|
|
6573
|
-
//# sourceMappingURL=TranslationUtils-
|
|
6574
|
+
//# sourceMappingURL=TranslationUtils-fe06fc2a.js.map
|