rategame-shared 1.1.62 → 1.1.64

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.
@@ -855,7 +855,7 @@ export declare const commonGameSchema: z.ZodObject<{
855
855
  };
856
856
  } | undefined;
857
857
  }>;
858
- export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
858
+ export declare const basketballGameSchema: z.ZodObject<{
859
859
  id: z.ZodOptional<z.ZodString>;
860
860
  status: z.ZodUnion<[z.ZodLiteral<"scheduled">, z.ZodLiteral<"live">, z.ZodLiteral<"final">]>;
861
861
  isClosed: z.ZodOptional<z.ZodBoolean>;
@@ -967,7 +967,6 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
967
967
  options: Record<number, number>;
968
968
  };
969
969
  }>>;
970
- }, {
971
970
  round: z.ZodNumber;
972
971
  timeRemainingMinutes: z.ZodNumber;
973
972
  timeRemainingSeconds: z.ZodNumber;
@@ -986,7 +985,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
986
985
  }>, "many">;
987
986
  periodType: z.ZodUnion<[z.ZodLiteral<"half">, z.ZodLiteral<"quarter">]>;
988
987
  periodDuration: z.ZodNumber;
989
- }>, "strip", z.ZodTypeAny, {
988
+ }, "strip", z.ZodTypeAny, {
990
989
  round: number;
991
990
  status: "live" | "scheduled" | "final";
992
991
  startedAt: number;
@@ -1108,7 +1107,7 @@ export declare const inningSchema: z.ZodObject<{
1108
1107
  homeScore: number;
1109
1108
  inningNumber: number;
1110
1109
  }>;
1111
- export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
1110
+ export declare const mlbGameSchema: z.ZodObject<{
1112
1111
  id: z.ZodOptional<z.ZodString>;
1113
1112
  status: z.ZodUnion<[z.ZodLiteral<"scheduled">, z.ZodLiteral<"live">, z.ZodLiteral<"final">]>;
1114
1113
  isClosed: z.ZodOptional<z.ZodBoolean>;
@@ -1220,7 +1219,6 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
1220
1219
  options: Record<number, number>;
1221
1220
  };
1222
1221
  }>>;
1223
- }, {
1224
1222
  totalInningsRemaining: z.ZodNumber;
1225
1223
  innings: z.ZodArray<z.ZodObject<{
1226
1224
  inningNumber: z.ZodNumber;
@@ -1249,7 +1247,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
1249
1247
  runnerOnFirst: z.ZodOptional<z.ZodBoolean>;
1250
1248
  runnerOnSecond: z.ZodOptional<z.ZodBoolean>;
1251
1249
  runnerOnThird: z.ZodOptional<z.ZodBoolean>;
1252
- }>, "strip", z.ZodTypeAny, {
1250
+ }, "strip", z.ZodTypeAny, {
1253
1251
  status: "live" | "scheduled" | "final";
1254
1252
  startedAt: number;
1255
1253
  finishedAt: number;
@@ -1378,7 +1376,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
1378
1376
  runnerOnSecond?: boolean | undefined;
1379
1377
  runnerOnThird?: boolean | undefined;
1380
1378
  }>;
1381
- export declare const eplGameSchema: z.ZodObject<z.objectUtil.extendShape<{
1379
+ export declare const eplGameSchema: z.ZodObject<{
1382
1380
  id: z.ZodOptional<z.ZodString>;
1383
1381
  status: z.ZodUnion<[z.ZodLiteral<"scheduled">, z.ZodLiteral<"live">, z.ZodLiteral<"final">]>;
1384
1382
  isClosed: z.ZodOptional<z.ZodBoolean>;
@@ -1386,69 +1384,6 @@ export declare const eplGameSchema: z.ZodObject<z.objectUtil.extendShape<{
1386
1384
  finishedAt: z.ZodNumber;
1387
1385
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
1388
1386
  apiGameId: z.ZodNumber;
1389
- league: z.ZodUnion<[z.ZodLiteral<"ncaa">, z.ZodLiteral<"nba">, z.ZodLiteral<"mlb">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mls">, z.ZodLiteral<"cfb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"epl">]>;
1390
- homeTeam: z.ZodObject<{
1391
- id: z.ZodOptional<z.ZodString>;
1392
- apiTeamId: z.ZodNumber;
1393
- name: z.ZodString;
1394
- score: z.ZodNumber;
1395
- isWinner: z.ZodOptional<z.ZodBoolean>;
1396
- image: z.ZodString;
1397
- seed: z.ZodOptional<z.ZodNumber>;
1398
- teamCode: z.ZodOptional<z.ZodString>;
1399
- scoreExtraTime: z.ZodOptional<z.ZodNumber>;
1400
- }, "strip", z.ZodTypeAny, {
1401
- name: string;
1402
- image: string;
1403
- apiTeamId: number;
1404
- score: number;
1405
- id?: string | undefined;
1406
- isWinner?: boolean | undefined;
1407
- seed?: number | undefined;
1408
- teamCode?: string | undefined;
1409
- scoreExtraTime?: number | undefined;
1410
- }, {
1411
- name: string;
1412
- image: string;
1413
- apiTeamId: number;
1414
- score: number;
1415
- id?: string | undefined;
1416
- isWinner?: boolean | undefined;
1417
- seed?: number | undefined;
1418
- teamCode?: string | undefined;
1419
- scoreExtraTime?: number | undefined;
1420
- }>;
1421
- awayTeam: z.ZodObject<{
1422
- id: z.ZodOptional<z.ZodString>;
1423
- apiTeamId: z.ZodNumber;
1424
- name: z.ZodString;
1425
- score: z.ZodNumber;
1426
- isWinner: z.ZodOptional<z.ZodBoolean>;
1427
- image: z.ZodString;
1428
- seed: z.ZodOptional<z.ZodNumber>;
1429
- teamCode: z.ZodOptional<z.ZodString>;
1430
- scoreExtraTime: z.ZodOptional<z.ZodNumber>;
1431
- }, "strip", z.ZodTypeAny, {
1432
- name: string;
1433
- image: string;
1434
- apiTeamId: number;
1435
- score: number;
1436
- id?: string | undefined;
1437
- isWinner?: boolean | undefined;
1438
- seed?: number | undefined;
1439
- teamCode?: string | undefined;
1440
- scoreExtraTime?: number | undefined;
1441
- }, {
1442
- name: string;
1443
- image: string;
1444
- apiTeamId: number;
1445
- score: number;
1446
- id?: string | undefined;
1447
- isWinner?: boolean | undefined;
1448
- seed?: number | undefined;
1449
- teamCode?: string | undefined;
1450
- scoreExtraTime?: number | undefined;
1451
- }>;
1452
1387
  seriesInfo: z.ZodOptional<z.ZodObject<{
1453
1388
  homeTeamWins: z.ZodNumber;
1454
1389
  awayTeamWins: z.ZodNumber;
@@ -1490,7 +1425,6 @@ export declare const eplGameSchema: z.ZodObject<z.objectUtil.extendShape<{
1490
1425
  options: Record<number, number>;
1491
1426
  };
1492
1427
  }>>;
1493
- }, {
1494
1428
  league: z.ZodLiteral<"epl">;
1495
1429
  week: z.ZodNumber;
1496
1430
  period: z.ZodString;
@@ -1500,23 +1434,21 @@ export declare const eplGameSchema: z.ZodObject<z.objectUtil.extendShape<{
1500
1434
  venueType: z.ZodString;
1501
1435
  attendance: z.ZodNumber;
1502
1436
  aggregateScore: z.ZodString;
1503
- homeTeam: z.ZodObject<z.objectUtil.extendShape<{
1437
+ homeTeam: z.ZodObject<{
1504
1438
  id: z.ZodOptional<z.ZodString>;
1505
- apiTeamId: z.ZodNumber;
1506
1439
  name: z.ZodString;
1440
+ image: z.ZodString;
1441
+ apiTeamId: z.ZodNumber;
1507
1442
  score: z.ZodNumber;
1508
1443
  isWinner: z.ZodOptional<z.ZodBoolean>;
1509
- image: z.ZodString;
1510
1444
  seed: z.ZodOptional<z.ZodNumber>;
1511
1445
  teamCode: z.ZodOptional<z.ZodString>;
1512
- scoreExtraTime: z.ZodOptional<z.ZodNumber>;
1513
- }, {
1514
1446
  scorePeriod1: z.ZodNumber;
1515
1447
  scorePeriod2: z.ZodNumber;
1516
1448
  scoreExtraTime: z.ZodNumber;
1517
1449
  scorePenalty: z.ZodNumber;
1518
1450
  venueName: z.ZodOptional<z.ZodString>;
1519
- }>, "strip", z.ZodTypeAny, {
1451
+ }, "strip", z.ZodTypeAny, {
1520
1452
  name: string;
1521
1453
  image: string;
1522
1454
  apiTeamId: number;
@@ -1545,23 +1477,21 @@ export declare const eplGameSchema: z.ZodObject<z.objectUtil.extendShape<{
1545
1477
  teamCode?: string | undefined;
1546
1478
  venueName?: string | undefined;
1547
1479
  }>;
1548
- awayTeam: z.ZodObject<z.objectUtil.extendShape<{
1480
+ awayTeam: z.ZodObject<{
1549
1481
  id: z.ZodOptional<z.ZodString>;
1550
- apiTeamId: z.ZodNumber;
1551
1482
  name: z.ZodString;
1483
+ image: z.ZodString;
1484
+ apiTeamId: z.ZodNumber;
1552
1485
  score: z.ZodNumber;
1553
1486
  isWinner: z.ZodOptional<z.ZodBoolean>;
1554
- image: z.ZodString;
1555
1487
  seed: z.ZodOptional<z.ZodNumber>;
1556
1488
  teamCode: z.ZodOptional<z.ZodString>;
1557
- scoreExtraTime: z.ZodOptional<z.ZodNumber>;
1558
- }, {
1559
1489
  scorePeriod1: z.ZodNumber;
1560
1490
  scorePeriod2: z.ZodNumber;
1561
1491
  scoreExtraTime: z.ZodNumber;
1562
1492
  scorePenalty: z.ZodNumber;
1563
1493
  venueName: z.ZodOptional<z.ZodString>;
1564
- }>, "strip", z.ZodTypeAny, {
1494
+ }, "strip", z.ZodTypeAny, {
1565
1495
  name: string;
1566
1496
  image: string;
1567
1497
  apiTeamId: number;
@@ -1591,7 +1521,7 @@ export declare const eplGameSchema: z.ZodObject<z.objectUtil.extendShape<{
1591
1521
  venueName?: string | undefined;
1592
1522
  }>;
1593
1523
  hadExtraTime: z.ZodBoolean;
1594
- }>, "strip", z.ZodTypeAny, {
1524
+ }, "strip", z.ZodTypeAny, {
1595
1525
  status: "live" | "scheduled" | "final";
1596
1526
  week: number;
1597
1527
  startedAt: number;
@@ -1714,14 +1644,15 @@ export declare const eplGameSchema: z.ZodObject<z.objectUtil.extendShape<{
1714
1644
  };
1715
1645
  } | undefined;
1716
1646
  }>;
1717
- export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1647
+ export declare const nflGameSchema: z.ZodObject<{
1718
1648
  id: z.ZodOptional<z.ZodString>;
1719
1649
  status: z.ZodUnion<[z.ZodLiteral<"scheduled">, z.ZodLiteral<"live">, z.ZodLiteral<"final">]>;
1650
+ quarter: z.ZodNullable<z.ZodString>;
1651
+ week: z.ZodOptional<z.ZodNumber>;
1720
1652
  isClosed: z.ZodOptional<z.ZodBoolean>;
1721
1653
  startedAt: z.ZodNumber;
1722
1654
  finishedAt: z.ZodNumber;
1723
1655
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
1724
- apiGameId: z.ZodNumber;
1725
1656
  league: z.ZodUnion<[z.ZodLiteral<"ncaa">, z.ZodLiteral<"nba">, z.ZodLiteral<"mlb">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mls">, z.ZodLiteral<"cfb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"epl">]>;
1726
1657
  homeTeam: z.ZodObject<{
1727
1658
  id: z.ZodOptional<z.ZodString>;
@@ -1826,17 +1757,13 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
1826
1757
  options: Record<number, number>;
1827
1758
  };
1828
1759
  }>>;
1829
- }, {
1830
1760
  possession: z.ZodNullable<z.ZodString>;
1831
1761
  down: z.ZodNullable<z.ZodNumber>;
1832
1762
  distance: z.ZodNullable<z.ZodString>;
1833
1763
  yardLine: z.ZodNullable<z.ZodNumber>;
1834
1764
  seasonType: z.ZodNumber;
1835
1765
  season: z.ZodNumber;
1836
- week: z.ZodOptional<z.ZodNumber>;
1837
- quarter: z.ZodNullable<z.ZodString>;
1838
1766
  yardLineTerritory: z.ZodNullable<z.ZodString>;
1839
- }>, {
1840
1767
  apiGameId: z.ZodString;
1841
1768
  timeRemaining: z.ZodNullable<z.ZodString>;
1842
1769
  redZone: z.ZodNullable<z.ZodString>;
@@ -1885,7 +1812,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
1885
1812
  GeoLong: number | null;
1886
1813
  Type: string | null;
1887
1814
  }>>;
1888
- }>, "strip", z.ZodTypeAny, {
1815
+ }, "strip", z.ZodTypeAny, {
1889
1816
  status: "live" | "scheduled" | "final";
1890
1817
  quarter: string | null;
1891
1818
  startedAt: number;
@@ -2042,9 +1969,11 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
2042
1969
  Type: string | null;
2043
1970
  } | undefined;
2044
1971
  }>;
2045
- export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1972
+ export declare const cfbGameSchema: z.ZodObject<{
2046
1973
  id: z.ZodOptional<z.ZodString>;
2047
1974
  status: z.ZodUnion<[z.ZodLiteral<"scheduled">, z.ZodLiteral<"live">, z.ZodLiteral<"final">]>;
1975
+ quarter: z.ZodNullable<z.ZodString>;
1976
+ week: z.ZodOptional<z.ZodNumber>;
2048
1977
  isClosed: z.ZodOptional<z.ZodBoolean>;
2049
1978
  startedAt: z.ZodNumber;
2050
1979
  finishedAt: z.ZodNumber;
@@ -2154,17 +2083,13 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
2154
2083
  options: Record<number, number>;
2155
2084
  };
2156
2085
  }>>;
2157
- }, {
2158
2086
  possession: z.ZodNullable<z.ZodString>;
2159
2087
  down: z.ZodNullable<z.ZodNumber>;
2160
2088
  distance: z.ZodNullable<z.ZodString>;
2161
2089
  yardLine: z.ZodNullable<z.ZodNumber>;
2162
2090
  seasonType: z.ZodNumber;
2163
2091
  season: z.ZodNumber;
2164
- week: z.ZodOptional<z.ZodNumber>;
2165
- quarter: z.ZodNullable<z.ZodString>;
2166
2092
  yardLineTerritory: z.ZodNullable<z.ZodString>;
2167
- }>, {
2168
2093
  timeRemainingMinutes: z.ZodNumber;
2169
2094
  timeRemainingSeconds: z.ZodNumber;
2170
2095
  periods: z.ZodArray<z.ZodObject<{
@@ -2209,7 +2134,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
2209
2134
  Dome: boolean;
2210
2135
  }>>;
2211
2136
  attendance: z.ZodNumber;
2212
- }>, "strip", z.ZodTypeAny, {
2137
+ }, "strip", z.ZodTypeAny, {
2213
2138
  status: "live" | "scheduled" | "final";
2214
2139
  quarter: string | null;
2215
2140
  startedAt: number;
@@ -2352,7 +2277,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
2352
2277
  Dome: boolean;
2353
2278
  } | undefined;
2354
2279
  }>;
2355
- export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
2280
+ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<{
2356
2281
  id: z.ZodOptional<z.ZodString>;
2357
2282
  status: z.ZodUnion<[z.ZodLiteral<"scheduled">, z.ZodLiteral<"live">, z.ZodLiteral<"final">]>;
2358
2283
  isClosed: z.ZodOptional<z.ZodBoolean>;
@@ -2464,7 +2389,6 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
2464
2389
  options: Record<number, number>;
2465
2390
  };
2466
2391
  }>>;
2467
- }, {
2468
2392
  round: z.ZodNumber;
2469
2393
  timeRemainingMinutes: z.ZodNumber;
2470
2394
  timeRemainingSeconds: z.ZodNumber;
@@ -2483,7 +2407,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
2483
2407
  }>, "many">;
2484
2408
  periodType: z.ZodUnion<[z.ZodLiteral<"half">, z.ZodLiteral<"quarter">]>;
2485
2409
  periodDuration: z.ZodNumber;
2486
- }>, "strip", z.ZodTypeAny, {
2410
+ }, "strip", z.ZodTypeAny, {
2487
2411
  round: number;
2488
2412
  status: "live" | "scheduled" | "final";
2489
2413
  startedAt: number;
@@ -2591,7 +2515,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
2591
2515
  options: Record<number, number>;
2592
2516
  };
2593
2517
  } | undefined;
2594
- }>, z.ZodObject<z.objectUtil.extendShape<{
2518
+ }>, z.ZodObject<{
2595
2519
  id: z.ZodOptional<z.ZodString>;
2596
2520
  status: z.ZodUnion<[z.ZodLiteral<"scheduled">, z.ZodLiteral<"live">, z.ZodLiteral<"final">]>;
2597
2521
  isClosed: z.ZodOptional<z.ZodBoolean>;
@@ -2703,7 +2627,6 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
2703
2627
  options: Record<number, number>;
2704
2628
  };
2705
2629
  }>>;
2706
- }, {
2707
2630
  totalInningsRemaining: z.ZodNumber;
2708
2631
  innings: z.ZodArray<z.ZodObject<{
2709
2632
  inningNumber: z.ZodNumber;
@@ -2732,7 +2655,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
2732
2655
  runnerOnFirst: z.ZodOptional<z.ZodBoolean>;
2733
2656
  runnerOnSecond: z.ZodOptional<z.ZodBoolean>;
2734
2657
  runnerOnThird: z.ZodOptional<z.ZodBoolean>;
2735
- }>, "strip", z.ZodTypeAny, {
2658
+ }, "strip", z.ZodTypeAny, {
2736
2659
  status: "live" | "scheduled" | "final";
2737
2660
  startedAt: number;
2738
2661
  finishedAt: number;
@@ -2860,7 +2783,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
2860
2783
  runnerOnFirst?: boolean | undefined;
2861
2784
  runnerOnSecond?: boolean | undefined;
2862
2785
  runnerOnThird?: boolean | undefined;
2863
- }>, z.ZodObject<z.objectUtil.extendShape<{
2786
+ }>, z.ZodObject<{
2864
2787
  id: z.ZodOptional<z.ZodString>;
2865
2788
  status: z.ZodUnion<[z.ZodLiteral<"scheduled">, z.ZodLiteral<"live">, z.ZodLiteral<"final">]>;
2866
2789
  isClosed: z.ZodOptional<z.ZodBoolean>;
@@ -2868,69 +2791,6 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
2868
2791
  finishedAt: z.ZodNumber;
2869
2792
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
2870
2793
  apiGameId: z.ZodNumber;
2871
- league: z.ZodUnion<[z.ZodLiteral<"ncaa">, z.ZodLiteral<"nba">, z.ZodLiteral<"mlb">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mls">, z.ZodLiteral<"cfb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"epl">]>;
2872
- homeTeam: z.ZodObject<{
2873
- id: z.ZodOptional<z.ZodString>;
2874
- apiTeamId: z.ZodNumber;
2875
- name: z.ZodString;
2876
- score: z.ZodNumber;
2877
- isWinner: z.ZodOptional<z.ZodBoolean>;
2878
- image: z.ZodString;
2879
- seed: z.ZodOptional<z.ZodNumber>;
2880
- teamCode: z.ZodOptional<z.ZodString>;
2881
- scoreExtraTime: z.ZodOptional<z.ZodNumber>;
2882
- }, "strip", z.ZodTypeAny, {
2883
- name: string;
2884
- image: string;
2885
- apiTeamId: number;
2886
- score: number;
2887
- id?: string | undefined;
2888
- isWinner?: boolean | undefined;
2889
- seed?: number | undefined;
2890
- teamCode?: string | undefined;
2891
- scoreExtraTime?: number | undefined;
2892
- }, {
2893
- name: string;
2894
- image: string;
2895
- apiTeamId: number;
2896
- score: number;
2897
- id?: string | undefined;
2898
- isWinner?: boolean | undefined;
2899
- seed?: number | undefined;
2900
- teamCode?: string | undefined;
2901
- scoreExtraTime?: number | undefined;
2902
- }>;
2903
- awayTeam: z.ZodObject<{
2904
- id: z.ZodOptional<z.ZodString>;
2905
- apiTeamId: z.ZodNumber;
2906
- name: z.ZodString;
2907
- score: z.ZodNumber;
2908
- isWinner: z.ZodOptional<z.ZodBoolean>;
2909
- image: z.ZodString;
2910
- seed: z.ZodOptional<z.ZodNumber>;
2911
- teamCode: z.ZodOptional<z.ZodString>;
2912
- scoreExtraTime: z.ZodOptional<z.ZodNumber>;
2913
- }, "strip", z.ZodTypeAny, {
2914
- name: string;
2915
- image: string;
2916
- apiTeamId: number;
2917
- score: number;
2918
- id?: string | undefined;
2919
- isWinner?: boolean | undefined;
2920
- seed?: number | undefined;
2921
- teamCode?: string | undefined;
2922
- scoreExtraTime?: number | undefined;
2923
- }, {
2924
- name: string;
2925
- image: string;
2926
- apiTeamId: number;
2927
- score: number;
2928
- id?: string | undefined;
2929
- isWinner?: boolean | undefined;
2930
- seed?: number | undefined;
2931
- teamCode?: string | undefined;
2932
- scoreExtraTime?: number | undefined;
2933
- }>;
2934
2794
  seriesInfo: z.ZodOptional<z.ZodObject<{
2935
2795
  homeTeamWins: z.ZodNumber;
2936
2796
  awayTeamWins: z.ZodNumber;
@@ -2972,7 +2832,6 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
2972
2832
  options: Record<number, number>;
2973
2833
  };
2974
2834
  }>>;
2975
- }, {
2976
2835
  league: z.ZodLiteral<"epl">;
2977
2836
  week: z.ZodNumber;
2978
2837
  period: z.ZodString;
@@ -2982,23 +2841,21 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
2982
2841
  venueType: z.ZodString;
2983
2842
  attendance: z.ZodNumber;
2984
2843
  aggregateScore: z.ZodString;
2985
- homeTeam: z.ZodObject<z.objectUtil.extendShape<{
2844
+ homeTeam: z.ZodObject<{
2986
2845
  id: z.ZodOptional<z.ZodString>;
2987
- apiTeamId: z.ZodNumber;
2988
2846
  name: z.ZodString;
2847
+ image: z.ZodString;
2848
+ apiTeamId: z.ZodNumber;
2989
2849
  score: z.ZodNumber;
2990
2850
  isWinner: z.ZodOptional<z.ZodBoolean>;
2991
- image: z.ZodString;
2992
2851
  seed: z.ZodOptional<z.ZodNumber>;
2993
2852
  teamCode: z.ZodOptional<z.ZodString>;
2994
- scoreExtraTime: z.ZodOptional<z.ZodNumber>;
2995
- }, {
2996
2853
  scorePeriod1: z.ZodNumber;
2997
2854
  scorePeriod2: z.ZodNumber;
2998
2855
  scoreExtraTime: z.ZodNumber;
2999
2856
  scorePenalty: z.ZodNumber;
3000
2857
  venueName: z.ZodOptional<z.ZodString>;
3001
- }>, "strip", z.ZodTypeAny, {
2858
+ }, "strip", z.ZodTypeAny, {
3002
2859
  name: string;
3003
2860
  image: string;
3004
2861
  apiTeamId: number;
@@ -3027,23 +2884,21 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
3027
2884
  teamCode?: string | undefined;
3028
2885
  venueName?: string | undefined;
3029
2886
  }>;
3030
- awayTeam: z.ZodObject<z.objectUtil.extendShape<{
2887
+ awayTeam: z.ZodObject<{
3031
2888
  id: z.ZodOptional<z.ZodString>;
3032
- apiTeamId: z.ZodNumber;
3033
2889
  name: z.ZodString;
2890
+ image: z.ZodString;
2891
+ apiTeamId: z.ZodNumber;
3034
2892
  score: z.ZodNumber;
3035
2893
  isWinner: z.ZodOptional<z.ZodBoolean>;
3036
- image: z.ZodString;
3037
2894
  seed: z.ZodOptional<z.ZodNumber>;
3038
2895
  teamCode: z.ZodOptional<z.ZodString>;
3039
- scoreExtraTime: z.ZodOptional<z.ZodNumber>;
3040
- }, {
3041
2896
  scorePeriod1: z.ZodNumber;
3042
2897
  scorePeriod2: z.ZodNumber;
3043
2898
  scoreExtraTime: z.ZodNumber;
3044
2899
  scorePenalty: z.ZodNumber;
3045
2900
  venueName: z.ZodOptional<z.ZodString>;
3046
- }>, "strip", z.ZodTypeAny, {
2901
+ }, "strip", z.ZodTypeAny, {
3047
2902
  name: string;
3048
2903
  image: string;
3049
2904
  apiTeamId: number;
@@ -3073,7 +2928,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
3073
2928
  venueName?: string | undefined;
3074
2929
  }>;
3075
2930
  hadExtraTime: z.ZodBoolean;
3076
- }>, "strip", z.ZodTypeAny, {
2931
+ }, "strip", z.ZodTypeAny, {
3077
2932
  status: "live" | "scheduled" | "final";
3078
2933
  week: number;
3079
2934
  startedAt: number;
@@ -3195,14 +3050,15 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
3195
3050
  options: Record<number, number>;
3196
3051
  };
3197
3052
  } | undefined;
3198
- }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
3053
+ }>, z.ZodObject<{
3199
3054
  id: z.ZodOptional<z.ZodString>;
3200
3055
  status: z.ZodUnion<[z.ZodLiteral<"scheduled">, z.ZodLiteral<"live">, z.ZodLiteral<"final">]>;
3056
+ quarter: z.ZodNullable<z.ZodString>;
3057
+ week: z.ZodOptional<z.ZodNumber>;
3201
3058
  isClosed: z.ZodOptional<z.ZodBoolean>;
3202
3059
  startedAt: z.ZodNumber;
3203
3060
  finishedAt: z.ZodNumber;
3204
3061
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
3205
- apiGameId: z.ZodNumber;
3206
3062
  league: z.ZodUnion<[z.ZodLiteral<"ncaa">, z.ZodLiteral<"nba">, z.ZodLiteral<"mlb">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mls">, z.ZodLiteral<"cfb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"epl">]>;
3207
3063
  homeTeam: z.ZodObject<{
3208
3064
  id: z.ZodOptional<z.ZodString>;
@@ -3307,17 +3163,13 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
3307
3163
  options: Record<number, number>;
3308
3164
  };
3309
3165
  }>>;
3310
- }, {
3311
3166
  possession: z.ZodNullable<z.ZodString>;
3312
3167
  down: z.ZodNullable<z.ZodNumber>;
3313
3168
  distance: z.ZodNullable<z.ZodString>;
3314
3169
  yardLine: z.ZodNullable<z.ZodNumber>;
3315
3170
  seasonType: z.ZodNumber;
3316
3171
  season: z.ZodNumber;
3317
- week: z.ZodOptional<z.ZodNumber>;
3318
- quarter: z.ZodNullable<z.ZodString>;
3319
3172
  yardLineTerritory: z.ZodNullable<z.ZodString>;
3320
- }>, {
3321
3173
  apiGameId: z.ZodString;
3322
3174
  timeRemaining: z.ZodNullable<z.ZodString>;
3323
3175
  redZone: z.ZodNullable<z.ZodString>;
@@ -3366,7 +3218,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
3366
3218
  GeoLong: number | null;
3367
3219
  Type: string | null;
3368
3220
  }>>;
3369
- }>, "strip", z.ZodTypeAny, {
3221
+ }, "strip", z.ZodTypeAny, {
3370
3222
  status: "live" | "scheduled" | "final";
3371
3223
  quarter: string | null;
3372
3224
  startedAt: number;
@@ -3522,9 +3374,11 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
3522
3374
  GeoLong: number | null;
3523
3375
  Type: string | null;
3524
3376
  } | undefined;
3525
- }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
3377
+ }>, z.ZodObject<{
3526
3378
  id: z.ZodOptional<z.ZodString>;
3527
3379
  status: z.ZodUnion<[z.ZodLiteral<"scheduled">, z.ZodLiteral<"live">, z.ZodLiteral<"final">]>;
3380
+ quarter: z.ZodNullable<z.ZodString>;
3381
+ week: z.ZodOptional<z.ZodNumber>;
3528
3382
  isClosed: z.ZodOptional<z.ZodBoolean>;
3529
3383
  startedAt: z.ZodNumber;
3530
3384
  finishedAt: z.ZodNumber;
@@ -3634,17 +3488,13 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
3634
3488
  options: Record<number, number>;
3635
3489
  };
3636
3490
  }>>;
3637
- }, {
3638
3491
  possession: z.ZodNullable<z.ZodString>;
3639
3492
  down: z.ZodNullable<z.ZodNumber>;
3640
3493
  distance: z.ZodNullable<z.ZodString>;
3641
3494
  yardLine: z.ZodNullable<z.ZodNumber>;
3642
3495
  seasonType: z.ZodNumber;
3643
3496
  season: z.ZodNumber;
3644
- week: z.ZodOptional<z.ZodNumber>;
3645
- quarter: z.ZodNullable<z.ZodString>;
3646
3497
  yardLineTerritory: z.ZodNullable<z.ZodString>;
3647
- }>, {
3648
3498
  timeRemainingMinutes: z.ZodNumber;
3649
3499
  timeRemainingSeconds: z.ZodNumber;
3650
3500
  periods: z.ZodArray<z.ZodObject<{
@@ -3689,7 +3539,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
3689
3539
  Dome: boolean;
3690
3540
  }>>;
3691
3541
  attendance: z.ZodNumber;
3692
- }>, "strip", z.ZodTypeAny, {
3542
+ }, "strip", z.ZodTypeAny, {
3693
3543
  status: "live" | "scheduled" | "final";
3694
3544
  quarter: string | null;
3695
3545
  startedAt: number;
@@ -3843,20 +3693,20 @@ export declare const searchGameSchema: z.ZodObject<{
3843
3693
  offset: z.ZodOptional<z.ZodString>;
3844
3694
  }, "strip", z.ZodTypeAny, {
3845
3695
  league: "nba" | "ncaa" | "mlb" | "nfl" | "nhl" | "mls" | "cfb" | "cbb" | "epl";
3846
- offset?: string | undefined;
3847
- round?: string | undefined;
3848
3696
  q?: string | undefined;
3849
- createdAt?: "12h" | "daily" | "weekly" | undefined;
3850
3697
  teamId?: string | undefined;
3698
+ round?: string | undefined;
3699
+ createdAt?: "12h" | "daily" | "weekly" | undefined;
3851
3700
  sortBy?: "rating.avg:asc" | "rating.avg:desc" | "startedAt:asc" | "startedAt:desc" | undefined;
3852
3701
  limit?: string | undefined;
3702
+ offset?: string | undefined;
3853
3703
  }, {
3854
3704
  league: "nba" | "ncaa" | "mlb" | "nfl" | "nhl" | "mls" | "cfb" | "cbb" | "epl";
3855
- offset?: string | undefined;
3856
- round?: string | undefined;
3857
3705
  q?: string | undefined;
3858
- createdAt?: "12h" | "daily" | "weekly" | undefined;
3859
3706
  teamId?: string | undefined;
3707
+ round?: string | undefined;
3708
+ createdAt?: "12h" | "daily" | "weekly" | undefined;
3860
3709
  sortBy?: "rating.avg:asc" | "rating.avg:desc" | "startedAt:asc" | "startedAt:desc" | undefined;
3861
3710
  limit?: string | undefined;
3711
+ offset?: string | undefined;
3862
3712
  }>;