@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 +3 -1
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
- package/src/types.ts +3 -1
package/dist/index.d.mts
CHANGED
|
@@ -226,7 +226,9 @@ interface AppConfigResponse {
|
|
|
226
226
|
}
|
|
227
227
|
interface UFCFighter {
|
|
228
228
|
name: string;
|
|
229
|
-
|
|
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
|
-
|
|
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
package/src/types.ts
CHANGED
|
@@ -271,7 +271,9 @@ export interface AppConfigResponse {
|
|
|
271
271
|
|
|
272
272
|
export interface UFCFighter {
|
|
273
273
|
name: string;
|
|
274
|
-
|
|
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;
|