@dubsdotapp/expo 0.2.39 → 0.2.40

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.mts CHANGED
@@ -195,6 +195,8 @@ interface GameDetail {
195
195
  status: string;
196
196
  league: string | null;
197
197
  lockTimestamp: number | null;
198
+ /** Winning side: 'home' | 'away' | 'draw' | null (null = refund) */
199
+ winnerSide: string | null;
198
200
  opponents: GameListOpponent[];
199
201
  bettors: Bettor[];
200
202
  homePool: number;
package/dist/index.d.ts CHANGED
@@ -195,6 +195,8 @@ interface GameDetail {
195
195
  status: string;
196
196
  league: string | null;
197
197
  lockTimestamp: number | null;
198
+ /** Winning side: 'home' | 'away' | 'draw' | null (null = refund) */
199
+ winnerSide: string | null;
198
200
  opponents: GameListOpponent[];
199
201
  bettors: Bettor[];
200
202
  homePool: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dubsdotapp/expo",
3
- "version": "0.2.39",
3
+ "version": "0.2.40",
4
4
  "description": "React Native SDK for the Dubs betting platform",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
package/src/types.ts CHANGED
@@ -213,6 +213,8 @@ export interface GameDetail {
213
213
  status: string;
214
214
  league: string | null;
215
215
  lockTimestamp: number | null;
216
+ /** Winning side: 'home' | 'away' | 'draw' | null (null = refund) */
217
+ winnerSide: string | null;
216
218
  opponents: GameListOpponent[];
217
219
  bettors: Bettor[];
218
220
  homePool: number;