tods-competition-factory 2.0.0-beta.8 → 2.0.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 +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/tods-competition-factory.d.ts +18 -2
- package/dist/tods-competition-factory.development.cjs.js +178 -123
- 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 +2 -2
|
@@ -3686,6 +3686,7 @@ type DrawMaticArgs = {
|
|
|
3686
3686
|
restrictEntryStatus?: boolean;
|
|
3687
3687
|
tournamentRecord: Tournament;
|
|
3688
3688
|
drawDefinition: DrawDefinition;
|
|
3689
|
+
enableDoubleRobin?: boolean;
|
|
3689
3690
|
generateMatchUps?: boolean;
|
|
3690
3691
|
eventType?: EventTypeUnion;
|
|
3691
3692
|
salted?: number | boolean;
|
|
@@ -3719,6 +3720,7 @@ type GenerateDrawDefinitionArgs = {
|
|
|
3719
3720
|
structureName?: string;
|
|
3720
3721
|
structureId?: string;
|
|
3721
3722
|
};
|
|
3723
|
+
enforceMinimumDrawSize?: boolean;
|
|
3722
3724
|
ignoreAllowedDrawTypes?: boolean;
|
|
3723
3725
|
qualifyingPlaceholder?: boolean;
|
|
3724
3726
|
considerEventEntries?: boolean;
|
|
@@ -7189,6 +7191,16 @@ declare namespace mutate$4 {
|
|
|
7189
7191
|
export { mutate$4_publishEvent as publishEvent, mutate$4_publishEventSeeding as publishEventSeeding, mutate$4_publishOrderOfPlay as publishOrderOfPlay, mutate$4_setEventDisplay as setEventDisplay, mutate$4_unPublishEvent as unPublishEvent, mutate$4_unPublishEventSeeding as unPublishEventSeeding, mutate$4_unPublishOrderOfPlay as unPublishOrderOfPlay };
|
|
7190
7192
|
}
|
|
7191
7193
|
|
|
7194
|
+
declare function getTournamentPublishStatus({ tournamentRecord, status }: {
|
|
7195
|
+
tournamentRecord: any;
|
|
7196
|
+
status?: string | undefined;
|
|
7197
|
+
}): any;
|
|
7198
|
+
|
|
7199
|
+
declare function getEventPublishStatus({ event, status }: {
|
|
7200
|
+
event: any;
|
|
7201
|
+
status?: string | undefined;
|
|
7202
|
+
}): any;
|
|
7203
|
+
|
|
7192
7204
|
type GetPublishStateArgs = {
|
|
7193
7205
|
tournamentRecord?: Tournament;
|
|
7194
7206
|
drawDefinition?: DrawDefinition;
|
|
@@ -7269,10 +7281,12 @@ declare const query$4_getAllEventData: typeof getAllEventData;
|
|
|
7269
7281
|
declare const query$4_getCourtInfo: typeof getCourtInfo;
|
|
7270
7282
|
declare const query$4_getDrawData: typeof getDrawData;
|
|
7271
7283
|
declare const query$4_getEventData: typeof getEventData;
|
|
7284
|
+
declare const query$4_getEventPublishStatus: typeof getEventPublishStatus;
|
|
7272
7285
|
declare const query$4_getPublishState: typeof getPublishState;
|
|
7286
|
+
declare const query$4_getTournamentPublishStatus: typeof getTournamentPublishStatus;
|
|
7273
7287
|
declare const query$4_getVenueData: typeof getVenueData;
|
|
7274
7288
|
declare namespace query$4 {
|
|
7275
|
-
export { query$4_bulkUpdatePublishedEventIds as bulkUpdatePublishedEventIds, query$4_getAllEventData as getAllEventData, query$4_getCourtInfo as getCourtInfo, query$4_getDrawData as getDrawData, query$4_getEventData as getEventData, query$4_getPublishState as getPublishState, query$4_getVenueData as getVenueData };
|
|
7289
|
+
export { query$4_bulkUpdatePublishedEventIds as bulkUpdatePublishedEventIds, query$4_getAllEventData as getAllEventData, query$4_getCourtInfo as getCourtInfo, query$4_getDrawData as getDrawData, query$4_getEventData as getEventData, query$4_getEventPublishStatus as getEventPublishStatus, query$4_getPublishState as getPublishState, query$4_getTournamentPublishStatus as getTournamentPublishStatus, query$4_getVenueData as getVenueData };
|
|
7276
7290
|
}
|
|
7277
7291
|
|
|
7278
7292
|
declare const index$a_bulkUpdatePublishedEventIds: typeof bulkUpdatePublishedEventIds;
|
|
@@ -7280,7 +7294,9 @@ declare const index$a_getAllEventData: typeof getAllEventData;
|
|
|
7280
7294
|
declare const index$a_getCourtInfo: typeof getCourtInfo;
|
|
7281
7295
|
declare const index$a_getDrawData: typeof getDrawData;
|
|
7282
7296
|
declare const index$a_getEventData: typeof getEventData;
|
|
7297
|
+
declare const index$a_getEventPublishStatus: typeof getEventPublishStatus;
|
|
7283
7298
|
declare const index$a_getPublishState: typeof getPublishState;
|
|
7299
|
+
declare const index$a_getTournamentPublishStatus: typeof getTournamentPublishStatus;
|
|
7284
7300
|
declare const index$a_getVenueData: typeof getVenueData;
|
|
7285
7301
|
declare const index$a_publishEvent: typeof publishEvent;
|
|
7286
7302
|
declare const index$a_publishEventSeeding: typeof publishEventSeeding;
|
|
@@ -7290,7 +7306,7 @@ declare const index$a_unPublishEvent: typeof unPublishEvent;
|
|
|
7290
7306
|
declare const index$a_unPublishEventSeeding: typeof unPublishEventSeeding;
|
|
7291
7307
|
declare const index$a_unPublishOrderOfPlay: typeof unPublishOrderOfPlay;
|
|
7292
7308
|
declare namespace index$a {
|
|
7293
|
-
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_getPublishState as getPublishState, index$a_getVenueData as getVenueData, mutate$4 as mutate, index$a_publishEvent as publishEvent, index$a_publishEventSeeding as publishEventSeeding, index$a_publishOrderOfPlay as publishOrderOfPlay, query$4 as query, index$a_setEventDisplay as setEventDisplay, index$a_unPublishEvent as unPublishEvent, index$a_unPublishEventSeeding as unPublishEventSeeding, index$a_unPublishOrderOfPlay as unPublishOrderOfPlay };
|
|
7309
|
+
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$4 as mutate, index$a_publishEvent as publishEvent, index$a_publishEventSeeding as publishEventSeeding, index$a_publishOrderOfPlay as publishOrderOfPlay, query$4 as query, index$a_setEventDisplay as setEventDisplay, index$a_unPublishEvent as unPublishEvent, index$a_unPublishEventSeeding as unPublishEventSeeding, index$a_unPublishOrderOfPlay as unPublishOrderOfPlay };
|
|
7294
7310
|
}
|
|
7295
7311
|
|
|
7296
7312
|
type FindExtensionType = {
|