@globalscoutme/api-client 1.0.17 → 1.0.18
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/types.gen.d.ts +8 -0
- package/package.json +1 -1
- package/types.gen.ts +8 -0
package/dist/types.gen.d.ts
CHANGED
|
@@ -375,6 +375,14 @@ export type PlayerByIdDto = {
|
|
|
375
375
|
* Scout agencies watching this player
|
|
376
376
|
*/
|
|
377
377
|
agentsWatching: Array<WatchingOrgDto>;
|
|
378
|
+
/**
|
|
379
|
+
* Email address
|
|
380
|
+
*/
|
|
381
|
+
email: string;
|
|
382
|
+
/**
|
|
383
|
+
* Phone number
|
|
384
|
+
*/
|
|
385
|
+
phone?: string | null;
|
|
378
386
|
};
|
|
379
387
|
export type PreviousClubDto = {
|
|
380
388
|
/**
|
package/package.json
CHANGED
package/types.gen.ts
CHANGED
|
@@ -405,6 +405,14 @@ export type PlayerByIdDto = {
|
|
|
405
405
|
* Scout agencies watching this player
|
|
406
406
|
*/
|
|
407
407
|
agentsWatching: Array<WatchingOrgDto>;
|
|
408
|
+
/**
|
|
409
|
+
* Email address
|
|
410
|
+
*/
|
|
411
|
+
email: string;
|
|
412
|
+
/**
|
|
413
|
+
* Phone number
|
|
414
|
+
*/
|
|
415
|
+
phone?: string | null;
|
|
408
416
|
};
|
|
409
417
|
|
|
410
418
|
export type PreviousClubDto = {
|