tods-competition-factory 2.0.30 → 2.0.31
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 +5 -5
- package/dist/tods-competition-factory.d.ts +10 -2
- package/dist/tods-competition-factory.development.cjs.js +4349 -4288
- 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
|
@@ -1399,6 +1399,10 @@ declare const errorConditionConstants: {
|
|
|
1399
1399
|
message: string;
|
|
1400
1400
|
code: string;
|
|
1401
1401
|
};
|
|
1402
|
+
DUPLICATE_ENTRY: {
|
|
1403
|
+
message: string;
|
|
1404
|
+
code: string;
|
|
1405
|
+
};
|
|
1402
1406
|
DUPLICATE_VALUE: {
|
|
1403
1407
|
message: string;
|
|
1404
1408
|
code: string;
|
|
@@ -2448,6 +2452,7 @@ type GenerateDrawDefinitionArgs = {
|
|
|
2448
2452
|
};
|
|
2449
2453
|
playoffAttributes?: PlayoffAttributes;
|
|
2450
2454
|
policyDefinitions?: PolicyDefinitions;
|
|
2455
|
+
appliedPolicies?: PolicyDefinitions;
|
|
2451
2456
|
voluntaryConsolation?: {
|
|
2452
2457
|
structureAbbreviation?: string;
|
|
2453
2458
|
structureName?: string;
|
|
@@ -4114,7 +4119,8 @@ type ModifyEventEntriesArgs = {
|
|
|
4114
4119
|
};
|
|
4115
4120
|
declare function modifyEventEntries({ entryStatus, unpairedParticipantIds, participantIdPairs, entryStage, tournamentRecord, event, }: ModifyEventEntriesArgs): any;
|
|
4116
4121
|
|
|
4117
|
-
declare function addDrawEntries({ autoEntryPositions, entryStageSequence, ignoreStageSpace, drawDefinition, participantIds, entryStatus, roundTarget, entryStage, extension, drawId, event, }: {
|
|
4122
|
+
declare function addDrawEntries({ suppressDuplicateEntries, autoEntryPositions, entryStageSequence, ignoreStageSpace, drawDefinition, participantIds, entryStatus, roundTarget, entryStage, extension, drawId, event, }: {
|
|
4123
|
+
suppressDuplicateEntries?: boolean | undefined;
|
|
4118
4124
|
autoEntryPositions?: boolean | undefined;
|
|
4119
4125
|
entryStageSequence: any;
|
|
4120
4126
|
ignoreStageSpace: any;
|
|
@@ -4135,8 +4141,9 @@ declare function addDrawEntries({ autoEntryPositions, entryStageSequence, ignore
|
|
|
4135
4141
|
|
|
4136
4142
|
type AddEventEntriesArgs = {
|
|
4137
4143
|
policyDefinitions?: PolicyDefinitions;
|
|
4138
|
-
|
|
4144
|
+
suppressDuplicateEntries?: boolean;
|
|
4139
4145
|
entryStatus?: EntryStatusUnion;
|
|
4146
|
+
drawDefinition?: DrawDefinition;
|
|
4140
4147
|
autoEntryPositions?: boolean;
|
|
4141
4148
|
tournamentRecord: Tournament;
|
|
4142
4149
|
entryStageSequence?: number;
|
|
@@ -11304,6 +11311,7 @@ declare const topicConstants: {
|
|
|
11304
11311
|
ADD_SCALE_ITEMS: string;
|
|
11305
11312
|
ADD_VENUE: string;
|
|
11306
11313
|
AUDIT: string;
|
|
11314
|
+
DATA_ISSUE: string;
|
|
11307
11315
|
DELETE_PARTICIPANTS: string;
|
|
11308
11316
|
DELETE_VENUE: string;
|
|
11309
11317
|
DELETED_DRAW_IDS: string;
|