@mxenabled/connect-widget 2.19.0 → 2.19.2
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/index.es.js +32 -16
- package/dist/index.es.js.map +1 -1
- package/dist/lastBuild.txt +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -5269,23 +5269,39 @@ function baseFindIndex$2(array, predicate, fromIndex, fromRight) {
|
|
|
5269
5269
|
}
|
|
5270
5270
|
var _baseFindIndex = baseFindIndex$2;
|
|
5271
5271
|
|
|
5272
|
-
var
|
|
5273
|
-
|
|
5274
|
-
|
|
5275
|
-
|
|
5276
|
-
|
|
5277
|
-
|
|
5272
|
+
var _trimmedEndIndex;
|
|
5273
|
+
var hasRequired_trimmedEndIndex;
|
|
5274
|
+
|
|
5275
|
+
function require_trimmedEndIndex () {
|
|
5276
|
+
if (hasRequired_trimmedEndIndex) return _trimmedEndIndex;
|
|
5277
|
+
hasRequired_trimmedEndIndex = 1;
|
|
5278
|
+
var reWhitespace = /\s/;
|
|
5279
|
+
function trimmedEndIndex(string) {
|
|
5280
|
+
var index = string.length;
|
|
5281
|
+
while (index-- && reWhitespace.test(string.charAt(index))) {
|
|
5282
|
+
}
|
|
5283
|
+
return index;
|
|
5284
|
+
}
|
|
5285
|
+
_trimmedEndIndex = trimmedEndIndex;
|
|
5286
|
+
return _trimmedEndIndex;
|
|
5278
5287
|
}
|
|
5279
|
-
var _trimmedEndIndex = trimmedEndIndex$1;
|
|
5280
5288
|
|
|
5281
|
-
var
|
|
5282
|
-
var
|
|
5283
|
-
|
|
5284
|
-
|
|
5289
|
+
var _baseTrim;
|
|
5290
|
+
var hasRequired_baseTrim;
|
|
5291
|
+
|
|
5292
|
+
function require_baseTrim () {
|
|
5293
|
+
if (hasRequired_baseTrim) return _baseTrim;
|
|
5294
|
+
hasRequired_baseTrim = 1;
|
|
5295
|
+
var trimmedEndIndex = require_trimmedEndIndex();
|
|
5296
|
+
var reTrimStart = /^\s+/;
|
|
5297
|
+
function baseTrim(string) {
|
|
5298
|
+
return string ? string.slice(0, trimmedEndIndex(string) + 1).replace(reTrimStart, "") : string;
|
|
5299
|
+
}
|
|
5300
|
+
_baseTrim = baseTrim;
|
|
5301
|
+
return _baseTrim;
|
|
5285
5302
|
}
|
|
5286
|
-
var _baseTrim = baseTrim$1;
|
|
5287
5303
|
|
|
5288
|
-
var baseTrim =
|
|
5304
|
+
var baseTrim = require_baseTrim(), isObject$7 = isObject_1, isSymbol$1 = isSymbol_1;
|
|
5289
5305
|
var NAN = 0 / 0;
|
|
5290
5306
|
var reIsBadHex = /^[-+]0x[0-9a-f]+$/i;
|
|
5291
5307
|
var reIsBinary = /^0b[01]+$/i;
|
|
@@ -8769,7 +8785,7 @@ var hasRequiredTrim;
|
|
|
8769
8785
|
function requireTrim () {
|
|
8770
8786
|
if (hasRequiredTrim) return trim_1;
|
|
8771
8787
|
hasRequiredTrim = 1;
|
|
8772
|
-
var baseToString = _baseToString, baseTrim =
|
|
8788
|
+
var baseToString = _baseToString, baseTrim = require_baseTrim(), castSlice = require_castSlice(), charsEndIndex = require_charsEndIndex(), charsStartIndex = require_charsStartIndex(), stringToArray = require_stringToArray(), toString = toString_1;
|
|
8773
8789
|
function trim(string, chars, guard) {
|
|
8774
8790
|
string = toString(string);
|
|
8775
8791
|
if (string && (guard || chars === void 0)) {
|
|
@@ -9066,7 +9082,7 @@ const shouldUseComboJobs = (config, isComboJobsEnabled) => {
|
|
|
9066
9082
|
return false;
|
|
9067
9083
|
}
|
|
9068
9084
|
const customerIsConfiguredToUseCombojobs = isComboJobsEnabled && config.data_request.products.length > 0;
|
|
9069
|
-
const customerOptedThemselvesIntoCombojobs = config.data_request
|
|
9085
|
+
const customerOptedThemselvesIntoCombojobs = config.data_request?.inferred === false;
|
|
9070
9086
|
return customerIsConfiguredToUseCombojobs || customerOptedThemselvesIntoCombojobs;
|
|
9071
9087
|
};
|
|
9072
9088
|
const getFirstWidgetJobType = (config, isComboJobsEnabled) => {
|
|
@@ -81297,7 +81313,7 @@ const RoutingNumber = (props) => {
|
|
|
81297
81313
|
routing_number: values.routingNumber,
|
|
81298
81314
|
reason: resp.blocked_routing_number.reason_name
|
|
81299
81315
|
});
|
|
81300
|
-
if (resp.blocked_routing_number.
|
|
81316
|
+
if (resp.blocked_routing_number.reason_name === BLOCKED_REASONS.IAV_PREFERRED) {
|
|
81301
81317
|
const loadedInstitutions$ = defer(
|
|
81302
81318
|
() => api.loadInstitutions({
|
|
81303
81319
|
routing_number: values.routingNumber,
|