tods-competition-factory 1.8.21 → 1.8.22

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.
@@ -2905,7 +2905,7 @@ var matchUpFormatCode = {
2905
2905
  };
2906
2906
 
2907
2907
  function factoryVersion() {
2908
- return '1.8.21';
2908
+ return '1.8.22';
2909
2909
  }
2910
2910
 
2911
2911
  function getObjectTieFormat(obj) {
@@ -8112,7 +8112,6 @@ var DIRECT_ENTRY_STATUSES = [
8112
8112
  var STRUCTURE_SELECTED_STATUSES = [
8113
8113
  CONFIRMED,
8114
8114
  DIRECT_ACCEPTANCE,
8115
- FEED_IN,
8116
8115
  JUNIOR_EXEMPT,
8117
8116
  LUCKY_LOSER,
8118
8117
  QUALIFIER,
@@ -64489,7 +64488,8 @@ function isValidForQualifying(_a) {
64489
64488
  var targetFeedProfiles = result.links.target
64490
64489
  .flatMap(function (t) { return t.target.feedProfile; })
64491
64490
  .filter(Boolean);
64492
- var valid = !!intersection([BOTTOM_UP, TOP_DOWN, RANDOM], targetFeedProfiles).length;
64491
+ var valid = !intersection([BOTTOM_UP, TOP_DOWN, RANDOM], targetFeedProfiles)
64492
+ .length;
64493
64493
  return __assign(__assign({}, SUCCESS), { valid: valid });
64494
64494
  }
64495
64495