@scoreboardmax/api-types 1.0.34-next.29 → 1.0.34-next.30
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 +5 -0
- package/dist/internal.d.ts +5 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -354,6 +354,7 @@ export interface BaseballInsightResponse {
|
|
|
354
354
|
final: boolean;
|
|
355
355
|
leadChanges: number;
|
|
356
356
|
ties: number;
|
|
357
|
+
innings: number;
|
|
357
358
|
}
|
|
358
359
|
/**
|
|
359
360
|
* Baseball game settings model
|
|
@@ -387,6 +388,7 @@ export interface BaseballInsightTeam {
|
|
|
387
388
|
largestLeadAmount: number | null;
|
|
388
389
|
largestLeadInning: number | null;
|
|
389
390
|
batter: BaseballBatterSummary | null;
|
|
391
|
+
onDeck: BaseballBatterSummary | null;
|
|
390
392
|
pitcher: BaseballPitcherSummary | null;
|
|
391
393
|
inningSummaries: BaseballInningSummary[];
|
|
392
394
|
batterSummaries: BaseballBatterSummary[];
|
|
@@ -1339,6 +1341,9 @@ export interface BaseballPitcherSummary {
|
|
|
1339
1341
|
walks: number;
|
|
1340
1342
|
balls: number;
|
|
1341
1343
|
strikes: number;
|
|
1344
|
+
hits: number;
|
|
1345
|
+
/** Average pitches per completed plate appearance (null if no completed PAs) */
|
|
1346
|
+
pitchesPerPlateAppearance: number | null;
|
|
1342
1347
|
}
|
|
1343
1348
|
/**
|
|
1344
1349
|
* Per-plate-appearance record within an inning
|
package/dist/internal.d.ts
CHANGED
|
@@ -377,6 +377,7 @@ export interface BaseballInsightResponse {
|
|
|
377
377
|
final: boolean;
|
|
378
378
|
leadChanges: number;
|
|
379
379
|
ties: number;
|
|
380
|
+
innings: number;
|
|
380
381
|
}
|
|
381
382
|
/**
|
|
382
383
|
* Baseball game settings model
|
|
@@ -410,6 +411,7 @@ export interface BaseballInsightTeam {
|
|
|
410
411
|
largestLeadAmount: number | null;
|
|
411
412
|
largestLeadInning: number | null;
|
|
412
413
|
batter: BaseballBatterSummary | null;
|
|
414
|
+
onDeck: BaseballBatterSummary | null;
|
|
413
415
|
pitcher: BaseballPitcherSummary | null;
|
|
414
416
|
inningSummaries: BaseballInningSummary[];
|
|
415
417
|
batterSummaries: BaseballBatterSummary[];
|
|
@@ -1362,6 +1364,9 @@ export interface BaseballPitcherSummary {
|
|
|
1362
1364
|
walks: number;
|
|
1363
1365
|
balls: number;
|
|
1364
1366
|
strikes: number;
|
|
1367
|
+
hits: number;
|
|
1368
|
+
/** Average pitches per completed plate appearance (null if no completed PAs) */
|
|
1369
|
+
pitchesPerPlateAppearance: number | null;
|
|
1365
1370
|
}
|
|
1366
1371
|
/**
|
|
1367
1372
|
* Per-plate-appearance record within an inning
|