tods-competition-factory 2.1.9 → 2.1.11
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 +9 -9
- package/dist/tods-competition-factory.d.ts +6 -6
- package/dist/tods-competition-factory.development.cjs.js +1669 -1634
- 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 +14 -14
|
@@ -5686,7 +5686,7 @@ type GetAllStructureMatchUps = {
|
|
|
5686
5686
|
inContext?: boolean;
|
|
5687
5687
|
event?: Event$1;
|
|
5688
5688
|
};
|
|
5689
|
-
declare function getAllStructureMatchUps(
|
|
5689
|
+
declare function getAllStructureMatchUps(params: GetAllStructureMatchUps): {
|
|
5690
5690
|
collectionPositionMatchUps: {};
|
|
5691
5691
|
error: {
|
|
5692
5692
|
message: string;
|
|
@@ -6479,13 +6479,13 @@ declare function modifyParticipantName({ tournamentRecord, participantName, part
|
|
|
6479
6479
|
};
|
|
6480
6480
|
|
|
6481
6481
|
type ScaledTeamAssignmentArgs = {
|
|
6482
|
-
clearExistingAssignments?: boolean;
|
|
6483
6482
|
individualParticipantIds?: string[];
|
|
6483
|
+
clearExistingAssignments?: boolean;
|
|
6484
6484
|
reverseAssignmentOrder?: boolean;
|
|
6485
|
-
initialTeamIndex?: number;
|
|
6486
|
-
scaledParticipants?: any[];
|
|
6487
6485
|
teamParticipantIds?: string[];
|
|
6488
6486
|
tournamentRecord: Tournament;
|
|
6487
|
+
scaledParticipants?: any[];
|
|
6488
|
+
initialTeamIndex?: number;
|
|
6489
6489
|
scaleAttributes?: any;
|
|
6490
6490
|
teamNameBase?: string;
|
|
6491
6491
|
teamsCount?: number;
|
|
@@ -9820,8 +9820,8 @@ declare function constantToString(str: any): any;
|
|
|
9820
9820
|
|
|
9821
9821
|
declare function numericSort(a: any, b: any): number;
|
|
9822
9822
|
|
|
9823
|
-
declare function UUIDS(count?: number): string[];
|
|
9824
|
-
declare function UUID(): string;
|
|
9823
|
+
declare function UUIDS(count?: number, pre?: any): string[];
|
|
9824
|
+
declare function UUID(pre?: any): string;
|
|
9825
9825
|
|
|
9826
9826
|
declare function unique(arr: any): any[];
|
|
9827
9827
|
declare function noNulls(arr: any): any;
|