tods-competition-factory 2.1.13 → 2.1.15

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.
@@ -2754,13 +2754,13 @@ type StructurePositionAssignmentType = {
2754
2754
  type AutomatedPlayoffPositioningArgs = {
2755
2755
  provisionalPositioning?: boolean;
2756
2756
  seedingProfile?: SeedingProfile;
2757
- tournamentRecord: Tournament;
2757
+ tournamentRecord?: Tournament;
2758
2758
  drawDefinition: DrawDefinition;
2759
2759
  applyPositioning?: boolean;
2760
2760
  structureId: string;
2761
2761
  placeByes?: boolean;
2762
2762
  seedsOnly?: boolean;
2763
- event: Event$1;
2763
+ event?: Event$1;
2764
2764
  };
2765
2765
  declare function automatedPlayoffPositioning(params: AutomatedPlayoffPositioningArgs): {
2766
2766
  structurePositionAssignments?: StructurePositionAssignmentType[];
@@ -6036,24 +6036,24 @@ declare function getMatchUpType(params: {
6036
6036
  };
6037
6037
 
6038
6038
  declare function analyzeMatchUp(params?: any): ResultType & {
6039
- matchUpScoringFormat?: any;
6040
- validMatchUpOutcome?: boolean;
6041
- calculatedWinningSide?: number;
6042
- validMatchUpWinningSide?: boolean;
6043
6039
  completedSetsHaveValidOutcomes?: boolean;
6040
+ validMatchUpWinningSide?: boolean;
6041
+ calculatedWinningSide?: number;
6044
6042
  isLastSetWithValues?: boolean;
6045
- completedSetsCount?: number;
6043
+ validMatchUpOutcome?: boolean;
6044
+ sideTiebreakScores?: number[];
6046
6045
  isCompletedMatchUp?: boolean;
6046
+ completedSetsCount?: number;
6047
6047
  isValidSideNumber?: boolean;
6048
+ matchUpScoringFormat?: any;
6048
6049
  hasExistingValue?: boolean;
6049
- existingValue?: number;
6050
+ sidePointScores?: number[];
6051
+ sideGameScores?: number[];
6050
6052
  expectTimedSet?: boolean;
6053
+ isCompletedSet?: boolean;
6051
6054
  isExistingSet?: boolean;
6055
+ existingValue?: number;
6052
6056
  isActiveSet?: boolean;
6053
- isCompletedSet?: boolean;
6054
- sideGameScores?: number[];
6055
- sidePointScores?: number[];
6056
- sideTiebreakScores?: number[];
6057
6057
  winningSide?: number;
6058
6058
  };
6059
6059
 
@@ -6238,8 +6238,8 @@ declare function generateOutcome(params: any): {
6238
6238
  scoreStringSide1: string;
6239
6239
  side2ScoreString: string;
6240
6240
  };
6241
- winningSide: any;
6242
6241
  matchUpStatus: string;
6242
+ winningSide: any;
6243
6243
  };
6244
6244
  error?: undefined;
6245
6245
  matchUpStatusProfile?: undefined;
@@ -6256,6 +6256,8 @@ declare function generateOutcome(params: any): {
6256
6256
  matchUpStatusProfile?: undefined;
6257
6257
  } | {
6258
6258
  outcome: {
6259
+ winningSide: any;
6260
+ matchUpStatus: string;
6259
6261
  score: {
6260
6262
  sets: any;
6261
6263
  scoreStringSide1: string | {
@@ -6267,8 +6269,6 @@ declare function generateOutcome(params: any): {
6267
6269
  info?: string | ErrorType | undefined;
6268
6270
  };
6269
6271
  } | undefined;
6270
- winningSide: any;
6271
- matchUpStatus: string;
6272
6272
  };
6273
6273
  error?: undefined;
6274
6274
  matchUpStatusProfile?: undefined;
@@ -6859,9 +6859,9 @@ declare function getParticipants(params: GetParticipantsArgs): {
6859
6859
  participants?: HydratedParticipant[];
6860
6860
  missingParticipantIds?: string[];
6861
6861
  participantMap?: ParticipantMap;
6862
+ matchUps?: HydratedMatchUp[];
6862
6863
  derivedEventInfo?: any;
6863
6864
  derivedDrawInfo?: any;
6864
- matchUps?: MatchUp[];
6865
6865
  mappedMatchUps?: any;
6866
6866
  error?: ErrorType;
6867
6867
  success?: boolean;
@@ -7267,7 +7267,7 @@ type GetVenueDataArgs = {
7267
7267
  tournamentRecord: Tournament;
7268
7268
  venueId: string;
7269
7269
  };
7270
- declare function getVenueData({ tournamentRecord, venueId }: GetVenueDataArgs): {
7270
+ declare function getVenueData(params: GetVenueDataArgs): {
7271
7271
  success?: boolean;
7272
7272
  error?: ErrorType;
7273
7273
  venueData?: any;
@@ -7411,9 +7411,16 @@ declare function getTournamentPersons({ tournamentRecord, participantFilters }:
7411
7411
  error?: undefined;
7412
7412
  };
7413
7413
 
7414
- declare function getAggregateTeamResults(params: any): (ResultType & {
7414
+ type GetAggregateTeamResultsArgs = {
7415
+ finishingPositionRangeBounsPoints?: {
7416
+ [key: string]: number;
7417
+ };
7418
+ tournamentRecord: Tournament;
7419
+ };
7420
+ declare function getAggregateTeamResults(params: GetAggregateTeamResultsArgs): (ResultType & {
7415
7421
  valid?: boolean | undefined;
7416
7422
  }) | {
7423
+ individualResults: {};
7417
7424
  teamResults: {};
7418
7425
  success: boolean;
7419
7426
  };
@@ -7558,13 +7565,36 @@ declare namespace query$3 {
7558
7565
  export { query$3_compareTieFormats as compareTieFormats, query$3_getTieFormat as getTieFormat, query$3_tieFormatGenderValidityCheck as tieFormatGenderValidityCheck, query$3_validateCollectionDefinition as validateCollectionDefinition };
7559
7566
  }
7560
7567
 
7568
+ type GetMatchUpsToScheduleArgs = {
7569
+ matchUpPotentialParticipantIds?: {
7570
+ [key: string]: string[];
7571
+ };
7572
+ matchUpScheduleTimes: {
7573
+ [key: string]: string;
7574
+ };
7575
+ matchUpNotBeforeTimes?: {
7576
+ [key: string]: any;
7577
+ };
7578
+ scheduleCompletedMatchUps?: boolean;
7579
+ dateScheduledMatchUpIds: string[];
7580
+ orderedMatchUpIds?: string[];
7581
+ clearDate?: boolean;
7582
+ matchUps: any[];
7583
+ };
7584
+ declare function getMatchUpsToSchedule(params: GetMatchUpsToScheduleArgs): {
7585
+ matchUpsToSchedule?: any[];
7586
+ error?: ErrorType;
7587
+ matchUpMap?: any;
7588
+ };
7589
+
7561
7590
  type GetScheduledRoundsDetailsArgs = {
7562
- tournamentRecords: {
7591
+ tournamentRecords?: {
7563
7592
  [key: string]: Tournament;
7564
7593
  };
7565
7594
  scheduleCompletedMatchUps?: boolean;
7566
7595
  containedStructureIds?: string[];
7567
7596
  matchUps?: HydratedMatchUp[];
7597
+ tournamentRecord?: Tournament;
7568
7598
  periodLength?: number;
7569
7599
  rounds: any[];
7570
7600
  };
@@ -7580,7 +7610,7 @@ type RoundsDetailsResult = {
7580
7610
  minutesMap?: any;
7581
7611
  info?: string;
7582
7612
  };
7583
- declare function getScheduledRoundsDetails({ scheduleCompletedMatchUps, containedStructureIds, tournamentRecords, periodLength, matchUps, rounds, }: GetScheduledRoundsDetailsArgs): RoundsDetailsResult;
7613
+ declare function getScheduledRoundsDetails(params: GetScheduledRoundsDetailsArgs): RoundsDetailsResult;
7584
7614
 
7585
7615
  type GetSchedulingProfileIssuesArgs = {
7586
7616
  tournamentRecords: TournamentRecords;
@@ -7686,6 +7716,7 @@ declare function publicFindVenue({ convertExtensions, ...params }: {
7686
7716
 
7687
7717
  declare const query$2_courtGridRows: typeof courtGridRows;
7688
7718
  declare const query$2_findVenue: typeof findVenue;
7719
+ declare const query$2_getMatchUpsToSchedule: typeof getMatchUpsToSchedule;
7689
7720
  declare const query$2_getPersonRequests: typeof getPersonRequests;
7690
7721
  declare const query$2_getProfileRounds: typeof getProfileRounds;
7691
7722
  declare const query$2_getScheduledRoundsDetails: typeof getScheduledRoundsDetails;
@@ -7693,7 +7724,7 @@ declare const query$2_getSchedulingProfile: typeof getSchedulingProfile;
7693
7724
  declare const query$2_getSchedulingProfileIssues: typeof getSchedulingProfileIssues;
7694
7725
  declare const query$2_publicFindCourt: typeof publicFindCourt;
7695
7726
  declare namespace query$2 {
7696
- export { query$2_courtGridRows as courtGridRows, query$2_findVenue as findVenue, query$2_getPersonRequests as getPersonRequests, query$2_getProfileRounds as getProfileRounds, query$2_getScheduledRoundsDetails as getScheduledRoundsDetails, query$2_getSchedulingProfile as getSchedulingProfile, query$2_getSchedulingProfileIssues as getSchedulingProfileIssues, query$2_publicFindCourt as publicFindCourt };
7727
+ export { query$2_courtGridRows as courtGridRows, query$2_findVenue as findVenue, query$2_getMatchUpsToSchedule as getMatchUpsToSchedule, query$2_getPersonRequests as getPersonRequests, query$2_getProfileRounds as getProfileRounds, query$2_getScheduledRoundsDetails as getScheduledRoundsDetails, query$2_getSchedulingProfile as getSchedulingProfile, query$2_getSchedulingProfileIssues as getSchedulingProfileIssues, query$2_publicFindCourt as publicFindCourt };
7697
7728
  }
7698
7729
 
7699
7730
  type GetVenuesAndCourtsArgs = {
@@ -7816,6 +7847,7 @@ declare const index$9_getMatchUpScheduleDetails: typeof getMatchUpScheduleDetail
7816
7847
  declare const index$9_getMatchUpType: typeof getMatchUpType;
7817
7848
  declare const index$9_getMatchUpsMap: typeof getMatchUpsMap;
7818
7849
  declare const index$9_getMatchUpsStats: typeof getMatchUpsStats;
7850
+ declare const index$9_getMatchUpsToSchedule: typeof getMatchUpsToSchedule;
7819
7851
  declare const index$9_getMaxEntryPosition: typeof getMaxEntryPosition;
7820
7852
  declare const index$9_getModifiedMatchUpFormatTiming: typeof getModifiedMatchUpFormatTiming;
7821
7853
  declare const index$9_getPairedParticipant: typeof getPairedParticipant;
@@ -7877,7 +7909,7 @@ declare const index$9_validMatchUps: typeof validMatchUps;
7877
7909
  declare const index$9_validateCollectionDefinition: typeof validateCollectionDefinition;
7878
7910
  declare const index$9_validateLineUp: typeof validateLineUp;
7879
7911
  declare namespace index$9 {
7880
- 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_courtGridRows as courtGridRows, index$9_credits as credits, index$9_drawMatchUps as drawMatchUps, index$9_eventMatchUps as eventMatchUps, index$9_filterMatchUps as filterMatchUps, index$9_filterParticipants as filterParticipants, publicFindDrawDefinition as findDrawDefinition, index$9_findExtension as findExtension, index$9_findVenue as findVenue, index$9_getAggregateTeamResults as getAggregateTeamResults, 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_getTournamentPoints as getTournamentPoints, index$9_getTournamentPublishStatus as getTournamentPublishStatus, 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_publicFindCourt as publicFindCourt, 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 };
7912
+ 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_courtGridRows as courtGridRows, index$9_credits as credits, index$9_drawMatchUps as drawMatchUps, index$9_eventMatchUps as eventMatchUps, index$9_filterMatchUps as filterMatchUps, index$9_filterParticipants as filterParticipants, publicFindDrawDefinition as findDrawDefinition, index$9_findExtension as findExtension, index$9_findVenue as findVenue, index$9_getAggregateTeamResults as getAggregateTeamResults, 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_getMatchUpsToSchedule as getMatchUpsToSchedule, 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_getTournamentPoints as getTournamentPoints, index$9_getTournamentPublishStatus as getTournamentPublishStatus, 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_publicFindCourt as publicFindCourt, 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 };
7881
7913
  }
7882
7914
 
7883
7915
  type StatCounters = {
@@ -8583,6 +8615,7 @@ declare const index$7_findMatchUpFormatTiming: typeof findMatchUpFormatTiming;
8583
8615
  declare const index$7_findVenue: typeof findVenue;
8584
8616
  declare const index$7_generateBookings: typeof generateBookings;
8585
8617
  declare const index$7_generateVirtualCourts: typeof generateVirtualCourts;
8618
+ declare const index$7_getMatchUpsToSchedule: typeof getMatchUpsToSchedule;
8586
8619
  declare const index$7_getPersonRequests: typeof getPersonRequests;
8587
8620
  declare const index$7_getProfileRounds: typeof getProfileRounds;
8588
8621
  declare const index$7_getScheduledRoundsDetails: typeof getScheduledRoundsDetails;
@@ -8604,7 +8637,7 @@ declare const index$7_setSchedulingProfile: typeof setSchedulingProfile;
8604
8637
  declare const index$7_toggleParticipantCheckInState: typeof toggleParticipantCheckInState;
8605
8638
  declare const index$7_validateSchedulingProfile: typeof validateSchedulingProfile;
8606
8639
  declare namespace index$7 {
8607
- export { index$7_addMatchUpCourtOrder as addMatchUpCourtOrder, index$7_addMatchUpEndTime as addMatchUpEndTime, index$7_addMatchUpOfficial as addMatchUpOfficial, index$7_addMatchUpResumeTime as addMatchUpResumeTime, index$7_addMatchUpScheduleItems as addMatchUpScheduleItems, index$7_addMatchUpScheduledDate as addMatchUpScheduledDate, index$7_addMatchUpScheduledTime as addMatchUpScheduledTime, index$7_addMatchUpStartTime as addMatchUpStartTime, index$7_addMatchUpStopTime as addMatchUpStopTime, index$7_addSchedulingProfileRound as addSchedulingProfileRound, index$7_allocateTeamMatchUpCourts as allocateTeamMatchUpCourts, index$7_assignMatchUpCourt as assignMatchUpCourt, index$7_assignMatchUpVenue as assignMatchUpVenue, index$7_bulkRescheduleMatchUps as bulkRescheduleMatchUps, index$7_bulkScheduleMatchUps as bulkScheduleMatchUps, index$7_bulkScheduleTournamentMatchUps as bulkScheduleTournamentMatchUps, index$7_bulkUpdateCourtAssignments as bulkUpdateCourtAssignments, index$7_calculateScheduleTimes as calculateScheduleTimes, index$7_clearMatchUpSchedule as clearMatchUpSchedule, index$7_clearScheduledMatchUps as clearScheduledMatchUps, index$7_courtGridRows as courtGridRows, index$7_findMatchUpFormatTiming as findMatchUpFormatTiming, index$7_findVenue as findVenue, index$7_generateBookings as generateBookings, index$7_generateVirtualCourts as generateVirtualCourts, index$7_getPersonRequests as getPersonRequests, index$7_getProfileRounds as getProfileRounds, index$7_getScheduledRoundsDetails as getScheduledRoundsDetails, index$7_getSchedulingProfile as getSchedulingProfile, index$7_getSchedulingProfileIssues as getSchedulingProfileIssues, index$7_matchUpScheduleChange as matchUpScheduleChange, index$7_modifyMatchUpFormatTiming as modifyMatchUpFormatTiming, mutate$4 as mutate, index$7_proAutoSchedule as proAutoSchedule, index$7_proConflicts as proConflicts, index$7_publicFindCourt as publicFindCourt, query$2 as query, index$7_removeEventMatchUpFormatTiming as removeEventMatchUpFormatTiming, index$7_removeMatchUpCourtAssignment as removeMatchUpCourtAssignment, index$7_reorderUpcomingMatchUps as reorderUpcomingMatchUps, index$7_scheduleMatchUps as scheduleMatchUps, index$7_scheduleProfileRounds as scheduleProfileRounds, index$7_setMatchUpDailyLimits as setMatchUpDailyLimits, index$7_setMatchUpHomeParticipantId as setMatchUpHomeParticipantId, index$7_setSchedulingProfile as setSchedulingProfile, index$7_toggleParticipantCheckInState as toggleParticipantCheckInState, index$7_validateSchedulingProfile as validateSchedulingProfile };
8640
+ export { index$7_addMatchUpCourtOrder as addMatchUpCourtOrder, index$7_addMatchUpEndTime as addMatchUpEndTime, index$7_addMatchUpOfficial as addMatchUpOfficial, index$7_addMatchUpResumeTime as addMatchUpResumeTime, index$7_addMatchUpScheduleItems as addMatchUpScheduleItems, index$7_addMatchUpScheduledDate as addMatchUpScheduledDate, index$7_addMatchUpScheduledTime as addMatchUpScheduledTime, index$7_addMatchUpStartTime as addMatchUpStartTime, index$7_addMatchUpStopTime as addMatchUpStopTime, index$7_addSchedulingProfileRound as addSchedulingProfileRound, index$7_allocateTeamMatchUpCourts as allocateTeamMatchUpCourts, index$7_assignMatchUpCourt as assignMatchUpCourt, index$7_assignMatchUpVenue as assignMatchUpVenue, index$7_bulkRescheduleMatchUps as bulkRescheduleMatchUps, index$7_bulkScheduleMatchUps as bulkScheduleMatchUps, index$7_bulkScheduleTournamentMatchUps as bulkScheduleTournamentMatchUps, index$7_bulkUpdateCourtAssignments as bulkUpdateCourtAssignments, index$7_calculateScheduleTimes as calculateScheduleTimes, index$7_clearMatchUpSchedule as clearMatchUpSchedule, index$7_clearScheduledMatchUps as clearScheduledMatchUps, index$7_courtGridRows as courtGridRows, index$7_findMatchUpFormatTiming as findMatchUpFormatTiming, index$7_findVenue as findVenue, index$7_generateBookings as generateBookings, index$7_generateVirtualCourts as generateVirtualCourts, index$7_getMatchUpsToSchedule as getMatchUpsToSchedule, index$7_getPersonRequests as getPersonRequests, index$7_getProfileRounds as getProfileRounds, index$7_getScheduledRoundsDetails as getScheduledRoundsDetails, index$7_getSchedulingProfile as getSchedulingProfile, index$7_getSchedulingProfileIssues as getSchedulingProfileIssues, index$7_matchUpScheduleChange as matchUpScheduleChange, index$7_modifyMatchUpFormatTiming as modifyMatchUpFormatTiming, mutate$4 as mutate, index$7_proAutoSchedule as proAutoSchedule, index$7_proConflicts as proConflicts, index$7_publicFindCourt as publicFindCourt, query$2 as query, index$7_removeEventMatchUpFormatTiming as removeEventMatchUpFormatTiming, index$7_removeMatchUpCourtAssignment as removeMatchUpCourtAssignment, index$7_reorderUpcomingMatchUps as reorderUpcomingMatchUps, index$7_scheduleMatchUps as scheduleMatchUps, index$7_scheduleProfileRounds as scheduleProfileRounds, index$7_setMatchUpDailyLimits as setMatchUpDailyLimits, index$7_setMatchUpHomeParticipantId as setMatchUpHomeParticipantId, index$7_setSchedulingProfile as setSchedulingProfile, index$7_toggleParticipantCheckInState as toggleParticipantCheckInState, index$7_validateSchedulingProfile as validateSchedulingProfile };
8608
8641
  }
8609
8642
 
8610
8643
  type TieMatchUpScore = {
@@ -8874,9 +8907,10 @@ type CheckSetIsCompleteArgs = {
8874
8907
  isDecidingSet?: boolean;
8875
8908
  isTiebreakSet?: boolean;
8876
8909
  matchUpFormat?: string;
8910
+ isTimedSet?: boolean;
8877
8911
  set: any;
8878
8912
  };
8879
- declare function checkSetIsComplete({ ignoreTiebreak, matchUpScoringFormat, matchUpFormat, isTiebreakSet, isDecidingSet, set, }: CheckSetIsCompleteArgs): boolean | {
8913
+ declare function checkSetIsComplete({ ignoreTiebreak, matchUpScoringFormat, matchUpFormat, isTiebreakSet, isDecidingSet, isTimedSet, set, }: CheckSetIsCompleteArgs): boolean | {
8880
8914
  error: {
8881
8915
  message: string;
8882
8916
  code: string;
@@ -9151,6 +9185,8 @@ declare function createTournamentRecord(params: any): any;
9151
9185
  type CopyTournamentRecordArgs = {
9152
9186
  tournamentRecord: Tournament;
9153
9187
  copyParticipants?: boolean;
9188
+ extensionList?: string[];
9189
+ itemTypeList?: string[];
9154
9190
  tournamentName: string;
9155
9191
  startDate: string;
9156
9192
  endDate?: string;
@@ -9160,248 +9196,12 @@ declare function copyTournamentRecord(params: CopyTournamentRecordArgs): (Result
9160
9196
  }) | {
9161
9197
  tournamentRecord: {
9162
9198
  participants: any[];
9163
- parentOrganisation: {
9164
- onlineResources?: OnlineResource[] | undefined;
9165
- organisationAbbreviation?: string | undefined;
9166
- parentOrganisationId?: string | undefined;
9167
- extensions?: Extension[] | undefined;
9168
- organisationName?: string | undefined;
9169
- organisationId?: string | undefined;
9170
- notes?: string | undefined;
9171
- };
9199
+ parentOrganisation: any;
9200
+ venues: any;
9201
+ extensions: any;
9202
+ timeItems: any;
9172
9203
  events: any[];
9173
- weekdays: {
9174
- [x: number]: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN";
9175
- length?: number | undefined;
9176
- toString?: (() => string) | undefined;
9177
- toLocaleString?: (() => string) | undefined;
9178
- pop?: (() => "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN" | undefined) | undefined;
9179
- push?: ((...items: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => number) | undefined;
9180
- concat?: {
9181
- (...items: ConcatArray<"MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN">[]): ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[];
9182
- (...items: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN" | ConcatArray<"MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN">)[]): ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[];
9183
- } | undefined;
9184
- join?: ((separator?: string | undefined) => string) | undefined;
9185
- reverse?: (() => ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) | undefined;
9186
- shift?: (() => "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN" | undefined) | undefined;
9187
- slice?: ((start?: number | undefined, end?: number | undefined) => ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) | undefined;
9188
- sort?: ((compareFn?: ((a: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", b: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN") => number) | undefined) => ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) | undefined;
9189
- splice?: {
9190
- (start: number, deleteCount?: number | undefined): ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[];
9191
- (start: number, deleteCount: number, ...items: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]): ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[];
9192
- } | undefined;
9193
- unshift?: ((...items: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => number) | undefined;
9194
- indexOf?: ((searchElement: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", fromIndex?: number | undefined) => number) | undefined;
9195
- lastIndexOf?: ((searchElement: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", fromIndex?: number | undefined) => number) | undefined;
9196
- every?: {
9197
- <S extends "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN">(predicate: (value: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", index: number, array: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => value is S, thisArg?: any): this is S[];
9198
- (predicate: (value: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", index: number, array: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => unknown, thisArg?: any): boolean;
9199
- } | undefined;
9200
- some?: ((predicate: (value: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", index: number, array: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => unknown, thisArg?: any) => boolean) | undefined;
9201
- forEach?: ((callbackfn: (value: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", index: number, array: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => void, thisArg?: any) => void) | undefined;
9202
- map?: (<U>(callbackfn: (value: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", index: number, array: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => U, thisArg?: any) => U[]) | undefined;
9203
- filter?: {
9204
- <S_1 extends "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN">(predicate: (value: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", index: number, array: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => value is S_1, thisArg?: any): S_1[];
9205
- (predicate: (value: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", index: number, array: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => unknown, thisArg?: any): ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[];
9206
- } | undefined;
9207
- reduce?: {
9208
- (callbackfn: (previousValue: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", currentValue: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", currentIndex: number, array: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN"): "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN";
9209
- (callbackfn: (previousValue: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", currentValue: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", currentIndex: number, array: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", initialValue: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN"): "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN";
9210
- <U_1>(callbackfn: (previousValue: U_1, currentValue: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", currentIndex: number, array: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => U_1, initialValue: U_1): U_1;
9211
- } | undefined;
9212
- reduceRight?: {
9213
- (callbackfn: (previousValue: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", currentValue: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", currentIndex: number, array: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN"): "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN";
9214
- (callbackfn: (previousValue: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", currentValue: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", currentIndex: number, array: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", initialValue: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN"): "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN";
9215
- <U_2>(callbackfn: (previousValue: U_2, currentValue: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", currentIndex: number, array: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => U_2, initialValue: U_2): U_2;
9216
- } | undefined;
9217
- find?: {
9218
- <S_2 extends "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN">(predicate: (value: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", index: number, obj: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => value is S_2, thisArg?: any): S_2 | undefined;
9219
- (predicate: (value: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", index: number, obj: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => unknown, thisArg?: any): "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN" | undefined;
9220
- } | undefined;
9221
- findIndex?: ((predicate: (value: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", index: number, obj: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => unknown, thisArg?: any) => number) | undefined;
9222
- fill?: ((value: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", start?: number | undefined, end?: number | undefined) => ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) | undefined;
9223
- copyWithin?: ((target: number, start: number, end?: number | undefined) => ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) | undefined;
9224
- entries?: (() => IterableIterator<[number, "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN"]>) | undefined;
9225
- keys?: (() => IterableIterator<number>) | undefined;
9226
- values?: (() => IterableIterator<"MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN">) | undefined;
9227
- includes?: ((searchElement: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", fromIndex?: number | undefined) => boolean) | undefined;
9228
- flatMap?: (<U_3, This = undefined>(callback: (this: This, value: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", index: number, array: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => U_3 | readonly U_3[], thisArg?: This | undefined) => U_3[]) | undefined;
9229
- flat?: (<A, D extends number = 1>(this: A, depth?: D | undefined) => FlatArray<A, D>[]) | undefined;
9230
- at?: ((index: number) => "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN" | undefined) | undefined;
9231
- findLast?: {
9232
- <S_3 extends "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN">(predicate: (value: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", index: number, array: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => value is S_3, thisArg?: any): S_3 | undefined;
9233
- (predicate: (value: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", index: number, array: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => unknown, thisArg?: any): "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN" | undefined;
9234
- } | undefined;
9235
- findLastIndex?: ((predicate: (value: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", index: number, array: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => unknown, thisArg?: any) => number) | undefined;
9236
- toReversed?: (() => ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) | undefined;
9237
- toSorted?: ((compareFn?: ((a: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", b: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN") => number) | undefined) => ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) | undefined;
9238
- toSpliced?: {
9239
- (start: number, deleteCount: number, ...items: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]): ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[];
9240
- (start: number, deleteCount?: number | undefined): ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[];
9241
- } | undefined;
9242
- with?: ((index: number, value: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN") => ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) | undefined;
9243
- [Symbol.iterator]?: (() => IterableIterator<"MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN">) | undefined;
9244
- [Symbol.unscopables]?: {
9245
- [x: number]: boolean | undefined;
9246
- length?: boolean | undefined;
9247
- toString?: boolean | undefined;
9248
- toLocaleString?: boolean | undefined;
9249
- pop?: boolean | undefined;
9250
- push?: boolean | undefined;
9251
- concat?: boolean | undefined;
9252
- join?: boolean | undefined;
9253
- reverse?: boolean | undefined;
9254
- shift?: boolean | undefined;
9255
- slice?: boolean | undefined;
9256
- sort?: boolean | undefined;
9257
- splice?: boolean | undefined;
9258
- unshift?: boolean | undefined;
9259
- indexOf?: boolean | undefined;
9260
- lastIndexOf?: boolean | undefined;
9261
- every?: boolean | undefined;
9262
- some?: boolean | undefined;
9263
- forEach?: boolean | undefined;
9264
- map?: boolean | undefined;
9265
- filter?: boolean | undefined;
9266
- reduce?: boolean | undefined;
9267
- reduceRight?: boolean | undefined;
9268
- find?: boolean | undefined;
9269
- findIndex?: boolean | undefined;
9270
- fill?: boolean | undefined;
9271
- copyWithin?: boolean | undefined;
9272
- entries?: boolean | undefined;
9273
- keys?: boolean | undefined;
9274
- values?: boolean | undefined;
9275
- includes?: boolean | undefined;
9276
- flatMap?: boolean | undefined;
9277
- flat?: boolean | undefined;
9278
- at?: boolean | undefined;
9279
- findLast?: boolean | undefined;
9280
- findLastIndex?: boolean | undefined;
9281
- toReversed?: boolean | undefined;
9282
- toSorted?: boolean | undefined;
9283
- toSpliced?: boolean | undefined;
9284
- with?: boolean | undefined;
9285
- [Symbol.iterator]?: boolean | undefined;
9286
- readonly [Symbol.unscopables]?: boolean | undefined;
9287
- } | undefined;
9288
- };
9289
- venues: {
9290
- [x: number]: Venue;
9291
- length?: number | undefined;
9292
- toString?: (() => string) | undefined;
9293
- toLocaleString?: (() => string) | undefined;
9294
- pop?: (() => Venue | undefined) | undefined;
9295
- push?: ((...items: Venue[]) => number) | undefined;
9296
- concat?: {
9297
- (...items: ConcatArray<Venue>[]): Venue[];
9298
- (...items: (Venue | ConcatArray<Venue>)[]): Venue[];
9299
- } | undefined;
9300
- join?: ((separator?: string | undefined) => string) | undefined;
9301
- reverse?: (() => Venue[]) | undefined;
9302
- shift?: (() => Venue | undefined) | undefined;
9303
- slice?: ((start?: number | undefined, end?: number | undefined) => Venue[]) | undefined;
9304
- sort?: ((compareFn?: ((a: Venue, b: Venue) => number) | undefined) => Venue[]) | undefined;
9305
- splice?: {
9306
- (start: number, deleteCount?: number | undefined): Venue[];
9307
- (start: number, deleteCount: number, ...items: Venue[]): Venue[];
9308
- } | undefined;
9309
- unshift?: ((...items: Venue[]) => number) | undefined;
9310
- indexOf?: ((searchElement: Venue, fromIndex?: number | undefined) => number) | undefined;
9311
- lastIndexOf?: ((searchElement: Venue, fromIndex?: number | undefined) => number) | undefined;
9312
- every?: {
9313
- <S_4 extends Venue>(predicate: (value: Venue, index: number, array: Venue[]) => value is S_4, thisArg?: any): this is S_4[];
9314
- (predicate: (value: Venue, index: number, array: Venue[]) => unknown, thisArg?: any): boolean;
9315
- } | undefined;
9316
- some?: ((predicate: (value: Venue, index: number, array: Venue[]) => unknown, thisArg?: any) => boolean) | undefined;
9317
- forEach?: ((callbackfn: (value: Venue, index: number, array: Venue[]) => void, thisArg?: any) => void) | undefined;
9318
- map?: (<U_4>(callbackfn: (value: Venue, index: number, array: Venue[]) => U_4, thisArg?: any) => U_4[]) | undefined;
9319
- filter?: {
9320
- <S_5 extends Venue>(predicate: (value: Venue, index: number, array: Venue[]) => value is S_5, thisArg?: any): S_5[];
9321
- (predicate: (value: Venue, index: number, array: Venue[]) => unknown, thisArg?: any): Venue[];
9322
- } | undefined;
9323
- reduce?: {
9324
- (callbackfn: (previousValue: Venue, currentValue: Venue, currentIndex: number, array: Venue[]) => Venue): Venue;
9325
- (callbackfn: (previousValue: Venue, currentValue: Venue, currentIndex: number, array: Venue[]) => Venue, initialValue: Venue): Venue;
9326
- <U_5>(callbackfn: (previousValue: U_5, currentValue: Venue, currentIndex: number, array: Venue[]) => U_5, initialValue: U_5): U_5;
9327
- } | undefined;
9328
- reduceRight?: {
9329
- (callbackfn: (previousValue: Venue, currentValue: Venue, currentIndex: number, array: Venue[]) => Venue): Venue;
9330
- (callbackfn: (previousValue: Venue, currentValue: Venue, currentIndex: number, array: Venue[]) => Venue, initialValue: Venue): Venue;
9331
- <U_6>(callbackfn: (previousValue: U_6, currentValue: Venue, currentIndex: number, array: Venue[]) => U_6, initialValue: U_6): U_6;
9332
- } | undefined;
9333
- find?: {
9334
- <S_6 extends Venue>(predicate: (value: Venue, index: number, obj: Venue[]) => value is S_6, thisArg?: any): S_6 | undefined;
9335
- (predicate: (value: Venue, index: number, obj: Venue[]) => unknown, thisArg?: any): Venue | undefined;
9336
- } | undefined;
9337
- findIndex?: ((predicate: (value: Venue, index: number, obj: Venue[]) => unknown, thisArg?: any) => number) | undefined;
9338
- fill?: ((value: Venue, start?: number | undefined, end?: number | undefined) => Venue[]) | undefined;
9339
- copyWithin?: ((target: number, start: number, end?: number | undefined) => Venue[]) | undefined;
9340
- entries?: (() => IterableIterator<[number, Venue]>) | undefined;
9341
- keys?: (() => IterableIterator<number>) | undefined;
9342
- values?: (() => IterableIterator<Venue>) | undefined;
9343
- includes?: ((searchElement: Venue, fromIndex?: number | undefined) => boolean) | undefined;
9344
- flatMap?: (<U_7, This_1 = undefined>(callback: (this: This_1, value: Venue, index: number, array: Venue[]) => U_7 | readonly U_7[], thisArg?: This_1 | undefined) => U_7[]) | undefined;
9345
- flat?: (<A_1, D_1 extends number = 1>(this: A_1, depth?: D_1 | undefined) => FlatArray<A_1, D_1>[]) | undefined;
9346
- at?: ((index: number) => Venue | undefined) | undefined;
9347
- findLast?: {
9348
- <S_7 extends Venue>(predicate: (value: Venue, index: number, array: Venue[]) => value is S_7, thisArg?: any): S_7 | undefined;
9349
- (predicate: (value: Venue, index: number, array: Venue[]) => unknown, thisArg?: any): Venue | undefined;
9350
- } | undefined;
9351
- findLastIndex?: ((predicate: (value: Venue, index: number, array: Venue[]) => unknown, thisArg?: any) => number) | undefined;
9352
- toReversed?: (() => Venue[]) | undefined;
9353
- toSorted?: ((compareFn?: ((a: Venue, b: Venue) => number) | undefined) => Venue[]) | undefined;
9354
- toSpliced?: {
9355
- (start: number, deleteCount: number, ...items: Venue[]): Venue[];
9356
- (start: number, deleteCount?: number | undefined): Venue[];
9357
- } | undefined;
9358
- with?: ((index: number, value: Venue) => Venue[]) | undefined;
9359
- [Symbol.iterator]?: (() => IterableIterator<Venue>) | undefined;
9360
- [Symbol.unscopables]?: {
9361
- [x: number]: boolean | undefined;
9362
- length?: boolean | undefined;
9363
- toString?: boolean | undefined;
9364
- toLocaleString?: boolean | undefined;
9365
- pop?: boolean | undefined;
9366
- push?: boolean | undefined;
9367
- concat?: boolean | undefined;
9368
- join?: boolean | undefined;
9369
- reverse?: boolean | undefined;
9370
- shift?: boolean | undefined;
9371
- slice?: boolean | undefined;
9372
- sort?: boolean | undefined;
9373
- splice?: boolean | undefined;
9374
- unshift?: boolean | undefined;
9375
- indexOf?: boolean | undefined;
9376
- lastIndexOf?: boolean | undefined;
9377
- every?: boolean | undefined;
9378
- some?: boolean | undefined;
9379
- forEach?: boolean | undefined;
9380
- map?: boolean | undefined;
9381
- filter?: boolean | undefined;
9382
- reduce?: boolean | undefined;
9383
- reduceRight?: boolean | undefined;
9384
- find?: boolean | undefined;
9385
- findIndex?: boolean | undefined;
9386
- fill?: boolean | undefined;
9387
- copyWithin?: boolean | undefined;
9388
- entries?: boolean | undefined;
9389
- keys?: boolean | undefined;
9390
- values?: boolean | undefined;
9391
- includes?: boolean | undefined;
9392
- flatMap?: boolean | undefined;
9393
- flat?: boolean | undefined;
9394
- at?: boolean | undefined;
9395
- findLast?: boolean | undefined;
9396
- findLastIndex?: boolean | undefined;
9397
- toReversed?: boolean | undefined;
9398
- toSorted?: boolean | undefined;
9399
- toSpliced?: boolean | undefined;
9400
- with?: boolean | undefined;
9401
- [Symbol.iterator]?: boolean | undefined;
9402
- readonly [Symbol.unscopables]?: boolean | undefined;
9403
- } | undefined;
9404
- };
9204
+ weekdays: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[];
9405
9205
  tournamentName: string;
9406
9206
  startDate: string;
9407
9207
  tournamentId: string;