@ethlete/cdk 4.68.0 → 4.69.0
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/CHANGELOG.md +6 -0
- package/fesm2022/ethlete-cdk.mjs +1898 -1890
- package/fesm2022/ethlete-cdk.mjs.map +1 -1
- package/index.d.ts +54 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3726,7 +3726,9 @@ type BracketRoundRelationTwoToNothing<TRoundData, TMatchData> = {
|
|
|
3726
3726
|
lowerRootRoundMatchFactor: number;
|
|
3727
3727
|
};
|
|
3728
3728
|
type BracketRoundRelation<TRoundData, TMatchData> = BracketRoundRelationNothingToOne<TRoundData, TMatchData> | BracketRoundRelationOneToNothing<TRoundData, TMatchData> | BracketRoundRelationOneToOne<TRoundData, TMatchData> | BracketRoundRelationTwoToOne<TRoundData, TMatchData> | BracketRoundRelationTwoToNothing<TRoundData, TMatchData>;
|
|
3729
|
+
declare const generateRoundRelationsNew: <TRoundData, TMatchData>(bracketData: NewBracket<TRoundData, TMatchData>) => BracketRoundRelation<TRoundData, TMatchData>[];
|
|
3729
3730
|
|
|
3731
|
+
type BracketMatchFactor = number;
|
|
3730
3732
|
type BracketMatchRelationOneToOne<TRoundData, TMatchData> = {
|
|
3731
3733
|
type: 'one-to-one';
|
|
3732
3734
|
currentMatch: NewBracketMatch<TRoundData, TMatchData>;
|
|
@@ -3771,6 +3773,14 @@ type BracketMatchRelationTwoToNothing<TRoundData, TMatchData> = {
|
|
|
3771
3773
|
previousLowerRound: NewBracketRound<TRoundData, TMatchData>;
|
|
3772
3774
|
};
|
|
3773
3775
|
type BracketMatchRelation<TRoundData, TMatchData> = BracketMatchRelationOneToOne<TRoundData, TMatchData> | BracketMatchRelationTwoToOne<TRoundData, TMatchData> | BracketMatchRelationNothingToOne<TRoundData, TMatchData> | BracketMatchRelationOneToNothing<TRoundData, TMatchData> | BracketMatchRelationTwoToNothing<TRoundData, TMatchData>;
|
|
3776
|
+
type MatchPositionMaps<TRoundData, TMatchData> = Map<BracketRoundId, Map<BracketMatchPosition, NewBracketMatch<TRoundData, TMatchData>>>;
|
|
3777
|
+
declare const generateMatchPosition: (match: NewBracketMatch<unknown, unknown>, factor: BracketMatchFactor) => BracketMatchPosition;
|
|
3778
|
+
declare const generateMatchRelationPositions: <TRoundData, TMatchData>(relation: BracketRoundRelation<TRoundData, TMatchData>, match: NewBracketMatch<TRoundData, TMatchData>) => {
|
|
3779
|
+
nextRoundMatchPosition: BracketMatchPosition;
|
|
3780
|
+
previousUpperRoundMatchPosition: BracketMatchPosition;
|
|
3781
|
+
previousLowerRoundMatchPosition: BracketMatchPosition;
|
|
3782
|
+
};
|
|
3783
|
+
declare const generateMatchRelationsNew: <TRoundData, TMatchData>(bracketData: NewBracket<TRoundData, TMatchData>) => BracketMatchRelation<TRoundData, TMatchData>[];
|
|
3774
3784
|
|
|
3775
3785
|
type NewBracket<TRoundData, TMatchData> = {
|
|
3776
3786
|
rounds: BracketMap<BracketRoundId, NewBracketRound<TRoundData, TMatchData>>;
|
|
@@ -3800,6 +3810,9 @@ type NewBracketParticipant<TRoundData, TMatchData> = NewBracketParticipantBase &
|
|
|
3800
3810
|
type NewBracketMatchParticipant<TRoundData, TMatchData> = NewBracketMatchParticipantBase & {
|
|
3801
3811
|
matches: BracketMap<BracketMatchId, NewBracketMatch<TRoundData, TMatchData>>;
|
|
3802
3812
|
};
|
|
3813
|
+
declare const createNewBracket: <TRoundData, TMatchData>(source: BracketDataSource<TRoundData, TMatchData>, options: GenerateBracketDataOptions) => NewBracket<TRoundData, TMatchData>;
|
|
3814
|
+
|
|
3815
|
+
declare const logRoundRelations: (bracketData: NewBracket<unknown, unknown>) => void;
|
|
3803
3816
|
|
|
3804
3817
|
type BracketRoundSwissGroupId = string & {
|
|
3805
3818
|
__brand: 'BracketRoundSwissGroupId';
|
|
@@ -3815,6 +3828,12 @@ type BracketRoundSwissData<TRoundData, TMatchData> = {
|
|
|
3815
3828
|
groups: BracketRoundSwissGroupMap<TRoundData, TMatchData>;
|
|
3816
3829
|
};
|
|
3817
3830
|
type BracketRoundMapWithSwissData<TRoundData, TMatchData> = Map<BracketRoundId, BracketRoundSwissData<TRoundData, TMatchData>>;
|
|
3831
|
+
declare const getAvailableSwissGroupsForRound: (roundNumber: number, totalMatchesInRound: number) => {
|
|
3832
|
+
id: BracketRoundSwissGroupId;
|
|
3833
|
+
name: string;
|
|
3834
|
+
matchesInGroup: number;
|
|
3835
|
+
}[];
|
|
3836
|
+
declare const generateBracketRoundSwissGroupMaps: <TRoundData, TMatchData>(bracketData: NewBracket<TRoundData, TMatchData>) => BracketRoundMapWithSwissData<TRoundData, TMatchData> | null;
|
|
3818
3837
|
|
|
3819
3838
|
declare class NewBracketDefaultMatchComponent<TRoundData = unknown, TMatchData = unknown> {
|
|
3820
3839
|
bracketRound: i0.InputSignal<NewBracketRound<TRoundData, TMatchData>>;
|
|
@@ -4007,16 +4026,34 @@ type index_d_BracketDataLayout = BracketDataLayout;
|
|
|
4007
4026
|
type index_d_BracketDataSource<TRoundData, TMatchData> = BracketDataSource<TRoundData, TMatchData>;
|
|
4008
4027
|
type index_d_BracketMap<K, V> = BracketMap<K, V>;
|
|
4009
4028
|
declare const index_d_BracketMap: typeof BracketMap;
|
|
4029
|
+
type index_d_BracketMatchFactor = BracketMatchFactor;
|
|
4010
4030
|
type index_d_BracketMatchId = BracketMatchId;
|
|
4011
4031
|
type index_d_BracketMatchPosition = BracketMatchPosition;
|
|
4032
|
+
type index_d_BracketMatchRelation<TRoundData, TMatchData> = BracketMatchRelation<TRoundData, TMatchData>;
|
|
4033
|
+
type index_d_BracketMatchRelationNothingToOne<TRoundData, TMatchData> = BracketMatchRelationNothingToOne<TRoundData, TMatchData>;
|
|
4034
|
+
type index_d_BracketMatchRelationOneToNothing<TRoundData, TMatchData> = BracketMatchRelationOneToNothing<TRoundData, TMatchData>;
|
|
4035
|
+
type index_d_BracketMatchRelationOneToOne<TRoundData, TMatchData> = BracketMatchRelationOneToOne<TRoundData, TMatchData>;
|
|
4036
|
+
type index_d_BracketMatchRelationTwoToNothing<TRoundData, TMatchData> = BracketMatchRelationTwoToNothing<TRoundData, TMatchData>;
|
|
4037
|
+
type index_d_BracketMatchRelationTwoToOne<TRoundData, TMatchData> = BracketMatchRelationTwoToOne<TRoundData, TMatchData>;
|
|
4012
4038
|
type index_d_BracketMatchShortId = BracketMatchShortId;
|
|
4013
4039
|
type index_d_BracketMatchSource<TMatchData> = BracketMatchSource<TMatchData>;
|
|
4014
4040
|
type index_d_BracketMatchStatus = BracketMatchStatus;
|
|
4015
4041
|
type index_d_BracketRoundId = BracketRoundId;
|
|
4042
|
+
type index_d_BracketRoundMapWithSwissData<TRoundData, TMatchData> = BracketRoundMapWithSwissData<TRoundData, TMatchData>;
|
|
4016
4043
|
type index_d_BracketRoundMirrorType = BracketRoundMirrorType;
|
|
4017
4044
|
type index_d_BracketRoundPosition = BracketRoundPosition;
|
|
4045
|
+
type index_d_BracketRoundRelation<TRoundData, TMatchData> = BracketRoundRelation<TRoundData, TMatchData>;
|
|
4046
|
+
type index_d_BracketRoundRelationNothingToOne<TRoundData, TMatchData> = BracketRoundRelationNothingToOne<TRoundData, TMatchData>;
|
|
4047
|
+
type index_d_BracketRoundRelationOneToNothing<TRoundData, TMatchData> = BracketRoundRelationOneToNothing<TRoundData, TMatchData>;
|
|
4048
|
+
type index_d_BracketRoundRelationOneToOne<TRoundData, TMatchData> = BracketRoundRelationOneToOne<TRoundData, TMatchData>;
|
|
4049
|
+
type index_d_BracketRoundRelationTwoToNothing<TRoundData, TMatchData> = BracketRoundRelationTwoToNothing<TRoundData, TMatchData>;
|
|
4050
|
+
type index_d_BracketRoundRelationTwoToOne<TRoundData, TMatchData> = BracketRoundRelationTwoToOne<TRoundData, TMatchData>;
|
|
4018
4051
|
type index_d_BracketRoundShortId = BracketRoundShortId;
|
|
4019
4052
|
type index_d_BracketRoundSource<TRoundData> = BracketRoundSource<TRoundData>;
|
|
4053
|
+
type index_d_BracketRoundSwissData<TRoundData, TMatchData> = BracketRoundSwissData<TRoundData, TMatchData>;
|
|
4054
|
+
type index_d_BracketRoundSwissGroup<TRoundData, TMatchData> = BracketRoundSwissGroup<TRoundData, TMatchData>;
|
|
4055
|
+
type index_d_BracketRoundSwissGroupId = BracketRoundSwissGroupId;
|
|
4056
|
+
type index_d_BracketRoundSwissGroupMap<TRoundData, TMatchData> = BracketRoundSwissGroupMap<TRoundData, TMatchData>;
|
|
4020
4057
|
type index_d_BracketRoundType = BracketRoundType;
|
|
4021
4058
|
declare const index_d_COMMON_BRACKET_ROUND_TYPE: typeof COMMON_BRACKET_ROUND_TYPE;
|
|
4022
4059
|
type index_d_CommonBracketRoundType = CommonBracketRoundType;
|
|
@@ -4028,6 +4065,8 @@ type index_d_GroupBracketRoundType = GroupBracketRoundType;
|
|
|
4028
4065
|
type index_d_MatchParticipantId = MatchParticipantId;
|
|
4029
4066
|
type index_d_MatchParticipantShortId = MatchParticipantShortId;
|
|
4030
4067
|
type index_d_MatchParticipantSide = MatchParticipantSide;
|
|
4068
|
+
type index_d_MatchPositionMaps<TRoundData, TMatchData> = MatchPositionMaps<TRoundData, TMatchData>;
|
|
4069
|
+
type index_d_NewBracket<TRoundData, TMatchData> = NewBracket<TRoundData, TMatchData>;
|
|
4031
4070
|
type index_d_NewBracketBase<TRoundData, TMatchData> = NewBracketBase<TRoundData, TMatchData>;
|
|
4032
4071
|
type index_d_NewBracketComponent<TRoundData = unknown, TMatchData = unknown> = NewBracketComponent<TRoundData, TMatchData>;
|
|
4033
4072
|
declare const index_d_NewBracketComponent: typeof NewBracketComponent;
|
|
@@ -4035,12 +4074,17 @@ type index_d_NewBracketDefaultMatchComponent<TRoundData = unknown, TMatchData =
|
|
|
4035
4074
|
declare const index_d_NewBracketDefaultMatchComponent: typeof NewBracketDefaultMatchComponent;
|
|
4036
4075
|
type index_d_NewBracketDefaultRoundHeaderComponent<TRoundData = unknown, TMatchData = unknown> = NewBracketDefaultRoundHeaderComponent<TRoundData, TMatchData>;
|
|
4037
4076
|
declare const index_d_NewBracketDefaultRoundHeaderComponent: typeof NewBracketDefaultRoundHeaderComponent;
|
|
4077
|
+
type index_d_NewBracketMatch<TRoundData, TMatchData> = NewBracketMatch<TRoundData, TMatchData>;
|
|
4038
4078
|
type index_d_NewBracketMatchBase<TMatchData> = NewBracketMatchBase<TMatchData>;
|
|
4079
|
+
type index_d_NewBracketMatchParticipant<TRoundData, TMatchData> = NewBracketMatchParticipant<TRoundData, TMatchData>;
|
|
4039
4080
|
type index_d_NewBracketMatchParticipantBase = NewBracketMatchParticipantBase;
|
|
4040
4081
|
type index_d_NewBracketMatchParticipantWithRelationsBase = NewBracketMatchParticipantWithRelationsBase;
|
|
4041
4082
|
type index_d_NewBracketMatchWithRelationsBase<TMatchData> = NewBracketMatchWithRelationsBase<TMatchData>;
|
|
4083
|
+
type index_d_NewBracketParticipant<TRoundData, TMatchData> = NewBracketParticipant<TRoundData, TMatchData>;
|
|
4042
4084
|
type index_d_NewBracketParticipantBase = NewBracketParticipantBase;
|
|
4085
|
+
type index_d_NewBracketParticipantMatch<TRoundData, TMatchData> = NewBracketParticipantMatch<TRoundData, TMatchData>;
|
|
4043
4086
|
type index_d_NewBracketParticipantWithRelationsBase = NewBracketParticipantWithRelationsBase;
|
|
4087
|
+
type index_d_NewBracketRound<TRoundData, TMatchData> = NewBracketRound<TRoundData, TMatchData>;
|
|
4044
4088
|
type index_d_NewBracketRoundBase<TRoundData> = NewBracketRoundBase<TRoundData>;
|
|
4045
4089
|
type index_d_NewBracketRoundWithRelationsBase<TRoundData> = NewBracketRoundWithRelationsBase<TRoundData>;
|
|
4046
4090
|
type index_d_ParticipantMatchResult = ParticipantMatchResult;
|
|
@@ -4052,19 +4096,27 @@ declare const index_d_TOURNAMENT_MODE: typeof TOURNAMENT_MODE;
|
|
|
4052
4096
|
type index_d_TournamentMode = TournamentMode;
|
|
4053
4097
|
declare const index_d_canRenderLayoutInTournamentMode: typeof canRenderLayoutInTournamentMode;
|
|
4054
4098
|
declare const index_d_createMatchesMapBase: typeof createMatchesMapBase;
|
|
4099
|
+
declare const index_d_createNewBracket: typeof createNewBracket;
|
|
4055
4100
|
declare const index_d_createNewBracketBase: typeof createNewBracketBase;
|
|
4056
4101
|
declare const index_d_createNewMatchParticipantBase: typeof createNewMatchParticipantBase;
|
|
4057
4102
|
declare const index_d_createParticipantsMapBase: typeof createParticipantsMapBase;
|
|
4058
4103
|
declare const index_d_createRoundsMapBase: typeof createRoundsMapBase;
|
|
4059
4104
|
declare const index_d_generateBracketDataForEthlete: typeof generateBracketDataForEthlete;
|
|
4060
4105
|
declare const index_d_generateBracketDataForGg: typeof generateBracketDataForGg;
|
|
4106
|
+
declare const index_d_generateBracketRoundSwissGroupMaps: typeof generateBracketRoundSwissGroupMaps;
|
|
4107
|
+
declare const index_d_generateMatchPosition: typeof generateMatchPosition;
|
|
4108
|
+
declare const index_d_generateMatchRelationPositions: typeof generateMatchRelationPositions;
|
|
4109
|
+
declare const index_d_generateMatchRelationsNew: typeof generateMatchRelationsNew;
|
|
4110
|
+
declare const index_d_generateRoundRelationsNew: typeof generateRoundRelationsNew;
|
|
4061
4111
|
declare const index_d_generateRoundTypeFromEthleteRoundType: typeof generateRoundTypeFromEthleteRoundType;
|
|
4062
4112
|
declare const index_d_generateRoundTypeFromGgMatch: typeof generateRoundTypeFromGgMatch;
|
|
4063
4113
|
declare const index_d_generateTournamentModeFormEthleteRounds: typeof generateTournamentModeFormEthleteRounds;
|
|
4064
4114
|
declare const index_d_generateTournamentModeFormGgData: typeof generateTournamentModeFormGgData;
|
|
4115
|
+
declare const index_d_getAvailableSwissGroupsForRound: typeof getAvailableSwissGroupsForRound;
|
|
4116
|
+
declare const index_d_logRoundRelations: typeof logRoundRelations;
|
|
4065
4117
|
declare namespace index_d {
|
|
4066
|
-
export { index_d_BRACKET_DATA_LAYOUT as BRACKET_DATA_LAYOUT, index_d_BRACKET_ROUND_MIRROR_TYPE as BRACKET_ROUND_MIRROR_TYPE, index_d_BracketMap as BracketMap, index_d_COMMON_BRACKET_ROUND_TYPE as COMMON_BRACKET_ROUND_TYPE, index_d_DOUBLE_ELIMINATION_BRACKET_ROUND_TYPE as DOUBLE_ELIMINATION_BRACKET_ROUND_TYPE, index_d_GROUP_BRACKET_ROUND_TYPE as GROUP_BRACKET_ROUND_TYPE, index_d_NewBracketComponent as NewBracketComponent, index_d_NewBracketDefaultMatchComponent as NewBracketDefaultMatchComponent, index_d_NewBracketDefaultRoundHeaderComponent as NewBracketDefaultRoundHeaderComponent, index_d_SINGLE_ELIMINATION_BRACKET_ROUND_TYPE as SINGLE_ELIMINATION_BRACKET_ROUND_TYPE, index_d_SWISS_BRACKET_ROUND_TYPE as SWISS_BRACKET_ROUND_TYPE, index_d_TOURNAMENT_MODE as TOURNAMENT_MODE, index_d_canRenderLayoutInTournamentMode as canRenderLayoutInTournamentMode, index_d_createMatchesMapBase as createMatchesMapBase, index_d_createNewBracketBase as createNewBracketBase, index_d_createNewMatchParticipantBase as createNewMatchParticipantBase, index_d_createParticipantsMapBase as createParticipantsMapBase, index_d_createRoundsMapBase as createRoundsMapBase, index_d_generateBracketDataForEthlete as generateBracketDataForEthlete, index_d_generateBracketDataForGg as generateBracketDataForGg, index_d_generateRoundTypeFromEthleteRoundType as generateRoundTypeFromEthleteRoundType, index_d_generateRoundTypeFromGgMatch as generateRoundTypeFromGgMatch, index_d_generateTournamentModeFormEthleteRounds as generateTournamentModeFormEthleteRounds, index_d_generateTournamentModeFormGgData as generateTournamentModeFormGgData };
|
|
4067
|
-
export type { index_d_BracketDataLayout as BracketDataLayout, index_d_BracketDataSource as BracketDataSource, index_d_BracketMatchId as BracketMatchId, index_d_BracketMatchPosition as BracketMatchPosition, index_d_BracketMatchShortId as BracketMatchShortId, index_d_BracketMatchSource as BracketMatchSource, index_d_BracketMatchStatus as BracketMatchStatus, index_d_BracketRoundId as BracketRoundId, index_d_BracketRoundMirrorType as BracketRoundMirrorType, index_d_BracketRoundPosition as BracketRoundPosition, index_d_BracketRoundShortId as BracketRoundShortId, index_d_BracketRoundSource as BracketRoundSource, index_d_BracketRoundType as BracketRoundType, index_d_CommonBracketRoundType as CommonBracketRoundType, index_d_DoubleEliminationBracketRoundType as DoubleEliminationBracketRoundType, index_d_GenerateBracketDataOptions as GenerateBracketDataOptions, index_d_GroupBracketRoundType as GroupBracketRoundType, index_d_MatchParticipantId as MatchParticipantId, index_d_MatchParticipantShortId as MatchParticipantShortId, index_d_MatchParticipantSide as MatchParticipantSide, index_d_NewBracketBase as NewBracketBase, index_d_NewBracketMatchBase as NewBracketMatchBase, index_d_NewBracketMatchParticipantBase as NewBracketMatchParticipantBase, index_d_NewBracketMatchParticipantWithRelationsBase as NewBracketMatchParticipantWithRelationsBase, index_d_NewBracketMatchWithRelationsBase as NewBracketMatchWithRelationsBase, index_d_NewBracketParticipantBase as NewBracketParticipantBase, index_d_NewBracketParticipantWithRelationsBase as NewBracketParticipantWithRelationsBase, index_d_NewBracketRoundBase as NewBracketRoundBase, index_d_NewBracketRoundWithRelationsBase as NewBracketRoundWithRelationsBase, index_d_ParticipantMatchResult as ParticipantMatchResult, index_d_SingleEliminationBracketRoundType as SingleEliminationBracketRoundType, index_d_SwissBracketRoundType as SwissBracketRoundType, index_d_TournamentMode as TournamentMode };
|
|
4118
|
+
export { index_d_BRACKET_DATA_LAYOUT as BRACKET_DATA_LAYOUT, index_d_BRACKET_ROUND_MIRROR_TYPE as BRACKET_ROUND_MIRROR_TYPE, index_d_BracketMap as BracketMap, index_d_COMMON_BRACKET_ROUND_TYPE as COMMON_BRACKET_ROUND_TYPE, index_d_DOUBLE_ELIMINATION_BRACKET_ROUND_TYPE as DOUBLE_ELIMINATION_BRACKET_ROUND_TYPE, index_d_GROUP_BRACKET_ROUND_TYPE as GROUP_BRACKET_ROUND_TYPE, index_d_NewBracketComponent as NewBracketComponent, index_d_NewBracketDefaultMatchComponent as NewBracketDefaultMatchComponent, index_d_NewBracketDefaultRoundHeaderComponent as NewBracketDefaultRoundHeaderComponent, index_d_SINGLE_ELIMINATION_BRACKET_ROUND_TYPE as SINGLE_ELIMINATION_BRACKET_ROUND_TYPE, index_d_SWISS_BRACKET_ROUND_TYPE as SWISS_BRACKET_ROUND_TYPE, index_d_TOURNAMENT_MODE as TOURNAMENT_MODE, index_d_canRenderLayoutInTournamentMode as canRenderLayoutInTournamentMode, index_d_createMatchesMapBase as createMatchesMapBase, index_d_createNewBracket as createNewBracket, index_d_createNewBracketBase as createNewBracketBase, index_d_createNewMatchParticipantBase as createNewMatchParticipantBase, index_d_createParticipantsMapBase as createParticipantsMapBase, index_d_createRoundsMapBase as createRoundsMapBase, index_d_generateBracketDataForEthlete as generateBracketDataForEthlete, index_d_generateBracketDataForGg as generateBracketDataForGg, index_d_generateBracketRoundSwissGroupMaps as generateBracketRoundSwissGroupMaps, index_d_generateMatchPosition as generateMatchPosition, index_d_generateMatchRelationPositions as generateMatchRelationPositions, index_d_generateMatchRelationsNew as generateMatchRelationsNew, index_d_generateRoundRelationsNew as generateRoundRelationsNew, index_d_generateRoundTypeFromEthleteRoundType as generateRoundTypeFromEthleteRoundType, index_d_generateRoundTypeFromGgMatch as generateRoundTypeFromGgMatch, index_d_generateTournamentModeFormEthleteRounds as generateTournamentModeFormEthleteRounds, index_d_generateTournamentModeFormGgData as generateTournamentModeFormGgData, index_d_getAvailableSwissGroupsForRound as getAvailableSwissGroupsForRound, index_d_logRoundRelations as logRoundRelations };
|
|
4119
|
+
export type { index_d_BracketDataLayout as BracketDataLayout, index_d_BracketDataSource as BracketDataSource, index_d_BracketMatchFactor as BracketMatchFactor, index_d_BracketMatchId as BracketMatchId, index_d_BracketMatchPosition as BracketMatchPosition, index_d_BracketMatchRelation as BracketMatchRelation, index_d_BracketMatchRelationNothingToOne as BracketMatchRelationNothingToOne, index_d_BracketMatchRelationOneToNothing as BracketMatchRelationOneToNothing, index_d_BracketMatchRelationOneToOne as BracketMatchRelationOneToOne, index_d_BracketMatchRelationTwoToNothing as BracketMatchRelationTwoToNothing, index_d_BracketMatchRelationTwoToOne as BracketMatchRelationTwoToOne, index_d_BracketMatchShortId as BracketMatchShortId, index_d_BracketMatchSource as BracketMatchSource, index_d_BracketMatchStatus as BracketMatchStatus, index_d_BracketRoundId as BracketRoundId, index_d_BracketRoundMapWithSwissData as BracketRoundMapWithSwissData, index_d_BracketRoundMirrorType as BracketRoundMirrorType, index_d_BracketRoundPosition as BracketRoundPosition, index_d_BracketRoundRelation as BracketRoundRelation, index_d_BracketRoundRelationNothingToOne as BracketRoundRelationNothingToOne, index_d_BracketRoundRelationOneToNothing as BracketRoundRelationOneToNothing, index_d_BracketRoundRelationOneToOne as BracketRoundRelationOneToOne, index_d_BracketRoundRelationTwoToNothing as BracketRoundRelationTwoToNothing, index_d_BracketRoundRelationTwoToOne as BracketRoundRelationTwoToOne, index_d_BracketRoundShortId as BracketRoundShortId, index_d_BracketRoundSource as BracketRoundSource, index_d_BracketRoundSwissData as BracketRoundSwissData, index_d_BracketRoundSwissGroup as BracketRoundSwissGroup, index_d_BracketRoundSwissGroupId as BracketRoundSwissGroupId, index_d_BracketRoundSwissGroupMap as BracketRoundSwissGroupMap, index_d_BracketRoundType as BracketRoundType, index_d_CommonBracketRoundType as CommonBracketRoundType, index_d_DoubleEliminationBracketRoundType as DoubleEliminationBracketRoundType, index_d_GenerateBracketDataOptions as GenerateBracketDataOptions, index_d_GroupBracketRoundType as GroupBracketRoundType, index_d_MatchParticipantId as MatchParticipantId, index_d_MatchParticipantShortId as MatchParticipantShortId, index_d_MatchParticipantSide as MatchParticipantSide, index_d_MatchPositionMaps as MatchPositionMaps, index_d_NewBracket as NewBracket, index_d_NewBracketBase as NewBracketBase, index_d_NewBracketMatch as NewBracketMatch, index_d_NewBracketMatchBase as NewBracketMatchBase, index_d_NewBracketMatchParticipant as NewBracketMatchParticipant, index_d_NewBracketMatchParticipantBase as NewBracketMatchParticipantBase, index_d_NewBracketMatchParticipantWithRelationsBase as NewBracketMatchParticipantWithRelationsBase, index_d_NewBracketMatchWithRelationsBase as NewBracketMatchWithRelationsBase, index_d_NewBracketParticipant as NewBracketParticipant, index_d_NewBracketParticipantBase as NewBracketParticipantBase, index_d_NewBracketParticipantMatch as NewBracketParticipantMatch, index_d_NewBracketParticipantWithRelationsBase as NewBracketParticipantWithRelationsBase, index_d_NewBracketRound as NewBracketRound, index_d_NewBracketRoundBase as NewBracketRoundBase, index_d_NewBracketRoundWithRelationsBase as NewBracketRoundWithRelationsBase, index_d_ParticipantMatchResult as ParticipantMatchResult, index_d_SingleEliminationBracketRoundType as SingleEliminationBracketRoundType, index_d_SwissBracketRoundType as SwissBracketRoundType, index_d_TournamentMode as TournamentMode };
|
|
4068
4120
|
}
|
|
4069
4121
|
|
|
4070
4122
|
declare const BRACKET_TOKEN: InjectionToken<BracketComponent>;
|