tods-competition-factory 2.0.55 → 2.0.57

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.
@@ -2696,8 +2696,6 @@ declare function removeDrawPositionAssignment(params: any): ResultType & {
2696
2696
  participantId?: string;
2697
2697
  };
2698
2698
 
2699
- declare function swapDrawPositionAssignments(params: any): any;
2700
-
2701
2699
  type ModifySeedAssignmentArgs = {
2702
2700
  tournamentRecord?: Tournament;
2703
2701
  drawDefinition: DrawDefinition;
@@ -2823,6 +2821,14 @@ declare function addVoluntaryConsolationStage(params: any): {
2823
2821
  success: boolean;
2824
2822
  };
2825
2823
 
2824
+ declare function swapDrawPositionAssignments({ tournamentRecord, drawDefinition, drawPositions, structureId, event }: {
2825
+ tournamentRecord: any;
2826
+ drawDefinition: any;
2827
+ drawPositions: any;
2828
+ structureId: any;
2829
+ event: any;
2830
+ }): any;
2831
+
2826
2832
  type RemoveSeededParticipantArgs = {
2827
2833
  tournamentRecord: Tournament;
2828
2834
  drawDefinition: DrawDefinition;
@@ -2859,6 +2865,16 @@ declare function addQualifyingStructure(params: AddQualifyingstructureArgs): Res
2859
2865
  link?: DrawLink | undefined;
2860
2866
  };
2861
2867
 
2868
+ type AdHocPositionSwapArgs = {
2869
+ drawDefinition: DrawDefinition;
2870
+ tournamentRecord: Tournament;
2871
+ participantIds: string[];
2872
+ structureId: string;
2873
+ roundNumber: number;
2874
+ event: Event$1;
2875
+ };
2876
+ declare function adHocPositionSwap(params: AdHocPositionSwapArgs): ResultType;
2877
+
2862
2878
  declare function addPlayoffStructures(params: any): ResultType & {
2863
2879
  addedStructureIds?: string[] | undefined;
2864
2880
  };
@@ -3036,6 +3052,7 @@ declare function attachStructures({ itemType, matchUpModifications, tournamentRe
3036
3052
  addedStructureIds?: string[];
3037
3053
  };
3038
3054
 
3055
+ declare const mutate$c_adHocPositionSwap: typeof adHocPositionSwap;
3039
3056
  declare const mutate$c_addAdHocMatchUps: typeof addAdHocMatchUps;
3040
3057
  declare const mutate$c_addDrawDefinitionTimeItem: typeof addDrawDefinitionTimeItem;
3041
3058
  declare const mutate$c_addPlayoffStructures: typeof addPlayoffStructures;
@@ -3075,7 +3092,7 @@ declare const mutate$c_swapDrawPositionAssignments: typeof swapDrawPositionAssig
3075
3092
  declare const mutate$c_updateTeamLineUp: typeof updateTeamLineUp;
3076
3093
  declare const mutate$c_withdrawParticipantAtDrawPosition: typeof withdrawParticipantAtDrawPosition;
3077
3094
  declare namespace mutate$c {
3078
- export { mutate$c_addAdHocMatchUps as addAdHocMatchUps, mutate$c_addDrawDefinitionTimeItem as addDrawDefinitionTimeItem, mutate$c_addPlayoffStructures as addPlayoffStructures, mutate$c_addQualifyingStructure as addQualifyingStructure, mutate$c_addVoluntaryConsolationStage as addVoluntaryConsolationStage, mutate$c_addVoluntaryConsolationStructure as addVoluntaryConsolationStructure, mutate$c_alternateDrawPositionAssignment as alternateDrawPositionAssignment, mutate$c_assignDrawPosition as assignDrawPosition, mutate$c_assignDrawPositionBye as assignDrawPositionBye, mutate$c_attachConsolationStructures as attachConsolationStructures, mutate$c_attachPlayoffStructures as attachPlayoffStructures, mutate$c_attachQualifyingStructure as attachQualifyingStructure, mutate$c_attachStructures as attachStructures, mutate$c_automatedPlayoffPositioning as automatedPlayoffPositioning, mutate$c_automatedPositioning as automatedPositioning, mutate$c_deleteAdHocMatchUps as deleteAdHocMatchUps, mutate$c_luckyLoserDrawPositionAssignment as luckyLoserDrawPositionAssignment, mutate$c_modifyDrawDefinition as modifyDrawDefinition, mutate$c_modifyDrawName as modifyDrawName, mutate$c_modifySeedAssignment as modifySeedAssignment, mutate$c_pruneDrawDefinition as pruneDrawDefinition, mutate$c_qualifierDrawPositionAssignment as qualifierDrawPositionAssignment, mutate$c_removeDrawPositionAssignment as removeDrawPositionAssignment, mutate$c_removeRoundMatchUps as removeRoundMatchUps, mutate$c_removeSeededParticipant as removeSeededParticipant, mutate$c_removeStructure as removeStructure, mutate$c_renameStructures as renameStructures, mutate$c_resetDrawDefinition as resetDrawDefinition, mutate$c_resetVoluntaryConsolationStructure as resetVoluntaryConsolationStructure, mutate$c_setDrawParticipantRepresentativeIds as setDrawParticipantRepresentativeIds, mutate$c_setPositionAssignments as setPositionAssignments, mutate$c_setStructureOrder as setStructureOrder, mutate$c_setSubOrder as setSubOrder, mutate$c_shiftAdHocRounds as shiftAdHocRounds, mutate$c_swapAdHocRounds as swapAdHocRounds, mutate$c_swapDrawPositionAssignments as swapDrawPositionAssignments, mutate$c_updateTeamLineUp as updateTeamLineUp, mutate$c_withdrawParticipantAtDrawPosition as withdrawParticipantAtDrawPosition };
3095
+ export { mutate$c_adHocPositionSwap as adHocPositionSwap, mutate$c_addAdHocMatchUps as addAdHocMatchUps, mutate$c_addDrawDefinitionTimeItem as addDrawDefinitionTimeItem, mutate$c_addPlayoffStructures as addPlayoffStructures, mutate$c_addQualifyingStructure as addQualifyingStructure, mutate$c_addVoluntaryConsolationStage as addVoluntaryConsolationStage, mutate$c_addVoluntaryConsolationStructure as addVoluntaryConsolationStructure, mutate$c_alternateDrawPositionAssignment as alternateDrawPositionAssignment, mutate$c_assignDrawPosition as assignDrawPosition, mutate$c_assignDrawPositionBye as assignDrawPositionBye, mutate$c_attachConsolationStructures as attachConsolationStructures, mutate$c_attachPlayoffStructures as attachPlayoffStructures, mutate$c_attachQualifyingStructure as attachQualifyingStructure, mutate$c_attachStructures as attachStructures, mutate$c_automatedPlayoffPositioning as automatedPlayoffPositioning, mutate$c_automatedPositioning as automatedPositioning, mutate$c_deleteAdHocMatchUps as deleteAdHocMatchUps, mutate$c_luckyLoserDrawPositionAssignment as luckyLoserDrawPositionAssignment, mutate$c_modifyDrawDefinition as modifyDrawDefinition, mutate$c_modifyDrawName as modifyDrawName, mutate$c_modifySeedAssignment as modifySeedAssignment, mutate$c_pruneDrawDefinition as pruneDrawDefinition, mutate$c_qualifierDrawPositionAssignment as qualifierDrawPositionAssignment, mutate$c_removeDrawPositionAssignment as removeDrawPositionAssignment, mutate$c_removeRoundMatchUps as removeRoundMatchUps, mutate$c_removeSeededParticipant as removeSeededParticipant, mutate$c_removeStructure as removeStructure, mutate$c_renameStructures as renameStructures, mutate$c_resetDrawDefinition as resetDrawDefinition, mutate$c_resetVoluntaryConsolationStructure as resetVoluntaryConsolationStructure, mutate$c_setDrawParticipantRepresentativeIds as setDrawParticipantRepresentativeIds, mutate$c_setPositionAssignments as setPositionAssignments, mutate$c_setStructureOrder as setStructureOrder, mutate$c_setSubOrder as setSubOrder, mutate$c_shiftAdHocRounds as shiftAdHocRounds, mutate$c_swapAdHocRounds as swapAdHocRounds, mutate$c_swapDrawPositionAssignments as swapDrawPositionAssignments, mutate$c_updateTeamLineUp as updateTeamLineUp, mutate$c_withdrawParticipantAtDrawPosition as withdrawParticipantAtDrawPosition };
3079
3096
  }
3080
3097
 
3081
3098
  type GetEligibleVoluntaryConsolationParticipantsArgs = {
@@ -3485,6 +3502,24 @@ type GetMatchUpsMapArgs = {
3485
3502
  };
3486
3503
  declare function getMatchUpsMap({ drawDefinition, structure }: GetMatchUpsMapArgs): MatchUpsMap;
3487
3504
 
3505
+ type GetDrawStructuresArgs = {
3506
+ sortConfig?: StructureSortConfig;
3507
+ drawDefinition?: DrawDefinition;
3508
+ withStageGrouping?: boolean;
3509
+ stageSequences?: string[];
3510
+ stageSequence?: number;
3511
+ roundTarget?: number;
3512
+ stages?: string[];
3513
+ stage?: string;
3514
+ };
3515
+ type FoundDrawStructure = {
3516
+ stageStructures: {
3517
+ [key: string]: Structure[];
3518
+ };
3519
+ structures: Structure[];
3520
+ };
3521
+ declare function getDrawStructures({ withStageGrouping, drawDefinition, stageSequences, stageSequence, roundTarget, sortConfig, stages, stage, }: GetDrawStructuresArgs): ResultType & FoundDrawStructure;
3522
+
3488
3523
  type IsAdHocArgs = {
3489
3524
  structure?: any;
3490
3525
  };
@@ -3519,6 +3554,7 @@ declare const query$b_getAvailableMatchUpsCount: typeof getAvailableMatchUpsCoun
3519
3554
  declare const query$b_getAvailablePlayoffProfiles: typeof getAvailablePlayoffProfiles;
3520
3555
  declare const query$b_getDrawDefinitionTimeItem: typeof getDrawDefinitionTimeItem;
3521
3556
  declare const query$b_getDrawParticipantRepresentativeIds: typeof getDrawParticipantRepresentativeIds;
3557
+ declare const query$b_getDrawStructures: typeof getDrawStructures;
3522
3558
  declare const query$b_getDrawTypeCoercion: typeof getDrawTypeCoercion;
3523
3559
  declare const query$b_getEligibleVoluntaryConsolationParticipants: typeof getEligibleVoluntaryConsolationParticipants;
3524
3560
  declare const query$b_getMatchUpsMap: typeof getMatchUpsMap;
@@ -3535,7 +3571,7 @@ declare const query$b_isCompletedStructure: typeof isCompletedStructure;
3535
3571
  declare const query$b_isValidForQualifying: typeof isValidForQualifying;
3536
3572
  declare const query$b_positionActions: typeof positionActions;
3537
3573
  declare namespace query$b {
3538
- export { query$b_addGoesTo as addGoesTo, query$b_allPlayoffPositionsFilled as allPlayoffPositionsFilled, query$b_checkValidEntries as checkValidEntries, publicFindDrawDefinition as findDrawDefinition, query$b_getAssignedParticipantIds as getAssignedParticipantIds, query$b_getAvailableMatchUpsCount as getAvailableMatchUpsCount, query$b_getAvailablePlayoffProfiles as getAvailablePlayoffProfiles, query$b_getDrawDefinitionTimeItem as getDrawDefinitionTimeItem, query$b_getDrawParticipantRepresentativeIds as getDrawParticipantRepresentativeIds, query$b_getDrawTypeCoercion as getDrawTypeCoercion, query$b_getEligibleVoluntaryConsolationParticipants as getEligibleVoluntaryConsolationParticipants, query$b_getMatchUpsMap as getMatchUpsMap, query$b_getParticipantIdFinishingPositions as getParticipantIdFinishingPositions, query$b_getPositionAssignments as getPositionAssignments, query$b_getPositionsPlayedOff as getPositionsPlayedOff, query$b_getSeedingThresholds as getSeedingThresholds, query$b_getSeedsCount as getSeedsCount, query$b_getStructureSeedAssignments as getStructureSeedAssignments, query$b_getTeamLineUp as getTeamLineUp, query$b_getValidGroupSizes as getValidGroupSizes, query$b_isAdHoc as isAdHoc, query$b_isCompletedStructure as isCompletedStructure, query$b_isValidForQualifying as isValidForQualifying, query$b_positionActions as positionActions };
3574
+ export { query$b_addGoesTo as addGoesTo, query$b_allPlayoffPositionsFilled as allPlayoffPositionsFilled, query$b_checkValidEntries as checkValidEntries, publicFindDrawDefinition as findDrawDefinition, query$b_getAssignedParticipantIds as getAssignedParticipantIds, query$b_getAvailableMatchUpsCount as getAvailableMatchUpsCount, query$b_getAvailablePlayoffProfiles as getAvailablePlayoffProfiles, query$b_getDrawDefinitionTimeItem as getDrawDefinitionTimeItem, query$b_getDrawParticipantRepresentativeIds as getDrawParticipantRepresentativeIds, query$b_getDrawStructures as getDrawStructures, query$b_getDrawTypeCoercion as getDrawTypeCoercion, query$b_getEligibleVoluntaryConsolationParticipants as getEligibleVoluntaryConsolationParticipants, query$b_getMatchUpsMap as getMatchUpsMap, query$b_getParticipantIdFinishingPositions as getParticipantIdFinishingPositions, query$b_getPositionAssignments as getPositionAssignments, query$b_getPositionsPlayedOff as getPositionsPlayedOff, query$b_getSeedingThresholds as getSeedingThresholds, query$b_getSeedsCount as getSeedsCount, query$b_getStructureSeedAssignments as getStructureSeedAssignments, query$b_getTeamLineUp as getTeamLineUp, query$b_getValidGroupSizes as getValidGroupSizes, query$b_isAdHoc as isAdHoc, query$b_isCompletedStructure as isCompletedStructure, query$b_isValidForQualifying as isValidForQualifying, query$b_positionActions as positionActions };
3539
3575
  }
3540
3576
 
3541
3577
  type GenerateDrawTypeAndModify = {
@@ -3825,6 +3861,7 @@ declare function autoSeeding({ tournamentRecord, drawDefinition, policyDefinitio
3825
3861
  error?: undefined;
3826
3862
  };
3827
3863
 
3864
+ declare const index$j_adHocPositionSwap: typeof adHocPositionSwap;
3828
3865
  declare const index$j_addAdHocMatchUps: typeof addAdHocMatchUps;
3829
3866
  declare const index$j_addDrawDefinitionTimeItem: typeof addDrawDefinitionTimeItem;
3830
3867
  declare const index$j_addFinishingRounds: typeof addFinishingRounds;
@@ -3861,6 +3898,7 @@ declare const index$j_getAvailableMatchUpsCount: typeof getAvailableMatchUpsCoun
3861
3898
  declare const index$j_getAvailablePlayoffProfiles: typeof getAvailablePlayoffProfiles;
3862
3899
  declare const index$j_getDrawDefinitionTimeItem: typeof getDrawDefinitionTimeItem;
3863
3900
  declare const index$j_getDrawParticipantRepresentativeIds: typeof getDrawParticipantRepresentativeIds;
3901
+ declare const index$j_getDrawStructures: typeof getDrawStructures;
3864
3902
  declare const index$j_getDrawTypeCoercion: typeof getDrawTypeCoercion;
3865
3903
  declare const index$j_getEligibleVoluntaryConsolationParticipants: typeof getEligibleVoluntaryConsolationParticipants;
3866
3904
  declare const index$j_getMatchUpsMap: typeof getMatchUpsMap;
@@ -3899,7 +3937,7 @@ declare const index$j_swapDrawPositionAssignments: typeof swapDrawPositionAssign
3899
3937
  declare const index$j_updateTeamLineUp: typeof updateTeamLineUp;
3900
3938
  declare const index$j_withdrawParticipantAtDrawPosition: typeof withdrawParticipantAtDrawPosition;
3901
3939
  declare namespace index$j {
3902
- export { index$j_addAdHocMatchUps as addAdHocMatchUps, index$j_addDrawDefinitionTimeItem as addDrawDefinitionTimeItem, index$j_addFinishingRounds as addFinishingRounds, index$j_addGoesTo as addGoesTo, index$j_addPlayoffStructures as addPlayoffStructures, index$j_addQualifyingStructure as addQualifyingStructure, index$j_addVoluntaryConsolationStage as addVoluntaryConsolationStage, index$j_addVoluntaryConsolationStructure as addVoluntaryConsolationStructure, index$j_allPlayoffPositionsFilled as allPlayoffPositionsFilled, index$j_alternateDrawPositionAssignment as alternateDrawPositionAssignment, index$j_assignDrawPosition as assignDrawPosition, index$j_assignDrawPositionBye as assignDrawPositionBye, index$j_attachConsolationStructures as attachConsolationStructures, index$j_attachPlayoffStructures as attachPlayoffStructures, index$j_attachQualifyingStructure as attachQualifyingStructure, index$j_attachStructures as attachStructures, index$j_autoSeeding as autoSeeding, index$j_automatedPlayoffPositioning as automatedPlayoffPositioning, index$j_automatedPositioning as automatedPositioning, index$j_checkValidEntries as checkValidEntries, index$j_deleteAdHocMatchUps as deleteAdHocMatchUps, index$j_drawMatic as drawMatic, publicFindDrawDefinition as findDrawDefinition, index$j_generateAdHocMatchUps as generateAdHocMatchUps, index$j_generateAdHocRounds as generateAdHocRounds, index$j_generateAndPopulatePlayoffStructures as generateAndPopulatePlayoffStructures, index$j_generateDrawDefinition as generateDrawDefinition, index$j_generateDrawMaticRound as generateDrawMaticRound, index$j_generateDrawStructuresAndLinks as generateDrawStructuresAndLinks, index$j_generateDrawTypeAndModifyDrawDefinition as generateDrawTypeAndModifyDrawDefinition, index$j_generateQualifyingStructure as generateQualifyingStructure, index$j_generateVoluntaryConsolation as generateVoluntaryConsolation, index$j_getAssignedParticipantIds as getAssignedParticipantIds, index$j_getAvailableMatchUpsCount as getAvailableMatchUpsCount, index$j_getAvailablePlayoffProfiles as getAvailablePlayoffProfiles, index$j_getDrawDefinitionTimeItem as getDrawDefinitionTimeItem, index$j_getDrawParticipantRepresentativeIds as getDrawParticipantRepresentativeIds, index$j_getDrawTypeCoercion as getDrawTypeCoercion, index$j_getEligibleVoluntaryConsolationParticipants as getEligibleVoluntaryConsolationParticipants, index$j_getMatchUpsMap as getMatchUpsMap, index$j_getParticipantIdFinishingPositions as getParticipantIdFinishingPositions, index$j_getPositionAssignments as getPositionAssignments, index$j_getPositionsPlayedOff as getPositionsPlayedOff, index$j_getSeedingThresholds as getSeedingThresholds, index$j_getSeedsCount as getSeedsCount, index$j_getStructureSeedAssignments as getStructureSeedAssignments, index$j_getTeamLineUp as getTeamLineUp, index$j_getValidGroupSizes as getValidGroupSizes, index$j_isAdHoc as isAdHoc, index$j_isCompletedStructure as isCompletedStructure, index$j_isValidForQualifying as isValidForQualifying, index$j_luckyLoserDrawPositionAssignment as luckyLoserDrawPositionAssignment, index$j_modifyDrawDefinition as modifyDrawDefinition, index$j_modifyDrawName as modifyDrawName, index$j_modifySeedAssignment as modifySeedAssignment, mutate$c as mutate, index$j_positionActions as positionActions, index$j_pruneDrawDefinition as pruneDrawDefinition, index$j_qualifierDrawPositionAssignment as qualifierDrawPositionAssignment, query$b as query, index$j_removeDrawPositionAssignment as removeDrawPositionAssignment, index$j_removeRoundMatchUps as removeRoundMatchUps, index$j_removeSeededParticipant as removeSeededParticipant, index$j_removeStructure as removeStructure, index$j_renameStructures as renameStructures, index$j_resetDrawDefinition as resetDrawDefinition, index$j_resetVoluntaryConsolationStructure as resetVoluntaryConsolationStructure, index$j_setDrawParticipantRepresentativeIds as setDrawParticipantRepresentativeIds, index$j_setPositionAssignments as setPositionAssignments, index$j_setStructureOrder as setStructureOrder, index$j_setSubOrder as setSubOrder, index$j_shiftAdHocRounds as shiftAdHocRounds, index$j_swapAdHocRounds as swapAdHocRounds, index$j_swapDrawPositionAssignments as swapDrawPositionAssignments, index$j_updateTeamLineUp as updateTeamLineUp, index$j_withdrawParticipantAtDrawPosition as withdrawParticipantAtDrawPosition };
3940
+ export { index$j_adHocPositionSwap as adHocPositionSwap, index$j_addAdHocMatchUps as addAdHocMatchUps, index$j_addDrawDefinitionTimeItem as addDrawDefinitionTimeItem, index$j_addFinishingRounds as addFinishingRounds, index$j_addGoesTo as addGoesTo, index$j_addPlayoffStructures as addPlayoffStructures, index$j_addQualifyingStructure as addQualifyingStructure, index$j_addVoluntaryConsolationStage as addVoluntaryConsolationStage, index$j_addVoluntaryConsolationStructure as addVoluntaryConsolationStructure, index$j_allPlayoffPositionsFilled as allPlayoffPositionsFilled, index$j_alternateDrawPositionAssignment as alternateDrawPositionAssignment, index$j_assignDrawPosition as assignDrawPosition, index$j_assignDrawPositionBye as assignDrawPositionBye, index$j_attachConsolationStructures as attachConsolationStructures, index$j_attachPlayoffStructures as attachPlayoffStructures, index$j_attachQualifyingStructure as attachQualifyingStructure, index$j_attachStructures as attachStructures, index$j_autoSeeding as autoSeeding, index$j_automatedPlayoffPositioning as automatedPlayoffPositioning, index$j_automatedPositioning as automatedPositioning, index$j_checkValidEntries as checkValidEntries, index$j_deleteAdHocMatchUps as deleteAdHocMatchUps, index$j_drawMatic as drawMatic, publicFindDrawDefinition as findDrawDefinition, index$j_generateAdHocMatchUps as generateAdHocMatchUps, index$j_generateAdHocRounds as generateAdHocRounds, index$j_generateAndPopulatePlayoffStructures as generateAndPopulatePlayoffStructures, index$j_generateDrawDefinition as generateDrawDefinition, index$j_generateDrawMaticRound as generateDrawMaticRound, index$j_generateDrawStructuresAndLinks as generateDrawStructuresAndLinks, index$j_generateDrawTypeAndModifyDrawDefinition as generateDrawTypeAndModifyDrawDefinition, index$j_generateQualifyingStructure as generateQualifyingStructure, index$j_generateVoluntaryConsolation as generateVoluntaryConsolation, index$j_getAssignedParticipantIds as getAssignedParticipantIds, index$j_getAvailableMatchUpsCount as getAvailableMatchUpsCount, index$j_getAvailablePlayoffProfiles as getAvailablePlayoffProfiles, index$j_getDrawDefinitionTimeItem as getDrawDefinitionTimeItem, index$j_getDrawParticipantRepresentativeIds as getDrawParticipantRepresentativeIds, index$j_getDrawStructures as getDrawStructures, index$j_getDrawTypeCoercion as getDrawTypeCoercion, index$j_getEligibleVoluntaryConsolationParticipants as getEligibleVoluntaryConsolationParticipants, index$j_getMatchUpsMap as getMatchUpsMap, index$j_getParticipantIdFinishingPositions as getParticipantIdFinishingPositions, index$j_getPositionAssignments as getPositionAssignments, index$j_getPositionsPlayedOff as getPositionsPlayedOff, index$j_getSeedingThresholds as getSeedingThresholds, index$j_getSeedsCount as getSeedsCount, index$j_getStructureSeedAssignments as getStructureSeedAssignments, index$j_getTeamLineUp as getTeamLineUp, index$j_getValidGroupSizes as getValidGroupSizes, index$j_isAdHoc as isAdHoc, index$j_isCompletedStructure as isCompletedStructure, index$j_isValidForQualifying as isValidForQualifying, index$j_luckyLoserDrawPositionAssignment as luckyLoserDrawPositionAssignment, index$j_modifyDrawDefinition as modifyDrawDefinition, index$j_modifyDrawName as modifyDrawName, index$j_modifySeedAssignment as modifySeedAssignment, mutate$c as mutate, index$j_positionActions as positionActions, index$j_pruneDrawDefinition as pruneDrawDefinition, index$j_qualifierDrawPositionAssignment as qualifierDrawPositionAssignment, query$b as query, index$j_removeDrawPositionAssignment as removeDrawPositionAssignment, index$j_removeRoundMatchUps as removeRoundMatchUps, index$j_removeSeededParticipant as removeSeededParticipant, index$j_removeStructure as removeStructure, index$j_renameStructures as renameStructures, index$j_resetDrawDefinition as resetDrawDefinition, index$j_resetVoluntaryConsolationStructure as resetVoluntaryConsolationStructure, index$j_setDrawParticipantRepresentativeIds as setDrawParticipantRepresentativeIds, index$j_setPositionAssignments as setPositionAssignments, index$j_setStructureOrder as setStructureOrder, index$j_setSubOrder as setSubOrder, index$j_shiftAdHocRounds as shiftAdHocRounds, index$j_swapAdHocRounds as swapAdHocRounds, index$j_swapDrawPositionAssignments as swapDrawPositionAssignments, index$j_updateTeamLineUp as updateTeamLineUp, index$j_withdrawParticipantAtDrawPosition as withdrawParticipantAtDrawPosition };
3903
3941
  }
3904
3942
 
3905
3943
  type DestroyPairEntryArgs = {
@@ -6126,6 +6164,7 @@ type GenerateTournamentRecordArgs = {
6126
6164
  drawProfiles?: any[];
6127
6165
  startDate?: string;
6128
6166
  endDate?: string;
6167
+ isMock?: boolean;
6129
6168
  uuids?: string[];
6130
6169
  };
6131
6170
  declare function generateTournamentRecord(params: GenerateTournamentRecordArgs): any;
@@ -6194,13 +6233,13 @@ declare function generateOutcome(params: any): {
6194
6233
  matchUpStatusProfile?: undefined;
6195
6234
  };
6196
6235
 
6197
- declare const generate$2_generateEventWithDraw: typeof generateEventWithDraw;
6198
- declare const generate$2_generateOutcome: typeof generateOutcome;
6199
- declare const generate$2_generateOutcomeFromScoreString: typeof generateOutcomeFromScoreString;
6200
- declare const generate$2_generateParticipants: typeof generateParticipants;
6201
- declare const generate$2_generateTournamentRecord: typeof generateTournamentRecord;
6202
- declare namespace generate$2 {
6203
- export { generate$2_generateEventWithDraw as generateEventWithDraw, generate$2_generateOutcome as generateOutcome, generate$2_generateOutcomeFromScoreString as generateOutcomeFromScoreString, generate$2_generateParticipants as generateParticipants, generate$2_generateTournamentRecord as generateTournamentRecord };
6236
+ declare const generate$3_generateEventWithDraw: typeof generateEventWithDraw;
6237
+ declare const generate$3_generateOutcome: typeof generateOutcome;
6238
+ declare const generate$3_generateOutcomeFromScoreString: typeof generateOutcomeFromScoreString;
6239
+ declare const generate$3_generateParticipants: typeof generateParticipants;
6240
+ declare const generate$3_generateTournamentRecord: typeof generateTournamentRecord;
6241
+ declare namespace generate$3 {
6242
+ export { generate$3_generateEventWithDraw as generateEventWithDraw, generate$3_generateOutcome as generateOutcome, generate$3_generateOutcomeFromScoreString as generateOutcomeFromScoreString, generate$3_generateParticipants as generateParticipants, generate$3_generateTournamentRecord as generateTournamentRecord };
6204
6243
  }
6205
6244
 
6206
6245
  declare function anonymizeTournamentRecord({ keepExtensions, anonymizeParticipantNames, tournamentRecord, tournamentName, personIds, tournamentId, }: {
@@ -6236,7 +6275,7 @@ declare const index$d_generateParticipants: typeof generateParticipants;
6236
6275
  declare const index$d_generateTournamentRecord: typeof generateTournamentRecord;
6237
6276
  declare const index$d_modifyTournamentRecord: typeof modifyTournamentRecord;
6238
6277
  declare namespace index$d {
6239
- export { index$d_anonymizeTournamentRecord as anonymizeTournamentRecord, generate$2 as generate, index$d_generateEventWithDraw as generateEventWithDraw, index$d_generateOutcome as generateOutcome, index$d_generateOutcomeFromScoreString as generateOutcomeFromScoreString, index$d_generateParticipants as generateParticipants, index$d_generateTournamentRecord as generateTournamentRecord, index$d_modifyTournamentRecord as modifyTournamentRecord, mutate$8 as mutate };
6278
+ export { index$d_anonymizeTournamentRecord as anonymizeTournamentRecord, generate$3 as generate, index$d_generateEventWithDraw as generateEventWithDraw, index$d_generateOutcome as generateOutcome, index$d_generateOutcomeFromScoreString as generateOutcomeFromScoreString, index$d_generateParticipants as generateParticipants, index$d_generateTournamentRecord as generateTournamentRecord, index$d_modifyTournamentRecord as modifyTournamentRecord, mutate$8 as mutate };
6240
6279
  }
6241
6280
 
6242
6281
  declare function modifyPersonRequests(params: any): ResultType & {
@@ -7626,6 +7665,7 @@ declare const index$9_getCourts: typeof getCourts;
7626
7665
  declare const index$9_getDrawData: typeof getDrawData;
7627
7666
  declare const index$9_getDrawDefinitionTimeItem: typeof getDrawDefinitionTimeItem;
7628
7667
  declare const index$9_getDrawParticipantRepresentativeIds: typeof getDrawParticipantRepresentativeIds;
7668
+ declare const index$9_getDrawStructures: typeof getDrawStructures;
7629
7669
  declare const index$9_getDrawTypeCoercion: typeof getDrawTypeCoercion;
7630
7670
  declare const index$9_getEligibleVoluntaryConsolationParticipants: typeof getEligibleVoluntaryConsolationParticipants;
7631
7671
  declare const index$9_getEntriesAndSeedsCount: typeof getEntriesAndSeedsCount;
@@ -7710,7 +7750,7 @@ declare const index$9_validMatchUps: typeof validMatchUps;
7710
7750
  declare const index$9_validateCollectionDefinition: typeof validateCollectionDefinition;
7711
7751
  declare const index$9_validateLineUp: typeof validateLineUp;
7712
7752
  declare namespace index$9 {
7713
- export { index$9_addGoesTo as addGoesTo, index$9_allCompetitionMatchUps as allCompetitionMatchUps, index$9_allDrawMatchUps as allDrawMatchUps, index$9_allEventMatchUps as allEventMatchUps, index$9_allPlayoffPositionsFilled as allPlayoffPositionsFilled, index$9_allTournamentMatchUps as allTournamentMatchUps, index$9_analyzeDraws as analyzeDraws, index$9_analyzeMatchUp as analyzeMatchUp, index$9_analyzeTournament as analyzeTournament, index$9_bulkUpdatePublishedEventIds as bulkUpdatePublishedEventIds, index$9_calculateWinCriteria as calculateWinCriteria, index$9_categoryCanContain as categoryCanContain, index$9_checkMatchUpIsComplete as checkMatchUpIsComplete, index$9_checkValidEntries as checkValidEntries, index$9_compareTieFormats as compareTieFormats, index$9_competitionScheduleMatchUps as competitionScheduleMatchUps, index$9_credits as credits, index$9_drawMatchUps as drawMatchUps, index$9_eventMatchUps as eventMatchUps, index$9_filterParticipants as filterParticipants, publicFindDrawDefinition as findDrawDefinition, index$9_findExtension as findExtension, index$9_getAllDrawMatchUps as getAllDrawMatchUps, index$9_getAllEventData as getAllEventData, index$9_getAllStructureMatchUps as getAllStructureMatchUps, index$9_getAllowedDrawTypes as getAllowedDrawTypes, index$9_getAllowedMatchUpFormats as getAllowedMatchUpFormats, index$9_getAppliedPolicies as getAppliedPolicies, index$9_getAssignedParticipantIds as getAssignedParticipantIds, index$9_getAvailableMatchUpsCount as getAvailableMatchUpsCount, index$9_getAvailablePlayoffProfiles as getAvailablePlayoffProfiles, index$9_getCategoryAgeDetails as getCategoryAgeDetails, index$9_getCheckedInParticipantIds as getCheckedInParticipantIds, index$9_getCompetitionDateRange as getCompetitionDateRange, index$9_getCompetitionMatchUps as getCompetitionMatchUps, index$9_getCompetitionParticipants as getCompetitionParticipants, index$9_getCompetitionPenalties as getCompetitionPenalties, index$9_getCompetitionVenues as getCompetitionVenues, index$9_getCourtInfo as getCourtInfo, index$9_getCourts as getCourts, index$9_getDrawData as getDrawData, index$9_getDrawDefinitionTimeItem as getDrawDefinitionTimeItem, index$9_getDrawParticipantRepresentativeIds as getDrawParticipantRepresentativeIds, index$9_getDrawTypeCoercion as getDrawTypeCoercion, index$9_getEligibleVoluntaryConsolationParticipants as getEligibleVoluntaryConsolationParticipants, index$9_getEntriesAndSeedsCount as getEntriesAndSeedsCount, index$9_getEvent as getEvent, index$9_getEventData as getEventData, index$9_getEventMatchUpFormatTiming as getEventMatchUpFormatTiming, index$9_getEventProperties as getEventProperties, index$9_getEventPublishStatus as getEventPublishStatus, index$9_getEventStructures as getEventStructures, index$9_getEventTimeItem as getEventTimeItem, index$9_getEvents as getEvents, index$9_getFlightProfile as getFlightProfile, index$9_getHomeParticipantId as getHomeParticipantId, index$9_getLinkedTournamentIds as getLinkedTournamentIds, index$9_getMatchUpCompetitiveProfile as getMatchUpCompetitiveProfile, index$9_getMatchUpContextIds as getMatchUpContextIds, index$9_getMatchUpDailyLimits as getMatchUpDailyLimits, index$9_getMatchUpDailyLimitsUpdate as getMatchUpDailyLimitsUpdate, index$9_getMatchUpDependencies as getMatchUpDependencies, index$9_getMatchUpFormat as getMatchUpFormat, index$9_getMatchUpFormatTiming as getMatchUpFormatTiming, index$9_getMatchUpFormatTimingUpdate as getMatchUpFormatTimingUpdate, index$9_getMatchUpScheduleDetails as getMatchUpScheduleDetails, index$9_getMatchUpType as getMatchUpType, index$9_getMatchUpsMap as getMatchUpsMap, index$9_getMatchUpsStats as getMatchUpsStats, index$9_getMaxEntryPosition as getMaxEntryPosition, index$9_getModifiedMatchUpFormatTiming as getModifiedMatchUpFormatTiming, index$9_getPairedParticipant as getPairedParticipant, index$9_getParticipantEventDetails as getParticipantEventDetails, index$9_getParticipantIdFinishingPositions as getParticipantIdFinishingPositions, index$9_getParticipantMembership as getParticipantMembership, index$9_getParticipantResults as getParticipantResults, index$9_getParticipantScaleItem as getParticipantScaleItem, index$9_getParticipantSchedules as getParticipantSchedules, index$9_getParticipantSignInStatus as getParticipantSignInStatus, index$9_getParticipantTimeItem as getParticipantTimeItem, index$9_getParticipants as getParticipants, index$9_getPersonRequests as getPersonRequests, index$9_getPolicyDefinitions as getPolicyDefinitions, index$9_getPositionAssignments as getPositionAssignments, index$9_getPositionsPlayedOff as getPositionsPlayedOff, index$9_getPredictiveAccuracy as getPredictiveAccuracy, index$9_getProfileRounds as getProfileRounds, index$9_getPublishState as getPublishState, index$9_getRoundMatchUps as getRoundMatchUps, index$9_getRounds as getRounds, index$9_getScaleValues as getScaleValues, index$9_getScaledEntries as getScaledEntries, index$9_getScheduledRoundsDetails as getScheduledRoundsDetails, index$9_getSchedulingProfile as getSchedulingProfile, index$9_getSchedulingProfileIssues as getSchedulingProfileIssues, index$9_getSeedingThresholds as getSeedingThresholds, index$9_getSeedsCount as getSeedsCount, index$9_getStructureSeedAssignments as getStructureSeedAssignments, index$9_getTeamLineUp as getTeamLineUp, index$9_getTieFormat as getTieFormat, index$9_getTimeItem as getTimeItem, index$9_getTournamentIds as getTournamentIds, index$9_getTournamentInfo as getTournamentInfo, index$9_getTournamentPenalties as getTournamentPenalties, index$9_getTournamentPersons as getTournamentPersons, index$9_getTournamentStructures as getTournamentStructures, index$9_getTournamentTimeItem as getTournamentTimeItem, index$9_getValidGroupSizes as getValidGroupSizes, index$9_getVenueData as getVenueData, index$9_getVenuesAndCourts as getVenuesAndCourts, index$9_isAdHoc as isAdHoc, index$9_isCompletedStructure as isCompletedStructure, index$9_isValidForQualifying as isValidForQualifying, index$9_isValidMatchUpFormat as isValidMatchUpFormat, index$9_matchUpActions as matchUpActions, index$9_participantScaleItem as participantScaleItem, index$9_participantScheduledMatchUps as participantScheduledMatchUps, index$9_positionActions as positionActions, index$9_publicFindVenue as publicFindVenue, index$9_tallyParticipantResults as tallyParticipantResults, index$9_tieFormatGenderValidityCheck as tieFormatGenderValidityCheck, index$9_tournamentMatchUps as tournamentMatchUps, index$9_validMatchUp as validMatchUp, index$9_validMatchUps as validMatchUps, index$9_validateCollectionDefinition as validateCollectionDefinition, index$9_validateLineUp as validateLineUp };
7753
+ export { index$9_addGoesTo as addGoesTo, index$9_allCompetitionMatchUps as allCompetitionMatchUps, index$9_allDrawMatchUps as allDrawMatchUps, index$9_allEventMatchUps as allEventMatchUps, index$9_allPlayoffPositionsFilled as allPlayoffPositionsFilled, index$9_allTournamentMatchUps as allTournamentMatchUps, index$9_analyzeDraws as analyzeDraws, index$9_analyzeMatchUp as analyzeMatchUp, index$9_analyzeTournament as analyzeTournament, index$9_bulkUpdatePublishedEventIds as bulkUpdatePublishedEventIds, index$9_calculateWinCriteria as calculateWinCriteria, index$9_categoryCanContain as categoryCanContain, index$9_checkMatchUpIsComplete as checkMatchUpIsComplete, index$9_checkValidEntries as checkValidEntries, index$9_compareTieFormats as compareTieFormats, index$9_competitionScheduleMatchUps as competitionScheduleMatchUps, index$9_credits as credits, index$9_drawMatchUps as drawMatchUps, index$9_eventMatchUps as eventMatchUps, index$9_filterParticipants as filterParticipants, publicFindDrawDefinition as findDrawDefinition, index$9_findExtension as findExtension, index$9_getAllDrawMatchUps as getAllDrawMatchUps, index$9_getAllEventData as getAllEventData, index$9_getAllStructureMatchUps as getAllStructureMatchUps, index$9_getAllowedDrawTypes as getAllowedDrawTypes, index$9_getAllowedMatchUpFormats as getAllowedMatchUpFormats, index$9_getAppliedPolicies as getAppliedPolicies, index$9_getAssignedParticipantIds as getAssignedParticipantIds, index$9_getAvailableMatchUpsCount as getAvailableMatchUpsCount, index$9_getAvailablePlayoffProfiles as getAvailablePlayoffProfiles, index$9_getCategoryAgeDetails as getCategoryAgeDetails, index$9_getCheckedInParticipantIds as getCheckedInParticipantIds, index$9_getCompetitionDateRange as getCompetitionDateRange, index$9_getCompetitionMatchUps as getCompetitionMatchUps, index$9_getCompetitionParticipants as getCompetitionParticipants, index$9_getCompetitionPenalties as getCompetitionPenalties, index$9_getCompetitionVenues as getCompetitionVenues, index$9_getCourtInfo as getCourtInfo, index$9_getCourts as getCourts, index$9_getDrawData as getDrawData, index$9_getDrawDefinitionTimeItem as getDrawDefinitionTimeItem, index$9_getDrawParticipantRepresentativeIds as getDrawParticipantRepresentativeIds, index$9_getDrawStructures as getDrawStructures, index$9_getDrawTypeCoercion as getDrawTypeCoercion, index$9_getEligibleVoluntaryConsolationParticipants as getEligibleVoluntaryConsolationParticipants, index$9_getEntriesAndSeedsCount as getEntriesAndSeedsCount, index$9_getEvent as getEvent, index$9_getEventData as getEventData, index$9_getEventMatchUpFormatTiming as getEventMatchUpFormatTiming, index$9_getEventProperties as getEventProperties, index$9_getEventPublishStatus as getEventPublishStatus, index$9_getEventStructures as getEventStructures, index$9_getEventTimeItem as getEventTimeItem, index$9_getEvents as getEvents, index$9_getFlightProfile as getFlightProfile, index$9_getHomeParticipantId as getHomeParticipantId, index$9_getLinkedTournamentIds as getLinkedTournamentIds, index$9_getMatchUpCompetitiveProfile as getMatchUpCompetitiveProfile, index$9_getMatchUpContextIds as getMatchUpContextIds, index$9_getMatchUpDailyLimits as getMatchUpDailyLimits, index$9_getMatchUpDailyLimitsUpdate as getMatchUpDailyLimitsUpdate, index$9_getMatchUpDependencies as getMatchUpDependencies, index$9_getMatchUpFormat as getMatchUpFormat, index$9_getMatchUpFormatTiming as getMatchUpFormatTiming, index$9_getMatchUpFormatTimingUpdate as getMatchUpFormatTimingUpdate, index$9_getMatchUpScheduleDetails as getMatchUpScheduleDetails, index$9_getMatchUpType as getMatchUpType, index$9_getMatchUpsMap as getMatchUpsMap, index$9_getMatchUpsStats as getMatchUpsStats, index$9_getMaxEntryPosition as getMaxEntryPosition, index$9_getModifiedMatchUpFormatTiming as getModifiedMatchUpFormatTiming, index$9_getPairedParticipant as getPairedParticipant, index$9_getParticipantEventDetails as getParticipantEventDetails, index$9_getParticipantIdFinishingPositions as getParticipantIdFinishingPositions, index$9_getParticipantMembership as getParticipantMembership, index$9_getParticipantResults as getParticipantResults, index$9_getParticipantScaleItem as getParticipantScaleItem, index$9_getParticipantSchedules as getParticipantSchedules, index$9_getParticipantSignInStatus as getParticipantSignInStatus, index$9_getParticipantTimeItem as getParticipantTimeItem, index$9_getParticipants as getParticipants, index$9_getPersonRequests as getPersonRequests, index$9_getPolicyDefinitions as getPolicyDefinitions, index$9_getPositionAssignments as getPositionAssignments, index$9_getPositionsPlayedOff as getPositionsPlayedOff, index$9_getPredictiveAccuracy as getPredictiveAccuracy, index$9_getProfileRounds as getProfileRounds, index$9_getPublishState as getPublishState, index$9_getRoundMatchUps as getRoundMatchUps, index$9_getRounds as getRounds, index$9_getScaleValues as getScaleValues, index$9_getScaledEntries as getScaledEntries, index$9_getScheduledRoundsDetails as getScheduledRoundsDetails, index$9_getSchedulingProfile as getSchedulingProfile, index$9_getSchedulingProfileIssues as getSchedulingProfileIssues, index$9_getSeedingThresholds as getSeedingThresholds, index$9_getSeedsCount as getSeedsCount, index$9_getStructureSeedAssignments as getStructureSeedAssignments, index$9_getTeamLineUp as getTeamLineUp, index$9_getTieFormat as getTieFormat, index$9_getTimeItem as getTimeItem, index$9_getTournamentIds as getTournamentIds, index$9_getTournamentInfo as getTournamentInfo, index$9_getTournamentPenalties as getTournamentPenalties, index$9_getTournamentPersons as getTournamentPersons, index$9_getTournamentStructures as getTournamentStructures, index$9_getTournamentTimeItem as getTournamentTimeItem, index$9_getValidGroupSizes as getValidGroupSizes, index$9_getVenueData as getVenueData, index$9_getVenuesAndCourts as getVenuesAndCourts, index$9_isAdHoc as isAdHoc, index$9_isCompletedStructure as isCompletedStructure, index$9_isValidForQualifying as isValidForQualifying, index$9_isValidMatchUpFormat as isValidMatchUpFormat, index$9_matchUpActions as matchUpActions, index$9_participantScaleItem as participantScaleItem, index$9_participantScheduledMatchUps as participantScheduledMatchUps, index$9_positionActions as positionActions, index$9_publicFindVenue as publicFindVenue, index$9_tallyParticipantResults as tallyParticipantResults, index$9_tieFormatGenderValidityCheck as tieFormatGenderValidityCheck, index$9_tournamentMatchUps as tournamentMatchUps, index$9_validMatchUp as validMatchUp, index$9_validMatchUps as validMatchUps, index$9_validateCollectionDefinition as validateCollectionDefinition, index$9_validateLineUp as validateLineUp };
7714
7754
  }
7715
7755
 
7716
7756
  type StatCounters = {
@@ -8501,11 +8541,11 @@ declare function reverseScore(params?: any): {
8501
8541
  error?: ErrorType;
8502
8542
  };
8503
8543
 
8504
- declare const generate$1_generateScoreString: typeof generateScoreString;
8505
- declare const generate$1_generateTieMatchUpScore: typeof generateTieMatchUpScore;
8506
- declare const generate$1_reverseScore: typeof reverseScore;
8507
- declare namespace generate$1 {
8508
- export { generate$1_generateScoreString as generateScoreString, generate$1_generateTieMatchUpScore as generateTieMatchUpScore, generate$1_reverseScore as reverseScore };
8544
+ declare const generate$2_generateScoreString: typeof generateScoreString;
8545
+ declare const generate$2_generateTieMatchUpScore: typeof generateTieMatchUpScore;
8546
+ declare const generate$2_reverseScore: typeof reverseScore;
8547
+ declare namespace generate$2 {
8548
+ export { generate$2_generateScoreString as generateScoreString, generate$2_generateTieMatchUpScore as generateTieMatchUpScore, generate$2_reverseScore as reverseScore };
8509
8549
  }
8510
8550
 
8511
8551
  declare function calculateHistoryScore(params: any): {
@@ -8809,7 +8849,7 @@ declare const index$6_undo: typeof undo;
8809
8849
  declare const index$6_validateScore: typeof validateScore;
8810
8850
  declare const index$6_validateTieFormat: typeof validateTieFormat;
8811
8851
  declare namespace index$6 {
8812
- export { index$6_addGame as addGame, index$6_addPoint as addPoint, index$6_addSet as addSet, index$6_addShot as addShot, index$6_analyzeScore as analyzeScore, index$6_analyzeSet as analyzeSet, index$6_calculateHistoryScore as calculateHistoryScore, index$6_checkScoreHasValue as checkScoreHasValue, index$6_checkSetIsComplete as checkSetIsComplete, index$6_clearHistory as clearHistory, generate$1 as generate, index$6_generateScoreString as generateScoreString, index$6_generateTieMatchUpScore as generateTieMatchUpScore, index$6_getSetComplement as getSetComplement, index$6_getTiebreakComplement as getTiebreakComplement, help as helpers, index$6_isValidMatchUpFormat as isValidMatchUpFormat, index$6_keyValueScore as keyValueScore, mutate$3 as mutate, parse as parseMatchUpFormat, index$6_parseScoreString as parseScoreString, index$6_query as query, index$6_redo as redo, index$6_reverseScore as reverseScore, index$6_setServingSide as setServingSide, stringify as stringifyMatchUpFormat, index$6_tidyScore as tidyScore, index$6_umo as umo, index$6_undo as undo, index$6_validateScore as validateScore, index$6_validateTieFormat as validateTieFormat };
8852
+ export { index$6_addGame as addGame, index$6_addPoint as addPoint, index$6_addSet as addSet, index$6_addShot as addShot, index$6_analyzeScore as analyzeScore, index$6_analyzeSet as analyzeSet, index$6_calculateHistoryScore as calculateHistoryScore, index$6_checkScoreHasValue as checkScoreHasValue, index$6_checkSetIsComplete as checkSetIsComplete, index$6_clearHistory as clearHistory, generate$2 as generate, index$6_generateScoreString as generateScoreString, index$6_generateTieMatchUpScore as generateTieMatchUpScore, index$6_getSetComplement as getSetComplement, index$6_getTiebreakComplement as getTiebreakComplement, help as helpers, index$6_isValidMatchUpFormat as isValidMatchUpFormat, index$6_keyValueScore as keyValueScore, mutate$3 as mutate, parse as parseMatchUpFormat, index$6_parseScoreString as parseScoreString, index$6_query as query, index$6_redo as redo, index$6_reverseScore as reverseScore, index$6_setServingSide as setServingSide, stringify as stringifyMatchUpFormat, index$6_tidyScore as tidyScore, index$6_umo as umo, index$6_undo as undo, index$6_validateScore as validateScore, index$6_validateTieFormat as validateTieFormat };
8813
8853
  }
8814
8854
 
8815
8855
  type ModifyCollectionDefinitionArgs = {
@@ -9001,6 +9041,13 @@ declare namespace index$5 {
9001
9041
  export { index$5_addCollectionDefinition as addCollectionDefinition, index$5_addCollectionGroup as addCollectionGroup, index$5_aggregateTieFormats as aggregateTieFormats, index$5_compareTieFormats as compareTieFormats, index$5_getTieFormat as getTieFormat, index$5_modifyCollectionDefinition as modifyCollectionDefinition, index$5_modifyTieFormat as modifyTieFormat, mutate$2 as mutate, index$5_orderCollectionDefinitions as orderCollectionDefinitions, query$3 as query, index$5_removeCollectionDefinition as removeCollectionDefinition, index$5_removeCollectionGroup as removeCollectionGroup, index$5_tieFormatGenderValidityCheck as tieFormatGenderValidityCheck, index$5_validateCollectionDefinition as validateCollectionDefinition };
9002
9042
  }
9003
9043
 
9044
+ declare function createTournamentRecord(params: any): any;
9045
+
9046
+ declare const generate$1_createTournamentRecord: typeof createTournamentRecord;
9047
+ declare namespace generate$1 {
9048
+ export { generate$1_createTournamentRecord as createTournamentRecord };
9049
+ }
9050
+
9004
9051
  declare function setTournamentStatus({ tournamentRecord, status }: {
9005
9052
  tournamentRecord: any;
9006
9053
  status: any;
@@ -9301,6 +9348,7 @@ declare const index$4_addTournamentExtension: typeof addTournamentExtension;
9301
9348
  declare const index$4_addTournamentTimeItem: typeof addTournamentTimeItem;
9302
9349
  declare const index$4_analyzeDraws: typeof analyzeDraws;
9303
9350
  declare const index$4_analyzeTournament: typeof analyzeTournament;
9351
+ declare const index$4_createTournamentRecord: typeof createTournamentRecord;
9304
9352
  declare const index$4_getAllowedDrawTypes: typeof getAllowedDrawTypes;
9305
9353
  declare const index$4_getAllowedMatchUpFormats: typeof getAllowedMatchUpFormats;
9306
9354
  declare const index$4_getAppliedPolicies: typeof getAppliedPolicies;
@@ -9327,7 +9375,7 @@ declare const index$4_setTournamentNotes: typeof setTournamentNotes;
9327
9375
  declare const index$4_setTournamentStartDate: typeof setTournamentStartDate;
9328
9376
  declare const index$4_setTournamentStatus: typeof setTournamentStatus;
9329
9377
  declare namespace index$4 {
9330
- export { index$4_addDrawDefinitionExtension as addDrawDefinitionExtension, index$4_addEventExtension as addEventExtension, index$4_addEventTimeItem as addEventTimeItem, index$4_addExtension as addExtension, index$4_addNotes as addNotes, index$4_addOnlineResource as addOnlineResource, index$4_addParticipantExtension as addParticipantExtension, index$4_addParticipantTimeItem as addParticipantTimeItem, index$4_addTimeItem as addTimeItem, index$4_addTournamentExtension as addTournamentExtension, index$4_addTournamentTimeItem as addTournamentTimeItem, index$4_analyzeDraws as analyzeDraws, index$4_analyzeTournament as analyzeTournament, index$4_getAllowedDrawTypes as getAllowedDrawTypes, index$4_getAllowedMatchUpFormats as getAllowedMatchUpFormats, index$4_getAppliedPolicies as getAppliedPolicies, index$4_getCompetitionDateRange as getCompetitionDateRange, index$4_getCompetitionPenalties as getCompetitionPenalties, index$4_getPolicyDefinitions as getPolicyDefinitions, index$4_getTournamentInfo as getTournamentInfo, index$4_getTournamentPenalties as getTournamentPenalties, index$4_getTournamentPersons as getTournamentPersons, index$4_getTournamentStructures as getTournamentStructures, index$4_getTournamentTimeItem as getTournamentTimeItem, mutate$1 as mutate, query$4 as query, index$4_removeDrawDefinitionExtension as removeDrawDefinitionExtension, index$4_removeEventExtension as removeEventExtension, index$4_removeExtension as removeExtension, index$4_removeNotes as removeNotes, index$4_removeOnlineResource as removeOnlineResource, index$4_removeParticipantExtension as removeParticipantExtension, index$4_removeTournamentExtension as removeTournamentExtension, index$4_setTournamentCategories as setTournamentCategories, index$4_setTournamentDates as setTournamentDates, index$4_setTournamentEndDate as setTournamentEndDate, index$4_setTournamentName as setTournamentName, index$4_setTournamentNotes as setTournamentNotes, index$4_setTournamentStartDate as setTournamentStartDate, index$4_setTournamentStatus as setTournamentStatus };
9378
+ export { index$4_addDrawDefinitionExtension as addDrawDefinitionExtension, index$4_addEventExtension as addEventExtension, index$4_addEventTimeItem as addEventTimeItem, index$4_addExtension as addExtension, index$4_addNotes as addNotes, index$4_addOnlineResource as addOnlineResource, index$4_addParticipantExtension as addParticipantExtension, index$4_addParticipantTimeItem as addParticipantTimeItem, index$4_addTimeItem as addTimeItem, index$4_addTournamentExtension as addTournamentExtension, index$4_addTournamentTimeItem as addTournamentTimeItem, index$4_analyzeDraws as analyzeDraws, index$4_analyzeTournament as analyzeTournament, index$4_createTournamentRecord as createTournamentRecord, generate$1 as generate, index$4_getAllowedDrawTypes as getAllowedDrawTypes, index$4_getAllowedMatchUpFormats as getAllowedMatchUpFormats, index$4_getAppliedPolicies as getAppliedPolicies, index$4_getCompetitionDateRange as getCompetitionDateRange, index$4_getCompetitionPenalties as getCompetitionPenalties, index$4_getPolicyDefinitions as getPolicyDefinitions, index$4_getTournamentInfo as getTournamentInfo, index$4_getTournamentPenalties as getTournamentPenalties, index$4_getTournamentPersons as getTournamentPersons, index$4_getTournamentStructures as getTournamentStructures, index$4_getTournamentTimeItem as getTournamentTimeItem, mutate$1 as mutate, query$4 as query, index$4_removeDrawDefinitionExtension as removeDrawDefinitionExtension, index$4_removeEventExtension as removeEventExtension, index$4_removeExtension as removeExtension, index$4_removeNotes as removeNotes, index$4_removeOnlineResource as removeOnlineResource, index$4_removeParticipantExtension as removeParticipantExtension, index$4_removeTournamentExtension as removeTournamentExtension, index$4_setTournamentCategories as setTournamentCategories, index$4_setTournamentDates as setTournamentDates, index$4_setTournamentEndDate as setTournamentEndDate, index$4_setTournamentName as setTournamentName, index$4_setTournamentNotes as setTournamentNotes, index$4_setTournamentStartDate as setTournamentStartDate, index$4_setTournamentStatus as setTournamentStatus };
9331
9379
  }
9332
9380
 
9333
9381
  declare const generate_generateCourts: typeof generateCourts;