@globalscoutme/api-client 1.0.17 → 1.0.19
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 +12 -0
- package/package.json +1 -1
- package/types.gen.ts +12 -0
package/dist/types.gen.d.ts
CHANGED
|
@@ -322,6 +322,10 @@ export type PlayerVideoDto = {
|
|
|
322
322
|
videoType?: string | null;
|
|
323
323
|
};
|
|
324
324
|
export type WatchingOrgDto = {
|
|
325
|
+
/**
|
|
326
|
+
* Stable organization id (UUID) for list keys and caching
|
|
327
|
+
*/
|
|
328
|
+
id: string;
|
|
325
329
|
name: string;
|
|
326
330
|
logoUrl?: string | null;
|
|
327
331
|
};
|
|
@@ -375,6 +379,14 @@ export type PlayerByIdDto = {
|
|
|
375
379
|
* Scout agencies watching this player
|
|
376
380
|
*/
|
|
377
381
|
agentsWatching: Array<WatchingOrgDto>;
|
|
382
|
+
/**
|
|
383
|
+
* Email address
|
|
384
|
+
*/
|
|
385
|
+
email: string;
|
|
386
|
+
/**
|
|
387
|
+
* Phone number
|
|
388
|
+
*/
|
|
389
|
+
phone?: string | null;
|
|
378
390
|
};
|
|
379
391
|
export type PreviousClubDto = {
|
|
380
392
|
/**
|
package/package.json
CHANGED
package/types.gen.ts
CHANGED
|
@@ -351,6 +351,10 @@ export type PlayerVideoDto = {
|
|
|
351
351
|
};
|
|
352
352
|
|
|
353
353
|
export type WatchingOrgDto = {
|
|
354
|
+
/**
|
|
355
|
+
* Stable organization id (UUID) for list keys and caching
|
|
356
|
+
*/
|
|
357
|
+
id: string;
|
|
354
358
|
name: string;
|
|
355
359
|
logoUrl?: string | null;
|
|
356
360
|
};
|
|
@@ -405,6 +409,14 @@ export type PlayerByIdDto = {
|
|
|
405
409
|
* Scout agencies watching this player
|
|
406
410
|
*/
|
|
407
411
|
agentsWatching: Array<WatchingOrgDto>;
|
|
412
|
+
/**
|
|
413
|
+
* Email address
|
|
414
|
+
*/
|
|
415
|
+
email: string;
|
|
416
|
+
/**
|
|
417
|
+
* Phone number
|
|
418
|
+
*/
|
|
419
|
+
phone?: string | null;
|
|
408
420
|
};
|
|
409
421
|
|
|
410
422
|
export type PreviousClubDto = {
|