tods-competition-factory 2.0.59 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +6 -6
- package/dist/tods-competition-factory.d.ts +43 -4
- package/dist/tods-competition-factory.development.cjs.js +277 -113
- 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 -11
|
@@ -1364,6 +1364,10 @@ declare const errorConditionConstants: {
|
|
|
1364
1364
|
message: string;
|
|
1365
1365
|
code: string;
|
|
1366
1366
|
};
|
|
1367
|
+
CATEGORY_MISMATCH: {
|
|
1368
|
+
message: string;
|
|
1369
|
+
code: string;
|
|
1370
|
+
};
|
|
1367
1371
|
COURT_EXISTS: {
|
|
1368
1372
|
message: string;
|
|
1369
1373
|
code: string;
|
|
@@ -1692,6 +1696,10 @@ declare const errorConditionConstants: {
|
|
|
1692
1696
|
message: string;
|
|
1693
1697
|
code: string;
|
|
1694
1698
|
};
|
|
1699
|
+
MISSING_BIRTH_DATE: {
|
|
1700
|
+
message: string;
|
|
1701
|
+
code: string;
|
|
1702
|
+
};
|
|
1695
1703
|
MISSING_COLLECTION_DEFINITION: {
|
|
1696
1704
|
message: string;
|
|
1697
1705
|
code: string;
|
|
@@ -4617,6 +4625,7 @@ type ModifyEventArgs = {
|
|
|
4617
4625
|
gender?: GenderUnion;
|
|
4618
4626
|
startDate?: string;
|
|
4619
4627
|
endDate?: string;
|
|
4628
|
+
category?: Category;
|
|
4620
4629
|
eventName?: string;
|
|
4621
4630
|
};
|
|
4622
4631
|
eventId: string;
|
|
@@ -7049,6 +7058,16 @@ declare function unPublishEventSeeding({ removePriorValues, seedingScaleNames, t
|
|
|
7049
7058
|
error?: undefined;
|
|
7050
7059
|
};
|
|
7051
7060
|
|
|
7061
|
+
declare function unPublishParticipants(params: any): {
|
|
7062
|
+
error: {
|
|
7063
|
+
message: string;
|
|
7064
|
+
code: string;
|
|
7065
|
+
};
|
|
7066
|
+
} | {
|
|
7067
|
+
success: boolean;
|
|
7068
|
+
error?: undefined;
|
|
7069
|
+
};
|
|
7070
|
+
|
|
7052
7071
|
declare function unPublishOrderOfPlay(params: any): {
|
|
7053
7072
|
error: {
|
|
7054
7073
|
message: string;
|
|
@@ -7059,6 +7078,16 @@ declare function unPublishOrderOfPlay(params: any): {
|
|
|
7059
7078
|
error?: undefined;
|
|
7060
7079
|
};
|
|
7061
7080
|
|
|
7081
|
+
declare function publishParticipants(params: any): {
|
|
7082
|
+
error: {
|
|
7083
|
+
message: string;
|
|
7084
|
+
code: string;
|
|
7085
|
+
};
|
|
7086
|
+
} | {
|
|
7087
|
+
success: boolean;
|
|
7088
|
+
error?: undefined;
|
|
7089
|
+
};
|
|
7090
|
+
|
|
7062
7091
|
declare function publishOrderOfPlay(params: any): {
|
|
7063
7092
|
error: {
|
|
7064
7093
|
message: string;
|
|
@@ -7126,14 +7155,18 @@ declare function publishEvent(params: PublishEventType): ResultType & {
|
|
|
7126
7155
|
declare const mutate$5_publishEvent: typeof publishEvent;
|
|
7127
7156
|
declare const mutate$5_publishEventSeeding: typeof publishEventSeeding;
|
|
7128
7157
|
declare const mutate$5_publishOrderOfPlay: typeof publishOrderOfPlay;
|
|
7158
|
+
declare const mutate$5_publishParticipants: typeof publishParticipants;
|
|
7129
7159
|
declare const mutate$5_setEventDisplay: typeof setEventDisplay;
|
|
7130
7160
|
declare const mutate$5_unPublishEvent: typeof unPublishEvent;
|
|
7131
7161
|
declare const mutate$5_unPublishEventSeeding: typeof unPublishEventSeeding;
|
|
7132
7162
|
declare const mutate$5_unPublishOrderOfPlay: typeof unPublishOrderOfPlay;
|
|
7163
|
+
declare const mutate$5_unPublishParticipants: typeof unPublishParticipants;
|
|
7133
7164
|
declare namespace mutate$5 {
|
|
7134
|
-
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 };
|
|
7165
|
+
export { mutate$5_publishEvent as publishEvent, mutate$5_publishEventSeeding as publishEventSeeding, mutate$5_publishOrderOfPlay as publishOrderOfPlay, mutate$5_publishParticipants as publishParticipants, mutate$5_setEventDisplay as setEventDisplay, mutate$5_unPublishEvent as unPublishEvent, mutate$5_unPublishEventSeeding as unPublishEventSeeding, mutate$5_unPublishOrderOfPlay as unPublishOrderOfPlay, mutate$5_unPublishParticipants as unPublishParticipants };
|
|
7135
7166
|
}
|
|
7136
7167
|
|
|
7168
|
+
declare function getTournamentPublishStatus(params: any): any;
|
|
7169
|
+
|
|
7137
7170
|
declare function bulkUpdatePublishedEventIds({ tournamentRecord, outcomes }: {
|
|
7138
7171
|
tournamentRecord: any;
|
|
7139
7172
|
outcomes: any;
|
|
@@ -7252,9 +7285,10 @@ declare const query$5_getDrawData: typeof getDrawData;
|
|
|
7252
7285
|
declare const query$5_getEventData: typeof getEventData;
|
|
7253
7286
|
declare const query$5_getEventPublishStatus: typeof getEventPublishStatus;
|
|
7254
7287
|
declare const query$5_getPublishState: typeof getPublishState;
|
|
7288
|
+
declare const query$5_getTournamentPublishStatus: typeof getTournamentPublishStatus;
|
|
7255
7289
|
declare const query$5_getVenueData: typeof getVenueData;
|
|
7256
7290
|
declare namespace query$5 {
|
|
7257
|
-
export { query$5_bulkUpdatePublishedEventIds as bulkUpdatePublishedEventIds, query$5_getAllEventData as getAllEventData, query$5_getCourtInfo as getCourtInfo, query$5_getDrawData as getDrawData, query$5_getEventData as getEventData, query$5_getEventPublishStatus as getEventPublishStatus, query$5_getPublishState as getPublishState, query$5_getVenueData as getVenueData };
|
|
7291
|
+
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 };
|
|
7258
7292
|
}
|
|
7259
7293
|
|
|
7260
7294
|
declare const index$a_bulkUpdatePublishedEventIds: typeof bulkUpdatePublishedEventIds;
|
|
@@ -7264,16 +7298,19 @@ declare const index$a_getDrawData: typeof getDrawData;
|
|
|
7264
7298
|
declare const index$a_getEventData: typeof getEventData;
|
|
7265
7299
|
declare const index$a_getEventPublishStatus: typeof getEventPublishStatus;
|
|
7266
7300
|
declare const index$a_getPublishState: typeof getPublishState;
|
|
7301
|
+
declare const index$a_getTournamentPublishStatus: typeof getTournamentPublishStatus;
|
|
7267
7302
|
declare const index$a_getVenueData: typeof getVenueData;
|
|
7268
7303
|
declare const index$a_publishEvent: typeof publishEvent;
|
|
7269
7304
|
declare const index$a_publishEventSeeding: typeof publishEventSeeding;
|
|
7270
7305
|
declare const index$a_publishOrderOfPlay: typeof publishOrderOfPlay;
|
|
7306
|
+
declare const index$a_publishParticipants: typeof publishParticipants;
|
|
7271
7307
|
declare const index$a_setEventDisplay: typeof setEventDisplay;
|
|
7272
7308
|
declare const index$a_unPublishEvent: typeof unPublishEvent;
|
|
7273
7309
|
declare const index$a_unPublishEventSeeding: typeof unPublishEventSeeding;
|
|
7274
7310
|
declare const index$a_unPublishOrderOfPlay: typeof unPublishOrderOfPlay;
|
|
7311
|
+
declare const index$a_unPublishParticipants: typeof unPublishParticipants;
|
|
7275
7312
|
declare namespace index$a {
|
|
7276
|
-
export { index$a_bulkUpdatePublishedEventIds as bulkUpdatePublishedEventIds, index$a_getAllEventData as getAllEventData, index$a_getCourtInfo as getCourtInfo, index$a_getDrawData as getDrawData, index$a_getEventData as getEventData, index$a_getEventPublishStatus as getEventPublishStatus, index$a_getPublishState as getPublishState, index$a_getVenueData as getVenueData, mutate$5 as mutate, index$a_publishEvent as publishEvent, index$a_publishEventSeeding as publishEventSeeding, index$a_publishOrderOfPlay as publishOrderOfPlay, query$5 as query, index$a_setEventDisplay as setEventDisplay, index$a_unPublishEvent as unPublishEvent, index$a_unPublishEventSeeding as unPublishEventSeeding, index$a_unPublishOrderOfPlay as unPublishOrderOfPlay };
|
|
7313
|
+
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, index$a_publishParticipants as publishParticipants, query$5 as query, index$a_setEventDisplay as setEventDisplay, index$a_unPublishEvent as unPublishEvent, index$a_unPublishEventSeeding as unPublishEventSeeding, index$a_unPublishOrderOfPlay as unPublishOrderOfPlay, index$a_unPublishParticipants as unPublishParticipants };
|
|
7277
7314
|
}
|
|
7278
7315
|
|
|
7279
7316
|
type FindExtensionType = {
|
|
@@ -7737,6 +7774,7 @@ declare const index$9_getTournamentIds: typeof getTournamentIds;
|
|
|
7737
7774
|
declare const index$9_getTournamentInfo: typeof getTournamentInfo;
|
|
7738
7775
|
declare const index$9_getTournamentPenalties: typeof getTournamentPenalties;
|
|
7739
7776
|
declare const index$9_getTournamentPersons: typeof getTournamentPersons;
|
|
7777
|
+
declare const index$9_getTournamentPublishStatus: typeof getTournamentPublishStatus;
|
|
7740
7778
|
declare const index$9_getTournamentStructures: typeof getTournamentStructures;
|
|
7741
7779
|
declare const index$9_getTournamentTimeItem: typeof getTournamentTimeItem;
|
|
7742
7780
|
declare const index$9_getValidGroupSizes: typeof getValidGroupSizes;
|
|
@@ -7759,7 +7797,7 @@ declare const index$9_validMatchUps: typeof validMatchUps;
|
|
|
7759
7797
|
declare const index$9_validateCollectionDefinition: typeof validateCollectionDefinition;
|
|
7760
7798
|
declare const index$9_validateLineUp: typeof validateLineUp;
|
|
7761
7799
|
declare namespace index$9 {
|
|
7762
|
-
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_filterMatchUps as filterMatchUps, index$9_filterParticipants as filterParticipants, publicFindDrawDefinition as findDrawDefinition, index$9_findExtension as findExtension, 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_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_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_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 };
|
|
7800
|
+
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_filterMatchUps as filterMatchUps, index$9_filterParticipants as filterParticipants, publicFindDrawDefinition as findDrawDefinition, index$9_findExtension as findExtension, 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_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_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_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 };
|
|
7763
7801
|
}
|
|
7764
7802
|
|
|
7765
7803
|
type StatCounters = {
|
|
@@ -11248,6 +11286,7 @@ declare const topicConstants: {
|
|
|
11248
11286
|
PUBLISH_EVENT_SEEDING: string;
|
|
11249
11287
|
PUBLISH_EVENT: string;
|
|
11250
11288
|
PUBLISH_ORDER_OF_PLAY: string;
|
|
11289
|
+
PUBLISH_PARTICIPANTS: string;
|
|
11251
11290
|
UNPUBLISH_EVENT_SEEDING: string;
|
|
11252
11291
|
UNPUBLISH_EVENT: string;
|
|
11253
11292
|
UNPUBLISH_ORDER_OF_PLAY: string;
|