tods-competition-factory 2.0.54 → 2.0.55

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.
@@ -4113,7 +4113,7 @@ type AddEventEntryPairsArgs = {
4113
4113
  uuids?: string[];
4114
4114
  event: Event$1;
4115
4115
  };
4116
- declare function addEventEntryPairs({ allowDuplicateParticipantIdPairs, entryStage, entryStatus, participantIdPairs, tournamentRecord, drawDefinition, event, uuids, }: AddEventEntryPairsArgs): any;
4116
+ declare function addEventEntryPairs(params: AddEventEntryPairsArgs): any;
4117
4117
 
4118
4118
  type RemoveEventEntriesArgs = {
4119
4119
  tournamentParticipants?: HydratedParticipant[];
@@ -9636,6 +9636,8 @@ declare const hasAttributeValues: (a: any) => (o: any) => boolean;
9636
9636
  declare function undefinedToNull(obj: object, shallow?: boolean): any;
9637
9637
  declare function generateHashCode(o: any): string | undefined;
9638
9638
 
9639
+ declare function matchUpScheduleSort(a: any, b: any): number;
9640
+
9639
9641
  declare function structureSort(a: Structure | undefined, b: Structure | undefined, config?: any): number;
9640
9642
 
9641
9643
  declare function matchUpSort(a: HydratedMatchUp, b: HydratedMatchUp): number;
@@ -9767,6 +9769,7 @@ declare const index$1_isNumeric: typeof isNumeric;
9767
9769
  declare const index$1_isOdd: typeof isOdd;
9768
9770
  declare const index$1_isPowerOf2: typeof isPowerOf2;
9769
9771
  declare const index$1_makeDeepCopy: typeof makeDeepCopy;
9772
+ declare const index$1_matchUpScheduleSort: typeof matchUpScheduleSort;
9770
9773
  declare const index$1_matchUpSort: typeof matchUpSort;
9771
9774
  declare const index$1_nearestPowerOf2: typeof nearestPowerOf2;
9772
9775
  declare const index$1_nextPowerOf2: typeof nextPowerOf2;
@@ -9784,7 +9787,7 @@ declare const index$1_undefinedToNull: typeof undefinedToNull;
9784
9787
  declare const index$1_unique: typeof unique;
9785
9788
  declare const index$1_visualizeScheduledMatchUps: typeof visualizeScheduledMatchUps;
9786
9789
  declare namespace index$1 {
9787
- export { index$1_JSON2CSV as JSON2CSV, index$1_UUID as UUID, index$1_UUIDS as UUIDS, index$1_allNumeric as allNumeric, index$1_attributeFilter as attributeFilter, index$1_chunkArray as chunkArray, index$1_chunkByNth as chunkByNth, index$1_chunkSizeProfile as chunkSizeProfile, index$1_constantToString as constantToString, index$1_countValues as countValues, index$1_createMap as createMap, index$1_dateTime as dateTime, index$1_definedAttributes as definedAttributes, index$1_dehydrateMatchUps as dehydrateMatchUps, index$1_extractAttributes as extractAttributes, index$1_flattenJSON as flattenJSON, index$1_generateDateRange as generateDateRange, index$1_generateHashCode as generateHashCode, index$1_generateRange as generateRange, index$1_generateTimeCode as generateTimeCode, index$1_groupValues as groupValues, index$1_hasAttributeValues as hasAttributeValues, index$1_instanceCount as instanceCount, index$1_intersection as intersection, index$1_isConvertableInteger as isConvertableInteger, index$1_isNumeric as isNumeric, index$1_isOdd as isOdd, index$1_isPowerOf2 as isPowerOf2, index$1_makeDeepCopy as makeDeepCopy, index$1_matchUpSort as matchUpSort, index$1_nearestPowerOf2 as nearestPowerOf2, index$1_nextPowerOf2 as nextPowerOf2, index$1_noNulls as noNulls, index$1_noNumeric as noNumeric, index$1_numericSort as numericSort, index$1_occurrences as occurrences, index$1_overlap as overlap, index$1_randomMember as randomMember, index$1_randomPop as randomPop, index$1_shuffleArray as shuffleArray, index$1_structureSort as structureSort, index$1_subSort as subSort, index$1_undefinedToNull as undefinedToNull, index$1_unique as unique, index$1_visualizeScheduledMatchUps as visualizeScheduledMatchUps };
9790
+ export { index$1_JSON2CSV as JSON2CSV, index$1_UUID as UUID, index$1_UUIDS as UUIDS, index$1_allNumeric as allNumeric, index$1_attributeFilter as attributeFilter, index$1_chunkArray as chunkArray, index$1_chunkByNth as chunkByNth, index$1_chunkSizeProfile as chunkSizeProfile, index$1_constantToString as constantToString, index$1_countValues as countValues, index$1_createMap as createMap, index$1_dateTime as dateTime, index$1_definedAttributes as definedAttributes, index$1_dehydrateMatchUps as dehydrateMatchUps, index$1_extractAttributes as extractAttributes, index$1_flattenJSON as flattenJSON, index$1_generateDateRange as generateDateRange, index$1_generateHashCode as generateHashCode, index$1_generateRange as generateRange, index$1_generateTimeCode as generateTimeCode, index$1_groupValues as groupValues, index$1_hasAttributeValues as hasAttributeValues, index$1_instanceCount as instanceCount, index$1_intersection as intersection, index$1_isConvertableInteger as isConvertableInteger, index$1_isNumeric as isNumeric, index$1_isOdd as isOdd, index$1_isPowerOf2 as isPowerOf2, index$1_makeDeepCopy as makeDeepCopy, index$1_matchUpScheduleSort as matchUpScheduleSort, index$1_matchUpSort as matchUpSort, index$1_nearestPowerOf2 as nearestPowerOf2, index$1_nextPowerOf2 as nextPowerOf2, index$1_noNulls as noNulls, index$1_noNumeric as noNumeric, index$1_numericSort as numericSort, index$1_occurrences as occurrences, index$1_overlap as overlap, index$1_randomMember as randomMember, index$1_randomPop as randomPop, index$1_shuffleArray as shuffleArray, index$1_structureSort as structureSort, index$1_subSort as subSort, index$1_undefinedToNull as undefinedToNull, index$1_unique as unique, index$1_visualizeScheduledMatchUps as visualizeScheduledMatchUps };
9788
9791
  }
9789
9792
 
9790
9793
  type Notice = {
@@ -10895,6 +10898,11 @@ declare const drawDefinitionConstants: {
10895
10898
  FINISHING_POSITIONS: string;
10896
10899
  };
10897
10900
 
10901
+ declare const displayConstants: {
10902
+ PUBLIC_DISPLAY: string;
10903
+ ADMIN_DISPLAY: string;
10904
+ };
10905
+
10898
10906
  declare const entryStatusConstants: any;
10899
10907
 
10900
10908
  declare const extensionConstants: {
@@ -11233,6 +11241,7 @@ declare const index_activeMatchUpStatuses: typeof activeMatchUpStatuses;
11233
11241
  declare const index_auditConstants: typeof auditConstants;
11234
11242
  declare const index_completedMatchUpStatuses: typeof completedMatchUpStatuses;
11235
11243
  declare const index_directingMatchUpStatuses: typeof directingMatchUpStatuses;
11244
+ declare const index_displayConstants: typeof displayConstants;
11236
11245
  declare const index_drawDefinitionConstants: typeof drawDefinitionConstants;
11237
11246
  declare const index_entryStatusConstants: typeof entryStatusConstants;
11238
11247
  declare const index_errorConditionConstants: typeof errorConditionConstants;
@@ -11269,7 +11278,7 @@ declare const index_upcomingMatchUpStatuses: typeof upcomingMatchUpStatuses;
11269
11278
  declare const index_validMatchUpStatuses: typeof validMatchUpStatuses;
11270
11279
  declare const index_venueConstants: typeof venueConstants;
11271
11280
  declare namespace index {
11272
- export { index_activeMatchUpStatuses as activeMatchUpStatuses, index_auditConstants as auditConstants, index_completedMatchUpStatuses as completedMatchUpStatuses, index_directingMatchUpStatuses as directingMatchUpStatuses, index_drawDefinitionConstants as drawDefinitionConstants, index_entryStatusConstants as entryStatusConstants, index_errorConditionConstants as errorConditionConstants, index_eventConstants as eventConstants, index_extensionConstants as extensionConstants, index_flightConstants as flightConstants, index_genderConstants as genderConstants, index_keyValueConstants as keyValueConstants, index_matchUpActionConstants as matchUpActionConstants, index_matchUpStatusConstants as matchUpStatusConstants, index_matchUpTypes as matchUpTypes, index_nonDirectingMatchUpStatuses as nonDirectingMatchUpStatuses, index_particicipantsRequiredMatchUpStatuses as particicipantsRequiredMatchUpStatuses, index_participantConstants as participantConstants, index_participantRoles as participantRoles, index_participantTypes as participantTypes, index_penaltyConstants as penaltyConstants, index_policyConstants as policyConstants, index_positionActionConstants as positionActionConstants, index_ratingConstants as ratingConstants, index_recoveryTimeRequiredMatchUpStatuses as recoveryTimeRequiredMatchUpStatuses, index_requestConstants as requestConstants, index_resourceContants as resourceContants, index_resultConstants as resultConstants, index_scaleConstants as scaleConstants, index_scheduleConstants as scheduleConstants, index_sortingConstants as sortingConstants, index_surfaceConstants as surfaceConstants, index_tieFormatConstants as tieFormatConstants, index_timeItemConstants as timeItemConstants, index_topicConstants as topicConstants, index_tournamentConstants as tournamentConstants, index_upcomingMatchUpStatuses as upcomingMatchUpStatuses, index_validMatchUpStatuses as validMatchUpStatuses, index_venueConstants as venueConstants };
11281
+ export { index_activeMatchUpStatuses as activeMatchUpStatuses, index_auditConstants as auditConstants, index_completedMatchUpStatuses as completedMatchUpStatuses, index_directingMatchUpStatuses as directingMatchUpStatuses, index_displayConstants as displayConstants, index_drawDefinitionConstants as drawDefinitionConstants, index_entryStatusConstants as entryStatusConstants, index_errorConditionConstants as errorConditionConstants, index_eventConstants as eventConstants, index_extensionConstants as extensionConstants, index_flightConstants as flightConstants, index_genderConstants as genderConstants, index_keyValueConstants as keyValueConstants, index_matchUpActionConstants as matchUpActionConstants, index_matchUpStatusConstants as matchUpStatusConstants, index_matchUpTypes as matchUpTypes, index_nonDirectingMatchUpStatuses as nonDirectingMatchUpStatuses, index_particicipantsRequiredMatchUpStatuses as particicipantsRequiredMatchUpStatuses, index_participantConstants as participantConstants, index_participantRoles as participantRoles, index_participantTypes as participantTypes, index_penaltyConstants as penaltyConstants, index_policyConstants as policyConstants, index_positionActionConstants as positionActionConstants, index_ratingConstants as ratingConstants, index_recoveryTimeRequiredMatchUpStatuses as recoveryTimeRequiredMatchUpStatuses, index_requestConstants as requestConstants, index_resourceContants as resourceContants, index_resultConstants as resultConstants, index_scaleConstants as scaleConstants, index_scheduleConstants as scheduleConstants, index_sortingConstants as sortingConstants, index_surfaceConstants as surfaceConstants, index_tieFormatConstants as tieFormatConstants, index_timeItemConstants as timeItemConstants, index_topicConstants as topicConstants, index_tournamentConstants as tournamentConstants, index_upcomingMatchUpStatuses as upcomingMatchUpStatuses, index_validMatchUpStatuses as validMatchUpStatuses, index_venueConstants as venueConstants };
11273
11282
  }
11274
11283
 
11275
- export { activeMatchUpStatuses, askEngine, asyncEngine, auditConstants, competitionEngine, index$k as competitionGovernor, completedMatchUpStatuses, directingMatchUpStatuses, drawDefinitionConstants, index$j as drawsGovernor, index$i as entriesGovernor, entryStatusConstants, errorConditionConstants, eventConstants, index$h as eventGovernor, extensionConstants, index as factoryConstants, fixtures, flightConstants, forge, genderConstants, index$g as generationGovernor, globalState, index$2 as governors, keyValueConstants, matchUpActionConstants, matchUpEngine, index$f as matchUpFormatCode, index$f as matchUpFormatGovernor, index$e as matchUpGovernor, matchUpStatusConstants, matchUpTypes, mocksEngine, index$d as mocksGovernor, nonDirectingMatchUpStatuses, particicipantsRequiredMatchUpStatuses, participantConstants, index$c as participantGovernor, participantRoles, participantTypes, penaltyConstants, policyConstants, index$b as policyGovernor, positionActionConstants, index$a as publishingGovernor, index$9 as queryGovernor, ratingConstants, recoveryTimeRequiredMatchUpStatuses, index$8 as reportGovernor, requestConstants, resourceContants, resultConstants, scaleConstants, scaleEngine, scheduleConstants, index$7 as scheduleGovernor, index$6 as scoreGovernor, sortingConstants, surfaceConstants, syncEngine, tieFormatConstants, index$5 as tieFormatGovernor, timeItemConstants, index$1 as tools, topicConstants, tournamentConstants, tournamentEngine, index$4 as tournamentGovernor, upcomingMatchUpStatuses, index$1 as utilities, validMatchUpStatuses, venueConstants, index$3 as venueGovernor, factoryVersion as version };
11284
+ export { activeMatchUpStatuses, askEngine, asyncEngine, auditConstants, competitionEngine, index$k as competitionGovernor, completedMatchUpStatuses, directingMatchUpStatuses, displayConstants, drawDefinitionConstants, index$j as drawsGovernor, index$i as entriesGovernor, entryStatusConstants, errorConditionConstants, eventConstants, index$h as eventGovernor, extensionConstants, index as factoryConstants, fixtures, flightConstants, forge, genderConstants, index$g as generationGovernor, globalState, index$2 as governors, keyValueConstants, matchUpActionConstants, matchUpEngine, index$f as matchUpFormatCode, index$f as matchUpFormatGovernor, index$e as matchUpGovernor, matchUpStatusConstants, matchUpTypes, mocksEngine, index$d as mocksGovernor, nonDirectingMatchUpStatuses, particicipantsRequiredMatchUpStatuses, participantConstants, index$c as participantGovernor, participantRoles, participantTypes, penaltyConstants, policyConstants, index$b as policyGovernor, positionActionConstants, index$a as publishingGovernor, index$9 as queryGovernor, ratingConstants, recoveryTimeRequiredMatchUpStatuses, index$8 as reportGovernor, requestConstants, resourceContants, resultConstants, scaleConstants, scaleEngine, scheduleConstants, index$7 as scheduleGovernor, index$6 as scoreGovernor, sortingConstants, surfaceConstants, syncEngine, tieFormatConstants, index$5 as tieFormatGovernor, timeItemConstants, index$1 as tools, topicConstants, tournamentConstants, tournamentEngine, index$4 as tournamentGovernor, upcomingMatchUpStatuses, index$1 as utilities, validMatchUpStatuses, venueConstants, index$3 as venueGovernor, factoryVersion as version };