volleyballsimtypes 0.0.49 → 0.0.50
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.
|
@@ -12,10 +12,10 @@ export interface APIPlayer {
|
|
|
12
12
|
readonly id: string;
|
|
13
13
|
readonly name: Name;
|
|
14
14
|
readonly country: Country;
|
|
15
|
-
|
|
15
|
+
gameStats: APISetStatistics[];
|
|
16
16
|
readonly roles: Role[];
|
|
17
17
|
readonly traits: APITrait[];
|
|
18
18
|
readonly jerseyNumber: number;
|
|
19
19
|
readonly team: string;
|
|
20
|
-
|
|
20
|
+
generalStats: Stat[];
|
|
21
21
|
}
|
|
@@ -12,10 +12,10 @@ export interface APIPlayer {
|
|
|
12
12
|
readonly id: string;
|
|
13
13
|
readonly name: Name;
|
|
14
14
|
readonly country: Country;
|
|
15
|
-
|
|
15
|
+
gameStats: APISetStatistics[];
|
|
16
16
|
readonly roles: Role[];
|
|
17
17
|
readonly traits: APITrait[];
|
|
18
18
|
readonly jerseyNumber: number;
|
|
19
19
|
readonly team: string;
|
|
20
|
-
|
|
20
|
+
generalStats: Stat[];
|
|
21
21
|
}
|