tods-competition-factory 2.0.60 → 2.1.1
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 +152 -104
- package/dist/tods-competition-factory.development.cjs.js +728 -465
- 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 +10 -10
|
@@ -36,6 +36,7 @@ declare const participantConstants: {
|
|
|
36
36
|
};
|
|
37
37
|
|
|
38
38
|
interface Tournament {
|
|
39
|
+
activeDates?: Date[] | string[];
|
|
39
40
|
createdAt?: Date | string;
|
|
40
41
|
endDate?: string;
|
|
41
42
|
events?: Event$1[];
|
|
@@ -69,6 +70,7 @@ interface Tournament {
|
|
|
69
70
|
tournamentStatus?: TournamentStatusUnion;
|
|
70
71
|
updatedAt?: Date | string;
|
|
71
72
|
venues?: Venue[];
|
|
73
|
+
weekdays?: weekdayUnion[];
|
|
72
74
|
}
|
|
73
75
|
type TournamentStatusUnion = 'ABANDONDED' | 'CANCELLED' | 'ACTIVE' | 'COMPLETED';
|
|
74
76
|
interface Organisation {
|
|
@@ -81,6 +83,7 @@ interface Organisation {
|
|
|
81
83
|
notes?: string;
|
|
82
84
|
}
|
|
83
85
|
interface Event$1 {
|
|
86
|
+
activeDates?: Date[] | string[];
|
|
84
87
|
allowedDrawTypes?: DrawTypeUnion[];
|
|
85
88
|
category?: Category;
|
|
86
89
|
createdAt?: Date | string;
|
|
@@ -111,6 +114,7 @@ interface Event$1 {
|
|
|
111
114
|
tieFormats?: TieFormat[];
|
|
112
115
|
timeItems?: TimeItem[];
|
|
113
116
|
updatedAt?: Date | string;
|
|
117
|
+
weekdays?: weekdayUnion[];
|
|
114
118
|
wheelchairClass?: WheelchairClassUnion;
|
|
115
119
|
}
|
|
116
120
|
declare enum DrawTypeEnum {
|
|
@@ -192,6 +196,7 @@ declare enum DisciplineEnum {
|
|
|
192
196
|
}
|
|
193
197
|
type DisciplineUnion = keyof typeof DisciplineEnum;
|
|
194
198
|
interface DrawDefinition {
|
|
199
|
+
activeDates?: Date[] | string[];
|
|
195
200
|
automated?: boolean;
|
|
196
201
|
createdAt?: Date | string;
|
|
197
202
|
drawId: string;
|
|
@@ -1314,6 +1319,16 @@ interface UnifiedVenueID {
|
|
|
1314
1319
|
updatedAt?: Date | string;
|
|
1315
1320
|
venueId: string;
|
|
1316
1321
|
}
|
|
1322
|
+
declare enum WeekdayEnum {
|
|
1323
|
+
MON = "MON",
|
|
1324
|
+
TUE = "TUE",
|
|
1325
|
+
WED = "WED",
|
|
1326
|
+
THU = "THU",
|
|
1327
|
+
FRI = "FRI",
|
|
1328
|
+
SAT = "SAT",
|
|
1329
|
+
SUN = "SUN"
|
|
1330
|
+
}
|
|
1331
|
+
type weekdayUnion = keyof typeof WeekdayEnum;
|
|
1317
1332
|
|
|
1318
1333
|
type HydratedCourt = {
|
|
1319
1334
|
[key: string]: any;
|
|
@@ -1364,6 +1379,10 @@ declare const errorConditionConstants: {
|
|
|
1364
1379
|
message: string;
|
|
1365
1380
|
code: string;
|
|
1366
1381
|
};
|
|
1382
|
+
CATEGORY_MISMATCH: {
|
|
1383
|
+
message: string;
|
|
1384
|
+
code: string;
|
|
1385
|
+
};
|
|
1367
1386
|
COURT_EXISTS: {
|
|
1368
1387
|
message: string;
|
|
1369
1388
|
code: string;
|
|
@@ -1692,6 +1711,10 @@ declare const errorConditionConstants: {
|
|
|
1692
1711
|
message: string;
|
|
1693
1712
|
code: string;
|
|
1694
1713
|
};
|
|
1714
|
+
MISSING_BIRTH_DATE: {
|
|
1715
|
+
message: string;
|
|
1716
|
+
code: string;
|
|
1717
|
+
};
|
|
1695
1718
|
MISSING_COLLECTION_DEFINITION: {
|
|
1696
1719
|
message: string;
|
|
1697
1720
|
code: string;
|
|
@@ -2045,13 +2068,14 @@ declare const POLICY_TYPE_PARTICIPANT = "participant";
|
|
|
2045
2068
|
declare const POLICY_TYPE_PROGRESSION = "progression";
|
|
2046
2069
|
declare const POLICY_TYPE_SCHEDULING = "scheduling";
|
|
2047
2070
|
declare const POLICY_TYPE_AVOIDANCE = "avoidance";
|
|
2071
|
+
declare const POLICY_TYPE_PRIVACY = "participant";
|
|
2048
2072
|
declare const POLICY_TYPE_DISPLAY = "display";
|
|
2049
2073
|
declare const POLICY_TYPE_SCORING = "scoring";
|
|
2050
2074
|
declare const POLICY_TYPE_SEEDING = "seeding";
|
|
2051
2075
|
declare const POLICY_TYPE_FEED_IN = "feedIn";
|
|
2052
2076
|
declare const POLICY_TYPE_AUDIT = "audit";
|
|
2053
2077
|
declare const POLICY_TYPE_DRAWS = "draws";
|
|
2054
|
-
type ValidPolicyTypes = typeof POLICY_TYPE_VOLUNTARY_CONSOLATION | typeof POLICY_TYPE_COMPETITIVE_BANDS | typeof POLICY_TYPE_ROUND_ROBIN_TALLY | typeof POLICY_TYPE_POSITION_ACTIONS | typeof POLICY_TYPE_MATCHUP_ACTIONS | typeof POLICY_TYPE_RANKING_POINTS | typeof POLICY_TYPE_ROUND_NAMING | typeof POLICY_TYPE_PARTICIPANT | typeof POLICY_TYPE_PROGRESSION | typeof POLICY_TYPE_SCHEDULING | typeof POLICY_TYPE_AVOIDANCE | typeof POLICY_TYPE_DISPLAY | typeof POLICY_TYPE_FEED_IN | typeof POLICY_TYPE_SCORING | typeof POLICY_TYPE_SEEDING | typeof POLICY_TYPE_AUDIT | typeof POLICY_TYPE_DRAWS;
|
|
2078
|
+
type ValidPolicyTypes = typeof POLICY_TYPE_VOLUNTARY_CONSOLATION | typeof POLICY_TYPE_COMPETITIVE_BANDS | typeof POLICY_TYPE_ROUND_ROBIN_TALLY | typeof POLICY_TYPE_POSITION_ACTIONS | typeof POLICY_TYPE_MATCHUP_ACTIONS | typeof POLICY_TYPE_RANKING_POINTS | typeof POLICY_TYPE_ROUND_NAMING | typeof POLICY_TYPE_PARTICIPANT | typeof POLICY_TYPE_PROGRESSION | typeof POLICY_TYPE_SCHEDULING | typeof POLICY_TYPE_AVOIDANCE | typeof POLICY_TYPE_DISPLAY | typeof POLICY_TYPE_PRIVACY | typeof POLICY_TYPE_FEED_IN | typeof POLICY_TYPE_SCORING | typeof POLICY_TYPE_SEEDING | typeof POLICY_TYPE_AUDIT | typeof POLICY_TYPE_DRAWS;
|
|
2055
2079
|
declare const policyConstants: {
|
|
2056
2080
|
readonly POLICY_TYPE_VOLUNTARY_CONSOLATION: "voluntaryConsolation";
|
|
2057
2081
|
readonly POLICY_TYPE_COMPETITIVE_BANDS: "competitiveBands";
|
|
@@ -2065,6 +2089,7 @@ declare const policyConstants: {
|
|
|
2065
2089
|
readonly POLICY_TYPE_SCHEDULING: "scheduling";
|
|
2066
2090
|
readonly POLICY_TYPE_AVOIDANCE: "avoidance";
|
|
2067
2091
|
readonly POLICY_TYPE_DISPLAY: "display";
|
|
2092
|
+
readonly POLICY_TYPE_PRIVACY: "participant";
|
|
2068
2093
|
readonly POLICY_TYPE_FEED_IN: "feedIn";
|
|
2069
2094
|
readonly POLICY_TYPE_SCORING: "scoring";
|
|
2070
2095
|
readonly POLICY_TYPE_SEEDING: "seeding";
|
|
@@ -2745,17 +2770,7 @@ declare function setStructureOrder({ drawDefinition, orderMap }: {
|
|
|
2745
2770
|
orderMap: any;
|
|
2746
2771
|
}): ResultType;
|
|
2747
2772
|
|
|
2748
|
-
declare function attachQualifyingStructure(
|
|
2749
|
-
tournamentRecord: any;
|
|
2750
|
-
drawDefinition: any;
|
|
2751
|
-
structure: any;
|
|
2752
|
-
link: any;
|
|
2753
|
-
}): ResultType | {
|
|
2754
|
-
error: {
|
|
2755
|
-
message: string;
|
|
2756
|
-
code: string;
|
|
2757
|
-
};
|
|
2758
|
-
};
|
|
2773
|
+
declare function attachQualifyingStructure(params: any): ResultType;
|
|
2759
2774
|
|
|
2760
2775
|
type RenameStructuresArgs = {
|
|
2761
2776
|
drawDefinition: DrawDefinition;
|
|
@@ -2853,17 +2868,17 @@ type AddQualifyingstructureArgs = {
|
|
|
2853
2868
|
event: Event$1;
|
|
2854
2869
|
};
|
|
2855
2870
|
declare function addQualifyingStructure(params: AddQualifyingstructureArgs): ResultType | {
|
|
2856
|
-
error: {
|
|
2857
|
-
message: string;
|
|
2858
|
-
code: string;
|
|
2859
|
-
};
|
|
2860
|
-
} | {
|
|
2861
2871
|
qualifyingDrawPositionsCount?: number | undefined;
|
|
2862
2872
|
qualifiersCount?: number | undefined;
|
|
2863
2873
|
structure?: Structure | undefined;
|
|
2864
2874
|
error?: ErrorType | undefined;
|
|
2865
2875
|
success?: boolean | undefined;
|
|
2866
2876
|
link?: DrawLink | undefined;
|
|
2877
|
+
} | {
|
|
2878
|
+
error: {
|
|
2879
|
+
message: string;
|
|
2880
|
+
code: string;
|
|
2881
|
+
};
|
|
2867
2882
|
};
|
|
2868
2883
|
|
|
2869
2884
|
type AdHocPositionSwapArgs = {
|
|
@@ -4342,11 +4357,7 @@ declare function setEventStartDate({ tournamentRecord, event, startDate }: {
|
|
|
4342
4357
|
code: string;
|
|
4343
4358
|
};
|
|
4344
4359
|
};
|
|
4345
|
-
declare function setEventEndDate(
|
|
4346
|
-
tournamentRecord: any;
|
|
4347
|
-
event: any;
|
|
4348
|
-
endDate: any;
|
|
4349
|
-
}): (ResultType & {
|
|
4360
|
+
declare function setEventEndDate(params: any): (ResultType & {
|
|
4350
4361
|
tournamentStartDate?: number | undefined;
|
|
4351
4362
|
tournamentEndDate?: number | undefined;
|
|
4352
4363
|
}) | {
|
|
@@ -4355,25 +4366,21 @@ declare function setEventEndDate({ tournamentRecord, event, endDate }: {
|
|
|
4355
4366
|
code: string;
|
|
4356
4367
|
};
|
|
4357
4368
|
};
|
|
4358
|
-
|
|
4359
|
-
tournamentRecord:
|
|
4360
|
-
|
|
4361
|
-
|
|
4362
|
-
|
|
4363
|
-
|
|
4364
|
-
|
|
4365
|
-
|
|
4369
|
+
type SetEventDatesArgs = {
|
|
4370
|
+
tournamentRecord: Tournament;
|
|
4371
|
+
weekdays?: weekdayUnion[];
|
|
4372
|
+
activeDates?: string[];
|
|
4373
|
+
startDate?: string;
|
|
4374
|
+
endDate?: string;
|
|
4375
|
+
event: Event$1;
|
|
4376
|
+
};
|
|
4377
|
+
declare function setEventDates(params: SetEventDatesArgs): (ResultType & {
|
|
4378
|
+
valid?: boolean | undefined;
|
|
4366
4379
|
}) | {
|
|
4367
4380
|
error: {
|
|
4368
4381
|
message: string;
|
|
4369
4382
|
code: string;
|
|
4370
4383
|
};
|
|
4371
|
-
} | {
|
|
4372
|
-
error: {
|
|
4373
|
-
message: string;
|
|
4374
|
-
code: string;
|
|
4375
|
-
};
|
|
4376
|
-
info: string;
|
|
4377
4384
|
};
|
|
4378
4385
|
|
|
4379
4386
|
declare function deleteFlightAndFlightDraw({ autoPublish, tournamentRecord, auditData, drawId, event, force }: {
|
|
@@ -4588,26 +4595,8 @@ declare function removeSeeding({ tournamentRecord, drawDefinition, entryStatuses
|
|
|
4588
4595
|
info?: undefined;
|
|
4589
4596
|
};
|
|
4590
4597
|
|
|
4591
|
-
declare function deleteEvents(
|
|
4592
|
-
|
|
4593
|
-
tournamentRecord: any;
|
|
4594
|
-
eventIds: any;
|
|
4595
|
-
}): {
|
|
4596
|
-
error: {
|
|
4597
|
-
message: string;
|
|
4598
|
-
code: string;
|
|
4599
|
-
};
|
|
4600
|
-
info?: undefined;
|
|
4601
|
-
} | {
|
|
4602
|
-
error: {
|
|
4603
|
-
message: string;
|
|
4604
|
-
code: string;
|
|
4605
|
-
};
|
|
4606
|
-
info: string;
|
|
4607
|
-
} | {
|
|
4608
|
-
success: boolean;
|
|
4609
|
-
error?: undefined;
|
|
4610
|
-
info?: undefined;
|
|
4598
|
+
declare function deleteEvents(params: any): ResultType & {
|
|
4599
|
+
valid?: boolean | undefined;
|
|
4611
4600
|
};
|
|
4612
4601
|
|
|
4613
4602
|
type ModifyEventArgs = {
|
|
@@ -4617,6 +4606,7 @@ type ModifyEventArgs = {
|
|
|
4617
4606
|
gender?: GenderUnion;
|
|
4618
4607
|
startDate?: string;
|
|
4619
4608
|
endDate?: string;
|
|
4609
|
+
category?: Category;
|
|
4620
4610
|
eventName?: string;
|
|
4621
4611
|
};
|
|
4622
4612
|
eventId: string;
|
|
@@ -7049,6 +7039,16 @@ declare function unPublishEventSeeding({ removePriorValues, seedingScaleNames, t
|
|
|
7049
7039
|
error?: undefined;
|
|
7050
7040
|
};
|
|
7051
7041
|
|
|
7042
|
+
declare function unPublishParticipants(params: any): {
|
|
7043
|
+
error: {
|
|
7044
|
+
message: string;
|
|
7045
|
+
code: string;
|
|
7046
|
+
};
|
|
7047
|
+
} | {
|
|
7048
|
+
success: boolean;
|
|
7049
|
+
error?: undefined;
|
|
7050
|
+
};
|
|
7051
|
+
|
|
7052
7052
|
declare function unPublishOrderOfPlay(params: any): {
|
|
7053
7053
|
error: {
|
|
7054
7054
|
message: string;
|
|
@@ -7059,6 +7059,16 @@ declare function unPublishOrderOfPlay(params: any): {
|
|
|
7059
7059
|
error?: undefined;
|
|
7060
7060
|
};
|
|
7061
7061
|
|
|
7062
|
+
declare function publishParticipants(params: any): {
|
|
7063
|
+
error: {
|
|
7064
|
+
message: string;
|
|
7065
|
+
code: string;
|
|
7066
|
+
};
|
|
7067
|
+
} | {
|
|
7068
|
+
success: boolean;
|
|
7069
|
+
error?: undefined;
|
|
7070
|
+
};
|
|
7071
|
+
|
|
7062
7072
|
declare function publishOrderOfPlay(params: any): {
|
|
7063
7073
|
error: {
|
|
7064
7074
|
message: string;
|
|
@@ -7126,14 +7136,18 @@ declare function publishEvent(params: PublishEventType): ResultType & {
|
|
|
7126
7136
|
declare const mutate$5_publishEvent: typeof publishEvent;
|
|
7127
7137
|
declare const mutate$5_publishEventSeeding: typeof publishEventSeeding;
|
|
7128
7138
|
declare const mutate$5_publishOrderOfPlay: typeof publishOrderOfPlay;
|
|
7139
|
+
declare const mutate$5_publishParticipants: typeof publishParticipants;
|
|
7129
7140
|
declare const mutate$5_setEventDisplay: typeof setEventDisplay;
|
|
7130
7141
|
declare const mutate$5_unPublishEvent: typeof unPublishEvent;
|
|
7131
7142
|
declare const mutate$5_unPublishEventSeeding: typeof unPublishEventSeeding;
|
|
7132
7143
|
declare const mutate$5_unPublishOrderOfPlay: typeof unPublishOrderOfPlay;
|
|
7144
|
+
declare const mutate$5_unPublishParticipants: typeof unPublishParticipants;
|
|
7133
7145
|
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 };
|
|
7146
|
+
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
7147
|
}
|
|
7136
7148
|
|
|
7149
|
+
declare function getTournamentPublishStatus(params: any): any;
|
|
7150
|
+
|
|
7137
7151
|
declare function bulkUpdatePublishedEventIds({ tournamentRecord, outcomes }: {
|
|
7138
7152
|
tournamentRecord: any;
|
|
7139
7153
|
outcomes: any;
|
|
@@ -7252,9 +7266,10 @@ declare const query$5_getDrawData: typeof getDrawData;
|
|
|
7252
7266
|
declare const query$5_getEventData: typeof getEventData;
|
|
7253
7267
|
declare const query$5_getEventPublishStatus: typeof getEventPublishStatus;
|
|
7254
7268
|
declare const query$5_getPublishState: typeof getPublishState;
|
|
7269
|
+
declare const query$5_getTournamentPublishStatus: typeof getTournamentPublishStatus;
|
|
7255
7270
|
declare const query$5_getVenueData: typeof getVenueData;
|
|
7256
7271
|
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 };
|
|
7272
|
+
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
7273
|
}
|
|
7259
7274
|
|
|
7260
7275
|
declare const index$a_bulkUpdatePublishedEventIds: typeof bulkUpdatePublishedEventIds;
|
|
@@ -7264,16 +7279,19 @@ declare const index$a_getDrawData: typeof getDrawData;
|
|
|
7264
7279
|
declare const index$a_getEventData: typeof getEventData;
|
|
7265
7280
|
declare const index$a_getEventPublishStatus: typeof getEventPublishStatus;
|
|
7266
7281
|
declare const index$a_getPublishState: typeof getPublishState;
|
|
7282
|
+
declare const index$a_getTournamentPublishStatus: typeof getTournamentPublishStatus;
|
|
7267
7283
|
declare const index$a_getVenueData: typeof getVenueData;
|
|
7268
7284
|
declare const index$a_publishEvent: typeof publishEvent;
|
|
7269
7285
|
declare const index$a_publishEventSeeding: typeof publishEventSeeding;
|
|
7270
7286
|
declare const index$a_publishOrderOfPlay: typeof publishOrderOfPlay;
|
|
7287
|
+
declare const index$a_publishParticipants: typeof publishParticipants;
|
|
7271
7288
|
declare const index$a_setEventDisplay: typeof setEventDisplay;
|
|
7272
7289
|
declare const index$a_unPublishEvent: typeof unPublishEvent;
|
|
7273
7290
|
declare const index$a_unPublishEventSeeding: typeof unPublishEventSeeding;
|
|
7274
7291
|
declare const index$a_unPublishOrderOfPlay: typeof unPublishOrderOfPlay;
|
|
7292
|
+
declare const index$a_unPublishParticipants: typeof unPublishParticipants;
|
|
7275
7293
|
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 };
|
|
7294
|
+
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
7295
|
}
|
|
7278
7296
|
|
|
7279
7297
|
type FindExtensionType = {
|
|
@@ -7560,13 +7578,50 @@ type SetSchedulingProfileArgs = {
|
|
|
7560
7578
|
};
|
|
7561
7579
|
declare function setSchedulingProfile({ tournamentRecords, tournamentRecord, schedulingProfile, }: SetSchedulingProfileArgs): any;
|
|
7562
7580
|
|
|
7581
|
+
declare function courtGridRows({ courtPrefix, minRowsCount, courtsData }: {
|
|
7582
|
+
courtPrefix?: string | undefined;
|
|
7583
|
+
minRowsCount: any;
|
|
7584
|
+
courtsData: any;
|
|
7585
|
+
}): {
|
|
7586
|
+
error: {
|
|
7587
|
+
message: string;
|
|
7588
|
+
code: string;
|
|
7589
|
+
};
|
|
7590
|
+
courtPrefix?: undefined;
|
|
7591
|
+
rows?: undefined;
|
|
7592
|
+
} | {
|
|
7593
|
+
courtPrefix: string;
|
|
7594
|
+
rows: any[];
|
|
7595
|
+
error?: undefined;
|
|
7596
|
+
};
|
|
7597
|
+
|
|
7598
|
+
declare function publicFindCourt(params: any): any;
|
|
7599
|
+
|
|
7600
|
+
type FindVenueArgs = {
|
|
7601
|
+
tournamentRecords?: TournamentRecords;
|
|
7602
|
+
tournamentRecord?: Tournament;
|
|
7603
|
+
venueId: string;
|
|
7604
|
+
};
|
|
7605
|
+
declare function findVenue({ tournamentRecords, tournamentRecord, venueId }: FindVenueArgs): {
|
|
7606
|
+
success?: boolean;
|
|
7607
|
+
venue?: Venue;
|
|
7608
|
+
error?: ErrorType;
|
|
7609
|
+
};
|
|
7610
|
+
declare function publicFindVenue({ convertExtensions, ...params }: {
|
|
7611
|
+
[x: string]: any;
|
|
7612
|
+
convertExtensions: any;
|
|
7613
|
+
}): any;
|
|
7614
|
+
|
|
7615
|
+
declare const query$2_courtGridRows: typeof courtGridRows;
|
|
7616
|
+
declare const query$2_findVenue: typeof findVenue;
|
|
7563
7617
|
declare const query$2_getPersonRequests: typeof getPersonRequests;
|
|
7564
7618
|
declare const query$2_getProfileRounds: typeof getProfileRounds;
|
|
7565
7619
|
declare const query$2_getScheduledRoundsDetails: typeof getScheduledRoundsDetails;
|
|
7566
7620
|
declare const query$2_getSchedulingProfile: typeof getSchedulingProfile;
|
|
7567
7621
|
declare const query$2_getSchedulingProfileIssues: typeof getSchedulingProfileIssues;
|
|
7622
|
+
declare const query$2_publicFindCourt: typeof publicFindCourt;
|
|
7568
7623
|
declare namespace query$2 {
|
|
7569
|
-
export { query$2_getPersonRequests as getPersonRequests, query$2_getProfileRounds as getProfileRounds, query$2_getScheduledRoundsDetails as getScheduledRoundsDetails, query$2_getSchedulingProfile as getSchedulingProfile, query$2_getSchedulingProfileIssues as getSchedulingProfileIssues };
|
|
7624
|
+
export { query$2_courtGridRows as courtGridRows, query$2_findVenue as findVenue, query$2_getPersonRequests as getPersonRequests, query$2_getProfileRounds as getProfileRounds, query$2_getScheduledRoundsDetails as getScheduledRoundsDetails, query$2_getSchedulingProfile as getSchedulingProfile, query$2_getSchedulingProfileIssues as getSchedulingProfileIssues, query$2_publicFindCourt as publicFindCourt };
|
|
7570
7625
|
}
|
|
7571
7626
|
|
|
7572
7627
|
type GetVenuesAndCourtsArgs = {
|
|
@@ -7593,21 +7648,6 @@ declare function getCompetitionVenues({ tournamentRecords, requireCourts, dates
|
|
|
7593
7648
|
venues?: Venue[];
|
|
7594
7649
|
};
|
|
7595
7650
|
|
|
7596
|
-
type FindVenueArgs = {
|
|
7597
|
-
tournamentRecords?: TournamentRecords;
|
|
7598
|
-
tournamentRecord?: Tournament;
|
|
7599
|
-
venueId: string;
|
|
7600
|
-
};
|
|
7601
|
-
declare function findVenue({ tournamentRecords, tournamentRecord, venueId }: FindVenueArgs): {
|
|
7602
|
-
success?: boolean;
|
|
7603
|
-
venue?: Venue;
|
|
7604
|
-
error?: ErrorType;
|
|
7605
|
-
};
|
|
7606
|
-
declare function publicFindVenue({ convertExtensions, ...params }: {
|
|
7607
|
-
[x: string]: any;
|
|
7608
|
-
convertExtensions: any;
|
|
7609
|
-
}): any;
|
|
7610
|
-
|
|
7611
7651
|
declare function getCourts({ tournamentRecord, venueId, venueIds }: {
|
|
7612
7652
|
tournamentRecord: any;
|
|
7613
7653
|
venueId: any;
|
|
@@ -7647,12 +7687,14 @@ declare const index$9_checkMatchUpIsComplete: typeof checkMatchUpIsComplete;
|
|
|
7647
7687
|
declare const index$9_checkValidEntries: typeof checkValidEntries;
|
|
7648
7688
|
declare const index$9_compareTieFormats: typeof compareTieFormats;
|
|
7649
7689
|
declare const index$9_competitionScheduleMatchUps: typeof competitionScheduleMatchUps;
|
|
7690
|
+
declare const index$9_courtGridRows: typeof courtGridRows;
|
|
7650
7691
|
declare const index$9_credits: typeof credits;
|
|
7651
7692
|
declare const index$9_drawMatchUps: typeof drawMatchUps;
|
|
7652
7693
|
declare const index$9_eventMatchUps: typeof eventMatchUps;
|
|
7653
7694
|
declare const index$9_filterMatchUps: typeof filterMatchUps;
|
|
7654
7695
|
declare const index$9_filterParticipants: typeof filterParticipants;
|
|
7655
7696
|
declare const index$9_findExtension: typeof findExtension;
|
|
7697
|
+
declare const index$9_findVenue: typeof findVenue;
|
|
7656
7698
|
declare const index$9_getAllDrawMatchUps: typeof getAllDrawMatchUps;
|
|
7657
7699
|
declare const index$9_getAllEventData: typeof getAllEventData;
|
|
7658
7700
|
declare const index$9_getAllStructureMatchUps: typeof getAllStructureMatchUps;
|
|
@@ -7737,6 +7779,7 @@ declare const index$9_getTournamentIds: typeof getTournamentIds;
|
|
|
7737
7779
|
declare const index$9_getTournamentInfo: typeof getTournamentInfo;
|
|
7738
7780
|
declare const index$9_getTournamentPenalties: typeof getTournamentPenalties;
|
|
7739
7781
|
declare const index$9_getTournamentPersons: typeof getTournamentPersons;
|
|
7782
|
+
declare const index$9_getTournamentPublishStatus: typeof getTournamentPublishStatus;
|
|
7740
7783
|
declare const index$9_getTournamentStructures: typeof getTournamentStructures;
|
|
7741
7784
|
declare const index$9_getTournamentTimeItem: typeof getTournamentTimeItem;
|
|
7742
7785
|
declare const index$9_getValidGroupSizes: typeof getValidGroupSizes;
|
|
@@ -7750,6 +7793,7 @@ declare const index$9_matchUpActions: typeof matchUpActions;
|
|
|
7750
7793
|
declare const index$9_participantScaleItem: typeof participantScaleItem;
|
|
7751
7794
|
declare const index$9_participantScheduledMatchUps: typeof participantScheduledMatchUps;
|
|
7752
7795
|
declare const index$9_positionActions: typeof positionActions;
|
|
7796
|
+
declare const index$9_publicFindCourt: typeof publicFindCourt;
|
|
7753
7797
|
declare const index$9_publicFindVenue: typeof publicFindVenue;
|
|
7754
7798
|
declare const index$9_tallyParticipantResults: typeof tallyParticipantResults;
|
|
7755
7799
|
declare const index$9_tieFormatGenderValidityCheck: typeof tieFormatGenderValidityCheck;
|
|
@@ -7759,7 +7803,7 @@ declare const index$9_validMatchUps: typeof validMatchUps;
|
|
|
7759
7803
|
declare const index$9_validateCollectionDefinition: typeof validateCollectionDefinition;
|
|
7760
7804
|
declare const index$9_validateLineUp: typeof validateLineUp;
|
|
7761
7805
|
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 };
|
|
7806
|
+
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_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_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 };
|
|
7763
7807
|
}
|
|
7764
7808
|
|
|
7765
7809
|
type StatCounters = {
|
|
@@ -8357,25 +8401,6 @@ declare function findMatchUpFormatTiming({ defaultRecoveryMinutes, defaultAverag
|
|
|
8357
8401
|
error?: undefined;
|
|
8358
8402
|
};
|
|
8359
8403
|
|
|
8360
|
-
declare function courtGridRows({ courtPrefix, minRowsCount, courtsData }: {
|
|
8361
|
-
courtPrefix?: string | undefined;
|
|
8362
|
-
minRowsCount: any;
|
|
8363
|
-
courtsData: any;
|
|
8364
|
-
}): {
|
|
8365
|
-
error: {
|
|
8366
|
-
message: string;
|
|
8367
|
-
code: string;
|
|
8368
|
-
};
|
|
8369
|
-
courtPrefix?: undefined;
|
|
8370
|
-
rows?: undefined;
|
|
8371
|
-
} | {
|
|
8372
|
-
courtPrefix: string;
|
|
8373
|
-
rows: any[];
|
|
8374
|
-
error?: undefined;
|
|
8375
|
-
};
|
|
8376
|
-
|
|
8377
|
-
declare function publicFindCourt(params: any): any;
|
|
8378
|
-
|
|
8379
8404
|
type AddMatchUpScheduleItemsArgs = {
|
|
8380
8405
|
inContextMatchUps?: HydratedMatchUp[];
|
|
8381
8406
|
drawMatchUps?: HydratedMatchUp[];
|
|
@@ -8438,16 +8463,13 @@ declare const mutate$4_bulkUpdateCourtAssignments: typeof bulkUpdateCourtAssignm
|
|
|
8438
8463
|
declare const mutate$4_calculateScheduleTimes: typeof calculateScheduleTimes;
|
|
8439
8464
|
declare const mutate$4_clearMatchUpSchedule: typeof clearMatchUpSchedule;
|
|
8440
8465
|
declare const mutate$4_clearScheduledMatchUps: typeof clearScheduledMatchUps;
|
|
8441
|
-
declare const mutate$4_courtGridRows: typeof courtGridRows;
|
|
8442
8466
|
declare const mutate$4_findMatchUpFormatTiming: typeof findMatchUpFormatTiming;
|
|
8443
|
-
declare const mutate$4_findVenue: typeof findVenue;
|
|
8444
8467
|
declare const mutate$4_generateBookings: typeof generateBookings;
|
|
8445
8468
|
declare const mutate$4_generateVirtualCourts: typeof generateVirtualCourts;
|
|
8446
8469
|
declare const mutate$4_matchUpScheduleChange: typeof matchUpScheduleChange;
|
|
8447
8470
|
declare const mutate$4_modifyMatchUpFormatTiming: typeof modifyMatchUpFormatTiming;
|
|
8448
8471
|
declare const mutate$4_proAutoSchedule: typeof proAutoSchedule;
|
|
8449
8472
|
declare const mutate$4_proConflicts: typeof proConflicts;
|
|
8450
|
-
declare const mutate$4_publicFindCourt: typeof publicFindCourt;
|
|
8451
8473
|
declare const mutate$4_removeEventMatchUpFormatTiming: typeof removeEventMatchUpFormatTiming;
|
|
8452
8474
|
declare const mutate$4_removeMatchUpCourtAssignment: typeof removeMatchUpCourtAssignment;
|
|
8453
8475
|
declare const mutate$4_reorderUpcomingMatchUps: typeof reorderUpcomingMatchUps;
|
|
@@ -8459,7 +8481,7 @@ declare const mutate$4_setSchedulingProfile: typeof setSchedulingProfile;
|
|
|
8459
8481
|
declare const mutate$4_toggleParticipantCheckInState: typeof toggleParticipantCheckInState;
|
|
8460
8482
|
declare const mutate$4_validateSchedulingProfile: typeof validateSchedulingProfile;
|
|
8461
8483
|
declare namespace mutate$4 {
|
|
8462
|
-
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$
|
|
8484
|
+
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_findMatchUpFormatTiming as findMatchUpFormatTiming, 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_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 };
|
|
8463
8485
|
}
|
|
8464
8486
|
|
|
8465
8487
|
declare const index$7_addMatchUpCourtOrder: typeof addMatchUpCourtOrder;
|
|
@@ -9191,6 +9213,8 @@ declare function setTournamentCategories({ tournamentRecord, categories }: {
|
|
|
9191
9213
|
|
|
9192
9214
|
type SetTournamentDatesArgs = {
|
|
9193
9215
|
tournamentRecord: Tournament;
|
|
9216
|
+
weekdays?: weekdayUnion[];
|
|
9217
|
+
activeDates?: string[];
|
|
9194
9218
|
startDate?: string;
|
|
9195
9219
|
endDate?: string;
|
|
9196
9220
|
};
|
|
@@ -9202,18 +9226,28 @@ declare function setTournamentDates(params: SetTournamentDatesArgs): ResultType
|
|
|
9202
9226
|
declare function setTournamentStartDate({ tournamentRecord, startDate }: {
|
|
9203
9227
|
tournamentRecord: any;
|
|
9204
9228
|
startDate: any;
|
|
9205
|
-
}): ResultType & {
|
|
9229
|
+
}): (ResultType & {
|
|
9206
9230
|
unscheduledMatchUpIds?: string[] | undefined;
|
|
9207
9231
|
datesRemoved?: string[] | undefined;
|
|
9208
9232
|
datesAdded?: string[] | undefined;
|
|
9233
|
+
}) | {
|
|
9234
|
+
error: {
|
|
9235
|
+
message: string;
|
|
9236
|
+
code: string;
|
|
9237
|
+
};
|
|
9209
9238
|
};
|
|
9210
9239
|
declare function setTournamentEndDate({ tournamentRecord, endDate }: {
|
|
9211
9240
|
tournamentRecord: any;
|
|
9212
9241
|
endDate: any;
|
|
9213
|
-
}): ResultType & {
|
|
9242
|
+
}): (ResultType & {
|
|
9214
9243
|
unscheduledMatchUpIds?: string[] | undefined;
|
|
9215
9244
|
datesRemoved?: string[] | undefined;
|
|
9216
9245
|
datesAdded?: string[] | undefined;
|
|
9246
|
+
}) | {
|
|
9247
|
+
error: {
|
|
9248
|
+
message: string;
|
|
9249
|
+
code: string;
|
|
9250
|
+
};
|
|
9217
9251
|
};
|
|
9218
9252
|
|
|
9219
9253
|
type AddTimeItemArgs = {
|
|
@@ -9957,6 +9991,7 @@ type DeleteNoticeArgs = {
|
|
|
9957
9991
|
declare function deleteNotice({ key, topic }: DeleteNoticeArgs): any;
|
|
9958
9992
|
declare function deleteNotices(): any;
|
|
9959
9993
|
declare function getTopics(): any;
|
|
9994
|
+
declare function hasTopic(topic: any): any;
|
|
9960
9995
|
type CallListenerArgs = {
|
|
9961
9996
|
notices: Notice[];
|
|
9962
9997
|
topic: string;
|
|
@@ -10019,6 +10054,7 @@ declare const globalState_getTournamentRecord: typeof getTournamentRecord;
|
|
|
10019
10054
|
declare const globalState_getTournamentRecords: typeof getTournamentRecords;
|
|
10020
10055
|
declare const globalState_globalLog: typeof globalLog;
|
|
10021
10056
|
declare const globalState_handleCaughtError: typeof handleCaughtError;
|
|
10057
|
+
declare const globalState_hasTopic: typeof hasTopic;
|
|
10022
10058
|
declare const globalState_removeTournamentRecord: typeof removeTournamentRecord;
|
|
10023
10059
|
declare const globalState_setDeepCopy: typeof setDeepCopy;
|
|
10024
10060
|
declare const globalState_setDevContext: typeof setDevContext;
|
|
@@ -10034,7 +10070,7 @@ declare const globalState_setTournamentRecord: typeof setTournamentRecord;
|
|
|
10034
10070
|
declare const globalState_setTournamentRecords: typeof setTournamentRecords;
|
|
10035
10071
|
declare const globalState_timeKeeper: typeof timeKeeper;
|
|
10036
10072
|
declare namespace globalState {
|
|
10037
|
-
export { type globalState_CallListenerArgs as CallListenerArgs, type globalState_DeepCopyAttributes as DeepCopyAttributes, type globalState_DeleteNoticeArgs as DeleteNoticeArgs, type globalState_DevContextType as DevContextType, type globalState_GetNoticesArgs as GetNoticesArgs, type globalState_HandleCaughtErrorArgs as HandleCaughtErrorArgs, type globalState_ImplemtationGlobalStateTypes as ImplemtationGlobalStateTypes, type globalState_Notice as Notice, globalState_addNotice as addNotice, globalState_callListener as callListener, globalState_createInstanceState as createInstanceState, globalState_cycleMutationStatus as cycleMutationStatus, globalState_deepCopyEnabled as deepCopyEnabled, globalState_deleteNotice as deleteNotice, globalState_deleteNotices as deleteNotices, globalState_disableNotifications as disableNotifications, globalState_enableNotifications as enableNotifications, globalState_getDevContext as getDevContext, globalState_getMethods as getMethods, globalState_getNotices as getNotices, globalState_getProvider as getProvider, globalState_getTopics as getTopics, globalState_getTournamentId as getTournamentId, globalState_getTournamentRecord as getTournamentRecord, globalState_getTournamentRecords as getTournamentRecords, globalState_globalLog as globalLog, globalState_handleCaughtError as handleCaughtError, globalState_removeTournamentRecord as removeTournamentRecord, globalState_setDeepCopy as setDeepCopy, globalState_setDevContext as setDevContext, globalState_setGlobalLog as setGlobalLog, globalState_setGlobalMethods as setGlobalMethods, globalState_setGlobalSubscriptions as setGlobalSubscriptions, globalState_setMethods as setMethods, globalState_setStateMethods as setStateMethods, globalState_setStateProvider as setStateProvider, globalState_setSubscriptions as setSubscriptions, globalState_setTournamentId as setTournamentId, globalState_setTournamentRecord as setTournamentRecord, globalState_setTournamentRecords as setTournamentRecords, globalState_timeKeeper as timeKeeper };
|
|
10073
|
+
export { type globalState_CallListenerArgs as CallListenerArgs, type globalState_DeepCopyAttributes as DeepCopyAttributes, type globalState_DeleteNoticeArgs as DeleteNoticeArgs, type globalState_DevContextType as DevContextType, type globalState_GetNoticesArgs as GetNoticesArgs, type globalState_HandleCaughtErrorArgs as HandleCaughtErrorArgs, type globalState_ImplemtationGlobalStateTypes as ImplemtationGlobalStateTypes, type globalState_Notice as Notice, globalState_addNotice as addNotice, globalState_callListener as callListener, globalState_createInstanceState as createInstanceState, globalState_cycleMutationStatus as cycleMutationStatus, globalState_deepCopyEnabled as deepCopyEnabled, globalState_deleteNotice as deleteNotice, globalState_deleteNotices as deleteNotices, globalState_disableNotifications as disableNotifications, globalState_enableNotifications as enableNotifications, globalState_getDevContext as getDevContext, globalState_getMethods as getMethods, globalState_getNotices as getNotices, globalState_getProvider as getProvider, globalState_getTopics as getTopics, globalState_getTournamentId as getTournamentId, globalState_getTournamentRecord as getTournamentRecord, globalState_getTournamentRecords as getTournamentRecords, globalState_globalLog as globalLog, globalState_handleCaughtError as handleCaughtError, globalState_hasTopic as hasTopic, globalState_removeTournamentRecord as removeTournamentRecord, globalState_setDeepCopy as setDeepCopy, globalState_setDevContext as setDevContext, globalState_setGlobalLog as setGlobalLog, globalState_setGlobalMethods as setGlobalMethods, globalState_setGlobalSubscriptions as setGlobalSubscriptions, globalState_setMethods as setMethods, globalState_setStateMethods as setStateMethods, globalState_setStateProvider as setStateProvider, globalState_setSubscriptions as setSubscriptions, globalState_setTournamentId as setTournamentId, globalState_setTournamentRecord as setTournamentRecord, globalState_setTournamentRecords as setTournamentRecords, globalState_timeKeeper as timeKeeper };
|
|
10038
10074
|
}
|
|
10039
10075
|
|
|
10040
10076
|
declare const forge: {};
|
|
@@ -11248,6 +11284,7 @@ declare const topicConstants: {
|
|
|
11248
11284
|
PUBLISH_EVENT_SEEDING: string;
|
|
11249
11285
|
PUBLISH_EVENT: string;
|
|
11250
11286
|
PUBLISH_ORDER_OF_PLAY: string;
|
|
11287
|
+
PUBLISH_PARTICIPANTS: string;
|
|
11251
11288
|
UNPUBLISH_EVENT_SEEDING: string;
|
|
11252
11289
|
UNPUBLISH_EVENT: string;
|
|
11253
11290
|
UNPUBLISH_ORDER_OF_PLAY: string;
|
|
@@ -11267,6 +11304,16 @@ declare const venueConstants: {
|
|
|
11267
11304
|
OUTDOOR: string;
|
|
11268
11305
|
};
|
|
11269
11306
|
|
|
11307
|
+
declare const weekdayConstants: {
|
|
11308
|
+
MON: string;
|
|
11309
|
+
TUE: string;
|
|
11310
|
+
WED: string;
|
|
11311
|
+
THU: string;
|
|
11312
|
+
FRI: string;
|
|
11313
|
+
SAT: string;
|
|
11314
|
+
SUN: string;
|
|
11315
|
+
};
|
|
11316
|
+
|
|
11270
11317
|
declare const recoveryTimeRequiredMatchUpStatuses: any[];
|
|
11271
11318
|
declare const particicipantsRequiredMatchUpStatuses: any[];
|
|
11272
11319
|
declare const validMatchUpStatuses: any[];
|
|
@@ -11334,8 +11381,9 @@ declare const index_tournamentConstants: typeof tournamentConstants;
|
|
|
11334
11381
|
declare const index_upcomingMatchUpStatuses: typeof upcomingMatchUpStatuses;
|
|
11335
11382
|
declare const index_validMatchUpStatuses: typeof validMatchUpStatuses;
|
|
11336
11383
|
declare const index_venueConstants: typeof venueConstants;
|
|
11384
|
+
declare const index_weekdayConstants: typeof weekdayConstants;
|
|
11337
11385
|
declare namespace index {
|
|
11338
|
-
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 };
|
|
11386
|
+
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, index_weekdayConstants as weekdayConstants };
|
|
11339
11387
|
}
|
|
11340
11388
|
|
|
11341
|
-
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 };
|
|
11389
|
+
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, weekdayConstants };
|