@ekyc_qoobiss/qbs-ect-cmp 3.6.31 → 3.6.32
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-05fc03bc.js → TranslationUtils-bfe4477a.js} +1 -4
- package/dist/cjs/agreement-check_19.cjs.entry.js +2 -2
- package/dist/cjs/random-actions.cjs.entry.js +1 -1
- package/dist/collection/helpers/TranslationUtils.js +1 -4
- package/dist/esm/{TranslationUtils-2450f38e.js → TranslationUtils-7e68bc94.js} +1 -4
- package/dist/esm/agreement-check_19.entry.js +2 -2
- package/dist/esm/random-actions.entry.js +1 -1
- package/dist/qbs-ect-cmp/{p-248743f2.entry.js → p-ad31d837.entry.js} +2 -2
- package/dist/qbs-ect-cmp/{p-c13d0679.entry.js → p-d1d9feaf.entry.js} +1 -1
- package/dist/qbs-ect-cmp/{p-e207156a.js → p-d35256e9.js} +1 -1
- package/dist/qbs-ect-cmp/qbs-ect-cmp.esm.js +1 -1
- package/dist/types/helpers/TranslationUtils.d.ts +0 -1
- package/package.json +1 -1
|
@@ -566,9 +566,6 @@ class ApiCall {
|
|
|
566
566
|
}
|
|
567
567
|
|
|
568
568
|
class TranslationsController {
|
|
569
|
-
constructor() {
|
|
570
|
-
this.apiCall = new ApiCall();
|
|
571
|
-
}
|
|
572
569
|
async getValues() {
|
|
573
570
|
if (this.values) {
|
|
574
571
|
return this.values;
|
|
@@ -590,7 +587,7 @@ class TranslationsController {
|
|
|
590
587
|
async fetchTranslations() {
|
|
591
588
|
const locale = this.getLocale();
|
|
592
589
|
try {
|
|
593
|
-
const result =
|
|
590
|
+
const result = new ApiCall().GetTranslations(locale);
|
|
594
591
|
if (result) {
|
|
595
592
|
return result;
|
|
596
593
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
const index = require('./index-41696e0e.js');
|
|
6
|
-
const TranslationUtils = require('./TranslationUtils-
|
|
6
|
+
const TranslationUtils = require('./TranslationUtils-bfe4477a.js');
|
|
7
7
|
|
|
8
8
|
var MobileOS;
|
|
9
9
|
(function (MobileOS) {
|
|
@@ -5541,7 +5541,7 @@ function v4(options, buf, offset) {
|
|
|
5541
5541
|
}
|
|
5542
5542
|
|
|
5543
5543
|
const name = "@ekyc_qoobiss/qbs-ect-cmp";
|
|
5544
|
-
const version$1 = "3.6.
|
|
5544
|
+
const version$1 = "3.6.32";
|
|
5545
5545
|
const description = "Person Identification Component";
|
|
5546
5546
|
const main = "./dist/index.cjs.js";
|
|
5547
5547
|
const module$1 = "./dist/index.js";
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
const index = require('./index-41696e0e.js');
|
|
6
|
-
const TranslationUtils = require('./TranslationUtils-
|
|
6
|
+
const TranslationUtils = require('./TranslationUtils-bfe4477a.js');
|
|
7
7
|
|
|
8
8
|
const randomActionsCss = "";
|
|
9
9
|
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
import { ApiCall } from './ApiCall';
|
|
2
2
|
import store from './store';
|
|
3
3
|
class TranslationsController {
|
|
4
|
-
constructor() {
|
|
5
|
-
this.apiCall = new ApiCall();
|
|
6
|
-
}
|
|
7
4
|
async getValues() {
|
|
8
5
|
if (this.values) {
|
|
9
6
|
return this.values;
|
|
@@ -25,7 +22,7 @@ class TranslationsController {
|
|
|
25
22
|
async fetchTranslations() {
|
|
26
23
|
const locale = this.getLocale();
|
|
27
24
|
try {
|
|
28
|
-
const result =
|
|
25
|
+
const result = new ApiCall().GetTranslations(locale);
|
|
29
26
|
if (result) {
|
|
30
27
|
return result;
|
|
31
28
|
}
|
|
@@ -564,9 +564,6 @@ class ApiCall {
|
|
|
564
564
|
}
|
|
565
565
|
|
|
566
566
|
class TranslationsController {
|
|
567
|
-
constructor() {
|
|
568
|
-
this.apiCall = new ApiCall();
|
|
569
|
-
}
|
|
570
567
|
async getValues() {
|
|
571
568
|
if (this.values) {
|
|
572
569
|
return this.values;
|
|
@@ -588,7 +585,7 @@ class TranslationsController {
|
|
|
588
585
|
async fetchTranslations() {
|
|
589
586
|
const locale = this.getLocale();
|
|
590
587
|
try {
|
|
591
|
-
const result =
|
|
588
|
+
const result = new ApiCall().GetTranslations(locale);
|
|
592
589
|
if (result) {
|
|
593
590
|
return result;
|
|
594
591
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { r as registerInstance, c as createEvent, h, g as getElement } from './index-cf54a432.js';
|
|
2
|
-
import { A as ApiCall, s as state, F as FlowMoments, a as FlowSteps, T as Translations, b as FlowStatus, S as SessionKeys, I as IdCaptureValues, O as OrderStatuses, c as SelfieCaptureValues } from './TranslationUtils-
|
|
2
|
+
import { A as ApiCall, s as state, F as FlowMoments, a as FlowSteps, T as Translations, b as FlowStatus, S as SessionKeys, I as IdCaptureValues, O as OrderStatuses, c as SelfieCaptureValues } from './TranslationUtils-7e68bc94.js';
|
|
3
3
|
|
|
4
4
|
var MobileOS;
|
|
5
5
|
(function (MobileOS) {
|
|
@@ -5537,7 +5537,7 @@ function v4(options, buf, offset) {
|
|
|
5537
5537
|
}
|
|
5538
5538
|
|
|
5539
5539
|
const name = "@ekyc_qoobiss/qbs-ect-cmp";
|
|
5540
|
-
const version$1 = "3.6.
|
|
5540
|
+
const version$1 = "3.6.32";
|
|
5541
5541
|
const description = "Person Identification Component";
|
|
5542
5542
|
const main = "./dist/index.cjs.js";
|
|
5543
5543
|
const module = "./dist/index.js";
|