tods-competition-factory 1.8.32 → 1.8.33
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/forge/generate.mjs +1 -1
- package/dist/forge/generate.mjs.map +1 -1
- package/dist/forge/query.mjs +1 -1
- package/dist/forge/query.mjs.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/tods-competition-factory.development.cjs.js +2 -2
- package/dist/tods-competition-factory.development.cjs.js.map +1 -1
- package/dist/tods-competition-factory.production.cjs.min.js +1 -1
- package/dist/tods-competition-factory.production.cjs.min.js.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -2404,7 +2404,7 @@ const matchUpFormatCode = {
|
|
|
2404
2404
|
};
|
|
2405
2405
|
|
|
2406
2406
|
function factoryVersion() {
|
|
2407
|
-
return "1.8.
|
|
2407
|
+
return "1.8.33";
|
|
2408
2408
|
}
|
|
2409
2409
|
|
|
2410
2410
|
function getObjectTieFormat(obj) {
|
|
@@ -28006,7 +28006,7 @@ function getParticipantEntries(params) {
|
|
|
28006
28006
|
const minutesDifference = Math.abs(
|
|
28007
28007
|
consideredMinutes - scheduledMinutes
|
|
28008
28008
|
);
|
|
28009
|
-
const itemIsPrior = consideredMinutes
|
|
28009
|
+
const itemIsPrior = consideredMinutes >= scheduledMinutes;
|
|
28010
28010
|
const timeOverlap = scheduledMinutesDifference && !isNaN(scheduledMinutesDifference) ? minutesDifference <= scheduledMinutesDifference : itemIsPrior && timeStringMinutes(consideredItem.scheduledTime) < timeStringMinutes(notBeforeTime);
|
|
28011
28011
|
if (timeOverlap && !(bothPotential && sameDraw) && itemIsPrior) {
|
|
28012
28012
|
participantAggregator.scheduleConflicts.push({
|