@scoreboardmax/api-types 1.0.50 → 1.0.51
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.d.ts +4 -4
- package/dist/internal.d.ts +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1075,8 +1075,7 @@ export declare enum OAuthProvider {
|
|
|
1075
1075
|
export interface OverlayRequest {
|
|
1076
1076
|
type: "players" | "sponsors";
|
|
1077
1077
|
data: PlayerSummaryRequest[] | SponsorSummaryRequest[];
|
|
1078
|
-
title?: string
|
|
1079
|
-
color?: string;
|
|
1078
|
+
title?: string;
|
|
1080
1079
|
}
|
|
1081
1080
|
/**
|
|
1082
1081
|
* Overlay details response
|
|
@@ -1084,8 +1083,7 @@ export interface OverlayRequest {
|
|
|
1084
1083
|
export interface OverlayResponse {
|
|
1085
1084
|
type: "players" | "sponsors";
|
|
1086
1085
|
data: PlayerSummaryResponse[] | SponsorSummaryResponse[];
|
|
1087
|
-
title?: string
|
|
1088
|
-
color?: string;
|
|
1086
|
+
title?: string;
|
|
1089
1087
|
}
|
|
1090
1088
|
/**
|
|
1091
1089
|
* Paginated list of accounts
|
|
@@ -1282,6 +1280,7 @@ export interface PlayerSummaryRequest {
|
|
|
1282
1280
|
position: string | null;
|
|
1283
1281
|
imageFilename: string | null;
|
|
1284
1282
|
reference?: string;
|
|
1283
|
+
teamReference: string;
|
|
1285
1284
|
}
|
|
1286
1285
|
/**
|
|
1287
1286
|
* Player summary response
|
|
@@ -1297,6 +1296,7 @@ export interface PlayerSummaryResponse {
|
|
|
1297
1296
|
imagePreviewUrl: string | null;
|
|
1298
1297
|
imageMediumUrl: string | null;
|
|
1299
1298
|
reference: string;
|
|
1299
|
+
teamReference: string;
|
|
1300
1300
|
}
|
|
1301
1301
|
/**
|
|
1302
1302
|
* Preferences for tuning AI-generated talking points
|
package/dist/internal.d.ts
CHANGED
|
@@ -1098,8 +1098,7 @@ export declare enum OAuthProvider {
|
|
|
1098
1098
|
export interface OverlayRequest {
|
|
1099
1099
|
type: "players" | "sponsors";
|
|
1100
1100
|
data: PlayerSummaryRequest[] | SponsorSummaryRequest[];
|
|
1101
|
-
title?: string
|
|
1102
|
-
color?: string;
|
|
1101
|
+
title?: string;
|
|
1103
1102
|
}
|
|
1104
1103
|
/**
|
|
1105
1104
|
* Overlay details response
|
|
@@ -1107,8 +1106,7 @@ export interface OverlayRequest {
|
|
|
1107
1106
|
export interface OverlayResponse {
|
|
1108
1107
|
type: "players" | "sponsors";
|
|
1109
1108
|
data: PlayerSummaryResponse[] | SponsorSummaryResponse[];
|
|
1110
|
-
title?: string
|
|
1111
|
-
color?: string;
|
|
1109
|
+
title?: string;
|
|
1112
1110
|
}
|
|
1113
1111
|
/**
|
|
1114
1112
|
* Paginated list of accounts
|
|
@@ -1305,6 +1303,7 @@ export interface PlayerSummaryRequest {
|
|
|
1305
1303
|
position: string | null;
|
|
1306
1304
|
imageFilename: string | null;
|
|
1307
1305
|
reference?: string;
|
|
1306
|
+
teamReference: string;
|
|
1308
1307
|
}
|
|
1309
1308
|
/**
|
|
1310
1309
|
* Player summary response
|
|
@@ -1320,6 +1319,7 @@ export interface PlayerSummaryResponse {
|
|
|
1320
1319
|
imagePreviewUrl: string | null;
|
|
1321
1320
|
imageMediumUrl: string | null;
|
|
1322
1321
|
reference: string;
|
|
1322
|
+
teamReference: string;
|
|
1323
1323
|
}
|
|
1324
1324
|
/**
|
|
1325
1325
|
* Preferences for tuning AI-generated talking points
|