tods-competition-factory 1.7.19 → 1.8.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.
- package/dist/forge/generate.d.ts +1 -0
- package/dist/forge/generate.mjs +1067 -1124
- package/dist/forge/generate.mjs.map +1 -1
- package/dist/forge/query.d.ts +2 -2
- package/dist/forge/query.mjs +2016 -905
- package/dist/forge/query.mjs.map +1 -1
- package/dist/forge/transform.mjs +7 -19
- package/dist/forge/transform.mjs.map +1 -1
- package/dist/forge/utilities.mjs +1 -1
- package/dist/forge/utilities.mjs.map +1 -1
- package/dist/index.mjs +2724 -2680
- package/dist/index.mjs.map +1 -1
- package/dist/tods-competition-factory.development.cjs.js +3078 -3032
- 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.d.ts
CHANGED
|
@@ -1981,10 +1981,10 @@ declare function getRoundContextProfile({ roundNamingPolicy, structure, matchUps
|
|
|
1981
1981
|
|
|
1982
1982
|
type FilterParticipantsArgs = {
|
|
1983
1983
|
participantFilters: ParticipantFilters;
|
|
1984
|
+
participants: HydratedParticipant[];
|
|
1984
1985
|
tournamentRecord: Tournament;
|
|
1985
|
-
participants: Participant[];
|
|
1986
1986
|
};
|
|
1987
|
-
declare function filterParticipants({ participantFilters, tournamentRecord, participants, }: FilterParticipantsArgs):
|
|
1987
|
+
declare function filterParticipants({ participantFilters, tournamentRecord, participants, }: FilterParticipantsArgs): HydratedParticipant[];
|
|
1988
1988
|
|
|
1989
1989
|
type GetParticipantScaleItemArgs = {
|
|
1990
1990
|
tournamentRecords: TournamentRecords;
|