tods-competition-factory 2.0.13 → 2.0.16
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/index.mjs +6 -6
- package/dist/tods-competition-factory.d.ts +119 -99
- package/dist/tods-competition-factory.development.cjs.js +660 -540
- 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 +5 -5
|
@@ -2924,18 +2924,25 @@ declare function assignDrawPosition({ tournamentRecord, drawDefinition, particip
|
|
|
2924
2924
|
type DeleteAdHocMatchUpsArgs = {
|
|
2925
2925
|
tournamentRecord?: Tournament;
|
|
2926
2926
|
drawDefinition: DrawDefinition;
|
|
2927
|
+
removeUnAssigned?: boolean;
|
|
2928
|
+
removeIncomplete?: boolean;
|
|
2929
|
+
removeCompleted?: boolean;
|
|
2930
|
+
roundNumbers?: number[];
|
|
2927
2931
|
matchUpIds?: string[];
|
|
2928
2932
|
structureId?: string;
|
|
2929
2933
|
event?: Event$1;
|
|
2930
2934
|
};
|
|
2931
|
-
declare function deleteAdHocMatchUps(params: DeleteAdHocMatchUpsArgs): {
|
|
2935
|
+
declare function deleteAdHocMatchUps(params: DeleteAdHocMatchUpsArgs): (ResultType & {
|
|
2936
|
+
valid?: boolean | undefined;
|
|
2937
|
+
}) | {
|
|
2932
2938
|
error: {
|
|
2933
2939
|
message: string;
|
|
2934
2940
|
code: string;
|
|
2935
2941
|
};
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2942
|
+
existingMatchUps?: undefined;
|
|
2943
|
+
matchUpIds?: undefined;
|
|
2944
|
+
structureId?: undefined;
|
|
2945
|
+
structure?: undefined;
|
|
2939
2946
|
};
|
|
2940
2947
|
|
|
2941
2948
|
type RemoveRoundMatchUpsArgs = {
|
|
@@ -3132,6 +3139,17 @@ declare function getEligibleVoluntaryConsolationParticipants({ excludedMatchUpSt
|
|
|
3132
3139
|
error?: ErrorType;
|
|
3133
3140
|
};
|
|
3134
3141
|
|
|
3142
|
+
type GetAvailableMatchUpsCountArgs = {
|
|
3143
|
+
drawDefinition: DrawDefinition;
|
|
3144
|
+
structureId?: string;
|
|
3145
|
+
roundNumber?: number;
|
|
3146
|
+
};
|
|
3147
|
+
declare function getAvailableMatchUpsCount(params: GetAvailableMatchUpsCountArgs): ResultType & {
|
|
3148
|
+
availableMatchUpsCount?: number;
|
|
3149
|
+
roundMatchUpsCount?: number;
|
|
3150
|
+
lastRoundNumber?: number;
|
|
3151
|
+
};
|
|
3152
|
+
|
|
3135
3153
|
declare function getDrawParticipantRepresentativeIds({ drawDefinition }: {
|
|
3136
3154
|
drawDefinition: any;
|
|
3137
3155
|
}): (ResultType & {
|
|
@@ -3504,6 +3522,7 @@ declare function isAdHoc({ structure }: IsAdHocArgs): boolean;
|
|
|
3504
3522
|
declare const query$a_allPlayoffPositionsFilled: typeof allPlayoffPositionsFilled;
|
|
3505
3523
|
declare const query$a_checkValidEntries: typeof checkValidEntries;
|
|
3506
3524
|
declare const query$a_getAssignedParticipantIds: typeof getAssignedParticipantIds;
|
|
3525
|
+
declare const query$a_getAvailableMatchUpsCount: typeof getAvailableMatchUpsCount;
|
|
3507
3526
|
declare const query$a_getAvailablePlayoffProfiles: typeof getAvailablePlayoffProfiles;
|
|
3508
3527
|
declare const query$a_getDrawDefinitionTimeItem: typeof getDrawDefinitionTimeItem;
|
|
3509
3528
|
declare const query$a_getDrawParticipantRepresentativeIds: typeof getDrawParticipantRepresentativeIds;
|
|
@@ -3522,7 +3541,7 @@ declare const query$a_isCompletedStructure: typeof isCompletedStructure;
|
|
|
3522
3541
|
declare const query$a_isValidForQualifying: typeof isValidForQualifying;
|
|
3523
3542
|
declare const query$a_positionActions: typeof positionActions;
|
|
3524
3543
|
declare namespace query$a {
|
|
3525
|
-
export { query$a_allPlayoffPositionsFilled as allPlayoffPositionsFilled, query$a_checkValidEntries as checkValidEntries, publicFindDrawDefinition as findDrawDefinition, query$a_getAssignedParticipantIds as getAssignedParticipantIds, query$a_getAvailablePlayoffProfiles as getAvailablePlayoffProfiles, query$a_getDrawDefinitionTimeItem as getDrawDefinitionTimeItem, query$a_getDrawParticipantRepresentativeIds as getDrawParticipantRepresentativeIds, query$a_getDrawTypeCoercion as getDrawTypeCoercion, query$a_getEligibleVoluntaryConsolationParticipants as getEligibleVoluntaryConsolationParticipants, query$a_getParticipantIdFinishingPositions as getParticipantIdFinishingPositions, query$a_getPositionAssignments as getPositionAssignments, query$a_getPositionsPlayedOff as getPositionsPlayedOff, query$a_getSeedingThresholds as getSeedingThresholds, query$a_getSeedsCount as getSeedsCount, query$a_getStructureSeedAssignments as getStructureSeedAssignments, query$a_getTeamLineUp as getTeamLineUp, query$a_getValidGroupSizes as getValidGroupSizes, query$a_isAdHoc as isAdHoc, query$a_isCompletedStructure as isCompletedStructure, query$a_isValidForQualifying as isValidForQualifying, query$a_positionActions as positionActions };
|
|
3544
|
+
export { query$a_allPlayoffPositionsFilled as allPlayoffPositionsFilled, query$a_checkValidEntries as checkValidEntries, publicFindDrawDefinition as findDrawDefinition, query$a_getAssignedParticipantIds as getAssignedParticipantIds, query$a_getAvailableMatchUpsCount as getAvailableMatchUpsCount, query$a_getAvailablePlayoffProfiles as getAvailablePlayoffProfiles, query$a_getDrawDefinitionTimeItem as getDrawDefinitionTimeItem, query$a_getDrawParticipantRepresentativeIds as getDrawParticipantRepresentativeIds, query$a_getDrawTypeCoercion as getDrawTypeCoercion, query$a_getEligibleVoluntaryConsolationParticipants as getEligibleVoluntaryConsolationParticipants, query$a_getParticipantIdFinishingPositions as getParticipantIdFinishingPositions, query$a_getPositionAssignments as getPositionAssignments, query$a_getPositionsPlayedOff as getPositionsPlayedOff, query$a_getSeedingThresholds as getSeedingThresholds, query$a_getSeedsCount as getSeedsCount, query$a_getStructureSeedAssignments as getStructureSeedAssignments, query$a_getTeamLineUp as getTeamLineUp, query$a_getValidGroupSizes as getValidGroupSizes, query$a_isAdHoc as isAdHoc, query$a_isCompletedStructure as isCompletedStructure, query$a_isValidForQualifying as isValidForQualifying, query$a_positionActions as positionActions };
|
|
3526
3545
|
}
|
|
3527
3546
|
|
|
3528
3547
|
type GenerateDrawTypeAndModify = {
|
|
@@ -3791,6 +3810,7 @@ declare const index$j_generateDrawTypeAndModifyDrawDefinition: typeof generateDr
|
|
|
3791
3810
|
declare const index$j_generateQualifyingStructure: typeof generateQualifyingStructure;
|
|
3792
3811
|
declare const index$j_generateVoluntaryConsolation: typeof generateVoluntaryConsolation;
|
|
3793
3812
|
declare const index$j_getAssignedParticipantIds: typeof getAssignedParticipantIds;
|
|
3813
|
+
declare const index$j_getAvailableMatchUpsCount: typeof getAvailableMatchUpsCount;
|
|
3794
3814
|
declare const index$j_getAvailablePlayoffProfiles: typeof getAvailablePlayoffProfiles;
|
|
3795
3815
|
declare const index$j_getDrawDefinitionTimeItem: typeof getDrawDefinitionTimeItem;
|
|
3796
3816
|
declare const index$j_getDrawParticipantRepresentativeIds: typeof getDrawParticipantRepresentativeIds;
|
|
@@ -3829,7 +3849,7 @@ declare const index$j_swapDrawPositionAssignments: typeof swapDrawPositionAssign
|
|
|
3829
3849
|
declare const index$j_updateTeamLineUp: typeof updateTeamLineUp;
|
|
3830
3850
|
declare const index$j_withdrawParticipantAtDrawPosition: typeof withdrawParticipantAtDrawPosition;
|
|
3831
3851
|
declare namespace index$j {
|
|
3832
|
-
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_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_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$b as mutate, index$j_positionActions as positionActions, index$j_pruneDrawDefinition as pruneDrawDefinition, index$j_qualifierDrawPositionAssignment as qualifierDrawPositionAssignment, query$a 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_swapDrawPositionAssignments as swapDrawPositionAssignments, index$j_updateTeamLineUp as updateTeamLineUp, index$j_withdrawParticipantAtDrawPosition as withdrawParticipantAtDrawPosition };
|
|
3852
|
+
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_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$b as mutate, index$j_positionActions as positionActions, index$j_pruneDrawDefinition as pruneDrawDefinition, index$j_qualifierDrawPositionAssignment as qualifierDrawPositionAssignment, query$a 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_swapDrawPositionAssignments as swapDrawPositionAssignments, index$j_updateTeamLineUp as updateTeamLineUp, index$j_withdrawParticipantAtDrawPosition as withdrawParticipantAtDrawPosition };
|
|
3833
3853
|
}
|
|
3834
3854
|
|
|
3835
3855
|
type DestroyPairEntryArgs = {
|
|
@@ -5078,27 +5098,26 @@ declare function removeTieMatchUpParticipantId(params: RemoveTieMatchUpParticipa
|
|
|
5078
5098
|
modifiedLineUp?: LineUp;
|
|
5079
5099
|
};
|
|
5080
5100
|
|
|
5081
|
-
|
|
5082
|
-
tournamentRecord
|
|
5083
|
-
drawDefinition:
|
|
5084
|
-
sideNumber
|
|
5085
|
-
matchUpId:
|
|
5086
|
-
event
|
|
5087
|
-
}
|
|
5101
|
+
type RemoveMatchUpSideParticipantArgs = {
|
|
5102
|
+
tournamentRecord?: Tournament;
|
|
5103
|
+
drawDefinition: DrawDefinition;
|
|
5104
|
+
sideNumber?: number;
|
|
5105
|
+
matchUpId: string;
|
|
5106
|
+
event?: Event$1;
|
|
5107
|
+
};
|
|
5108
|
+
declare function removeMatchUpSideParticipant(params: RemoveMatchUpSideParticipantArgs): (ResultType & {
|
|
5109
|
+
valid?: boolean | undefined;
|
|
5110
|
+
}) | {
|
|
5088
5111
|
error: {
|
|
5089
5112
|
message: string;
|
|
5090
5113
|
code: string;
|
|
5091
5114
|
};
|
|
5092
|
-
sideNumber
|
|
5115
|
+
sideNumber: number;
|
|
5093
5116
|
} | {
|
|
5094
5117
|
error: {
|
|
5095
5118
|
message: string;
|
|
5096
5119
|
code: string;
|
|
5097
5120
|
};
|
|
5098
|
-
sideNumber: any;
|
|
5099
|
-
} | {
|
|
5100
|
-
success: boolean;
|
|
5101
|
-
error?: undefined;
|
|
5102
5121
|
sideNumber?: undefined;
|
|
5103
5122
|
};
|
|
5104
5123
|
|
|
@@ -5169,15 +5188,9 @@ declare function setMatchUpFormat(params: SetMatchUpStatusArgs$1): ResultType |
|
|
|
5169
5188
|
success?: boolean | undefined;
|
|
5170
5189
|
error?: ErrorType | undefined;
|
|
5171
5190
|
info?: string | undefined;
|
|
5172
|
-
} | {
|
|
5173
|
-
error: {
|
|
5174
|
-
message: string;
|
|
5175
|
-
code: string;
|
|
5176
|
-
};
|
|
5177
5191
|
} | {
|
|
5178
5192
|
modificationsCount: number;
|
|
5179
5193
|
success: boolean;
|
|
5180
|
-
error?: undefined;
|
|
5181
5194
|
};
|
|
5182
5195
|
|
|
5183
5196
|
declare function checkInParticipant(params: CheckInOutParticipantArgs): any;
|
|
@@ -5268,6 +5281,17 @@ declare function updateTieMatchUpScore(params: UpdateTieMatchUpScoreArgs): {
|
|
|
5268
5281
|
score?: any;
|
|
5269
5282
|
};
|
|
5270
5283
|
|
|
5284
|
+
type ResetAdHocMatchUps = {
|
|
5285
|
+
tournamentRecord: Tournament;
|
|
5286
|
+
drawDefinition: DrawDefinition;
|
|
5287
|
+
removeAssignments?: boolean;
|
|
5288
|
+
roundNumbers?: number[];
|
|
5289
|
+
matchUpIds?: string[];
|
|
5290
|
+
structureId?: string;
|
|
5291
|
+
event: Event$1;
|
|
5292
|
+
};
|
|
5293
|
+
declare function resetAdHocMatchUps(params: ResetAdHocMatchUps): any;
|
|
5294
|
+
|
|
5271
5295
|
declare function setOrderOfFinish(params: any): ResultType | {
|
|
5272
5296
|
error: {
|
|
5273
5297
|
message: string;
|
|
@@ -5319,17 +5343,10 @@ declare function resetTieFormat(params: ResetTieFormatArgs): ResultType & {
|
|
|
5319
5343
|
};
|
|
5320
5344
|
|
|
5321
5345
|
type ResetScoreCardArgs = {
|
|
5322
|
-
score?: {
|
|
5323
|
-
sets: {
|
|
5324
|
-
side1Score: number;
|
|
5325
|
-
side2Score: number;
|
|
5326
|
-
}[];
|
|
5327
|
-
};
|
|
5328
5346
|
tournamentRecord: Tournament;
|
|
5329
5347
|
drawDefinition: DrawDefinition;
|
|
5330
5348
|
tiebreakReset?: boolean;
|
|
5331
5349
|
matchUpStatus?: string;
|
|
5332
|
-
winningSide?: number;
|
|
5333
5350
|
matchUpId: string;
|
|
5334
5351
|
event?: Event$1;
|
|
5335
5352
|
};
|
|
@@ -5347,6 +5364,7 @@ declare const mutate$8_removeDelegatedOutcome: typeof removeDelegatedOutcome;
|
|
|
5347
5364
|
declare const mutate$8_removeMatchUpSideParticipant: typeof removeMatchUpSideParticipant;
|
|
5348
5365
|
declare const mutate$8_removeTieMatchUpParticipantId: typeof removeTieMatchUpParticipantId;
|
|
5349
5366
|
declare const mutate$8_replaceTieMatchUpParticipantId: typeof replaceTieMatchUpParticipantId;
|
|
5367
|
+
declare const mutate$8_resetAdHocMatchUps: typeof resetAdHocMatchUps;
|
|
5350
5368
|
declare const mutate$8_resetMatchUpLineUps: typeof resetMatchUpLineUps;
|
|
5351
5369
|
declare const mutate$8_resetScorecard: typeof resetScorecard;
|
|
5352
5370
|
declare const mutate$8_resetTieFormat: typeof resetTieFormat;
|
|
@@ -5358,7 +5376,7 @@ declare const mutate$8_substituteParticipant: typeof substituteParticipant;
|
|
|
5358
5376
|
declare const mutate$8_toggleParticipantCheckInState: typeof toggleParticipantCheckInState;
|
|
5359
5377
|
declare const mutate$8_updateTieMatchUpScore: typeof updateTieMatchUpScore;
|
|
5360
5378
|
declare namespace mutate$8 {
|
|
5361
|
-
export { mutate$8_applyLineUps as applyLineUps, mutate$8_assignMatchUpSideParticipant as assignMatchUpSideParticipant, mutate$8_assignTieMatchUpParticipantId as assignTieMatchUpParticipantId, mutate$8_bulkMatchUpStatusUpdate as bulkMatchUpStatusUpdate, mutate$8_checkInParticipant as checkInParticipant, mutate$8_checkOutParticipant as checkOutParticipant, mutate$8_disableTieAutoCalc as disableTieAutoCalc, mutate$8_enableTieAutoCalc as enableTieAutoCalc, publicFindMatchUp as findMatchUp, mutate$8_removeDelegatedOutcome as removeDelegatedOutcome, mutate$8_removeMatchUpSideParticipant as removeMatchUpSideParticipant, mutate$8_removeTieMatchUpParticipantId as removeTieMatchUpParticipantId, mutate$8_replaceTieMatchUpParticipantId as replaceTieMatchUpParticipantId, mutate$8_resetMatchUpLineUps as resetMatchUpLineUps, mutate$8_resetScorecard as resetScorecard, mutate$8_resetTieFormat as resetTieFormat, mutate$8_setDelegatedOutcome as setDelegatedOutcome, mutate$8_setMatchUpFormat as setMatchUpFormat, mutate$8_setMatchUpStatus as setMatchUpStatus, mutate$8_setOrderOfFinish as setOrderOfFinish, mutate$8_substituteParticipant as substituteParticipant, mutate$8_toggleParticipantCheckInState as toggleParticipantCheckInState, mutate$8_updateTieMatchUpScore as updateTieMatchUpScore };
|
|
5379
|
+
export { mutate$8_applyLineUps as applyLineUps, mutate$8_assignMatchUpSideParticipant as assignMatchUpSideParticipant, mutate$8_assignTieMatchUpParticipantId as assignTieMatchUpParticipantId, mutate$8_bulkMatchUpStatusUpdate as bulkMatchUpStatusUpdate, mutate$8_checkInParticipant as checkInParticipant, mutate$8_checkOutParticipant as checkOutParticipant, mutate$8_disableTieAutoCalc as disableTieAutoCalc, mutate$8_enableTieAutoCalc as enableTieAutoCalc, publicFindMatchUp as findMatchUp, mutate$8_removeDelegatedOutcome as removeDelegatedOutcome, mutate$8_removeMatchUpSideParticipant as removeMatchUpSideParticipant, mutate$8_removeTieMatchUpParticipantId as removeTieMatchUpParticipantId, mutate$8_replaceTieMatchUpParticipantId as replaceTieMatchUpParticipantId, mutate$8_resetAdHocMatchUps as resetAdHocMatchUps, mutate$8_resetMatchUpLineUps as resetMatchUpLineUps, mutate$8_resetScorecard as resetScorecard, mutate$8_resetTieFormat as resetTieFormat, mutate$8_setDelegatedOutcome as setDelegatedOutcome, mutate$8_setMatchUpFormat as setMatchUpFormat, mutate$8_setMatchUpStatus as setMatchUpStatus, mutate$8_setOrderOfFinish as setOrderOfFinish, mutate$8_substituteParticipant as substituteParticipant, mutate$8_toggleParticipantCheckInState as toggleParticipantCheckInState, mutate$8_updateTieMatchUpScore as updateTieMatchUpScore };
|
|
5362
5380
|
}
|
|
5363
5381
|
|
|
5364
5382
|
declare function getMatchUpFormatTimingUpdate({ tournamentRecords }: {
|
|
@@ -5413,6 +5431,17 @@ declare function getMatchUpFormatTiming({ defaultAverageMinutes, defaultRecovery
|
|
|
5413
5431
|
};
|
|
5414
5432
|
};
|
|
5415
5433
|
|
|
5434
|
+
type GetParticipantResultsArgs = {
|
|
5435
|
+
matchUps: HydratedMatchUp[];
|
|
5436
|
+
participantIds?: string[];
|
|
5437
|
+
matchUpFormat?: string;
|
|
5438
|
+
perPlayer?: number;
|
|
5439
|
+
tallyPolicy?: any;
|
|
5440
|
+
};
|
|
5441
|
+
declare function getParticipantResults({ participantIds, matchUpFormat, tallyPolicy, perPlayer, matchUps, }: GetParticipantResultsArgs): {
|
|
5442
|
+
participantResults: {};
|
|
5443
|
+
};
|
|
5444
|
+
|
|
5416
5445
|
declare function getMatchUpDailyLimitsUpdate({ tournamentRecords }: {
|
|
5417
5446
|
tournamentRecords: any;
|
|
5418
5447
|
}): {
|
|
@@ -5498,17 +5527,6 @@ declare function getCheckedInParticipantIds({ matchUp }: {
|
|
|
5498
5527
|
checkedInParticipantIds?: string[];
|
|
5499
5528
|
};
|
|
5500
5529
|
|
|
5501
|
-
type GetParticipantResultsArgs = {
|
|
5502
|
-
matchUps: HydratedMatchUp[];
|
|
5503
|
-
participantIds?: string[];
|
|
5504
|
-
matchUpFormat?: string;
|
|
5505
|
-
perPlayer?: number;
|
|
5506
|
-
tallyPolicy?: any;
|
|
5507
|
-
};
|
|
5508
|
-
declare function getParticipantResults({ participantIds, matchUpFormat, tallyPolicy, perPlayer, matchUps, }: GetParticipantResultsArgs): {
|
|
5509
|
-
participantResults: {};
|
|
5510
|
-
};
|
|
5511
|
-
|
|
5512
5530
|
type GetMatchUpScheduleDetailsArgs = {
|
|
5513
5531
|
scheduleVisibilityFilters?: ScheduleVisibilityFilters;
|
|
5514
5532
|
scheduleTiming?: ScheduleTiming;
|
|
@@ -5576,6 +5594,59 @@ declare function allCompetitionMatchUps({ scheduleVisibilityFilters, afterRecove
|
|
|
5576
5594
|
error?: ErrorType;
|
|
5577
5595
|
};
|
|
5578
5596
|
|
|
5597
|
+
type GetAllStructureMatchUps = {
|
|
5598
|
+
scheduleVisibilityFilters?: ScheduleVisibilityFilters;
|
|
5599
|
+
tournamentAppliedPolicies?: PolicyDefinitions;
|
|
5600
|
+
tournamentParticipants?: Participant[];
|
|
5601
|
+
policyDefinitions?: PolicyDefinitions;
|
|
5602
|
+
seedAssignments?: SeedAssignment[];
|
|
5603
|
+
provisionalPositioning?: boolean;
|
|
5604
|
+
context?: {
|
|
5605
|
+
[key: string]: any;
|
|
5606
|
+
};
|
|
5607
|
+
contextContent?: ContextContent;
|
|
5608
|
+
contextFilters?: MatchUpFilters;
|
|
5609
|
+
matchUpFilters?: MatchUpFilters;
|
|
5610
|
+
participantMap?: ParticipantMap;
|
|
5611
|
+
scheduleTiming?: ScheduleTiming;
|
|
5612
|
+
drawDefinition?: DrawDefinition;
|
|
5613
|
+
contextProfile?: ContextProfile;
|
|
5614
|
+
tournamentRecord?: Tournament;
|
|
5615
|
+
afterRecoveryTimes?: boolean;
|
|
5616
|
+
usePublishState?: boolean;
|
|
5617
|
+
exitProfiles?: ExitProfiles;
|
|
5618
|
+
matchUpsMap?: MatchUpsMap;
|
|
5619
|
+
structure?: Structure;
|
|
5620
|
+
publishStatus?: any;
|
|
5621
|
+
inContext?: boolean;
|
|
5622
|
+
event?: Event$1;
|
|
5623
|
+
};
|
|
5624
|
+
declare function getAllStructureMatchUps({ scheduleVisibilityFilters, tournamentAppliedPolicies, provisionalPositioning, tournamentParticipants, afterRecoveryTimes, policyDefinitions, tournamentRecord, seedAssignments, usePublishState, contextFilters, contextContent, matchUpFilters, participantMap, scheduleTiming, contextProfile, drawDefinition, publishStatus, context, exitProfiles, matchUpsMap, structure, inContext, event, }: GetAllStructureMatchUps): {
|
|
5625
|
+
collectionPositionMatchUps: {};
|
|
5626
|
+
error: {
|
|
5627
|
+
message: string;
|
|
5628
|
+
code: string;
|
|
5629
|
+
};
|
|
5630
|
+
roundMatchUps: {};
|
|
5631
|
+
matchUps: never[];
|
|
5632
|
+
roundProfile?: undefined;
|
|
5633
|
+
matchUpsMap?: undefined;
|
|
5634
|
+
} | {
|
|
5635
|
+
collectionPositionMatchUps: {};
|
|
5636
|
+
roundMatchUps: {};
|
|
5637
|
+
matchUps: never[];
|
|
5638
|
+
error?: undefined;
|
|
5639
|
+
roundProfile?: undefined;
|
|
5640
|
+
matchUpsMap?: undefined;
|
|
5641
|
+
} | {
|
|
5642
|
+
collectionPositionMatchUps: {};
|
|
5643
|
+
roundMatchUps: {};
|
|
5644
|
+
roundProfile: RoundProfile | undefined;
|
|
5645
|
+
matchUpsMap: MatchUpsMap;
|
|
5646
|
+
matchUps: any;
|
|
5647
|
+
error?: undefined;
|
|
5648
|
+
};
|
|
5649
|
+
|
|
5579
5650
|
declare function allTournamentMatchUps(params?: GetMatchUpsArgs): ResultType & {
|
|
5580
5651
|
matchUps?: HydratedMatchUp[];
|
|
5581
5652
|
};
|
|
@@ -5733,59 +5804,6 @@ declare function getMatchUpContextIds({ matchUps, matchUpId }: {
|
|
|
5733
5804
|
error?: undefined;
|
|
5734
5805
|
};
|
|
5735
5806
|
|
|
5736
|
-
type GetAllStructureMatchUps = {
|
|
5737
|
-
scheduleVisibilityFilters?: ScheduleVisibilityFilters;
|
|
5738
|
-
tournamentAppliedPolicies?: PolicyDefinitions;
|
|
5739
|
-
tournamentParticipants?: Participant[];
|
|
5740
|
-
policyDefinitions?: PolicyDefinitions;
|
|
5741
|
-
seedAssignments?: SeedAssignment[];
|
|
5742
|
-
provisionalPositioning?: boolean;
|
|
5743
|
-
context?: {
|
|
5744
|
-
[key: string]: any;
|
|
5745
|
-
};
|
|
5746
|
-
contextContent?: ContextContent;
|
|
5747
|
-
contextFilters?: MatchUpFilters;
|
|
5748
|
-
matchUpFilters?: MatchUpFilters;
|
|
5749
|
-
participantMap?: ParticipantMap;
|
|
5750
|
-
scheduleTiming?: ScheduleTiming;
|
|
5751
|
-
drawDefinition?: DrawDefinition;
|
|
5752
|
-
contextProfile?: ContextProfile;
|
|
5753
|
-
tournamentRecord?: Tournament;
|
|
5754
|
-
afterRecoveryTimes?: boolean;
|
|
5755
|
-
usePublishState?: boolean;
|
|
5756
|
-
exitProfiles?: ExitProfiles;
|
|
5757
|
-
matchUpsMap?: MatchUpsMap;
|
|
5758
|
-
structure?: Structure;
|
|
5759
|
-
publishStatus?: any;
|
|
5760
|
-
inContext?: boolean;
|
|
5761
|
-
event?: Event$1;
|
|
5762
|
-
};
|
|
5763
|
-
declare function getAllStructureMatchUps({ scheduleVisibilityFilters, tournamentAppliedPolicies, provisionalPositioning, tournamentParticipants, afterRecoveryTimes, policyDefinitions, tournamentRecord, seedAssignments, usePublishState, contextFilters, contextContent, matchUpFilters, participantMap, scheduleTiming, contextProfile, drawDefinition, publishStatus, context, exitProfiles, matchUpsMap, structure, inContext, event, }: GetAllStructureMatchUps): {
|
|
5764
|
-
collectionPositionMatchUps: {};
|
|
5765
|
-
error: {
|
|
5766
|
-
message: string;
|
|
5767
|
-
code: string;
|
|
5768
|
-
};
|
|
5769
|
-
roundMatchUps: {};
|
|
5770
|
-
matchUps: never[];
|
|
5771
|
-
roundProfile?: undefined;
|
|
5772
|
-
matchUpsMap?: undefined;
|
|
5773
|
-
} | {
|
|
5774
|
-
collectionPositionMatchUps: {};
|
|
5775
|
-
roundMatchUps: {};
|
|
5776
|
-
matchUps: never[];
|
|
5777
|
-
error?: undefined;
|
|
5778
|
-
roundProfile?: undefined;
|
|
5779
|
-
matchUpsMap?: undefined;
|
|
5780
|
-
} | {
|
|
5781
|
-
collectionPositionMatchUps: {};
|
|
5782
|
-
roundMatchUps: {};
|
|
5783
|
-
roundProfile: RoundProfile | undefined;
|
|
5784
|
-
matchUpsMap: MatchUpsMap;
|
|
5785
|
-
matchUps: any;
|
|
5786
|
-
error?: undefined;
|
|
5787
|
-
};
|
|
5788
|
-
|
|
5789
5807
|
type GetMatchUpFormatArgs = {
|
|
5790
5808
|
tournamentRecord: Tournament;
|
|
5791
5809
|
drawDefinition?: DrawDefinition;
|
|
@@ -6042,6 +6060,7 @@ declare const index$e_removeDelegatedOutcome: typeof removeDelegatedOutcome;
|
|
|
6042
6060
|
declare const index$e_removeMatchUpSideParticipant: typeof removeMatchUpSideParticipant;
|
|
6043
6061
|
declare const index$e_removeTieMatchUpParticipantId: typeof removeTieMatchUpParticipantId;
|
|
6044
6062
|
declare const index$e_replaceTieMatchUpParticipantId: typeof replaceTieMatchUpParticipantId;
|
|
6063
|
+
declare const index$e_resetAdHocMatchUps: typeof resetAdHocMatchUps;
|
|
6045
6064
|
declare const index$e_resetMatchUpLineUps: typeof resetMatchUpLineUps;
|
|
6046
6065
|
declare const index$e_resetScorecard: typeof resetScorecard;
|
|
6047
6066
|
declare const index$e_resetTieFormat: typeof resetTieFormat;
|
|
@@ -6057,7 +6076,7 @@ declare const index$e_updateTieMatchUpScore: typeof updateTieMatchUpScore;
|
|
|
6057
6076
|
declare const index$e_validMatchUp: typeof validMatchUp;
|
|
6058
6077
|
declare const index$e_validMatchUps: typeof validMatchUps;
|
|
6059
6078
|
declare namespace index$e {
|
|
6060
|
-
export { index$e_allCompetitionMatchUps as allCompetitionMatchUps, index$e_allDrawMatchUps as allDrawMatchUps, index$e_allEventMatchUps as allEventMatchUps, index$e_allTournamentMatchUps as allTournamentMatchUps, index$e_analyzeMatchUp as analyzeMatchUp, index$e_applyLineUps as applyLineUps, index$e_assignMatchUpSideParticipant as assignMatchUpSideParticipant, index$e_assignTieMatchUpParticipantId as assignTieMatchUpParticipantId, index$e_bulkMatchUpStatusUpdate as bulkMatchUpStatusUpdate, index$e_calculateWinCriteria as calculateWinCriteria, index$e_checkInParticipant as checkInParticipant, index$e_checkMatchUpIsComplete as checkMatchUpIsComplete, index$e_checkOutParticipant as checkOutParticipant, index$e_competitionScheduleMatchUps as competitionScheduleMatchUps, index$e_disableTieAutoCalc as disableTieAutoCalc, index$e_drawMatchUps as drawMatchUps, index$e_enableTieAutoCalc as enableTieAutoCalc, index$e_eventMatchUps as eventMatchUps, publicFindMatchUp as findMatchUp, index$e_getAllDrawMatchUps as getAllDrawMatchUps, index$e_getAllStructureMatchUps as getAllStructureMatchUps, index$e_getCheckedInParticipantIds as getCheckedInParticipantIds, index$e_getCompetitionMatchUps as getCompetitionMatchUps, index$e_getEventMatchUpFormatTiming as getEventMatchUpFormatTiming, index$e_getMatchUpCompetitiveProfile as getMatchUpCompetitiveProfile, index$e_getMatchUpContextIds as getMatchUpContextIds, index$e_getMatchUpDailyLimits as getMatchUpDailyLimits, index$e_getMatchUpDailyLimitsUpdate as getMatchUpDailyLimitsUpdate, index$e_getMatchUpDependencies as getMatchUpDependencies, index$e_getMatchUpFormat as getMatchUpFormat, index$e_getMatchUpFormatTiming as getMatchUpFormatTiming, index$e_getMatchUpFormatTimingUpdate as getMatchUpFormatTimingUpdate, index$e_getMatchUpScheduleDetails as getMatchUpScheduleDetails, index$e_getMatchUpType as getMatchUpType, index$e_getMatchUpsStats as getMatchUpsStats, index$e_getModifiedMatchUpFormatTiming as getModifiedMatchUpFormatTiming, index$e_getParticipantResults as getParticipantResults, index$e_getPredictiveAccuracy as getPredictiveAccuracy, index$e_getRoundMatchUps as getRoundMatchUps, index$e_getRounds as getRounds, index$e_isValidMatchUpFormat as isValidMatchUpFormat, index$e_matchUpActions as matchUpActions, mutate$8 as mutate, index$e_participantScheduledMatchUps as participantScheduledMatchUps, query$7 as query, index$e_removeDelegatedOutcome as removeDelegatedOutcome, index$e_removeMatchUpSideParticipant as removeMatchUpSideParticipant, index$e_removeTieMatchUpParticipantId as removeTieMatchUpParticipantId, index$e_replaceTieMatchUpParticipantId as replaceTieMatchUpParticipantId, index$e_resetMatchUpLineUps as resetMatchUpLineUps, index$e_resetScorecard as resetScorecard, index$e_resetTieFormat as resetTieFormat, index$e_setDelegatedOutcome as setDelegatedOutcome, index$e_setMatchUpFormat as setMatchUpFormat, index$e_setMatchUpStatus as setMatchUpStatus, index$e_setOrderOfFinish as setOrderOfFinish, index$e_substituteParticipant as substituteParticipant, index$e_tallyParticipantResults as tallyParticipantResults, index$e_toggleParticipantCheckInState as toggleParticipantCheckInState, index$e_tournamentMatchUps as tournamentMatchUps, index$e_updateTieMatchUpScore as updateTieMatchUpScore, index$e_validMatchUp as validMatchUp, index$e_validMatchUps as validMatchUps };
|
|
6079
|
+
export { index$e_allCompetitionMatchUps as allCompetitionMatchUps, index$e_allDrawMatchUps as allDrawMatchUps, index$e_allEventMatchUps as allEventMatchUps, index$e_allTournamentMatchUps as allTournamentMatchUps, index$e_analyzeMatchUp as analyzeMatchUp, index$e_applyLineUps as applyLineUps, index$e_assignMatchUpSideParticipant as assignMatchUpSideParticipant, index$e_assignTieMatchUpParticipantId as assignTieMatchUpParticipantId, index$e_bulkMatchUpStatusUpdate as bulkMatchUpStatusUpdate, index$e_calculateWinCriteria as calculateWinCriteria, index$e_checkInParticipant as checkInParticipant, index$e_checkMatchUpIsComplete as checkMatchUpIsComplete, index$e_checkOutParticipant as checkOutParticipant, index$e_competitionScheduleMatchUps as competitionScheduleMatchUps, index$e_disableTieAutoCalc as disableTieAutoCalc, index$e_drawMatchUps as drawMatchUps, index$e_enableTieAutoCalc as enableTieAutoCalc, index$e_eventMatchUps as eventMatchUps, publicFindMatchUp as findMatchUp, index$e_getAllDrawMatchUps as getAllDrawMatchUps, index$e_getAllStructureMatchUps as getAllStructureMatchUps, index$e_getCheckedInParticipantIds as getCheckedInParticipantIds, index$e_getCompetitionMatchUps as getCompetitionMatchUps, index$e_getEventMatchUpFormatTiming as getEventMatchUpFormatTiming, index$e_getMatchUpCompetitiveProfile as getMatchUpCompetitiveProfile, index$e_getMatchUpContextIds as getMatchUpContextIds, index$e_getMatchUpDailyLimits as getMatchUpDailyLimits, index$e_getMatchUpDailyLimitsUpdate as getMatchUpDailyLimitsUpdate, index$e_getMatchUpDependencies as getMatchUpDependencies, index$e_getMatchUpFormat as getMatchUpFormat, index$e_getMatchUpFormatTiming as getMatchUpFormatTiming, index$e_getMatchUpFormatTimingUpdate as getMatchUpFormatTimingUpdate, index$e_getMatchUpScheduleDetails as getMatchUpScheduleDetails, index$e_getMatchUpType as getMatchUpType, index$e_getMatchUpsStats as getMatchUpsStats, index$e_getModifiedMatchUpFormatTiming as getModifiedMatchUpFormatTiming, index$e_getParticipantResults as getParticipantResults, index$e_getPredictiveAccuracy as getPredictiveAccuracy, index$e_getRoundMatchUps as getRoundMatchUps, index$e_getRounds as getRounds, index$e_isValidMatchUpFormat as isValidMatchUpFormat, index$e_matchUpActions as matchUpActions, mutate$8 as mutate, index$e_participantScheduledMatchUps as participantScheduledMatchUps, query$7 as query, index$e_removeDelegatedOutcome as removeDelegatedOutcome, index$e_removeMatchUpSideParticipant as removeMatchUpSideParticipant, index$e_removeTieMatchUpParticipantId as removeTieMatchUpParticipantId, index$e_replaceTieMatchUpParticipantId as replaceTieMatchUpParticipantId, index$e_resetAdHocMatchUps as resetAdHocMatchUps, index$e_resetMatchUpLineUps as resetMatchUpLineUps, index$e_resetScorecard as resetScorecard, index$e_resetTieFormat as resetTieFormat, index$e_setDelegatedOutcome as setDelegatedOutcome, index$e_setMatchUpFormat as setMatchUpFormat, index$e_setMatchUpStatus as setMatchUpStatus, index$e_setOrderOfFinish as setOrderOfFinish, index$e_substituteParticipant as substituteParticipant, index$e_tallyParticipantResults as tallyParticipantResults, index$e_toggleParticipantCheckInState as toggleParticipantCheckInState, index$e_tournamentMatchUps as tournamentMatchUps, index$e_updateTieMatchUpScore as updateTieMatchUpScore, index$e_validMatchUp as validMatchUp, index$e_validMatchUps as validMatchUps };
|
|
6061
6080
|
}
|
|
6062
6081
|
|
|
6063
6082
|
declare function generateOutcomeFromScoreString(params: any): any;
|
|
@@ -7078,7 +7097,7 @@ type GetPublishStateArgs = {
|
|
|
7078
7097
|
drawId?: string;
|
|
7079
7098
|
event: Event$1;
|
|
7080
7099
|
};
|
|
7081
|
-
declare function getPublishState(
|
|
7100
|
+
declare function getPublishState(params: GetPublishStateArgs): ResultType & {
|
|
7082
7101
|
publishState?: any;
|
|
7083
7102
|
};
|
|
7084
7103
|
|
|
@@ -7538,6 +7557,7 @@ declare const index$9_getAllowedDrawTypes: typeof getAllowedDrawTypes;
|
|
|
7538
7557
|
declare const index$9_getAllowedMatchUpFormats: typeof getAllowedMatchUpFormats;
|
|
7539
7558
|
declare const index$9_getAppliedPolicies: typeof getAppliedPolicies;
|
|
7540
7559
|
declare const index$9_getAssignedParticipantIds: typeof getAssignedParticipantIds;
|
|
7560
|
+
declare const index$9_getAvailableMatchUpsCount: typeof getAvailableMatchUpsCount;
|
|
7541
7561
|
declare const index$9_getAvailablePlayoffProfiles: typeof getAvailablePlayoffProfiles;
|
|
7542
7562
|
declare const index$9_getCategoryAgeDetails: typeof getCategoryAgeDetails;
|
|
7543
7563
|
declare const index$9_getCheckedInParticipantIds: typeof getCheckedInParticipantIds;
|
|
@@ -7626,7 +7646,7 @@ declare const index$9_validMatchUps: typeof validMatchUps;
|
|
|
7626
7646
|
declare const index$9_validateCollectionDefinition: typeof validateCollectionDefinition;
|
|
7627
7647
|
declare const index$9_validateLineUp: typeof validateLineUp;
|
|
7628
7648
|
declare namespace index$9 {
|
|
7629
|
-
export { 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_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_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_getCourts as getCourts, 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_getEventMatchUpFormatTiming as getEventMatchUpFormatTiming, index$9_getEventProperties as getEventProperties, index$9_getEventStructures as getEventStructures, index$9_getEventTimeItem as getEventTimeItem, index$9_getEvents as getEvents, index$9_getFlightProfile as getFlightProfile, 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_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_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_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 };
|
|
7649
|
+
export { 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_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_getCourts as getCourts, 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_getEventMatchUpFormatTiming as getEventMatchUpFormatTiming, index$9_getEventProperties as getEventProperties, index$9_getEventStructures as getEventStructures, index$9_getEventTimeItem as getEventTimeItem, index$9_getEvents as getEvents, index$9_getFlightProfile as getFlightProfile, 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_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_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_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 };
|
|
7630
7650
|
}
|
|
7631
7651
|
|
|
7632
7652
|
type StatCounters = {
|