tods-competition-factory 2.0.32 → 2.0.34
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 +83 -67
- package/dist/tods-competition-factory.development.cjs.js +449 -261
- 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 +7 -7
|
@@ -994,6 +994,7 @@ interface Participant {
|
|
|
994
994
|
contacts?: Contact[];
|
|
995
995
|
createdAt?: Date | string;
|
|
996
996
|
extensions?: Extension[];
|
|
997
|
+
homeVenueIds?: string[];
|
|
997
998
|
individualParticipantIds?: string[];
|
|
998
999
|
isMock?: boolean;
|
|
999
1000
|
notes?: string;
|
|
@@ -6085,15 +6086,23 @@ declare namespace index$e {
|
|
|
6085
6086
|
declare function generateOutcomeFromScoreString(params: any): any;
|
|
6086
6087
|
|
|
6087
6088
|
type GenerateTournamentRecordArgs = {
|
|
6089
|
+
participantsProfile?: ParticipantsProfile;
|
|
6088
6090
|
scheduleCompletedMatchUps?: boolean;
|
|
6089
6091
|
tournamentExtensions?: Extension[];
|
|
6092
|
+
policyDefinitions: PolicyDefinitions;
|
|
6090
6093
|
completeAllMatchUps?: boolean;
|
|
6094
|
+
tournamentAttributes?: any;
|
|
6095
|
+
ratingsParameters?: any;
|
|
6091
6096
|
tournamentName?: string;
|
|
6097
|
+
schedulingProfile?: any;
|
|
6092
6098
|
autoSchedule?: boolean;
|
|
6099
|
+
leagueProfiles?: any[];
|
|
6100
|
+
eventProfiles?: any[];
|
|
6101
|
+
venueProfiles?: any[];
|
|
6102
|
+
drawProfiles?: any[];
|
|
6093
6103
|
startDate?: string;
|
|
6094
6104
|
endDate?: string;
|
|
6095
6105
|
uuids?: string[];
|
|
6096
|
-
[key: string]: any;
|
|
6097
6106
|
};
|
|
6098
6107
|
declare function generateTournamentRecord(params: GenerateTournamentRecordArgs): any;
|
|
6099
6108
|
|
|
@@ -7327,8 +7336,8 @@ declare function validateCollectionDefinition({ checkCategory, collectionDefinit
|
|
|
7327
7336
|
|
|
7328
7337
|
type CompareTieFormatsArgs = {
|
|
7329
7338
|
considerations?: any;
|
|
7330
|
-
descendant: TieFormat;
|
|
7331
7339
|
ancestor: TieFormat;
|
|
7340
|
+
descendant: any;
|
|
7332
7341
|
};
|
|
7333
7342
|
declare function compareTieFormats({ considerations, descendant, ancestor }: CompareTieFormatsArgs): {
|
|
7334
7343
|
different: any;
|
|
@@ -7814,6 +7823,10 @@ declare namespace index$8 {
|
|
|
7814
7823
|
export { index$8_getEntryStatusReports as getEntryStatusReports, index$8_getParticipantStats as getParticipantStats, index$8_getStructureReports as getStructureReports, index$8_getVenuesReport as getVenuesReport };
|
|
7815
7824
|
}
|
|
7816
7825
|
|
|
7826
|
+
declare function setMatchUpHomeParticipantId(params: AddScheduleAttributeArgs & {
|
|
7827
|
+
homeParticipantId?: string;
|
|
7828
|
+
}): ResultType;
|
|
7829
|
+
|
|
7817
7830
|
type CalculateScheduleTimesArgs = {
|
|
7818
7831
|
tournamentRecords: {
|
|
7819
7832
|
[key: string]: Tournament;
|
|
@@ -7838,6 +7851,10 @@ declare function calculateScheduleTimes({ calculateStartTimeFromCourts, defaultR
|
|
|
7838
7851
|
venueId?: string;
|
|
7839
7852
|
};
|
|
7840
7853
|
|
|
7854
|
+
declare function addMatchUpScheduledDate({ scheduledDate: dateToSchedule, removePriorValues, tournamentRecord, drawDefinition, disableNotice, matchUpId, }: AddScheduleAttributeArgs & {
|
|
7855
|
+
scheduledDate?: string;
|
|
7856
|
+
}): ResultType;
|
|
7857
|
+
|
|
7841
7858
|
type BulkScheduleMachUpsArgs = {
|
|
7842
7859
|
tournamentRecords?: {
|
|
7843
7860
|
[key: string]: Tournament;
|
|
@@ -7859,29 +7876,6 @@ declare function bulkScheduleTournamentMatchUps({ scheduleCompletedMatchUps, sch
|
|
|
7859
7876
|
warnings?: any[];
|
|
7860
7877
|
};
|
|
7861
7878
|
|
|
7862
|
-
declare function generateVirtualCourts(params: any): {
|
|
7863
|
-
error: {
|
|
7864
|
-
message: string;
|
|
7865
|
-
code: string;
|
|
7866
|
-
};
|
|
7867
|
-
courts: any;
|
|
7868
|
-
virtualCourts?: undefined;
|
|
7869
|
-
assignedBookings?: undefined;
|
|
7870
|
-
} | {
|
|
7871
|
-
error: {
|
|
7872
|
-
message: string;
|
|
7873
|
-
code: string;
|
|
7874
|
-
};
|
|
7875
|
-
courts?: undefined;
|
|
7876
|
-
virtualCourts?: undefined;
|
|
7877
|
-
assignedBookings?: undefined;
|
|
7878
|
-
} | {
|
|
7879
|
-
virtualCourts: any[];
|
|
7880
|
-
assignedBookings: any[];
|
|
7881
|
-
error?: undefined;
|
|
7882
|
-
courts?: undefined;
|
|
7883
|
-
};
|
|
7884
|
-
|
|
7885
7879
|
declare function removeMatchUpCourtAssignment(params: any): any;
|
|
7886
7880
|
|
|
7887
7881
|
type ProAutoScheduleArgs = {
|
|
@@ -7973,41 +7967,6 @@ declare function scheduleMatchUps(params: any): (ResultType & {
|
|
|
7973
7967
|
success: boolean;
|
|
7974
7968
|
};
|
|
7975
7969
|
|
|
7976
|
-
type GenerateBookingsArgs = {
|
|
7977
|
-
tournamentRecords: {
|
|
7978
|
-
[key: string]: Tournament;
|
|
7979
|
-
};
|
|
7980
|
-
dateScheduledMatchUps?: HydratedMatchUp[];
|
|
7981
|
-
defaultRecoveryMinutes?: number;
|
|
7982
|
-
averageMatchUpMinutes?: number;
|
|
7983
|
-
matchUps?: HydratedMatchUp[];
|
|
7984
|
-
periodLength?: number;
|
|
7985
|
-
scheduleDate?: string;
|
|
7986
|
-
venueIds?: string[];
|
|
7987
|
-
};
|
|
7988
|
-
declare function generateBookings({ defaultRecoveryMinutes, averageMatchUpMinutes, dateScheduledMatchUps, tournamentRecords, venueIds, periodLength, scheduleDate, matchUps, }: GenerateBookingsArgs): {
|
|
7989
|
-
error: {
|
|
7990
|
-
message: string;
|
|
7991
|
-
code: string;
|
|
7992
|
-
};
|
|
7993
|
-
bookings?: undefined;
|
|
7994
|
-
relevantMatchUps?: undefined;
|
|
7995
|
-
dateScheduledMatchUps?: undefined;
|
|
7996
|
-
} | {
|
|
7997
|
-
bookings: {
|
|
7998
|
-
recoveryMinutes: number | undefined;
|
|
7999
|
-
averageMinutes: number | undefined;
|
|
8000
|
-
periodLength: number | undefined;
|
|
8001
|
-
startTime: any;
|
|
8002
|
-
courtId: any;
|
|
8003
|
-
endTime: any;
|
|
8004
|
-
venueId: any;
|
|
8005
|
-
}[] | undefined;
|
|
8006
|
-
relevantMatchUps: HydratedMatchUp[] | undefined;
|
|
8007
|
-
dateScheduledMatchUps: HydratedMatchUp[] | undefined;
|
|
8008
|
-
error?: undefined;
|
|
8009
|
-
};
|
|
8010
|
-
|
|
8011
7970
|
declare function addSchedulingProfileRound({ tournamentRecords, scheduleDate, venueId, round }: {
|
|
8012
7971
|
tournamentRecords: any;
|
|
8013
7972
|
scheduleDate: any;
|
|
@@ -8037,6 +7996,29 @@ declare function reorderUpcomingMatchUps(params: any): {
|
|
|
8037
7996
|
success: boolean;
|
|
8038
7997
|
} | ResultType;
|
|
8039
7998
|
|
|
7999
|
+
declare function generateVirtualCourts(params: any): {
|
|
8000
|
+
error: {
|
|
8001
|
+
message: string;
|
|
8002
|
+
code: string;
|
|
8003
|
+
};
|
|
8004
|
+
courts: any;
|
|
8005
|
+
virtualCourts?: undefined;
|
|
8006
|
+
assignedBookings?: undefined;
|
|
8007
|
+
} | {
|
|
8008
|
+
error: {
|
|
8009
|
+
message: string;
|
|
8010
|
+
code: string;
|
|
8011
|
+
};
|
|
8012
|
+
courts?: undefined;
|
|
8013
|
+
virtualCourts?: undefined;
|
|
8014
|
+
assignedBookings?: undefined;
|
|
8015
|
+
} | {
|
|
8016
|
+
virtualCourts: any[];
|
|
8017
|
+
assignedBookings: any[];
|
|
8018
|
+
error?: undefined;
|
|
8019
|
+
courts?: undefined;
|
|
8020
|
+
};
|
|
8021
|
+
|
|
8040
8022
|
type BulkRescheduleMatchUpsArgs = {
|
|
8041
8023
|
tournamentRecords: TournamentRecords;
|
|
8042
8024
|
tournamentRecord: Tournament;
|
|
@@ -8217,6 +8199,41 @@ type AssignMatchUpVenueArgs = {
|
|
|
8217
8199
|
};
|
|
8218
8200
|
declare function assignMatchUpVenue({ removePriorValues, tournamentRecords, tournamentRecord, drawDefinition, disableNotice, matchUpId, venueId, }: AssignMatchUpVenueArgs): any;
|
|
8219
8201
|
|
|
8202
|
+
type GenerateBookingsArgs = {
|
|
8203
|
+
tournamentRecords: {
|
|
8204
|
+
[key: string]: Tournament;
|
|
8205
|
+
};
|
|
8206
|
+
dateScheduledMatchUps?: HydratedMatchUp[];
|
|
8207
|
+
defaultRecoveryMinutes?: number;
|
|
8208
|
+
averageMatchUpMinutes?: number;
|
|
8209
|
+
matchUps?: HydratedMatchUp[];
|
|
8210
|
+
periodLength?: number;
|
|
8211
|
+
scheduleDate?: string;
|
|
8212
|
+
venueIds?: string[];
|
|
8213
|
+
};
|
|
8214
|
+
declare function generateBookings({ defaultRecoveryMinutes, averageMatchUpMinutes, dateScheduledMatchUps, tournamentRecords, venueIds, periodLength, scheduleDate, matchUps, }: GenerateBookingsArgs): {
|
|
8215
|
+
error: {
|
|
8216
|
+
message: string;
|
|
8217
|
+
code: string;
|
|
8218
|
+
};
|
|
8219
|
+
bookings?: undefined;
|
|
8220
|
+
relevantMatchUps?: undefined;
|
|
8221
|
+
dateScheduledMatchUps?: undefined;
|
|
8222
|
+
} | {
|
|
8223
|
+
bookings: {
|
|
8224
|
+
recoveryMinutes: number | undefined;
|
|
8225
|
+
averageMinutes: number | undefined;
|
|
8226
|
+
periodLength: number | undefined;
|
|
8227
|
+
startTime: any;
|
|
8228
|
+
courtId: any;
|
|
8229
|
+
endTime: any;
|
|
8230
|
+
venueId: any;
|
|
8231
|
+
}[] | undefined;
|
|
8232
|
+
relevantMatchUps: HydratedMatchUp[] | undefined;
|
|
8233
|
+
dateScheduledMatchUps: HydratedMatchUp[] | undefined;
|
|
8234
|
+
error?: undefined;
|
|
8235
|
+
};
|
|
8236
|
+
|
|
8220
8237
|
declare function validateSchedulingProfile({ tournamentRecords, schedulingProfile }: {
|
|
8221
8238
|
tournamentRecords: any;
|
|
8222
8239
|
schedulingProfile: any;
|
|
@@ -8284,15 +8301,12 @@ type AddMatchUpScheduleItemsArgs = {
|
|
|
8284
8301
|
schedule: any;
|
|
8285
8302
|
event?: Event$1;
|
|
8286
8303
|
};
|
|
8287
|
-
declare function addMatchUpScheduleItems(
|
|
8304
|
+
declare function addMatchUpScheduleItems(params: AddMatchUpScheduleItemsArgs): {
|
|
8288
8305
|
error?: ErrorType;
|
|
8289
8306
|
success?: boolean;
|
|
8290
8307
|
warnings?: any[];
|
|
8291
8308
|
info?: any;
|
|
8292
8309
|
};
|
|
8293
|
-
declare function addMatchUpScheduledDate({ scheduledDate: dateToSchedule, removePriorValues, tournamentRecord, drawDefinition, disableNotice, matchUpId, }: AddScheduleAttributeArgs & {
|
|
8294
|
-
scheduledDate?: string;
|
|
8295
|
-
}): ResultType;
|
|
8296
8310
|
declare function addMatchUpCourtOrder({ removePriorValues, tournamentRecord, drawDefinition, disableNotice, courtOrder, matchUpId, }: AddScheduleAttributeArgs & {
|
|
8297
8311
|
courtOrder?: number;
|
|
8298
8312
|
}): any;
|
|
@@ -8350,11 +8364,12 @@ declare const mutate$4_reorderUpcomingMatchUps: typeof reorderUpcomingMatchUps;
|
|
|
8350
8364
|
declare const mutate$4_scheduleMatchUps: typeof scheduleMatchUps;
|
|
8351
8365
|
declare const mutate$4_scheduleProfileRounds: typeof scheduleProfileRounds;
|
|
8352
8366
|
declare const mutate$4_setMatchUpDailyLimits: typeof setMatchUpDailyLimits;
|
|
8367
|
+
declare const mutate$4_setMatchUpHomeParticipantId: typeof setMatchUpHomeParticipantId;
|
|
8353
8368
|
declare const mutate$4_setSchedulingProfile: typeof setSchedulingProfile;
|
|
8354
8369
|
declare const mutate$4_toggleParticipantCheckInState: typeof toggleParticipantCheckInState;
|
|
8355
8370
|
declare const mutate$4_validateSchedulingProfile: typeof validateSchedulingProfile;
|
|
8356
8371
|
declare namespace mutate$4 {
|
|
8357
|
-
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 };
|
|
8372
|
+
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_setMatchUpHomeParticipantId as setMatchUpHomeParticipantId, mutate$4_setSchedulingProfile as setSchedulingProfile, mutate$4_toggleParticipantCheckInState as toggleParticipantCheckInState, mutate$4_validateSchedulingProfile as validateSchedulingProfile };
|
|
8358
8373
|
}
|
|
8359
8374
|
|
|
8360
8375
|
declare const index$7_addMatchUpCourtOrder: typeof addMatchUpCourtOrder;
|
|
@@ -8398,11 +8413,12 @@ declare const index$7_reorderUpcomingMatchUps: typeof reorderUpcomingMatchUps;
|
|
|
8398
8413
|
declare const index$7_scheduleMatchUps: typeof scheduleMatchUps;
|
|
8399
8414
|
declare const index$7_scheduleProfileRounds: typeof scheduleProfileRounds;
|
|
8400
8415
|
declare const index$7_setMatchUpDailyLimits: typeof setMatchUpDailyLimits;
|
|
8416
|
+
declare const index$7_setMatchUpHomeParticipantId: typeof setMatchUpHomeParticipantId;
|
|
8401
8417
|
declare const index$7_setSchedulingProfile: typeof setSchedulingProfile;
|
|
8402
8418
|
declare const index$7_toggleParticipantCheckInState: typeof toggleParticipantCheckInState;
|
|
8403
8419
|
declare const index$7_validateSchedulingProfile: typeof validateSchedulingProfile;
|
|
8404
8420
|
declare namespace index$7 {
|
|
8405
|
-
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 };
|
|
8421
|
+
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_setMatchUpHomeParticipantId as setMatchUpHomeParticipantId, index$7_setSchedulingProfile as setSchedulingProfile, index$7_toggleParticipantCheckInState as toggleParticipantCheckInState, index$7_validateSchedulingProfile as validateSchedulingProfile };
|
|
8406
8422
|
}
|
|
8407
8423
|
|
|
8408
8424
|
type TieMatchUpScore = {
|
|
@@ -10784,7 +10800,6 @@ declare const entryStatusConstants: any;
|
|
|
10784
10800
|
declare const extensionConstants: {
|
|
10785
10801
|
ACTIVE_SUSPENSION: string;
|
|
10786
10802
|
APPLIED_POLICIES: string;
|
|
10787
|
-
AUDIT_POSITION_ACTIONS: string;
|
|
10788
10803
|
CONTEXT: string;
|
|
10789
10804
|
DELEGATED_OUTCOME: string;
|
|
10790
10805
|
DISABLED: string;
|
|
@@ -10802,6 +10817,7 @@ declare const extensionConstants: {
|
|
|
10802
10817
|
MATCHUP_HISTORY: string;
|
|
10803
10818
|
PARTICIPANT_REPRESENTATIVES: string;
|
|
10804
10819
|
PERSON_REQUESTS: string;
|
|
10820
|
+
POSITION_ACTIONS: string;
|
|
10805
10821
|
RANKING_POINTS: string;
|
|
10806
10822
|
ROUND_TARGET: string;
|
|
10807
10823
|
SCHEDULE_LIMITS: string;
|