tods-competition-factory 2.0.19 → 2.0.20
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 +5 -5
- package/dist/tods-competition-factory.d.ts +742 -691
- package/dist/tods-competition-factory.development.cjs.js +4397 -4344
- 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
|
@@ -1318,10 +1318,10 @@ type HydratedCourt = {
|
|
|
1318
1318
|
type HydratedVenue = {
|
|
1319
1319
|
[key: string]: any;
|
|
1320
1320
|
} & Venue;
|
|
1321
|
-
|
|
1321
|
+
interface HydratedMatchUp extends MatchUp {
|
|
1322
1322
|
[key: string | number]: any;
|
|
1323
1323
|
sides?: HydratedSide[];
|
|
1324
|
-
}
|
|
1324
|
+
}
|
|
1325
1325
|
type HydratedParticipant = {
|
|
1326
1326
|
individualParticipants?: HydratedParticipant[];
|
|
1327
1327
|
[key: string | number]: any;
|
|
@@ -2546,11 +2546,11 @@ type UnlinkTournamentArgs = {
|
|
|
2546
2546
|
};
|
|
2547
2547
|
declare function unlinkTournament({ tournamentRecords, tournamentId }: UnlinkTournamentArgs): ResultType;
|
|
2548
2548
|
|
|
2549
|
-
declare const mutate$
|
|
2550
|
-
declare const mutate$
|
|
2551
|
-
declare const mutate$
|
|
2552
|
-
declare namespace mutate$
|
|
2553
|
-
export { mutate$
|
|
2549
|
+
declare const mutate$d_linkTournaments: typeof linkTournaments;
|
|
2550
|
+
declare const mutate$d_unlinkTournament: typeof unlinkTournament;
|
|
2551
|
+
declare const mutate$d_unlinkTournaments: typeof unlinkTournaments;
|
|
2552
|
+
declare namespace mutate$d {
|
|
2553
|
+
export { mutate$d_linkTournaments as linkTournaments, mutate$d_unlinkTournament as unlinkTournament, mutate$d_unlinkTournaments as unlinkTournaments };
|
|
2554
2554
|
}
|
|
2555
2555
|
|
|
2556
2556
|
declare function getLinkedTournamentIds({ tournamentRecords, }: {
|
|
@@ -2566,10 +2566,10 @@ declare function getTournamentIds({ tournamentRecords }: {
|
|
|
2566
2566
|
tournamentIds: string[];
|
|
2567
2567
|
};
|
|
2568
2568
|
|
|
2569
|
-
declare const query$
|
|
2570
|
-
declare const query$
|
|
2571
|
-
declare namespace query$
|
|
2572
|
-
export { query$
|
|
2569
|
+
declare const query$c_getLinkedTournamentIds: typeof getLinkedTournamentIds;
|
|
2570
|
+
declare const query$c_getTournamentIds: typeof getTournamentIds;
|
|
2571
|
+
declare namespace query$c {
|
|
2572
|
+
export { query$c_getLinkedTournamentIds as getLinkedTournamentIds, query$c_getTournamentIds as getTournamentIds };
|
|
2573
2573
|
}
|
|
2574
2574
|
|
|
2575
2575
|
declare const index$k_getLinkedTournamentIds: typeof getLinkedTournamentIds;
|
|
@@ -2578,7 +2578,7 @@ declare const index$k_linkTournaments: typeof linkTournaments;
|
|
|
2578
2578
|
declare const index$k_unlinkTournament: typeof unlinkTournament;
|
|
2579
2579
|
declare const index$k_unlinkTournaments: typeof unlinkTournaments;
|
|
2580
2580
|
declare namespace index$k {
|
|
2581
|
-
export { index$k_getLinkedTournamentIds as getLinkedTournamentIds, index$k_getTournamentIds as getTournamentIds, index$k_linkTournaments as linkTournaments, mutate$
|
|
2581
|
+
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
2582
|
}
|
|
2583
2583
|
|
|
2584
2584
|
declare function setDrawParticipantRepresentativeIds({ representativeParticipantIds, drawDefinition }: {
|
|
@@ -2868,18 +2868,6 @@ type ModifyDrawArgs = {
|
|
|
2868
2868
|
};
|
|
2869
2869
|
declare function modifyDrawDefinition({ tournamentRecord, drawDefinition, drawUpdates, drawId, event, }: ModifyDrawArgs): ResultType;
|
|
2870
2870
|
|
|
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
2871
|
declare function resetDrawDefinition({ tournamentRecord, removeScheduling, drawDefinition }: {
|
|
2884
2872
|
tournamentRecord: any;
|
|
2885
2873
|
removeScheduling: any;
|
|
@@ -2949,27 +2937,6 @@ declare function removeRoundMatchUps({ removeCompletedMatchUps, tournamentRecord
|
|
|
2949
2937
|
roundRemoved?: boolean;
|
|
2950
2938
|
};
|
|
2951
2939
|
|
|
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
2940
|
type UpdateTeamLineUpArgs = {
|
|
2974
2941
|
drawDefinition: DrawDefinition;
|
|
2975
2942
|
participantId: string;
|
|
@@ -3014,38 +2981,6 @@ type SetSubOrderArgs = {
|
|
|
3014
2981
|
};
|
|
3015
2982
|
declare function setSubOrder({ tournamentRecord, drawDefinition, drawPosition, structureId, subOrder, event, }: SetSubOrderArgs): ResultType;
|
|
3016
2983
|
|
|
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
2984
|
declare function attachConsolationStructures(params: any): ResultType & {
|
|
3050
2985
|
addedStructureIds?: string[] | undefined;
|
|
3051
2986
|
};
|
|
@@ -3065,47 +3000,44 @@ declare function attachStructures({ itemType, matchUpModifications, tournamentRe
|
|
|
3065
3000
|
addedStructureIds?: string[];
|
|
3066
3001
|
};
|
|
3067
3002
|
|
|
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 };
|
|
3003
|
+
declare const mutate$c_addAdHocMatchUps: typeof addAdHocMatchUps;
|
|
3004
|
+
declare const mutate$c_addDrawDefinitionTimeItem: typeof addDrawDefinitionTimeItem;
|
|
3005
|
+
declare const mutate$c_addPlayoffStructures: typeof addPlayoffStructures;
|
|
3006
|
+
declare const mutate$c_addQualifyingStructure: typeof addQualifyingStructure;
|
|
3007
|
+
declare const mutate$c_addVoluntaryConsolationStage: typeof addVoluntaryConsolationStage;
|
|
3008
|
+
declare const mutate$c_addVoluntaryConsolationStructure: typeof addVoluntaryConsolationStructure;
|
|
3009
|
+
declare const mutate$c_alternateDrawPositionAssignment: typeof alternateDrawPositionAssignment;
|
|
3010
|
+
declare const mutate$c_assignDrawPosition: typeof assignDrawPosition;
|
|
3011
|
+
declare const mutate$c_assignDrawPositionBye: typeof assignDrawPositionBye;
|
|
3012
|
+
declare const mutate$c_attachConsolationStructures: typeof attachConsolationStructures;
|
|
3013
|
+
declare const mutate$c_attachPlayoffStructures: typeof attachPlayoffStructures;
|
|
3014
|
+
declare const mutate$c_attachQualifyingStructure: typeof attachQualifyingStructure;
|
|
3015
|
+
declare const mutate$c_attachStructures: typeof attachStructures;
|
|
3016
|
+
declare const mutate$c_automatedPlayoffPositioning: typeof automatedPlayoffPositioning;
|
|
3017
|
+
declare const mutate$c_automatedPositioning: typeof automatedPositioning;
|
|
3018
|
+
declare const mutate$c_deleteAdHocMatchUps: typeof deleteAdHocMatchUps;
|
|
3019
|
+
declare const mutate$c_luckyLoserDrawPositionAssignment: typeof luckyLoserDrawPositionAssignment;
|
|
3020
|
+
declare const mutate$c_modifyDrawDefinition: typeof modifyDrawDefinition;
|
|
3021
|
+
declare const mutate$c_modifyDrawName: typeof modifyDrawName;
|
|
3022
|
+
declare const mutate$c_modifySeedAssignment: typeof modifySeedAssignment;
|
|
3023
|
+
declare const mutate$c_pruneDrawDefinition: typeof pruneDrawDefinition;
|
|
3024
|
+
declare const mutate$c_qualifierDrawPositionAssignment: typeof qualifierDrawPositionAssignment;
|
|
3025
|
+
declare const mutate$c_removeDrawPositionAssignment: typeof removeDrawPositionAssignment;
|
|
3026
|
+
declare const mutate$c_removeRoundMatchUps: typeof removeRoundMatchUps;
|
|
3027
|
+
declare const mutate$c_removeSeededParticipant: typeof removeSeededParticipant;
|
|
3028
|
+
declare const mutate$c_removeStructure: typeof removeStructure;
|
|
3029
|
+
declare const mutate$c_renameStructures: typeof renameStructures;
|
|
3030
|
+
declare const mutate$c_resetDrawDefinition: typeof resetDrawDefinition;
|
|
3031
|
+
declare const mutate$c_resetVoluntaryConsolationStructure: typeof resetVoluntaryConsolationStructure;
|
|
3032
|
+
declare const mutate$c_setDrawParticipantRepresentativeIds: typeof setDrawParticipantRepresentativeIds;
|
|
3033
|
+
declare const mutate$c_setPositionAssignments: typeof setPositionAssignments;
|
|
3034
|
+
declare const mutate$c_setStructureOrder: typeof setStructureOrder;
|
|
3035
|
+
declare const mutate$c_setSubOrder: typeof setSubOrder;
|
|
3036
|
+
declare const mutate$c_swapDrawPositionAssignments: typeof swapDrawPositionAssignments;
|
|
3037
|
+
declare const mutate$c_updateTeamLineUp: typeof updateTeamLineUp;
|
|
3038
|
+
declare const mutate$c_withdrawParticipantAtDrawPosition: typeof withdrawParticipantAtDrawPosition;
|
|
3039
|
+
declare namespace mutate$c {
|
|
3040
|
+
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
3041
|
}
|
|
3110
3042
|
|
|
3111
3043
|
type GetEligibleVoluntaryConsolationParticipantsArgs = {
|
|
@@ -3180,15 +3112,6 @@ type GetAvailablePlayoffProfileArgs = {
|
|
|
3180
3112
|
};
|
|
3181
3113
|
declare function getAvailablePlayoffProfiles({ drawDefinition, structureId }: GetAvailablePlayoffProfileArgs): any;
|
|
3182
3114
|
|
|
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
3115
|
type GetParticipantIdFinishingPositionsArgs = {
|
|
3193
3116
|
tournamentRecord: Tournament;
|
|
3194
3117
|
drawDefinition: DrawDefinition;
|
|
@@ -3329,6 +3252,15 @@ declare function isValidForQualifying({ structureId, drawDefinition }: {
|
|
|
3329
3252
|
success: boolean;
|
|
3330
3253
|
};
|
|
3331
3254
|
|
|
3255
|
+
type GetSeedingThresholdsArgs = {
|
|
3256
|
+
roundRobinGroupsCount?: number;
|
|
3257
|
+
participantsCount: number;
|
|
3258
|
+
};
|
|
3259
|
+
declare function getSeedingThresholds({ roundRobinGroupsCount, participantsCount, }: GetSeedingThresholdsArgs): ResultType & {
|
|
3260
|
+
seedingThresholds?: any;
|
|
3261
|
+
success?: boolean;
|
|
3262
|
+
};
|
|
3263
|
+
|
|
3332
3264
|
declare function getTeamLineUp({ drawDefinition, participantId }: {
|
|
3333
3265
|
drawDefinition: any;
|
|
3334
3266
|
participantId: any;
|
|
@@ -3505,34 +3437,63 @@ declare function getParticipantTimeItem({ returnPreviousValues, tournamentRecord
|
|
|
3505
3437
|
previousItems?: undefined;
|
|
3506
3438
|
};
|
|
3507
3439
|
|
|
3440
|
+
type GetMatchUpsMapArgs = {
|
|
3441
|
+
drawDefinition?: DrawDefinition;
|
|
3442
|
+
structure?: Structure;
|
|
3443
|
+
};
|
|
3444
|
+
declare function getMatchUpsMap({ drawDefinition, structure }: GetMatchUpsMapArgs): MatchUpsMap;
|
|
3445
|
+
|
|
3508
3446
|
type IsAdHocArgs = {
|
|
3509
3447
|
structure?: any;
|
|
3510
3448
|
};
|
|
3511
3449
|
declare function isAdHoc({ structure }: IsAdHocArgs): boolean;
|
|
3512
3450
|
|
|
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
|
-
|
|
3451
|
+
type AddGoesToArgs = {
|
|
3452
|
+
inContextDrawMatchUps?: HydratedMatchUp[];
|
|
3453
|
+
drawDefinition: DrawDefinition;
|
|
3454
|
+
matchUpsMap?: MatchUpsMap;
|
|
3455
|
+
};
|
|
3456
|
+
declare function addGoesTo({ inContextDrawMatchUps, drawDefinition, matchUpsMap }: AddGoesToArgs): {
|
|
3457
|
+
error: {
|
|
3458
|
+
message: string;
|
|
3459
|
+
code: string;
|
|
3460
|
+
};
|
|
3461
|
+
inContextDrawMatchUps?: undefined;
|
|
3462
|
+
goesToMap?: undefined;
|
|
3463
|
+
} | {
|
|
3464
|
+
inContextDrawMatchUps: HydratedMatchUp[] | undefined;
|
|
3465
|
+
goesToMap: {
|
|
3466
|
+
loserMatchUpIds: {};
|
|
3467
|
+
winnerMatchUpIds: {};
|
|
3468
|
+
};
|
|
3469
|
+
error?: undefined;
|
|
3470
|
+
};
|
|
3471
|
+
|
|
3472
|
+
declare const query$b_addGoesTo: typeof addGoesTo;
|
|
3473
|
+
declare const query$b_allPlayoffPositionsFilled: typeof allPlayoffPositionsFilled;
|
|
3474
|
+
declare const query$b_checkValidEntries: typeof checkValidEntries;
|
|
3475
|
+
declare const query$b_getAssignedParticipantIds: typeof getAssignedParticipantIds;
|
|
3476
|
+
declare const query$b_getAvailableMatchUpsCount: typeof getAvailableMatchUpsCount;
|
|
3477
|
+
declare const query$b_getAvailablePlayoffProfiles: typeof getAvailablePlayoffProfiles;
|
|
3478
|
+
declare const query$b_getDrawDefinitionTimeItem: typeof getDrawDefinitionTimeItem;
|
|
3479
|
+
declare const query$b_getDrawParticipantRepresentativeIds: typeof getDrawParticipantRepresentativeIds;
|
|
3480
|
+
declare const query$b_getDrawTypeCoercion: typeof getDrawTypeCoercion;
|
|
3481
|
+
declare const query$b_getEligibleVoluntaryConsolationParticipants: typeof getEligibleVoluntaryConsolationParticipants;
|
|
3482
|
+
declare const query$b_getMatchUpsMap: typeof getMatchUpsMap;
|
|
3483
|
+
declare const query$b_getParticipantIdFinishingPositions: typeof getParticipantIdFinishingPositions;
|
|
3484
|
+
declare const query$b_getPositionAssignments: typeof getPositionAssignments;
|
|
3485
|
+
declare const query$b_getPositionsPlayedOff: typeof getPositionsPlayedOff;
|
|
3486
|
+
declare const query$b_getSeedingThresholds: typeof getSeedingThresholds;
|
|
3487
|
+
declare const query$b_getSeedsCount: typeof getSeedsCount;
|
|
3488
|
+
declare const query$b_getStructureSeedAssignments: typeof getStructureSeedAssignments;
|
|
3489
|
+
declare const query$b_getTeamLineUp: typeof getTeamLineUp;
|
|
3490
|
+
declare const query$b_getValidGroupSizes: typeof getValidGroupSizes;
|
|
3491
|
+
declare const query$b_isAdHoc: typeof isAdHoc;
|
|
3492
|
+
declare const query$b_isCompletedStructure: typeof isCompletedStructure;
|
|
3493
|
+
declare const query$b_isValidForQualifying: typeof isValidForQualifying;
|
|
3494
|
+
declare const query$b_positionActions: typeof positionActions;
|
|
3495
|
+
declare namespace query$b {
|
|
3496
|
+
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
3497
|
}
|
|
3537
3498
|
|
|
3538
3499
|
type GenerateDrawTypeAndModify = {
|
|
@@ -3600,6 +3561,44 @@ declare function generateAndPopulatePlayoffStructures(params: GenerateAndPopulat
|
|
|
3600
3561
|
success?: boolean;
|
|
3601
3562
|
};
|
|
3602
3563
|
|
|
3564
|
+
type GenerateDrawMaticRoundArgs = {
|
|
3565
|
+
adHocRatings?: {
|
|
3566
|
+
[key: string]: number;
|
|
3567
|
+
};
|
|
3568
|
+
ignoreLastRoundNumber?: boolean;
|
|
3569
|
+
restrictEntryStatus?: boolean;
|
|
3570
|
+
iterationMatchUps?: MatchUp[];
|
|
3571
|
+
drawDefinition: DrawDefinition;
|
|
3572
|
+
tournamentRecord: Tournament;
|
|
3573
|
+
generateMatchUps?: boolean;
|
|
3574
|
+
eventType?: EventTypeUnion;
|
|
3575
|
+
salted?: number | boolean;
|
|
3576
|
+
participantIds?: string[];
|
|
3577
|
+
encounterValue?: number;
|
|
3578
|
+
sameTeamValue?: number;
|
|
3579
|
+
maxIterations?: number;
|
|
3580
|
+
matchUpIds?: string[];
|
|
3581
|
+
structure?: Structure;
|
|
3582
|
+
roundNumber?: number;
|
|
3583
|
+
structureId?: string;
|
|
3584
|
+
scaleName?: string;
|
|
3585
|
+
idPrefix?: string;
|
|
3586
|
+
isMock?: boolean;
|
|
3587
|
+
drawId?: string;
|
|
3588
|
+
event: Event$1;
|
|
3589
|
+
};
|
|
3590
|
+
type DrawMaticRoundResult = {
|
|
3591
|
+
participantIdPairings?: string[][];
|
|
3592
|
+
candidatesCount?: number;
|
|
3593
|
+
roundNumber?: number;
|
|
3594
|
+
matchUps?: MatchUp[];
|
|
3595
|
+
iterations?: number;
|
|
3596
|
+
success?: boolean;
|
|
3597
|
+
maxDelta?: number;
|
|
3598
|
+
maxDiff?: number;
|
|
3599
|
+
};
|
|
3600
|
+
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;
|
|
3601
|
+
|
|
3603
3602
|
type GenerateVoluntaryConsolationArgs = {
|
|
3604
3603
|
playoffAttributes?: PlayoffAttributes;
|
|
3605
3604
|
tournamentRecord: Tournament;
|
|
@@ -3624,6 +3623,17 @@ declare function generateVoluntaryConsolation(params: GenerateVoluntaryConsolati
|
|
|
3624
3623
|
error?: ErrorType;
|
|
3625
3624
|
};
|
|
3626
3625
|
|
|
3626
|
+
declare function generateDrawDefinition(params: GenerateDrawDefinitionArgs): ResultType & {
|
|
3627
|
+
existingDrawDefinition?: boolean;
|
|
3628
|
+
drawDefinition?: DrawDefinition;
|
|
3629
|
+
qualifyingConflicts?: any[];
|
|
3630
|
+
positioningReports?: any[];
|
|
3631
|
+
structureId?: string;
|
|
3632
|
+
success?: boolean;
|
|
3633
|
+
error?: ErrorType;
|
|
3634
|
+
conflicts?: any[];
|
|
3635
|
+
};
|
|
3636
|
+
|
|
3627
3637
|
type GenerateQualifyingStructureArgs = {
|
|
3628
3638
|
appliedPolicies?: PolicyDefinitions;
|
|
3629
3639
|
qualifyingRoundNumber: number;
|
|
@@ -3652,44 +3662,6 @@ declare function generateQualifyingStructure(params: GenerateQualifyingStructure
|
|
|
3652
3662
|
link?: DrawLink;
|
|
3653
3663
|
};
|
|
3654
3664
|
|
|
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
3665
|
type GenerateDrawStructuresAndLinksArgs = {
|
|
3694
3666
|
playoffAttributes?: PlayoffAttributes;
|
|
3695
3667
|
appliedPolicies?: PolicyDefinitions;
|
|
@@ -3710,17 +3682,6 @@ type GenerateDrawStructuresAndLinksArgs = {
|
|
|
3710
3682
|
};
|
|
3711
3683
|
declare function generateDrawStructuresAndLinks(params: GenerateDrawStructuresAndLinksArgs): any;
|
|
3712
3684
|
|
|
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
3685
|
type GenerateAdHocMatchUpsArgs = {
|
|
3725
3686
|
participantIdPairings?: {
|
|
3726
3687
|
participantIds: [string | undefined, string | undefined];
|
|
@@ -3769,48 +3730,93 @@ declare function drawMatic(params: DrawMaticArgs): ResultType & {
|
|
|
3769
3730
|
roundResults?: DrawMaticRoundResult[];
|
|
3770
3731
|
};
|
|
3771
3732
|
|
|
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
|
-
|
|
3813
|
-
|
|
3733
|
+
type AddFinishingRoundsArgs = {
|
|
3734
|
+
finishingPositionOffset?: number;
|
|
3735
|
+
finishingPositionLimit?: number;
|
|
3736
|
+
positionsFed?: number;
|
|
3737
|
+
roundsCount?: number;
|
|
3738
|
+
roundLimit?: number;
|
|
3739
|
+
matchUps: MatchUp[];
|
|
3740
|
+
lucky?: boolean;
|
|
3741
|
+
fmlc?: boolean;
|
|
3742
|
+
};
|
|
3743
|
+
declare function addFinishingRounds({ finishingPositionOffset, finishingPositionLimit, positionsFed, roundsCount, roundLimit, matchUps, lucky, fmlc, }: AddFinishingRoundsArgs): MatchUp[];
|
|
3744
|
+
|
|
3745
|
+
type AutoSeedingParams = {
|
|
3746
|
+
sortDescending: boolean;
|
|
3747
|
+
stage: StageTypeUnion;
|
|
3748
|
+
tournamentRecord: any;
|
|
3749
|
+
policyDefinitions: any;
|
|
3750
|
+
scaleAttributes: any;
|
|
3751
|
+
scaleSortMethod: any;
|
|
3752
|
+
drawDefinition: any;
|
|
3753
|
+
scaleName: string;
|
|
3754
|
+
drawSize: number;
|
|
3755
|
+
drawId: string;
|
|
3756
|
+
event: any;
|
|
3757
|
+
};
|
|
3758
|
+
declare function autoSeeding({ tournamentRecord, drawDefinition, policyDefinitions, scaleAttributes, scaleName, drawSize, drawId, event, stage, sortDescending, scaleSortMethod, }: AutoSeedingParams): {
|
|
3759
|
+
stageEntries?: Entry[] | undefined;
|
|
3760
|
+
seedsCount?: number | undefined;
|
|
3761
|
+
entries?: Entry[] | undefined;
|
|
3762
|
+
error?: ErrorType | undefined;
|
|
3763
|
+
} | {
|
|
3764
|
+
error: {
|
|
3765
|
+
message: string;
|
|
3766
|
+
code: string;
|
|
3767
|
+
};
|
|
3768
|
+
scaleItemsWithParticipantIds?: undefined;
|
|
3769
|
+
} | {
|
|
3770
|
+
scaleItemsWithParticipantIds: {
|
|
3771
|
+
participantId: string;
|
|
3772
|
+
scaleItems: any[];
|
|
3773
|
+
}[] | undefined;
|
|
3774
|
+
error?: undefined;
|
|
3775
|
+
};
|
|
3776
|
+
|
|
3777
|
+
declare const index$j_addAdHocMatchUps: typeof addAdHocMatchUps;
|
|
3778
|
+
declare const index$j_addDrawDefinitionTimeItem: typeof addDrawDefinitionTimeItem;
|
|
3779
|
+
declare const index$j_addFinishingRounds: typeof addFinishingRounds;
|
|
3780
|
+
declare const index$j_addGoesTo: typeof addGoesTo;
|
|
3781
|
+
declare const index$j_addPlayoffStructures: typeof addPlayoffStructures;
|
|
3782
|
+
declare const index$j_addQualifyingStructure: typeof addQualifyingStructure;
|
|
3783
|
+
declare const index$j_addVoluntaryConsolationStage: typeof addVoluntaryConsolationStage;
|
|
3784
|
+
declare const index$j_addVoluntaryConsolationStructure: typeof addVoluntaryConsolationStructure;
|
|
3785
|
+
declare const index$j_allPlayoffPositionsFilled: typeof allPlayoffPositionsFilled;
|
|
3786
|
+
declare const index$j_alternateDrawPositionAssignment: typeof alternateDrawPositionAssignment;
|
|
3787
|
+
declare const index$j_assignDrawPosition: typeof assignDrawPosition;
|
|
3788
|
+
declare const index$j_assignDrawPositionBye: typeof assignDrawPositionBye;
|
|
3789
|
+
declare const index$j_attachConsolationStructures: typeof attachConsolationStructures;
|
|
3790
|
+
declare const index$j_attachPlayoffStructures: typeof attachPlayoffStructures;
|
|
3791
|
+
declare const index$j_attachQualifyingStructure: typeof attachQualifyingStructure;
|
|
3792
|
+
declare const index$j_attachStructures: typeof attachStructures;
|
|
3793
|
+
declare const index$j_autoSeeding: typeof autoSeeding;
|
|
3794
|
+
declare const index$j_automatedPlayoffPositioning: typeof automatedPlayoffPositioning;
|
|
3795
|
+
declare const index$j_automatedPositioning: typeof automatedPositioning;
|
|
3796
|
+
declare const index$j_checkValidEntries: typeof checkValidEntries;
|
|
3797
|
+
declare const index$j_deleteAdHocMatchUps: typeof deleteAdHocMatchUps;
|
|
3798
|
+
declare const index$j_drawMatic: typeof drawMatic;
|
|
3799
|
+
declare const index$j_generateAdHocMatchUps: typeof generateAdHocMatchUps;
|
|
3800
|
+
declare const index$j_generateAdHocRounds: typeof generateAdHocRounds;
|
|
3801
|
+
declare const index$j_generateAndPopulatePlayoffStructures: typeof generateAndPopulatePlayoffStructures;
|
|
3802
|
+
declare const index$j_generateDrawDefinition: typeof generateDrawDefinition;
|
|
3803
|
+
declare const index$j_generateDrawMaticRound: typeof generateDrawMaticRound;
|
|
3804
|
+
declare const index$j_generateDrawStructuresAndLinks: typeof generateDrawStructuresAndLinks;
|
|
3805
|
+
declare const index$j_generateDrawTypeAndModifyDrawDefinition: typeof generateDrawTypeAndModifyDrawDefinition;
|
|
3806
|
+
declare const index$j_generateQualifyingStructure: typeof generateQualifyingStructure;
|
|
3807
|
+
declare const index$j_generateVoluntaryConsolation: typeof generateVoluntaryConsolation;
|
|
3808
|
+
declare const index$j_getAssignedParticipantIds: typeof getAssignedParticipantIds;
|
|
3809
|
+
declare const index$j_getAvailableMatchUpsCount: typeof getAvailableMatchUpsCount;
|
|
3810
|
+
declare const index$j_getAvailablePlayoffProfiles: typeof getAvailablePlayoffProfiles;
|
|
3811
|
+
declare const index$j_getDrawDefinitionTimeItem: typeof getDrawDefinitionTimeItem;
|
|
3812
|
+
declare const index$j_getDrawParticipantRepresentativeIds: typeof getDrawParticipantRepresentativeIds;
|
|
3813
|
+
declare const index$j_getDrawTypeCoercion: typeof getDrawTypeCoercion;
|
|
3814
|
+
declare const index$j_getEligibleVoluntaryConsolationParticipants: typeof getEligibleVoluntaryConsolationParticipants;
|
|
3815
|
+
declare const index$j_getMatchUpsMap: typeof getMatchUpsMap;
|
|
3816
|
+
declare const index$j_getParticipantIdFinishingPositions: typeof getParticipantIdFinishingPositions;
|
|
3817
|
+
declare const index$j_getPositionAssignments: typeof getPositionAssignments;
|
|
3818
|
+
declare const index$j_getPositionsPlayedOff: typeof getPositionsPlayedOff;
|
|
3819
|
+
declare const index$j_getSeedingThresholds: typeof getSeedingThresholds;
|
|
3814
3820
|
declare const index$j_getSeedsCount: typeof getSeedsCount;
|
|
3815
3821
|
declare const index$j_getStructureSeedAssignments: typeof getStructureSeedAssignments;
|
|
3816
3822
|
declare const index$j_getTeamLineUp: typeof getTeamLineUp;
|
|
@@ -3840,7 +3846,7 @@ declare const index$j_swapDrawPositionAssignments: typeof swapDrawPositionAssign
|
|
|
3840
3846
|
declare const index$j_updateTeamLineUp: typeof updateTeamLineUp;
|
|
3841
3847
|
declare const index$j_withdrawParticipantAtDrawPosition: typeof withdrawParticipantAtDrawPosition;
|
|
3842
3848
|
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$
|
|
3849
|
+
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
3850
|
}
|
|
3845
3851
|
|
|
3846
3852
|
type DestroyPairEntryArgs = {
|
|
@@ -4119,21 +4125,21 @@ type AddEventEntriesArgs = {
|
|
|
4119
4125
|
};
|
|
4120
4126
|
declare function addEventEntries(params: AddEventEntriesArgs): ResultType;
|
|
4121
4127
|
|
|
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$
|
|
4128
|
+
declare const mutate$b_addDrawEntries: typeof addDrawEntries;
|
|
4129
|
+
declare const mutate$b_addEventEntries: typeof addEventEntries;
|
|
4130
|
+
declare const mutate$b_addEventEntryPairs: typeof addEventEntryPairs;
|
|
4131
|
+
declare const mutate$b_destroyPairEntries: typeof destroyPairEntries;
|
|
4132
|
+
declare const mutate$b_destroyPairEntry: typeof destroyPairEntry;
|
|
4133
|
+
declare const mutate$b_modifyEntriesStatus: typeof modifyEntriesStatus;
|
|
4134
|
+
declare const mutate$b_modifyEventEntries: typeof modifyEventEntries;
|
|
4135
|
+
declare const mutate$b_promoteAlternate: typeof promoteAlternate;
|
|
4136
|
+
declare const mutate$b_promoteAlternates: typeof promoteAlternates;
|
|
4137
|
+
declare const mutate$b_removeDrawEntries: typeof removeDrawEntries;
|
|
4138
|
+
declare const mutate$b_removeEventEntries: typeof removeEventEntries;
|
|
4139
|
+
declare const mutate$b_setEntryPosition: typeof setEntryPosition;
|
|
4140
|
+
declare const mutate$b_setEntryPositions: typeof setEntryPositions;
|
|
4141
|
+
declare namespace mutate$b {
|
|
4142
|
+
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
4143
|
}
|
|
4138
4144
|
|
|
4139
4145
|
type GetEntriesAndSeedsCountArgs = {
|
|
@@ -4153,10 +4159,10 @@ declare function getEntriesAndSeedsCount({ policyDefinitions, drawDefinition, dr
|
|
|
4153
4159
|
|
|
4154
4160
|
declare function getMaxEntryPosition(params: any): number;
|
|
4155
4161
|
|
|
4156
|
-
declare const query$
|
|
4157
|
-
declare const query$
|
|
4158
|
-
declare namespace query$
|
|
4159
|
-
export { query$
|
|
4162
|
+
declare const query$a_getEntriesAndSeedsCount: typeof getEntriesAndSeedsCount;
|
|
4163
|
+
declare const query$a_getMaxEntryPosition: typeof getMaxEntryPosition;
|
|
4164
|
+
declare namespace query$a {
|
|
4165
|
+
export { query$a_getEntriesAndSeedsCount as getEntriesAndSeedsCount, query$a_getMaxEntryPosition as getMaxEntryPosition };
|
|
4160
4166
|
}
|
|
4161
4167
|
|
|
4162
4168
|
declare const index$i_addDrawEntries: typeof addDrawEntries;
|
|
@@ -4175,7 +4181,7 @@ declare const index$i_removeEventEntries: typeof removeEventEntries;
|
|
|
4175
4181
|
declare const index$i_setEntryPosition: typeof setEntryPosition;
|
|
4176
4182
|
declare const index$i_setEntryPositions: typeof setEntryPositions;
|
|
4177
4183
|
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$
|
|
4184
|
+
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
4185
|
}
|
|
4180
4186
|
|
|
4181
4187
|
declare function deleteFlightProfileAndFlightDraws({ autoPublish, tournamentRecord, auditData, event, force }: {
|
|
@@ -4563,30 +4569,30 @@ declare function addEvent({ suppressNotifications, tournamentRecord, internalUse
|
|
|
4563
4569
|
info?: any;
|
|
4564
4570
|
};
|
|
4565
4571
|
|
|
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$
|
|
4572
|
+
declare const mutate$a_addDrawDefinition: typeof addDrawDefinition;
|
|
4573
|
+
declare const mutate$a_addEvent: typeof addEvent;
|
|
4574
|
+
declare const mutate$a_addFlight: typeof addFlight;
|
|
4575
|
+
declare const mutate$a_assignSeedPositions: typeof assignSeedPositions;
|
|
4576
|
+
declare const mutate$a_attachFlightProfile: typeof attachFlightProfile;
|
|
4577
|
+
declare const mutate$a_deleteDrawDefinitions: typeof deleteDrawDefinitions;
|
|
4578
|
+
declare const mutate$a_deleteEvents: typeof deleteEvents;
|
|
4579
|
+
declare const mutate$a_deleteFlightAndFlightDraw: typeof deleteFlightAndFlightDraw;
|
|
4580
|
+
declare const mutate$a_deleteFlightProfileAndFlightDraws: typeof deleteFlightProfileAndFlightDraws;
|
|
4581
|
+
declare const mutate$a_modifyEvent: typeof modifyEvent;
|
|
4582
|
+
declare const mutate$a_modifyEventMatchUpFormatTiming: typeof modifyEventMatchUpFormatTiming;
|
|
4583
|
+
declare const mutate$a_modifyPairAssignment: typeof modifyPairAssignment;
|
|
4584
|
+
declare const mutate$a_refreshEventDrawOrder: typeof refreshEventDrawOrder;
|
|
4585
|
+
declare const mutate$a_removeEventMatchUpFormatTiming: typeof removeEventMatchUpFormatTiming;
|
|
4586
|
+
declare const mutate$a_removeScaleValues: typeof removeScaleValues;
|
|
4587
|
+
declare const mutate$a_removeSeeding: typeof removeSeeding;
|
|
4588
|
+
declare const mutate$a_setEventDates: typeof setEventDates;
|
|
4589
|
+
declare const mutate$a_setEventDisplay: typeof setEventDisplay;
|
|
4590
|
+
declare const mutate$a_setEventEndDate: typeof setEventEndDate;
|
|
4591
|
+
declare const mutate$a_setEventStartDate: typeof setEventStartDate;
|
|
4592
|
+
declare const mutate$a_updateDrawIdsOrder: typeof updateDrawIdsOrder;
|
|
4593
|
+
declare const mutate$a_validateCategory: typeof validateCategory;
|
|
4594
|
+
declare namespace mutate$a {
|
|
4595
|
+
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
4596
|
}
|
|
4591
4597
|
|
|
4592
4598
|
declare function bulkUpdatePublishedEventIds({ tournamentRecord, outcomes }: {
|
|
@@ -4775,18 +4781,18 @@ type GetEventArgs = {
|
|
|
4775
4781
|
};
|
|
4776
4782
|
declare function getEvent({ tournamentRecord, drawDefinition, context, event }: GetEventArgs): any;
|
|
4777
4783
|
|
|
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$
|
|
4784
|
+
declare const query$9_bulkUpdatePublishedEventIds: typeof bulkUpdatePublishedEventIds;
|
|
4785
|
+
declare const query$9_categoryCanContain: typeof categoryCanContain;
|
|
4786
|
+
declare const query$9_getCategoryAgeDetails: typeof getCategoryAgeDetails;
|
|
4787
|
+
declare const query$9_getEvent: typeof getEvent;
|
|
4788
|
+
declare const query$9_getEventProperties: typeof getEventProperties;
|
|
4789
|
+
declare const query$9_getEventStructures: typeof getEventStructures;
|
|
4790
|
+
declare const query$9_getEventTimeItem: typeof getEventTimeItem;
|
|
4791
|
+
declare const query$9_getEvents: typeof getEvents;
|
|
4792
|
+
declare const query$9_getFlightProfile: typeof getFlightProfile;
|
|
4793
|
+
declare const query$9_getScaledEntries: typeof getScaledEntries;
|
|
4794
|
+
declare namespace query$9 {
|
|
4795
|
+
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
4796
|
}
|
|
4791
4797
|
|
|
4792
4798
|
declare const index$h_addDrawDefinition: typeof addDrawDefinition;
|
|
@@ -4822,7 +4828,7 @@ declare const index$h_setEventStartDate: typeof setEventStartDate;
|
|
|
4822
4828
|
declare const index$h_updateDrawIdsOrder: typeof updateDrawIdsOrder;
|
|
4823
4829
|
declare const index$h_validateCategory: typeof validateCategory;
|
|
4824
4830
|
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$
|
|
4831
|
+
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
4832
|
}
|
|
4827
4833
|
|
|
4828
4834
|
declare function getRoundRobinGroupMatchUps({ drawPositions }: {
|
|
@@ -5134,6 +5140,28 @@ declare function removeDelegatedOutcome({ drawDefinition, event, matchUpId }: {
|
|
|
5134
5140
|
};
|
|
5135
5141
|
};
|
|
5136
5142
|
|
|
5143
|
+
type UpdateTieMatchUpScoreArgs = {
|
|
5144
|
+
tournamentRecords?: TournamentRecords;
|
|
5145
|
+
appliedPolicies?: PolicyDefinitions;
|
|
5146
|
+
tournamentRecord?: Tournament;
|
|
5147
|
+
drawDefinition: DrawDefinition;
|
|
5148
|
+
exitWhenNoValues?: boolean;
|
|
5149
|
+
matchUpsMap?: MatchUpsMap;
|
|
5150
|
+
matchUpStatus?: string;
|
|
5151
|
+
tournamentId?: string;
|
|
5152
|
+
removeScore?: boolean;
|
|
5153
|
+
matchUpId: string;
|
|
5154
|
+
event?: Event$1;
|
|
5155
|
+
};
|
|
5156
|
+
declare function updateTieMatchUpScore(params: UpdateTieMatchUpScoreArgs): {
|
|
5157
|
+
removeWinningSide?: boolean;
|
|
5158
|
+
tieFormatRemoved?: boolean;
|
|
5159
|
+
winningSide?: number;
|
|
5160
|
+
error?: ErrorType;
|
|
5161
|
+
success?: boolean;
|
|
5162
|
+
score?: any;
|
|
5163
|
+
};
|
|
5164
|
+
|
|
5137
5165
|
declare function substituteParticipant(params: any): ResultType | {
|
|
5138
5166
|
error: {
|
|
5139
5167
|
message: string;
|
|
@@ -5250,28 +5278,6 @@ declare function setDelegatedOutcome(params: any): {
|
|
|
5250
5278
|
info: string;
|
|
5251
5279
|
};
|
|
5252
5280
|
|
|
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
5281
|
type ResetAdHocMatchUps = {
|
|
5276
5282
|
tournamentRecord: Tournament;
|
|
5277
5283
|
drawDefinition: DrawDefinition;
|
|
@@ -5343,31 +5349,31 @@ type ResetScoreCardArgs = {
|
|
|
5343
5349
|
};
|
|
5344
5350
|
declare function resetScorecard(params: ResetScoreCardArgs): ResultType;
|
|
5345
5351
|
|
|
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$
|
|
5352
|
+
declare const mutate$9_applyLineUps: typeof applyLineUps;
|
|
5353
|
+
declare const mutate$9_assignMatchUpSideParticipant: typeof assignMatchUpSideParticipant;
|
|
5354
|
+
declare const mutate$9_assignTieMatchUpParticipantId: typeof assignTieMatchUpParticipantId;
|
|
5355
|
+
declare const mutate$9_bulkMatchUpStatusUpdate: typeof bulkMatchUpStatusUpdate;
|
|
5356
|
+
declare const mutate$9_checkInParticipant: typeof checkInParticipant;
|
|
5357
|
+
declare const mutate$9_checkOutParticipant: typeof checkOutParticipant;
|
|
5358
|
+
declare const mutate$9_disableTieAutoCalc: typeof disableTieAutoCalc;
|
|
5359
|
+
declare const mutate$9_enableTieAutoCalc: typeof enableTieAutoCalc;
|
|
5360
|
+
declare const mutate$9_removeDelegatedOutcome: typeof removeDelegatedOutcome;
|
|
5361
|
+
declare const mutate$9_removeMatchUpSideParticipant: typeof removeMatchUpSideParticipant;
|
|
5362
|
+
declare const mutate$9_removeTieMatchUpParticipantId: typeof removeTieMatchUpParticipantId;
|
|
5363
|
+
declare const mutate$9_replaceTieMatchUpParticipantId: typeof replaceTieMatchUpParticipantId;
|
|
5364
|
+
declare const mutate$9_resetAdHocMatchUps: typeof resetAdHocMatchUps;
|
|
5365
|
+
declare const mutate$9_resetMatchUpLineUps: typeof resetMatchUpLineUps;
|
|
5366
|
+
declare const mutate$9_resetScorecard: typeof resetScorecard;
|
|
5367
|
+
declare const mutate$9_resetTieFormat: typeof resetTieFormat;
|
|
5368
|
+
declare const mutate$9_setDelegatedOutcome: typeof setDelegatedOutcome;
|
|
5369
|
+
declare const mutate$9_setMatchUpFormat: typeof setMatchUpFormat;
|
|
5370
|
+
declare const mutate$9_setMatchUpStatus: typeof setMatchUpStatus;
|
|
5371
|
+
declare const mutate$9_setOrderOfFinish: typeof setOrderOfFinish;
|
|
5372
|
+
declare const mutate$9_substituteParticipant: typeof substituteParticipant;
|
|
5373
|
+
declare const mutate$9_toggleParticipantCheckInState: typeof toggleParticipantCheckInState;
|
|
5374
|
+
declare const mutate$9_updateTieMatchUpScore: typeof updateTieMatchUpScore;
|
|
5375
|
+
declare namespace mutate$9 {
|
|
5376
|
+
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
5377
|
}
|
|
5372
5378
|
|
|
5373
5379
|
declare function getMatchUpFormatTimingUpdate({ tournamentRecords }: {
|
|
@@ -5620,6 +5626,7 @@ declare function getAllStructureMatchUps({ scheduleVisibilityFilters, tournament
|
|
|
5620
5626
|
};
|
|
5621
5627
|
roundMatchUps: {};
|
|
5622
5628
|
matchUps: never[];
|
|
5629
|
+
isRoundRobin?: undefined;
|
|
5623
5630
|
roundProfile?: undefined;
|
|
5624
5631
|
matchUpsMap?: undefined;
|
|
5625
5632
|
} | {
|
|
@@ -5627,11 +5634,13 @@ declare function getAllStructureMatchUps({ scheduleVisibilityFilters, tournament
|
|
|
5627
5634
|
roundMatchUps: {};
|
|
5628
5635
|
matchUps: never[];
|
|
5629
5636
|
error?: undefined;
|
|
5637
|
+
isRoundRobin?: undefined;
|
|
5630
5638
|
roundProfile?: undefined;
|
|
5631
5639
|
matchUpsMap?: undefined;
|
|
5632
5640
|
} | {
|
|
5633
5641
|
collectionPositionMatchUps: {};
|
|
5634
5642
|
roundMatchUps: {};
|
|
5643
|
+
isRoundRobin: boolean;
|
|
5635
5644
|
roundProfile: RoundProfile | undefined;
|
|
5636
5645
|
matchUpsMap: MatchUpsMap;
|
|
5637
5646
|
matchUps: any;
|
|
@@ -5963,46 +5972,46 @@ declare function drawMatchUps({ participants: tournamentParticipants, tournament
|
|
|
5963
5972
|
error?: ErrorType | undefined;
|
|
5964
5973
|
};
|
|
5965
5974
|
|
|
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$
|
|
5975
|
+
declare const query$8_allCompetitionMatchUps: typeof allCompetitionMatchUps;
|
|
5976
|
+
declare const query$8_allDrawMatchUps: typeof allDrawMatchUps;
|
|
5977
|
+
declare const query$8_allEventMatchUps: typeof allEventMatchUps;
|
|
5978
|
+
declare const query$8_allTournamentMatchUps: typeof allTournamentMatchUps;
|
|
5979
|
+
declare const query$8_analyzeMatchUp: typeof analyzeMatchUp;
|
|
5980
|
+
declare const query$8_calculateWinCriteria: typeof calculateWinCriteria;
|
|
5981
|
+
declare const query$8_checkMatchUpIsComplete: typeof checkMatchUpIsComplete;
|
|
5982
|
+
declare const query$8_competitionScheduleMatchUps: typeof competitionScheduleMatchUps;
|
|
5983
|
+
declare const query$8_drawMatchUps: typeof drawMatchUps;
|
|
5984
|
+
declare const query$8_eventMatchUps: typeof eventMatchUps;
|
|
5985
|
+
declare const query$8_getAllDrawMatchUps: typeof getAllDrawMatchUps;
|
|
5986
|
+
declare const query$8_getAllStructureMatchUps: typeof getAllStructureMatchUps;
|
|
5987
|
+
declare const query$8_getCheckedInParticipantIds: typeof getCheckedInParticipantIds;
|
|
5988
|
+
declare const query$8_getCompetitionMatchUps: typeof getCompetitionMatchUps;
|
|
5989
|
+
declare const query$8_getEventMatchUpFormatTiming: typeof getEventMatchUpFormatTiming;
|
|
5990
|
+
declare const query$8_getMatchUpCompetitiveProfile: typeof getMatchUpCompetitiveProfile;
|
|
5991
|
+
declare const query$8_getMatchUpContextIds: typeof getMatchUpContextIds;
|
|
5992
|
+
declare const query$8_getMatchUpDailyLimits: typeof getMatchUpDailyLimits;
|
|
5993
|
+
declare const query$8_getMatchUpDailyLimitsUpdate: typeof getMatchUpDailyLimitsUpdate;
|
|
5994
|
+
declare const query$8_getMatchUpDependencies: typeof getMatchUpDependencies;
|
|
5995
|
+
declare const query$8_getMatchUpFormat: typeof getMatchUpFormat;
|
|
5996
|
+
declare const query$8_getMatchUpFormatTiming: typeof getMatchUpFormatTiming;
|
|
5997
|
+
declare const query$8_getMatchUpFormatTimingUpdate: typeof getMatchUpFormatTimingUpdate;
|
|
5998
|
+
declare const query$8_getMatchUpScheduleDetails: typeof getMatchUpScheduleDetails;
|
|
5999
|
+
declare const query$8_getMatchUpType: typeof getMatchUpType;
|
|
6000
|
+
declare const query$8_getMatchUpsStats: typeof getMatchUpsStats;
|
|
6001
|
+
declare const query$8_getModifiedMatchUpFormatTiming: typeof getModifiedMatchUpFormatTiming;
|
|
6002
|
+
declare const query$8_getParticipantResults: typeof getParticipantResults;
|
|
6003
|
+
declare const query$8_getPredictiveAccuracy: typeof getPredictiveAccuracy;
|
|
6004
|
+
declare const query$8_getRoundMatchUps: typeof getRoundMatchUps;
|
|
6005
|
+
declare const query$8_getRounds: typeof getRounds;
|
|
6006
|
+
declare const query$8_isValidMatchUpFormat: typeof isValidMatchUpFormat;
|
|
6007
|
+
declare const query$8_matchUpActions: typeof matchUpActions;
|
|
6008
|
+
declare const query$8_participantScheduledMatchUps: typeof participantScheduledMatchUps;
|
|
6009
|
+
declare const query$8_tallyParticipantResults: typeof tallyParticipantResults;
|
|
6010
|
+
declare const query$8_tournamentMatchUps: typeof tournamentMatchUps;
|
|
6011
|
+
declare const query$8_validMatchUp: typeof validMatchUp;
|
|
6012
|
+
declare const query$8_validMatchUps: typeof validMatchUps;
|
|
6013
|
+
declare namespace query$8 {
|
|
6014
|
+
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
6015
|
}
|
|
6007
6016
|
|
|
6008
6017
|
declare const index$e_allCompetitionMatchUps: typeof allCompetitionMatchUps;
|
|
@@ -6067,7 +6076,7 @@ declare const index$e_updateTieMatchUpScore: typeof updateTieMatchUpScore;
|
|
|
6067
6076
|
declare const index$e_validMatchUp: typeof validMatchUp;
|
|
6068
6077
|
declare const index$e_validMatchUps: typeof validMatchUps;
|
|
6069
6078
|
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$
|
|
6079
|
+
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
6080
|
}
|
|
6072
6081
|
|
|
6073
6082
|
declare function generateOutcomeFromScoreString(params: any): any;
|
|
@@ -6149,13 +6158,13 @@ declare function generateOutcome(params: any): {
|
|
|
6149
6158
|
matchUpStatusProfile?: undefined;
|
|
6150
6159
|
};
|
|
6151
6160
|
|
|
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$
|
|
6161
|
+
declare const generate$2_generateEventWithDraw: typeof generateEventWithDraw;
|
|
6162
|
+
declare const generate$2_generateOutcome: typeof generateOutcome;
|
|
6163
|
+
declare const generate$2_generateOutcomeFromScoreString: typeof generateOutcomeFromScoreString;
|
|
6164
|
+
declare const generate$2_generateParticipants: typeof generateParticipants;
|
|
6165
|
+
declare const generate$2_generateTournamentRecord: typeof generateTournamentRecord;
|
|
6166
|
+
declare namespace generate$2 {
|
|
6167
|
+
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
6168
|
}
|
|
6160
6169
|
|
|
6161
6170
|
declare function anonymizeTournamentRecord({ keepExtensions, anonymizeParticipantNames, tournamentRecord, tournamentName, personIds, tournamentId, }: {
|
|
@@ -6177,10 +6186,10 @@ declare function anonymizeTournamentRecord({ keepExtensions, anonymizeParticipan
|
|
|
6177
6186
|
|
|
6178
6187
|
declare function modifyTournamentRecord(params: any): any;
|
|
6179
6188
|
|
|
6180
|
-
declare const mutate$
|
|
6181
|
-
declare const mutate$
|
|
6182
|
-
declare namespace mutate$
|
|
6183
|
-
export { mutate$
|
|
6189
|
+
declare const mutate$8_anonymizeTournamentRecord: typeof anonymizeTournamentRecord;
|
|
6190
|
+
declare const mutate$8_modifyTournamentRecord: typeof modifyTournamentRecord;
|
|
6191
|
+
declare namespace mutate$8 {
|
|
6192
|
+
export { mutate$8_anonymizeTournamentRecord as anonymizeTournamentRecord, mutate$8_modifyTournamentRecord as modifyTournamentRecord };
|
|
6184
6193
|
}
|
|
6185
6194
|
|
|
6186
6195
|
declare const index$d_anonymizeTournamentRecord: typeof anonymizeTournamentRecord;
|
|
@@ -6191,7 +6200,7 @@ declare const index$d_generateParticipants: typeof generateParticipants;
|
|
|
6191
6200
|
declare const index$d_generateTournamentRecord: typeof generateTournamentRecord;
|
|
6192
6201
|
declare const index$d_modifyTournamentRecord: typeof modifyTournamentRecord;
|
|
6193
6202
|
declare namespace index$d {
|
|
6194
|
-
export { index$d_anonymizeTournamentRecord as anonymizeTournamentRecord, generate$
|
|
6203
|
+
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
6204
|
}
|
|
6196
6205
|
|
|
6197
6206
|
declare function modifyPersonRequests(params: any): ResultType & {
|
|
@@ -6585,33 +6594,33 @@ declare function removeParticipantIdsFromAllTeams({ participantRole, individualP
|
|
|
6585
6594
|
};
|
|
6586
6595
|
};
|
|
6587
6596
|
|
|
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$
|
|
6597
|
+
declare const mutate$7_addIndividualParticipantIds: typeof addIndividualParticipantIds;
|
|
6598
|
+
declare const mutate$7_addParticipant: typeof addParticipant;
|
|
6599
|
+
declare const mutate$7_addParticipants: typeof addParticipants;
|
|
6600
|
+
declare const mutate$7_addPenalty: typeof addPenalty;
|
|
6601
|
+
declare const mutate$7_addPersonRequests: typeof addPersonRequests;
|
|
6602
|
+
declare const mutate$7_addPersons: typeof addPersons;
|
|
6603
|
+
declare const mutate$7_createGroupParticipant: typeof createGroupParticipant;
|
|
6604
|
+
declare const mutate$7_createTeamsFromParticipantAttributes: typeof createTeamsFromParticipantAttributes;
|
|
6605
|
+
declare const mutate$7_deleteParticipants: typeof deleteParticipants;
|
|
6606
|
+
declare const mutate$7_mergeParticipants: typeof mergeParticipants;
|
|
6607
|
+
declare const mutate$7_modifyIndividualParticipantIds: typeof modifyIndividualParticipantIds;
|
|
6608
|
+
declare const mutate$7_modifyParticipant: typeof modifyParticipant;
|
|
6609
|
+
declare const mutate$7_modifyParticipantName: typeof modifyParticipantName;
|
|
6610
|
+
declare const mutate$7_modifyParticipantOtherName: typeof modifyParticipantOtherName;
|
|
6611
|
+
declare const mutate$7_modifyParticipantsSignInStatus: typeof modifyParticipantsSignInStatus;
|
|
6612
|
+
declare const mutate$7_modifyPenalty: typeof modifyPenalty;
|
|
6613
|
+
declare const mutate$7_modifyPersonRequests: typeof modifyPersonRequests;
|
|
6614
|
+
declare const mutate$7_regenerateParticipantNames: typeof regenerateParticipantNames;
|
|
6615
|
+
declare const mutate$7_removeIndividualParticipantIds: typeof removeIndividualParticipantIds;
|
|
6616
|
+
declare const mutate$7_removeParticipantIdsFromAllTeams: typeof removeParticipantIdsFromAllTeams;
|
|
6617
|
+
declare const mutate$7_removePenalty: typeof removePenalty;
|
|
6618
|
+
declare const mutate$7_removePersonRequests: typeof removePersonRequests;
|
|
6619
|
+
declare const mutate$7_scaledTeamAssignment: typeof scaledTeamAssignment;
|
|
6620
|
+
declare const mutate$7_setParticipantScaleItem: typeof setParticipantScaleItem;
|
|
6621
|
+
declare const mutate$7_setParticipantScaleItems: typeof setParticipantScaleItems;
|
|
6622
|
+
declare namespace mutate$7 {
|
|
6623
|
+
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
6624
|
}
|
|
6616
6625
|
|
|
6617
6626
|
declare function getCompetitionParticipants(params: any): ResultType & {
|
|
@@ -6792,21 +6801,21 @@ declare function validateLineUp({ lineUp, tieFormat }: ValidateLineUpArgs): {
|
|
|
6792
6801
|
} | undefined;
|
|
6793
6802
|
};
|
|
6794
6803
|
|
|
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$
|
|
6804
|
+
declare const query$7_filterParticipants: typeof filterParticipants;
|
|
6805
|
+
declare const query$7_getCompetitionParticipants: typeof getCompetitionParticipants;
|
|
6806
|
+
declare const query$7_getPairedParticipant: typeof getPairedParticipant;
|
|
6807
|
+
declare const query$7_getParticipantEventDetails: typeof getParticipantEventDetails;
|
|
6808
|
+
declare const query$7_getParticipantMembership: typeof getParticipantMembership;
|
|
6809
|
+
declare const query$7_getParticipantScaleItem: typeof getParticipantScaleItem;
|
|
6810
|
+
declare const query$7_getParticipantSchedules: typeof getParticipantSchedules;
|
|
6811
|
+
declare const query$7_getParticipantSignInStatus: typeof getParticipantSignInStatus;
|
|
6812
|
+
declare const query$7_getParticipantTimeItem: typeof getParticipantTimeItem;
|
|
6813
|
+
declare const query$7_getParticipants: typeof getParticipants;
|
|
6814
|
+
declare const query$7_getScaleValues: typeof getScaleValues;
|
|
6815
|
+
declare const query$7_participantScaleItem: typeof participantScaleItem;
|
|
6816
|
+
declare const query$7_validateLineUp: typeof validateLineUp;
|
|
6817
|
+
declare namespace query$7 {
|
|
6818
|
+
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
6819
|
}
|
|
6811
6820
|
|
|
6812
6821
|
declare const index$c_addIndividualParticipantIds: typeof addIndividualParticipantIds;
|
|
@@ -6848,7 +6857,7 @@ declare const index$c_setParticipantScaleItem: typeof setParticipantScaleItem;
|
|
|
6848
6857
|
declare const index$c_setParticipantScaleItems: typeof setParticipantScaleItems;
|
|
6849
6858
|
declare const index$c_validateLineUp: typeof validateLineUp;
|
|
6850
6859
|
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$
|
|
6860
|
+
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
6861
|
}
|
|
6853
6862
|
|
|
6854
6863
|
type AttachPoliciesArgs = {
|
|
@@ -6884,10 +6893,10 @@ declare function removePolicy(params: RemovePolicyArgs): (ResultType & {
|
|
|
6884
6893
|
};
|
|
6885
6894
|
};
|
|
6886
6895
|
|
|
6887
|
-
declare const mutate$
|
|
6888
|
-
declare const mutate$
|
|
6889
|
-
declare namespace mutate$
|
|
6890
|
-
export { mutate$
|
|
6896
|
+
declare const mutate$6_attachPolicies: typeof attachPolicies;
|
|
6897
|
+
declare const mutate$6_removePolicy: typeof removePolicy;
|
|
6898
|
+
declare namespace mutate$6 {
|
|
6899
|
+
export { mutate$6_attachPolicies as attachPolicies, mutate$6_removePolicy as removePolicy };
|
|
6891
6900
|
}
|
|
6892
6901
|
|
|
6893
6902
|
type GetAppliedPoliciesArgs = {
|
|
@@ -6928,11 +6937,11 @@ declare function findPolicy({ tournamentRecord, drawDefinition, policyType, stru
|
|
|
6928
6937
|
info?: string;
|
|
6929
6938
|
};
|
|
6930
6939
|
|
|
6931
|
-
declare const query$
|
|
6932
|
-
declare const query$
|
|
6933
|
-
declare const query$
|
|
6934
|
-
declare namespace query$
|
|
6935
|
-
export { query$
|
|
6940
|
+
declare const query$6_findPolicy: typeof findPolicy;
|
|
6941
|
+
declare const query$6_getAppliedPolicies: typeof getAppliedPolicies;
|
|
6942
|
+
declare const query$6_getPolicyDefinitions: typeof getPolicyDefinitions;
|
|
6943
|
+
declare namespace query$6 {
|
|
6944
|
+
export { query$6_findPolicy as findPolicy, query$6_getAppliedPolicies as getAppliedPolicies, query$6_getPolicyDefinitions as getPolicyDefinitions };
|
|
6936
6945
|
}
|
|
6937
6946
|
|
|
6938
6947
|
declare const index$b_attachPolicies: typeof attachPolicies;
|
|
@@ -6941,7 +6950,7 @@ declare const index$b_getAppliedPolicies: typeof getAppliedPolicies;
|
|
|
6941
6950
|
declare const index$b_getPolicyDefinitions: typeof getPolicyDefinitions;
|
|
6942
6951
|
declare const index$b_removePolicy: typeof removePolicy;
|
|
6943
6952
|
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$
|
|
6953
|
+
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
6954
|
}
|
|
6946
6955
|
|
|
6947
6956
|
declare function publishEventSeeding({ removePriorValues, stageSeedingScaleNames, seedingScaleNames, tournamentRecord, status, drawIds, event, }: {
|
|
@@ -7058,15 +7067,15 @@ declare function publishEvent(params: PublishEventType): ResultType | {
|
|
|
7058
7067
|
error?: undefined;
|
|
7059
7068
|
};
|
|
7060
7069
|
|
|
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$
|
|
7070
|
+
declare const mutate$5_publishEvent: typeof publishEvent;
|
|
7071
|
+
declare const mutate$5_publishEventSeeding: typeof publishEventSeeding;
|
|
7072
|
+
declare const mutate$5_publishOrderOfPlay: typeof publishOrderOfPlay;
|
|
7073
|
+
declare const mutate$5_setEventDisplay: typeof setEventDisplay;
|
|
7074
|
+
declare const mutate$5_unPublishEvent: typeof unPublishEvent;
|
|
7075
|
+
declare const mutate$5_unPublishEventSeeding: typeof unPublishEventSeeding;
|
|
7076
|
+
declare const mutate$5_unPublishOrderOfPlay: typeof unPublishOrderOfPlay;
|
|
7077
|
+
declare namespace mutate$5 {
|
|
7078
|
+
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
7079
|
}
|
|
7071
7080
|
|
|
7072
7081
|
declare function getTournamentPublishStatus({ tournamentRecord, status }: {
|
|
@@ -7156,17 +7165,17 @@ declare function getEventData(params: GetEventDataArgs): {
|
|
|
7156
7165
|
eventData?: any;
|
|
7157
7166
|
};
|
|
7158
7167
|
|
|
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 const query$
|
|
7168
|
-
declare namespace query$
|
|
7169
|
-
export { query$
|
|
7168
|
+
declare const query$5_bulkUpdatePublishedEventIds: typeof bulkUpdatePublishedEventIds;
|
|
7169
|
+
declare const query$5_getAllEventData: typeof getAllEventData;
|
|
7170
|
+
declare const query$5_getCourtInfo: typeof getCourtInfo;
|
|
7171
|
+
declare const query$5_getDrawData: typeof getDrawData;
|
|
7172
|
+
declare const query$5_getEventData: typeof getEventData;
|
|
7173
|
+
declare const query$5_getEventPublishStatus: typeof getEventPublishStatus;
|
|
7174
|
+
declare const query$5_getPublishState: typeof getPublishState;
|
|
7175
|
+
declare const query$5_getTournamentPublishStatus: typeof getTournamentPublishStatus;
|
|
7176
|
+
declare const query$5_getVenueData: typeof getVenueData;
|
|
7177
|
+
declare namespace query$5 {
|
|
7178
|
+
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_getTournamentPublishStatus as getTournamentPublishStatus, query$5_getVenueData as getVenueData };
|
|
7170
7179
|
}
|
|
7171
7180
|
|
|
7172
7181
|
declare const index$a_bulkUpdatePublishedEventIds: typeof bulkUpdatePublishedEventIds;
|
|
@@ -7186,7 +7195,7 @@ declare const index$a_unPublishEvent: typeof unPublishEvent;
|
|
|
7186
7195
|
declare const index$a_unPublishEventSeeding: typeof unPublishEventSeeding;
|
|
7187
7196
|
declare const index$a_unPublishOrderOfPlay: typeof unPublishOrderOfPlay;
|
|
7188
7197
|
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$a_getTournamentPublishStatus as getTournamentPublishStatus, index$a_getVenueData as getVenueData, mutate$
|
|
7198
|
+
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_getTournamentPublishStatus as getTournamentPublishStatus, 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
7199
|
}
|
|
7191
7200
|
|
|
7192
7201
|
type FindExtensionType = {
|
|
@@ -7291,21 +7300,21 @@ declare function analyzeDraws({ tournamentRecord }: {
|
|
|
7291
7300
|
success?: boolean;
|
|
7292
7301
|
};
|
|
7293
7302
|
|
|
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$
|
|
7303
|
+
declare const query$4_analyzeDraws: typeof analyzeDraws;
|
|
7304
|
+
declare const query$4_analyzeTournament: typeof analyzeTournament;
|
|
7305
|
+
declare const query$4_getAllowedDrawTypes: typeof getAllowedDrawTypes;
|
|
7306
|
+
declare const query$4_getAllowedMatchUpFormats: typeof getAllowedMatchUpFormats;
|
|
7307
|
+
declare const query$4_getAppliedPolicies: typeof getAppliedPolicies;
|
|
7308
|
+
declare const query$4_getCompetitionDateRange: typeof getCompetitionDateRange;
|
|
7309
|
+
declare const query$4_getCompetitionPenalties: typeof getCompetitionPenalties;
|
|
7310
|
+
declare const query$4_getPolicyDefinitions: typeof getPolicyDefinitions;
|
|
7311
|
+
declare const query$4_getTournamentInfo: typeof getTournamentInfo;
|
|
7312
|
+
declare const query$4_getTournamentPenalties: typeof getTournamentPenalties;
|
|
7313
|
+
declare const query$4_getTournamentPersons: typeof getTournamentPersons;
|
|
7314
|
+
declare const query$4_getTournamentStructures: typeof getTournamentStructures;
|
|
7315
|
+
declare const query$4_getTournamentTimeItem: typeof getTournamentTimeItem;
|
|
7316
|
+
declare namespace query$4 {
|
|
7317
|
+
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
7318
|
}
|
|
7310
7319
|
|
|
7311
7320
|
type GenderValidityCheckArgs = {
|
|
@@ -7368,12 +7377,12 @@ declare function getTieFormat({ tournamentRecord, drawDefinition, structureId, m
|
|
|
7368
7377
|
matchUp?: MatchUp;
|
|
7369
7378
|
};
|
|
7370
7379
|
|
|
7371
|
-
declare const query$
|
|
7372
|
-
declare const query$
|
|
7373
|
-
declare const query$
|
|
7374
|
-
declare const query$
|
|
7375
|
-
declare namespace query$
|
|
7376
|
-
export { query$
|
|
7380
|
+
declare const query$3_compareTieFormats: typeof compareTieFormats;
|
|
7381
|
+
declare const query$3_getTieFormat: typeof getTieFormat;
|
|
7382
|
+
declare const query$3_tieFormatGenderValidityCheck: typeof tieFormatGenderValidityCheck;
|
|
7383
|
+
declare const query$3_validateCollectionDefinition: typeof validateCollectionDefinition;
|
|
7384
|
+
declare namespace query$3 {
|
|
7385
|
+
export { query$3_compareTieFormats as compareTieFormats, query$3_getTieFormat as getTieFormat, query$3_tieFormatGenderValidityCheck as tieFormatGenderValidityCheck, query$3_validateCollectionDefinition as validateCollectionDefinition };
|
|
7377
7386
|
}
|
|
7378
7387
|
|
|
7379
7388
|
type GetScheduledRoundsDetailsArgs = {
|
|
@@ -7424,6 +7433,33 @@ declare function getSchedulingProfileIssues(params?: GetSchedulingProfileIssuesA
|
|
|
7424
7433
|
error?: undefined;
|
|
7425
7434
|
};
|
|
7426
7435
|
|
|
7436
|
+
type GetPersonRequestsArgs = {
|
|
7437
|
+
tournamentRecords: {
|
|
7438
|
+
[key: string]: Tournament;
|
|
7439
|
+
};
|
|
7440
|
+
requestType?: string;
|
|
7441
|
+
};
|
|
7442
|
+
declare function getPersonRequests(params: GetPersonRequestsArgs): {
|
|
7443
|
+
personRequests?: PersonRequests;
|
|
7444
|
+
error?: ErrorType;
|
|
7445
|
+
};
|
|
7446
|
+
|
|
7447
|
+
type GetProfileRoundsArgs = {
|
|
7448
|
+
tournamentRecords?: {
|
|
7449
|
+
[key: string]: Tournament;
|
|
7450
|
+
};
|
|
7451
|
+
tournamentRecord?: Tournament;
|
|
7452
|
+
schedulingProfile?: any;
|
|
7453
|
+
withRoundId?: boolean;
|
|
7454
|
+
};
|
|
7455
|
+
declare function getProfileRounds({ tournamentRecords, schedulingProfile, tournamentRecord, withRoundId, }: GetProfileRoundsArgs): {
|
|
7456
|
+
segmentedRounds?: {
|
|
7457
|
+
[key: string]: any;
|
|
7458
|
+
};
|
|
7459
|
+
profileRounds?: any[];
|
|
7460
|
+
error?: ErrorType;
|
|
7461
|
+
};
|
|
7462
|
+
|
|
7427
7463
|
type GetSchedulingProfileArgs = {
|
|
7428
7464
|
tournamentRecords?: TournamentRecords;
|
|
7429
7465
|
tournamentRecord?: Tournament;
|
|
@@ -7441,23 +7477,13 @@ type SetSchedulingProfileArgs = {
|
|
|
7441
7477
|
};
|
|
7442
7478
|
declare function setSchedulingProfile({ tournamentRecords, tournamentRecord, schedulingProfile, }: SetSchedulingProfileArgs): any;
|
|
7443
7479
|
|
|
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 };
|
|
7480
|
+
declare const query$2_getPersonRequests: typeof getPersonRequests;
|
|
7481
|
+
declare const query$2_getProfileRounds: typeof getProfileRounds;
|
|
7482
|
+
declare const query$2_getScheduledRoundsDetails: typeof getScheduledRoundsDetails;
|
|
7483
|
+
declare const query$2_getSchedulingProfile: typeof getSchedulingProfile;
|
|
7484
|
+
declare const query$2_getSchedulingProfileIssues: typeof getSchedulingProfileIssues;
|
|
7485
|
+
declare namespace query$2 {
|
|
7486
|
+
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
7487
|
}
|
|
7462
7488
|
|
|
7463
7489
|
type GetVenuesAndCourtsArgs = {
|
|
@@ -7514,14 +7540,15 @@ declare function getCourts({ tournamentRecord, venueId, venueIds }: {
|
|
|
7514
7540
|
error?: undefined;
|
|
7515
7541
|
};
|
|
7516
7542
|
|
|
7517
|
-
declare const
|
|
7518
|
-
declare const
|
|
7519
|
-
declare const
|
|
7520
|
-
declare const
|
|
7521
|
-
declare namespace query {
|
|
7522
|
-
export {
|
|
7543
|
+
declare const query$1_getCompetitionVenues: typeof getCompetitionVenues;
|
|
7544
|
+
declare const query$1_getCourts: typeof getCourts;
|
|
7545
|
+
declare const query$1_getVenuesAndCourts: typeof getVenuesAndCourts;
|
|
7546
|
+
declare const query$1_publicFindVenue: typeof publicFindVenue;
|
|
7547
|
+
declare namespace query$1 {
|
|
7548
|
+
export { query$1_getCompetitionVenues as getCompetitionVenues, query$1_getCourts as getCourts, query$1_getVenuesAndCourts as getVenuesAndCourts, query$1_publicFindVenue as publicFindVenue };
|
|
7523
7549
|
}
|
|
7524
7550
|
|
|
7551
|
+
declare const index$9_addGoesTo: typeof addGoesTo;
|
|
7525
7552
|
declare const index$9_allCompetitionMatchUps: typeof allCompetitionMatchUps;
|
|
7526
7553
|
declare const index$9_allDrawMatchUps: typeof allDrawMatchUps;
|
|
7527
7554
|
declare const index$9_allEventMatchUps: typeof allEventMatchUps;
|
|
@@ -7581,6 +7608,7 @@ declare const index$9_getMatchUpFormatTiming: typeof getMatchUpFormatTiming;
|
|
|
7581
7608
|
declare const index$9_getMatchUpFormatTimingUpdate: typeof getMatchUpFormatTimingUpdate;
|
|
7582
7609
|
declare const index$9_getMatchUpScheduleDetails: typeof getMatchUpScheduleDetails;
|
|
7583
7610
|
declare const index$9_getMatchUpType: typeof getMatchUpType;
|
|
7611
|
+
declare const index$9_getMatchUpsMap: typeof getMatchUpsMap;
|
|
7584
7612
|
declare const index$9_getMatchUpsStats: typeof getMatchUpsStats;
|
|
7585
7613
|
declare const index$9_getMaxEntryPosition: typeof getMaxEntryPosition;
|
|
7586
7614
|
declare const index$9_getModifiedMatchUpFormatTiming: typeof getModifiedMatchUpFormatTiming;
|
|
@@ -7599,6 +7627,7 @@ declare const index$9_getPolicyDefinitions: typeof getPolicyDefinitions;
|
|
|
7599
7627
|
declare const index$9_getPositionAssignments: typeof getPositionAssignments;
|
|
7600
7628
|
declare const index$9_getPositionsPlayedOff: typeof getPositionsPlayedOff;
|
|
7601
7629
|
declare const index$9_getPredictiveAccuracy: typeof getPredictiveAccuracy;
|
|
7630
|
+
declare const index$9_getProfileRounds: typeof getProfileRounds;
|
|
7602
7631
|
declare const index$9_getRoundMatchUps: typeof getRoundMatchUps;
|
|
7603
7632
|
declare const index$9_getRounds: typeof getRounds;
|
|
7604
7633
|
declare const index$9_getScaleValues: typeof getScaleValues;
|
|
@@ -7637,7 +7666,7 @@ declare const index$9_validMatchUps: typeof validMatchUps;
|
|
|
7637
7666
|
declare const index$9_validateCollectionDefinition: typeof validateCollectionDefinition;
|
|
7638
7667
|
declare const index$9_validateLineUp: typeof validateLineUp;
|
|
7639
7668
|
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 };
|
|
7669
|
+
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
7670
|
}
|
|
7642
7671
|
|
|
7643
7672
|
type StatCounters = {
|
|
@@ -8295,22 +8324,6 @@ declare function findMatchUpFormatTiming({ defaultRecoveryMinutes, defaultAverag
|
|
|
8295
8324
|
error?: undefined;
|
|
8296
8325
|
};
|
|
8297
8326
|
|
|
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
8327
|
declare function courtGridRows({ courtPrefix, minRowsCount, courtsData }: {
|
|
8315
8328
|
courtPrefix?: string | undefined;
|
|
8316
8329
|
minRowsCount: any;
|
|
@@ -8471,48 +8484,47 @@ declare function addMatchUpResumeTime({ removePriorValues, tournamentRecord, dra
|
|
|
8471
8484
|
info?: undefined;
|
|
8472
8485
|
};
|
|
8473
8486
|
|
|
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 };
|
|
8487
|
+
declare const mutate$4_addMatchUpCourtOrder: typeof addMatchUpCourtOrder;
|
|
8488
|
+
declare const mutate$4_addMatchUpEndTime: typeof addMatchUpEndTime;
|
|
8489
|
+
declare const mutate$4_addMatchUpOfficial: typeof addMatchUpOfficial;
|
|
8490
|
+
declare const mutate$4_addMatchUpResumeTime: typeof addMatchUpResumeTime;
|
|
8491
|
+
declare const mutate$4_addMatchUpScheduleItems: typeof addMatchUpScheduleItems;
|
|
8492
|
+
declare const mutate$4_addMatchUpScheduledDate: typeof addMatchUpScheduledDate;
|
|
8493
|
+
declare const mutate$4_addMatchUpScheduledTime: typeof addMatchUpScheduledTime;
|
|
8494
|
+
declare const mutate$4_addMatchUpStartTime: typeof addMatchUpStartTime;
|
|
8495
|
+
declare const mutate$4_addMatchUpStopTime: typeof addMatchUpStopTime;
|
|
8496
|
+
declare const mutate$4_addSchedulingProfileRound: typeof addSchedulingProfileRound;
|
|
8497
|
+
declare const mutate$4_allocateTeamMatchUpCourts: typeof allocateTeamMatchUpCourts;
|
|
8498
|
+
declare const mutate$4_assignMatchUpCourt: typeof assignMatchUpCourt;
|
|
8499
|
+
declare const mutate$4_assignMatchUpVenue: typeof assignMatchUpVenue;
|
|
8500
|
+
declare const mutate$4_bulkRescheduleMatchUps: typeof bulkRescheduleMatchUps;
|
|
8501
|
+
declare const mutate$4_bulkScheduleMatchUps: typeof bulkScheduleMatchUps;
|
|
8502
|
+
declare const mutate$4_bulkScheduleTournamentMatchUps: typeof bulkScheduleTournamentMatchUps;
|
|
8503
|
+
declare const mutate$4_bulkUpdateCourtAssignments: typeof bulkUpdateCourtAssignments;
|
|
8504
|
+
declare const mutate$4_calculateScheduleTimes: typeof calculateScheduleTimes;
|
|
8505
|
+
declare const mutate$4_clearMatchUpSchedule: typeof clearMatchUpSchedule;
|
|
8506
|
+
declare const mutate$4_clearScheduledMatchUps: typeof clearScheduledMatchUps;
|
|
8507
|
+
declare const mutate$4_courtGridRows: typeof courtGridRows;
|
|
8508
|
+
declare const mutate$4_findMatchUpFormatTiming: typeof findMatchUpFormatTiming;
|
|
8509
|
+
declare const mutate$4_findVenue: typeof findVenue;
|
|
8510
|
+
declare const mutate$4_generateBookings: typeof generateBookings;
|
|
8511
|
+
declare const mutate$4_generateVirtualCourts: typeof generateVirtualCourts;
|
|
8512
|
+
declare const mutate$4_matchUpScheduleChange: typeof matchUpScheduleChange;
|
|
8513
|
+
declare const mutate$4_modifyMatchUpFormatTiming: typeof modifyMatchUpFormatTiming;
|
|
8514
|
+
declare const mutate$4_proAutoSchedule: typeof proAutoSchedule;
|
|
8515
|
+
declare const mutate$4_proConflicts: typeof proConflicts;
|
|
8516
|
+
declare const mutate$4_publicFindCourt: typeof publicFindCourt;
|
|
8517
|
+
declare const mutate$4_removeEventMatchUpFormatTiming: typeof removeEventMatchUpFormatTiming;
|
|
8518
|
+
declare const mutate$4_removeMatchUpCourtAssignment: typeof removeMatchUpCourtAssignment;
|
|
8519
|
+
declare const mutate$4_reorderUpcomingMatchUps: typeof reorderUpcomingMatchUps;
|
|
8520
|
+
declare const mutate$4_scheduleMatchUps: typeof scheduleMatchUps;
|
|
8521
|
+
declare const mutate$4_scheduleProfileRounds: typeof scheduleProfileRounds;
|
|
8522
|
+
declare const mutate$4_setMatchUpDailyLimits: typeof setMatchUpDailyLimits;
|
|
8523
|
+
declare const mutate$4_setSchedulingProfile: typeof setSchedulingProfile;
|
|
8524
|
+
declare const mutate$4_toggleParticipantCheckInState: typeof toggleParticipantCheckInState;
|
|
8525
|
+
declare const mutate$4_validateSchedulingProfile: typeof validateSchedulingProfile;
|
|
8526
|
+
declare namespace mutate$4 {
|
|
8527
|
+
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
8528
|
}
|
|
8517
8529
|
|
|
8518
8530
|
declare const index$7_addMatchUpCourtOrder: typeof addMatchUpCourtOrder;
|
|
@@ -8560,7 +8572,7 @@ declare const index$7_setSchedulingProfile: typeof setSchedulingProfile;
|
|
|
8560
8572
|
declare const index$7_toggleParticipantCheckInState: typeof toggleParticipantCheckInState;
|
|
8561
8573
|
declare const index$7_validateSchedulingProfile: typeof validateSchedulingProfile;
|
|
8562
8574
|
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$
|
|
8575
|
+
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
8576
|
}
|
|
8565
8577
|
|
|
8566
8578
|
type TieMatchUpScore = {
|
|
@@ -8596,120 +8608,18 @@ declare function generateScoreString(params: GenerateScoreString): string | {
|
|
|
8596
8608
|
info?: ErrorType | string;
|
|
8597
8609
|
};
|
|
8598
8610
|
|
|
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
8611
|
declare function reverseScore(params?: any): {
|
|
8619
8612
|
reversedScore?: any;
|
|
8620
8613
|
success?: boolean;
|
|
8621
8614
|
error?: ErrorType;
|
|
8622
8615
|
};
|
|
8623
8616
|
|
|
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[];
|
|
8617
|
+
declare const generate$1_generateScoreString: typeof generateScoreString;
|
|
8618
|
+
declare const generate$1_generateTieMatchUpScore: typeof generateTieMatchUpScore;
|
|
8619
|
+
declare const generate$1_reverseScore: typeof reverseScore;
|
|
8620
|
+
declare namespace generate$1 {
|
|
8621
|
+
export { generate$1_generateScoreString as generateScoreString, generate$1_generateTieMatchUpScore as generateTieMatchUpScore, generate$1_reverseScore as reverseScore };
|
|
8622
|
+
}
|
|
8713
8623
|
|
|
8714
8624
|
declare function calculateHistoryScore(params: any): {
|
|
8715
8625
|
error: {
|
|
@@ -8831,6 +8741,148 @@ declare function undo({ matchUp }: {
|
|
|
8831
8741
|
|
|
8832
8742
|
declare const umo: {};
|
|
8833
8743
|
|
|
8744
|
+
declare const mutate$3_addGame: typeof addGame;
|
|
8745
|
+
declare const mutate$3_addPoint: typeof addPoint;
|
|
8746
|
+
declare const mutate$3_addSet: typeof addSet;
|
|
8747
|
+
declare const mutate$3_addShot: typeof addShot;
|
|
8748
|
+
declare const mutate$3_calculateHistoryScore: typeof calculateHistoryScore;
|
|
8749
|
+
declare const mutate$3_clearHistory: typeof clearHistory;
|
|
8750
|
+
declare const mutate$3_redo: typeof redo;
|
|
8751
|
+
declare const mutate$3_setServingSide: typeof setServingSide;
|
|
8752
|
+
declare const mutate$3_umo: typeof umo;
|
|
8753
|
+
declare const mutate$3_undo: typeof undo;
|
|
8754
|
+
declare namespace mutate$3 {
|
|
8755
|
+
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 };
|
|
8756
|
+
}
|
|
8757
|
+
|
|
8758
|
+
declare function keyValueScore(params: any): {
|
|
8759
|
+
updated: boolean;
|
|
8760
|
+
info: string;
|
|
8761
|
+
scoreString?: undefined;
|
|
8762
|
+
sets?: undefined;
|
|
8763
|
+
winningSide?: undefined;
|
|
8764
|
+
matchUpStatus?: undefined;
|
|
8765
|
+
} | {
|
|
8766
|
+
updated: any;
|
|
8767
|
+
scoreString: any;
|
|
8768
|
+
sets: any;
|
|
8769
|
+
winningSide: any;
|
|
8770
|
+
matchUpStatus: any;
|
|
8771
|
+
info: any;
|
|
8772
|
+
};
|
|
8773
|
+
|
|
8774
|
+
declare function tidyScore(params: any): {
|
|
8775
|
+
error: {
|
|
8776
|
+
message: string;
|
|
8777
|
+
code: string;
|
|
8778
|
+
};
|
|
8779
|
+
matchUpStatus?: undefined;
|
|
8780
|
+
modifications?: undefined;
|
|
8781
|
+
attributes?: undefined;
|
|
8782
|
+
isValid?: undefined;
|
|
8783
|
+
score?: undefined;
|
|
8784
|
+
} | {
|
|
8785
|
+
matchUpStatus: any;
|
|
8786
|
+
modifications: any[];
|
|
8787
|
+
attributes: any;
|
|
8788
|
+
isValid: boolean;
|
|
8789
|
+
score: any;
|
|
8790
|
+
error?: undefined;
|
|
8791
|
+
};
|
|
8792
|
+
|
|
8793
|
+
declare const help_keyValueScore: typeof keyValueScore;
|
|
8794
|
+
declare const help_tidyScore: typeof tidyScore;
|
|
8795
|
+
declare namespace help {
|
|
8796
|
+
export { help_keyValueScore as keyValueScore, parse as parseMatchUpFormat, stringify as stringifyMatchUpFormat, help_tidyScore as tidyScore };
|
|
8797
|
+
}
|
|
8798
|
+
|
|
8799
|
+
type ValidateTieFormatArgs = {
|
|
8800
|
+
checkCollectionIds?: boolean;
|
|
8801
|
+
enforceCategory?: boolean;
|
|
8802
|
+
enforceGender?: boolean;
|
|
8803
|
+
gender?: GenderUnion;
|
|
8804
|
+
category?: Category;
|
|
8805
|
+
tieFormat?: any;
|
|
8806
|
+
event?: Event$1;
|
|
8807
|
+
};
|
|
8808
|
+
declare function validateTieFormat(params: ValidateTieFormatArgs): ResultType;
|
|
8809
|
+
|
|
8810
|
+
type validateScoreTypes = {
|
|
8811
|
+
existingMatchUpStatus?: string;
|
|
8812
|
+
matchUpStatus?: string;
|
|
8813
|
+
matchUpFormat?: string;
|
|
8814
|
+
winningSide?: number;
|
|
8815
|
+
score: Score;
|
|
8816
|
+
};
|
|
8817
|
+
declare function validateScore({ existingMatchUpStatus, matchUpFormat, matchUpStatus, winningSide, score, }: validateScoreTypes): ResultType & {
|
|
8818
|
+
valid?: boolean;
|
|
8819
|
+
};
|
|
8820
|
+
|
|
8821
|
+
type SetComplementArgs = {
|
|
8822
|
+
lowValue?: string | number;
|
|
8823
|
+
tiebreakAt?: number;
|
|
8824
|
+
isSide1?: boolean;
|
|
8825
|
+
NoAD?: boolean;
|
|
8826
|
+
setTo: number;
|
|
8827
|
+
};
|
|
8828
|
+
declare const getSetComplement: (params: SetComplementArgs) => number[] | false;
|
|
8829
|
+
type TiebreakComplementArgs = {
|
|
8830
|
+
lowValue?: number | string;
|
|
8831
|
+
tiebreakNoAd?: boolean;
|
|
8832
|
+
tiebreakTo: number;
|
|
8833
|
+
isSide1?: boolean;
|
|
8834
|
+
};
|
|
8835
|
+
declare const getTiebreakComplement: (params: TiebreakComplementArgs) => number[] | false;
|
|
8836
|
+
|
|
8837
|
+
declare function checkScoreHasValue(params: any): boolean;
|
|
8838
|
+
|
|
8839
|
+
type CheckSetIsCompleteArgs = {
|
|
8840
|
+
matchUpScoringFormat?: any;
|
|
8841
|
+
ignoreTiebreak?: boolean;
|
|
8842
|
+
isDecidingSet?: boolean;
|
|
8843
|
+
isTiebreakSet?: boolean;
|
|
8844
|
+
matchUpFormat?: string;
|
|
8845
|
+
set: any;
|
|
8846
|
+
};
|
|
8847
|
+
declare function checkSetIsComplete({ ignoreTiebreak, matchUpScoringFormat, matchUpFormat, isTiebreakSet, isDecidingSet, set, }: CheckSetIsCompleteArgs): boolean | {
|
|
8848
|
+
error: {
|
|
8849
|
+
message: string;
|
|
8850
|
+
code: string;
|
|
8851
|
+
};
|
|
8852
|
+
info: string;
|
|
8853
|
+
};
|
|
8854
|
+
|
|
8855
|
+
type ParseScoreArgs = {
|
|
8856
|
+
scoreString: string;
|
|
8857
|
+
tiebreakTo?: number;
|
|
8858
|
+
};
|
|
8859
|
+
type ParsedSetString = {
|
|
8860
|
+
winningSide: number | undefined;
|
|
8861
|
+
side1TiebreakScore?: number;
|
|
8862
|
+
side2TiebreakScore?: number;
|
|
8863
|
+
side1Score?: number;
|
|
8864
|
+
side2Score?: number;
|
|
8865
|
+
setNumber: number;
|
|
8866
|
+
};
|
|
8867
|
+
declare function parseScoreString({ tiebreakTo, scoreString }: ParseScoreArgs): ParsedSetString[];
|
|
8868
|
+
|
|
8869
|
+
declare function analyzeSet(params: any): {
|
|
8870
|
+
[key: string]: any;
|
|
8871
|
+
};
|
|
8872
|
+
|
|
8873
|
+
declare const query_analyzeSet: typeof analyzeSet;
|
|
8874
|
+
declare const query_checkScoreHasValue: typeof checkScoreHasValue;
|
|
8875
|
+
declare const query_checkSetIsComplete: typeof checkSetIsComplete;
|
|
8876
|
+
declare const query_getSetComplement: typeof getSetComplement;
|
|
8877
|
+
declare const query_getTiebreakComplement: typeof getTiebreakComplement;
|
|
8878
|
+
declare const query_isValidMatchUpFormat: typeof isValidMatchUpFormat;
|
|
8879
|
+
declare const query_parseScoreString: typeof parseScoreString;
|
|
8880
|
+
declare const query_validateScore: typeof validateScore;
|
|
8881
|
+
declare const query_validateTieFormat: typeof validateTieFormat;
|
|
8882
|
+
declare namespace query {
|
|
8883
|
+
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 };
|
|
8884
|
+
}
|
|
8885
|
+
|
|
8834
8886
|
declare const index$6_addGame: typeof addGame;
|
|
8835
8887
|
declare const index$6_addPoint: typeof addPoint;
|
|
8836
8888
|
declare const index$6_addSet: typeof addSet;
|
|
@@ -8847,17 +8899,17 @@ declare const index$6_getTiebreakComplement: typeof getTiebreakComplement;
|
|
|
8847
8899
|
declare const index$6_isValidMatchUpFormat: typeof isValidMatchUpFormat;
|
|
8848
8900
|
declare const index$6_keyValueScore: typeof keyValueScore;
|
|
8849
8901
|
declare const index$6_parseScoreString: typeof parseScoreString;
|
|
8902
|
+
declare const index$6_query: typeof query;
|
|
8850
8903
|
declare const index$6_redo: typeof redo;
|
|
8851
8904
|
declare const index$6_reverseScore: typeof reverseScore;
|
|
8852
8905
|
declare const index$6_setServingSide: typeof setServingSide;
|
|
8853
8906
|
declare const index$6_tidyScore: typeof tidyScore;
|
|
8854
8907
|
declare const index$6_umo: typeof umo;
|
|
8855
8908
|
declare const index$6_undo: typeof undo;
|
|
8856
|
-
declare const index$6_updateTieMatchUpScore: typeof updateTieMatchUpScore;
|
|
8857
8909
|
declare const index$6_validateScore: typeof validateScore;
|
|
8858
8910
|
declare const index$6_validateTieFormat: typeof validateTieFormat;
|
|
8859
8911
|
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$
|
|
8912
|
+
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
8913
|
}
|
|
8862
8914
|
|
|
8863
8915
|
type ModifyCollectionDefinitionArgs = {
|
|
@@ -9042,7 +9094,7 @@ declare const index$5_removeCollectionGroup: typeof removeCollectionGroup;
|
|
|
9042
9094
|
declare const index$5_tieFormatGenderValidityCheck: typeof tieFormatGenderValidityCheck;
|
|
9043
9095
|
declare const index$5_validateCollectionDefinition: typeof validateCollectionDefinition;
|
|
9044
9096
|
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$
|
|
9097
|
+
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
9098
|
}
|
|
9047
9099
|
|
|
9048
9100
|
declare function setTournamentStatus({ tournamentRecord, status }: {
|
|
@@ -9436,7 +9488,7 @@ declare const index$4_setTournamentNotes: typeof setTournamentNotes;
|
|
|
9436
9488
|
declare const index$4_setTournamentStartDate: typeof setTournamentStartDate;
|
|
9437
9489
|
declare const index$4_setTournamentStatus: typeof setTournamentStatus;
|
|
9438
9490
|
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$
|
|
9491
|
+
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
9492
|
}
|
|
9441
9493
|
|
|
9442
9494
|
declare const generate_generateCourts: typeof generateCourts;
|
|
@@ -9720,9 +9772,8 @@ declare const index$3_modifyCourtAvailability: typeof modifyCourtAvailability;
|
|
|
9720
9772
|
declare const index$3_modifyVenue: typeof modifyVenue;
|
|
9721
9773
|
declare const index$3_mutate: typeof mutate;
|
|
9722
9774
|
declare const index$3_publicFindVenue: typeof publicFindVenue;
|
|
9723
|
-
declare const index$3_query: typeof query;
|
|
9724
9775
|
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,
|
|
9776
|
+
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
9777
|
}
|
|
9727
9778
|
|
|
9728
9779
|
declare namespace index$2 {
|