tods-competition-factory 2.0.35 → 2.0.36
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 +42 -5
- package/dist/tods-competition-factory.development.cjs.js +353 -78
- package/dist/tods-competition-factory.development.cjs.js.map +1 -1
- package/dist/tods-competition-factory.production.cjs.min.js +1 -1
- package/dist/tods-competition-factory.production.cjs.min.js.map +1 -1
- package/package.json +2 -2
|
@@ -2540,6 +2540,12 @@ type MatchUpsMap = {
|
|
|
2540
2540
|
drawMatchUps: MatchUp[];
|
|
2541
2541
|
};
|
|
2542
2542
|
type Tally = [number, number];
|
|
2543
|
+
type ScheduledMatchUpArgs = {
|
|
2544
|
+
visibilityThreshold?: string;
|
|
2545
|
+
timeStamp?: string;
|
|
2546
|
+
schedule?: any;
|
|
2547
|
+
matchUp: any;
|
|
2548
|
+
};
|
|
2543
2549
|
|
|
2544
2550
|
declare function linkTournaments({ tournamentRecords }: {
|
|
2545
2551
|
tournamentRecords: TournamentRecords;
|
|
@@ -5435,6 +5441,7 @@ declare function getMatchUpFormatTiming({ defaultAverageMinutes, defaultRecovery
|
|
|
5435
5441
|
type TallyParticipantResultsArgs = {
|
|
5436
5442
|
policyDefinitions?: PolicyDefinitions;
|
|
5437
5443
|
generateReport?: boolean;
|
|
5444
|
+
pressureRating?: string;
|
|
5438
5445
|
matchUpFormat?: string;
|
|
5439
5446
|
perPlayer?: number;
|
|
5440
5447
|
subOrderMap?: any;
|
|
@@ -5448,16 +5455,17 @@ type TallyResultType = {
|
|
|
5448
5455
|
report?: string[];
|
|
5449
5456
|
order?: any[];
|
|
5450
5457
|
};
|
|
5451
|
-
declare function tallyParticipantResults({ policyDefinitions, generateReport, matchUpFormat, matchUps, subOrderMap, perPlayer, }: TallyParticipantResultsArgs): TallyResultType & ResultType;
|
|
5458
|
+
declare function tallyParticipantResults({ policyDefinitions, generateReport, pressureRating, matchUpFormat, matchUps, subOrderMap, perPlayer, }: TallyParticipantResultsArgs): TallyResultType & ResultType;
|
|
5452
5459
|
|
|
5453
5460
|
type GetParticipantResultsArgs = {
|
|
5454
5461
|
matchUps: HydratedMatchUp[];
|
|
5455
5462
|
participantIds?: string[];
|
|
5463
|
+
pressureRating?: string;
|
|
5456
5464
|
matchUpFormat?: string;
|
|
5457
5465
|
perPlayer?: number;
|
|
5458
5466
|
tallyPolicy?: any;
|
|
5459
5467
|
};
|
|
5460
|
-
declare function getParticipantResults({ participantIds, matchUpFormat, tallyPolicy, perPlayer, matchUps, }: GetParticipantResultsArgs): {
|
|
5468
|
+
declare function getParticipantResults({ participantIds, pressureRating, matchUpFormat, tallyPolicy, perPlayer, matchUps, }: GetParticipantResultsArgs): {
|
|
5461
5469
|
participantResults: {};
|
|
5462
5470
|
};
|
|
5463
5471
|
|
|
@@ -5784,6 +5792,8 @@ declare function calculateWinCriteria({ collectionDefinitions, collectionGroups,
|
|
|
5784
5792
|
valueGoal?: number;
|
|
5785
5793
|
};
|
|
5786
5794
|
|
|
5795
|
+
declare function getHomeParticipantId(params: ScheduledMatchUpArgs): any;
|
|
5796
|
+
|
|
5787
5797
|
declare function tournamentMatchUps(params: GetMatchUpsArgs): GroupsMatchUpsResult;
|
|
5788
5798
|
|
|
5789
5799
|
declare function getMatchUpContextIds({ matchUps, matchUpId }: {
|
|
@@ -5991,6 +6001,7 @@ declare const query$8_getAllStructureMatchUps: typeof getAllStructureMatchUps;
|
|
|
5991
6001
|
declare const query$8_getCheckedInParticipantIds: typeof getCheckedInParticipantIds;
|
|
5992
6002
|
declare const query$8_getCompetitionMatchUps: typeof getCompetitionMatchUps;
|
|
5993
6003
|
declare const query$8_getEventMatchUpFormatTiming: typeof getEventMatchUpFormatTiming;
|
|
6004
|
+
declare const query$8_getHomeParticipantId: typeof getHomeParticipantId;
|
|
5994
6005
|
declare const query$8_getMatchUpCompetitiveProfile: typeof getMatchUpCompetitiveProfile;
|
|
5995
6006
|
declare const query$8_getMatchUpContextIds: typeof getMatchUpContextIds;
|
|
5996
6007
|
declare const query$8_getMatchUpDailyLimits: typeof getMatchUpDailyLimits;
|
|
@@ -6015,7 +6026,7 @@ declare const query$8_tournamentMatchUps: typeof tournamentMatchUps;
|
|
|
6015
6026
|
declare const query$8_validMatchUp: typeof validMatchUp;
|
|
6016
6027
|
declare const query$8_validMatchUps: typeof validMatchUps;
|
|
6017
6028
|
declare namespace query$8 {
|
|
6018
|
-
export { query$8_allCompetitionMatchUps as allCompetitionMatchUps, query$8_allDrawMatchUps as allDrawMatchUps, query$8_allEventMatchUps as allEventMatchUps, query$8_allTournamentMatchUps as allTournamentMatchUps, query$8_analyzeMatchUp as analyzeMatchUp, query$8_calculateWinCriteria as calculateWinCriteria, query$8_checkMatchUpIsComplete as checkMatchUpIsComplete, query$8_competitionScheduleMatchUps as competitionScheduleMatchUps, query$8_drawMatchUps as drawMatchUps, query$8_eventMatchUps as eventMatchUps, query$8_getAllDrawMatchUps as getAllDrawMatchUps, query$8_getAllStructureMatchUps as getAllStructureMatchUps, query$8_getCheckedInParticipantIds as getCheckedInParticipantIds, query$8_getCompetitionMatchUps as getCompetitionMatchUps, query$8_getEventMatchUpFormatTiming as getEventMatchUpFormatTiming, query$8_getMatchUpCompetitiveProfile as getMatchUpCompetitiveProfile, query$8_getMatchUpContextIds as getMatchUpContextIds, query$8_getMatchUpDailyLimits as getMatchUpDailyLimits, query$8_getMatchUpDailyLimitsUpdate as getMatchUpDailyLimitsUpdate, query$8_getMatchUpDependencies as getMatchUpDependencies, query$8_getMatchUpFormat as getMatchUpFormat, query$8_getMatchUpFormatTiming as getMatchUpFormatTiming, query$8_getMatchUpFormatTimingUpdate as getMatchUpFormatTimingUpdate, query$8_getMatchUpScheduleDetails as getMatchUpScheduleDetails, query$8_getMatchUpType as getMatchUpType, query$8_getMatchUpsStats as getMatchUpsStats, query$8_getModifiedMatchUpFormatTiming as getModifiedMatchUpFormatTiming, query$8_getParticipantResults as getParticipantResults, query$8_getPredictiveAccuracy as getPredictiveAccuracy, query$8_getRoundMatchUps as getRoundMatchUps, query$8_getRounds as getRounds, query$8_isValidMatchUpFormat as isValidMatchUpFormat, query$8_matchUpActions as matchUpActions, query$8_participantScheduledMatchUps as participantScheduledMatchUps, query$8_tallyParticipantResults as tallyParticipantResults, query$8_tournamentMatchUps as tournamentMatchUps, query$8_validMatchUp as validMatchUp, query$8_validMatchUps as validMatchUps };
|
|
6029
|
+
export { query$8_allCompetitionMatchUps as allCompetitionMatchUps, query$8_allDrawMatchUps as allDrawMatchUps, query$8_allEventMatchUps as allEventMatchUps, query$8_allTournamentMatchUps as allTournamentMatchUps, query$8_analyzeMatchUp as analyzeMatchUp, query$8_calculateWinCriteria as calculateWinCriteria, query$8_checkMatchUpIsComplete as checkMatchUpIsComplete, query$8_competitionScheduleMatchUps as competitionScheduleMatchUps, query$8_drawMatchUps as drawMatchUps, query$8_eventMatchUps as eventMatchUps, query$8_getAllDrawMatchUps as getAllDrawMatchUps, query$8_getAllStructureMatchUps as getAllStructureMatchUps, query$8_getCheckedInParticipantIds as getCheckedInParticipantIds, query$8_getCompetitionMatchUps as getCompetitionMatchUps, query$8_getEventMatchUpFormatTiming as getEventMatchUpFormatTiming, query$8_getHomeParticipantId as getHomeParticipantId, query$8_getMatchUpCompetitiveProfile as getMatchUpCompetitiveProfile, query$8_getMatchUpContextIds as getMatchUpContextIds, query$8_getMatchUpDailyLimits as getMatchUpDailyLimits, query$8_getMatchUpDailyLimitsUpdate as getMatchUpDailyLimitsUpdate, query$8_getMatchUpDependencies as getMatchUpDependencies, query$8_getMatchUpFormat as getMatchUpFormat, query$8_getMatchUpFormatTiming as getMatchUpFormatTiming, query$8_getMatchUpFormatTimingUpdate as getMatchUpFormatTimingUpdate, query$8_getMatchUpScheduleDetails as getMatchUpScheduleDetails, query$8_getMatchUpType as getMatchUpType, query$8_getMatchUpsStats as getMatchUpsStats, query$8_getModifiedMatchUpFormatTiming as getModifiedMatchUpFormatTiming, query$8_getParticipantResults as getParticipantResults, query$8_getPredictiveAccuracy as getPredictiveAccuracy, query$8_getRoundMatchUps as getRoundMatchUps, query$8_getRounds as getRounds, query$8_isValidMatchUpFormat as isValidMatchUpFormat, query$8_matchUpActions as matchUpActions, query$8_participantScheduledMatchUps as participantScheduledMatchUps, query$8_tallyParticipantResults as tallyParticipantResults, query$8_tournamentMatchUps as tournamentMatchUps, query$8_validMatchUp as validMatchUp, query$8_validMatchUps as validMatchUps };
|
|
6019
6030
|
}
|
|
6020
6031
|
|
|
6021
6032
|
declare const index$e_allCompetitionMatchUps: typeof allCompetitionMatchUps;
|
|
@@ -6041,6 +6052,7 @@ declare const index$e_getAllStructureMatchUps: typeof getAllStructureMatchUps;
|
|
|
6041
6052
|
declare const index$e_getCheckedInParticipantIds: typeof getCheckedInParticipantIds;
|
|
6042
6053
|
declare const index$e_getCompetitionMatchUps: typeof getCompetitionMatchUps;
|
|
6043
6054
|
declare const index$e_getEventMatchUpFormatTiming: typeof getEventMatchUpFormatTiming;
|
|
6055
|
+
declare const index$e_getHomeParticipantId: typeof getHomeParticipantId;
|
|
6044
6056
|
declare const index$e_getMatchUpCompetitiveProfile: typeof getMatchUpCompetitiveProfile;
|
|
6045
6057
|
declare const index$e_getMatchUpContextIds: typeof getMatchUpContextIds;
|
|
6046
6058
|
declare const index$e_getMatchUpDailyLimits: typeof getMatchUpDailyLimits;
|
|
@@ -6080,7 +6092,7 @@ declare const index$e_updateTieMatchUpScore: typeof updateTieMatchUpScore;
|
|
|
6080
6092
|
declare const index$e_validMatchUp: typeof validMatchUp;
|
|
6081
6093
|
declare const index$e_validMatchUps: typeof validMatchUps;
|
|
6082
6094
|
declare namespace index$e {
|
|
6083
|
-
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$9 as mutate, index$e_participantScheduledMatchUps as participantScheduledMatchUps, query$8 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 };
|
|
6095
|
+
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_getHomeParticipantId as getHomeParticipantId, 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$9 as mutate, index$e_participantScheduledMatchUps as participantScheduledMatchUps, query$8 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 };
|
|
6084
6096
|
}
|
|
6085
6097
|
|
|
6086
6098
|
declare function generateOutcomeFromScoreString(params: any): any;
|
|
@@ -7152,6 +7164,8 @@ type GetEventDataArgs = {
|
|
|
7152
7164
|
sortConfig?: StructureSortConfig;
|
|
7153
7165
|
tournamentRecord: Tournament;
|
|
7154
7166
|
usePublishState?: boolean;
|
|
7167
|
+
refreshResults?: boolean;
|
|
7168
|
+
pressureRating?: boolean;
|
|
7155
7169
|
eventId?: string;
|
|
7156
7170
|
status?: string;
|
|
7157
7171
|
event?: Event$1;
|
|
@@ -7603,6 +7617,7 @@ declare const index$9_getEventStructures: typeof getEventStructures;
|
|
|
7603
7617
|
declare const index$9_getEventTimeItem: typeof getEventTimeItem;
|
|
7604
7618
|
declare const index$9_getEvents: typeof getEvents;
|
|
7605
7619
|
declare const index$9_getFlightProfile: typeof getFlightProfile;
|
|
7620
|
+
declare const index$9_getHomeParticipantId: typeof getHomeParticipantId;
|
|
7606
7621
|
declare const index$9_getLinkedTournamentIds: typeof getLinkedTournamentIds;
|
|
7607
7622
|
declare const index$9_getMatchUpCompetitiveProfile: typeof getMatchUpCompetitiveProfile;
|
|
7608
7623
|
declare const index$9_getMatchUpContextIds: typeof getMatchUpContextIds;
|
|
@@ -7674,7 +7689,7 @@ declare const index$9_validMatchUps: typeof validMatchUps;
|
|
|
7674
7689
|
declare const index$9_validateCollectionDefinition: typeof validateCollectionDefinition;
|
|
7675
7690
|
declare const index$9_validateLineUp: typeof validateLineUp;
|
|
7676
7691
|
declare namespace index$9 {
|
|
7677
|
-
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_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 };
|
|
7692
|
+
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 };
|
|
7678
7693
|
}
|
|
7679
7694
|
|
|
7680
7695
|
type StatCounters = {
|
|
@@ -10605,6 +10620,10 @@ declare const fixtures: {
|
|
|
10605
10620
|
};
|
|
10606
10621
|
};
|
|
10607
10622
|
};
|
|
10623
|
+
matchUpFormats: never[];
|
|
10624
|
+
matchUpStatusCodes: {
|
|
10625
|
+
[x: number]: never[];
|
|
10626
|
+
};
|
|
10608
10627
|
};
|
|
10609
10628
|
};
|
|
10610
10629
|
POLICY_SCORING_USTA: {
|
|
@@ -10631,6 +10650,24 @@ declare const fixtures: {
|
|
|
10631
10650
|
categoryNames?: undefined;
|
|
10632
10651
|
categoryTypes?: undefined;
|
|
10633
10652
|
})[];
|
|
10653
|
+
matchUpStatusCodes: {
|
|
10654
|
+
[x: number]: ({
|
|
10655
|
+
description: string;
|
|
10656
|
+
label: string;
|
|
10657
|
+
matchUpStatusCodeDisplay: string;
|
|
10658
|
+
matchUpStatusCode: string;
|
|
10659
|
+
} | {
|
|
10660
|
+
label: string;
|
|
10661
|
+
matchUpStatusCodeDisplay: string;
|
|
10662
|
+
matchUpStatusCode: string;
|
|
10663
|
+
description?: undefined;
|
|
10664
|
+
})[];
|
|
10665
|
+
WITHDRAWN: {
|
|
10666
|
+
matchUpStatusCodeDisplay: string;
|
|
10667
|
+
matchUpStatusCode: string;
|
|
10668
|
+
label: string;
|
|
10669
|
+
}[];
|
|
10670
|
+
};
|
|
10634
10671
|
};
|
|
10635
10672
|
};
|
|
10636
10673
|
POLICY_SEEDING_ITF: {
|