@globalscoutme/api-client 1.1.21 → 1.1.22
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/types.gen.d.ts +4 -0
- package/package.json +1 -1
- package/types.gen.ts +4 -0
package/dist/types.gen.d.ts
CHANGED
|
@@ -2401,6 +2401,10 @@ export type DashboardVideoCardDto = {
|
|
|
2401
2401
|
* GSI profile score
|
|
2402
2402
|
*/
|
|
2403
2403
|
gsiScore?: number | null;
|
|
2404
|
+
/**
|
|
2405
|
+
* Whether the authenticated caller has this player on their watchlist; null when not applicable
|
|
2406
|
+
*/
|
|
2407
|
+
isWatchlisted: boolean | null;
|
|
2404
2408
|
};
|
|
2405
2409
|
export type ScoutDashboardResponseDto = {
|
|
2406
2410
|
stats: DashboardStatsDto;
|
package/package.json
CHANGED
package/types.gen.ts
CHANGED
|
@@ -2578,6 +2578,10 @@ export type DashboardVideoCardDto = {
|
|
|
2578
2578
|
* GSI profile score
|
|
2579
2579
|
*/
|
|
2580
2580
|
gsiScore?: number | null;
|
|
2581
|
+
/**
|
|
2582
|
+
* Whether the authenticated caller has this player on their watchlist; null when not applicable
|
|
2583
|
+
*/
|
|
2584
|
+
isWatchlisted: boolean | null;
|
|
2581
2585
|
};
|
|
2582
2586
|
|
|
2583
2587
|
export type ScoutDashboardResponseDto = {
|