@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 +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/types.ts +2 -0
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
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;
|