@kushki/js 1.27.3 → 1.27.4-alpha.1
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.
|
@@ -208,19 +208,19 @@ var CardService = /** @class */ (function () {
|
|
|
208
208
|
return this._ccaSandbox(body, mid, isTest, regional, callback);
|
|
209
209
|
if (isTest) {
|
|
210
210
|
// tslint:disable-next-line:no-duplicate-string
|
|
211
|
-
|
|
211
|
+
Promise.resolve().then(function () { return require("./../../lib/libs/cardinal/staging"); }).then(function () {
|
|
212
212
|
CardService_1._ccaCardinal(body);
|
|
213
213
|
});
|
|
214
|
-
|
|
214
|
+
Promise.resolve().then(function () { return require("./../../lib/libs/cardinal/staging"); }).then(function () {
|
|
215
215
|
_this._completeCardinal(body.secureId, mid, isTest, regional, callback);
|
|
216
216
|
});
|
|
217
217
|
}
|
|
218
218
|
else {
|
|
219
219
|
// tslint:disable-next-line:no-duplicate-string
|
|
220
|
-
|
|
220
|
+
Promise.resolve().then(function () { return require("./../../lib/libs/cardinal/prod"); }).then(function () {
|
|
221
221
|
CardService_1._ccaCardinal(body);
|
|
222
222
|
});
|
|
223
|
-
|
|
223
|
+
Promise.resolve().then(function () { return require("./../../lib/libs/cardinal/prod"); }).then(function () {
|
|
224
224
|
_this._completeCardinal(body.secureId, mid, isTest, regional, callback);
|
|
225
225
|
});
|
|
226
226
|
}
|