@dubsdotapp/node 0.2.1 → 0.2.2

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
@@ -226,7 +226,9 @@ interface AppConfigResponse {
226
226
  }
227
227
  interface UFCFighter {
228
228
  name: string;
229
- imageUrl: string | null;
229
+ headshotUrl: string | null;
230
+ flagUrl: string | null;
231
+ country: string | null;
230
232
  abbreviation: string;
231
233
  record: string | null;
232
234
  winner: boolean;
package/dist/index.d.ts CHANGED
@@ -226,7 +226,9 @@ interface AppConfigResponse {
226
226
  }
227
227
  interface UFCFighter {
228
228
  name: string;
229
- imageUrl: string | null;
229
+ headshotUrl: string | null;
230
+ flagUrl: string | null;
231
+ country: string | null;
230
232
  abbreviation: string;
231
233
  record: string | null;
232
234
  winner: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dubsdotapp/node",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Server-side Node.js SDK for the Dubs betting platform",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
package/src/types.ts CHANGED
@@ -271,7 +271,9 @@ export interface AppConfigResponse {
271
271
 
272
272
  export interface UFCFighter {
273
273
  name: string;
274
- imageUrl: string | null;
274
+ headshotUrl: string | null;
275
+ flagUrl: string | null;
276
+ country: string | null;
275
277
  abbreviation: string;
276
278
  record: string | null;
277
279
  winner: boolean;