@koloseum/types 0.2.7 → 0.2.8
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.
|
@@ -11,7 +11,7 @@ export interface Game {
|
|
|
11
11
|
coverUrl?: string;
|
|
12
12
|
}
|
|
13
13
|
export interface League {
|
|
14
|
-
id
|
|
14
|
+
id: string;
|
|
15
15
|
name: string;
|
|
16
16
|
description?: string;
|
|
17
17
|
participantType: EventParticipantType;
|
|
@@ -19,7 +19,7 @@ export interface League {
|
|
|
19
19
|
createdBy?: string;
|
|
20
20
|
}
|
|
21
21
|
export interface Tier {
|
|
22
|
-
id
|
|
22
|
+
id: string;
|
|
23
23
|
leagueId?: string;
|
|
24
24
|
name: string;
|
|
25
25
|
description?: string;
|
|
@@ -29,7 +29,7 @@ export interface Tier {
|
|
|
29
29
|
divisions?: Division[];
|
|
30
30
|
}
|
|
31
31
|
export interface Division {
|
|
32
|
-
id
|
|
32
|
+
id: string;
|
|
33
33
|
tierId?: string;
|
|
34
34
|
name: string;
|
|
35
35
|
description?: string;
|
|
@@ -37,7 +37,7 @@ export interface Division {
|
|
|
37
37
|
discontinuedAt?: string;
|
|
38
38
|
}
|
|
39
39
|
export interface Season {
|
|
40
|
-
id
|
|
40
|
+
id: string;
|
|
41
41
|
divisionId?: string;
|
|
42
42
|
name: string;
|
|
43
43
|
description?: string;
|
|
@@ -48,7 +48,7 @@ export interface Season {
|
|
|
48
48
|
status?: EventStatus;
|
|
49
49
|
}
|
|
50
50
|
export interface Tournament {
|
|
51
|
-
id
|
|
51
|
+
id: string;
|
|
52
52
|
seasonId?: string;
|
|
53
53
|
name: string;
|
|
54
54
|
description?: string;
|
|
@@ -67,7 +67,7 @@ export interface TournamentMetadata {
|
|
|
67
67
|
};
|
|
68
68
|
}
|
|
69
69
|
export interface CompetitionEvent {
|
|
70
|
-
id
|
|
70
|
+
id: string;
|
|
71
71
|
name: string;
|
|
72
72
|
description?: string;
|
|
73
73
|
participantType: EventParticipantType;
|
package/dist/general.d.ts
CHANGED