tods-competition-factory 1.8.18 → 1.8.19
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 +92 -20
- package/dist/forge/generate.mjs.map +1 -1
- package/dist/forge/query.mjs +3 -3
- package/dist/forge/query.mjs.map +1 -1
- package/dist/forge/transform.mjs +238 -166
- package/dist/forge/transform.mjs.map +1 -1
- package/dist/index.mjs +533 -493
- package/dist/index.mjs.map +1 -1
- package/dist/tods-competition-factory.development.cjs.js +463 -398
- 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 +1 -1
package/dist/forge/query.mjs
CHANGED
|
@@ -8390,7 +8390,7 @@ function getAssignedParticipantIds({
|
|
|
8390
8390
|
return { ...SUCCESS, assignedParticipantIds };
|
|
8391
8391
|
}
|
|
8392
8392
|
|
|
8393
|
-
function
|
|
8393
|
+
function findDrawMatchUp({
|
|
8394
8394
|
tournamentParticipants,
|
|
8395
8395
|
afterRecoveryTimes,
|
|
8396
8396
|
contextContent,
|
|
@@ -8480,7 +8480,7 @@ function findMatchUp({
|
|
|
8480
8480
|
contextProfile,
|
|
8481
8481
|
inContext
|
|
8482
8482
|
});
|
|
8483
|
-
const { matchUp, structure } =
|
|
8483
|
+
const { matchUp, structure } = findDrawMatchUp({
|
|
8484
8484
|
context: inContext ? additionalContext : void 0,
|
|
8485
8485
|
tournamentParticipants,
|
|
8486
8486
|
afterRecoveryTimes,
|
|
@@ -9483,7 +9483,7 @@ function matchUpActions$2({
|
|
|
9483
9483
|
});
|
|
9484
9484
|
const otherFlightEntries = specifiedPolicyDefinitions?.[POLICY_TYPE_POSITION_ACTIONS]?.otherFlightEntries;
|
|
9485
9485
|
const { drawId } = drawDefinition;
|
|
9486
|
-
const { matchUp, structure } =
|
|
9486
|
+
const { matchUp, structure } = findDrawMatchUp({
|
|
9487
9487
|
drawDefinition,
|
|
9488
9488
|
matchUpId,
|
|
9489
9489
|
event
|