@ekyc_qoobiss/qbs-ect-cmp 1.10.20 → 1.10.21
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/agreement-check_17.cjs.entry.js +3 -0
- package/dist/collection/components/identification-component/identification-component.js +3 -0
- package/dist/esm/agreement-check_17.entry.js +3 -0
- package/dist/qbs-ect-cmp/{p-0501548d.entry.js → p-9ac1b29a.entry.js} +1 -1
- package/dist/qbs-ect-cmp/qbs-ect-cmp.esm.js +1 -1
- package/package.json +1 -1
|
@@ -6043,6 +6043,9 @@ const IdentificationComponent = class {
|
|
|
6043
6043
|
state.requestId = this.order_id;
|
|
6044
6044
|
sessionStorage.setItem(SessionKeys.RequestIdKey, state.requestId);
|
|
6045
6045
|
}
|
|
6046
|
+
if (this.redirect_id) {
|
|
6047
|
+
state.redirectId = this.redirect_id;
|
|
6048
|
+
}
|
|
6046
6049
|
state.apiBaseUrl = this.api_url;
|
|
6047
6050
|
state.environment = this.env;
|
|
6048
6051
|
this.apiCall = new ApiCall();
|
|
@@ -107,6 +107,9 @@ export class IdentificationComponent {
|
|
|
107
107
|
store.requestId = this.order_id;
|
|
108
108
|
sessionStorage.setItem(SessionKeys.RequestIdKey, store.requestId);
|
|
109
109
|
}
|
|
110
|
+
if (this.redirect_id) {
|
|
111
|
+
store.redirectId = this.redirect_id;
|
|
112
|
+
}
|
|
110
113
|
store.apiBaseUrl = this.api_url;
|
|
111
114
|
store.environment = this.env;
|
|
112
115
|
this.apiCall = new ApiCall();
|
|
@@ -6039,6 +6039,9 @@ const IdentificationComponent = class {
|
|
|
6039
6039
|
state.requestId = this.order_id;
|
|
6040
6040
|
sessionStorage.setItem(SessionKeys.RequestIdKey, state.requestId);
|
|
6041
6041
|
}
|
|
6042
|
+
if (this.redirect_id) {
|
|
6043
|
+
state.redirectId = this.redirect_id;
|
|
6044
|
+
}
|
|
6042
6045
|
state.apiBaseUrl = this.api_url;
|
|
6043
6046
|
state.environment = this.env;
|
|
6044
6047
|
this.apiCall = new ApiCall();
|