tods-competition-factory 2.2.25 → 2.2.27
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 +9 -9
- package/dist/tods-competition-factory.d.ts +55 -46
- package/dist/tods-competition-factory.development.cjs.js +96 -115
- 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 +53 -44
|
@@ -2818,8 +2818,9 @@ interface QualifierProgressionArgs {
|
|
|
2818
2818
|
tournamentRecord: Tournament;
|
|
2819
2819
|
targetRoundNumber?: number;
|
|
2820
2820
|
event: Event$1;
|
|
2821
|
+
randomList?: number[];
|
|
2821
2822
|
}
|
|
2822
|
-
declare function qualifierProgression({ targetRoundNumber, tournamentRecord, drawDefinition, event, }: QualifierProgressionArgs): ResultType;
|
|
2823
|
+
declare function qualifierProgression({ targetRoundNumber, tournamentRecord, drawDefinition, event, randomList, }: QualifierProgressionArgs): ResultType;
|
|
2823
2824
|
|
|
2824
2825
|
declare function setStructureOrder({ drawDefinition, orderMap }: {
|
|
2825
2826
|
drawDefinition: any;
|
|
@@ -3264,29 +3265,6 @@ type GetParticipantIdFinishingPositionsArgs = {
|
|
|
3264
3265
|
};
|
|
3265
3266
|
declare function getParticipantIdFinishingPositions({ byeAdvancements, tournamentRecord, drawDefinition, }: GetParticipantIdFinishingPositionsArgs): any;
|
|
3266
3267
|
|
|
3267
|
-
type GetStructureSeedAssignmentsArgs = {
|
|
3268
|
-
provisionalPositioning?: boolean;
|
|
3269
|
-
drawDefinition?: DrawDefinition;
|
|
3270
|
-
returnAllProxies?: boolean;
|
|
3271
|
-
structure?: Structure;
|
|
3272
|
-
structureId?: string;
|
|
3273
|
-
};
|
|
3274
|
-
declare function getStructureSeedAssignments({ provisionalPositioning, returnAllProxies, drawDefinition, structureId, structure, }: GetStructureSeedAssignmentsArgs): {
|
|
3275
|
-
seedAssignments?: SeedAssignment[];
|
|
3276
|
-
stageSequence?: number;
|
|
3277
|
-
stage?: StageTypeUnion;
|
|
3278
|
-
seedLimit?: number;
|
|
3279
|
-
error?: ErrorType;
|
|
3280
|
-
};
|
|
3281
|
-
|
|
3282
|
-
type GetAssignedParticipantIdsArgs = {
|
|
3283
|
-
drawDefinition: DrawDefinition;
|
|
3284
|
-
stages?: StageTypeUnion[];
|
|
3285
|
-
};
|
|
3286
|
-
declare function getAssignedParticipantIds({ drawDefinition, stages }: GetAssignedParticipantIdsArgs): ResultType & {
|
|
3287
|
-
assignedParticipantIds?: string[];
|
|
3288
|
-
};
|
|
3289
|
-
|
|
3290
3268
|
type GetDrawDefinitionArgs = {
|
|
3291
3269
|
tournamentRecords?: {
|
|
3292
3270
|
[key: string]: Tournament;
|
|
@@ -3303,6 +3281,29 @@ declare function publicFindDrawDefinition(params: GetDrawDefinitionArgs): {
|
|
|
3303
3281
|
error?: undefined;
|
|
3304
3282
|
};
|
|
3305
3283
|
|
|
3284
|
+
type GetAssignedParticipantIdsArgs = {
|
|
3285
|
+
drawDefinition: DrawDefinition;
|
|
3286
|
+
stages?: StageTypeUnion[];
|
|
3287
|
+
};
|
|
3288
|
+
declare function getAssignedParticipantIds({ drawDefinition, stages }: GetAssignedParticipantIdsArgs): ResultType & {
|
|
3289
|
+
assignedParticipantIds?: string[];
|
|
3290
|
+
};
|
|
3291
|
+
|
|
3292
|
+
type GetStructureSeedAssignmentsArgs = {
|
|
3293
|
+
provisionalPositioning?: boolean;
|
|
3294
|
+
drawDefinition?: DrawDefinition;
|
|
3295
|
+
returnAllProxies?: boolean;
|
|
3296
|
+
structure?: Structure;
|
|
3297
|
+
structureId?: string;
|
|
3298
|
+
};
|
|
3299
|
+
declare function getStructureSeedAssignments({ provisionalPositioning, returnAllProxies, drawDefinition, structureId, structure, }: GetStructureSeedAssignmentsArgs): {
|
|
3300
|
+
seedAssignments?: SeedAssignment[];
|
|
3301
|
+
stageSequence?: number;
|
|
3302
|
+
stage?: StageTypeUnion;
|
|
3303
|
+
seedLimit?: number;
|
|
3304
|
+
error?: ErrorType;
|
|
3305
|
+
};
|
|
3306
|
+
|
|
3306
3307
|
type PositionActionsArgs = {
|
|
3307
3308
|
inContextDrawMatchUps?: HydratedMatchUp[];
|
|
3308
3309
|
restrictAdHocRoundParticipants?: boolean;
|
|
@@ -3326,6 +3327,18 @@ declare function positionActions(params: PositionActionsArgs): ResultType & {
|
|
|
3326
3327
|
validActions?: any[];
|
|
3327
3328
|
};
|
|
3328
3329
|
|
|
3330
|
+
type getDrawTypeCoercionArgs = {
|
|
3331
|
+
policyDefinitions?: PolicyDefinitions;
|
|
3332
|
+
appliedPolicies?: PolicyDefinitions;
|
|
3333
|
+
drawType?: string;
|
|
3334
|
+
};
|
|
3335
|
+
declare function getDrawTypeCoercion({ policyDefinitions, appliedPolicies, drawType }: getDrawTypeCoercionArgs): any;
|
|
3336
|
+
|
|
3337
|
+
interface GetRandomQualifierListParams {
|
|
3338
|
+
drawDefinition: DrawDefinition;
|
|
3339
|
+
}
|
|
3340
|
+
declare const getRandomQualifierList: ({ drawDefinition }: GetRandomQualifierListParams) => any[] | ResultType;
|
|
3341
|
+
|
|
3329
3342
|
type GetPositionsPlayedOff = {
|
|
3330
3343
|
drawDefinition: DrawDefinition;
|
|
3331
3344
|
matchUpsMap?: MatchUpsMap;
|
|
@@ -3356,12 +3369,19 @@ declare function getPositionsPlayedOff({ drawDefinition, structureIds, matchUpsM
|
|
|
3356
3369
|
context?: undefined;
|
|
3357
3370
|
};
|
|
3358
3371
|
|
|
3359
|
-
|
|
3360
|
-
|
|
3361
|
-
|
|
3362
|
-
|
|
3372
|
+
declare function isValidForQualifying({ structureId, drawDefinition }: {
|
|
3373
|
+
structureId: any;
|
|
3374
|
+
drawDefinition: any;
|
|
3375
|
+
}): {
|
|
3376
|
+
error: {
|
|
3377
|
+
message: string;
|
|
3378
|
+
code: string;
|
|
3379
|
+
};
|
|
3380
|
+
links?: undefined;
|
|
3381
|
+
} | {
|
|
3382
|
+
valid: boolean;
|
|
3383
|
+
success: boolean;
|
|
3363
3384
|
};
|
|
3364
|
-
declare function getDrawTypeCoercion({ policyDefinitions, appliedPolicies, drawType }: getDrawTypeCoercionArgs): any;
|
|
3365
3385
|
|
|
3366
3386
|
type GetPositionAssignmentsArgs = {
|
|
3367
3387
|
tournamentRecord: Tournament;
|
|
@@ -3383,20 +3403,6 @@ declare function getPositionAssignments({ tournamentRecord, drawDefinition, stag
|
|
|
3383
3403
|
error: ErrorType | undefined;
|
|
3384
3404
|
};
|
|
3385
3405
|
|
|
3386
|
-
declare function isValidForQualifying({ structureId, drawDefinition }: {
|
|
3387
|
-
structureId: any;
|
|
3388
|
-
drawDefinition: any;
|
|
3389
|
-
}): {
|
|
3390
|
-
error: {
|
|
3391
|
-
message: string;
|
|
3392
|
-
code: string;
|
|
3393
|
-
};
|
|
3394
|
-
links?: undefined;
|
|
3395
|
-
} | {
|
|
3396
|
-
valid: boolean;
|
|
3397
|
-
success: boolean;
|
|
3398
|
-
};
|
|
3399
|
-
|
|
3400
3406
|
type GetSeedingThresholdsArgs = {
|
|
3401
3407
|
roundRobinGroupsCount?: number;
|
|
3402
3408
|
participantsCount: number;
|
|
@@ -3651,6 +3657,7 @@ declare const query$b_getMatchUpsMap: typeof getMatchUpsMap;
|
|
|
3651
3657
|
declare const query$b_getParticipantIdFinishingPositions: typeof getParticipantIdFinishingPositions;
|
|
3652
3658
|
declare const query$b_getPositionAssignments: typeof getPositionAssignments;
|
|
3653
3659
|
declare const query$b_getPositionsPlayedOff: typeof getPositionsPlayedOff;
|
|
3660
|
+
declare const query$b_getRandomQualifierList: typeof getRandomQualifierList;
|
|
3654
3661
|
declare const query$b_getSeedingThresholds: typeof getSeedingThresholds;
|
|
3655
3662
|
declare const query$b_getSeedsCount: typeof getSeedsCount;
|
|
3656
3663
|
declare const query$b_getStructureSeedAssignments: typeof getStructureSeedAssignments;
|
|
@@ -3661,7 +3668,7 @@ declare const query$b_isCompletedStructure: typeof isCompletedStructure;
|
|
|
3661
3668
|
declare const query$b_isValidForQualifying: typeof isValidForQualifying;
|
|
3662
3669
|
declare const query$b_positionActions: typeof positionActions;
|
|
3663
3670
|
declare namespace query$b {
|
|
3664
|
-
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_getDrawStructures as getDrawStructures, 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 };
|
|
3671
|
+
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_getDrawStructures as getDrawStructures, 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_getRandomQualifierList as getRandomQualifierList, 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 };
|
|
3665
3672
|
}
|
|
3666
3673
|
|
|
3667
3674
|
type GenerateDrawTypeAndModify = {
|
|
@@ -4000,6 +4007,7 @@ declare const index$j_getMatchUpsMap: typeof getMatchUpsMap;
|
|
|
4000
4007
|
declare const index$j_getParticipantIdFinishingPositions: typeof getParticipantIdFinishingPositions;
|
|
4001
4008
|
declare const index$j_getPositionAssignments: typeof getPositionAssignments;
|
|
4002
4009
|
declare const index$j_getPositionsPlayedOff: typeof getPositionsPlayedOff;
|
|
4010
|
+
declare const index$j_getRandomQualifierList: typeof getRandomQualifierList;
|
|
4003
4011
|
declare const index$j_getSeedingThresholds: typeof getSeedingThresholds;
|
|
4004
4012
|
declare const index$j_getSeedsCount: typeof getSeedsCount;
|
|
4005
4013
|
declare const index$j_getStructureSeedAssignments: typeof getStructureSeedAssignments;
|
|
@@ -4034,7 +4042,7 @@ declare const index$j_swapDrawPositionAssignments: typeof swapDrawPositionAssign
|
|
|
4034
4042
|
declare const index$j_updateTeamLineUp: typeof updateTeamLineUp;
|
|
4035
4043
|
declare const index$j_withdrawParticipantAtDrawPosition: typeof withdrawParticipantAtDrawPosition;
|
|
4036
4044
|
declare namespace index$j {
|
|
4037
|
-
export { index$j_adHocPositionSwap as adHocPositionSwap, 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_getDrawStructures as getDrawStructures, 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, index$j_qualifierProgression as qualifierProgression, 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_resetQualifyingStructure as resetQualifyingStructure, 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_shiftAdHocRounds as shiftAdHocRounds, index$j_swapAdHocRounds as swapAdHocRounds, index$j_swapDrawPositionAssignments as swapDrawPositionAssignments, index$j_updateTeamLineUp as updateTeamLineUp, index$j_withdrawParticipantAtDrawPosition as withdrawParticipantAtDrawPosition };
|
|
4045
|
+
export { index$j_adHocPositionSwap as adHocPositionSwap, 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_getDrawStructures as getDrawStructures, 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_getRandomQualifierList as getRandomQualifierList, 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, index$j_qualifierProgression as qualifierProgression, 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_resetQualifyingStructure as resetQualifyingStructure, 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_shiftAdHocRounds as shiftAdHocRounds, index$j_swapAdHocRounds as swapAdHocRounds, index$j_swapDrawPositionAssignments as swapDrawPositionAssignments, index$j_updateTeamLineUp as updateTeamLineUp, index$j_withdrawParticipantAtDrawPosition as withdrawParticipantAtDrawPosition };
|
|
4038
4046
|
}
|
|
4039
4047
|
|
|
4040
4048
|
type DestroyPairEntryArgs = {
|
|
@@ -7960,6 +7968,7 @@ declare const index$9_getPositionsPlayedOff: typeof getPositionsPlayedOff;
|
|
|
7960
7968
|
declare const index$9_getPredictiveAccuracy: typeof getPredictiveAccuracy;
|
|
7961
7969
|
declare const index$9_getProfileRounds: typeof getProfileRounds;
|
|
7962
7970
|
declare const index$9_getPublishState: typeof getPublishState;
|
|
7971
|
+
declare const index$9_getRandomQualifierList: typeof getRandomQualifierList;
|
|
7963
7972
|
declare const index$9_getRoundMatchUps: typeof getRoundMatchUps;
|
|
7964
7973
|
declare const index$9_getRounds: typeof getRounds;
|
|
7965
7974
|
declare const index$9_getScaleValues: typeof getScaleValues;
|
|
@@ -8002,7 +8011,7 @@ declare const index$9_validMatchUps: typeof validMatchUps;
|
|
|
8002
8011
|
declare const index$9_validateCollectionDefinition: typeof validateCollectionDefinition;
|
|
8003
8012
|
declare const index$9_validateLineUp: typeof validateLineUp;
|
|
8004
8013
|
declare namespace index$9 {
|
|
8005
|
-
export { index$9_addGoesTo as addGoesTo, index$9_allCompetitionMatchUps as allCompetitionMatchUps, index$9_allDrawMatchUps as allDrawMatchUps, index$9_allEventMatchUps as allEventMatchUps, index$9_allPlayoffPositionsFilled as allPlayoffPositionsFilled, index$9_allTournamentMatchUps as allTournamentMatchUps, index$9_analyzeDraws as analyzeDraws, index$9_analyzeMatchUp as analyzeMatchUp, index$9_analyzeTournament as analyzeTournament, index$9_bulkUpdatePublishedEventIds as bulkUpdatePublishedEventIds, index$9_calculateWinCriteria as calculateWinCriteria, index$9_categoryCanContain as categoryCanContain, index$9_checkMatchUpIsComplete as checkMatchUpIsComplete, index$9_checkValidEntries as checkValidEntries, index$9_compareTieFormats as compareTieFormats, index$9_competitionScheduleMatchUps as competitionScheduleMatchUps, index$9_courtGridRows as courtGridRows, index$9_credits as credits, index$9_drawMatchUps as drawMatchUps, index$9_eventMatchUps as eventMatchUps, index$9_filterMatchUps as filterMatchUps, index$9_filterParticipants as filterParticipants, publicFindDrawDefinition as findDrawDefinition, index$9_findExtension as findExtension, index$9_findVenue as findVenue, index$9_getAggregateTeamResults as getAggregateTeamResults, index$9_getAllDrawMatchUps as getAllDrawMatchUps, index$9_getAllEventData as getAllEventData, index$9_getAllStructureMatchUps as getAllStructureMatchUps, index$9_getAllowedDrawTypes as getAllowedDrawTypes, index$9_getAllowedMatchUpFormats as getAllowedMatchUpFormats, index$9_getAppliedPolicies as getAppliedPolicies, index$9_getAssignedParticipantIds as getAssignedParticipantIds, index$9_getAvailableMatchUpsCount as getAvailableMatchUpsCount, index$9_getAvailablePlayoffProfiles as getAvailablePlayoffProfiles, index$9_getCategoryAgeDetails as getCategoryAgeDetails, index$9_getCheckedInParticipantIds as getCheckedInParticipantIds, index$9_getCompetitionDateRange as getCompetitionDateRange, index$9_getCompetitionMatchUps as getCompetitionMatchUps, index$9_getCompetitionParticipants as getCompetitionParticipants, index$9_getCompetitionPenalties as getCompetitionPenalties, index$9_getCompetitionVenues as getCompetitionVenues, index$9_getCourtInfo as getCourtInfo, index$9_getCourts as getCourts, index$9_getDrawData as getDrawData, index$9_getDrawDefinitionTimeItem as getDrawDefinitionTimeItem, index$9_getDrawParticipantRepresentativeIds as getDrawParticipantRepresentativeIds, index$9_getDrawStructures as getDrawStructures, index$9_getDrawTypeCoercion as getDrawTypeCoercion, index$9_getEligibleVoluntaryConsolationParticipants as getEligibleVoluntaryConsolationParticipants, index$9_getEntriesAndSeedsCount as getEntriesAndSeedsCount, index$9_getEvent as getEvent, index$9_getEventData as getEventData, index$9_getEventMatchUpFormatTiming as getEventMatchUpFormatTiming, index$9_getEventProperties as getEventProperties, index$9_getEventPublishStatus as getEventPublishStatus, index$9_getEventStructures as getEventStructures, index$9_getEventTimeItem as getEventTimeItem, index$9_getEvents as getEvents, index$9_getFlightProfile as getFlightProfile, index$9_getHomeParticipantId as getHomeParticipantId, index$9_getLinkedTournamentIds as getLinkedTournamentIds, index$9_getMatchUpCompetitiveProfile as getMatchUpCompetitiveProfile, index$9_getMatchUpContextIds as getMatchUpContextIds, index$9_getMatchUpDailyLimits as getMatchUpDailyLimits, index$9_getMatchUpDailyLimitsUpdate as getMatchUpDailyLimitsUpdate, index$9_getMatchUpDependencies as getMatchUpDependencies, index$9_getMatchUpFormat as getMatchUpFormat, index$9_getMatchUpFormatTiming as getMatchUpFormatTiming, index$9_getMatchUpFormatTimingUpdate as getMatchUpFormatTimingUpdate, index$9_getMatchUpScheduleDetails as getMatchUpScheduleDetails, index$9_getMatchUpType as getMatchUpType, index$9_getMatchUpsMap as getMatchUpsMap, index$9_getMatchUpsStats as getMatchUpsStats, index$9_getMatchUpsToSchedule as getMatchUpsToSchedule, index$9_getMaxEntryPosition as getMaxEntryPosition, index$9_getModifiedMatchUpFormatTiming as getModifiedMatchUpFormatTiming, index$9_getPairedParticipant as getPairedParticipant, index$9_getParticipantEventDetails as getParticipantEventDetails, index$9_getParticipantIdFinishingPositions as getParticipantIdFinishingPositions, index$9_getParticipantMembership as getParticipantMembership, index$9_getParticipantResults as getParticipantResults, index$9_getParticipantScaleItem as getParticipantScaleItem, index$9_getParticipantSchedules as getParticipantSchedules, index$9_getParticipantSignInStatus as getParticipantSignInStatus, index$9_getParticipantTimeItem as getParticipantTimeItem, index$9_getParticipants as getParticipants, index$9_getPersonRequests as getPersonRequests, index$9_getPolicyDefinitions as getPolicyDefinitions, index$9_getPositionAssignments as getPositionAssignments, index$9_getPositionsPlayedOff as getPositionsPlayedOff, index$9_getPredictiveAccuracy as getPredictiveAccuracy, index$9_getProfileRounds as getProfileRounds, index$9_getPublishState as getPublishState, index$9_getRoundMatchUps as getRoundMatchUps, index$9_getRounds as getRounds, index$9_getScaleValues as getScaleValues, index$9_getScaledEntries as getScaledEntries, index$9_getScheduledRoundsDetails as getScheduledRoundsDetails, index$9_getSchedulingProfile as getSchedulingProfile, index$9_getSchedulingProfileIssues as getSchedulingProfileIssues, index$9_getSeedingThresholds as getSeedingThresholds, index$9_getSeedsCount as getSeedsCount, index$9_getStructureSeedAssignments as getStructureSeedAssignments, index$9_getTeamLineUp as getTeamLineUp, index$9_getTieFormat as getTieFormat, index$9_getTimeItem as getTimeItem, index$9_getTournamentIds as getTournamentIds, index$9_getTournamentInfo as getTournamentInfo, index$9_getTournamentPenalties as getTournamentPenalties, index$9_getTournamentPersons as getTournamentPersons, index$9_getTournamentPoints as getTournamentPoints, index$9_getTournamentPublishStatus as getTournamentPublishStatus, index$9_getTournamentStructures as getTournamentStructures, index$9_getTournamentTimeItem as getTournamentTimeItem, index$9_getValidGroupSizes as getValidGroupSizes, index$9_getVenueData as getVenueData, index$9_getVenuesAndCourts as getVenuesAndCourts, index$9_isAdHoc as isAdHoc, index$9_isCompletedStructure as isCompletedStructure, index$9_isValidForQualifying as isValidForQualifying, index$9_isValidMatchUpFormat as isValidMatchUpFormat, index$9_matchUpActions as matchUpActions, index$9_participantScaleItem as participantScaleItem, index$9_participantScheduledMatchUps as participantScheduledMatchUps, index$9_positionActions as positionActions, index$9_publicFindCourt as publicFindCourt, index$9_publicFindVenue as publicFindVenue, index$9_tallyParticipantResults as tallyParticipantResults, index$9_tieFormatGenderValidityCheck as tieFormatGenderValidityCheck, index$9_tournamentMatchUps as tournamentMatchUps, index$9_validMatchUp as validMatchUp, index$9_validMatchUps as validMatchUps, index$9_validateCollectionDefinition as validateCollectionDefinition, index$9_validateLineUp as validateLineUp };
|
|
8014
|
+
export { index$9_addGoesTo as addGoesTo, index$9_allCompetitionMatchUps as allCompetitionMatchUps, index$9_allDrawMatchUps as allDrawMatchUps, index$9_allEventMatchUps as allEventMatchUps, index$9_allPlayoffPositionsFilled as allPlayoffPositionsFilled, index$9_allTournamentMatchUps as allTournamentMatchUps, index$9_analyzeDraws as analyzeDraws, index$9_analyzeMatchUp as analyzeMatchUp, index$9_analyzeTournament as analyzeTournament, index$9_bulkUpdatePublishedEventIds as bulkUpdatePublishedEventIds, index$9_calculateWinCriteria as calculateWinCriteria, index$9_categoryCanContain as categoryCanContain, index$9_checkMatchUpIsComplete as checkMatchUpIsComplete, index$9_checkValidEntries as checkValidEntries, index$9_compareTieFormats as compareTieFormats, index$9_competitionScheduleMatchUps as competitionScheduleMatchUps, index$9_courtGridRows as courtGridRows, index$9_credits as credits, index$9_drawMatchUps as drawMatchUps, index$9_eventMatchUps as eventMatchUps, index$9_filterMatchUps as filterMatchUps, index$9_filterParticipants as filterParticipants, publicFindDrawDefinition as findDrawDefinition, index$9_findExtension as findExtension, index$9_findVenue as findVenue, index$9_getAggregateTeamResults as getAggregateTeamResults, index$9_getAllDrawMatchUps as getAllDrawMatchUps, index$9_getAllEventData as getAllEventData, index$9_getAllStructureMatchUps as getAllStructureMatchUps, index$9_getAllowedDrawTypes as getAllowedDrawTypes, index$9_getAllowedMatchUpFormats as getAllowedMatchUpFormats, index$9_getAppliedPolicies as getAppliedPolicies, index$9_getAssignedParticipantIds as getAssignedParticipantIds, index$9_getAvailableMatchUpsCount as getAvailableMatchUpsCount, index$9_getAvailablePlayoffProfiles as getAvailablePlayoffProfiles, index$9_getCategoryAgeDetails as getCategoryAgeDetails, index$9_getCheckedInParticipantIds as getCheckedInParticipantIds, index$9_getCompetitionDateRange as getCompetitionDateRange, index$9_getCompetitionMatchUps as getCompetitionMatchUps, index$9_getCompetitionParticipants as getCompetitionParticipants, index$9_getCompetitionPenalties as getCompetitionPenalties, index$9_getCompetitionVenues as getCompetitionVenues, index$9_getCourtInfo as getCourtInfo, index$9_getCourts as getCourts, index$9_getDrawData as getDrawData, index$9_getDrawDefinitionTimeItem as getDrawDefinitionTimeItem, index$9_getDrawParticipantRepresentativeIds as getDrawParticipantRepresentativeIds, index$9_getDrawStructures as getDrawStructures, index$9_getDrawTypeCoercion as getDrawTypeCoercion, index$9_getEligibleVoluntaryConsolationParticipants as getEligibleVoluntaryConsolationParticipants, index$9_getEntriesAndSeedsCount as getEntriesAndSeedsCount, index$9_getEvent as getEvent, index$9_getEventData as getEventData, index$9_getEventMatchUpFormatTiming as getEventMatchUpFormatTiming, index$9_getEventProperties as getEventProperties, index$9_getEventPublishStatus as getEventPublishStatus, index$9_getEventStructures as getEventStructures, index$9_getEventTimeItem as getEventTimeItem, index$9_getEvents as getEvents, index$9_getFlightProfile as getFlightProfile, index$9_getHomeParticipantId as getHomeParticipantId, index$9_getLinkedTournamentIds as getLinkedTournamentIds, index$9_getMatchUpCompetitiveProfile as getMatchUpCompetitiveProfile, index$9_getMatchUpContextIds as getMatchUpContextIds, index$9_getMatchUpDailyLimits as getMatchUpDailyLimits, index$9_getMatchUpDailyLimitsUpdate as getMatchUpDailyLimitsUpdate, index$9_getMatchUpDependencies as getMatchUpDependencies, index$9_getMatchUpFormat as getMatchUpFormat, index$9_getMatchUpFormatTiming as getMatchUpFormatTiming, index$9_getMatchUpFormatTimingUpdate as getMatchUpFormatTimingUpdate, index$9_getMatchUpScheduleDetails as getMatchUpScheduleDetails, index$9_getMatchUpType as getMatchUpType, index$9_getMatchUpsMap as getMatchUpsMap, index$9_getMatchUpsStats as getMatchUpsStats, index$9_getMatchUpsToSchedule as getMatchUpsToSchedule, index$9_getMaxEntryPosition as getMaxEntryPosition, index$9_getModifiedMatchUpFormatTiming as getModifiedMatchUpFormatTiming, index$9_getPairedParticipant as getPairedParticipant, index$9_getParticipantEventDetails as getParticipantEventDetails, index$9_getParticipantIdFinishingPositions as getParticipantIdFinishingPositions, index$9_getParticipantMembership as getParticipantMembership, index$9_getParticipantResults as getParticipantResults, index$9_getParticipantScaleItem as getParticipantScaleItem, index$9_getParticipantSchedules as getParticipantSchedules, index$9_getParticipantSignInStatus as getParticipantSignInStatus, index$9_getParticipantTimeItem as getParticipantTimeItem, index$9_getParticipants as getParticipants, index$9_getPersonRequests as getPersonRequests, index$9_getPolicyDefinitions as getPolicyDefinitions, index$9_getPositionAssignments as getPositionAssignments, index$9_getPositionsPlayedOff as getPositionsPlayedOff, index$9_getPredictiveAccuracy as getPredictiveAccuracy, index$9_getProfileRounds as getProfileRounds, index$9_getPublishState as getPublishState, index$9_getRandomQualifierList as getRandomQualifierList, index$9_getRoundMatchUps as getRoundMatchUps, index$9_getRounds as getRounds, index$9_getScaleValues as getScaleValues, index$9_getScaledEntries as getScaledEntries, index$9_getScheduledRoundsDetails as getScheduledRoundsDetails, index$9_getSchedulingProfile as getSchedulingProfile, index$9_getSchedulingProfileIssues as getSchedulingProfileIssues, index$9_getSeedingThresholds as getSeedingThresholds, index$9_getSeedsCount as getSeedsCount, index$9_getStructureSeedAssignments as getStructureSeedAssignments, index$9_getTeamLineUp as getTeamLineUp, index$9_getTieFormat as getTieFormat, index$9_getTimeItem as getTimeItem, index$9_getTournamentIds as getTournamentIds, index$9_getTournamentInfo as getTournamentInfo, index$9_getTournamentPenalties as getTournamentPenalties, index$9_getTournamentPersons as getTournamentPersons, index$9_getTournamentPoints as getTournamentPoints, index$9_getTournamentPublishStatus as getTournamentPublishStatus, index$9_getTournamentStructures as getTournamentStructures, index$9_getTournamentTimeItem as getTournamentTimeItem, index$9_getValidGroupSizes as getValidGroupSizes, index$9_getVenueData as getVenueData, index$9_getVenuesAndCourts as getVenuesAndCourts, index$9_isAdHoc as isAdHoc, index$9_isCompletedStructure as isCompletedStructure, index$9_isValidForQualifying as isValidForQualifying, index$9_isValidMatchUpFormat as isValidMatchUpFormat, index$9_matchUpActions as matchUpActions, index$9_participantScaleItem as participantScaleItem, index$9_participantScheduledMatchUps as participantScheduledMatchUps, index$9_positionActions as positionActions, index$9_publicFindCourt as publicFindCourt, index$9_publicFindVenue as publicFindVenue, index$9_tallyParticipantResults as tallyParticipantResults, index$9_tieFormatGenderValidityCheck as tieFormatGenderValidityCheck, index$9_tournamentMatchUps as tournamentMatchUps, index$9_validMatchUp as validMatchUp, index$9_validMatchUps as validMatchUps, index$9_validateCollectionDefinition as validateCollectionDefinition, index$9_validateLineUp as validateLineUp };
|
|
8006
8015
|
}
|
|
8007
8016
|
|
|
8008
8017
|
type StatCounters = {
|