tods-competition-factory 2.0.19 → 2.0.21
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 +749 -700
- package/dist/tods-competition-factory.development.cjs.js +4805 -4674
- 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 +11 -9
|
@@ -66,9 +66,11 @@ interface Tournament {
|
|
|
66
66
|
tournamentName?: string;
|
|
67
67
|
tournamentOtherIds?: UnifiedTournamentID[];
|
|
68
68
|
tournamentRank?: string;
|
|
69
|
+
tournamentStatus?: TournamentStatusUnion;
|
|
69
70
|
updatedAt?: Date | string;
|
|
70
71
|
venues?: Venue[];
|
|
71
72
|
}
|
|
73
|
+
type TournamentStatusUnion = 'ABANDONDED' | 'CANCELLED' | 'ACTIVE' | 'COMPLETED';
|
|
72
74
|
interface Organisation {
|
|
73
75
|
onlineResources?: OnlineResource[];
|
|
74
76
|
organisationAbbreviation: string;
|
|
@@ -1318,10 +1320,10 @@ type HydratedCourt = {
|
|
|
1318
1320
|
type HydratedVenue = {
|
|
1319
1321
|
[key: string]: any;
|
|
1320
1322
|
} & Venue;
|
|
1321
|
-
|
|
1323
|
+
interface HydratedMatchUp extends MatchUp {
|
|
1322
1324
|
[key: string | number]: any;
|
|
1323
1325
|
sides?: HydratedSide[];
|
|
1324
|
-
}
|
|
1326
|
+
}
|
|
1325
1327
|
type HydratedParticipant = {
|
|
1326
1328
|
individualParticipants?: HydratedParticipant[];
|
|
1327
1329
|
[key: string | number]: any;
|
|
@@ -2546,11 +2548,11 @@ type UnlinkTournamentArgs = {
|
|
|
2546
2548
|
};
|
|
2547
2549
|
declare function unlinkTournament({ tournamentRecords, tournamentId }: UnlinkTournamentArgs): ResultType;
|
|
2548
2550
|
|
|
2549
|
-
declare const mutate$
|
|
2550
|
-
declare const mutate$
|
|
2551
|
-
declare const mutate$
|
|
2552
|
-
declare namespace mutate$
|
|
2553
|
-
export { mutate$
|
|
2551
|
+
declare const mutate$d_linkTournaments: typeof linkTournaments;
|
|
2552
|
+
declare const mutate$d_unlinkTournament: typeof unlinkTournament;
|
|
2553
|
+
declare const mutate$d_unlinkTournaments: typeof unlinkTournaments;
|
|
2554
|
+
declare namespace mutate$d {
|
|
2555
|
+
export { mutate$d_linkTournaments as linkTournaments, mutate$d_unlinkTournament as unlinkTournament, mutate$d_unlinkTournaments as unlinkTournaments };
|
|
2554
2556
|
}
|
|
2555
2557
|
|
|
2556
2558
|
declare function getLinkedTournamentIds({ tournamentRecords, }: {
|
|
@@ -2566,10 +2568,10 @@ declare function getTournamentIds({ tournamentRecords }: {
|
|
|
2566
2568
|
tournamentIds: string[];
|
|
2567
2569
|
};
|
|
2568
2570
|
|
|
2569
|
-
declare const query$
|
|
2570
|
-
declare const query$
|
|
2571
|
-
declare namespace query$
|
|
2572
|
-
export { query$
|
|
2571
|
+
declare const query$c_getLinkedTournamentIds: typeof getLinkedTournamentIds;
|
|
2572
|
+
declare const query$c_getTournamentIds: typeof getTournamentIds;
|
|
2573
|
+
declare namespace query$c {
|
|
2574
|
+
export { query$c_getLinkedTournamentIds as getLinkedTournamentIds, query$c_getTournamentIds as getTournamentIds };
|
|
2573
2575
|
}
|
|
2574
2576
|
|
|
2575
2577
|
declare const index$k_getLinkedTournamentIds: typeof getLinkedTournamentIds;
|
|
@@ -2578,7 +2580,7 @@ declare const index$k_linkTournaments: typeof linkTournaments;
|
|
|
2578
2580
|
declare const index$k_unlinkTournament: typeof unlinkTournament;
|
|
2579
2581
|
declare const index$k_unlinkTournaments: typeof unlinkTournaments;
|
|
2580
2582
|
declare namespace index$k {
|
|
2581
|
-
export { index$k_getLinkedTournamentIds as getLinkedTournamentIds, index$k_getTournamentIds as getTournamentIds, index$k_linkTournaments as linkTournaments, mutate$
|
|
2583
|
+
export { index$k_getLinkedTournamentIds as getLinkedTournamentIds, index$k_getTournamentIds as getTournamentIds, index$k_linkTournaments as linkTournaments, mutate$d as mutate, query$c as query, index$k_unlinkTournament as unlinkTournament, index$k_unlinkTournaments as unlinkTournaments };
|
|
2582
2584
|
}
|
|
2583
2585
|
|
|
2584
2586
|
declare function setDrawParticipantRepresentativeIds({ representativeParticipantIds, drawDefinition }: {
|
|
@@ -2830,6 +2832,7 @@ declare function addPlayoffStructures(params: any): ResultType & {
|
|
|
2830
2832
|
|
|
2831
2833
|
type AutomatedPositioningArgs = {
|
|
2832
2834
|
inContextDrawMatchUps?: HydratedMatchUp[];
|
|
2835
|
+
participants?: HydratedParticipant[];
|
|
2833
2836
|
appliedPolicies?: PolicyDefinitions;
|
|
2834
2837
|
provisionalPositioning?: boolean;
|
|
2835
2838
|
seedingProfile?: SeedingProfile;
|
|
@@ -2847,7 +2850,7 @@ type AutomatedPositioningArgs = {
|
|
|
2847
2850
|
drawSize?: number;
|
|
2848
2851
|
event?: Event$1;
|
|
2849
2852
|
};
|
|
2850
|
-
declare function automatedPositioning(
|
|
2853
|
+
declare function automatedPositioning(params: AutomatedPositioningArgs): ResultType & {
|
|
2851
2854
|
positionAssignments?: PositionAssignment[];
|
|
2852
2855
|
positioningReport?: {
|
|
2853
2856
|
[key: string]: any;
|
|
@@ -2868,18 +2871,6 @@ type ModifyDrawArgs = {
|
|
|
2868
2871
|
};
|
|
2869
2872
|
declare function modifyDrawDefinition({ tournamentRecord, drawDefinition, drawUpdates, drawId, event, }: ModifyDrawArgs): ResultType;
|
|
2870
2873
|
|
|
2871
|
-
type AddFinishingRoundsArgs = {
|
|
2872
|
-
finishingPositionOffset?: number;
|
|
2873
|
-
finishingPositionLimit?: number;
|
|
2874
|
-
positionsFed?: number;
|
|
2875
|
-
roundsCount?: number;
|
|
2876
|
-
roundLimit?: number;
|
|
2877
|
-
matchUps: MatchUp[];
|
|
2878
|
-
lucky?: boolean;
|
|
2879
|
-
fmlc?: boolean;
|
|
2880
|
-
};
|
|
2881
|
-
declare function addFinishingRounds({ finishingPositionOffset, finishingPositionLimit, positionsFed, roundsCount, roundLimit, matchUps, lucky, fmlc, }: AddFinishingRoundsArgs): MatchUp[];
|
|
2882
|
-
|
|
2883
2874
|
declare function resetDrawDefinition({ tournamentRecord, removeScheduling, drawDefinition }: {
|
|
2884
2875
|
tournamentRecord: any;
|
|
2885
2876
|
removeScheduling: any;
|
|
@@ -2949,27 +2940,6 @@ declare function removeRoundMatchUps({ removeCompletedMatchUps, tournamentRecord
|
|
|
2949
2940
|
roundRemoved?: boolean;
|
|
2950
2941
|
};
|
|
2951
2942
|
|
|
2952
|
-
type AddGoesToArgs = {
|
|
2953
|
-
inContextDrawMatchUps?: HydratedMatchUp[];
|
|
2954
|
-
drawDefinition: DrawDefinition;
|
|
2955
|
-
matchUpsMap?: MatchUpsMap;
|
|
2956
|
-
};
|
|
2957
|
-
declare function addGoesTo({ inContextDrawMatchUps, drawDefinition, matchUpsMap }: AddGoesToArgs): {
|
|
2958
|
-
error: {
|
|
2959
|
-
message: string;
|
|
2960
|
-
code: string;
|
|
2961
|
-
};
|
|
2962
|
-
inContextDrawMatchUps?: undefined;
|
|
2963
|
-
goesToMap?: undefined;
|
|
2964
|
-
} | {
|
|
2965
|
-
inContextDrawMatchUps: HydratedMatchUp[] | undefined;
|
|
2966
|
-
goesToMap: {
|
|
2967
|
-
loserMatchUpIds: {};
|
|
2968
|
-
winnerMatchUpIds: {};
|
|
2969
|
-
};
|
|
2970
|
-
error?: undefined;
|
|
2971
|
-
};
|
|
2972
|
-
|
|
2973
2943
|
type UpdateTeamLineUpArgs = {
|
|
2974
2944
|
drawDefinition: DrawDefinition;
|
|
2975
2945
|
participantId: string;
|
|
@@ -3014,38 +2984,6 @@ type SetSubOrderArgs = {
|
|
|
3014
2984
|
};
|
|
3015
2985
|
declare function setSubOrder({ tournamentRecord, drawDefinition, drawPosition, structureId, subOrder, event, }: SetSubOrderArgs): ResultType;
|
|
3016
2986
|
|
|
3017
|
-
type AutoSeedingParams = {
|
|
3018
|
-
sortDescending: boolean;
|
|
3019
|
-
stage: StageTypeUnion;
|
|
3020
|
-
tournamentRecord: any;
|
|
3021
|
-
policyDefinitions: any;
|
|
3022
|
-
scaleAttributes: any;
|
|
3023
|
-
scaleSortMethod: any;
|
|
3024
|
-
drawDefinition: any;
|
|
3025
|
-
scaleName: string;
|
|
3026
|
-
drawSize: number;
|
|
3027
|
-
drawId: string;
|
|
3028
|
-
event: any;
|
|
3029
|
-
};
|
|
3030
|
-
declare function autoSeeding({ tournamentRecord, drawDefinition, policyDefinitions, scaleAttributes, scaleName, drawSize, drawId, event, stage, sortDescending, scaleSortMethod, }: AutoSeedingParams): {
|
|
3031
|
-
stageEntries?: Entry[] | undefined;
|
|
3032
|
-
seedsCount?: number | undefined;
|
|
3033
|
-
entries?: Entry[] | undefined;
|
|
3034
|
-
error?: ErrorType | undefined;
|
|
3035
|
-
} | {
|
|
3036
|
-
error: {
|
|
3037
|
-
message: string;
|
|
3038
|
-
code: string;
|
|
3039
|
-
};
|
|
3040
|
-
scaleItemsWithParticipantIds?: undefined;
|
|
3041
|
-
} | {
|
|
3042
|
-
scaleItemsWithParticipantIds: {
|
|
3043
|
-
participantId: string;
|
|
3044
|
-
scaleItems: any[];
|
|
3045
|
-
}[] | undefined;
|
|
3046
|
-
error?: undefined;
|
|
3047
|
-
};
|
|
3048
|
-
|
|
3049
2987
|
declare function attachConsolationStructures(params: any): ResultType & {
|
|
3050
2988
|
addedStructureIds?: string[] | undefined;
|
|
3051
2989
|
};
|
|
@@ -3065,47 +3003,44 @@ declare function attachStructures({ itemType, matchUpModifications, tournamentRe
|
|
|
3065
3003
|
addedStructureIds?: string[];
|
|
3066
3004
|
};
|
|
3067
3005
|
|
|
3068
|
-
declare const mutate$
|
|
3069
|
-
declare const mutate$
|
|
3070
|
-
declare const mutate$
|
|
3071
|
-
declare const mutate$
|
|
3072
|
-
declare const mutate$
|
|
3073
|
-
declare const mutate$
|
|
3074
|
-
declare const mutate$
|
|
3075
|
-
declare const mutate$
|
|
3076
|
-
declare const mutate$
|
|
3077
|
-
declare const mutate$
|
|
3078
|
-
declare const mutate$
|
|
3079
|
-
declare const mutate$
|
|
3080
|
-
declare const mutate$
|
|
3081
|
-
declare const mutate$
|
|
3082
|
-
declare const mutate$
|
|
3083
|
-
declare const mutate$
|
|
3084
|
-
declare const mutate$
|
|
3085
|
-
declare const mutate$
|
|
3086
|
-
declare const mutate$
|
|
3087
|
-
declare const mutate$
|
|
3088
|
-
declare const mutate$
|
|
3089
|
-
declare const mutate$
|
|
3090
|
-
declare const mutate$
|
|
3091
|
-
declare const mutate$
|
|
3092
|
-
declare const mutate$
|
|
3093
|
-
declare const mutate$
|
|
3094
|
-
declare const mutate$
|
|
3095
|
-
declare const mutate$
|
|
3096
|
-
declare const mutate$
|
|
3097
|
-
declare const mutate$
|
|
3098
|
-
declare const mutate$
|
|
3099
|
-
declare const mutate$
|
|
3100
|
-
declare const mutate$
|
|
3101
|
-
declare const mutate$
|
|
3102
|
-
declare const mutate$
|
|
3103
|
-
declare const mutate$
|
|
3104
|
-
declare
|
|
3105
|
-
|
|
3106
|
-
declare const mutate$b_withdrawParticipantAtDrawPosition: typeof withdrawParticipantAtDrawPosition;
|
|
3107
|
-
declare namespace mutate$b {
|
|
3108
|
-
export { mutate$b_addAdHocMatchUps as addAdHocMatchUps, mutate$b_addDrawDefinitionTimeItem as addDrawDefinitionTimeItem, mutate$b_addFinishingRounds as addFinishingRounds, mutate$b_addGoesTo as addGoesTo, mutate$b_addPlayoffStructures as addPlayoffStructures, mutate$b_addQualifyingStructure as addQualifyingStructure, mutate$b_addVoluntaryConsolationStage as addVoluntaryConsolationStage, mutate$b_addVoluntaryConsolationStructure as addVoluntaryConsolationStructure, mutate$b_alternateDrawPositionAssignment as alternateDrawPositionAssignment, mutate$b_assignDrawPosition as assignDrawPosition, mutate$b_assignDrawPositionBye as assignDrawPositionBye, mutate$b_attachConsolationStructures as attachConsolationStructures, mutate$b_attachPlayoffStructures as attachPlayoffStructures, mutate$b_attachQualifyingStructure as attachQualifyingStructure, mutate$b_attachStructures as attachStructures, mutate$b_autoSeeding as autoSeeding, mutate$b_automatedPlayoffPositioning as automatedPlayoffPositioning, mutate$b_automatedPositioning as automatedPositioning, mutate$b_deleteAdHocMatchUps as deleteAdHocMatchUps, mutate$b_luckyLoserDrawPositionAssignment as luckyLoserDrawPositionAssignment, mutate$b_modifyDrawDefinition as modifyDrawDefinition, mutate$b_modifyDrawName as modifyDrawName, mutate$b_modifySeedAssignment as modifySeedAssignment, mutate$b_pruneDrawDefinition as pruneDrawDefinition, mutate$b_qualifierDrawPositionAssignment as qualifierDrawPositionAssignment, mutate$b_removeDrawPositionAssignment as removeDrawPositionAssignment, mutate$b_removeRoundMatchUps as removeRoundMatchUps, mutate$b_removeSeededParticipant as removeSeededParticipant, mutate$b_removeStructure as removeStructure, mutate$b_renameStructures as renameStructures, mutate$b_resetDrawDefinition as resetDrawDefinition, mutate$b_resetVoluntaryConsolationStructure as resetVoluntaryConsolationStructure, mutate$b_setDrawParticipantRepresentativeIds as setDrawParticipantRepresentativeIds, mutate$b_setPositionAssignments as setPositionAssignments, mutate$b_setStructureOrder as setStructureOrder, mutate$b_setSubOrder as setSubOrder, mutate$b_swapDrawPositionAssignments as swapDrawPositionAssignments, mutate$b_updateTeamLineUp as updateTeamLineUp, mutate$b_withdrawParticipantAtDrawPosition as withdrawParticipantAtDrawPosition };
|
|
3006
|
+
declare const mutate$c_addAdHocMatchUps: typeof addAdHocMatchUps;
|
|
3007
|
+
declare const mutate$c_addDrawDefinitionTimeItem: typeof addDrawDefinitionTimeItem;
|
|
3008
|
+
declare const mutate$c_addPlayoffStructures: typeof addPlayoffStructures;
|
|
3009
|
+
declare const mutate$c_addQualifyingStructure: typeof addQualifyingStructure;
|
|
3010
|
+
declare const mutate$c_addVoluntaryConsolationStage: typeof addVoluntaryConsolationStage;
|
|
3011
|
+
declare const mutate$c_addVoluntaryConsolationStructure: typeof addVoluntaryConsolationStructure;
|
|
3012
|
+
declare const mutate$c_alternateDrawPositionAssignment: typeof alternateDrawPositionAssignment;
|
|
3013
|
+
declare const mutate$c_assignDrawPosition: typeof assignDrawPosition;
|
|
3014
|
+
declare const mutate$c_assignDrawPositionBye: typeof assignDrawPositionBye;
|
|
3015
|
+
declare const mutate$c_attachConsolationStructures: typeof attachConsolationStructures;
|
|
3016
|
+
declare const mutate$c_attachPlayoffStructures: typeof attachPlayoffStructures;
|
|
3017
|
+
declare const mutate$c_attachQualifyingStructure: typeof attachQualifyingStructure;
|
|
3018
|
+
declare const mutate$c_attachStructures: typeof attachStructures;
|
|
3019
|
+
declare const mutate$c_automatedPlayoffPositioning: typeof automatedPlayoffPositioning;
|
|
3020
|
+
declare const mutate$c_automatedPositioning: typeof automatedPositioning;
|
|
3021
|
+
declare const mutate$c_deleteAdHocMatchUps: typeof deleteAdHocMatchUps;
|
|
3022
|
+
declare const mutate$c_luckyLoserDrawPositionAssignment: typeof luckyLoserDrawPositionAssignment;
|
|
3023
|
+
declare const mutate$c_modifyDrawDefinition: typeof modifyDrawDefinition;
|
|
3024
|
+
declare const mutate$c_modifyDrawName: typeof modifyDrawName;
|
|
3025
|
+
declare const mutate$c_modifySeedAssignment: typeof modifySeedAssignment;
|
|
3026
|
+
declare const mutate$c_pruneDrawDefinition: typeof pruneDrawDefinition;
|
|
3027
|
+
declare const mutate$c_qualifierDrawPositionAssignment: typeof qualifierDrawPositionAssignment;
|
|
3028
|
+
declare const mutate$c_removeDrawPositionAssignment: typeof removeDrawPositionAssignment;
|
|
3029
|
+
declare const mutate$c_removeRoundMatchUps: typeof removeRoundMatchUps;
|
|
3030
|
+
declare const mutate$c_removeSeededParticipant: typeof removeSeededParticipant;
|
|
3031
|
+
declare const mutate$c_removeStructure: typeof removeStructure;
|
|
3032
|
+
declare const mutate$c_renameStructures: typeof renameStructures;
|
|
3033
|
+
declare const mutate$c_resetDrawDefinition: typeof resetDrawDefinition;
|
|
3034
|
+
declare const mutate$c_resetVoluntaryConsolationStructure: typeof resetVoluntaryConsolationStructure;
|
|
3035
|
+
declare const mutate$c_setDrawParticipantRepresentativeIds: typeof setDrawParticipantRepresentativeIds;
|
|
3036
|
+
declare const mutate$c_setPositionAssignments: typeof setPositionAssignments;
|
|
3037
|
+
declare const mutate$c_setStructureOrder: typeof setStructureOrder;
|
|
3038
|
+
declare const mutate$c_setSubOrder: typeof setSubOrder;
|
|
3039
|
+
declare const mutate$c_swapDrawPositionAssignments: typeof swapDrawPositionAssignments;
|
|
3040
|
+
declare const mutate$c_updateTeamLineUp: typeof updateTeamLineUp;
|
|
3041
|
+
declare const mutate$c_withdrawParticipantAtDrawPosition: typeof withdrawParticipantAtDrawPosition;
|
|
3042
|
+
declare namespace mutate$c {
|
|
3043
|
+
export { mutate$c_addAdHocMatchUps as addAdHocMatchUps, mutate$c_addDrawDefinitionTimeItem as addDrawDefinitionTimeItem, mutate$c_addPlayoffStructures as addPlayoffStructures, mutate$c_addQualifyingStructure as addQualifyingStructure, mutate$c_addVoluntaryConsolationStage as addVoluntaryConsolationStage, mutate$c_addVoluntaryConsolationStructure as addVoluntaryConsolationStructure, mutate$c_alternateDrawPositionAssignment as alternateDrawPositionAssignment, mutate$c_assignDrawPosition as assignDrawPosition, mutate$c_assignDrawPositionBye as assignDrawPositionBye, mutate$c_attachConsolationStructures as attachConsolationStructures, mutate$c_attachPlayoffStructures as attachPlayoffStructures, mutate$c_attachQualifyingStructure as attachQualifyingStructure, mutate$c_attachStructures as attachStructures, mutate$c_automatedPlayoffPositioning as automatedPlayoffPositioning, mutate$c_automatedPositioning as automatedPositioning, mutate$c_deleteAdHocMatchUps as deleteAdHocMatchUps, mutate$c_luckyLoserDrawPositionAssignment as luckyLoserDrawPositionAssignment, mutate$c_modifyDrawDefinition as modifyDrawDefinition, mutate$c_modifyDrawName as modifyDrawName, mutate$c_modifySeedAssignment as modifySeedAssignment, mutate$c_pruneDrawDefinition as pruneDrawDefinition, mutate$c_qualifierDrawPositionAssignment as qualifierDrawPositionAssignment, mutate$c_removeDrawPositionAssignment as removeDrawPositionAssignment, mutate$c_removeRoundMatchUps as removeRoundMatchUps, mutate$c_removeSeededParticipant as removeSeededParticipant, mutate$c_removeStructure as removeStructure, mutate$c_renameStructures as renameStructures, mutate$c_resetDrawDefinition as resetDrawDefinition, mutate$c_resetVoluntaryConsolationStructure as resetVoluntaryConsolationStructure, mutate$c_setDrawParticipantRepresentativeIds as setDrawParticipantRepresentativeIds, mutate$c_setPositionAssignments as setPositionAssignments, mutate$c_setStructureOrder as setStructureOrder, mutate$c_setSubOrder as setSubOrder, mutate$c_swapDrawPositionAssignments as swapDrawPositionAssignments, mutate$c_updateTeamLineUp as updateTeamLineUp, mutate$c_withdrawParticipantAtDrawPosition as withdrawParticipantAtDrawPosition };
|
|
3109
3044
|
}
|
|
3110
3045
|
|
|
3111
3046
|
type GetEligibleVoluntaryConsolationParticipantsArgs = {
|
|
@@ -3180,15 +3115,6 @@ type GetAvailablePlayoffProfileArgs = {
|
|
|
3180
3115
|
};
|
|
3181
3116
|
declare function getAvailablePlayoffProfiles({ drawDefinition, structureId }: GetAvailablePlayoffProfileArgs): any;
|
|
3182
3117
|
|
|
3183
|
-
type GetSeedingThresholdsArgs = {
|
|
3184
|
-
roundRobinGroupsCount?: number;
|
|
3185
|
-
participantsCount: number;
|
|
3186
|
-
};
|
|
3187
|
-
declare function getSeedingThresholds({ roundRobinGroupsCount, participantsCount, }: GetSeedingThresholdsArgs): ResultType & {
|
|
3188
|
-
seedingThresholds?: any;
|
|
3189
|
-
success?: boolean;
|
|
3190
|
-
};
|
|
3191
|
-
|
|
3192
3118
|
type GetParticipantIdFinishingPositionsArgs = {
|
|
3193
3119
|
tournamentRecord: Tournament;
|
|
3194
3120
|
drawDefinition: DrawDefinition;
|
|
@@ -3329,6 +3255,15 @@ declare function isValidForQualifying({ structureId, drawDefinition }: {
|
|
|
3329
3255
|
success: boolean;
|
|
3330
3256
|
};
|
|
3331
3257
|
|
|
3258
|
+
type GetSeedingThresholdsArgs = {
|
|
3259
|
+
roundRobinGroupsCount?: number;
|
|
3260
|
+
participantsCount: number;
|
|
3261
|
+
};
|
|
3262
|
+
declare function getSeedingThresholds({ roundRobinGroupsCount, participantsCount, }: GetSeedingThresholdsArgs): ResultType & {
|
|
3263
|
+
seedingThresholds?: any;
|
|
3264
|
+
success?: boolean;
|
|
3265
|
+
};
|
|
3266
|
+
|
|
3332
3267
|
declare function getTeamLineUp({ drawDefinition, participantId }: {
|
|
3333
3268
|
drawDefinition: any;
|
|
3334
3269
|
participantId: any;
|
|
@@ -3505,34 +3440,63 @@ declare function getParticipantTimeItem({ returnPreviousValues, tournamentRecord
|
|
|
3505
3440
|
previousItems?: undefined;
|
|
3506
3441
|
};
|
|
3507
3442
|
|
|
3443
|
+
type GetMatchUpsMapArgs = {
|
|
3444
|
+
drawDefinition?: DrawDefinition;
|
|
3445
|
+
structure?: Structure;
|
|
3446
|
+
};
|
|
3447
|
+
declare function getMatchUpsMap({ drawDefinition, structure }: GetMatchUpsMapArgs): MatchUpsMap;
|
|
3448
|
+
|
|
3508
3449
|
type IsAdHocArgs = {
|
|
3509
3450
|
structure?: any;
|
|
3510
3451
|
};
|
|
3511
3452
|
declare function isAdHoc({ structure }: IsAdHocArgs): boolean;
|
|
3512
3453
|
|
|
3513
|
-
|
|
3514
|
-
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
declare
|
|
3519
|
-
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
|
|
3532
|
-
|
|
3533
|
-
|
|
3534
|
-
declare
|
|
3535
|
-
|
|
3454
|
+
type AddGoesToArgs = {
|
|
3455
|
+
inContextDrawMatchUps?: HydratedMatchUp[];
|
|
3456
|
+
drawDefinition: DrawDefinition;
|
|
3457
|
+
matchUpsMap?: MatchUpsMap;
|
|
3458
|
+
};
|
|
3459
|
+
declare function addGoesTo({ inContextDrawMatchUps, drawDefinition, matchUpsMap }: AddGoesToArgs): {
|
|
3460
|
+
error: {
|
|
3461
|
+
message: string;
|
|
3462
|
+
code: string;
|
|
3463
|
+
};
|
|
3464
|
+
inContextDrawMatchUps?: undefined;
|
|
3465
|
+
goesToMap?: undefined;
|
|
3466
|
+
} | {
|
|
3467
|
+
inContextDrawMatchUps: HydratedMatchUp[] | undefined;
|
|
3468
|
+
goesToMap: {
|
|
3469
|
+
loserMatchUpIds: {};
|
|
3470
|
+
winnerMatchUpIds: {};
|
|
3471
|
+
};
|
|
3472
|
+
error?: undefined;
|
|
3473
|
+
};
|
|
3474
|
+
|
|
3475
|
+
declare const query$b_addGoesTo: typeof addGoesTo;
|
|
3476
|
+
declare const query$b_allPlayoffPositionsFilled: typeof allPlayoffPositionsFilled;
|
|
3477
|
+
declare const query$b_checkValidEntries: typeof checkValidEntries;
|
|
3478
|
+
declare const query$b_getAssignedParticipantIds: typeof getAssignedParticipantIds;
|
|
3479
|
+
declare const query$b_getAvailableMatchUpsCount: typeof getAvailableMatchUpsCount;
|
|
3480
|
+
declare const query$b_getAvailablePlayoffProfiles: typeof getAvailablePlayoffProfiles;
|
|
3481
|
+
declare const query$b_getDrawDefinitionTimeItem: typeof getDrawDefinitionTimeItem;
|
|
3482
|
+
declare const query$b_getDrawParticipantRepresentativeIds: typeof getDrawParticipantRepresentativeIds;
|
|
3483
|
+
declare const query$b_getDrawTypeCoercion: typeof getDrawTypeCoercion;
|
|
3484
|
+
declare const query$b_getEligibleVoluntaryConsolationParticipants: typeof getEligibleVoluntaryConsolationParticipants;
|
|
3485
|
+
declare const query$b_getMatchUpsMap: typeof getMatchUpsMap;
|
|
3486
|
+
declare const query$b_getParticipantIdFinishingPositions: typeof getParticipantIdFinishingPositions;
|
|
3487
|
+
declare const query$b_getPositionAssignments: typeof getPositionAssignments;
|
|
3488
|
+
declare const query$b_getPositionsPlayedOff: typeof getPositionsPlayedOff;
|
|
3489
|
+
declare const query$b_getSeedingThresholds: typeof getSeedingThresholds;
|
|
3490
|
+
declare const query$b_getSeedsCount: typeof getSeedsCount;
|
|
3491
|
+
declare const query$b_getStructureSeedAssignments: typeof getStructureSeedAssignments;
|
|
3492
|
+
declare const query$b_getTeamLineUp: typeof getTeamLineUp;
|
|
3493
|
+
declare const query$b_getValidGroupSizes: typeof getValidGroupSizes;
|
|
3494
|
+
declare const query$b_isAdHoc: typeof isAdHoc;
|
|
3495
|
+
declare const query$b_isCompletedStructure: typeof isCompletedStructure;
|
|
3496
|
+
declare const query$b_isValidForQualifying: typeof isValidForQualifying;
|
|
3497
|
+
declare const query$b_positionActions: typeof positionActions;
|
|
3498
|
+
declare namespace query$b {
|
|
3499
|
+
export { query$b_addGoesTo as addGoesTo, query$b_allPlayoffPositionsFilled as allPlayoffPositionsFilled, query$b_checkValidEntries as checkValidEntries, publicFindDrawDefinition as findDrawDefinition, query$b_getAssignedParticipantIds as getAssignedParticipantIds, query$b_getAvailableMatchUpsCount as getAvailableMatchUpsCount, query$b_getAvailablePlayoffProfiles as getAvailablePlayoffProfiles, query$b_getDrawDefinitionTimeItem as getDrawDefinitionTimeItem, query$b_getDrawParticipantRepresentativeIds as getDrawParticipantRepresentativeIds, query$b_getDrawTypeCoercion as getDrawTypeCoercion, query$b_getEligibleVoluntaryConsolationParticipants as getEligibleVoluntaryConsolationParticipants, query$b_getMatchUpsMap as getMatchUpsMap, query$b_getParticipantIdFinishingPositions as getParticipantIdFinishingPositions, query$b_getPositionAssignments as getPositionAssignments, query$b_getPositionsPlayedOff as getPositionsPlayedOff, query$b_getSeedingThresholds as getSeedingThresholds, query$b_getSeedsCount as getSeedsCount, query$b_getStructureSeedAssignments as getStructureSeedAssignments, query$b_getTeamLineUp as getTeamLineUp, query$b_getValidGroupSizes as getValidGroupSizes, query$b_isAdHoc as isAdHoc, query$b_isCompletedStructure as isCompletedStructure, query$b_isValidForQualifying as isValidForQualifying, query$b_positionActions as positionActions };
|
|
3536
3500
|
}
|
|
3537
3501
|
|
|
3538
3502
|
type GenerateDrawTypeAndModify = {
|
|
@@ -3600,6 +3564,44 @@ declare function generateAndPopulatePlayoffStructures(params: GenerateAndPopulat
|
|
|
3600
3564
|
success?: boolean;
|
|
3601
3565
|
};
|
|
3602
3566
|
|
|
3567
|
+
type GenerateDrawMaticRoundArgs = {
|
|
3568
|
+
adHocRatings?: {
|
|
3569
|
+
[key: string]: number;
|
|
3570
|
+
};
|
|
3571
|
+
ignoreLastRoundNumber?: boolean;
|
|
3572
|
+
restrictEntryStatus?: boolean;
|
|
3573
|
+
iterationMatchUps?: MatchUp[];
|
|
3574
|
+
drawDefinition: DrawDefinition;
|
|
3575
|
+
tournamentRecord: Tournament;
|
|
3576
|
+
generateMatchUps?: boolean;
|
|
3577
|
+
eventType?: EventTypeUnion;
|
|
3578
|
+
salted?: number | boolean;
|
|
3579
|
+
participantIds?: string[];
|
|
3580
|
+
encounterValue?: number;
|
|
3581
|
+
sameTeamValue?: number;
|
|
3582
|
+
maxIterations?: number;
|
|
3583
|
+
matchUpIds?: string[];
|
|
3584
|
+
structure?: Structure;
|
|
3585
|
+
roundNumber?: number;
|
|
3586
|
+
structureId?: string;
|
|
3587
|
+
scaleName?: string;
|
|
3588
|
+
idPrefix?: string;
|
|
3589
|
+
isMock?: boolean;
|
|
3590
|
+
drawId?: string;
|
|
3591
|
+
event: Event$1;
|
|
3592
|
+
};
|
|
3593
|
+
type DrawMaticRoundResult = {
|
|
3594
|
+
participantIdPairings?: string[][];
|
|
3595
|
+
candidatesCount?: number;
|
|
3596
|
+
roundNumber?: number;
|
|
3597
|
+
matchUps?: MatchUp[];
|
|
3598
|
+
iterations?: number;
|
|
3599
|
+
success?: boolean;
|
|
3600
|
+
maxDelta?: number;
|
|
3601
|
+
maxDiff?: number;
|
|
3602
|
+
};
|
|
3603
|
+
declare function generateDrawMaticRound({ encounterValue, sameTeamValue, maxIterations, generateMatchUps, ignoreLastRoundNumber, iterationMatchUps, tournamentRecord, participantIds, drawDefinition, adHocRatings, salted, roundNumber, structureId, matchUpIds, eventType, structure, scaleName, idPrefix, isMock, event, }: GenerateDrawMaticRoundArgs): ResultType & DrawMaticRoundResult;
|
|
3604
|
+
|
|
3603
3605
|
type GenerateVoluntaryConsolationArgs = {
|
|
3604
3606
|
playoffAttributes?: PlayoffAttributes;
|
|
3605
3607
|
tournamentRecord: Tournament;
|
|
@@ -3624,6 +3626,17 @@ declare function generateVoluntaryConsolation(params: GenerateVoluntaryConsolati
|
|
|
3624
3626
|
error?: ErrorType;
|
|
3625
3627
|
};
|
|
3626
3628
|
|
|
3629
|
+
declare function generateDrawDefinition(params: GenerateDrawDefinitionArgs): ResultType & {
|
|
3630
|
+
existingDrawDefinition?: boolean;
|
|
3631
|
+
drawDefinition?: DrawDefinition;
|
|
3632
|
+
qualifyingConflicts?: any[];
|
|
3633
|
+
positioningReports?: any[];
|
|
3634
|
+
structureId?: string;
|
|
3635
|
+
success?: boolean;
|
|
3636
|
+
error?: ErrorType;
|
|
3637
|
+
conflicts?: any[];
|
|
3638
|
+
};
|
|
3639
|
+
|
|
3627
3640
|
type GenerateQualifyingStructureArgs = {
|
|
3628
3641
|
appliedPolicies?: PolicyDefinitions;
|
|
3629
3642
|
qualifyingRoundNumber: number;
|
|
@@ -3652,44 +3665,6 @@ declare function generateQualifyingStructure(params: GenerateQualifyingStructure
|
|
|
3652
3665
|
link?: DrawLink;
|
|
3653
3666
|
};
|
|
3654
3667
|
|
|
3655
|
-
type GenerateDrawMaticRoundArgs = {
|
|
3656
|
-
adHocRatings?: {
|
|
3657
|
-
[key: string]: number;
|
|
3658
|
-
};
|
|
3659
|
-
ignoreLastRoundNumber?: boolean;
|
|
3660
|
-
restrictEntryStatus?: boolean;
|
|
3661
|
-
iterationMatchUps?: MatchUp[];
|
|
3662
|
-
drawDefinition: DrawDefinition;
|
|
3663
|
-
tournamentRecord: Tournament;
|
|
3664
|
-
generateMatchUps?: boolean;
|
|
3665
|
-
eventType?: EventTypeUnion;
|
|
3666
|
-
salted?: number | boolean;
|
|
3667
|
-
participantIds?: string[];
|
|
3668
|
-
encounterValue?: number;
|
|
3669
|
-
sameTeamValue?: number;
|
|
3670
|
-
maxIterations?: number;
|
|
3671
|
-
matchUpIds?: string[];
|
|
3672
|
-
structure?: Structure;
|
|
3673
|
-
roundNumber?: number;
|
|
3674
|
-
structureId?: string;
|
|
3675
|
-
scaleName?: string;
|
|
3676
|
-
idPrefix?: string;
|
|
3677
|
-
isMock?: boolean;
|
|
3678
|
-
drawId?: string;
|
|
3679
|
-
event: Event$1;
|
|
3680
|
-
};
|
|
3681
|
-
type DrawMaticRoundResult = {
|
|
3682
|
-
participantIdPairings?: string[][];
|
|
3683
|
-
candidatesCount?: number;
|
|
3684
|
-
roundNumber?: number;
|
|
3685
|
-
matchUps?: MatchUp[];
|
|
3686
|
-
iterations?: number;
|
|
3687
|
-
success?: boolean;
|
|
3688
|
-
maxDelta?: number;
|
|
3689
|
-
maxDiff?: number;
|
|
3690
|
-
};
|
|
3691
|
-
declare function generateDrawMaticRound({ encounterValue, sameTeamValue, maxIterations, generateMatchUps, ignoreLastRoundNumber, iterationMatchUps, tournamentRecord, participantIds, drawDefinition, adHocRatings, salted, roundNumber, structureId, matchUpIds, eventType, structure, scaleName, idPrefix, isMock, event, }: GenerateDrawMaticRoundArgs): ResultType & DrawMaticRoundResult;
|
|
3692
|
-
|
|
3693
3668
|
type GenerateDrawStructuresAndLinksArgs = {
|
|
3694
3669
|
playoffAttributes?: PlayoffAttributes;
|
|
3695
3670
|
appliedPolicies?: PolicyDefinitions;
|
|
@@ -3710,17 +3685,6 @@ type GenerateDrawStructuresAndLinksArgs = {
|
|
|
3710
3685
|
};
|
|
3711
3686
|
declare function generateDrawStructuresAndLinks(params: GenerateDrawStructuresAndLinksArgs): any;
|
|
3712
3687
|
|
|
3713
|
-
declare function generateDrawDefinition(params: GenerateDrawDefinitionArgs): ResultType & {
|
|
3714
|
-
existingDrawDefinition?: boolean;
|
|
3715
|
-
drawDefinition?: DrawDefinition;
|
|
3716
|
-
qualifyingConflicts?: any[];
|
|
3717
|
-
positioningReports?: any[];
|
|
3718
|
-
structureId?: string;
|
|
3719
|
-
success?: boolean;
|
|
3720
|
-
error?: ErrorType;
|
|
3721
|
-
conflicts?: any[];
|
|
3722
|
-
};
|
|
3723
|
-
|
|
3724
3688
|
type GenerateAdHocMatchUpsArgs = {
|
|
3725
3689
|
participantIdPairings?: {
|
|
3726
3690
|
participantIds: [string | undefined, string | undefined];
|
|
@@ -3769,47 +3733,92 @@ declare function drawMatic(params: DrawMaticArgs): ResultType & {
|
|
|
3769
3733
|
roundResults?: DrawMaticRoundResult[];
|
|
3770
3734
|
};
|
|
3771
3735
|
|
|
3772
|
-
|
|
3773
|
-
|
|
3774
|
-
|
|
3775
|
-
|
|
3776
|
-
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
-
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
declare
|
|
3783
|
-
|
|
3784
|
-
|
|
3785
|
-
|
|
3786
|
-
|
|
3787
|
-
|
|
3788
|
-
|
|
3789
|
-
|
|
3790
|
-
|
|
3791
|
-
|
|
3792
|
-
|
|
3793
|
-
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
declare
|
|
3798
|
-
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
|
|
3804
|
-
|
|
3805
|
-
|
|
3806
|
-
|
|
3807
|
-
|
|
3808
|
-
|
|
3809
|
-
|
|
3810
|
-
|
|
3811
|
-
|
|
3812
|
-
|
|
3736
|
+
type AddFinishingRoundsArgs = {
|
|
3737
|
+
finishingPositionOffset?: number;
|
|
3738
|
+
finishingPositionLimit?: number;
|
|
3739
|
+
positionsFed?: number;
|
|
3740
|
+
roundsCount?: number;
|
|
3741
|
+
roundLimit?: number;
|
|
3742
|
+
matchUps: MatchUp[];
|
|
3743
|
+
lucky?: boolean;
|
|
3744
|
+
fmlc?: boolean;
|
|
3745
|
+
};
|
|
3746
|
+
declare function addFinishingRounds({ finishingPositionOffset, finishingPositionLimit, positionsFed, roundsCount, roundLimit, matchUps, lucky, fmlc, }: AddFinishingRoundsArgs): MatchUp[];
|
|
3747
|
+
|
|
3748
|
+
type AutoSeedingParams = {
|
|
3749
|
+
sortDescending: boolean;
|
|
3750
|
+
stage: StageTypeUnion;
|
|
3751
|
+
tournamentRecord: any;
|
|
3752
|
+
policyDefinitions: any;
|
|
3753
|
+
scaleAttributes: any;
|
|
3754
|
+
scaleSortMethod: any;
|
|
3755
|
+
drawDefinition: any;
|
|
3756
|
+
scaleName: string;
|
|
3757
|
+
drawSize: number;
|
|
3758
|
+
drawId: string;
|
|
3759
|
+
event: any;
|
|
3760
|
+
};
|
|
3761
|
+
declare function autoSeeding({ tournamentRecord, drawDefinition, policyDefinitions, scaleAttributes, scaleName, drawSize, drawId, event, stage, sortDescending, scaleSortMethod, }: AutoSeedingParams): {
|
|
3762
|
+
stageEntries?: Entry[] | undefined;
|
|
3763
|
+
seedsCount?: number | undefined;
|
|
3764
|
+
entries?: Entry[] | undefined;
|
|
3765
|
+
error?: ErrorType | undefined;
|
|
3766
|
+
} | {
|
|
3767
|
+
error: {
|
|
3768
|
+
message: string;
|
|
3769
|
+
code: string;
|
|
3770
|
+
};
|
|
3771
|
+
scaleItemsWithParticipantIds?: undefined;
|
|
3772
|
+
} | {
|
|
3773
|
+
scaleItemsWithParticipantIds: {
|
|
3774
|
+
participantId: string;
|
|
3775
|
+
scaleItems: any[];
|
|
3776
|
+
}[] | undefined;
|
|
3777
|
+
error?: undefined;
|
|
3778
|
+
};
|
|
3779
|
+
|
|
3780
|
+
declare const index$j_addAdHocMatchUps: typeof addAdHocMatchUps;
|
|
3781
|
+
declare const index$j_addDrawDefinitionTimeItem: typeof addDrawDefinitionTimeItem;
|
|
3782
|
+
declare const index$j_addFinishingRounds: typeof addFinishingRounds;
|
|
3783
|
+
declare const index$j_addGoesTo: typeof addGoesTo;
|
|
3784
|
+
declare const index$j_addPlayoffStructures: typeof addPlayoffStructures;
|
|
3785
|
+
declare const index$j_addQualifyingStructure: typeof addQualifyingStructure;
|
|
3786
|
+
declare const index$j_addVoluntaryConsolationStage: typeof addVoluntaryConsolationStage;
|
|
3787
|
+
declare const index$j_addVoluntaryConsolationStructure: typeof addVoluntaryConsolationStructure;
|
|
3788
|
+
declare const index$j_allPlayoffPositionsFilled: typeof allPlayoffPositionsFilled;
|
|
3789
|
+
declare const index$j_alternateDrawPositionAssignment: typeof alternateDrawPositionAssignment;
|
|
3790
|
+
declare const index$j_assignDrawPosition: typeof assignDrawPosition;
|
|
3791
|
+
declare const index$j_assignDrawPositionBye: typeof assignDrawPositionBye;
|
|
3792
|
+
declare const index$j_attachConsolationStructures: typeof attachConsolationStructures;
|
|
3793
|
+
declare const index$j_attachPlayoffStructures: typeof attachPlayoffStructures;
|
|
3794
|
+
declare const index$j_attachQualifyingStructure: typeof attachQualifyingStructure;
|
|
3795
|
+
declare const index$j_attachStructures: typeof attachStructures;
|
|
3796
|
+
declare const index$j_autoSeeding: typeof autoSeeding;
|
|
3797
|
+
declare const index$j_automatedPlayoffPositioning: typeof automatedPlayoffPositioning;
|
|
3798
|
+
declare const index$j_automatedPositioning: typeof automatedPositioning;
|
|
3799
|
+
declare const index$j_checkValidEntries: typeof checkValidEntries;
|
|
3800
|
+
declare const index$j_deleteAdHocMatchUps: typeof deleteAdHocMatchUps;
|
|
3801
|
+
declare const index$j_drawMatic: typeof drawMatic;
|
|
3802
|
+
declare const index$j_generateAdHocMatchUps: typeof generateAdHocMatchUps;
|
|
3803
|
+
declare const index$j_generateAdHocRounds: typeof generateAdHocRounds;
|
|
3804
|
+
declare const index$j_generateAndPopulatePlayoffStructures: typeof generateAndPopulatePlayoffStructures;
|
|
3805
|
+
declare const index$j_generateDrawDefinition: typeof generateDrawDefinition;
|
|
3806
|
+
declare const index$j_generateDrawMaticRound: typeof generateDrawMaticRound;
|
|
3807
|
+
declare const index$j_generateDrawStructuresAndLinks: typeof generateDrawStructuresAndLinks;
|
|
3808
|
+
declare const index$j_generateDrawTypeAndModifyDrawDefinition: typeof generateDrawTypeAndModifyDrawDefinition;
|
|
3809
|
+
declare const index$j_generateQualifyingStructure: typeof generateQualifyingStructure;
|
|
3810
|
+
declare const index$j_generateVoluntaryConsolation: typeof generateVoluntaryConsolation;
|
|
3811
|
+
declare const index$j_getAssignedParticipantIds: typeof getAssignedParticipantIds;
|
|
3812
|
+
declare const index$j_getAvailableMatchUpsCount: typeof getAvailableMatchUpsCount;
|
|
3813
|
+
declare const index$j_getAvailablePlayoffProfiles: typeof getAvailablePlayoffProfiles;
|
|
3814
|
+
declare const index$j_getDrawDefinitionTimeItem: typeof getDrawDefinitionTimeItem;
|
|
3815
|
+
declare const index$j_getDrawParticipantRepresentativeIds: typeof getDrawParticipantRepresentativeIds;
|
|
3816
|
+
declare const index$j_getDrawTypeCoercion: typeof getDrawTypeCoercion;
|
|
3817
|
+
declare const index$j_getEligibleVoluntaryConsolationParticipants: typeof getEligibleVoluntaryConsolationParticipants;
|
|
3818
|
+
declare const index$j_getMatchUpsMap: typeof getMatchUpsMap;
|
|
3819
|
+
declare const index$j_getParticipantIdFinishingPositions: typeof getParticipantIdFinishingPositions;
|
|
3820
|
+
declare const index$j_getPositionAssignments: typeof getPositionAssignments;
|
|
3821
|
+
declare const index$j_getPositionsPlayedOff: typeof getPositionsPlayedOff;
|
|
3813
3822
|
declare const index$j_getSeedingThresholds: typeof getSeedingThresholds;
|
|
3814
3823
|
declare const index$j_getSeedsCount: typeof getSeedsCount;
|
|
3815
3824
|
declare const index$j_getStructureSeedAssignments: typeof getStructureSeedAssignments;
|
|
@@ -3840,7 +3849,7 @@ declare const index$j_swapDrawPositionAssignments: typeof swapDrawPositionAssign
|
|
|
3840
3849
|
declare const index$j_updateTeamLineUp: typeof updateTeamLineUp;
|
|
3841
3850
|
declare const index$j_withdrawParticipantAtDrawPosition: typeof withdrawParticipantAtDrawPosition;
|
|
3842
3851
|
declare namespace index$j {
|
|
3843
|
-
export { index$j_addAdHocMatchUps as addAdHocMatchUps, index$j_addDrawDefinitionTimeItem as addDrawDefinitionTimeItem, index$j_addFinishingRounds as addFinishingRounds, index$j_addGoesTo as addGoesTo, index$j_addPlayoffStructures as addPlayoffStructures, index$j_addQualifyingStructure as addQualifyingStructure, index$j_addVoluntaryConsolationStage as addVoluntaryConsolationStage, index$j_addVoluntaryConsolationStructure as addVoluntaryConsolationStructure, index$j_allPlayoffPositionsFilled as allPlayoffPositionsFilled, index$j_alternateDrawPositionAssignment as alternateDrawPositionAssignment, index$j_assignDrawPosition as assignDrawPosition, index$j_assignDrawPositionBye as assignDrawPositionBye, index$j_attachConsolationStructures as attachConsolationStructures, index$j_attachPlayoffStructures as attachPlayoffStructures, index$j_attachQualifyingStructure as attachQualifyingStructure, index$j_attachStructures as attachStructures, index$j_autoSeeding as autoSeeding, index$j_automatedPlayoffPositioning as automatedPlayoffPositioning, index$j_automatedPositioning as automatedPositioning, index$j_checkValidEntries as checkValidEntries, index$j_deleteAdHocMatchUps as deleteAdHocMatchUps, index$j_drawMatic as drawMatic, publicFindDrawDefinition as findDrawDefinition, index$j_generateAdHocMatchUps as generateAdHocMatchUps, index$j_generateAdHocRounds as generateAdHocRounds, index$j_generateAndPopulatePlayoffStructures as generateAndPopulatePlayoffStructures, index$j_generateDrawDefinition as generateDrawDefinition, index$j_generateDrawMaticRound as generateDrawMaticRound, index$j_generateDrawStructuresAndLinks as generateDrawStructuresAndLinks, index$j_generateDrawTypeAndModifyDrawDefinition as generateDrawTypeAndModifyDrawDefinition, index$j_generateQualifyingStructure as generateQualifyingStructure, index$j_generateVoluntaryConsolation as generateVoluntaryConsolation, index$j_getAssignedParticipantIds as getAssignedParticipantIds, index$j_getAvailableMatchUpsCount as getAvailableMatchUpsCount, index$j_getAvailablePlayoffProfiles as getAvailablePlayoffProfiles, index$j_getDrawDefinitionTimeItem as getDrawDefinitionTimeItem, index$j_getDrawParticipantRepresentativeIds as getDrawParticipantRepresentativeIds, index$j_getDrawTypeCoercion as getDrawTypeCoercion, index$j_getEligibleVoluntaryConsolationParticipants as getEligibleVoluntaryConsolationParticipants, index$j_getParticipantIdFinishingPositions as getParticipantIdFinishingPositions, index$j_getPositionAssignments as getPositionAssignments, index$j_getPositionsPlayedOff as getPositionsPlayedOff, index$j_getSeedingThresholds as getSeedingThresholds, index$j_getSeedsCount as getSeedsCount, index$j_getStructureSeedAssignments as getStructureSeedAssignments, index$j_getTeamLineUp as getTeamLineUp, index$j_getValidGroupSizes as getValidGroupSizes, index$j_isAdHoc as isAdHoc, index$j_isCompletedStructure as isCompletedStructure, index$j_isValidForQualifying as isValidForQualifying, index$j_luckyLoserDrawPositionAssignment as luckyLoserDrawPositionAssignment, index$j_modifyDrawDefinition as modifyDrawDefinition, index$j_modifyDrawName as modifyDrawName, index$j_modifySeedAssignment as modifySeedAssignment, mutate$
|
|
3852
|
+
export { index$j_addAdHocMatchUps as addAdHocMatchUps, index$j_addDrawDefinitionTimeItem as addDrawDefinitionTimeItem, index$j_addFinishingRounds as addFinishingRounds, index$j_addGoesTo as addGoesTo, index$j_addPlayoffStructures as addPlayoffStructures, index$j_addQualifyingStructure as addQualifyingStructure, index$j_addVoluntaryConsolationStage as addVoluntaryConsolationStage, index$j_addVoluntaryConsolationStructure as addVoluntaryConsolationStructure, index$j_allPlayoffPositionsFilled as allPlayoffPositionsFilled, index$j_alternateDrawPositionAssignment as alternateDrawPositionAssignment, index$j_assignDrawPosition as assignDrawPosition, index$j_assignDrawPositionBye as assignDrawPositionBye, index$j_attachConsolationStructures as attachConsolationStructures, index$j_attachPlayoffStructures as attachPlayoffStructures, index$j_attachQualifyingStructure as attachQualifyingStructure, index$j_attachStructures as attachStructures, index$j_autoSeeding as autoSeeding, index$j_automatedPlayoffPositioning as automatedPlayoffPositioning, index$j_automatedPositioning as automatedPositioning, index$j_checkValidEntries as checkValidEntries, index$j_deleteAdHocMatchUps as deleteAdHocMatchUps, index$j_drawMatic as drawMatic, publicFindDrawDefinition as findDrawDefinition, index$j_generateAdHocMatchUps as generateAdHocMatchUps, index$j_generateAdHocRounds as generateAdHocRounds, index$j_generateAndPopulatePlayoffStructures as generateAndPopulatePlayoffStructures, index$j_generateDrawDefinition as generateDrawDefinition, index$j_generateDrawMaticRound as generateDrawMaticRound, index$j_generateDrawStructuresAndLinks as generateDrawStructuresAndLinks, index$j_generateDrawTypeAndModifyDrawDefinition as generateDrawTypeAndModifyDrawDefinition, index$j_generateQualifyingStructure as generateQualifyingStructure, index$j_generateVoluntaryConsolation as generateVoluntaryConsolation, index$j_getAssignedParticipantIds as getAssignedParticipantIds, index$j_getAvailableMatchUpsCount as getAvailableMatchUpsCount, index$j_getAvailablePlayoffProfiles as getAvailablePlayoffProfiles, index$j_getDrawDefinitionTimeItem as getDrawDefinitionTimeItem, index$j_getDrawParticipantRepresentativeIds as getDrawParticipantRepresentativeIds, index$j_getDrawTypeCoercion as getDrawTypeCoercion, index$j_getEligibleVoluntaryConsolationParticipants as getEligibleVoluntaryConsolationParticipants, index$j_getMatchUpsMap as getMatchUpsMap, index$j_getParticipantIdFinishingPositions as getParticipantIdFinishingPositions, index$j_getPositionAssignments as getPositionAssignments, index$j_getPositionsPlayedOff as getPositionsPlayedOff, index$j_getSeedingThresholds as getSeedingThresholds, index$j_getSeedsCount as getSeedsCount, index$j_getStructureSeedAssignments as getStructureSeedAssignments, index$j_getTeamLineUp as getTeamLineUp, index$j_getValidGroupSizes as getValidGroupSizes, index$j_isAdHoc as isAdHoc, index$j_isCompletedStructure as isCompletedStructure, index$j_isValidForQualifying as isValidForQualifying, index$j_luckyLoserDrawPositionAssignment as luckyLoserDrawPositionAssignment, index$j_modifyDrawDefinition as modifyDrawDefinition, index$j_modifyDrawName as modifyDrawName, index$j_modifySeedAssignment as modifySeedAssignment, mutate$c as mutate, index$j_positionActions as positionActions, index$j_pruneDrawDefinition as pruneDrawDefinition, index$j_qualifierDrawPositionAssignment as qualifierDrawPositionAssignment, query$b as query, index$j_removeDrawPositionAssignment as removeDrawPositionAssignment, index$j_removeRoundMatchUps as removeRoundMatchUps, index$j_removeSeededParticipant as removeSeededParticipant, index$j_removeStructure as removeStructure, index$j_renameStructures as renameStructures, index$j_resetDrawDefinition as resetDrawDefinition, index$j_resetVoluntaryConsolationStructure as resetVoluntaryConsolationStructure, index$j_setDrawParticipantRepresentativeIds as setDrawParticipantRepresentativeIds, index$j_setPositionAssignments as setPositionAssignments, index$j_setStructureOrder as setStructureOrder, index$j_setSubOrder as setSubOrder, index$j_swapDrawPositionAssignments as swapDrawPositionAssignments, index$j_updateTeamLineUp as updateTeamLineUp, index$j_withdrawParticipantAtDrawPosition as withdrawParticipantAtDrawPosition };
|
|
3844
3853
|
}
|
|
3845
3854
|
|
|
3846
3855
|
type DestroyPairEntryArgs = {
|
|
@@ -4119,21 +4128,21 @@ type AddEventEntriesArgs = {
|
|
|
4119
4128
|
};
|
|
4120
4129
|
declare function addEventEntries(params: AddEventEntriesArgs): ResultType;
|
|
4121
4130
|
|
|
4122
|
-
declare const mutate$
|
|
4123
|
-
declare const mutate$
|
|
4124
|
-
declare const mutate$
|
|
4125
|
-
declare const mutate$
|
|
4126
|
-
declare const mutate$
|
|
4127
|
-
declare const mutate$
|
|
4128
|
-
declare const mutate$
|
|
4129
|
-
declare const mutate$
|
|
4130
|
-
declare const mutate$
|
|
4131
|
-
declare const mutate$
|
|
4132
|
-
declare const mutate$
|
|
4133
|
-
declare const mutate$
|
|
4134
|
-
declare const mutate$
|
|
4135
|
-
declare namespace mutate$
|
|
4136
|
-
export { mutate$
|
|
4131
|
+
declare const mutate$b_addDrawEntries: typeof addDrawEntries;
|
|
4132
|
+
declare const mutate$b_addEventEntries: typeof addEventEntries;
|
|
4133
|
+
declare const mutate$b_addEventEntryPairs: typeof addEventEntryPairs;
|
|
4134
|
+
declare const mutate$b_destroyPairEntries: typeof destroyPairEntries;
|
|
4135
|
+
declare const mutate$b_destroyPairEntry: typeof destroyPairEntry;
|
|
4136
|
+
declare const mutate$b_modifyEntriesStatus: typeof modifyEntriesStatus;
|
|
4137
|
+
declare const mutate$b_modifyEventEntries: typeof modifyEventEntries;
|
|
4138
|
+
declare const mutate$b_promoteAlternate: typeof promoteAlternate;
|
|
4139
|
+
declare const mutate$b_promoteAlternates: typeof promoteAlternates;
|
|
4140
|
+
declare const mutate$b_removeDrawEntries: typeof removeDrawEntries;
|
|
4141
|
+
declare const mutate$b_removeEventEntries: typeof removeEventEntries;
|
|
4142
|
+
declare const mutate$b_setEntryPosition: typeof setEntryPosition;
|
|
4143
|
+
declare const mutate$b_setEntryPositions: typeof setEntryPositions;
|
|
4144
|
+
declare namespace mutate$b {
|
|
4145
|
+
export { mutate$b_addDrawEntries as addDrawEntries, mutate$b_addEventEntries as addEventEntries, mutate$b_addEventEntryPairs as addEventEntryPairs, mutate$b_destroyPairEntries as destroyPairEntries, mutate$b_destroyPairEntry as destroyPairEntry, mutate$b_modifyEntriesStatus as modifyEntriesStatus, mutate$b_modifyEventEntries as modifyEventEntries, mutate$b_promoteAlternate as promoteAlternate, mutate$b_promoteAlternates as promoteAlternates, mutate$b_removeDrawEntries as removeDrawEntries, mutate$b_removeEventEntries as removeEventEntries, mutate$b_setEntryPosition as setEntryPosition, mutate$b_setEntryPositions as setEntryPositions };
|
|
4137
4146
|
}
|
|
4138
4147
|
|
|
4139
4148
|
type GetEntriesAndSeedsCountArgs = {
|
|
@@ -4153,10 +4162,10 @@ declare function getEntriesAndSeedsCount({ policyDefinitions, drawDefinition, dr
|
|
|
4153
4162
|
|
|
4154
4163
|
declare function getMaxEntryPosition(params: any): number;
|
|
4155
4164
|
|
|
4156
|
-
declare const query$
|
|
4157
|
-
declare const query$
|
|
4158
|
-
declare namespace query$
|
|
4159
|
-
export { query$
|
|
4165
|
+
declare const query$a_getEntriesAndSeedsCount: typeof getEntriesAndSeedsCount;
|
|
4166
|
+
declare const query$a_getMaxEntryPosition: typeof getMaxEntryPosition;
|
|
4167
|
+
declare namespace query$a {
|
|
4168
|
+
export { query$a_getEntriesAndSeedsCount as getEntriesAndSeedsCount, query$a_getMaxEntryPosition as getMaxEntryPosition };
|
|
4160
4169
|
}
|
|
4161
4170
|
|
|
4162
4171
|
declare const index$i_addDrawEntries: typeof addDrawEntries;
|
|
@@ -4175,7 +4184,7 @@ declare const index$i_removeEventEntries: typeof removeEventEntries;
|
|
|
4175
4184
|
declare const index$i_setEntryPosition: typeof setEntryPosition;
|
|
4176
4185
|
declare const index$i_setEntryPositions: typeof setEntryPositions;
|
|
4177
4186
|
declare namespace index$i {
|
|
4178
|
-
export { index$i_addDrawEntries as addDrawEntries, index$i_addEventEntries as addEventEntries, index$i_addEventEntryPairs as addEventEntryPairs, index$i_destroyPairEntries as destroyPairEntries, index$i_destroyPairEntry as destroyPairEntry, index$i_getEntriesAndSeedsCount as getEntriesAndSeedsCount, index$i_getMaxEntryPosition as getMaxEntryPosition, index$i_modifyEntriesStatus as modifyEntriesStatus, index$i_modifyEventEntries as modifyEventEntries, mutate$
|
|
4187
|
+
export { index$i_addDrawEntries as addDrawEntries, index$i_addEventEntries as addEventEntries, index$i_addEventEntryPairs as addEventEntryPairs, index$i_destroyPairEntries as destroyPairEntries, index$i_destroyPairEntry as destroyPairEntry, index$i_getEntriesAndSeedsCount as getEntriesAndSeedsCount, index$i_getMaxEntryPosition as getMaxEntryPosition, index$i_modifyEntriesStatus as modifyEntriesStatus, index$i_modifyEventEntries as modifyEventEntries, mutate$b as mutate, index$i_promoteAlternate as promoteAlternate, index$i_promoteAlternates as promoteAlternates, query$a as query, index$i_removeDrawEntries as removeDrawEntries, index$i_removeEventEntries as removeEventEntries, index$i_setEntryPosition as setEntryPosition, index$i_setEntryPositions as setEntryPositions };
|
|
4179
4188
|
}
|
|
4180
4189
|
|
|
4181
4190
|
declare function deleteFlightProfileAndFlightDraws({ autoPublish, tournamentRecord, auditData, event, force }: {
|
|
@@ -4563,30 +4572,30 @@ declare function addEvent({ suppressNotifications, tournamentRecord, internalUse
|
|
|
4563
4572
|
info?: any;
|
|
4564
4573
|
};
|
|
4565
4574
|
|
|
4566
|
-
declare const mutate$
|
|
4567
|
-
declare const mutate$
|
|
4568
|
-
declare const mutate$
|
|
4569
|
-
declare const mutate$
|
|
4570
|
-
declare const mutate$
|
|
4571
|
-
declare const mutate$
|
|
4572
|
-
declare const mutate$
|
|
4573
|
-
declare const mutate$
|
|
4574
|
-
declare const mutate$
|
|
4575
|
-
declare const mutate$
|
|
4576
|
-
declare const mutate$
|
|
4577
|
-
declare const mutate$
|
|
4578
|
-
declare const mutate$
|
|
4579
|
-
declare const mutate$
|
|
4580
|
-
declare const mutate$
|
|
4581
|
-
declare const mutate$
|
|
4582
|
-
declare const mutate$
|
|
4583
|
-
declare const mutate$
|
|
4584
|
-
declare const mutate$
|
|
4585
|
-
declare const mutate$
|
|
4586
|
-
declare const mutate$
|
|
4587
|
-
declare const mutate$
|
|
4588
|
-
declare namespace mutate$
|
|
4589
|
-
export { mutate$
|
|
4575
|
+
declare const mutate$a_addDrawDefinition: typeof addDrawDefinition;
|
|
4576
|
+
declare const mutate$a_addEvent: typeof addEvent;
|
|
4577
|
+
declare const mutate$a_addFlight: typeof addFlight;
|
|
4578
|
+
declare const mutate$a_assignSeedPositions: typeof assignSeedPositions;
|
|
4579
|
+
declare const mutate$a_attachFlightProfile: typeof attachFlightProfile;
|
|
4580
|
+
declare const mutate$a_deleteDrawDefinitions: typeof deleteDrawDefinitions;
|
|
4581
|
+
declare const mutate$a_deleteEvents: typeof deleteEvents;
|
|
4582
|
+
declare const mutate$a_deleteFlightAndFlightDraw: typeof deleteFlightAndFlightDraw;
|
|
4583
|
+
declare const mutate$a_deleteFlightProfileAndFlightDraws: typeof deleteFlightProfileAndFlightDraws;
|
|
4584
|
+
declare const mutate$a_modifyEvent: typeof modifyEvent;
|
|
4585
|
+
declare const mutate$a_modifyEventMatchUpFormatTiming: typeof modifyEventMatchUpFormatTiming;
|
|
4586
|
+
declare const mutate$a_modifyPairAssignment: typeof modifyPairAssignment;
|
|
4587
|
+
declare const mutate$a_refreshEventDrawOrder: typeof refreshEventDrawOrder;
|
|
4588
|
+
declare const mutate$a_removeEventMatchUpFormatTiming: typeof removeEventMatchUpFormatTiming;
|
|
4589
|
+
declare const mutate$a_removeScaleValues: typeof removeScaleValues;
|
|
4590
|
+
declare const mutate$a_removeSeeding: typeof removeSeeding;
|
|
4591
|
+
declare const mutate$a_setEventDates: typeof setEventDates;
|
|
4592
|
+
declare const mutate$a_setEventDisplay: typeof setEventDisplay;
|
|
4593
|
+
declare const mutate$a_setEventEndDate: typeof setEventEndDate;
|
|
4594
|
+
declare const mutate$a_setEventStartDate: typeof setEventStartDate;
|
|
4595
|
+
declare const mutate$a_updateDrawIdsOrder: typeof updateDrawIdsOrder;
|
|
4596
|
+
declare const mutate$a_validateCategory: typeof validateCategory;
|
|
4597
|
+
declare namespace mutate$a {
|
|
4598
|
+
export { mutate$a_addDrawDefinition as addDrawDefinition, mutate$a_addEvent as addEvent, mutate$a_addFlight as addFlight, mutate$a_assignSeedPositions as assignSeedPositions, mutate$a_attachFlightProfile as attachFlightProfile, mutate$a_deleteDrawDefinitions as deleteDrawDefinitions, mutate$a_deleteEvents as deleteEvents, mutate$a_deleteFlightAndFlightDraw as deleteFlightAndFlightDraw, mutate$a_deleteFlightProfileAndFlightDraws as deleteFlightProfileAndFlightDraws, mutate$a_modifyEvent as modifyEvent, mutate$a_modifyEventMatchUpFormatTiming as modifyEventMatchUpFormatTiming, mutate$a_modifyPairAssignment as modifyPairAssignment, mutate$a_refreshEventDrawOrder as refreshEventDrawOrder, mutate$a_removeEventMatchUpFormatTiming as removeEventMatchUpFormatTiming, mutate$a_removeScaleValues as removeScaleValues, mutate$a_removeSeeding as removeSeeding, mutate$a_setEventDates as setEventDates, mutate$a_setEventDisplay as setEventDisplay, mutate$a_setEventEndDate as setEventEndDate, mutate$a_setEventStartDate as setEventStartDate, mutate$a_updateDrawIdsOrder as updateDrawIdsOrder, mutate$a_validateCategory as validateCategory };
|
|
4590
4599
|
}
|
|
4591
4600
|
|
|
4592
4601
|
declare function bulkUpdatePublishedEventIds({ tournamentRecord, outcomes }: {
|
|
@@ -4775,18 +4784,18 @@ type GetEventArgs = {
|
|
|
4775
4784
|
};
|
|
4776
4785
|
declare function getEvent({ tournamentRecord, drawDefinition, context, event }: GetEventArgs): any;
|
|
4777
4786
|
|
|
4778
|
-
declare const query$
|
|
4779
|
-
declare const query$
|
|
4780
|
-
declare const query$
|
|
4781
|
-
declare const query$
|
|
4782
|
-
declare const query$
|
|
4783
|
-
declare const query$
|
|
4784
|
-
declare const query$
|
|
4785
|
-
declare const query$
|
|
4786
|
-
declare const query$
|
|
4787
|
-
declare const query$
|
|
4788
|
-
declare namespace query$
|
|
4789
|
-
export { query$
|
|
4787
|
+
declare const query$9_bulkUpdatePublishedEventIds: typeof bulkUpdatePublishedEventIds;
|
|
4788
|
+
declare const query$9_categoryCanContain: typeof categoryCanContain;
|
|
4789
|
+
declare const query$9_getCategoryAgeDetails: typeof getCategoryAgeDetails;
|
|
4790
|
+
declare const query$9_getEvent: typeof getEvent;
|
|
4791
|
+
declare const query$9_getEventProperties: typeof getEventProperties;
|
|
4792
|
+
declare const query$9_getEventStructures: typeof getEventStructures;
|
|
4793
|
+
declare const query$9_getEventTimeItem: typeof getEventTimeItem;
|
|
4794
|
+
declare const query$9_getEvents: typeof getEvents;
|
|
4795
|
+
declare const query$9_getFlightProfile: typeof getFlightProfile;
|
|
4796
|
+
declare const query$9_getScaledEntries: typeof getScaledEntries;
|
|
4797
|
+
declare namespace query$9 {
|
|
4798
|
+
export { query$9_bulkUpdatePublishedEventIds as bulkUpdatePublishedEventIds, query$9_categoryCanContain as categoryCanContain, query$9_getCategoryAgeDetails as getCategoryAgeDetails, query$9_getEvent as getEvent, query$9_getEventProperties as getEventProperties, query$9_getEventStructures as getEventStructures, query$9_getEventTimeItem as getEventTimeItem, query$9_getEvents as getEvents, query$9_getFlightProfile as getFlightProfile, query$9_getScaledEntries as getScaledEntries };
|
|
4790
4799
|
}
|
|
4791
4800
|
|
|
4792
4801
|
declare const index$h_addDrawDefinition: typeof addDrawDefinition;
|
|
@@ -4822,7 +4831,7 @@ declare const index$h_setEventStartDate: typeof setEventStartDate;
|
|
|
4822
4831
|
declare const index$h_updateDrawIdsOrder: typeof updateDrawIdsOrder;
|
|
4823
4832
|
declare const index$h_validateCategory: typeof validateCategory;
|
|
4824
4833
|
declare namespace index$h {
|
|
4825
|
-
export { index$h_addDrawDefinition as addDrawDefinition, index$h_addEvent as addEvent, index$h_addFlight as addFlight, index$h_assignSeedPositions as assignSeedPositions, index$h_attachFlightProfile as attachFlightProfile, index$h_bulkUpdatePublishedEventIds as bulkUpdatePublishedEventIds, index$h_categoryCanContain as categoryCanContain, index$h_deleteDrawDefinitions as deleteDrawDefinitions, index$h_deleteEvents as deleteEvents, index$h_deleteFlightAndFlightDraw as deleteFlightAndFlightDraw, index$h_deleteFlightProfileAndFlightDraws as deleteFlightProfileAndFlightDraws, index$h_getCategoryAgeDetails as getCategoryAgeDetails, index$h_getEvent as getEvent, index$h_getEventProperties as getEventProperties, index$h_getEventStructures as getEventStructures, index$h_getEventTimeItem as getEventTimeItem, index$h_getEvents as getEvents, index$h_getFlightProfile as getFlightProfile, index$h_getScaledEntries as getScaledEntries, index$h_modifyEvent as modifyEvent, index$h_modifyEventMatchUpFormatTiming as modifyEventMatchUpFormatTiming, index$h_modifyPairAssignment as modifyPairAssignment, mutate$
|
|
4834
|
+
export { index$h_addDrawDefinition as addDrawDefinition, index$h_addEvent as addEvent, index$h_addFlight as addFlight, index$h_assignSeedPositions as assignSeedPositions, index$h_attachFlightProfile as attachFlightProfile, index$h_bulkUpdatePublishedEventIds as bulkUpdatePublishedEventIds, index$h_categoryCanContain as categoryCanContain, index$h_deleteDrawDefinitions as deleteDrawDefinitions, index$h_deleteEvents as deleteEvents, index$h_deleteFlightAndFlightDraw as deleteFlightAndFlightDraw, index$h_deleteFlightProfileAndFlightDraws as deleteFlightProfileAndFlightDraws, index$h_getCategoryAgeDetails as getCategoryAgeDetails, index$h_getEvent as getEvent, index$h_getEventProperties as getEventProperties, index$h_getEventStructures as getEventStructures, index$h_getEventTimeItem as getEventTimeItem, index$h_getEvents as getEvents, index$h_getFlightProfile as getFlightProfile, index$h_getScaledEntries as getScaledEntries, index$h_modifyEvent as modifyEvent, index$h_modifyEventMatchUpFormatTiming as modifyEventMatchUpFormatTiming, index$h_modifyPairAssignment as modifyPairAssignment, mutate$a as mutate, query$9 as query, index$h_refreshEventDrawOrder as refreshEventDrawOrder, index$h_removeEventMatchUpFormatTiming as removeEventMatchUpFormatTiming, index$h_removeScaleValues as removeScaleValues, index$h_removeSeeding as removeSeeding, index$h_setEventDates as setEventDates, index$h_setEventDisplay as setEventDisplay, index$h_setEventEndDate as setEventEndDate, index$h_setEventStartDate as setEventStartDate, index$h_updateDrawIdsOrder as updateDrawIdsOrder, index$h_validateCategory as validateCategory };
|
|
4826
4835
|
}
|
|
4827
4836
|
|
|
4828
4837
|
declare function getRoundRobinGroupMatchUps({ drawPositions }: {
|
|
@@ -5134,6 +5143,28 @@ declare function removeDelegatedOutcome({ drawDefinition, event, matchUpId }: {
|
|
|
5134
5143
|
};
|
|
5135
5144
|
};
|
|
5136
5145
|
|
|
5146
|
+
type UpdateTieMatchUpScoreArgs = {
|
|
5147
|
+
tournamentRecords?: TournamentRecords;
|
|
5148
|
+
appliedPolicies?: PolicyDefinitions;
|
|
5149
|
+
tournamentRecord?: Tournament;
|
|
5150
|
+
drawDefinition: DrawDefinition;
|
|
5151
|
+
exitWhenNoValues?: boolean;
|
|
5152
|
+
matchUpsMap?: MatchUpsMap;
|
|
5153
|
+
matchUpStatus?: string;
|
|
5154
|
+
tournamentId?: string;
|
|
5155
|
+
removeScore?: boolean;
|
|
5156
|
+
matchUpId: string;
|
|
5157
|
+
event?: Event$1;
|
|
5158
|
+
};
|
|
5159
|
+
declare function updateTieMatchUpScore(params: UpdateTieMatchUpScoreArgs): {
|
|
5160
|
+
removeWinningSide?: boolean;
|
|
5161
|
+
tieFormatRemoved?: boolean;
|
|
5162
|
+
winningSide?: number;
|
|
5163
|
+
error?: ErrorType;
|
|
5164
|
+
success?: boolean;
|
|
5165
|
+
score?: any;
|
|
5166
|
+
};
|
|
5167
|
+
|
|
5137
5168
|
declare function substituteParticipant(params: any): ResultType | {
|
|
5138
5169
|
error: {
|
|
5139
5170
|
message: string;
|
|
@@ -5250,28 +5281,6 @@ declare function setDelegatedOutcome(params: any): {
|
|
|
5250
5281
|
info: string;
|
|
5251
5282
|
};
|
|
5252
5283
|
|
|
5253
|
-
type UpdateTieMatchUpScoreArgs = {
|
|
5254
|
-
tournamentRecords?: TournamentRecords;
|
|
5255
|
-
appliedPolicies?: PolicyDefinitions;
|
|
5256
|
-
tournamentRecord?: Tournament;
|
|
5257
|
-
drawDefinition: DrawDefinition;
|
|
5258
|
-
exitWhenNoValues?: boolean;
|
|
5259
|
-
matchUpsMap?: MatchUpsMap;
|
|
5260
|
-
matchUpStatus?: string;
|
|
5261
|
-
tournamentId?: string;
|
|
5262
|
-
removeScore?: boolean;
|
|
5263
|
-
matchUpId: string;
|
|
5264
|
-
event?: Event$1;
|
|
5265
|
-
};
|
|
5266
|
-
declare function updateTieMatchUpScore(params: UpdateTieMatchUpScoreArgs): {
|
|
5267
|
-
removeWinningSide?: boolean;
|
|
5268
|
-
tieFormatRemoved?: boolean;
|
|
5269
|
-
winningSide?: number;
|
|
5270
|
-
error?: ErrorType;
|
|
5271
|
-
success?: boolean;
|
|
5272
|
-
score?: any;
|
|
5273
|
-
};
|
|
5274
|
-
|
|
5275
5284
|
type ResetAdHocMatchUps = {
|
|
5276
5285
|
tournamentRecord: Tournament;
|
|
5277
5286
|
drawDefinition: DrawDefinition;
|
|
@@ -5343,31 +5352,31 @@ type ResetScoreCardArgs = {
|
|
|
5343
5352
|
};
|
|
5344
5353
|
declare function resetScorecard(params: ResetScoreCardArgs): ResultType;
|
|
5345
5354
|
|
|
5346
|
-
declare const mutate$
|
|
5347
|
-
declare const mutate$
|
|
5348
|
-
declare const mutate$
|
|
5349
|
-
declare const mutate$
|
|
5350
|
-
declare const mutate$
|
|
5351
|
-
declare const mutate$
|
|
5352
|
-
declare const mutate$
|
|
5353
|
-
declare const mutate$
|
|
5354
|
-
declare const mutate$
|
|
5355
|
-
declare const mutate$
|
|
5356
|
-
declare const mutate$
|
|
5357
|
-
declare const mutate$
|
|
5358
|
-
declare const mutate$
|
|
5359
|
-
declare const mutate$
|
|
5360
|
-
declare const mutate$
|
|
5361
|
-
declare const mutate$
|
|
5362
|
-
declare const mutate$
|
|
5363
|
-
declare const mutate$
|
|
5364
|
-
declare const mutate$
|
|
5365
|
-
declare const mutate$
|
|
5366
|
-
declare const mutate$
|
|
5367
|
-
declare const mutate$
|
|
5368
|
-
declare const mutate$
|
|
5369
|
-
declare namespace mutate$
|
|
5370
|
-
export { mutate$
|
|
5355
|
+
declare const mutate$9_applyLineUps: typeof applyLineUps;
|
|
5356
|
+
declare const mutate$9_assignMatchUpSideParticipant: typeof assignMatchUpSideParticipant;
|
|
5357
|
+
declare const mutate$9_assignTieMatchUpParticipantId: typeof assignTieMatchUpParticipantId;
|
|
5358
|
+
declare const mutate$9_bulkMatchUpStatusUpdate: typeof bulkMatchUpStatusUpdate;
|
|
5359
|
+
declare const mutate$9_checkInParticipant: typeof checkInParticipant;
|
|
5360
|
+
declare const mutate$9_checkOutParticipant: typeof checkOutParticipant;
|
|
5361
|
+
declare const mutate$9_disableTieAutoCalc: typeof disableTieAutoCalc;
|
|
5362
|
+
declare const mutate$9_enableTieAutoCalc: typeof enableTieAutoCalc;
|
|
5363
|
+
declare const mutate$9_removeDelegatedOutcome: typeof removeDelegatedOutcome;
|
|
5364
|
+
declare const mutate$9_removeMatchUpSideParticipant: typeof removeMatchUpSideParticipant;
|
|
5365
|
+
declare const mutate$9_removeTieMatchUpParticipantId: typeof removeTieMatchUpParticipantId;
|
|
5366
|
+
declare const mutate$9_replaceTieMatchUpParticipantId: typeof replaceTieMatchUpParticipantId;
|
|
5367
|
+
declare const mutate$9_resetAdHocMatchUps: typeof resetAdHocMatchUps;
|
|
5368
|
+
declare const mutate$9_resetMatchUpLineUps: typeof resetMatchUpLineUps;
|
|
5369
|
+
declare const mutate$9_resetScorecard: typeof resetScorecard;
|
|
5370
|
+
declare const mutate$9_resetTieFormat: typeof resetTieFormat;
|
|
5371
|
+
declare const mutate$9_setDelegatedOutcome: typeof setDelegatedOutcome;
|
|
5372
|
+
declare const mutate$9_setMatchUpFormat: typeof setMatchUpFormat;
|
|
5373
|
+
declare const mutate$9_setMatchUpStatus: typeof setMatchUpStatus;
|
|
5374
|
+
declare const mutate$9_setOrderOfFinish: typeof setOrderOfFinish;
|
|
5375
|
+
declare const mutate$9_substituteParticipant: typeof substituteParticipant;
|
|
5376
|
+
declare const mutate$9_toggleParticipantCheckInState: typeof toggleParticipantCheckInState;
|
|
5377
|
+
declare const mutate$9_updateTieMatchUpScore: typeof updateTieMatchUpScore;
|
|
5378
|
+
declare namespace mutate$9 {
|
|
5379
|
+
export { mutate$9_applyLineUps as applyLineUps, mutate$9_assignMatchUpSideParticipant as assignMatchUpSideParticipant, mutate$9_assignTieMatchUpParticipantId as assignTieMatchUpParticipantId, mutate$9_bulkMatchUpStatusUpdate as bulkMatchUpStatusUpdate, mutate$9_checkInParticipant as checkInParticipant, mutate$9_checkOutParticipant as checkOutParticipant, mutate$9_disableTieAutoCalc as disableTieAutoCalc, mutate$9_enableTieAutoCalc as enableTieAutoCalc, publicFindMatchUp as findMatchUp, mutate$9_removeDelegatedOutcome as removeDelegatedOutcome, mutate$9_removeMatchUpSideParticipant as removeMatchUpSideParticipant, mutate$9_removeTieMatchUpParticipantId as removeTieMatchUpParticipantId, mutate$9_replaceTieMatchUpParticipantId as replaceTieMatchUpParticipantId, mutate$9_resetAdHocMatchUps as resetAdHocMatchUps, mutate$9_resetMatchUpLineUps as resetMatchUpLineUps, mutate$9_resetScorecard as resetScorecard, mutate$9_resetTieFormat as resetTieFormat, mutate$9_setDelegatedOutcome as setDelegatedOutcome, mutate$9_setMatchUpFormat as setMatchUpFormat, mutate$9_setMatchUpStatus as setMatchUpStatus, mutate$9_setOrderOfFinish as setOrderOfFinish, mutate$9_substituteParticipant as substituteParticipant, mutate$9_toggleParticipantCheckInState as toggleParticipantCheckInState, mutate$9_updateTieMatchUpScore as updateTieMatchUpScore };
|
|
5371
5380
|
}
|
|
5372
5381
|
|
|
5373
5382
|
declare function getMatchUpFormatTimingUpdate({ tournamentRecords }: {
|
|
@@ -5620,6 +5629,7 @@ declare function getAllStructureMatchUps({ scheduleVisibilityFilters, tournament
|
|
|
5620
5629
|
};
|
|
5621
5630
|
roundMatchUps: {};
|
|
5622
5631
|
matchUps: never[];
|
|
5632
|
+
isRoundRobin?: undefined;
|
|
5623
5633
|
roundProfile?: undefined;
|
|
5624
5634
|
matchUpsMap?: undefined;
|
|
5625
5635
|
} | {
|
|
@@ -5627,11 +5637,13 @@ declare function getAllStructureMatchUps({ scheduleVisibilityFilters, tournament
|
|
|
5627
5637
|
roundMatchUps: {};
|
|
5628
5638
|
matchUps: never[];
|
|
5629
5639
|
error?: undefined;
|
|
5640
|
+
isRoundRobin?: undefined;
|
|
5630
5641
|
roundProfile?: undefined;
|
|
5631
5642
|
matchUpsMap?: undefined;
|
|
5632
5643
|
} | {
|
|
5633
5644
|
collectionPositionMatchUps: {};
|
|
5634
5645
|
roundMatchUps: {};
|
|
5646
|
+
isRoundRobin: boolean;
|
|
5635
5647
|
roundProfile: RoundProfile | undefined;
|
|
5636
5648
|
matchUpsMap: MatchUpsMap;
|
|
5637
5649
|
matchUps: any;
|
|
@@ -5963,46 +5975,46 @@ declare function drawMatchUps({ participants: tournamentParticipants, tournament
|
|
|
5963
5975
|
error?: ErrorType | undefined;
|
|
5964
5976
|
};
|
|
5965
5977
|
|
|
5966
|
-
declare const query$
|
|
5967
|
-
declare const query$
|
|
5968
|
-
declare const query$
|
|
5969
|
-
declare const query$
|
|
5970
|
-
declare const query$
|
|
5971
|
-
declare const query$
|
|
5972
|
-
declare const query$
|
|
5973
|
-
declare const query$
|
|
5974
|
-
declare const query$
|
|
5975
|
-
declare const query$
|
|
5976
|
-
declare const query$
|
|
5977
|
-
declare const query$
|
|
5978
|
-
declare const query$
|
|
5979
|
-
declare const query$
|
|
5980
|
-
declare const query$
|
|
5981
|
-
declare const query$
|
|
5982
|
-
declare const query$
|
|
5983
|
-
declare const query$
|
|
5984
|
-
declare const query$
|
|
5985
|
-
declare const query$
|
|
5986
|
-
declare const query$
|
|
5987
|
-
declare const query$
|
|
5988
|
-
declare const query$
|
|
5989
|
-
declare const query$
|
|
5990
|
-
declare const query$
|
|
5991
|
-
declare const query$
|
|
5992
|
-
declare const query$
|
|
5993
|
-
declare const query$
|
|
5994
|
-
declare const query$
|
|
5995
|
-
declare const query$
|
|
5996
|
-
declare const query$
|
|
5997
|
-
declare const query$
|
|
5998
|
-
declare const query$
|
|
5999
|
-
declare const query$
|
|
6000
|
-
declare const query$
|
|
6001
|
-
declare const query$
|
|
6002
|
-
declare const query$
|
|
6003
|
-
declare const query$
|
|
6004
|
-
declare namespace query$
|
|
6005
|
-
export { query$
|
|
5978
|
+
declare const query$8_allCompetitionMatchUps: typeof allCompetitionMatchUps;
|
|
5979
|
+
declare const query$8_allDrawMatchUps: typeof allDrawMatchUps;
|
|
5980
|
+
declare const query$8_allEventMatchUps: typeof allEventMatchUps;
|
|
5981
|
+
declare const query$8_allTournamentMatchUps: typeof allTournamentMatchUps;
|
|
5982
|
+
declare const query$8_analyzeMatchUp: typeof analyzeMatchUp;
|
|
5983
|
+
declare const query$8_calculateWinCriteria: typeof calculateWinCriteria;
|
|
5984
|
+
declare const query$8_checkMatchUpIsComplete: typeof checkMatchUpIsComplete;
|
|
5985
|
+
declare const query$8_competitionScheduleMatchUps: typeof competitionScheduleMatchUps;
|
|
5986
|
+
declare const query$8_drawMatchUps: typeof drawMatchUps;
|
|
5987
|
+
declare const query$8_eventMatchUps: typeof eventMatchUps;
|
|
5988
|
+
declare const query$8_getAllDrawMatchUps: typeof getAllDrawMatchUps;
|
|
5989
|
+
declare const query$8_getAllStructureMatchUps: typeof getAllStructureMatchUps;
|
|
5990
|
+
declare const query$8_getCheckedInParticipantIds: typeof getCheckedInParticipantIds;
|
|
5991
|
+
declare const query$8_getCompetitionMatchUps: typeof getCompetitionMatchUps;
|
|
5992
|
+
declare const query$8_getEventMatchUpFormatTiming: typeof getEventMatchUpFormatTiming;
|
|
5993
|
+
declare const query$8_getMatchUpCompetitiveProfile: typeof getMatchUpCompetitiveProfile;
|
|
5994
|
+
declare const query$8_getMatchUpContextIds: typeof getMatchUpContextIds;
|
|
5995
|
+
declare const query$8_getMatchUpDailyLimits: typeof getMatchUpDailyLimits;
|
|
5996
|
+
declare const query$8_getMatchUpDailyLimitsUpdate: typeof getMatchUpDailyLimitsUpdate;
|
|
5997
|
+
declare const query$8_getMatchUpDependencies: typeof getMatchUpDependencies;
|
|
5998
|
+
declare const query$8_getMatchUpFormat: typeof getMatchUpFormat;
|
|
5999
|
+
declare const query$8_getMatchUpFormatTiming: typeof getMatchUpFormatTiming;
|
|
6000
|
+
declare const query$8_getMatchUpFormatTimingUpdate: typeof getMatchUpFormatTimingUpdate;
|
|
6001
|
+
declare const query$8_getMatchUpScheduleDetails: typeof getMatchUpScheduleDetails;
|
|
6002
|
+
declare const query$8_getMatchUpType: typeof getMatchUpType;
|
|
6003
|
+
declare const query$8_getMatchUpsStats: typeof getMatchUpsStats;
|
|
6004
|
+
declare const query$8_getModifiedMatchUpFormatTiming: typeof getModifiedMatchUpFormatTiming;
|
|
6005
|
+
declare const query$8_getParticipantResults: typeof getParticipantResults;
|
|
6006
|
+
declare const query$8_getPredictiveAccuracy: typeof getPredictiveAccuracy;
|
|
6007
|
+
declare const query$8_getRoundMatchUps: typeof getRoundMatchUps;
|
|
6008
|
+
declare const query$8_getRounds: typeof getRounds;
|
|
6009
|
+
declare const query$8_isValidMatchUpFormat: typeof isValidMatchUpFormat;
|
|
6010
|
+
declare const query$8_matchUpActions: typeof matchUpActions;
|
|
6011
|
+
declare const query$8_participantScheduledMatchUps: typeof participantScheduledMatchUps;
|
|
6012
|
+
declare const query$8_tallyParticipantResults: typeof tallyParticipantResults;
|
|
6013
|
+
declare const query$8_tournamentMatchUps: typeof tournamentMatchUps;
|
|
6014
|
+
declare const query$8_validMatchUp: typeof validMatchUp;
|
|
6015
|
+
declare const query$8_validMatchUps: typeof validMatchUps;
|
|
6016
|
+
declare namespace query$8 {
|
|
6017
|
+
export { query$8_allCompetitionMatchUps as allCompetitionMatchUps, query$8_allDrawMatchUps as allDrawMatchUps, query$8_allEventMatchUps as allEventMatchUps, query$8_allTournamentMatchUps as allTournamentMatchUps, query$8_analyzeMatchUp as analyzeMatchUp, query$8_calculateWinCriteria as calculateWinCriteria, query$8_checkMatchUpIsComplete as checkMatchUpIsComplete, query$8_competitionScheduleMatchUps as competitionScheduleMatchUps, query$8_drawMatchUps as drawMatchUps, query$8_eventMatchUps as eventMatchUps, query$8_getAllDrawMatchUps as getAllDrawMatchUps, query$8_getAllStructureMatchUps as getAllStructureMatchUps, query$8_getCheckedInParticipantIds as getCheckedInParticipantIds, query$8_getCompetitionMatchUps as getCompetitionMatchUps, query$8_getEventMatchUpFormatTiming as getEventMatchUpFormatTiming, query$8_getMatchUpCompetitiveProfile as getMatchUpCompetitiveProfile, query$8_getMatchUpContextIds as getMatchUpContextIds, query$8_getMatchUpDailyLimits as getMatchUpDailyLimits, query$8_getMatchUpDailyLimitsUpdate as getMatchUpDailyLimitsUpdate, query$8_getMatchUpDependencies as getMatchUpDependencies, query$8_getMatchUpFormat as getMatchUpFormat, query$8_getMatchUpFormatTiming as getMatchUpFormatTiming, query$8_getMatchUpFormatTimingUpdate as getMatchUpFormatTimingUpdate, query$8_getMatchUpScheduleDetails as getMatchUpScheduleDetails, query$8_getMatchUpType as getMatchUpType, query$8_getMatchUpsStats as getMatchUpsStats, query$8_getModifiedMatchUpFormatTiming as getModifiedMatchUpFormatTiming, query$8_getParticipantResults as getParticipantResults, query$8_getPredictiveAccuracy as getPredictiveAccuracy, query$8_getRoundMatchUps as getRoundMatchUps, query$8_getRounds as getRounds, query$8_isValidMatchUpFormat as isValidMatchUpFormat, query$8_matchUpActions as matchUpActions, query$8_participantScheduledMatchUps as participantScheduledMatchUps, query$8_tallyParticipantResults as tallyParticipantResults, query$8_tournamentMatchUps as tournamentMatchUps, query$8_validMatchUp as validMatchUp, query$8_validMatchUps as validMatchUps };
|
|
6006
6018
|
}
|
|
6007
6019
|
|
|
6008
6020
|
declare const index$e_allCompetitionMatchUps: typeof allCompetitionMatchUps;
|
|
@@ -6067,7 +6079,7 @@ declare const index$e_updateTieMatchUpScore: typeof updateTieMatchUpScore;
|
|
|
6067
6079
|
declare const index$e_validMatchUp: typeof validMatchUp;
|
|
6068
6080
|
declare const index$e_validMatchUps: typeof validMatchUps;
|
|
6069
6081
|
declare namespace index$e {
|
|
6070
|
-
export { index$e_allCompetitionMatchUps as allCompetitionMatchUps, index$e_allDrawMatchUps as allDrawMatchUps, index$e_allEventMatchUps as allEventMatchUps, index$e_allTournamentMatchUps as allTournamentMatchUps, index$e_analyzeMatchUp as analyzeMatchUp, index$e_applyLineUps as applyLineUps, index$e_assignMatchUpSideParticipant as assignMatchUpSideParticipant, index$e_assignTieMatchUpParticipantId as assignTieMatchUpParticipantId, index$e_bulkMatchUpStatusUpdate as bulkMatchUpStatusUpdate, index$e_calculateWinCriteria as calculateWinCriteria, index$e_checkInParticipant as checkInParticipant, index$e_checkMatchUpIsComplete as checkMatchUpIsComplete, index$e_checkOutParticipant as checkOutParticipant, index$e_competitionScheduleMatchUps as competitionScheduleMatchUps, index$e_disableTieAutoCalc as disableTieAutoCalc, index$e_drawMatchUps as drawMatchUps, index$e_enableTieAutoCalc as enableTieAutoCalc, index$e_eventMatchUps as eventMatchUps, publicFindMatchUp as findMatchUp, index$e_getAllDrawMatchUps as getAllDrawMatchUps, index$e_getAllStructureMatchUps as getAllStructureMatchUps, index$e_getCheckedInParticipantIds as getCheckedInParticipantIds, index$e_getCompetitionMatchUps as getCompetitionMatchUps, index$e_getEventMatchUpFormatTiming as getEventMatchUpFormatTiming, index$e_getMatchUpCompetitiveProfile as getMatchUpCompetitiveProfile, index$e_getMatchUpContextIds as getMatchUpContextIds, index$e_getMatchUpDailyLimits as getMatchUpDailyLimits, index$e_getMatchUpDailyLimitsUpdate as getMatchUpDailyLimitsUpdate, index$e_getMatchUpDependencies as getMatchUpDependencies, index$e_getMatchUpFormat as getMatchUpFormat, index$e_getMatchUpFormatTiming as getMatchUpFormatTiming, index$e_getMatchUpFormatTimingUpdate as getMatchUpFormatTimingUpdate, index$e_getMatchUpScheduleDetails as getMatchUpScheduleDetails, index$e_getMatchUpType as getMatchUpType, index$e_getMatchUpsStats as getMatchUpsStats, index$e_getModifiedMatchUpFormatTiming as getModifiedMatchUpFormatTiming, index$e_getParticipantResults as getParticipantResults, index$e_getPredictiveAccuracy as getPredictiveAccuracy, index$e_getRoundMatchUps as getRoundMatchUps, index$e_getRounds as getRounds, index$e_isValidMatchUpFormat as isValidMatchUpFormat, index$e_matchUpActions as matchUpActions, mutate$
|
|
6082
|
+
export { index$e_allCompetitionMatchUps as allCompetitionMatchUps, index$e_allDrawMatchUps as allDrawMatchUps, index$e_allEventMatchUps as allEventMatchUps, index$e_allTournamentMatchUps as allTournamentMatchUps, index$e_analyzeMatchUp as analyzeMatchUp, index$e_applyLineUps as applyLineUps, index$e_assignMatchUpSideParticipant as assignMatchUpSideParticipant, index$e_assignTieMatchUpParticipantId as assignTieMatchUpParticipantId, index$e_bulkMatchUpStatusUpdate as bulkMatchUpStatusUpdate, index$e_calculateWinCriteria as calculateWinCriteria, index$e_checkInParticipant as checkInParticipant, index$e_checkMatchUpIsComplete as checkMatchUpIsComplete, index$e_checkOutParticipant as checkOutParticipant, index$e_competitionScheduleMatchUps as competitionScheduleMatchUps, index$e_disableTieAutoCalc as disableTieAutoCalc, index$e_drawMatchUps as drawMatchUps, index$e_enableTieAutoCalc as enableTieAutoCalc, index$e_eventMatchUps as eventMatchUps, publicFindMatchUp as findMatchUp, index$e_getAllDrawMatchUps as getAllDrawMatchUps, index$e_getAllStructureMatchUps as getAllStructureMatchUps, index$e_getCheckedInParticipantIds as getCheckedInParticipantIds, index$e_getCompetitionMatchUps as getCompetitionMatchUps, index$e_getEventMatchUpFormatTiming as getEventMatchUpFormatTiming, index$e_getMatchUpCompetitiveProfile as getMatchUpCompetitiveProfile, index$e_getMatchUpContextIds as getMatchUpContextIds, index$e_getMatchUpDailyLimits as getMatchUpDailyLimits, index$e_getMatchUpDailyLimitsUpdate as getMatchUpDailyLimitsUpdate, index$e_getMatchUpDependencies as getMatchUpDependencies, index$e_getMatchUpFormat as getMatchUpFormat, index$e_getMatchUpFormatTiming as getMatchUpFormatTiming, index$e_getMatchUpFormatTimingUpdate as getMatchUpFormatTimingUpdate, index$e_getMatchUpScheduleDetails as getMatchUpScheduleDetails, index$e_getMatchUpType as getMatchUpType, index$e_getMatchUpsStats as getMatchUpsStats, index$e_getModifiedMatchUpFormatTiming as getModifiedMatchUpFormatTiming, index$e_getParticipantResults as getParticipantResults, index$e_getPredictiveAccuracy as getPredictiveAccuracy, index$e_getRoundMatchUps as getRoundMatchUps, index$e_getRounds as getRounds, index$e_isValidMatchUpFormat as isValidMatchUpFormat, index$e_matchUpActions as matchUpActions, mutate$9 as mutate, index$e_participantScheduledMatchUps as participantScheduledMatchUps, query$8 as query, index$e_removeDelegatedOutcome as removeDelegatedOutcome, index$e_removeMatchUpSideParticipant as removeMatchUpSideParticipant, index$e_removeTieMatchUpParticipantId as removeTieMatchUpParticipantId, index$e_replaceTieMatchUpParticipantId as replaceTieMatchUpParticipantId, index$e_resetAdHocMatchUps as resetAdHocMatchUps, index$e_resetMatchUpLineUps as resetMatchUpLineUps, index$e_resetScorecard as resetScorecard, index$e_resetTieFormat as resetTieFormat, index$e_setDelegatedOutcome as setDelegatedOutcome, index$e_setMatchUpFormat as setMatchUpFormat, index$e_setMatchUpStatus as setMatchUpStatus, index$e_setOrderOfFinish as setOrderOfFinish, index$e_substituteParticipant as substituteParticipant, index$e_tallyParticipantResults as tallyParticipantResults, index$e_toggleParticipantCheckInState as toggleParticipantCheckInState, index$e_tournamentMatchUps as tournamentMatchUps, index$e_updateTieMatchUpScore as updateTieMatchUpScore, index$e_validMatchUp as validMatchUp, index$e_validMatchUps as validMatchUps };
|
|
6071
6083
|
}
|
|
6072
6084
|
|
|
6073
6085
|
declare function generateOutcomeFromScoreString(params: any): any;
|
|
@@ -6149,13 +6161,13 @@ declare function generateOutcome(params: any): {
|
|
|
6149
6161
|
matchUpStatusProfile?: undefined;
|
|
6150
6162
|
};
|
|
6151
6163
|
|
|
6152
|
-
declare const generate$
|
|
6153
|
-
declare const generate$
|
|
6154
|
-
declare const generate$
|
|
6155
|
-
declare const generate$
|
|
6156
|
-
declare const generate$
|
|
6157
|
-
declare namespace generate$
|
|
6158
|
-
export { generate$
|
|
6164
|
+
declare const generate$2_generateEventWithDraw: typeof generateEventWithDraw;
|
|
6165
|
+
declare const generate$2_generateOutcome: typeof generateOutcome;
|
|
6166
|
+
declare const generate$2_generateOutcomeFromScoreString: typeof generateOutcomeFromScoreString;
|
|
6167
|
+
declare const generate$2_generateParticipants: typeof generateParticipants;
|
|
6168
|
+
declare const generate$2_generateTournamentRecord: typeof generateTournamentRecord;
|
|
6169
|
+
declare namespace generate$2 {
|
|
6170
|
+
export { generate$2_generateEventWithDraw as generateEventWithDraw, generate$2_generateOutcome as generateOutcome, generate$2_generateOutcomeFromScoreString as generateOutcomeFromScoreString, generate$2_generateParticipants as generateParticipants, generate$2_generateTournamentRecord as generateTournamentRecord };
|
|
6159
6171
|
}
|
|
6160
6172
|
|
|
6161
6173
|
declare function anonymizeTournamentRecord({ keepExtensions, anonymizeParticipantNames, tournamentRecord, tournamentName, personIds, tournamentId, }: {
|
|
@@ -6177,10 +6189,10 @@ declare function anonymizeTournamentRecord({ keepExtensions, anonymizeParticipan
|
|
|
6177
6189
|
|
|
6178
6190
|
declare function modifyTournamentRecord(params: any): any;
|
|
6179
6191
|
|
|
6180
|
-
declare const mutate$
|
|
6181
|
-
declare const mutate$
|
|
6182
|
-
declare namespace mutate$
|
|
6183
|
-
export { mutate$
|
|
6192
|
+
declare const mutate$8_anonymizeTournamentRecord: typeof anonymizeTournamentRecord;
|
|
6193
|
+
declare const mutate$8_modifyTournamentRecord: typeof modifyTournamentRecord;
|
|
6194
|
+
declare namespace mutate$8 {
|
|
6195
|
+
export { mutate$8_anonymizeTournamentRecord as anonymizeTournamentRecord, mutate$8_modifyTournamentRecord as modifyTournamentRecord };
|
|
6184
6196
|
}
|
|
6185
6197
|
|
|
6186
6198
|
declare const index$d_anonymizeTournamentRecord: typeof anonymizeTournamentRecord;
|
|
@@ -6191,7 +6203,7 @@ declare const index$d_generateParticipants: typeof generateParticipants;
|
|
|
6191
6203
|
declare const index$d_generateTournamentRecord: typeof generateTournamentRecord;
|
|
6192
6204
|
declare const index$d_modifyTournamentRecord: typeof modifyTournamentRecord;
|
|
6193
6205
|
declare namespace index$d {
|
|
6194
|
-
export { index$d_anonymizeTournamentRecord as anonymizeTournamentRecord, generate$
|
|
6206
|
+
export { index$d_anonymizeTournamentRecord as anonymizeTournamentRecord, generate$2 as generate, index$d_generateEventWithDraw as generateEventWithDraw, index$d_generateOutcome as generateOutcome, index$d_generateOutcomeFromScoreString as generateOutcomeFromScoreString, index$d_generateParticipants as generateParticipants, index$d_generateTournamentRecord as generateTournamentRecord, index$d_modifyTournamentRecord as modifyTournamentRecord, mutate$8 as mutate };
|
|
6195
6207
|
}
|
|
6196
6208
|
|
|
6197
6209
|
declare function modifyPersonRequests(params: any): ResultType & {
|
|
@@ -6585,33 +6597,33 @@ declare function removeParticipantIdsFromAllTeams({ participantRole, individualP
|
|
|
6585
6597
|
};
|
|
6586
6598
|
};
|
|
6587
6599
|
|
|
6588
|
-
declare const mutate$
|
|
6589
|
-
declare const mutate$
|
|
6590
|
-
declare const mutate$
|
|
6591
|
-
declare const mutate$
|
|
6592
|
-
declare const mutate$
|
|
6593
|
-
declare const mutate$
|
|
6594
|
-
declare const mutate$
|
|
6595
|
-
declare const mutate$
|
|
6596
|
-
declare const mutate$
|
|
6597
|
-
declare const mutate$
|
|
6598
|
-
declare const mutate$
|
|
6599
|
-
declare const mutate$
|
|
6600
|
-
declare const mutate$
|
|
6601
|
-
declare const mutate$
|
|
6602
|
-
declare const mutate$
|
|
6603
|
-
declare const mutate$
|
|
6604
|
-
declare const mutate$
|
|
6605
|
-
declare const mutate$
|
|
6606
|
-
declare const mutate$
|
|
6607
|
-
declare const mutate$
|
|
6608
|
-
declare const mutate$
|
|
6609
|
-
declare const mutate$
|
|
6610
|
-
declare const mutate$
|
|
6611
|
-
declare const mutate$
|
|
6612
|
-
declare const mutate$
|
|
6613
|
-
declare namespace mutate$
|
|
6614
|
-
export { mutate$
|
|
6600
|
+
declare const mutate$7_addIndividualParticipantIds: typeof addIndividualParticipantIds;
|
|
6601
|
+
declare const mutate$7_addParticipant: typeof addParticipant;
|
|
6602
|
+
declare const mutate$7_addParticipants: typeof addParticipants;
|
|
6603
|
+
declare const mutate$7_addPenalty: typeof addPenalty;
|
|
6604
|
+
declare const mutate$7_addPersonRequests: typeof addPersonRequests;
|
|
6605
|
+
declare const mutate$7_addPersons: typeof addPersons;
|
|
6606
|
+
declare const mutate$7_createGroupParticipant: typeof createGroupParticipant;
|
|
6607
|
+
declare const mutate$7_createTeamsFromParticipantAttributes: typeof createTeamsFromParticipantAttributes;
|
|
6608
|
+
declare const mutate$7_deleteParticipants: typeof deleteParticipants;
|
|
6609
|
+
declare const mutate$7_mergeParticipants: typeof mergeParticipants;
|
|
6610
|
+
declare const mutate$7_modifyIndividualParticipantIds: typeof modifyIndividualParticipantIds;
|
|
6611
|
+
declare const mutate$7_modifyParticipant: typeof modifyParticipant;
|
|
6612
|
+
declare const mutate$7_modifyParticipantName: typeof modifyParticipantName;
|
|
6613
|
+
declare const mutate$7_modifyParticipantOtherName: typeof modifyParticipantOtherName;
|
|
6614
|
+
declare const mutate$7_modifyParticipantsSignInStatus: typeof modifyParticipantsSignInStatus;
|
|
6615
|
+
declare const mutate$7_modifyPenalty: typeof modifyPenalty;
|
|
6616
|
+
declare const mutate$7_modifyPersonRequests: typeof modifyPersonRequests;
|
|
6617
|
+
declare const mutate$7_regenerateParticipantNames: typeof regenerateParticipantNames;
|
|
6618
|
+
declare const mutate$7_removeIndividualParticipantIds: typeof removeIndividualParticipantIds;
|
|
6619
|
+
declare const mutate$7_removeParticipantIdsFromAllTeams: typeof removeParticipantIdsFromAllTeams;
|
|
6620
|
+
declare const mutate$7_removePenalty: typeof removePenalty;
|
|
6621
|
+
declare const mutate$7_removePersonRequests: typeof removePersonRequests;
|
|
6622
|
+
declare const mutate$7_scaledTeamAssignment: typeof scaledTeamAssignment;
|
|
6623
|
+
declare const mutate$7_setParticipantScaleItem: typeof setParticipantScaleItem;
|
|
6624
|
+
declare const mutate$7_setParticipantScaleItems: typeof setParticipantScaleItems;
|
|
6625
|
+
declare namespace mutate$7 {
|
|
6626
|
+
export { 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 };
|
|
6615
6627
|
}
|
|
6616
6628
|
|
|
6617
6629
|
declare function getCompetitionParticipants(params: any): ResultType & {
|
|
@@ -6792,21 +6804,21 @@ declare function validateLineUp({ lineUp, tieFormat }: ValidateLineUpArgs): {
|
|
|
6792
6804
|
} | undefined;
|
|
6793
6805
|
};
|
|
6794
6806
|
|
|
6795
|
-
declare const query$
|
|
6796
|
-
declare const query$
|
|
6797
|
-
declare const query$
|
|
6798
|
-
declare const query$
|
|
6799
|
-
declare const query$
|
|
6800
|
-
declare const query$
|
|
6801
|
-
declare const query$
|
|
6802
|
-
declare const query$
|
|
6803
|
-
declare const query$
|
|
6804
|
-
declare const query$
|
|
6805
|
-
declare const query$
|
|
6806
|
-
declare const query$
|
|
6807
|
-
declare const query$
|
|
6808
|
-
declare namespace query$
|
|
6809
|
-
export { query$
|
|
6807
|
+
declare const query$7_filterParticipants: typeof filterParticipants;
|
|
6808
|
+
declare const query$7_getCompetitionParticipants: typeof getCompetitionParticipants;
|
|
6809
|
+
declare const query$7_getPairedParticipant: typeof getPairedParticipant;
|
|
6810
|
+
declare const query$7_getParticipantEventDetails: typeof getParticipantEventDetails;
|
|
6811
|
+
declare const query$7_getParticipantMembership: typeof getParticipantMembership;
|
|
6812
|
+
declare const query$7_getParticipantScaleItem: typeof getParticipantScaleItem;
|
|
6813
|
+
declare const query$7_getParticipantSchedules: typeof getParticipantSchedules;
|
|
6814
|
+
declare const query$7_getParticipantSignInStatus: typeof getParticipantSignInStatus;
|
|
6815
|
+
declare const query$7_getParticipantTimeItem: typeof getParticipantTimeItem;
|
|
6816
|
+
declare const query$7_getParticipants: typeof getParticipants;
|
|
6817
|
+
declare const query$7_getScaleValues: typeof getScaleValues;
|
|
6818
|
+
declare const query$7_participantScaleItem: typeof participantScaleItem;
|
|
6819
|
+
declare const query$7_validateLineUp: typeof validateLineUp;
|
|
6820
|
+
declare namespace query$7 {
|
|
6821
|
+
export { query$7_filterParticipants as filterParticipants, query$7_getCompetitionParticipants as getCompetitionParticipants, query$7_getPairedParticipant as getPairedParticipant, query$7_getParticipantEventDetails as getParticipantEventDetails, query$7_getParticipantMembership as getParticipantMembership, query$7_getParticipantScaleItem as getParticipantScaleItem, query$7_getParticipantSchedules as getParticipantSchedules, query$7_getParticipantSignInStatus as getParticipantSignInStatus, query$7_getParticipantTimeItem as getParticipantTimeItem, query$7_getParticipants as getParticipants, query$7_getScaleValues as getScaleValues, query$7_participantScaleItem as participantScaleItem, query$7_validateLineUp as validateLineUp };
|
|
6810
6822
|
}
|
|
6811
6823
|
|
|
6812
6824
|
declare const index$c_addIndividualParticipantIds: typeof addIndividualParticipantIds;
|
|
@@ -6848,7 +6860,7 @@ declare const index$c_setParticipantScaleItem: typeof setParticipantScaleItem;
|
|
|
6848
6860
|
declare const index$c_setParticipantScaleItems: typeof setParticipantScaleItems;
|
|
6849
6861
|
declare const index$c_validateLineUp: typeof validateLineUp;
|
|
6850
6862
|
declare namespace index$c {
|
|
6851
|
-
export { 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$
|
|
6863
|
+
export { 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 };
|
|
6852
6864
|
}
|
|
6853
6865
|
|
|
6854
6866
|
type AttachPoliciesArgs = {
|
|
@@ -6884,10 +6896,10 @@ declare function removePolicy(params: RemovePolicyArgs): (ResultType & {
|
|
|
6884
6896
|
};
|
|
6885
6897
|
};
|
|
6886
6898
|
|
|
6887
|
-
declare const mutate$
|
|
6888
|
-
declare const mutate$
|
|
6889
|
-
declare namespace mutate$
|
|
6890
|
-
export { mutate$
|
|
6899
|
+
declare const mutate$6_attachPolicies: typeof attachPolicies;
|
|
6900
|
+
declare const mutate$6_removePolicy: typeof removePolicy;
|
|
6901
|
+
declare namespace mutate$6 {
|
|
6902
|
+
export { mutate$6_attachPolicies as attachPolicies, mutate$6_removePolicy as removePolicy };
|
|
6891
6903
|
}
|
|
6892
6904
|
|
|
6893
6905
|
type GetAppliedPoliciesArgs = {
|
|
@@ -6928,11 +6940,11 @@ declare function findPolicy({ tournamentRecord, drawDefinition, policyType, stru
|
|
|
6928
6940
|
info?: string;
|
|
6929
6941
|
};
|
|
6930
6942
|
|
|
6931
|
-
declare const query$
|
|
6932
|
-
declare const query$
|
|
6933
|
-
declare const query$
|
|
6934
|
-
declare namespace query$
|
|
6935
|
-
export { query$
|
|
6943
|
+
declare const query$6_findPolicy: typeof findPolicy;
|
|
6944
|
+
declare const query$6_getAppliedPolicies: typeof getAppliedPolicies;
|
|
6945
|
+
declare const query$6_getPolicyDefinitions: typeof getPolicyDefinitions;
|
|
6946
|
+
declare namespace query$6 {
|
|
6947
|
+
export { query$6_findPolicy as findPolicy, query$6_getAppliedPolicies as getAppliedPolicies, query$6_getPolicyDefinitions as getPolicyDefinitions };
|
|
6936
6948
|
}
|
|
6937
6949
|
|
|
6938
6950
|
declare const index$b_attachPolicies: typeof attachPolicies;
|
|
@@ -6941,7 +6953,7 @@ declare const index$b_getAppliedPolicies: typeof getAppliedPolicies;
|
|
|
6941
6953
|
declare const index$b_getPolicyDefinitions: typeof getPolicyDefinitions;
|
|
6942
6954
|
declare const index$b_removePolicy: typeof removePolicy;
|
|
6943
6955
|
declare namespace index$b {
|
|
6944
|
-
export { index$b_attachPolicies as attachPolicies, index$b_findPolicy as findPolicy, index$b_getAppliedPolicies as getAppliedPolicies, index$b_getPolicyDefinitions as getPolicyDefinitions, mutate$
|
|
6956
|
+
export { index$b_attachPolicies as attachPolicies, index$b_findPolicy as findPolicy, index$b_getAppliedPolicies as getAppliedPolicies, index$b_getPolicyDefinitions as getPolicyDefinitions, mutate$6 as mutate, query$6 as query, index$b_removePolicy as removePolicy };
|
|
6945
6957
|
}
|
|
6946
6958
|
|
|
6947
6959
|
declare function publishEventSeeding({ removePriorValues, stageSeedingScaleNames, seedingScaleNames, tournamentRecord, status, drawIds, event, }: {
|
|
@@ -7058,22 +7070,17 @@ declare function publishEvent(params: PublishEventType): ResultType | {
|
|
|
7058
7070
|
error?: undefined;
|
|
7059
7071
|
};
|
|
7060
7072
|
|
|
7061
|
-
declare const mutate$
|
|
7062
|
-
declare const mutate$
|
|
7063
|
-
declare const mutate$
|
|
7064
|
-
declare const mutate$
|
|
7065
|
-
declare const mutate$
|
|
7066
|
-
declare const mutate$
|
|
7067
|
-
declare const mutate$
|
|
7068
|
-
declare namespace mutate$
|
|
7069
|
-
export { mutate$
|
|
7073
|
+
declare const mutate$5_publishEvent: typeof publishEvent;
|
|
7074
|
+
declare const mutate$5_publishEventSeeding: typeof publishEventSeeding;
|
|
7075
|
+
declare const mutate$5_publishOrderOfPlay: typeof publishOrderOfPlay;
|
|
7076
|
+
declare const mutate$5_setEventDisplay: typeof setEventDisplay;
|
|
7077
|
+
declare const mutate$5_unPublishEvent: typeof unPublishEvent;
|
|
7078
|
+
declare const mutate$5_unPublishEventSeeding: typeof unPublishEventSeeding;
|
|
7079
|
+
declare const mutate$5_unPublishOrderOfPlay: typeof unPublishOrderOfPlay;
|
|
7080
|
+
declare namespace mutate$5 {
|
|
7081
|
+
export { mutate$5_publishEvent as publishEvent, mutate$5_publishEventSeeding as publishEventSeeding, mutate$5_publishOrderOfPlay as publishOrderOfPlay, mutate$5_setEventDisplay as setEventDisplay, mutate$5_unPublishEvent as unPublishEvent, mutate$5_unPublishEventSeeding as unPublishEventSeeding, mutate$5_unPublishOrderOfPlay as unPublishOrderOfPlay };
|
|
7070
7082
|
}
|
|
7071
7083
|
|
|
7072
|
-
declare function getTournamentPublishStatus({ tournamentRecord, status }: {
|
|
7073
|
-
tournamentRecord: any;
|
|
7074
|
-
status?: string | undefined;
|
|
7075
|
-
}): any;
|
|
7076
|
-
|
|
7077
7084
|
declare function getEventPublishStatus({ event, status }: {
|
|
7078
7085
|
event: any;
|
|
7079
7086
|
status?: string | undefined;
|
|
@@ -7086,7 +7093,7 @@ type GetPublishStateArgs = {
|
|
|
7086
7093
|
drawIds?: string[];
|
|
7087
7094
|
eventId?: string;
|
|
7088
7095
|
drawId?: string;
|
|
7089
|
-
event
|
|
7096
|
+
event?: Event$1;
|
|
7090
7097
|
};
|
|
7091
7098
|
declare function getPublishState(params: GetPublishStateArgs): ResultType & {
|
|
7092
7099
|
publishState?: any;
|
|
@@ -7156,17 +7163,16 @@ declare function getEventData(params: GetEventDataArgs): {
|
|
|
7156
7163
|
eventData?: any;
|
|
7157
7164
|
};
|
|
7158
7165
|
|
|
7159
|
-
declare const query$
|
|
7160
|
-
declare const query$
|
|
7161
|
-
declare const query$
|
|
7162
|
-
declare const query$
|
|
7163
|
-
declare const query$
|
|
7164
|
-
declare const query$
|
|
7165
|
-
declare const query$
|
|
7166
|
-
declare const query$
|
|
7167
|
-
declare
|
|
7168
|
-
|
|
7169
|
-
export { query$4_bulkUpdatePublishedEventIds as bulkUpdatePublishedEventIds, query$4_getAllEventData as getAllEventData, query$4_getCourtInfo as getCourtInfo, query$4_getDrawData as getDrawData, query$4_getEventData as getEventData, query$4_getEventPublishStatus as getEventPublishStatus, query$4_getPublishState as getPublishState, query$4_getTournamentPublishStatus as getTournamentPublishStatus, query$4_getVenueData as getVenueData };
|
|
7166
|
+
declare const query$5_bulkUpdatePublishedEventIds: typeof bulkUpdatePublishedEventIds;
|
|
7167
|
+
declare const query$5_getAllEventData: typeof getAllEventData;
|
|
7168
|
+
declare const query$5_getCourtInfo: typeof getCourtInfo;
|
|
7169
|
+
declare const query$5_getDrawData: typeof getDrawData;
|
|
7170
|
+
declare const query$5_getEventData: typeof getEventData;
|
|
7171
|
+
declare const query$5_getEventPublishStatus: typeof getEventPublishStatus;
|
|
7172
|
+
declare const query$5_getPublishState: typeof getPublishState;
|
|
7173
|
+
declare const query$5_getVenueData: typeof getVenueData;
|
|
7174
|
+
declare namespace query$5 {
|
|
7175
|
+
export { query$5_bulkUpdatePublishedEventIds as bulkUpdatePublishedEventIds, query$5_getAllEventData as getAllEventData, query$5_getCourtInfo as getCourtInfo, query$5_getDrawData as getDrawData, query$5_getEventData as getEventData, query$5_getEventPublishStatus as getEventPublishStatus, query$5_getPublishState as getPublishState, query$5_getVenueData as getVenueData };
|
|
7170
7176
|
}
|
|
7171
7177
|
|
|
7172
7178
|
declare const index$a_bulkUpdatePublishedEventIds: typeof bulkUpdatePublishedEventIds;
|
|
@@ -7176,7 +7182,6 @@ declare const index$a_getDrawData: typeof getDrawData;
|
|
|
7176
7182
|
declare const index$a_getEventData: typeof getEventData;
|
|
7177
7183
|
declare const index$a_getEventPublishStatus: typeof getEventPublishStatus;
|
|
7178
7184
|
declare const index$a_getPublishState: typeof getPublishState;
|
|
7179
|
-
declare const index$a_getTournamentPublishStatus: typeof getTournamentPublishStatus;
|
|
7180
7185
|
declare const index$a_getVenueData: typeof getVenueData;
|
|
7181
7186
|
declare const index$a_publishEvent: typeof publishEvent;
|
|
7182
7187
|
declare const index$a_publishEventSeeding: typeof publishEventSeeding;
|
|
@@ -7186,7 +7191,7 @@ declare const index$a_unPublishEvent: typeof unPublishEvent;
|
|
|
7186
7191
|
declare const index$a_unPublishEventSeeding: typeof unPublishEventSeeding;
|
|
7187
7192
|
declare const index$a_unPublishOrderOfPlay: typeof unPublishOrderOfPlay;
|
|
7188
7193
|
declare namespace index$a {
|
|
7189
|
-
export { index$a_bulkUpdatePublishedEventIds as bulkUpdatePublishedEventIds, index$a_getAllEventData as getAllEventData, index$a_getCourtInfo as getCourtInfo, index$a_getDrawData as getDrawData, index$a_getEventData as getEventData, index$a_getEventPublishStatus as getEventPublishStatus, index$a_getPublishState as getPublishState, index$
|
|
7194
|
+
export { index$a_bulkUpdatePublishedEventIds as bulkUpdatePublishedEventIds, index$a_getAllEventData as getAllEventData, index$a_getCourtInfo as getCourtInfo, index$a_getDrawData as getDrawData, index$a_getEventData as getEventData, index$a_getEventPublishStatus as getEventPublishStatus, index$a_getPublishState as getPublishState, index$a_getVenueData as getVenueData, mutate$5 as mutate, index$a_publishEvent as publishEvent, index$a_publishEventSeeding as publishEventSeeding, index$a_publishOrderOfPlay as publishOrderOfPlay, query$5 as query, index$a_setEventDisplay as setEventDisplay, index$a_unPublishEvent as unPublishEvent, index$a_unPublishEventSeeding as unPublishEventSeeding, index$a_unPublishOrderOfPlay as unPublishOrderOfPlay };
|
|
7190
7195
|
}
|
|
7191
7196
|
|
|
7192
7197
|
type FindExtensionType = {
|
|
@@ -7276,10 +7281,12 @@ declare function analyzeTournament({ tournamentRecord }: {
|
|
|
7276
7281
|
error?: undefined;
|
|
7277
7282
|
};
|
|
7278
7283
|
|
|
7279
|
-
declare function getTournamentInfo(
|
|
7280
|
-
tournamentRecord:
|
|
7284
|
+
declare function getTournamentInfo(params?: {
|
|
7285
|
+
tournamentRecord: Tournament;
|
|
7286
|
+
usePublishState?: boolean;
|
|
7281
7287
|
}): {
|
|
7282
7288
|
tournamentInfo?: any;
|
|
7289
|
+
eventInfo?: any[];
|
|
7283
7290
|
error?: ErrorType;
|
|
7284
7291
|
};
|
|
7285
7292
|
|
|
@@ -7291,21 +7298,21 @@ declare function analyzeDraws({ tournamentRecord }: {
|
|
|
7291
7298
|
success?: boolean;
|
|
7292
7299
|
};
|
|
7293
7300
|
|
|
7294
|
-
declare const query$
|
|
7295
|
-
declare const query$
|
|
7296
|
-
declare const query$
|
|
7297
|
-
declare const query$
|
|
7298
|
-
declare const query$
|
|
7299
|
-
declare const query$
|
|
7300
|
-
declare const query$
|
|
7301
|
-
declare const query$
|
|
7302
|
-
declare const query$
|
|
7303
|
-
declare const query$
|
|
7304
|
-
declare const query$
|
|
7305
|
-
declare const query$
|
|
7306
|
-
declare const query$
|
|
7307
|
-
declare namespace query$
|
|
7308
|
-
export { query$
|
|
7301
|
+
declare const query$4_analyzeDraws: typeof analyzeDraws;
|
|
7302
|
+
declare const query$4_analyzeTournament: typeof analyzeTournament;
|
|
7303
|
+
declare const query$4_getAllowedDrawTypes: typeof getAllowedDrawTypes;
|
|
7304
|
+
declare const query$4_getAllowedMatchUpFormats: typeof getAllowedMatchUpFormats;
|
|
7305
|
+
declare const query$4_getAppliedPolicies: typeof getAppliedPolicies;
|
|
7306
|
+
declare const query$4_getCompetitionDateRange: typeof getCompetitionDateRange;
|
|
7307
|
+
declare const query$4_getCompetitionPenalties: typeof getCompetitionPenalties;
|
|
7308
|
+
declare const query$4_getPolicyDefinitions: typeof getPolicyDefinitions;
|
|
7309
|
+
declare const query$4_getTournamentInfo: typeof getTournamentInfo;
|
|
7310
|
+
declare const query$4_getTournamentPenalties: typeof getTournamentPenalties;
|
|
7311
|
+
declare const query$4_getTournamentPersons: typeof getTournamentPersons;
|
|
7312
|
+
declare const query$4_getTournamentStructures: typeof getTournamentStructures;
|
|
7313
|
+
declare const query$4_getTournamentTimeItem: typeof getTournamentTimeItem;
|
|
7314
|
+
declare namespace query$4 {
|
|
7315
|
+
export { query$4_analyzeDraws as analyzeDraws, query$4_analyzeTournament as analyzeTournament, query$4_getAllowedDrawTypes as getAllowedDrawTypes, query$4_getAllowedMatchUpFormats as getAllowedMatchUpFormats, query$4_getAppliedPolicies as getAppliedPolicies, query$4_getCompetitionDateRange as getCompetitionDateRange, query$4_getCompetitionPenalties as getCompetitionPenalties, query$4_getPolicyDefinitions as getPolicyDefinitions, query$4_getTournamentInfo as getTournamentInfo, query$4_getTournamentPenalties as getTournamentPenalties, query$4_getTournamentPersons as getTournamentPersons, query$4_getTournamentStructures as getTournamentStructures, query$4_getTournamentTimeItem as getTournamentTimeItem };
|
|
7309
7316
|
}
|
|
7310
7317
|
|
|
7311
7318
|
type GenderValidityCheckArgs = {
|
|
@@ -7368,12 +7375,12 @@ declare function getTieFormat({ tournamentRecord, drawDefinition, structureId, m
|
|
|
7368
7375
|
matchUp?: MatchUp;
|
|
7369
7376
|
};
|
|
7370
7377
|
|
|
7371
|
-
declare const query$
|
|
7372
|
-
declare const query$
|
|
7373
|
-
declare const query$
|
|
7374
|
-
declare const query$
|
|
7375
|
-
declare namespace query$
|
|
7376
|
-
export { query$
|
|
7378
|
+
declare const query$3_compareTieFormats: typeof compareTieFormats;
|
|
7379
|
+
declare const query$3_getTieFormat: typeof getTieFormat;
|
|
7380
|
+
declare const query$3_tieFormatGenderValidityCheck: typeof tieFormatGenderValidityCheck;
|
|
7381
|
+
declare const query$3_validateCollectionDefinition: typeof validateCollectionDefinition;
|
|
7382
|
+
declare namespace query$3 {
|
|
7383
|
+
export { query$3_compareTieFormats as compareTieFormats, query$3_getTieFormat as getTieFormat, query$3_tieFormatGenderValidityCheck as tieFormatGenderValidityCheck, query$3_validateCollectionDefinition as validateCollectionDefinition };
|
|
7377
7384
|
}
|
|
7378
7385
|
|
|
7379
7386
|
type GetScheduledRoundsDetailsArgs = {
|
|
@@ -7424,6 +7431,33 @@ declare function getSchedulingProfileIssues(params?: GetSchedulingProfileIssuesA
|
|
|
7424
7431
|
error?: undefined;
|
|
7425
7432
|
};
|
|
7426
7433
|
|
|
7434
|
+
type GetPersonRequestsArgs = {
|
|
7435
|
+
tournamentRecords: {
|
|
7436
|
+
[key: string]: Tournament;
|
|
7437
|
+
};
|
|
7438
|
+
requestType?: string;
|
|
7439
|
+
};
|
|
7440
|
+
declare function getPersonRequests(params: GetPersonRequestsArgs): {
|
|
7441
|
+
personRequests?: PersonRequests;
|
|
7442
|
+
error?: ErrorType;
|
|
7443
|
+
};
|
|
7444
|
+
|
|
7445
|
+
type GetProfileRoundsArgs = {
|
|
7446
|
+
tournamentRecords?: {
|
|
7447
|
+
[key: string]: Tournament;
|
|
7448
|
+
};
|
|
7449
|
+
tournamentRecord?: Tournament;
|
|
7450
|
+
schedulingProfile?: any;
|
|
7451
|
+
withRoundId?: boolean;
|
|
7452
|
+
};
|
|
7453
|
+
declare function getProfileRounds({ tournamentRecords, schedulingProfile, tournamentRecord, withRoundId, }: GetProfileRoundsArgs): {
|
|
7454
|
+
segmentedRounds?: {
|
|
7455
|
+
[key: string]: any;
|
|
7456
|
+
};
|
|
7457
|
+
profileRounds?: any[];
|
|
7458
|
+
error?: ErrorType;
|
|
7459
|
+
};
|
|
7460
|
+
|
|
7427
7461
|
type GetSchedulingProfileArgs = {
|
|
7428
7462
|
tournamentRecords?: TournamentRecords;
|
|
7429
7463
|
tournamentRecord?: Tournament;
|
|
@@ -7441,23 +7475,13 @@ type SetSchedulingProfileArgs = {
|
|
|
7441
7475
|
};
|
|
7442
7476
|
declare function setSchedulingProfile({ tournamentRecords, tournamentRecord, schedulingProfile, }: SetSchedulingProfileArgs): any;
|
|
7443
7477
|
|
|
7444
|
-
|
|
7445
|
-
|
|
7446
|
-
|
|
7447
|
-
|
|
7448
|
-
|
|
7449
|
-
|
|
7450
|
-
|
|
7451
|
-
personRequests?: PersonRequests;
|
|
7452
|
-
error?: ErrorType;
|
|
7453
|
-
};
|
|
7454
|
-
|
|
7455
|
-
declare const query$1_getPersonRequests: typeof getPersonRequests;
|
|
7456
|
-
declare const query$1_getScheduledRoundsDetails: typeof getScheduledRoundsDetails;
|
|
7457
|
-
declare const query$1_getSchedulingProfile: typeof getSchedulingProfile;
|
|
7458
|
-
declare const query$1_getSchedulingProfileIssues: typeof getSchedulingProfileIssues;
|
|
7459
|
-
declare namespace query$1 {
|
|
7460
|
-
export { query$1_getPersonRequests as getPersonRequests, query$1_getScheduledRoundsDetails as getScheduledRoundsDetails, query$1_getSchedulingProfile as getSchedulingProfile, query$1_getSchedulingProfileIssues as getSchedulingProfileIssues };
|
|
7478
|
+
declare const query$2_getPersonRequests: typeof getPersonRequests;
|
|
7479
|
+
declare const query$2_getProfileRounds: typeof getProfileRounds;
|
|
7480
|
+
declare const query$2_getScheduledRoundsDetails: typeof getScheduledRoundsDetails;
|
|
7481
|
+
declare const query$2_getSchedulingProfile: typeof getSchedulingProfile;
|
|
7482
|
+
declare const query$2_getSchedulingProfileIssues: typeof getSchedulingProfileIssues;
|
|
7483
|
+
declare namespace query$2 {
|
|
7484
|
+
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 };
|
|
7461
7485
|
}
|
|
7462
7486
|
|
|
7463
7487
|
type GetVenuesAndCourtsArgs = {
|
|
@@ -7514,14 +7538,15 @@ declare function getCourts({ tournamentRecord, venueId, venueIds }: {
|
|
|
7514
7538
|
error?: undefined;
|
|
7515
7539
|
};
|
|
7516
7540
|
|
|
7517
|
-
declare const
|
|
7518
|
-
declare const
|
|
7519
|
-
declare const
|
|
7520
|
-
declare const
|
|
7521
|
-
declare namespace query {
|
|
7522
|
-
export {
|
|
7541
|
+
declare const query$1_getCompetitionVenues: typeof getCompetitionVenues;
|
|
7542
|
+
declare const query$1_getCourts: typeof getCourts;
|
|
7543
|
+
declare const query$1_getVenuesAndCourts: typeof getVenuesAndCourts;
|
|
7544
|
+
declare const query$1_publicFindVenue: typeof publicFindVenue;
|
|
7545
|
+
declare namespace query$1 {
|
|
7546
|
+
export { query$1_getCompetitionVenues as getCompetitionVenues, query$1_getCourts as getCourts, query$1_getVenuesAndCourts as getVenuesAndCourts, query$1_publicFindVenue as publicFindVenue };
|
|
7523
7547
|
}
|
|
7524
7548
|
|
|
7549
|
+
declare const index$9_addGoesTo: typeof addGoesTo;
|
|
7525
7550
|
declare const index$9_allCompetitionMatchUps: typeof allCompetitionMatchUps;
|
|
7526
7551
|
declare const index$9_allDrawMatchUps: typeof allDrawMatchUps;
|
|
7527
7552
|
declare const index$9_allEventMatchUps: typeof allEventMatchUps;
|
|
@@ -7581,6 +7606,7 @@ declare const index$9_getMatchUpFormatTiming: typeof getMatchUpFormatTiming;
|
|
|
7581
7606
|
declare const index$9_getMatchUpFormatTimingUpdate: typeof getMatchUpFormatTimingUpdate;
|
|
7582
7607
|
declare const index$9_getMatchUpScheduleDetails: typeof getMatchUpScheduleDetails;
|
|
7583
7608
|
declare const index$9_getMatchUpType: typeof getMatchUpType;
|
|
7609
|
+
declare const index$9_getMatchUpsMap: typeof getMatchUpsMap;
|
|
7584
7610
|
declare const index$9_getMatchUpsStats: typeof getMatchUpsStats;
|
|
7585
7611
|
declare const index$9_getMaxEntryPosition: typeof getMaxEntryPosition;
|
|
7586
7612
|
declare const index$9_getModifiedMatchUpFormatTiming: typeof getModifiedMatchUpFormatTiming;
|
|
@@ -7599,6 +7625,7 @@ declare const index$9_getPolicyDefinitions: typeof getPolicyDefinitions;
|
|
|
7599
7625
|
declare const index$9_getPositionAssignments: typeof getPositionAssignments;
|
|
7600
7626
|
declare const index$9_getPositionsPlayedOff: typeof getPositionsPlayedOff;
|
|
7601
7627
|
declare const index$9_getPredictiveAccuracy: typeof getPredictiveAccuracy;
|
|
7628
|
+
declare const index$9_getProfileRounds: typeof getProfileRounds;
|
|
7602
7629
|
declare const index$9_getRoundMatchUps: typeof getRoundMatchUps;
|
|
7603
7630
|
declare const index$9_getRounds: typeof getRounds;
|
|
7604
7631
|
declare const index$9_getScaleValues: typeof getScaleValues;
|
|
@@ -7637,7 +7664,7 @@ declare const index$9_validMatchUps: typeof validMatchUps;
|
|
|
7637
7664
|
declare const index$9_validateCollectionDefinition: typeof validateCollectionDefinition;
|
|
7638
7665
|
declare const index$9_validateLineUp: typeof validateLineUp;
|
|
7639
7666
|
declare namespace index$9 {
|
|
7640
|
-
export { index$9_allCompetitionMatchUps as allCompetitionMatchUps, index$9_allDrawMatchUps as allDrawMatchUps, index$9_allEventMatchUps as allEventMatchUps, index$9_allPlayoffPositionsFilled as allPlayoffPositionsFilled, index$9_allTournamentMatchUps as allTournamentMatchUps, index$9_analyzeDraws as analyzeDraws, index$9_analyzeMatchUp as analyzeMatchUp, index$9_analyzeTournament as analyzeTournament, index$9_bulkUpdatePublishedEventIds as bulkUpdatePublishedEventIds, index$9_calculateWinCriteria as calculateWinCriteria, index$9_categoryCanContain as categoryCanContain, index$9_checkMatchUpIsComplete as checkMatchUpIsComplete, index$9_checkValidEntries as checkValidEntries, index$9_compareTieFormats as compareTieFormats, index$9_competitionScheduleMatchUps as competitionScheduleMatchUps, index$9_credits as credits, index$9_drawMatchUps as drawMatchUps, index$9_eventMatchUps as eventMatchUps, index$9_filterParticipants as filterParticipants, publicFindDrawDefinition as findDrawDefinition, index$9_findExtension as findExtension, index$9_getAllDrawMatchUps as getAllDrawMatchUps, index$9_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_getCourts as getCourts, index$9_getDrawDefinitionTimeItem as getDrawDefinitionTimeItem, index$9_getDrawParticipantRepresentativeIds as getDrawParticipantRepresentativeIds, index$9_getDrawTypeCoercion as getDrawTypeCoercion, index$9_getEligibleVoluntaryConsolationParticipants as getEligibleVoluntaryConsolationParticipants, index$9_getEntriesAndSeedsCount as getEntriesAndSeedsCount, index$9_getEvent as getEvent, index$9_getEventMatchUpFormatTiming as getEventMatchUpFormatTiming, index$9_getEventProperties as getEventProperties, index$9_getEventStructures as getEventStructures, index$9_getEventTimeItem as getEventTimeItem, index$9_getEvents as getEvents, index$9_getFlightProfile as getFlightProfile, index$9_getLinkedTournamentIds as getLinkedTournamentIds, index$9_getMatchUpCompetitiveProfile as getMatchUpCompetitiveProfile, index$9_getMatchUpContextIds as getMatchUpContextIds, index$9_getMatchUpDailyLimits as getMatchUpDailyLimits, index$9_getMatchUpDailyLimitsUpdate as getMatchUpDailyLimitsUpdate, index$9_getMatchUpDependencies as getMatchUpDependencies, index$9_getMatchUpFormat as getMatchUpFormat, index$9_getMatchUpFormatTiming as getMatchUpFormatTiming, index$9_getMatchUpFormatTimingUpdate as getMatchUpFormatTimingUpdate, index$9_getMatchUpScheduleDetails as getMatchUpScheduleDetails, index$9_getMatchUpType as getMatchUpType, index$9_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_getRoundMatchUps as getRoundMatchUps, index$9_getRounds as getRounds, index$9_getScaleValues as getScaleValues, index$9_getScaledEntries as getScaledEntries, index$9_getScheduledRoundsDetails as getScheduledRoundsDetails, index$9_getSchedulingProfile as getSchedulingProfile, index$9_getSchedulingProfileIssues as getSchedulingProfileIssues, index$9_getSeedingThresholds as getSeedingThresholds, index$9_getSeedsCount as getSeedsCount, index$9_getStructureSeedAssignments as getStructureSeedAssignments, index$9_getTeamLineUp as getTeamLineUp, index$9_getTieFormat as getTieFormat, index$9_getTimeItem as getTimeItem, index$9_getTournamentIds as getTournamentIds, index$9_getTournamentInfo as getTournamentInfo, index$9_getTournamentPenalties as getTournamentPenalties, index$9_getTournamentPersons as getTournamentPersons, index$9_getTournamentStructures as getTournamentStructures, index$9_getTournamentTimeItem as getTournamentTimeItem, index$9_getValidGroupSizes as getValidGroupSizes, index$9_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 };
|
|
7667
|
+
export { index$9_addGoesTo as addGoesTo, index$9_allCompetitionMatchUps as allCompetitionMatchUps, index$9_allDrawMatchUps as allDrawMatchUps, index$9_allEventMatchUps as allEventMatchUps, index$9_allPlayoffPositionsFilled as allPlayoffPositionsFilled, index$9_allTournamentMatchUps as allTournamentMatchUps, index$9_analyzeDraws as analyzeDraws, index$9_analyzeMatchUp as analyzeMatchUp, index$9_analyzeTournament as analyzeTournament, index$9_bulkUpdatePublishedEventIds as bulkUpdatePublishedEventIds, index$9_calculateWinCriteria as calculateWinCriteria, index$9_categoryCanContain as categoryCanContain, index$9_checkMatchUpIsComplete as checkMatchUpIsComplete, index$9_checkValidEntries as checkValidEntries, index$9_compareTieFormats as compareTieFormats, index$9_competitionScheduleMatchUps as competitionScheduleMatchUps, index$9_credits as credits, index$9_drawMatchUps as drawMatchUps, index$9_eventMatchUps as eventMatchUps, index$9_filterParticipants as filterParticipants, publicFindDrawDefinition as findDrawDefinition, index$9_findExtension as findExtension, index$9_getAllDrawMatchUps as getAllDrawMatchUps, index$9_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_getCourts as getCourts, index$9_getDrawDefinitionTimeItem as getDrawDefinitionTimeItem, index$9_getDrawParticipantRepresentativeIds as getDrawParticipantRepresentativeIds, index$9_getDrawTypeCoercion as getDrawTypeCoercion, index$9_getEligibleVoluntaryConsolationParticipants as getEligibleVoluntaryConsolationParticipants, index$9_getEntriesAndSeedsCount as getEntriesAndSeedsCount, index$9_getEvent as getEvent, index$9_getEventMatchUpFormatTiming as getEventMatchUpFormatTiming, index$9_getEventProperties as getEventProperties, index$9_getEventStructures as getEventStructures, index$9_getEventTimeItem as getEventTimeItem, index$9_getEvents as getEvents, index$9_getFlightProfile as getFlightProfile, index$9_getLinkedTournamentIds as getLinkedTournamentIds, index$9_getMatchUpCompetitiveProfile as getMatchUpCompetitiveProfile, index$9_getMatchUpContextIds as getMatchUpContextIds, index$9_getMatchUpDailyLimits as getMatchUpDailyLimits, index$9_getMatchUpDailyLimitsUpdate as getMatchUpDailyLimitsUpdate, index$9_getMatchUpDependencies as getMatchUpDependencies, index$9_getMatchUpFormat as getMatchUpFormat, index$9_getMatchUpFormatTiming as getMatchUpFormatTiming, index$9_getMatchUpFormatTimingUpdate as getMatchUpFormatTimingUpdate, index$9_getMatchUpScheduleDetails as getMatchUpScheduleDetails, index$9_getMatchUpType as getMatchUpType, index$9_getMatchUpsMap as getMatchUpsMap, index$9_getMatchUpsStats as getMatchUpsStats, index$9_getMaxEntryPosition as getMaxEntryPosition, index$9_getModifiedMatchUpFormatTiming as getModifiedMatchUpFormatTiming, index$9_getPairedParticipant as getPairedParticipant, index$9_getParticipantEventDetails as getParticipantEventDetails, index$9_getParticipantIdFinishingPositions as getParticipantIdFinishingPositions, index$9_getParticipantMembership as getParticipantMembership, index$9_getParticipantResults as getParticipantResults, index$9_getParticipantScaleItem as getParticipantScaleItem, index$9_getParticipantSchedules as getParticipantSchedules, index$9_getParticipantSignInStatus as getParticipantSignInStatus, index$9_getParticipantTimeItem as getParticipantTimeItem, index$9_getParticipants as getParticipants, index$9_getPersonRequests as getPersonRequests, index$9_getPolicyDefinitions as getPolicyDefinitions, index$9_getPositionAssignments as getPositionAssignments, index$9_getPositionsPlayedOff as getPositionsPlayedOff, index$9_getPredictiveAccuracy as getPredictiveAccuracy, index$9_getProfileRounds as getProfileRounds, index$9_getRoundMatchUps as getRoundMatchUps, index$9_getRounds as getRounds, index$9_getScaleValues as getScaleValues, index$9_getScaledEntries as getScaledEntries, index$9_getScheduledRoundsDetails as getScheduledRoundsDetails, index$9_getSchedulingProfile as getSchedulingProfile, index$9_getSchedulingProfileIssues as getSchedulingProfileIssues, index$9_getSeedingThresholds as getSeedingThresholds, index$9_getSeedsCount as getSeedsCount, index$9_getStructureSeedAssignments as getStructureSeedAssignments, index$9_getTeamLineUp as getTeamLineUp, index$9_getTieFormat as getTieFormat, index$9_getTimeItem as getTimeItem, index$9_getTournamentIds as getTournamentIds, index$9_getTournamentInfo as getTournamentInfo, index$9_getTournamentPenalties as getTournamentPenalties, index$9_getTournamentPersons as getTournamentPersons, index$9_getTournamentStructures as getTournamentStructures, index$9_getTournamentTimeItem as getTournamentTimeItem, index$9_getValidGroupSizes as getValidGroupSizes, index$9_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 };
|
|
7641
7668
|
}
|
|
7642
7669
|
|
|
7643
7670
|
type StatCounters = {
|
|
@@ -8295,22 +8322,6 @@ declare function findMatchUpFormatTiming({ defaultRecoveryMinutes, defaultAverag
|
|
|
8295
8322
|
error?: undefined;
|
|
8296
8323
|
};
|
|
8297
8324
|
|
|
8298
|
-
type GetProfileRoundsArgs = {
|
|
8299
|
-
tournamentRecords?: {
|
|
8300
|
-
[key: string]: Tournament;
|
|
8301
|
-
};
|
|
8302
|
-
tournamentRecord?: Tournament;
|
|
8303
|
-
schedulingProfile?: any;
|
|
8304
|
-
withRoundId?: boolean;
|
|
8305
|
-
};
|
|
8306
|
-
declare function getProfileRounds({ tournamentRecords, schedulingProfile, tournamentRecord, withRoundId, }: GetProfileRoundsArgs): {
|
|
8307
|
-
segmentedRounds?: {
|
|
8308
|
-
[key: string]: any;
|
|
8309
|
-
};
|
|
8310
|
-
profileRounds?: any[];
|
|
8311
|
-
error?: ErrorType;
|
|
8312
|
-
};
|
|
8313
|
-
|
|
8314
8325
|
declare function courtGridRows({ courtPrefix, minRowsCount, courtsData }: {
|
|
8315
8326
|
courtPrefix?: string | undefined;
|
|
8316
8327
|
minRowsCount: any;
|
|
@@ -8471,48 +8482,47 @@ declare function addMatchUpResumeTime({ removePriorValues, tournamentRecord, dra
|
|
|
8471
8482
|
info?: undefined;
|
|
8472
8483
|
};
|
|
8473
8484
|
|
|
8474
|
-
declare const mutate$
|
|
8475
|
-
declare const mutate$
|
|
8476
|
-
declare const mutate$
|
|
8477
|
-
declare const mutate$
|
|
8478
|
-
declare const mutate$
|
|
8479
|
-
declare const mutate$
|
|
8480
|
-
declare const mutate$
|
|
8481
|
-
declare const mutate$
|
|
8482
|
-
declare const mutate$
|
|
8483
|
-
declare const mutate$
|
|
8484
|
-
declare const mutate$
|
|
8485
|
-
declare const mutate$
|
|
8486
|
-
declare const mutate$
|
|
8487
|
-
declare const mutate$
|
|
8488
|
-
declare const mutate$
|
|
8489
|
-
declare const mutate$
|
|
8490
|
-
declare const mutate$
|
|
8491
|
-
declare const mutate$
|
|
8492
|
-
declare const mutate$
|
|
8493
|
-
declare const mutate$
|
|
8494
|
-
declare const mutate$
|
|
8495
|
-
declare const mutate$
|
|
8496
|
-
declare const mutate$
|
|
8497
|
-
declare const mutate$
|
|
8498
|
-
declare const mutate$
|
|
8499
|
-
declare const mutate$
|
|
8500
|
-
declare const mutate$
|
|
8501
|
-
declare const mutate$
|
|
8502
|
-
declare const mutate$
|
|
8503
|
-
declare const mutate$
|
|
8504
|
-
declare const mutate$
|
|
8505
|
-
declare const mutate$
|
|
8506
|
-
declare const mutate$
|
|
8507
|
-
declare const mutate$
|
|
8508
|
-
declare const mutate$
|
|
8509
|
-
declare const mutate$
|
|
8510
|
-
declare const mutate$
|
|
8511
|
-
declare const mutate$
|
|
8512
|
-
declare const mutate$
|
|
8513
|
-
declare
|
|
8514
|
-
|
|
8515
|
-
export { mutate$3_addMatchUpCourtOrder as addMatchUpCourtOrder, mutate$3_addMatchUpEndTime as addMatchUpEndTime, mutate$3_addMatchUpOfficial as addMatchUpOfficial, mutate$3_addMatchUpResumeTime as addMatchUpResumeTime, mutate$3_addMatchUpScheduleItems as addMatchUpScheduleItems, mutate$3_addMatchUpScheduledDate as addMatchUpScheduledDate, mutate$3_addMatchUpScheduledTime as addMatchUpScheduledTime, mutate$3_addMatchUpStartTime as addMatchUpStartTime, mutate$3_addMatchUpStopTime as addMatchUpStopTime, mutate$3_addSchedulingProfileRound as addSchedulingProfileRound, mutate$3_allocateTeamMatchUpCourts as allocateTeamMatchUpCourts, mutate$3_assignMatchUpCourt as assignMatchUpCourt, mutate$3_assignMatchUpVenue as assignMatchUpVenue, mutate$3_bulkRescheduleMatchUps as bulkRescheduleMatchUps, mutate$3_bulkScheduleMatchUps as bulkScheduleMatchUps, mutate$3_bulkScheduleTournamentMatchUps as bulkScheduleTournamentMatchUps, mutate$3_bulkUpdateCourtAssignments as bulkUpdateCourtAssignments, mutate$3_calculateScheduleTimes as calculateScheduleTimes, mutate$3_clearMatchUpSchedule as clearMatchUpSchedule, mutate$3_clearScheduledMatchUps as clearScheduledMatchUps, mutate$3_courtGridRows as courtGridRows, mutate$3_findMatchUpFormatTiming as findMatchUpFormatTiming, mutate$3_findVenue as findVenue, mutate$3_generateBookings as generateBookings, mutate$3_generateVirtualCourts as generateVirtualCourts, mutate$3_getProfileRounds as getProfileRounds, mutate$3_matchUpScheduleChange as matchUpScheduleChange, mutate$3_modifyMatchUpFormatTiming as modifyMatchUpFormatTiming, mutate$3_proAutoSchedule as proAutoSchedule, mutate$3_proConflicts as proConflicts, mutate$3_publicFindCourt as publicFindCourt, mutate$3_removeEventMatchUpFormatTiming as removeEventMatchUpFormatTiming, mutate$3_removeMatchUpCourtAssignment as removeMatchUpCourtAssignment, mutate$3_reorderUpcomingMatchUps as reorderUpcomingMatchUps, mutate$3_scheduleMatchUps as scheduleMatchUps, mutate$3_scheduleProfileRounds as scheduleProfileRounds, mutate$3_setMatchUpDailyLimits as setMatchUpDailyLimits, mutate$3_setSchedulingProfile as setSchedulingProfile, mutate$3_toggleParticipantCheckInState as toggleParticipantCheckInState, mutate$3_validateSchedulingProfile as validateSchedulingProfile };
|
|
8485
|
+
declare const mutate$4_addMatchUpCourtOrder: typeof addMatchUpCourtOrder;
|
|
8486
|
+
declare const mutate$4_addMatchUpEndTime: typeof addMatchUpEndTime;
|
|
8487
|
+
declare const mutate$4_addMatchUpOfficial: typeof addMatchUpOfficial;
|
|
8488
|
+
declare const mutate$4_addMatchUpResumeTime: typeof addMatchUpResumeTime;
|
|
8489
|
+
declare const mutate$4_addMatchUpScheduleItems: typeof addMatchUpScheduleItems;
|
|
8490
|
+
declare const mutate$4_addMatchUpScheduledDate: typeof addMatchUpScheduledDate;
|
|
8491
|
+
declare const mutate$4_addMatchUpScheduledTime: typeof addMatchUpScheduledTime;
|
|
8492
|
+
declare const mutate$4_addMatchUpStartTime: typeof addMatchUpStartTime;
|
|
8493
|
+
declare const mutate$4_addMatchUpStopTime: typeof addMatchUpStopTime;
|
|
8494
|
+
declare const mutate$4_addSchedulingProfileRound: typeof addSchedulingProfileRound;
|
|
8495
|
+
declare const mutate$4_allocateTeamMatchUpCourts: typeof allocateTeamMatchUpCourts;
|
|
8496
|
+
declare const mutate$4_assignMatchUpCourt: typeof assignMatchUpCourt;
|
|
8497
|
+
declare const mutate$4_assignMatchUpVenue: typeof assignMatchUpVenue;
|
|
8498
|
+
declare const mutate$4_bulkRescheduleMatchUps: typeof bulkRescheduleMatchUps;
|
|
8499
|
+
declare const mutate$4_bulkScheduleMatchUps: typeof bulkScheduleMatchUps;
|
|
8500
|
+
declare const mutate$4_bulkScheduleTournamentMatchUps: typeof bulkScheduleTournamentMatchUps;
|
|
8501
|
+
declare const mutate$4_bulkUpdateCourtAssignments: typeof bulkUpdateCourtAssignments;
|
|
8502
|
+
declare const mutate$4_calculateScheduleTimes: typeof calculateScheduleTimes;
|
|
8503
|
+
declare const mutate$4_clearMatchUpSchedule: typeof clearMatchUpSchedule;
|
|
8504
|
+
declare const mutate$4_clearScheduledMatchUps: typeof clearScheduledMatchUps;
|
|
8505
|
+
declare const mutate$4_courtGridRows: typeof courtGridRows;
|
|
8506
|
+
declare const mutate$4_findMatchUpFormatTiming: typeof findMatchUpFormatTiming;
|
|
8507
|
+
declare const mutate$4_findVenue: typeof findVenue;
|
|
8508
|
+
declare const mutate$4_generateBookings: typeof generateBookings;
|
|
8509
|
+
declare const mutate$4_generateVirtualCourts: typeof generateVirtualCourts;
|
|
8510
|
+
declare const mutate$4_matchUpScheduleChange: typeof matchUpScheduleChange;
|
|
8511
|
+
declare const mutate$4_modifyMatchUpFormatTiming: typeof modifyMatchUpFormatTiming;
|
|
8512
|
+
declare const mutate$4_proAutoSchedule: typeof proAutoSchedule;
|
|
8513
|
+
declare const mutate$4_proConflicts: typeof proConflicts;
|
|
8514
|
+
declare const mutate$4_publicFindCourt: typeof publicFindCourt;
|
|
8515
|
+
declare const mutate$4_removeEventMatchUpFormatTiming: typeof removeEventMatchUpFormatTiming;
|
|
8516
|
+
declare const mutate$4_removeMatchUpCourtAssignment: typeof removeMatchUpCourtAssignment;
|
|
8517
|
+
declare const mutate$4_reorderUpcomingMatchUps: typeof reorderUpcomingMatchUps;
|
|
8518
|
+
declare const mutate$4_scheduleMatchUps: typeof scheduleMatchUps;
|
|
8519
|
+
declare const mutate$4_scheduleProfileRounds: typeof scheduleProfileRounds;
|
|
8520
|
+
declare const mutate$4_setMatchUpDailyLimits: typeof setMatchUpDailyLimits;
|
|
8521
|
+
declare const mutate$4_setSchedulingProfile: typeof setSchedulingProfile;
|
|
8522
|
+
declare const mutate$4_toggleParticipantCheckInState: typeof toggleParticipantCheckInState;
|
|
8523
|
+
declare const mutate$4_validateSchedulingProfile: typeof validateSchedulingProfile;
|
|
8524
|
+
declare namespace mutate$4 {
|
|
8525
|
+
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_courtGridRows as courtGridRows, mutate$4_findMatchUpFormatTiming as findMatchUpFormatTiming, mutate$4_findVenue as findVenue, 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_publicFindCourt as publicFindCourt, 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_setSchedulingProfile as setSchedulingProfile, mutate$4_toggleParticipantCheckInState as toggleParticipantCheckInState, mutate$4_validateSchedulingProfile as validateSchedulingProfile };
|
|
8516
8526
|
}
|
|
8517
8527
|
|
|
8518
8528
|
declare const index$7_addMatchUpCourtOrder: typeof addMatchUpCourtOrder;
|
|
@@ -8560,7 +8570,7 @@ declare const index$7_setSchedulingProfile: typeof setSchedulingProfile;
|
|
|
8560
8570
|
declare const index$7_toggleParticipantCheckInState: typeof toggleParticipantCheckInState;
|
|
8561
8571
|
declare const index$7_validateSchedulingProfile: typeof validateSchedulingProfile;
|
|
8562
8572
|
declare namespace index$7 {
|
|
8563
|
-
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$
|
|
8573
|
+
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_setSchedulingProfile as setSchedulingProfile, index$7_toggleParticipantCheckInState as toggleParticipantCheckInState, index$7_validateSchedulingProfile as validateSchedulingProfile };
|
|
8564
8574
|
}
|
|
8565
8575
|
|
|
8566
8576
|
type TieMatchUpScore = {
|
|
@@ -8596,120 +8606,18 @@ declare function generateScoreString(params: GenerateScoreString): string | {
|
|
|
8596
8606
|
info?: ErrorType | string;
|
|
8597
8607
|
};
|
|
8598
8608
|
|
|
8599
|
-
declare function tidyScore(params: any): {
|
|
8600
|
-
error: {
|
|
8601
|
-
message: string;
|
|
8602
|
-
code: string;
|
|
8603
|
-
};
|
|
8604
|
-
matchUpStatus?: undefined;
|
|
8605
|
-
modifications?: undefined;
|
|
8606
|
-
attributes?: undefined;
|
|
8607
|
-
isValid?: undefined;
|
|
8608
|
-
score?: undefined;
|
|
8609
|
-
} | {
|
|
8610
|
-
matchUpStatus: any;
|
|
8611
|
-
modifications: any[];
|
|
8612
|
-
attributes: any;
|
|
8613
|
-
isValid: boolean;
|
|
8614
|
-
score: any;
|
|
8615
|
-
error?: undefined;
|
|
8616
|
-
};
|
|
8617
|
-
|
|
8618
8609
|
declare function reverseScore(params?: any): {
|
|
8619
8610
|
reversedScore?: any;
|
|
8620
8611
|
success?: boolean;
|
|
8621
8612
|
error?: ErrorType;
|
|
8622
8613
|
};
|
|
8623
8614
|
|
|
8624
|
-
|
|
8625
|
-
|
|
8626
|
-
|
|
8627
|
-
|
|
8628
|
-
|
|
8629
|
-
|
|
8630
|
-
tieFormat?: any;
|
|
8631
|
-
event?: Event$1;
|
|
8632
|
-
};
|
|
8633
|
-
declare function validateTieFormat(params: ValidateTieFormatArgs): ResultType;
|
|
8634
|
-
|
|
8635
|
-
type validateScoreTypes = {
|
|
8636
|
-
existingMatchUpStatus?: string;
|
|
8637
|
-
matchUpStatus?: string;
|
|
8638
|
-
matchUpFormat?: string;
|
|
8639
|
-
winningSide?: number;
|
|
8640
|
-
score: Score;
|
|
8641
|
-
};
|
|
8642
|
-
declare function validateScore({ existingMatchUpStatus, matchUpFormat, matchUpStatus, winningSide, score, }: validateScoreTypes): ResultType & {
|
|
8643
|
-
valid?: boolean;
|
|
8644
|
-
};
|
|
8645
|
-
|
|
8646
|
-
declare function checkScoreHasValue(params: any): boolean;
|
|
8647
|
-
|
|
8648
|
-
declare function analyzeSet(params: any): {
|
|
8649
|
-
[key: string]: any;
|
|
8650
|
-
};
|
|
8651
|
-
|
|
8652
|
-
type SetComplementArgs = {
|
|
8653
|
-
lowValue?: string | number;
|
|
8654
|
-
tiebreakAt?: number;
|
|
8655
|
-
isSide1?: boolean;
|
|
8656
|
-
NoAD?: boolean;
|
|
8657
|
-
setTo: number;
|
|
8658
|
-
};
|
|
8659
|
-
declare const getSetComplement: (params: SetComplementArgs) => number[] | false;
|
|
8660
|
-
type TiebreakComplementArgs = {
|
|
8661
|
-
lowValue?: number | string;
|
|
8662
|
-
tiebreakNoAd?: boolean;
|
|
8663
|
-
tiebreakTo: number;
|
|
8664
|
-
isSide1?: boolean;
|
|
8665
|
-
};
|
|
8666
|
-
declare const getTiebreakComplement: (params: TiebreakComplementArgs) => number[] | false;
|
|
8667
|
-
|
|
8668
|
-
declare function keyValueScore(params: any): {
|
|
8669
|
-
updated: boolean;
|
|
8670
|
-
info: string;
|
|
8671
|
-
scoreString?: undefined;
|
|
8672
|
-
sets?: undefined;
|
|
8673
|
-
winningSide?: undefined;
|
|
8674
|
-
matchUpStatus?: undefined;
|
|
8675
|
-
} | {
|
|
8676
|
-
updated: any;
|
|
8677
|
-
scoreString: any;
|
|
8678
|
-
sets: any;
|
|
8679
|
-
winningSide: any;
|
|
8680
|
-
matchUpStatus: any;
|
|
8681
|
-
info: any;
|
|
8682
|
-
};
|
|
8683
|
-
|
|
8684
|
-
type CheckSetIsCompleteArgs = {
|
|
8685
|
-
matchUpScoringFormat?: any;
|
|
8686
|
-
ignoreTiebreak?: boolean;
|
|
8687
|
-
isDecidingSet?: boolean;
|
|
8688
|
-
isTiebreakSet?: boolean;
|
|
8689
|
-
matchUpFormat?: string;
|
|
8690
|
-
set: any;
|
|
8691
|
-
};
|
|
8692
|
-
declare function checkSetIsComplete({ ignoreTiebreak, matchUpScoringFormat, matchUpFormat, isTiebreakSet, isDecidingSet, set, }: CheckSetIsCompleteArgs): boolean | {
|
|
8693
|
-
error: {
|
|
8694
|
-
message: string;
|
|
8695
|
-
code: string;
|
|
8696
|
-
};
|
|
8697
|
-
info: string;
|
|
8698
|
-
};
|
|
8699
|
-
|
|
8700
|
-
type ParseScoreArgs = {
|
|
8701
|
-
scoreString: string;
|
|
8702
|
-
tiebreakTo?: number;
|
|
8703
|
-
};
|
|
8704
|
-
type ParsedSetString = {
|
|
8705
|
-
winningSide: number | undefined;
|
|
8706
|
-
side1TiebreakScore?: number;
|
|
8707
|
-
side2TiebreakScore?: number;
|
|
8708
|
-
side1Score?: number;
|
|
8709
|
-
side2Score?: number;
|
|
8710
|
-
setNumber: number;
|
|
8711
|
-
};
|
|
8712
|
-
declare function parseScoreString({ tiebreakTo, scoreString }: ParseScoreArgs): ParsedSetString[];
|
|
8615
|
+
declare const generate$1_generateScoreString: typeof generateScoreString;
|
|
8616
|
+
declare const generate$1_generateTieMatchUpScore: typeof generateTieMatchUpScore;
|
|
8617
|
+
declare const generate$1_reverseScore: typeof reverseScore;
|
|
8618
|
+
declare namespace generate$1 {
|
|
8619
|
+
export { generate$1_generateScoreString as generateScoreString, generate$1_generateTieMatchUpScore as generateTieMatchUpScore, generate$1_reverseScore as reverseScore };
|
|
8620
|
+
}
|
|
8713
8621
|
|
|
8714
8622
|
declare function calculateHistoryScore(params: any): {
|
|
8715
8623
|
error: {
|
|
@@ -8831,6 +8739,148 @@ declare function undo({ matchUp }: {
|
|
|
8831
8739
|
|
|
8832
8740
|
declare const umo: {};
|
|
8833
8741
|
|
|
8742
|
+
declare const mutate$3_addGame: typeof addGame;
|
|
8743
|
+
declare const mutate$3_addPoint: typeof addPoint;
|
|
8744
|
+
declare const mutate$3_addSet: typeof addSet;
|
|
8745
|
+
declare const mutate$3_addShot: typeof addShot;
|
|
8746
|
+
declare const mutate$3_calculateHistoryScore: typeof calculateHistoryScore;
|
|
8747
|
+
declare const mutate$3_clearHistory: typeof clearHistory;
|
|
8748
|
+
declare const mutate$3_redo: typeof redo;
|
|
8749
|
+
declare const mutate$3_setServingSide: typeof setServingSide;
|
|
8750
|
+
declare const mutate$3_umo: typeof umo;
|
|
8751
|
+
declare const mutate$3_undo: typeof undo;
|
|
8752
|
+
declare namespace mutate$3 {
|
|
8753
|
+
export { mutate$3_addGame as addGame, mutate$3_addPoint as addPoint, mutate$3_addSet as addSet, mutate$3_addShot as addShot, mutate$3_calculateHistoryScore as calculateHistoryScore, mutate$3_clearHistory as clearHistory, mutate$3_redo as redo, mutate$3_setServingSide as setServingSide, mutate$3_umo as umo, mutate$3_undo as undo };
|
|
8754
|
+
}
|
|
8755
|
+
|
|
8756
|
+
declare function keyValueScore(params: any): {
|
|
8757
|
+
updated: boolean;
|
|
8758
|
+
info: string;
|
|
8759
|
+
scoreString?: undefined;
|
|
8760
|
+
sets?: undefined;
|
|
8761
|
+
winningSide?: undefined;
|
|
8762
|
+
matchUpStatus?: undefined;
|
|
8763
|
+
} | {
|
|
8764
|
+
updated: any;
|
|
8765
|
+
scoreString: any;
|
|
8766
|
+
sets: any;
|
|
8767
|
+
winningSide: any;
|
|
8768
|
+
matchUpStatus: any;
|
|
8769
|
+
info: any;
|
|
8770
|
+
};
|
|
8771
|
+
|
|
8772
|
+
declare function tidyScore(params: any): {
|
|
8773
|
+
error: {
|
|
8774
|
+
message: string;
|
|
8775
|
+
code: string;
|
|
8776
|
+
};
|
|
8777
|
+
matchUpStatus?: undefined;
|
|
8778
|
+
modifications?: undefined;
|
|
8779
|
+
attributes?: undefined;
|
|
8780
|
+
isValid?: undefined;
|
|
8781
|
+
score?: undefined;
|
|
8782
|
+
} | {
|
|
8783
|
+
matchUpStatus: any;
|
|
8784
|
+
modifications: any[];
|
|
8785
|
+
attributes: any;
|
|
8786
|
+
isValid: boolean;
|
|
8787
|
+
score: any;
|
|
8788
|
+
error?: undefined;
|
|
8789
|
+
};
|
|
8790
|
+
|
|
8791
|
+
declare const help_keyValueScore: typeof keyValueScore;
|
|
8792
|
+
declare const help_tidyScore: typeof tidyScore;
|
|
8793
|
+
declare namespace help {
|
|
8794
|
+
export { help_keyValueScore as keyValueScore, parse as parseMatchUpFormat, stringify as stringifyMatchUpFormat, help_tidyScore as tidyScore };
|
|
8795
|
+
}
|
|
8796
|
+
|
|
8797
|
+
type ValidateTieFormatArgs = {
|
|
8798
|
+
checkCollectionIds?: boolean;
|
|
8799
|
+
enforceCategory?: boolean;
|
|
8800
|
+
enforceGender?: boolean;
|
|
8801
|
+
gender?: GenderUnion;
|
|
8802
|
+
category?: Category;
|
|
8803
|
+
tieFormat?: any;
|
|
8804
|
+
event?: Event$1;
|
|
8805
|
+
};
|
|
8806
|
+
declare function validateTieFormat(params: ValidateTieFormatArgs): ResultType;
|
|
8807
|
+
|
|
8808
|
+
type validateScoreTypes = {
|
|
8809
|
+
existingMatchUpStatus?: string;
|
|
8810
|
+
matchUpStatus?: string;
|
|
8811
|
+
matchUpFormat?: string;
|
|
8812
|
+
winningSide?: number;
|
|
8813
|
+
score: Score;
|
|
8814
|
+
};
|
|
8815
|
+
declare function validateScore({ existingMatchUpStatus, matchUpFormat, matchUpStatus, winningSide, score, }: validateScoreTypes): ResultType & {
|
|
8816
|
+
valid?: boolean;
|
|
8817
|
+
};
|
|
8818
|
+
|
|
8819
|
+
type SetComplementArgs = {
|
|
8820
|
+
lowValue?: string | number;
|
|
8821
|
+
tiebreakAt?: number;
|
|
8822
|
+
isSide1?: boolean;
|
|
8823
|
+
NoAD?: boolean;
|
|
8824
|
+
setTo: number;
|
|
8825
|
+
};
|
|
8826
|
+
declare const getSetComplement: (params: SetComplementArgs) => number[] | false;
|
|
8827
|
+
type TiebreakComplementArgs = {
|
|
8828
|
+
lowValue?: number | string;
|
|
8829
|
+
tiebreakNoAd?: boolean;
|
|
8830
|
+
tiebreakTo: number;
|
|
8831
|
+
isSide1?: boolean;
|
|
8832
|
+
};
|
|
8833
|
+
declare const getTiebreakComplement: (params: TiebreakComplementArgs) => number[] | false;
|
|
8834
|
+
|
|
8835
|
+
declare function checkScoreHasValue(params: any): boolean;
|
|
8836
|
+
|
|
8837
|
+
type CheckSetIsCompleteArgs = {
|
|
8838
|
+
matchUpScoringFormat?: any;
|
|
8839
|
+
ignoreTiebreak?: boolean;
|
|
8840
|
+
isDecidingSet?: boolean;
|
|
8841
|
+
isTiebreakSet?: boolean;
|
|
8842
|
+
matchUpFormat?: string;
|
|
8843
|
+
set: any;
|
|
8844
|
+
};
|
|
8845
|
+
declare function checkSetIsComplete({ ignoreTiebreak, matchUpScoringFormat, matchUpFormat, isTiebreakSet, isDecidingSet, set, }: CheckSetIsCompleteArgs): boolean | {
|
|
8846
|
+
error: {
|
|
8847
|
+
message: string;
|
|
8848
|
+
code: string;
|
|
8849
|
+
};
|
|
8850
|
+
info: string;
|
|
8851
|
+
};
|
|
8852
|
+
|
|
8853
|
+
type ParseScoreArgs = {
|
|
8854
|
+
scoreString: string;
|
|
8855
|
+
tiebreakTo?: number;
|
|
8856
|
+
};
|
|
8857
|
+
type ParsedSetString = {
|
|
8858
|
+
winningSide: number | undefined;
|
|
8859
|
+
side1TiebreakScore?: number;
|
|
8860
|
+
side2TiebreakScore?: number;
|
|
8861
|
+
side1Score?: number;
|
|
8862
|
+
side2Score?: number;
|
|
8863
|
+
setNumber: number;
|
|
8864
|
+
};
|
|
8865
|
+
declare function parseScoreString({ tiebreakTo, scoreString }: ParseScoreArgs): ParsedSetString[];
|
|
8866
|
+
|
|
8867
|
+
declare function analyzeSet(params: any): {
|
|
8868
|
+
[key: string]: any;
|
|
8869
|
+
};
|
|
8870
|
+
|
|
8871
|
+
declare const query_analyzeSet: typeof analyzeSet;
|
|
8872
|
+
declare const query_checkScoreHasValue: typeof checkScoreHasValue;
|
|
8873
|
+
declare const query_checkSetIsComplete: typeof checkSetIsComplete;
|
|
8874
|
+
declare const query_getSetComplement: typeof getSetComplement;
|
|
8875
|
+
declare const query_getTiebreakComplement: typeof getTiebreakComplement;
|
|
8876
|
+
declare const query_isValidMatchUpFormat: typeof isValidMatchUpFormat;
|
|
8877
|
+
declare const query_parseScoreString: typeof parseScoreString;
|
|
8878
|
+
declare const query_validateScore: typeof validateScore;
|
|
8879
|
+
declare const query_validateTieFormat: typeof validateTieFormat;
|
|
8880
|
+
declare namespace query {
|
|
8881
|
+
export { query_analyzeSet as analyzeSet, query_checkScoreHasValue as checkScoreHasValue, query_checkSetIsComplete as checkSetIsComplete, query_getSetComplement as getSetComplement, query_getTiebreakComplement as getTiebreakComplement, query_isValidMatchUpFormat as isValidMatchUpFormat, query_parseScoreString as parseScoreString, query_validateScore as validateScore, query_validateTieFormat as validateTieFormat };
|
|
8882
|
+
}
|
|
8883
|
+
|
|
8834
8884
|
declare const index$6_addGame: typeof addGame;
|
|
8835
8885
|
declare const index$6_addPoint: typeof addPoint;
|
|
8836
8886
|
declare const index$6_addSet: typeof addSet;
|
|
@@ -8847,17 +8897,17 @@ declare const index$6_getTiebreakComplement: typeof getTiebreakComplement;
|
|
|
8847
8897
|
declare const index$6_isValidMatchUpFormat: typeof isValidMatchUpFormat;
|
|
8848
8898
|
declare const index$6_keyValueScore: typeof keyValueScore;
|
|
8849
8899
|
declare const index$6_parseScoreString: typeof parseScoreString;
|
|
8900
|
+
declare const index$6_query: typeof query;
|
|
8850
8901
|
declare const index$6_redo: typeof redo;
|
|
8851
8902
|
declare const index$6_reverseScore: typeof reverseScore;
|
|
8852
8903
|
declare const index$6_setServingSide: typeof setServingSide;
|
|
8853
8904
|
declare const index$6_tidyScore: typeof tidyScore;
|
|
8854
8905
|
declare const index$6_umo: typeof umo;
|
|
8855
8906
|
declare const index$6_undo: typeof undo;
|
|
8856
|
-
declare const index$6_updateTieMatchUpScore: typeof updateTieMatchUpScore;
|
|
8857
8907
|
declare const index$6_validateScore: typeof validateScore;
|
|
8858
8908
|
declare const index$6_validateTieFormat: typeof validateTieFormat;
|
|
8859
8909
|
declare namespace index$6 {
|
|
8860
|
-
export { index$6_addGame as addGame, index$6_addPoint as addPoint, index$6_addSet as addSet, index$6_addShot as addShot, index$6_analyzeSet as analyzeSet, index$6_calculateHistoryScore as calculateHistoryScore, index$6_checkScoreHasValue as checkScoreHasValue, index$6_checkSetIsComplete as checkSetIsComplete, index$6_clearHistory as clearHistory, index$6_generateScoreString as generateScoreString, index$6_generateTieMatchUpScore as generateTieMatchUpScore, index$6_getSetComplement as getSetComplement, index$6_getTiebreakComplement as getTiebreakComplement, index$6_isValidMatchUpFormat as isValidMatchUpFormat, index$6_keyValueScore as keyValueScore, parse as parseMatchUpFormat, index$6_parseScoreString as parseScoreString, index$6_redo as redo, index$6_reverseScore as reverseScore, index$6_setServingSide as setServingSide, stringify as stringifyMatchUpFormat, index$6_tidyScore as tidyScore, index$6_umo as umo, index$6_undo as undo, index$
|
|
8910
|
+
export { index$6_addGame as addGame, index$6_addPoint as addPoint, index$6_addSet as addSet, index$6_addShot as addShot, index$6_analyzeSet as analyzeSet, index$6_calculateHistoryScore as calculateHistoryScore, index$6_checkScoreHasValue as checkScoreHasValue, index$6_checkSetIsComplete as checkSetIsComplete, index$6_clearHistory as clearHistory, generate$1 as generate, index$6_generateScoreString as generateScoreString, index$6_generateTieMatchUpScore as generateTieMatchUpScore, index$6_getSetComplement as getSetComplement, index$6_getTiebreakComplement as getTiebreakComplement, help as helpers, index$6_isValidMatchUpFormat as isValidMatchUpFormat, index$6_keyValueScore as keyValueScore, mutate$3 as mutate, parse as parseMatchUpFormat, index$6_parseScoreString as parseScoreString, index$6_query as query, index$6_redo as redo, index$6_reverseScore as reverseScore, index$6_setServingSide as setServingSide, stringify as stringifyMatchUpFormat, index$6_tidyScore as tidyScore, index$6_umo as umo, index$6_undo as undo, index$6_validateScore as validateScore, index$6_validateTieFormat as validateTieFormat };
|
|
8861
8911
|
}
|
|
8862
8912
|
|
|
8863
8913
|
type ModifyCollectionDefinitionArgs = {
|
|
@@ -9042,7 +9092,7 @@ declare const index$5_removeCollectionGroup: typeof removeCollectionGroup;
|
|
|
9042
9092
|
declare const index$5_tieFormatGenderValidityCheck: typeof tieFormatGenderValidityCheck;
|
|
9043
9093
|
declare const index$5_validateCollectionDefinition: typeof validateCollectionDefinition;
|
|
9044
9094
|
declare namespace index$5 {
|
|
9045
|
-
export { index$5_addCollectionDefinition as addCollectionDefinition, index$5_addCollectionGroup as addCollectionGroup, index$5_aggregateTieFormats as aggregateTieFormats, index$5_compareTieFormats as compareTieFormats, index$5_getTieFormat as getTieFormat, index$5_modifyCollectionDefinition as modifyCollectionDefinition, index$5_modifyTieFormat as modifyTieFormat, mutate$2 as mutate, index$5_orderCollectionDefinitions as orderCollectionDefinitions, query$
|
|
9095
|
+
export { index$5_addCollectionDefinition as addCollectionDefinition, index$5_addCollectionGroup as addCollectionGroup, index$5_aggregateTieFormats as aggregateTieFormats, index$5_compareTieFormats as compareTieFormats, index$5_getTieFormat as getTieFormat, index$5_modifyCollectionDefinition as modifyCollectionDefinition, index$5_modifyTieFormat as modifyTieFormat, mutate$2 as mutate, index$5_orderCollectionDefinitions as orderCollectionDefinitions, query$3 as query, index$5_removeCollectionDefinition as removeCollectionDefinition, index$5_removeCollectionGroup as removeCollectionGroup, index$5_tieFormatGenderValidityCheck as tieFormatGenderValidityCheck, index$5_validateCollectionDefinition as validateCollectionDefinition };
|
|
9046
9096
|
}
|
|
9047
9097
|
|
|
9048
9098
|
declare function setTournamentStatus({ tournamentRecord, status }: {
|
|
@@ -9436,7 +9486,7 @@ declare const index$4_setTournamentNotes: typeof setTournamentNotes;
|
|
|
9436
9486
|
declare const index$4_setTournamentStartDate: typeof setTournamentStartDate;
|
|
9437
9487
|
declare const index$4_setTournamentStatus: typeof setTournamentStatus;
|
|
9438
9488
|
declare namespace index$4 {
|
|
9439
|
-
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$
|
|
9489
|
+
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 };
|
|
9440
9490
|
}
|
|
9441
9491
|
|
|
9442
9492
|
declare const generate_generateCourts: typeof generateCourts;
|
|
@@ -9720,9 +9770,8 @@ declare const index$3_modifyCourtAvailability: typeof modifyCourtAvailability;
|
|
|
9720
9770
|
declare const index$3_modifyVenue: typeof modifyVenue;
|
|
9721
9771
|
declare const index$3_mutate: typeof mutate;
|
|
9722
9772
|
declare const index$3_publicFindVenue: typeof publicFindVenue;
|
|
9723
|
-
declare const index$3_query: typeof query;
|
|
9724
9773
|
declare namespace index$3 {
|
|
9725
|
-
export { index$3_addCourt as addCourt, index$3_addCourts as addCourts, index$3_addVenue as addVenue, index$3_deleteCourt as deleteCourt, index$3_deleteVenue as deleteVenue, index$3_deleteVenues as deleteVenues, index$3_disableCourts as disableCourts, index$3_disableVenues as disableVenues, index$3_enableCourts as enableCourts, index$3_enableVenues as enableVenues, index$3_generate as generate, index$3_generateCourts as generateCourts, index$3_getCompetitionVenues as getCompetitionVenues, index$3_getCourts as getCourts, index$3_getVenuesAndCourts as getVenuesAndCourts, index$3_modifyCourt as modifyCourt, index$3_modifyCourtAvailability as modifyCourtAvailability, index$3_modifyVenue as modifyVenue, index$3_mutate as mutate, index$3_publicFindVenue as publicFindVenue,
|
|
9774
|
+
export { index$3_addCourt as addCourt, index$3_addCourts as addCourts, index$3_addVenue as addVenue, index$3_deleteCourt as deleteCourt, index$3_deleteVenue as deleteVenue, index$3_deleteVenues as deleteVenues, index$3_disableCourts as disableCourts, index$3_disableVenues as disableVenues, index$3_enableCourts as enableCourts, index$3_enableVenues as enableVenues, index$3_generate as generate, index$3_generateCourts as generateCourts, index$3_getCompetitionVenues as getCompetitionVenues, index$3_getCourts as getCourts, index$3_getVenuesAndCourts as getVenuesAndCourts, index$3_modifyCourt as modifyCourt, index$3_modifyCourtAvailability as modifyCourtAvailability, index$3_modifyVenue as modifyVenue, index$3_mutate as mutate, index$3_publicFindVenue as publicFindVenue, query$1 as query };
|
|
9726
9775
|
}
|
|
9727
9776
|
|
|
9728
9777
|
declare namespace index$2 {
|