@dubsdotapp/expo 0.2.44 → 0.2.45

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
@@ -343,7 +343,9 @@ interface LiveScore {
343
343
  }
344
344
  interface UFCFighter {
345
345
  name: string;
346
- imageUrl: string | null;
346
+ headshotUrl: string | null;
347
+ flagUrl: string | null;
348
+ country: string | null;
347
349
  abbreviation: string;
348
350
  record: string | null;
349
351
  winner: boolean;
package/dist/index.d.ts CHANGED
@@ -343,7 +343,9 @@ interface LiveScore {
343
343
  }
344
344
  interface UFCFighter {
345
345
  name: string;
346
- imageUrl: string | null;
346
+ headshotUrl: string | null;
347
+ flagUrl: string | null;
348
+ country: string | null;
347
349
  abbreviation: string;
348
350
  record: string | null;
349
351
  winner: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dubsdotapp/expo",
3
- "version": "0.2.44",
3
+ "version": "0.2.45",
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
@@ -419,7 +419,9 @@ export interface LiveScore {
419
419
 
420
420
  export interface UFCFighter {
421
421
  name: string;
422
- imageUrl: string | null;
422
+ headshotUrl: string | null;
423
+ flagUrl: string | null;
424
+ country: string | null;
423
425
  abbreviation: string;
424
426
  record: string | null;
425
427
  winner: boolean;