@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.
Files changed (23) hide show
  1. package/dist/cjs/{TranslationUtils-ff21cb33.js → TranslationUtils-fe06fc2a.js} +3 -2
  2. package/dist/cjs/{TranslationUtils-ff21cb33.js.map → TranslationUtils-fe06fc2a.js.map} +1 -1
  3. package/dist/cjs/agreement-check.cjs.entry.js +1 -1
  4. package/dist/cjs/agreement-info_23.cjs.entry.js +2 -2
  5. package/dist/cjs/random-actions.cjs.entry.js +1 -1
  6. package/dist/collection/helpers/ApiCall.js +2 -1
  7. package/dist/collection/helpers/ApiCall.js.map +1 -1
  8. package/dist/esm/{TranslationUtils-d4bb5067.js → TranslationUtils-1a5714cc.js} +3 -2
  9. package/dist/esm/{TranslationUtils-d4bb5067.js.map → TranslationUtils-1a5714cc.js.map} +1 -1
  10. package/dist/esm/agreement-check.entry.js +1 -1
  11. package/dist/esm/agreement-info_23.entry.js +2 -2
  12. package/dist/esm/random-actions.entry.js +1 -1
  13. package/dist/qbs-ect-cmp/{p-717973c8.js → p-686bbe12.js} +2 -2
  14. package/dist/qbs-ect-cmp/p-686bbe12.js.map +1 -0
  15. package/dist/qbs-ect-cmp/{p-bf5b323c.entry.js → p-7cd895a8.entry.js} +3 -3
  16. package/dist/qbs-ect-cmp/{p-62312620.entry.js → p-9785a999.entry.js} +2 -2
  17. package/dist/qbs-ect-cmp/{p-b1d50e64.entry.js → p-e6656d7a.entry.js} +2 -2
  18. package/dist/qbs-ect-cmp/qbs-ect-cmp.esm.js +1 -1
  19. package/package.json +1 -1
  20. package/dist/qbs-ect-cmp/p-717973c8.js.map +0 -1
  21. /package/dist/qbs-ect-cmp/{p-bf5b323c.entry.js.map → p-7cd895a8.entry.js.map} +0 -0
  22. /package/dist/qbs-ect-cmp/{p-62312620.entry.js.map → p-9785a999.entry.js.map} +0 -0
  23. /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
- throw new Error(response.statusText);
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-ff21cb33.js.map
6574
+ //# sourceMappingURL=TranslationUtils-fe06fc2a.js.map