tods-competition-factory 2.1.0 → 2.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +6 -6
- package/dist/tods-competition-factory.d.ts +110 -101
- package/dist/tods-competition-factory.development.cjs.js +497 -385
- 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 +10 -10
|
@@ -36,6 +36,7 @@ declare const participantConstants: {
|
|
|
36
36
|
};
|
|
37
37
|
|
|
38
38
|
interface Tournament {
|
|
39
|
+
activeDates?: Date[] | string[];
|
|
39
40
|
createdAt?: Date | string;
|
|
40
41
|
endDate?: string;
|
|
41
42
|
events?: Event$1[];
|
|
@@ -69,6 +70,7 @@ interface Tournament {
|
|
|
69
70
|
tournamentStatus?: TournamentStatusUnion;
|
|
70
71
|
updatedAt?: Date | string;
|
|
71
72
|
venues?: Venue[];
|
|
73
|
+
weekdays?: weekdayUnion[];
|
|
72
74
|
}
|
|
73
75
|
type TournamentStatusUnion = 'ABANDONDED' | 'CANCELLED' | 'ACTIVE' | 'COMPLETED';
|
|
74
76
|
interface Organisation {
|
|
@@ -81,6 +83,7 @@ interface Organisation {
|
|
|
81
83
|
notes?: string;
|
|
82
84
|
}
|
|
83
85
|
interface Event$1 {
|
|
86
|
+
activeDates?: Date[] | string[];
|
|
84
87
|
allowedDrawTypes?: DrawTypeUnion[];
|
|
85
88
|
category?: Category;
|
|
86
89
|
createdAt?: Date | string;
|
|
@@ -111,6 +114,7 @@ interface Event$1 {
|
|
|
111
114
|
tieFormats?: TieFormat[];
|
|
112
115
|
timeItems?: TimeItem[];
|
|
113
116
|
updatedAt?: Date | string;
|
|
117
|
+
weekdays?: weekdayUnion[];
|
|
114
118
|
wheelchairClass?: WheelchairClassUnion;
|
|
115
119
|
}
|
|
116
120
|
declare enum DrawTypeEnum {
|
|
@@ -192,6 +196,7 @@ declare enum DisciplineEnum {
|
|
|
192
196
|
}
|
|
193
197
|
type DisciplineUnion = keyof typeof DisciplineEnum;
|
|
194
198
|
interface DrawDefinition {
|
|
199
|
+
activeDates?: Date[] | string[];
|
|
195
200
|
automated?: boolean;
|
|
196
201
|
createdAt?: Date | string;
|
|
197
202
|
drawId: string;
|
|
@@ -1314,6 +1319,16 @@ interface UnifiedVenueID {
|
|
|
1314
1319
|
updatedAt?: Date | string;
|
|
1315
1320
|
venueId: string;
|
|
1316
1321
|
}
|
|
1322
|
+
declare enum WeekdayEnum {
|
|
1323
|
+
MON = "MON",
|
|
1324
|
+
TUE = "TUE",
|
|
1325
|
+
WED = "WED",
|
|
1326
|
+
THU = "THU",
|
|
1327
|
+
FRI = "FRI",
|
|
1328
|
+
SAT = "SAT",
|
|
1329
|
+
SUN = "SUN"
|
|
1330
|
+
}
|
|
1331
|
+
type weekdayUnion = keyof typeof WeekdayEnum;
|
|
1317
1332
|
|
|
1318
1333
|
type HydratedCourt = {
|
|
1319
1334
|
[key: string]: any;
|
|
@@ -2053,13 +2068,14 @@ declare const POLICY_TYPE_PARTICIPANT = "participant";
|
|
|
2053
2068
|
declare const POLICY_TYPE_PROGRESSION = "progression";
|
|
2054
2069
|
declare const POLICY_TYPE_SCHEDULING = "scheduling";
|
|
2055
2070
|
declare const POLICY_TYPE_AVOIDANCE = "avoidance";
|
|
2071
|
+
declare const POLICY_TYPE_PRIVACY = "participant";
|
|
2056
2072
|
declare const POLICY_TYPE_DISPLAY = "display";
|
|
2057
2073
|
declare const POLICY_TYPE_SCORING = "scoring";
|
|
2058
2074
|
declare const POLICY_TYPE_SEEDING = "seeding";
|
|
2059
2075
|
declare const POLICY_TYPE_FEED_IN = "feedIn";
|
|
2060
2076
|
declare const POLICY_TYPE_AUDIT = "audit";
|
|
2061
2077
|
declare const POLICY_TYPE_DRAWS = "draws";
|
|
2062
|
-
type ValidPolicyTypes = typeof POLICY_TYPE_VOLUNTARY_CONSOLATION | typeof POLICY_TYPE_COMPETITIVE_BANDS | typeof POLICY_TYPE_ROUND_ROBIN_TALLY | typeof POLICY_TYPE_POSITION_ACTIONS | typeof POLICY_TYPE_MATCHUP_ACTIONS | typeof POLICY_TYPE_RANKING_POINTS | typeof POLICY_TYPE_ROUND_NAMING | typeof POLICY_TYPE_PARTICIPANT | typeof POLICY_TYPE_PROGRESSION | typeof POLICY_TYPE_SCHEDULING | typeof POLICY_TYPE_AVOIDANCE | typeof POLICY_TYPE_DISPLAY | typeof POLICY_TYPE_FEED_IN | typeof POLICY_TYPE_SCORING | typeof POLICY_TYPE_SEEDING | typeof POLICY_TYPE_AUDIT | typeof POLICY_TYPE_DRAWS;
|
|
2078
|
+
type ValidPolicyTypes = typeof POLICY_TYPE_VOLUNTARY_CONSOLATION | typeof POLICY_TYPE_COMPETITIVE_BANDS | typeof POLICY_TYPE_ROUND_ROBIN_TALLY | typeof POLICY_TYPE_POSITION_ACTIONS | typeof POLICY_TYPE_MATCHUP_ACTIONS | typeof POLICY_TYPE_RANKING_POINTS | typeof POLICY_TYPE_ROUND_NAMING | typeof POLICY_TYPE_PARTICIPANT | typeof POLICY_TYPE_PROGRESSION | typeof POLICY_TYPE_SCHEDULING | typeof POLICY_TYPE_AVOIDANCE | typeof POLICY_TYPE_DISPLAY | typeof POLICY_TYPE_PRIVACY | typeof POLICY_TYPE_FEED_IN | typeof POLICY_TYPE_SCORING | typeof POLICY_TYPE_SEEDING | typeof POLICY_TYPE_AUDIT | typeof POLICY_TYPE_DRAWS;
|
|
2063
2079
|
declare const policyConstants: {
|
|
2064
2080
|
readonly POLICY_TYPE_VOLUNTARY_CONSOLATION: "voluntaryConsolation";
|
|
2065
2081
|
readonly POLICY_TYPE_COMPETITIVE_BANDS: "competitiveBands";
|
|
@@ -2073,6 +2089,7 @@ declare const policyConstants: {
|
|
|
2073
2089
|
readonly POLICY_TYPE_SCHEDULING: "scheduling";
|
|
2074
2090
|
readonly POLICY_TYPE_AVOIDANCE: "avoidance";
|
|
2075
2091
|
readonly POLICY_TYPE_DISPLAY: "display";
|
|
2092
|
+
readonly POLICY_TYPE_PRIVACY: "participant";
|
|
2076
2093
|
readonly POLICY_TYPE_FEED_IN: "feedIn";
|
|
2077
2094
|
readonly POLICY_TYPE_SCORING: "scoring";
|
|
2078
2095
|
readonly POLICY_TYPE_SEEDING: "seeding";
|
|
@@ -2753,17 +2770,7 @@ declare function setStructureOrder({ drawDefinition, orderMap }: {
|
|
|
2753
2770
|
orderMap: any;
|
|
2754
2771
|
}): ResultType;
|
|
2755
2772
|
|
|
2756
|
-
declare function attachQualifyingStructure(
|
|
2757
|
-
tournamentRecord: any;
|
|
2758
|
-
drawDefinition: any;
|
|
2759
|
-
structure: any;
|
|
2760
|
-
link: any;
|
|
2761
|
-
}): ResultType | {
|
|
2762
|
-
error: {
|
|
2763
|
-
message: string;
|
|
2764
|
-
code: string;
|
|
2765
|
-
};
|
|
2766
|
-
};
|
|
2773
|
+
declare function attachQualifyingStructure(params: any): ResultType;
|
|
2767
2774
|
|
|
2768
2775
|
type RenameStructuresArgs = {
|
|
2769
2776
|
drawDefinition: DrawDefinition;
|
|
@@ -2861,17 +2868,17 @@ type AddQualifyingstructureArgs = {
|
|
|
2861
2868
|
event: Event$1;
|
|
2862
2869
|
};
|
|
2863
2870
|
declare function addQualifyingStructure(params: AddQualifyingstructureArgs): ResultType | {
|
|
2864
|
-
error: {
|
|
2865
|
-
message: string;
|
|
2866
|
-
code: string;
|
|
2867
|
-
};
|
|
2868
|
-
} | {
|
|
2869
2871
|
qualifyingDrawPositionsCount?: number | undefined;
|
|
2870
2872
|
qualifiersCount?: number | undefined;
|
|
2871
2873
|
structure?: Structure | undefined;
|
|
2872
2874
|
error?: ErrorType | undefined;
|
|
2873
2875
|
success?: boolean | undefined;
|
|
2874
2876
|
link?: DrawLink | undefined;
|
|
2877
|
+
} | {
|
|
2878
|
+
error: {
|
|
2879
|
+
message: string;
|
|
2880
|
+
code: string;
|
|
2881
|
+
};
|
|
2875
2882
|
};
|
|
2876
2883
|
|
|
2877
2884
|
type AdHocPositionSwapArgs = {
|
|
@@ -4350,11 +4357,7 @@ declare function setEventStartDate({ tournamentRecord, event, startDate }: {
|
|
|
4350
4357
|
code: string;
|
|
4351
4358
|
};
|
|
4352
4359
|
};
|
|
4353
|
-
declare function setEventEndDate(
|
|
4354
|
-
tournamentRecord: any;
|
|
4355
|
-
event: any;
|
|
4356
|
-
endDate: any;
|
|
4357
|
-
}): (ResultType & {
|
|
4360
|
+
declare function setEventEndDate(params: any): (ResultType & {
|
|
4358
4361
|
tournamentStartDate?: number | undefined;
|
|
4359
4362
|
tournamentEndDate?: number | undefined;
|
|
4360
4363
|
}) | {
|
|
@@ -4363,25 +4366,21 @@ declare function setEventEndDate({ tournamentRecord, event, endDate }: {
|
|
|
4363
4366
|
code: string;
|
|
4364
4367
|
};
|
|
4365
4368
|
};
|
|
4366
|
-
|
|
4367
|
-
tournamentRecord:
|
|
4368
|
-
|
|
4369
|
-
|
|
4370
|
-
|
|
4371
|
-
|
|
4372
|
-
|
|
4373
|
-
|
|
4369
|
+
type SetEventDatesArgs = {
|
|
4370
|
+
tournamentRecord: Tournament;
|
|
4371
|
+
weekdays?: weekdayUnion[];
|
|
4372
|
+
activeDates?: string[];
|
|
4373
|
+
startDate?: string;
|
|
4374
|
+
endDate?: string;
|
|
4375
|
+
event: Event$1;
|
|
4376
|
+
};
|
|
4377
|
+
declare function setEventDates(params: SetEventDatesArgs): (ResultType & {
|
|
4378
|
+
valid?: boolean | undefined;
|
|
4374
4379
|
}) | {
|
|
4375
4380
|
error: {
|
|
4376
4381
|
message: string;
|
|
4377
4382
|
code: string;
|
|
4378
4383
|
};
|
|
4379
|
-
} | {
|
|
4380
|
-
error: {
|
|
4381
|
-
message: string;
|
|
4382
|
-
code: string;
|
|
4383
|
-
};
|
|
4384
|
-
info: string;
|
|
4385
4384
|
};
|
|
4386
4385
|
|
|
4387
4386
|
declare function deleteFlightAndFlightDraw({ autoPublish, tournamentRecord, auditData, drawId, event, force }: {
|
|
@@ -4596,26 +4595,8 @@ declare function removeSeeding({ tournamentRecord, drawDefinition, entryStatuses
|
|
|
4596
4595
|
info?: undefined;
|
|
4597
4596
|
};
|
|
4598
4597
|
|
|
4599
|
-
declare function deleteEvents(
|
|
4600
|
-
|
|
4601
|
-
tournamentRecord: any;
|
|
4602
|
-
eventIds: any;
|
|
4603
|
-
}): {
|
|
4604
|
-
error: {
|
|
4605
|
-
message: string;
|
|
4606
|
-
code: string;
|
|
4607
|
-
};
|
|
4608
|
-
info?: undefined;
|
|
4609
|
-
} | {
|
|
4610
|
-
error: {
|
|
4611
|
-
message: string;
|
|
4612
|
-
code: string;
|
|
4613
|
-
};
|
|
4614
|
-
info: string;
|
|
4615
|
-
} | {
|
|
4616
|
-
success: boolean;
|
|
4617
|
-
error?: undefined;
|
|
4618
|
-
info?: undefined;
|
|
4598
|
+
declare function deleteEvents(params: any): ResultType & {
|
|
4599
|
+
valid?: boolean | undefined;
|
|
4619
4600
|
};
|
|
4620
4601
|
|
|
4621
4602
|
type ModifyEventArgs = {
|
|
@@ -7597,13 +7578,50 @@ type SetSchedulingProfileArgs = {
|
|
|
7597
7578
|
};
|
|
7598
7579
|
declare function setSchedulingProfile({ tournamentRecords, tournamentRecord, schedulingProfile, }: SetSchedulingProfileArgs): any;
|
|
7599
7580
|
|
|
7581
|
+
declare function courtGridRows({ courtPrefix, minRowsCount, courtsData }: {
|
|
7582
|
+
courtPrefix?: string | undefined;
|
|
7583
|
+
minRowsCount: any;
|
|
7584
|
+
courtsData: any;
|
|
7585
|
+
}): {
|
|
7586
|
+
error: {
|
|
7587
|
+
message: string;
|
|
7588
|
+
code: string;
|
|
7589
|
+
};
|
|
7590
|
+
courtPrefix?: undefined;
|
|
7591
|
+
rows?: undefined;
|
|
7592
|
+
} | {
|
|
7593
|
+
courtPrefix: string;
|
|
7594
|
+
rows: any[];
|
|
7595
|
+
error?: undefined;
|
|
7596
|
+
};
|
|
7597
|
+
|
|
7598
|
+
declare function publicFindCourt(params: any): any;
|
|
7599
|
+
|
|
7600
|
+
type FindVenueArgs = {
|
|
7601
|
+
tournamentRecords?: TournamentRecords;
|
|
7602
|
+
tournamentRecord?: Tournament;
|
|
7603
|
+
venueId: string;
|
|
7604
|
+
};
|
|
7605
|
+
declare function findVenue({ tournamentRecords, tournamentRecord, venueId }: FindVenueArgs): {
|
|
7606
|
+
success?: boolean;
|
|
7607
|
+
venue?: Venue;
|
|
7608
|
+
error?: ErrorType;
|
|
7609
|
+
};
|
|
7610
|
+
declare function publicFindVenue({ convertExtensions, ...params }: {
|
|
7611
|
+
[x: string]: any;
|
|
7612
|
+
convertExtensions: any;
|
|
7613
|
+
}): any;
|
|
7614
|
+
|
|
7615
|
+
declare const query$2_courtGridRows: typeof courtGridRows;
|
|
7616
|
+
declare const query$2_findVenue: typeof findVenue;
|
|
7600
7617
|
declare const query$2_getPersonRequests: typeof getPersonRequests;
|
|
7601
7618
|
declare const query$2_getProfileRounds: typeof getProfileRounds;
|
|
7602
7619
|
declare const query$2_getScheduledRoundsDetails: typeof getScheduledRoundsDetails;
|
|
7603
7620
|
declare const query$2_getSchedulingProfile: typeof getSchedulingProfile;
|
|
7604
7621
|
declare const query$2_getSchedulingProfileIssues: typeof getSchedulingProfileIssues;
|
|
7622
|
+
declare const query$2_publicFindCourt: typeof publicFindCourt;
|
|
7605
7623
|
declare namespace query$2 {
|
|
7606
|
-
export { 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 };
|
|
7624
|
+
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 };
|
|
7607
7625
|
}
|
|
7608
7626
|
|
|
7609
7627
|
type GetVenuesAndCourtsArgs = {
|
|
@@ -7630,21 +7648,6 @@ declare function getCompetitionVenues({ tournamentRecords, requireCourts, dates
|
|
|
7630
7648
|
venues?: Venue[];
|
|
7631
7649
|
};
|
|
7632
7650
|
|
|
7633
|
-
type FindVenueArgs = {
|
|
7634
|
-
tournamentRecords?: TournamentRecords;
|
|
7635
|
-
tournamentRecord?: Tournament;
|
|
7636
|
-
venueId: string;
|
|
7637
|
-
};
|
|
7638
|
-
declare function findVenue({ tournamentRecords, tournamentRecord, venueId }: FindVenueArgs): {
|
|
7639
|
-
success?: boolean;
|
|
7640
|
-
venue?: Venue;
|
|
7641
|
-
error?: ErrorType;
|
|
7642
|
-
};
|
|
7643
|
-
declare function publicFindVenue({ convertExtensions, ...params }: {
|
|
7644
|
-
[x: string]: any;
|
|
7645
|
-
convertExtensions: any;
|
|
7646
|
-
}): any;
|
|
7647
|
-
|
|
7648
7651
|
declare function getCourts({ tournamentRecord, venueId, venueIds }: {
|
|
7649
7652
|
tournamentRecord: any;
|
|
7650
7653
|
venueId: any;
|
|
@@ -7684,12 +7687,14 @@ declare const index$9_checkMatchUpIsComplete: typeof checkMatchUpIsComplete;
|
|
|
7684
7687
|
declare const index$9_checkValidEntries: typeof checkValidEntries;
|
|
7685
7688
|
declare const index$9_compareTieFormats: typeof compareTieFormats;
|
|
7686
7689
|
declare const index$9_competitionScheduleMatchUps: typeof competitionScheduleMatchUps;
|
|
7690
|
+
declare const index$9_courtGridRows: typeof courtGridRows;
|
|
7687
7691
|
declare const index$9_credits: typeof credits;
|
|
7688
7692
|
declare const index$9_drawMatchUps: typeof drawMatchUps;
|
|
7689
7693
|
declare const index$9_eventMatchUps: typeof eventMatchUps;
|
|
7690
7694
|
declare const index$9_filterMatchUps: typeof filterMatchUps;
|
|
7691
7695
|
declare const index$9_filterParticipants: typeof filterParticipants;
|
|
7692
7696
|
declare const index$9_findExtension: typeof findExtension;
|
|
7697
|
+
declare const index$9_findVenue: typeof findVenue;
|
|
7693
7698
|
declare const index$9_getAllDrawMatchUps: typeof getAllDrawMatchUps;
|
|
7694
7699
|
declare const index$9_getAllEventData: typeof getAllEventData;
|
|
7695
7700
|
declare const index$9_getAllStructureMatchUps: typeof getAllStructureMatchUps;
|
|
@@ -7788,6 +7793,7 @@ declare const index$9_matchUpActions: typeof matchUpActions;
|
|
|
7788
7793
|
declare const index$9_participantScaleItem: typeof participantScaleItem;
|
|
7789
7794
|
declare const index$9_participantScheduledMatchUps: typeof participantScheduledMatchUps;
|
|
7790
7795
|
declare const index$9_positionActions: typeof positionActions;
|
|
7796
|
+
declare const index$9_publicFindCourt: typeof publicFindCourt;
|
|
7791
7797
|
declare const index$9_publicFindVenue: typeof publicFindVenue;
|
|
7792
7798
|
declare const index$9_tallyParticipantResults: typeof tallyParticipantResults;
|
|
7793
7799
|
declare const index$9_tieFormatGenderValidityCheck: typeof tieFormatGenderValidityCheck;
|
|
@@ -7797,7 +7803,7 @@ declare const index$9_validMatchUps: typeof validMatchUps;
|
|
|
7797
7803
|
declare const index$9_validateCollectionDefinition: typeof validateCollectionDefinition;
|
|
7798
7804
|
declare const index$9_validateLineUp: typeof validateLineUp;
|
|
7799
7805
|
declare namespace index$9 {
|
|
7800
|
-
export { index$9_addGoesTo as addGoesTo, index$9_allCompetitionMatchUps as allCompetitionMatchUps, index$9_allDrawMatchUps as allDrawMatchUps, index$9_allEventMatchUps as allEventMatchUps, index$9_allPlayoffPositionsFilled as allPlayoffPositionsFilled, index$9_allTournamentMatchUps as allTournamentMatchUps, index$9_analyzeDraws as analyzeDraws, index$9_analyzeMatchUp as analyzeMatchUp, index$9_analyzeTournament as analyzeTournament, index$9_bulkUpdatePublishedEventIds as bulkUpdatePublishedEventIds, index$9_calculateWinCriteria as calculateWinCriteria, index$9_categoryCanContain as categoryCanContain, index$9_checkMatchUpIsComplete as checkMatchUpIsComplete, index$9_checkValidEntries as checkValidEntries, index$9_compareTieFormats as compareTieFormats, index$9_competitionScheduleMatchUps as competitionScheduleMatchUps, index$9_credits as credits, index$9_drawMatchUps as drawMatchUps, index$9_eventMatchUps as eventMatchUps, index$9_filterMatchUps as filterMatchUps, index$9_filterParticipants as filterParticipants, publicFindDrawDefinition as findDrawDefinition, index$9_findExtension as findExtension, index$9_getAllDrawMatchUps as getAllDrawMatchUps, index$9_getAllEventData as getAllEventData, index$9_getAllStructureMatchUps as getAllStructureMatchUps, index$9_getAllowedDrawTypes as getAllowedDrawTypes, index$9_getAllowedMatchUpFormats as getAllowedMatchUpFormats, index$9_getAppliedPolicies as getAppliedPolicies, index$9_getAssignedParticipantIds as getAssignedParticipantIds, index$9_getAvailableMatchUpsCount as getAvailableMatchUpsCount, index$9_getAvailablePlayoffProfiles as getAvailablePlayoffProfiles, index$9_getCategoryAgeDetails as getCategoryAgeDetails, index$9_getCheckedInParticipantIds as getCheckedInParticipantIds, index$9_getCompetitionDateRange as getCompetitionDateRange, index$9_getCompetitionMatchUps as getCompetitionMatchUps, index$9_getCompetitionParticipants as getCompetitionParticipants, index$9_getCompetitionPenalties as getCompetitionPenalties, index$9_getCompetitionVenues as getCompetitionVenues, index$9_getCourtInfo as getCourtInfo, index$9_getCourts as getCourts, index$9_getDrawData as getDrawData, index$9_getDrawDefinitionTimeItem as getDrawDefinitionTimeItem, index$9_getDrawParticipantRepresentativeIds as getDrawParticipantRepresentativeIds, index$9_getDrawStructures as getDrawStructures, index$9_getDrawTypeCoercion as getDrawTypeCoercion, index$9_getEligibleVoluntaryConsolationParticipants as getEligibleVoluntaryConsolationParticipants, index$9_getEntriesAndSeedsCount as getEntriesAndSeedsCount, index$9_getEvent as getEvent, index$9_getEventData as getEventData, index$9_getEventMatchUpFormatTiming as getEventMatchUpFormatTiming, index$9_getEventProperties as getEventProperties, index$9_getEventPublishStatus as getEventPublishStatus, index$9_getEventStructures as getEventStructures, index$9_getEventTimeItem as getEventTimeItem, index$9_getEvents as getEvents, index$9_getFlightProfile as getFlightProfile, index$9_getHomeParticipantId as getHomeParticipantId, index$9_getLinkedTournamentIds as getLinkedTournamentIds, index$9_getMatchUpCompetitiveProfile as getMatchUpCompetitiveProfile, index$9_getMatchUpContextIds as getMatchUpContextIds, index$9_getMatchUpDailyLimits as getMatchUpDailyLimits, index$9_getMatchUpDailyLimitsUpdate as getMatchUpDailyLimitsUpdate, index$9_getMatchUpDependencies as getMatchUpDependencies, index$9_getMatchUpFormat as getMatchUpFormat, index$9_getMatchUpFormatTiming as getMatchUpFormatTiming, index$9_getMatchUpFormatTimingUpdate as getMatchUpFormatTimingUpdate, index$9_getMatchUpScheduleDetails as getMatchUpScheduleDetails, index$9_getMatchUpType as getMatchUpType, index$9_getMatchUpsMap as getMatchUpsMap, index$9_getMatchUpsStats as getMatchUpsStats, index$9_getMaxEntryPosition as getMaxEntryPosition, index$9_getModifiedMatchUpFormatTiming as getModifiedMatchUpFormatTiming, index$9_getPairedParticipant as getPairedParticipant, index$9_getParticipantEventDetails as getParticipantEventDetails, index$9_getParticipantIdFinishingPositions as getParticipantIdFinishingPositions, index$9_getParticipantMembership as getParticipantMembership, index$9_getParticipantResults as getParticipantResults, index$9_getParticipantScaleItem as getParticipantScaleItem, index$9_getParticipantSchedules as getParticipantSchedules, index$9_getParticipantSignInStatus as getParticipantSignInStatus, index$9_getParticipantTimeItem as getParticipantTimeItem, index$9_getParticipants as getParticipants, index$9_getPersonRequests as getPersonRequests, index$9_getPolicyDefinitions as getPolicyDefinitions, index$9_getPositionAssignments as getPositionAssignments, index$9_getPositionsPlayedOff as getPositionsPlayedOff, index$9_getPredictiveAccuracy as getPredictiveAccuracy, index$9_getProfileRounds as getProfileRounds, index$9_getPublishState as getPublishState, index$9_getRoundMatchUps as getRoundMatchUps, index$9_getRounds as getRounds, index$9_getScaleValues as getScaleValues, index$9_getScaledEntries as getScaledEntries, index$9_getScheduledRoundsDetails as getScheduledRoundsDetails, index$9_getSchedulingProfile as getSchedulingProfile, index$9_getSchedulingProfileIssues as getSchedulingProfileIssues, index$9_getSeedingThresholds as getSeedingThresholds, index$9_getSeedsCount as getSeedsCount, index$9_getStructureSeedAssignments as getStructureSeedAssignments, index$9_getTeamLineUp as getTeamLineUp, index$9_getTieFormat as getTieFormat, index$9_getTimeItem as getTimeItem, index$9_getTournamentIds as getTournamentIds, index$9_getTournamentInfo as getTournamentInfo, index$9_getTournamentPenalties as getTournamentPenalties, index$9_getTournamentPersons as getTournamentPersons, index$9_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_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 };
|
|
7806
|
+
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_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_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 };
|
|
7801
7807
|
}
|
|
7802
7808
|
|
|
7803
7809
|
type StatCounters = {
|
|
@@ -8395,25 +8401,6 @@ declare function findMatchUpFormatTiming({ defaultRecoveryMinutes, defaultAverag
|
|
|
8395
8401
|
error?: undefined;
|
|
8396
8402
|
};
|
|
8397
8403
|
|
|
8398
|
-
declare function courtGridRows({ courtPrefix, minRowsCount, courtsData }: {
|
|
8399
|
-
courtPrefix?: string | undefined;
|
|
8400
|
-
minRowsCount: any;
|
|
8401
|
-
courtsData: any;
|
|
8402
|
-
}): {
|
|
8403
|
-
error: {
|
|
8404
|
-
message: string;
|
|
8405
|
-
code: string;
|
|
8406
|
-
};
|
|
8407
|
-
courtPrefix?: undefined;
|
|
8408
|
-
rows?: undefined;
|
|
8409
|
-
} | {
|
|
8410
|
-
courtPrefix: string;
|
|
8411
|
-
rows: any[];
|
|
8412
|
-
error?: undefined;
|
|
8413
|
-
};
|
|
8414
|
-
|
|
8415
|
-
declare function publicFindCourt(params: any): any;
|
|
8416
|
-
|
|
8417
8404
|
type AddMatchUpScheduleItemsArgs = {
|
|
8418
8405
|
inContextMatchUps?: HydratedMatchUp[];
|
|
8419
8406
|
drawMatchUps?: HydratedMatchUp[];
|
|
@@ -8476,16 +8463,13 @@ declare const mutate$4_bulkUpdateCourtAssignments: typeof bulkUpdateCourtAssignm
|
|
|
8476
8463
|
declare const mutate$4_calculateScheduleTimes: typeof calculateScheduleTimes;
|
|
8477
8464
|
declare const mutate$4_clearMatchUpSchedule: typeof clearMatchUpSchedule;
|
|
8478
8465
|
declare const mutate$4_clearScheduledMatchUps: typeof clearScheduledMatchUps;
|
|
8479
|
-
declare const mutate$4_courtGridRows: typeof courtGridRows;
|
|
8480
8466
|
declare const mutate$4_findMatchUpFormatTiming: typeof findMatchUpFormatTiming;
|
|
8481
|
-
declare const mutate$4_findVenue: typeof findVenue;
|
|
8482
8467
|
declare const mutate$4_generateBookings: typeof generateBookings;
|
|
8483
8468
|
declare const mutate$4_generateVirtualCourts: typeof generateVirtualCourts;
|
|
8484
8469
|
declare const mutate$4_matchUpScheduleChange: typeof matchUpScheduleChange;
|
|
8485
8470
|
declare const mutate$4_modifyMatchUpFormatTiming: typeof modifyMatchUpFormatTiming;
|
|
8486
8471
|
declare const mutate$4_proAutoSchedule: typeof proAutoSchedule;
|
|
8487
8472
|
declare const mutate$4_proConflicts: typeof proConflicts;
|
|
8488
|
-
declare const mutate$4_publicFindCourt: typeof publicFindCourt;
|
|
8489
8473
|
declare const mutate$4_removeEventMatchUpFormatTiming: typeof removeEventMatchUpFormatTiming;
|
|
8490
8474
|
declare const mutate$4_removeMatchUpCourtAssignment: typeof removeMatchUpCourtAssignment;
|
|
8491
8475
|
declare const mutate$4_reorderUpcomingMatchUps: typeof reorderUpcomingMatchUps;
|
|
@@ -8497,7 +8481,7 @@ declare const mutate$4_setSchedulingProfile: typeof setSchedulingProfile;
|
|
|
8497
8481
|
declare const mutate$4_toggleParticipantCheckInState: typeof toggleParticipantCheckInState;
|
|
8498
8482
|
declare const mutate$4_validateSchedulingProfile: typeof validateSchedulingProfile;
|
|
8499
8483
|
declare namespace mutate$4 {
|
|
8500
|
-
export { mutate$4_addMatchUpCourtOrder as addMatchUpCourtOrder, mutate$4_addMatchUpEndTime as addMatchUpEndTime, mutate$4_addMatchUpOfficial as addMatchUpOfficial, mutate$4_addMatchUpResumeTime as addMatchUpResumeTime, mutate$4_addMatchUpScheduleItems as addMatchUpScheduleItems, mutate$4_addMatchUpScheduledDate as addMatchUpScheduledDate, mutate$4_addMatchUpScheduledTime as addMatchUpScheduledTime, mutate$4_addMatchUpStartTime as addMatchUpStartTime, mutate$4_addMatchUpStopTime as addMatchUpStopTime, mutate$4_addSchedulingProfileRound as addSchedulingProfileRound, mutate$4_allocateTeamMatchUpCourts as allocateTeamMatchUpCourts, mutate$4_assignMatchUpCourt as assignMatchUpCourt, mutate$4_assignMatchUpVenue as assignMatchUpVenue, mutate$4_bulkRescheduleMatchUps as bulkRescheduleMatchUps, mutate$4_bulkScheduleMatchUps as bulkScheduleMatchUps, mutate$4_bulkScheduleTournamentMatchUps as bulkScheduleTournamentMatchUps, mutate$4_bulkUpdateCourtAssignments as bulkUpdateCourtAssignments, mutate$4_calculateScheduleTimes as calculateScheduleTimes, mutate$4_clearMatchUpSchedule as clearMatchUpSchedule, mutate$4_clearScheduledMatchUps as clearScheduledMatchUps, mutate$
|
|
8484
|
+
export { mutate$4_addMatchUpCourtOrder as addMatchUpCourtOrder, mutate$4_addMatchUpEndTime as addMatchUpEndTime, mutate$4_addMatchUpOfficial as addMatchUpOfficial, mutate$4_addMatchUpResumeTime as addMatchUpResumeTime, mutate$4_addMatchUpScheduleItems as addMatchUpScheduleItems, mutate$4_addMatchUpScheduledDate as addMatchUpScheduledDate, mutate$4_addMatchUpScheduledTime as addMatchUpScheduledTime, mutate$4_addMatchUpStartTime as addMatchUpStartTime, mutate$4_addMatchUpStopTime as addMatchUpStopTime, mutate$4_addSchedulingProfileRound as addSchedulingProfileRound, mutate$4_allocateTeamMatchUpCourts as allocateTeamMatchUpCourts, mutate$4_assignMatchUpCourt as assignMatchUpCourt, mutate$4_assignMatchUpVenue as assignMatchUpVenue, mutate$4_bulkRescheduleMatchUps as bulkRescheduleMatchUps, mutate$4_bulkScheduleMatchUps as bulkScheduleMatchUps, mutate$4_bulkScheduleTournamentMatchUps as bulkScheduleTournamentMatchUps, mutate$4_bulkUpdateCourtAssignments as bulkUpdateCourtAssignments, mutate$4_calculateScheduleTimes as calculateScheduleTimes, mutate$4_clearMatchUpSchedule as clearMatchUpSchedule, mutate$4_clearScheduledMatchUps as clearScheduledMatchUps, mutate$4_findMatchUpFormatTiming as findMatchUpFormatTiming, mutate$4_generateBookings as generateBookings, mutate$4_generateVirtualCourts as generateVirtualCourts, mutate$4_matchUpScheduleChange as matchUpScheduleChange, mutate$4_modifyMatchUpFormatTiming as modifyMatchUpFormatTiming, mutate$4_proAutoSchedule as proAutoSchedule, mutate$4_proConflicts as proConflicts, mutate$4_removeEventMatchUpFormatTiming as removeEventMatchUpFormatTiming, mutate$4_removeMatchUpCourtAssignment as removeMatchUpCourtAssignment, mutate$4_reorderUpcomingMatchUps as reorderUpcomingMatchUps, mutate$4_scheduleMatchUps as scheduleMatchUps, mutate$4_scheduleProfileRounds as scheduleProfileRounds, mutate$4_setMatchUpDailyLimits as setMatchUpDailyLimits, mutate$4_setMatchUpHomeParticipantId as setMatchUpHomeParticipantId, mutate$4_setSchedulingProfile as setSchedulingProfile, mutate$4_toggleParticipantCheckInState as toggleParticipantCheckInState, mutate$4_validateSchedulingProfile as validateSchedulingProfile };
|
|
8501
8485
|
}
|
|
8502
8486
|
|
|
8503
8487
|
declare const index$7_addMatchUpCourtOrder: typeof addMatchUpCourtOrder;
|
|
@@ -9229,6 +9213,8 @@ declare function setTournamentCategories({ tournamentRecord, categories }: {
|
|
|
9229
9213
|
|
|
9230
9214
|
type SetTournamentDatesArgs = {
|
|
9231
9215
|
tournamentRecord: Tournament;
|
|
9216
|
+
weekdays?: weekdayUnion[];
|
|
9217
|
+
activeDates?: string[];
|
|
9232
9218
|
startDate?: string;
|
|
9233
9219
|
endDate?: string;
|
|
9234
9220
|
};
|
|
@@ -9240,18 +9226,28 @@ declare function setTournamentDates(params: SetTournamentDatesArgs): ResultType
|
|
|
9240
9226
|
declare function setTournamentStartDate({ tournamentRecord, startDate }: {
|
|
9241
9227
|
tournamentRecord: any;
|
|
9242
9228
|
startDate: any;
|
|
9243
|
-
}): ResultType & {
|
|
9229
|
+
}): (ResultType & {
|
|
9244
9230
|
unscheduledMatchUpIds?: string[] | undefined;
|
|
9245
9231
|
datesRemoved?: string[] | undefined;
|
|
9246
9232
|
datesAdded?: string[] | undefined;
|
|
9233
|
+
}) | {
|
|
9234
|
+
error: {
|
|
9235
|
+
message: string;
|
|
9236
|
+
code: string;
|
|
9237
|
+
};
|
|
9247
9238
|
};
|
|
9248
9239
|
declare function setTournamentEndDate({ tournamentRecord, endDate }: {
|
|
9249
9240
|
tournamentRecord: any;
|
|
9250
9241
|
endDate: any;
|
|
9251
|
-
}): ResultType & {
|
|
9242
|
+
}): (ResultType & {
|
|
9252
9243
|
unscheduledMatchUpIds?: string[] | undefined;
|
|
9253
9244
|
datesRemoved?: string[] | undefined;
|
|
9254
9245
|
datesAdded?: string[] | undefined;
|
|
9246
|
+
}) | {
|
|
9247
|
+
error: {
|
|
9248
|
+
message: string;
|
|
9249
|
+
code: string;
|
|
9250
|
+
};
|
|
9255
9251
|
};
|
|
9256
9252
|
|
|
9257
9253
|
type AddTimeItemArgs = {
|
|
@@ -9995,6 +9991,7 @@ type DeleteNoticeArgs = {
|
|
|
9995
9991
|
declare function deleteNotice({ key, topic }: DeleteNoticeArgs): any;
|
|
9996
9992
|
declare function deleteNotices(): any;
|
|
9997
9993
|
declare function getTopics(): any;
|
|
9994
|
+
declare function hasTopic(topic: any): any;
|
|
9998
9995
|
type CallListenerArgs = {
|
|
9999
9996
|
notices: Notice[];
|
|
10000
9997
|
topic: string;
|
|
@@ -10057,6 +10054,7 @@ declare const globalState_getTournamentRecord: typeof getTournamentRecord;
|
|
|
10057
10054
|
declare const globalState_getTournamentRecords: typeof getTournamentRecords;
|
|
10058
10055
|
declare const globalState_globalLog: typeof globalLog;
|
|
10059
10056
|
declare const globalState_handleCaughtError: typeof handleCaughtError;
|
|
10057
|
+
declare const globalState_hasTopic: typeof hasTopic;
|
|
10060
10058
|
declare const globalState_removeTournamentRecord: typeof removeTournamentRecord;
|
|
10061
10059
|
declare const globalState_setDeepCopy: typeof setDeepCopy;
|
|
10062
10060
|
declare const globalState_setDevContext: typeof setDevContext;
|
|
@@ -10072,7 +10070,7 @@ declare const globalState_setTournamentRecord: typeof setTournamentRecord;
|
|
|
10072
10070
|
declare const globalState_setTournamentRecords: typeof setTournamentRecords;
|
|
10073
10071
|
declare const globalState_timeKeeper: typeof timeKeeper;
|
|
10074
10072
|
declare namespace globalState {
|
|
10075
|
-
export { type globalState_CallListenerArgs as CallListenerArgs, type globalState_DeepCopyAttributes as DeepCopyAttributes, type globalState_DeleteNoticeArgs as DeleteNoticeArgs, type globalState_DevContextType as DevContextType, type globalState_GetNoticesArgs as GetNoticesArgs, type globalState_HandleCaughtErrorArgs as HandleCaughtErrorArgs, type globalState_ImplemtationGlobalStateTypes as ImplemtationGlobalStateTypes, type globalState_Notice as Notice, globalState_addNotice as addNotice, globalState_callListener as callListener, globalState_createInstanceState as createInstanceState, globalState_cycleMutationStatus as cycleMutationStatus, globalState_deepCopyEnabled as deepCopyEnabled, globalState_deleteNotice as deleteNotice, globalState_deleteNotices as deleteNotices, globalState_disableNotifications as disableNotifications, globalState_enableNotifications as enableNotifications, globalState_getDevContext as getDevContext, globalState_getMethods as getMethods, globalState_getNotices as getNotices, globalState_getProvider as getProvider, globalState_getTopics as getTopics, globalState_getTournamentId as getTournamentId, globalState_getTournamentRecord as getTournamentRecord, globalState_getTournamentRecords as getTournamentRecords, globalState_globalLog as globalLog, globalState_handleCaughtError as handleCaughtError, globalState_removeTournamentRecord as removeTournamentRecord, globalState_setDeepCopy as setDeepCopy, globalState_setDevContext as setDevContext, globalState_setGlobalLog as setGlobalLog, globalState_setGlobalMethods as setGlobalMethods, globalState_setGlobalSubscriptions as setGlobalSubscriptions, globalState_setMethods as setMethods, globalState_setStateMethods as setStateMethods, globalState_setStateProvider as setStateProvider, globalState_setSubscriptions as setSubscriptions, globalState_setTournamentId as setTournamentId, globalState_setTournamentRecord as setTournamentRecord, globalState_setTournamentRecords as setTournamentRecords, globalState_timeKeeper as timeKeeper };
|
|
10073
|
+
export { type globalState_CallListenerArgs as CallListenerArgs, type globalState_DeepCopyAttributes as DeepCopyAttributes, type globalState_DeleteNoticeArgs as DeleteNoticeArgs, type globalState_DevContextType as DevContextType, type globalState_GetNoticesArgs as GetNoticesArgs, type globalState_HandleCaughtErrorArgs as HandleCaughtErrorArgs, type globalState_ImplemtationGlobalStateTypes as ImplemtationGlobalStateTypes, type globalState_Notice as Notice, globalState_addNotice as addNotice, globalState_callListener as callListener, globalState_createInstanceState as createInstanceState, globalState_cycleMutationStatus as cycleMutationStatus, globalState_deepCopyEnabled as deepCopyEnabled, globalState_deleteNotice as deleteNotice, globalState_deleteNotices as deleteNotices, globalState_disableNotifications as disableNotifications, globalState_enableNotifications as enableNotifications, globalState_getDevContext as getDevContext, globalState_getMethods as getMethods, globalState_getNotices as getNotices, globalState_getProvider as getProvider, globalState_getTopics as getTopics, globalState_getTournamentId as getTournamentId, globalState_getTournamentRecord as getTournamentRecord, globalState_getTournamentRecords as getTournamentRecords, globalState_globalLog as globalLog, globalState_handleCaughtError as handleCaughtError, globalState_hasTopic as hasTopic, globalState_removeTournamentRecord as removeTournamentRecord, globalState_setDeepCopy as setDeepCopy, globalState_setDevContext as setDevContext, globalState_setGlobalLog as setGlobalLog, globalState_setGlobalMethods as setGlobalMethods, globalState_setGlobalSubscriptions as setGlobalSubscriptions, globalState_setMethods as setMethods, globalState_setStateMethods as setStateMethods, globalState_setStateProvider as setStateProvider, globalState_setSubscriptions as setSubscriptions, globalState_setTournamentId as setTournamentId, globalState_setTournamentRecord as setTournamentRecord, globalState_setTournamentRecords as setTournamentRecords, globalState_timeKeeper as timeKeeper };
|
|
10076
10074
|
}
|
|
10077
10075
|
|
|
10078
10076
|
declare const forge: {};
|
|
@@ -11306,6 +11304,16 @@ declare const venueConstants: {
|
|
|
11306
11304
|
OUTDOOR: string;
|
|
11307
11305
|
};
|
|
11308
11306
|
|
|
11307
|
+
declare const weekdayConstants: {
|
|
11308
|
+
MON: string;
|
|
11309
|
+
TUE: string;
|
|
11310
|
+
WED: string;
|
|
11311
|
+
THU: string;
|
|
11312
|
+
FRI: string;
|
|
11313
|
+
SAT: string;
|
|
11314
|
+
SUN: string;
|
|
11315
|
+
};
|
|
11316
|
+
|
|
11309
11317
|
declare const recoveryTimeRequiredMatchUpStatuses: any[];
|
|
11310
11318
|
declare const particicipantsRequiredMatchUpStatuses: any[];
|
|
11311
11319
|
declare const validMatchUpStatuses: any[];
|
|
@@ -11373,8 +11381,9 @@ declare const index_tournamentConstants: typeof tournamentConstants;
|
|
|
11373
11381
|
declare const index_upcomingMatchUpStatuses: typeof upcomingMatchUpStatuses;
|
|
11374
11382
|
declare const index_validMatchUpStatuses: typeof validMatchUpStatuses;
|
|
11375
11383
|
declare const index_venueConstants: typeof venueConstants;
|
|
11384
|
+
declare const index_weekdayConstants: typeof weekdayConstants;
|
|
11376
11385
|
declare namespace index {
|
|
11377
|
-
export { index_activeMatchUpStatuses as activeMatchUpStatuses, index_auditConstants as auditConstants, index_completedMatchUpStatuses as completedMatchUpStatuses, index_directingMatchUpStatuses as directingMatchUpStatuses, index_displayConstants as displayConstants, index_drawDefinitionConstants as drawDefinitionConstants, index_entryStatusConstants as entryStatusConstants, index_errorConditionConstants as errorConditionConstants, index_eventConstants as eventConstants, index_extensionConstants as extensionConstants, index_flightConstants as flightConstants, index_genderConstants as genderConstants, index_keyValueConstants as keyValueConstants, index_matchUpActionConstants as matchUpActionConstants, index_matchUpStatusConstants as matchUpStatusConstants, index_matchUpTypes as matchUpTypes, index_nonDirectingMatchUpStatuses as nonDirectingMatchUpStatuses, index_particicipantsRequiredMatchUpStatuses as particicipantsRequiredMatchUpStatuses, index_participantConstants as participantConstants, index_participantRoles as participantRoles, index_participantTypes as participantTypes, index_penaltyConstants as penaltyConstants, index_policyConstants as policyConstants, index_positionActionConstants as positionActionConstants, index_ratingConstants as ratingConstants, index_recoveryTimeRequiredMatchUpStatuses as recoveryTimeRequiredMatchUpStatuses, index_requestConstants as requestConstants, index_resourceContants as resourceContants, index_resultConstants as resultConstants, index_scaleConstants as scaleConstants, index_scheduleConstants as scheduleConstants, index_sortingConstants as sortingConstants, index_surfaceConstants as surfaceConstants, index_tieFormatConstants as tieFormatConstants, index_timeItemConstants as timeItemConstants, index_topicConstants as topicConstants, index_tournamentConstants as tournamentConstants, index_upcomingMatchUpStatuses as upcomingMatchUpStatuses, index_validMatchUpStatuses as validMatchUpStatuses, index_venueConstants as venueConstants };
|
|
11386
|
+
export { index_activeMatchUpStatuses as activeMatchUpStatuses, index_auditConstants as auditConstants, index_completedMatchUpStatuses as completedMatchUpStatuses, index_directingMatchUpStatuses as directingMatchUpStatuses, index_displayConstants as displayConstants, index_drawDefinitionConstants as drawDefinitionConstants, index_entryStatusConstants as entryStatusConstants, index_errorConditionConstants as errorConditionConstants, index_eventConstants as eventConstants, index_extensionConstants as extensionConstants, index_flightConstants as flightConstants, index_genderConstants as genderConstants, index_keyValueConstants as keyValueConstants, index_matchUpActionConstants as matchUpActionConstants, index_matchUpStatusConstants as matchUpStatusConstants, index_matchUpTypes as matchUpTypes, index_nonDirectingMatchUpStatuses as nonDirectingMatchUpStatuses, index_particicipantsRequiredMatchUpStatuses as particicipantsRequiredMatchUpStatuses, index_participantConstants as participantConstants, index_participantRoles as participantRoles, index_participantTypes as participantTypes, index_penaltyConstants as penaltyConstants, index_policyConstants as policyConstants, index_positionActionConstants as positionActionConstants, index_ratingConstants as ratingConstants, index_recoveryTimeRequiredMatchUpStatuses as recoveryTimeRequiredMatchUpStatuses, index_requestConstants as requestConstants, index_resourceContants as resourceContants, index_resultConstants as resultConstants, index_scaleConstants as scaleConstants, index_scheduleConstants as scheduleConstants, index_sortingConstants as sortingConstants, index_surfaceConstants as surfaceConstants, index_tieFormatConstants as tieFormatConstants, index_timeItemConstants as timeItemConstants, index_topicConstants as topicConstants, index_tournamentConstants as tournamentConstants, index_upcomingMatchUpStatuses as upcomingMatchUpStatuses, index_validMatchUpStatuses as validMatchUpStatuses, index_venueConstants as venueConstants, index_weekdayConstants as weekdayConstants };
|
|
11378
11387
|
}
|
|
11379
11388
|
|
|
11380
|
-
export { activeMatchUpStatuses, askEngine, asyncEngine, auditConstants, competitionEngine, index$k as competitionGovernor, completedMatchUpStatuses, directingMatchUpStatuses, displayConstants, drawDefinitionConstants, index$j as drawsGovernor, index$i as entriesGovernor, entryStatusConstants, errorConditionConstants, eventConstants, index$h as eventGovernor, extensionConstants, index as factoryConstants, fixtures, flightConstants, forge, genderConstants, index$g as generationGovernor, globalState, index$2 as governors, keyValueConstants, matchUpActionConstants, matchUpEngine, index$f as matchUpFormatCode, index$f as matchUpFormatGovernor, index$e as matchUpGovernor, matchUpStatusConstants, matchUpTypes, mocksEngine, index$d as mocksGovernor, nonDirectingMatchUpStatuses, particicipantsRequiredMatchUpStatuses, participantConstants, index$c as participantGovernor, participantRoles, participantTypes, penaltyConstants, policyConstants, index$b as policyGovernor, positionActionConstants, index$a as publishingGovernor, index$9 as queryGovernor, ratingConstants, recoveryTimeRequiredMatchUpStatuses, index$8 as reportGovernor, requestConstants, resourceContants, resultConstants, scaleConstants, scaleEngine, scheduleConstants, index$7 as scheduleGovernor, index$6 as scoreGovernor, sortingConstants, surfaceConstants, syncEngine, tieFormatConstants, index$5 as tieFormatGovernor, timeItemConstants, index$1 as tools, topicConstants, tournamentConstants, tournamentEngine, index$4 as tournamentGovernor, upcomingMatchUpStatuses, index$1 as utilities, validMatchUpStatuses, venueConstants, index$3 as venueGovernor, factoryVersion as version };
|
|
11389
|
+
export { activeMatchUpStatuses, askEngine, asyncEngine, auditConstants, competitionEngine, index$k as competitionGovernor, completedMatchUpStatuses, directingMatchUpStatuses, displayConstants, drawDefinitionConstants, index$j as drawsGovernor, index$i as entriesGovernor, entryStatusConstants, errorConditionConstants, eventConstants, index$h as eventGovernor, extensionConstants, index as factoryConstants, fixtures, flightConstants, forge, genderConstants, index$g as generationGovernor, globalState, index$2 as governors, keyValueConstants, matchUpActionConstants, matchUpEngine, index$f as matchUpFormatCode, index$f as matchUpFormatGovernor, index$e as matchUpGovernor, matchUpStatusConstants, matchUpTypes, mocksEngine, index$d as mocksGovernor, nonDirectingMatchUpStatuses, particicipantsRequiredMatchUpStatuses, participantConstants, index$c as participantGovernor, participantRoles, participantTypes, penaltyConstants, policyConstants, index$b as policyGovernor, positionActionConstants, index$a as publishingGovernor, index$9 as queryGovernor, ratingConstants, recoveryTimeRequiredMatchUpStatuses, index$8 as reportGovernor, requestConstants, resourceContants, resultConstants, scaleConstants, scaleEngine, scheduleConstants, index$7 as scheduleGovernor, index$6 as scoreGovernor, sortingConstants, surfaceConstants, syncEngine, tieFormatConstants, index$5 as tieFormatGovernor, timeItemConstants, index$1 as tools, topicConstants, tournamentConstants, tournamentEngine, index$4 as tournamentGovernor, upcomingMatchUpStatuses, index$1 as utilities, validMatchUpStatuses, venueConstants, index$3 as venueGovernor, factoryVersion as version, weekdayConstants };
|