tods-competition-factory 2.0.50 → 2.0.52
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 +40 -20
- package/dist/tods-competition-factory.development.cjs.js +317 -146
- package/dist/tods-competition-factory.development.cjs.js.map +1 -1
- package/dist/tods-competition-factory.production.cjs.min.js +1 -1
- package/dist/tods-competition-factory.production.cjs.min.js.map +1 -1
- package/package.json +2 -2
|
@@ -3619,6 +3619,7 @@ type GenerateDrawMaticRoundArgs = {
|
|
|
3619
3619
|
participantIds?: string[];
|
|
3620
3620
|
dynamicRatings?: boolean;
|
|
3621
3621
|
refreshDynamic?: boolean;
|
|
3622
|
+
minimizeDelta?: boolean;
|
|
3622
3623
|
encounterValue?: number;
|
|
3623
3624
|
sameTeamValue?: number;
|
|
3624
3625
|
maxIterations?: number;
|
|
@@ -3639,6 +3640,7 @@ type DrawMaticRoundResult = {
|
|
|
3639
3640
|
participantIdPairings?: string[][];
|
|
3640
3641
|
candidatesCount?: number;
|
|
3641
3642
|
outputScaleName?: string;
|
|
3643
|
+
deltaCandidate?: any;
|
|
3642
3644
|
roundNumber?: number;
|
|
3643
3645
|
matchUps?: MatchUp[];
|
|
3644
3646
|
iterations?: number;
|
|
@@ -3646,7 +3648,7 @@ type DrawMaticRoundResult = {
|
|
|
3646
3648
|
maxDelta?: number;
|
|
3647
3649
|
maxDiff?: number;
|
|
3648
3650
|
};
|
|
3649
|
-
declare function generateDrawMaticRound(
|
|
3651
|
+
declare function generateDrawMaticRound(params: GenerateDrawMaticRoundArgs): ResultType & DrawMaticRoundResult;
|
|
3650
3652
|
|
|
3651
3653
|
type GenerateVoluntaryConsolationArgs = {
|
|
3652
3654
|
playoffAttributes?: PlayoffAttributes;
|
|
@@ -4423,6 +4425,7 @@ declare function addDrawDefinition(params: AddDrawDefinitionArgs): ResultType &
|
|
|
4423
4425
|
type DeleteDrawDefinitionArgs = {
|
|
4424
4426
|
policyDefinitions?: PolicyDefinitions;
|
|
4425
4427
|
tournamentRecord: Tournament;
|
|
4428
|
+
eventDataParams?: any;
|
|
4426
4429
|
autoPublish?: boolean;
|
|
4427
4430
|
drawIds?: string[];
|
|
4428
4431
|
auditData?: any;
|
|
@@ -6383,11 +6386,7 @@ declare function publicFindParticipant(params: PublicFindParticipantArgs): {
|
|
|
6383
6386
|
stack?: any;
|
|
6384
6387
|
};
|
|
6385
6388
|
|
|
6386
|
-
declare function addDynamicRatings(
|
|
6387
|
-
tournamentRecord: any;
|
|
6388
|
-
modifiedScaleValues: any;
|
|
6389
|
-
removePriorValues: any;
|
|
6390
|
-
}): any;
|
|
6389
|
+
declare function addDynamicRatings(params: any): any;
|
|
6391
6390
|
|
|
6392
6391
|
type CreateGroupParticipantType = {
|
|
6393
6392
|
participantRoleResponsibilities?: string[];
|
|
@@ -6482,6 +6481,15 @@ declare function scaledTeamAssignment({ clearExistingAssignments, individualPart
|
|
|
6482
6481
|
scaledParticipant?: undefined;
|
|
6483
6482
|
};
|
|
6484
6483
|
|
|
6484
|
+
declare function removeRatings(params: {
|
|
6485
|
+
tournamentRecord: Tournament;
|
|
6486
|
+
eventType: EventTypeUnion;
|
|
6487
|
+
asDynamic?: boolean;
|
|
6488
|
+
ratingType: string;
|
|
6489
|
+
}): ResultType & {
|
|
6490
|
+
valid?: boolean | undefined;
|
|
6491
|
+
};
|
|
6492
|
+
|
|
6485
6493
|
declare function removePenalty(params: any): {
|
|
6486
6494
|
error?: ErrorType | undefined;
|
|
6487
6495
|
success?: boolean | undefined;
|
|
@@ -6619,11 +6627,12 @@ declare const mutate$7_removeIndividualParticipantIds: typeof removeIndividualPa
|
|
|
6619
6627
|
declare const mutate$7_removeParticipantIdsFromAllTeams: typeof removeParticipantIdsFromAllTeams;
|
|
6620
6628
|
declare const mutate$7_removePenalty: typeof removePenalty;
|
|
6621
6629
|
declare const mutate$7_removePersonRequests: typeof removePersonRequests;
|
|
6630
|
+
declare const mutate$7_removeRatings: typeof removeRatings;
|
|
6622
6631
|
declare const mutate$7_scaledTeamAssignment: typeof scaledTeamAssignment;
|
|
6623
6632
|
declare const mutate$7_setParticipantScaleItem: typeof setParticipantScaleItem;
|
|
6624
6633
|
declare const mutate$7_setParticipantScaleItems: typeof setParticipantScaleItems;
|
|
6625
6634
|
declare namespace mutate$7 {
|
|
6626
|
-
export { mutate$7_addDynamicRatings as addDynamicRatings, mutate$7_addIndividualParticipantIds as addIndividualParticipantIds, mutate$7_addParticipant as addParticipant, mutate$7_addParticipants as addParticipants, mutate$7_addPenalty as addPenalty, mutate$7_addPersonRequests as addPersonRequests, mutate$7_addPersons as addPersons, mutate$7_createGroupParticipant as createGroupParticipant, mutate$7_createTeamsFromParticipantAttributes as createTeamsFromParticipantAttributes, mutate$7_deleteParticipants as deleteParticipants, publicFindParticipant as findParticipant, mutate$7_mergeParticipants as mergeParticipants, mutate$7_modifyIndividualParticipantIds as modifyIndividualParticipantIds, mutate$7_modifyParticipant as modifyParticipant, mutate$7_modifyParticipantName as modifyParticipantName, mutate$7_modifyParticipantOtherName as modifyParticipantOtherName, mutate$7_modifyParticipantsSignInStatus as modifyParticipantsSignInStatus, mutate$7_modifyPenalty as modifyPenalty, mutate$7_modifyPersonRequests as modifyPersonRequests, mutate$7_regenerateParticipantNames as regenerateParticipantNames, mutate$7_removeIndividualParticipantIds as removeIndividualParticipantIds, mutate$7_removeParticipantIdsFromAllTeams as removeParticipantIdsFromAllTeams, mutate$7_removePenalty as removePenalty, mutate$7_removePersonRequests as removePersonRequests, mutate$7_scaledTeamAssignment as scaledTeamAssignment, mutate$7_setParticipantScaleItem as setParticipantScaleItem, mutate$7_setParticipantScaleItems as setParticipantScaleItems };
|
|
6635
|
+
export { mutate$7_addDynamicRatings as addDynamicRatings, mutate$7_addIndividualParticipantIds as addIndividualParticipantIds, mutate$7_addParticipant as addParticipant, mutate$7_addParticipants as addParticipants, mutate$7_addPenalty as addPenalty, mutate$7_addPersonRequests as addPersonRequests, mutate$7_addPersons as addPersons, mutate$7_createGroupParticipant as createGroupParticipant, mutate$7_createTeamsFromParticipantAttributes as createTeamsFromParticipantAttributes, mutate$7_deleteParticipants as deleteParticipants, publicFindParticipant as findParticipant, mutate$7_mergeParticipants as mergeParticipants, mutate$7_modifyIndividualParticipantIds as modifyIndividualParticipantIds, mutate$7_modifyParticipant as modifyParticipant, mutate$7_modifyParticipantName as modifyParticipantName, mutate$7_modifyParticipantOtherName as modifyParticipantOtherName, mutate$7_modifyParticipantsSignInStatus as modifyParticipantsSignInStatus, mutate$7_modifyPenalty as modifyPenalty, mutate$7_modifyPersonRequests as modifyPersonRequests, mutate$7_regenerateParticipantNames as regenerateParticipantNames, mutate$7_removeIndividualParticipantIds as removeIndividualParticipantIds, mutate$7_removeParticipantIdsFromAllTeams as removeParticipantIdsFromAllTeams, mutate$7_removePenalty as removePenalty, mutate$7_removePersonRequests as removePersonRequests, mutate$7_removeRatings as removeRatings, mutate$7_scaledTeamAssignment as scaledTeamAssignment, mutate$7_setParticipantScaleItem as setParticipantScaleItem, mutate$7_setParticipantScaleItems as setParticipantScaleItems };
|
|
6627
6636
|
}
|
|
6628
6637
|
|
|
6629
6638
|
declare function getCompetitionParticipants(params: any): ResultType & {
|
|
@@ -6856,12 +6865,13 @@ declare const index$c_removeIndividualParticipantIds: typeof removeIndividualPar
|
|
|
6856
6865
|
declare const index$c_removeParticipantIdsFromAllTeams: typeof removeParticipantIdsFromAllTeams;
|
|
6857
6866
|
declare const index$c_removePenalty: typeof removePenalty;
|
|
6858
6867
|
declare const index$c_removePersonRequests: typeof removePersonRequests;
|
|
6868
|
+
declare const index$c_removeRatings: typeof removeRatings;
|
|
6859
6869
|
declare const index$c_scaledTeamAssignment: typeof scaledTeamAssignment;
|
|
6860
6870
|
declare const index$c_setParticipantScaleItem: typeof setParticipantScaleItem;
|
|
6861
6871
|
declare const index$c_setParticipantScaleItems: typeof setParticipantScaleItems;
|
|
6862
6872
|
declare const index$c_validateLineUp: typeof validateLineUp;
|
|
6863
6873
|
declare namespace index$c {
|
|
6864
|
-
export { index$c_addDynamicRatings as addDynamicRatings, index$c_addIndividualParticipantIds as addIndividualParticipantIds, index$c_addParticipant as addParticipant, index$c_addParticipants as addParticipants, index$c_addPenalty as addPenalty, index$c_addPersonRequests as addPersonRequests, index$c_addPersons as addPersons, index$c_createGroupParticipant as createGroupParticipant, index$c_createTeamsFromParticipantAttributes as createTeamsFromParticipantAttributes, index$c_deleteParticipants as deleteParticipants, index$c_filterParticipants as filterParticipants, publicFindParticipant as findParticipant, index$c_getCompetitionParticipants as getCompetitionParticipants, index$c_getPairedParticipant as getPairedParticipant, index$c_getParticipantEventDetails as getParticipantEventDetails, index$c_getParticipantMembership as getParticipantMembership, index$c_getParticipantScaleItem as getParticipantScaleItem, index$c_getParticipantSchedules as getParticipantSchedules, index$c_getParticipantSignInStatus as getParticipantSignInStatus, index$c_getParticipantTimeItem as getParticipantTimeItem, index$c_getParticipants as getParticipants, index$c_getScaleValues as getScaleValues, index$c_mergeParticipants as mergeParticipants, index$c_modifyIndividualParticipantIds as modifyIndividualParticipantIds, index$c_modifyParticipant as modifyParticipant, index$c_modifyParticipantName as modifyParticipantName, index$c_modifyParticipantOtherName as modifyParticipantOtherName, index$c_modifyParticipantsSignInStatus as modifyParticipantsSignInStatus, index$c_modifyPenalty as modifyPenalty, index$c_modifyPersonRequests as modifyPersonRequests, mutate$7 as mutate, index$c_participantScaleItem as participantScaleItem, query$7 as query, index$c_regenerateParticipantNames as regenerateParticipantNames, index$c_removeIndividualParticipantIds as removeIndividualParticipantIds, index$c_removeParticipantIdsFromAllTeams as removeParticipantIdsFromAllTeams, index$c_removePenalty as removePenalty, index$c_removePersonRequests as removePersonRequests, index$c_scaledTeamAssignment as scaledTeamAssignment, index$c_setParticipantScaleItem as setParticipantScaleItem, index$c_setParticipantScaleItems as setParticipantScaleItems, index$c_validateLineUp as validateLineUp };
|
|
6874
|
+
export { index$c_addDynamicRatings as addDynamicRatings, index$c_addIndividualParticipantIds as addIndividualParticipantIds, index$c_addParticipant as addParticipant, index$c_addParticipants as addParticipants, index$c_addPenalty as addPenalty, index$c_addPersonRequests as addPersonRequests, index$c_addPersons as addPersons, index$c_createGroupParticipant as createGroupParticipant, index$c_createTeamsFromParticipantAttributes as createTeamsFromParticipantAttributes, index$c_deleteParticipants as deleteParticipants, index$c_filterParticipants as filterParticipants, publicFindParticipant as findParticipant, index$c_getCompetitionParticipants as getCompetitionParticipants, index$c_getPairedParticipant as getPairedParticipant, index$c_getParticipantEventDetails as getParticipantEventDetails, index$c_getParticipantMembership as getParticipantMembership, index$c_getParticipantScaleItem as getParticipantScaleItem, index$c_getParticipantSchedules as getParticipantSchedules, index$c_getParticipantSignInStatus as getParticipantSignInStatus, index$c_getParticipantTimeItem as getParticipantTimeItem, index$c_getParticipants as getParticipants, index$c_getScaleValues as getScaleValues, index$c_mergeParticipants as mergeParticipants, index$c_modifyIndividualParticipantIds as modifyIndividualParticipantIds, index$c_modifyParticipant as modifyParticipant, index$c_modifyParticipantName as modifyParticipantName, index$c_modifyParticipantOtherName as modifyParticipantOtherName, index$c_modifyParticipantsSignInStatus as modifyParticipantsSignInStatus, index$c_modifyPenalty as modifyPenalty, index$c_modifyPersonRequests as modifyPersonRequests, mutate$7 as mutate, index$c_participantScaleItem as participantScaleItem, query$7 as query, index$c_regenerateParticipantNames as regenerateParticipantNames, index$c_removeIndividualParticipantIds as removeIndividualParticipantIds, index$c_removeParticipantIdsFromAllTeams as removeParticipantIdsFromAllTeams, index$c_removePenalty as removePenalty, index$c_removePersonRequests as removePersonRequests, index$c_removeRatings as removeRatings, index$c_scaledTeamAssignment as scaledTeamAssignment, index$c_setParticipantScaleItem as setParticipantScaleItem, index$c_setParticipantScaleItems as setParticipantScaleItems, index$c_validateLineUp as validateLineUp };
|
|
6865
6875
|
}
|
|
6866
6876
|
|
|
6867
6877
|
type AttachPoliciesArgs = {
|
|
@@ -7052,6 +7062,7 @@ type PublishEventType = {
|
|
|
7052
7062
|
tournamentRecord: Tournament;
|
|
7053
7063
|
removePriorValues?: boolean;
|
|
7054
7064
|
returnEventData?: boolean;
|
|
7065
|
+
eventDataParams?: any;
|
|
7055
7066
|
drawIds?: string[];
|
|
7056
7067
|
status?: string;
|
|
7057
7068
|
event?: Event$1;
|
|
@@ -7061,15 +7072,8 @@ type PublishEventType = {
|
|
|
7061
7072
|
drawIdsToRemove?: string[];
|
|
7062
7073
|
drawIdsToAdd?: string[];
|
|
7063
7074
|
};
|
|
7064
|
-
declare function publishEvent(params: PublishEventType): ResultType
|
|
7065
|
-
|
|
7066
|
-
message: string;
|
|
7067
|
-
code: string;
|
|
7068
|
-
};
|
|
7069
|
-
} | {
|
|
7070
|
-
eventData: any;
|
|
7071
|
-
success: boolean;
|
|
7072
|
-
error?: undefined;
|
|
7075
|
+
declare function publishEvent(params: PublishEventType): ResultType & {
|
|
7076
|
+
eventData?: any;
|
|
7073
7077
|
};
|
|
7074
7078
|
|
|
7075
7079
|
declare const mutate$5_publishEvent: typeof publishEvent;
|
|
@@ -9018,6 +9022,19 @@ declare function setTournamentStatus({ tournamentRecord, status }: {
|
|
|
9018
9022
|
info?: undefined;
|
|
9019
9023
|
};
|
|
9020
9024
|
|
|
9025
|
+
type RemoveOnlineResourceArgs = {
|
|
9026
|
+
onlineResource: OnlineResource;
|
|
9027
|
+
drawDefinition?: DrawDefinition;
|
|
9028
|
+
tournamentRecord: Tournament;
|
|
9029
|
+
organisationId?: string;
|
|
9030
|
+
participantId?: string;
|
|
9031
|
+
personId?: string;
|
|
9032
|
+
courtId?: string;
|
|
9033
|
+
venueId?: string;
|
|
9034
|
+
event?: Event;
|
|
9035
|
+
};
|
|
9036
|
+
declare function removeOnlineResource(params: RemoveOnlineResourceArgs): ResultType;
|
|
9037
|
+
|
|
9021
9038
|
type RemoveExtensionResult = {
|
|
9022
9039
|
success?: boolean;
|
|
9023
9040
|
error?: ErrorType;
|
|
@@ -9062,7 +9079,7 @@ type AddOnlineResourceArgs = {
|
|
|
9062
9079
|
venueId?: string;
|
|
9063
9080
|
event?: Event$1;
|
|
9064
9081
|
};
|
|
9065
|
-
declare function addOnlineResource(
|
|
9082
|
+
declare function addOnlineResource(params: AddOnlineResourceArgs): ResultType;
|
|
9066
9083
|
|
|
9067
9084
|
type AddExtensionArgs$1 = {
|
|
9068
9085
|
tournamentRecords?: TournamentRecords;
|
|
@@ -9257,6 +9274,7 @@ declare const mutate$1_removeDrawDefinitionExtension: typeof removeDrawDefinitio
|
|
|
9257
9274
|
declare const mutate$1_removeEventExtension: typeof removeEventExtension;
|
|
9258
9275
|
declare const mutate$1_removeExtension: typeof removeExtension;
|
|
9259
9276
|
declare const mutate$1_removeNotes: typeof removeNotes;
|
|
9277
|
+
declare const mutate$1_removeOnlineResource: typeof removeOnlineResource;
|
|
9260
9278
|
declare const mutate$1_removeParticipantExtension: typeof removeParticipantExtension;
|
|
9261
9279
|
declare const mutate$1_removeTournamentExtension: typeof removeTournamentExtension;
|
|
9262
9280
|
declare const mutate$1_setTournamentCategories: typeof setTournamentCategories;
|
|
@@ -9267,7 +9285,7 @@ declare const mutate$1_setTournamentNotes: typeof setTournamentNotes;
|
|
|
9267
9285
|
declare const mutate$1_setTournamentStartDate: typeof setTournamentStartDate;
|
|
9268
9286
|
declare const mutate$1_setTournamentStatus: typeof setTournamentStatus;
|
|
9269
9287
|
declare namespace mutate$1 {
|
|
9270
|
-
export { mutate$1_addDrawDefinitionExtension as addDrawDefinitionExtension, mutate$1_addEventExtension as addEventExtension, mutate$1_addEventTimeItem as addEventTimeItem, mutate$1_addExtension as addExtension, mutate$1_addNotes as addNotes, mutate$1_addOnlineResource as addOnlineResource, mutate$1_addParticipantExtension as addParticipantExtension, mutate$1_addParticipantTimeItem as addParticipantTimeItem, mutate$1_addTimeItem as addTimeItem, mutate$1_addTournamentExtension as addTournamentExtension, mutate$1_addTournamentTimeItem as addTournamentTimeItem, mutate$1_removeDrawDefinitionExtension as removeDrawDefinitionExtension, mutate$1_removeEventExtension as removeEventExtension, mutate$1_removeExtension as removeExtension, mutate$1_removeNotes as removeNotes, mutate$1_removeParticipantExtension as removeParticipantExtension, mutate$1_removeTournamentExtension as removeTournamentExtension, mutate$1_setTournamentCategories as setTournamentCategories, mutate$1_setTournamentDates as setTournamentDates, mutate$1_setTournamentEndDate as setTournamentEndDate, mutate$1_setTournamentName as setTournamentName, mutate$1_setTournamentNotes as setTournamentNotes, mutate$1_setTournamentStartDate as setTournamentStartDate, mutate$1_setTournamentStatus as setTournamentStatus };
|
|
9288
|
+
export { mutate$1_addDrawDefinitionExtension as addDrawDefinitionExtension, mutate$1_addEventExtension as addEventExtension, mutate$1_addEventTimeItem as addEventTimeItem, mutate$1_addExtension as addExtension, mutate$1_addNotes as addNotes, mutate$1_addOnlineResource as addOnlineResource, mutate$1_addParticipantExtension as addParticipantExtension, mutate$1_addParticipantTimeItem as addParticipantTimeItem, mutate$1_addTimeItem as addTimeItem, mutate$1_addTournamentExtension as addTournamentExtension, mutate$1_addTournamentTimeItem as addTournamentTimeItem, mutate$1_removeDrawDefinitionExtension as removeDrawDefinitionExtension, mutate$1_removeEventExtension as removeEventExtension, mutate$1_removeExtension as removeExtension, mutate$1_removeNotes as removeNotes, mutate$1_removeOnlineResource as removeOnlineResource, mutate$1_removeParticipantExtension as removeParticipantExtension, mutate$1_removeTournamentExtension as removeTournamentExtension, mutate$1_setTournamentCategories as setTournamentCategories, mutate$1_setTournamentDates as setTournamentDates, mutate$1_setTournamentEndDate as setTournamentEndDate, mutate$1_setTournamentName as setTournamentName, mutate$1_setTournamentNotes as setTournamentNotes, mutate$1_setTournamentStartDate as setTournamentStartDate, mutate$1_setTournamentStatus as setTournamentStatus };
|
|
9271
9289
|
}
|
|
9272
9290
|
|
|
9273
9291
|
declare const index$4_addDrawDefinitionExtension: typeof addDrawDefinitionExtension;
|
|
@@ -9298,6 +9316,7 @@ declare const index$4_removeDrawDefinitionExtension: typeof removeDrawDefinition
|
|
|
9298
9316
|
declare const index$4_removeEventExtension: typeof removeEventExtension;
|
|
9299
9317
|
declare const index$4_removeExtension: typeof removeExtension;
|
|
9300
9318
|
declare const index$4_removeNotes: typeof removeNotes;
|
|
9319
|
+
declare const index$4_removeOnlineResource: typeof removeOnlineResource;
|
|
9301
9320
|
declare const index$4_removeParticipantExtension: typeof removeParticipantExtension;
|
|
9302
9321
|
declare const index$4_removeTournamentExtension: typeof removeTournamentExtension;
|
|
9303
9322
|
declare const index$4_setTournamentCategories: typeof setTournamentCategories;
|
|
@@ -9308,7 +9327,7 @@ declare const index$4_setTournamentNotes: typeof setTournamentNotes;
|
|
|
9308
9327
|
declare const index$4_setTournamentStartDate: typeof setTournamentStartDate;
|
|
9309
9328
|
declare const index$4_setTournamentStatus: typeof setTournamentStatus;
|
|
9310
9329
|
declare namespace index$4 {
|
|
9311
|
-
export { index$4_addDrawDefinitionExtension as addDrawDefinitionExtension, index$4_addEventExtension as addEventExtension, index$4_addEventTimeItem as addEventTimeItem, index$4_addExtension as addExtension, index$4_addNotes as addNotes, index$4_addOnlineResource as addOnlineResource, index$4_addParticipantExtension as addParticipantExtension, index$4_addParticipantTimeItem as addParticipantTimeItem, index$4_addTimeItem as addTimeItem, index$4_addTournamentExtension as addTournamentExtension, index$4_addTournamentTimeItem as addTournamentTimeItem, index$4_analyzeDraws as analyzeDraws, index$4_analyzeTournament as analyzeTournament, index$4_getAllowedDrawTypes as getAllowedDrawTypes, index$4_getAllowedMatchUpFormats as getAllowedMatchUpFormats, index$4_getAppliedPolicies as getAppliedPolicies, index$4_getCompetitionDateRange as getCompetitionDateRange, index$4_getCompetitionPenalties as getCompetitionPenalties, index$4_getPolicyDefinitions as getPolicyDefinitions, index$4_getTournamentInfo as getTournamentInfo, index$4_getTournamentPenalties as getTournamentPenalties, index$4_getTournamentPersons as getTournamentPersons, index$4_getTournamentStructures as getTournamentStructures, index$4_getTournamentTimeItem as getTournamentTimeItem, mutate$1 as mutate, query$4 as query, index$4_removeDrawDefinitionExtension as removeDrawDefinitionExtension, index$4_removeEventExtension as removeEventExtension, index$4_removeExtension as removeExtension, index$4_removeNotes as removeNotes, index$4_removeParticipantExtension as removeParticipantExtension, index$4_removeTournamentExtension as removeTournamentExtension, index$4_setTournamentCategories as setTournamentCategories, index$4_setTournamentDates as setTournamentDates, index$4_setTournamentEndDate as setTournamentEndDate, index$4_setTournamentName as setTournamentName, index$4_setTournamentNotes as setTournamentNotes, index$4_setTournamentStartDate as setTournamentStartDate, index$4_setTournamentStatus as setTournamentStatus };
|
|
9330
|
+
export { index$4_addDrawDefinitionExtension as addDrawDefinitionExtension, index$4_addEventExtension as addEventExtension, index$4_addEventTimeItem as addEventTimeItem, index$4_addExtension as addExtension, index$4_addNotes as addNotes, index$4_addOnlineResource as addOnlineResource, index$4_addParticipantExtension as addParticipantExtension, index$4_addParticipantTimeItem as addParticipantTimeItem, index$4_addTimeItem as addTimeItem, index$4_addTournamentExtension as addTournamentExtension, index$4_addTournamentTimeItem as addTournamentTimeItem, index$4_analyzeDraws as analyzeDraws, index$4_analyzeTournament as analyzeTournament, index$4_getAllowedDrawTypes as getAllowedDrawTypes, index$4_getAllowedMatchUpFormats as getAllowedMatchUpFormats, index$4_getAppliedPolicies as getAppliedPolicies, index$4_getCompetitionDateRange as getCompetitionDateRange, index$4_getCompetitionPenalties as getCompetitionPenalties, index$4_getPolicyDefinitions as getPolicyDefinitions, index$4_getTournamentInfo as getTournamentInfo, index$4_getTournamentPenalties as getTournamentPenalties, index$4_getTournamentPersons as getTournamentPersons, index$4_getTournamentStructures as getTournamentStructures, index$4_getTournamentTimeItem as getTournamentTimeItem, mutate$1 as mutate, query$4 as query, index$4_removeDrawDefinitionExtension as removeDrawDefinitionExtension, index$4_removeEventExtension as removeEventExtension, index$4_removeExtension as removeExtension, index$4_removeNotes as removeNotes, index$4_removeOnlineResource as removeOnlineResource, index$4_removeParticipantExtension as removeParticipantExtension, index$4_removeTournamentExtension as removeTournamentExtension, index$4_setTournamentCategories as setTournamentCategories, index$4_setTournamentDates as setTournamentDates, index$4_setTournamentEndDate as setTournamentEndDate, index$4_setTournamentName as setTournamentName, index$4_setTournamentNotes as setTournamentNotes, index$4_setTournamentStartDate as setTournamentStartDate, index$4_setTournamentStatus as setTournamentStatus };
|
|
9312
9331
|
}
|
|
9313
9332
|
|
|
9314
9333
|
declare const generate_generateCourts: typeof generateCourts;
|
|
@@ -10901,6 +10920,7 @@ declare const extensionConstants: {
|
|
|
10901
10920
|
PERSON_REQUESTS: string;
|
|
10902
10921
|
POSITION_ACTIONS: string;
|
|
10903
10922
|
RANKING_POINTS: string;
|
|
10923
|
+
REGISTRATION: string;
|
|
10904
10924
|
ROUND_TARGET: string;
|
|
10905
10925
|
SCHEDULE_LIMITS: string;
|
|
10906
10926
|
SCHEDULE_TIMING: string;
|