tods-competition-factory 2.1.14 → 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.
- package/dist/index.mjs +8 -8
- package/dist/tods-competition-factory.d.ts +34 -238
- package/dist/tods-competition-factory.development.cjs.js +150 -134
- 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
|
@@ -7267,7 +7267,7 @@ type GetVenueDataArgs = {
|
|
|
7267
7267
|
tournamentRecord: Tournament;
|
|
7268
7268
|
venueId: string;
|
|
7269
7269
|
};
|
|
7270
|
-
declare function getVenueData(
|
|
7270
|
+
declare function getVenueData(params: GetVenueDataArgs): {
|
|
7271
7271
|
success?: boolean;
|
|
7272
7272
|
error?: ErrorType;
|
|
7273
7273
|
venueData?: any;
|
|
@@ -7565,13 +7565,36 @@ declare namespace query$3 {
|
|
|
7565
7565
|
export { query$3_compareTieFormats as compareTieFormats, query$3_getTieFormat as getTieFormat, query$3_tieFormatGenderValidityCheck as tieFormatGenderValidityCheck, query$3_validateCollectionDefinition as validateCollectionDefinition };
|
|
7566
7566
|
}
|
|
7567
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
|
+
|
|
7568
7590
|
type GetScheduledRoundsDetailsArgs = {
|
|
7569
|
-
tournamentRecords
|
|
7591
|
+
tournamentRecords?: {
|
|
7570
7592
|
[key: string]: Tournament;
|
|
7571
7593
|
};
|
|
7572
7594
|
scheduleCompletedMatchUps?: boolean;
|
|
7573
7595
|
containedStructureIds?: string[];
|
|
7574
7596
|
matchUps?: HydratedMatchUp[];
|
|
7597
|
+
tournamentRecord?: Tournament;
|
|
7575
7598
|
periodLength?: number;
|
|
7576
7599
|
rounds: any[];
|
|
7577
7600
|
};
|
|
@@ -7587,7 +7610,7 @@ type RoundsDetailsResult = {
|
|
|
7587
7610
|
minutesMap?: any;
|
|
7588
7611
|
info?: string;
|
|
7589
7612
|
};
|
|
7590
|
-
declare function getScheduledRoundsDetails(
|
|
7613
|
+
declare function getScheduledRoundsDetails(params: GetScheduledRoundsDetailsArgs): RoundsDetailsResult;
|
|
7591
7614
|
|
|
7592
7615
|
type GetSchedulingProfileIssuesArgs = {
|
|
7593
7616
|
tournamentRecords: TournamentRecords;
|
|
@@ -7693,6 +7716,7 @@ declare function publicFindVenue({ convertExtensions, ...params }: {
|
|
|
7693
7716
|
|
|
7694
7717
|
declare const query$2_courtGridRows: typeof courtGridRows;
|
|
7695
7718
|
declare const query$2_findVenue: typeof findVenue;
|
|
7719
|
+
declare const query$2_getMatchUpsToSchedule: typeof getMatchUpsToSchedule;
|
|
7696
7720
|
declare const query$2_getPersonRequests: typeof getPersonRequests;
|
|
7697
7721
|
declare const query$2_getProfileRounds: typeof getProfileRounds;
|
|
7698
7722
|
declare const query$2_getScheduledRoundsDetails: typeof getScheduledRoundsDetails;
|
|
@@ -7700,7 +7724,7 @@ declare const query$2_getSchedulingProfile: typeof getSchedulingProfile;
|
|
|
7700
7724
|
declare const query$2_getSchedulingProfileIssues: typeof getSchedulingProfileIssues;
|
|
7701
7725
|
declare const query$2_publicFindCourt: typeof publicFindCourt;
|
|
7702
7726
|
declare namespace query$2 {
|
|
7703
|
-
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 };
|
|
7704
7728
|
}
|
|
7705
7729
|
|
|
7706
7730
|
type GetVenuesAndCourtsArgs = {
|
|
@@ -7823,6 +7847,7 @@ declare const index$9_getMatchUpScheduleDetails: typeof getMatchUpScheduleDetail
|
|
|
7823
7847
|
declare const index$9_getMatchUpType: typeof getMatchUpType;
|
|
7824
7848
|
declare const index$9_getMatchUpsMap: typeof getMatchUpsMap;
|
|
7825
7849
|
declare const index$9_getMatchUpsStats: typeof getMatchUpsStats;
|
|
7850
|
+
declare const index$9_getMatchUpsToSchedule: typeof getMatchUpsToSchedule;
|
|
7826
7851
|
declare const index$9_getMaxEntryPosition: typeof getMaxEntryPosition;
|
|
7827
7852
|
declare const index$9_getModifiedMatchUpFormatTiming: typeof getModifiedMatchUpFormatTiming;
|
|
7828
7853
|
declare const index$9_getPairedParticipant: typeof getPairedParticipant;
|
|
@@ -7884,7 +7909,7 @@ declare const index$9_validMatchUps: typeof validMatchUps;
|
|
|
7884
7909
|
declare const index$9_validateCollectionDefinition: typeof validateCollectionDefinition;
|
|
7885
7910
|
declare const index$9_validateLineUp: typeof validateLineUp;
|
|
7886
7911
|
declare namespace index$9 {
|
|
7887
|
-
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 };
|
|
7888
7913
|
}
|
|
7889
7914
|
|
|
7890
7915
|
type StatCounters = {
|
|
@@ -8590,6 +8615,7 @@ declare const index$7_findMatchUpFormatTiming: typeof findMatchUpFormatTiming;
|
|
|
8590
8615
|
declare const index$7_findVenue: typeof findVenue;
|
|
8591
8616
|
declare const index$7_generateBookings: typeof generateBookings;
|
|
8592
8617
|
declare const index$7_generateVirtualCourts: typeof generateVirtualCourts;
|
|
8618
|
+
declare const index$7_getMatchUpsToSchedule: typeof getMatchUpsToSchedule;
|
|
8593
8619
|
declare const index$7_getPersonRequests: typeof getPersonRequests;
|
|
8594
8620
|
declare const index$7_getProfileRounds: typeof getProfileRounds;
|
|
8595
8621
|
declare const index$7_getScheduledRoundsDetails: typeof getScheduledRoundsDetails;
|
|
@@ -8611,7 +8637,7 @@ declare const index$7_setSchedulingProfile: typeof setSchedulingProfile;
|
|
|
8611
8637
|
declare const index$7_toggleParticipantCheckInState: typeof toggleParticipantCheckInState;
|
|
8612
8638
|
declare const index$7_validateSchedulingProfile: typeof validateSchedulingProfile;
|
|
8613
8639
|
declare namespace index$7 {
|
|
8614
|
-
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 };
|
|
8615
8641
|
}
|
|
8616
8642
|
|
|
8617
8643
|
type TieMatchUpScore = {
|
|
@@ -9171,241 +9197,11 @@ declare function copyTournamentRecord(params: CopyTournamentRecordArgs): (Result
|
|
|
9171
9197
|
tournamentRecord: {
|
|
9172
9198
|
participants: any[];
|
|
9173
9199
|
parentOrganisation: any;
|
|
9200
|
+
venues: any;
|
|
9174
9201
|
extensions: any;
|
|
9175
9202
|
timeItems: any;
|
|
9176
9203
|
events: any[];
|
|
9177
|
-
weekdays:
|
|
9178
|
-
[x: number]: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN";
|
|
9179
|
-
length?: number | undefined;
|
|
9180
|
-
toString?: (() => string) | undefined;
|
|
9181
|
-
toLocaleString?: (() => string) | undefined;
|
|
9182
|
-
pop?: (() => "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN" | undefined) | undefined;
|
|
9183
|
-
push?: ((...items: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => number) | undefined;
|
|
9184
|
-
concat?: {
|
|
9185
|
-
(...items: ConcatArray<"MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN">[]): ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[];
|
|
9186
|
-
(...items: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN" | ConcatArray<"MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN">)[]): ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[];
|
|
9187
|
-
} | undefined;
|
|
9188
|
-
join?: ((separator?: string | undefined) => string) | undefined;
|
|
9189
|
-
reverse?: (() => ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) | undefined;
|
|
9190
|
-
shift?: (() => "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN" | undefined) | undefined;
|
|
9191
|
-
slice?: ((start?: number | undefined, end?: number | undefined) => ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) | undefined;
|
|
9192
|
-
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;
|
|
9193
|
-
splice?: {
|
|
9194
|
-
(start: number, deleteCount?: number | undefined): ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[];
|
|
9195
|
-
(start: number, deleteCount: number, ...items: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]): ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[];
|
|
9196
|
-
} | undefined;
|
|
9197
|
-
unshift?: ((...items: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => number) | undefined;
|
|
9198
|
-
indexOf?: ((searchElement: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", fromIndex?: number | undefined) => number) | undefined;
|
|
9199
|
-
lastIndexOf?: ((searchElement: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", fromIndex?: number | undefined) => number) | undefined;
|
|
9200
|
-
every?: {
|
|
9201
|
-
<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[];
|
|
9202
|
-
(predicate: (value: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", index: number, array: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) => unknown, thisArg?: any): boolean;
|
|
9203
|
-
} | undefined;
|
|
9204
|
-
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;
|
|
9205
|
-
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;
|
|
9206
|
-
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;
|
|
9207
|
-
filter?: {
|
|
9208
|
-
<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[];
|
|
9209
|
-
(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")[];
|
|
9210
|
-
} | undefined;
|
|
9211
|
-
reduce?: {
|
|
9212
|
-
(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";
|
|
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", initialValue: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN"): "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN";
|
|
9214
|
-
<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;
|
|
9215
|
-
} | undefined;
|
|
9216
|
-
reduceRight?: {
|
|
9217
|
-
(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";
|
|
9218
|
-
(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";
|
|
9219
|
-
<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;
|
|
9220
|
-
} | undefined;
|
|
9221
|
-
find?: {
|
|
9222
|
-
<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;
|
|
9223
|
-
(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;
|
|
9224
|
-
} | undefined;
|
|
9225
|
-
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;
|
|
9226
|
-
fill?: ((value: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", start?: number | undefined, end?: number | undefined) => ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) | undefined;
|
|
9227
|
-
copyWithin?: ((target: number, start: number, end?: number | undefined) => ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) | undefined;
|
|
9228
|
-
entries?: (() => IterableIterator<[number, "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN"]>) | undefined;
|
|
9229
|
-
keys?: (() => IterableIterator<number>) | undefined;
|
|
9230
|
-
values?: (() => IterableIterator<"MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN">) | undefined;
|
|
9231
|
-
includes?: ((searchElement: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN", fromIndex?: number | undefined) => boolean) | undefined;
|
|
9232
|
-
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;
|
|
9233
|
-
flat?: (<A, D extends number = 1>(this: A, depth?: D | undefined) => FlatArray<A, D>[]) | undefined;
|
|
9234
|
-
at?: ((index: number) => "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN" | undefined) | undefined;
|
|
9235
|
-
findLast?: {
|
|
9236
|
-
<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;
|
|
9237
|
-
(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;
|
|
9238
|
-
} | undefined;
|
|
9239
|
-
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;
|
|
9240
|
-
toReversed?: (() => ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) | undefined;
|
|
9241
|
-
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;
|
|
9242
|
-
toSpliced?: {
|
|
9243
|
-
(start: number, deleteCount: number, ...items: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]): ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[];
|
|
9244
|
-
(start: number, deleteCount?: number | undefined): ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[];
|
|
9245
|
-
} | undefined;
|
|
9246
|
-
with?: ((index: number, value: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN") => ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[]) | undefined;
|
|
9247
|
-
[Symbol.iterator]?: (() => IterableIterator<"MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN">) | undefined;
|
|
9248
|
-
[Symbol.unscopables]?: {
|
|
9249
|
-
[x: number]: boolean | undefined;
|
|
9250
|
-
length?: boolean | undefined;
|
|
9251
|
-
toString?: boolean | undefined;
|
|
9252
|
-
toLocaleString?: boolean | undefined;
|
|
9253
|
-
pop?: boolean | undefined;
|
|
9254
|
-
push?: boolean | undefined;
|
|
9255
|
-
concat?: boolean | undefined;
|
|
9256
|
-
join?: boolean | undefined;
|
|
9257
|
-
reverse?: boolean | undefined;
|
|
9258
|
-
shift?: boolean | undefined;
|
|
9259
|
-
slice?: boolean | undefined;
|
|
9260
|
-
sort?: boolean | undefined;
|
|
9261
|
-
splice?: boolean | undefined;
|
|
9262
|
-
unshift?: boolean | undefined;
|
|
9263
|
-
indexOf?: boolean | undefined;
|
|
9264
|
-
lastIndexOf?: boolean | undefined;
|
|
9265
|
-
every?: boolean | undefined;
|
|
9266
|
-
some?: boolean | undefined;
|
|
9267
|
-
forEach?: boolean | undefined;
|
|
9268
|
-
map?: boolean | undefined;
|
|
9269
|
-
filter?: boolean | undefined;
|
|
9270
|
-
reduce?: boolean | undefined;
|
|
9271
|
-
reduceRight?: boolean | undefined;
|
|
9272
|
-
find?: boolean | undefined;
|
|
9273
|
-
findIndex?: boolean | undefined;
|
|
9274
|
-
fill?: boolean | undefined;
|
|
9275
|
-
copyWithin?: boolean | undefined;
|
|
9276
|
-
entries?: boolean | undefined;
|
|
9277
|
-
keys?: boolean | undefined;
|
|
9278
|
-
values?: boolean | undefined;
|
|
9279
|
-
includes?: boolean | undefined;
|
|
9280
|
-
flatMap?: boolean | undefined;
|
|
9281
|
-
flat?: boolean | undefined;
|
|
9282
|
-
at?: boolean | undefined;
|
|
9283
|
-
findLast?: boolean | undefined;
|
|
9284
|
-
findLastIndex?: boolean | undefined;
|
|
9285
|
-
toReversed?: boolean | undefined;
|
|
9286
|
-
toSorted?: boolean | undefined;
|
|
9287
|
-
toSpliced?: boolean | undefined;
|
|
9288
|
-
with?: boolean | undefined;
|
|
9289
|
-
[Symbol.iterator]?: boolean | undefined;
|
|
9290
|
-
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
9291
|
-
} | undefined;
|
|
9292
|
-
};
|
|
9293
|
-
venues: {
|
|
9294
|
-
[x: number]: Venue;
|
|
9295
|
-
length?: number | undefined;
|
|
9296
|
-
toString?: (() => string) | undefined;
|
|
9297
|
-
toLocaleString?: (() => string) | undefined;
|
|
9298
|
-
pop?: (() => Venue | undefined) | undefined;
|
|
9299
|
-
push?: ((...items: Venue[]) => number) | undefined;
|
|
9300
|
-
concat?: {
|
|
9301
|
-
(...items: ConcatArray<Venue>[]): Venue[];
|
|
9302
|
-
(...items: (Venue | ConcatArray<Venue>)[]): Venue[];
|
|
9303
|
-
} | undefined;
|
|
9304
|
-
join?: ((separator?: string | undefined) => string) | undefined;
|
|
9305
|
-
reverse?: (() => Venue[]) | undefined;
|
|
9306
|
-
shift?: (() => Venue | undefined) | undefined;
|
|
9307
|
-
slice?: ((start?: number | undefined, end?: number | undefined) => Venue[]) | undefined;
|
|
9308
|
-
sort?: ((compareFn?: ((a: Venue, b: Venue) => number) | undefined) => Venue[]) | undefined;
|
|
9309
|
-
splice?: {
|
|
9310
|
-
(start: number, deleteCount?: number | undefined): Venue[];
|
|
9311
|
-
(start: number, deleteCount: number, ...items: Venue[]): Venue[];
|
|
9312
|
-
} | undefined;
|
|
9313
|
-
unshift?: ((...items: Venue[]) => number) | undefined;
|
|
9314
|
-
indexOf?: ((searchElement: Venue, fromIndex?: number | undefined) => number) | undefined;
|
|
9315
|
-
lastIndexOf?: ((searchElement: Venue, fromIndex?: number | undefined) => number) | undefined;
|
|
9316
|
-
every?: {
|
|
9317
|
-
<S_4 extends Venue>(predicate: (value: Venue, index: number, array: Venue[]) => value is S_4, thisArg?: any): this is S_4[];
|
|
9318
|
-
(predicate: (value: Venue, index: number, array: Venue[]) => unknown, thisArg?: any): boolean;
|
|
9319
|
-
} | undefined;
|
|
9320
|
-
some?: ((predicate: (value: Venue, index: number, array: Venue[]) => unknown, thisArg?: any) => boolean) | undefined;
|
|
9321
|
-
forEach?: ((callbackfn: (value: Venue, index: number, array: Venue[]) => void, thisArg?: any) => void) | undefined;
|
|
9322
|
-
map?: (<U_4>(callbackfn: (value: Venue, index: number, array: Venue[]) => U_4, thisArg?: any) => U_4[]) | undefined;
|
|
9323
|
-
filter?: {
|
|
9324
|
-
<S_5 extends Venue>(predicate: (value: Venue, index: number, array: Venue[]) => value is S_5, thisArg?: any): S_5[];
|
|
9325
|
-
(predicate: (value: Venue, index: number, array: Venue[]) => unknown, thisArg?: any): Venue[];
|
|
9326
|
-
} | undefined;
|
|
9327
|
-
reduce?: {
|
|
9328
|
-
(callbackfn: (previousValue: Venue, currentValue: Venue, currentIndex: number, array: Venue[]) => Venue): Venue;
|
|
9329
|
-
(callbackfn: (previousValue: Venue, currentValue: Venue, currentIndex: number, array: Venue[]) => Venue, initialValue: Venue): Venue;
|
|
9330
|
-
<U_5>(callbackfn: (previousValue: U_5, currentValue: Venue, currentIndex: number, array: Venue[]) => U_5, initialValue: U_5): U_5;
|
|
9331
|
-
} | undefined;
|
|
9332
|
-
reduceRight?: {
|
|
9333
|
-
(callbackfn: (previousValue: Venue, currentValue: Venue, currentIndex: number, array: Venue[]) => Venue): Venue;
|
|
9334
|
-
(callbackfn: (previousValue: Venue, currentValue: Venue, currentIndex: number, array: Venue[]) => Venue, initialValue: Venue): Venue;
|
|
9335
|
-
<U_6>(callbackfn: (previousValue: U_6, currentValue: Venue, currentIndex: number, array: Venue[]) => U_6, initialValue: U_6): U_6;
|
|
9336
|
-
} | undefined;
|
|
9337
|
-
find?: {
|
|
9338
|
-
<S_6 extends Venue>(predicate: (value: Venue, index: number, obj: Venue[]) => value is S_6, thisArg?: any): S_6 | undefined;
|
|
9339
|
-
(predicate: (value: Venue, index: number, obj: Venue[]) => unknown, thisArg?: any): Venue | undefined;
|
|
9340
|
-
} | undefined;
|
|
9341
|
-
findIndex?: ((predicate: (value: Venue, index: number, obj: Venue[]) => unknown, thisArg?: any) => number) | undefined;
|
|
9342
|
-
fill?: ((value: Venue, start?: number | undefined, end?: number | undefined) => Venue[]) | undefined;
|
|
9343
|
-
copyWithin?: ((target: number, start: number, end?: number | undefined) => Venue[]) | undefined;
|
|
9344
|
-
entries?: (() => IterableIterator<[number, Venue]>) | undefined;
|
|
9345
|
-
keys?: (() => IterableIterator<number>) | undefined;
|
|
9346
|
-
values?: (() => IterableIterator<Venue>) | undefined;
|
|
9347
|
-
includes?: ((searchElement: Venue, fromIndex?: number | undefined) => boolean) | undefined;
|
|
9348
|
-
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;
|
|
9349
|
-
flat?: (<A_1, D_1 extends number = 1>(this: A_1, depth?: D_1 | undefined) => FlatArray<A_1, D_1>[]) | undefined;
|
|
9350
|
-
at?: ((index: number) => Venue | undefined) | undefined;
|
|
9351
|
-
findLast?: {
|
|
9352
|
-
<S_7 extends Venue>(predicate: (value: Venue, index: number, array: Venue[]) => value is S_7, thisArg?: any): S_7 | undefined;
|
|
9353
|
-
(predicate: (value: Venue, index: number, array: Venue[]) => unknown, thisArg?: any): Venue | undefined;
|
|
9354
|
-
} | undefined;
|
|
9355
|
-
findLastIndex?: ((predicate: (value: Venue, index: number, array: Venue[]) => unknown, thisArg?: any) => number) | undefined;
|
|
9356
|
-
toReversed?: (() => Venue[]) | undefined;
|
|
9357
|
-
toSorted?: ((compareFn?: ((a: Venue, b: Venue) => number) | undefined) => Venue[]) | undefined;
|
|
9358
|
-
toSpliced?: {
|
|
9359
|
-
(start: number, deleteCount: number, ...items: Venue[]): Venue[];
|
|
9360
|
-
(start: number, deleteCount?: number | undefined): Venue[];
|
|
9361
|
-
} | undefined;
|
|
9362
|
-
with?: ((index: number, value: Venue) => Venue[]) | undefined;
|
|
9363
|
-
[Symbol.iterator]?: (() => IterableIterator<Venue>) | undefined;
|
|
9364
|
-
[Symbol.unscopables]?: {
|
|
9365
|
-
[x: number]: boolean | undefined;
|
|
9366
|
-
length?: boolean | undefined;
|
|
9367
|
-
toString?: boolean | undefined;
|
|
9368
|
-
toLocaleString?: boolean | undefined;
|
|
9369
|
-
pop?: boolean | undefined;
|
|
9370
|
-
push?: boolean | undefined;
|
|
9371
|
-
concat?: boolean | undefined;
|
|
9372
|
-
join?: boolean | undefined;
|
|
9373
|
-
reverse?: boolean | undefined;
|
|
9374
|
-
shift?: boolean | undefined;
|
|
9375
|
-
slice?: boolean | undefined;
|
|
9376
|
-
sort?: boolean | undefined;
|
|
9377
|
-
splice?: boolean | undefined;
|
|
9378
|
-
unshift?: boolean | undefined;
|
|
9379
|
-
indexOf?: boolean | undefined;
|
|
9380
|
-
lastIndexOf?: boolean | undefined;
|
|
9381
|
-
every?: boolean | undefined;
|
|
9382
|
-
some?: boolean | undefined;
|
|
9383
|
-
forEach?: boolean | undefined;
|
|
9384
|
-
map?: boolean | undefined;
|
|
9385
|
-
filter?: boolean | undefined;
|
|
9386
|
-
reduce?: boolean | undefined;
|
|
9387
|
-
reduceRight?: boolean | undefined;
|
|
9388
|
-
find?: boolean | undefined;
|
|
9389
|
-
findIndex?: boolean | undefined;
|
|
9390
|
-
fill?: boolean | undefined;
|
|
9391
|
-
copyWithin?: boolean | undefined;
|
|
9392
|
-
entries?: boolean | undefined;
|
|
9393
|
-
keys?: boolean | undefined;
|
|
9394
|
-
values?: boolean | undefined;
|
|
9395
|
-
includes?: boolean | undefined;
|
|
9396
|
-
flatMap?: boolean | undefined;
|
|
9397
|
-
flat?: boolean | undefined;
|
|
9398
|
-
at?: boolean | undefined;
|
|
9399
|
-
findLast?: boolean | undefined;
|
|
9400
|
-
findLastIndex?: boolean | undefined;
|
|
9401
|
-
toReversed?: boolean | undefined;
|
|
9402
|
-
toSorted?: boolean | undefined;
|
|
9403
|
-
toSpliced?: boolean | undefined;
|
|
9404
|
-
with?: boolean | undefined;
|
|
9405
|
-
[Symbol.iterator]?: boolean | undefined;
|
|
9406
|
-
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
9407
|
-
} | undefined;
|
|
9408
|
-
};
|
|
9204
|
+
weekdays: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")[];
|
|
9409
9205
|
tournamentName: string;
|
|
9410
9206
|
startDate: string;
|
|
9411
9207
|
tournamentId: string;
|